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
nlphuji/winogavil
nlphuji
2022-11-26T19:56:27Z
474
0
winogavil
[ "annotations_creators:crowdsourced", "language_creators:found", "multilinguality:monolingual", "size_categories:10K<n<100K", "source_datasets:original", "language:en", "license:cc-by-4.0", "commonsense-reasoning", "visual-reasoning", "arxiv:2207.12576", "region:us" ]
2022-11-26T19:56:27Z
2022-09-23T19:27:29.000Z
2022-09-23T19:27:29
--- annotations_creators: - crowdsourced language: - en language_creators: - found license: - cc-by-4.0 multilinguality: - monolingual paperswithcode_id: winogavil pretty_name: WinoGAViL size_categories: - 10K<n<100K source_datasets: - original tags: - commonsense-reasoning - visual-reasoning task_ids: [] 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." --- # Dataset Card for WinoGAViL - [Dataset Description](#dataset-description) - [Supported Tasks and Leaderboards](#supported-tasks-and-leaderboards) - [Colab notebook code for Winogavil evaluation with CLIP](#colab-notebook-code-for-winogavil-evaluation-with-clip) - [Languages](#languages) - [Dataset Structure](#dataset-structure) - [Data Fields](#data-fields) - [Data Splits](#data-splits) - [Dataset Creation](#dataset-creation) - [Considerations for Using the Data](#considerations-for-using-the-data) - [Licensing Information](#licensing-information) - [Citation Information](#citation-information) ## Dataset Description WinoGAViL is a challenging dataset for evaluating vision-and-language commonsense reasoning abilities. Given a set of images, a cue, and a number K, the task is to select the K images that best fits the association. This dataset was collected via the WinoGAViL online game to collect vision-and-language associations, (e.g., werewolves to a full moon). Inspired by the popular card game Codenames, a spymaster gives a textual cue related to several visual candidates, and another player has to identify them. Human players are rewarded for creating associations that are challenging for a rival AI model but still solvable by other human players. We evaluate several state-of-the-art vision-and-language models, finding that they are intuitive for humans (>90% Jaccard index) but challenging for state-of-the-art AI models, where the best model (ViLT) achieves a score of 52%, succeeding mostly where the cue is visually salient. Our analysis as well as the feedback we collect from players indicate that the collected associations require diverse reasoning skills, including general knowledge, common sense, abstraction, and more. - **Homepage:** https://winogavil.github.io/ - **Colab** https://colab.research.google.com/drive/19qcPovniLj2PiLlP75oFgsK-uhTr6SSi - **Repository:** https://github.com/WinoGAViL/WinoGAViL-experiments/ - **Paper:** https://arxiv.org/abs/2207.12576 - **Leaderboard:** https://winogavil.github.io/leaderboard - **Point of Contact:** winogavil@gmail.com; yonatanbitton1@gmail.com ### Supported Tasks and Leaderboards https://winogavil.github.io/leaderboard. https://paperswithcode.com/dataset/winogavil. ## Colab notebook code for Winogavil evaluation with CLIP https://colab.research.google.com/drive/19qcPovniLj2PiLlP75oFgsK-uhTr6SSi ### Languages English. ## Dataset Structure ### Data Fields candidates (list): ["bison", "shelter", "beard", "flea", "cattle", "shave"] - list of image candidates. cue (string): pogonophile - the generated cue. associations (string): ["bison", "beard", "shave"] - the images associated with the cue selected by the user. score_fool_the_ai (int64): 80 - the spymaster score (100 - model score) for fooling the AI, with CLIP RN50 model. num_associations (int64): 3 - The number of images selected as associative with the cue. num_candidates (int64): 6 - the number of total candidates. solvers_jaccard_mean (float64): 1.0 - three solvers scores average on the generated association instance. solvers_jaccard_std (float64): 1.0 - three solvers scores standard deviation on the generated association instance ID (int64): 367 - association ID. ### Data Splits There is a single TEST split. In the accompanied paper and code we sample it to create different training sets, but the intended use is to use winogavil as a test set. There are different number of candidates, which creates different difficulty levels: -- With 5 candidates, random model expected score is 38%. -- With 6 candidates, random model expected score is 34%. -- With 10 candidates, random model expected score is 24%. -- With 12 candidates, random model expected score is 19%. <details> <summary>Why random chance for success with 5 candidates is 38%?</summary> It is a binomial distribution probability calculation. Assuming N=5 candidates, and K=2 associations, there could be three events: (1) The probability for a random guess is correct in 0 associations is 0.3 (elaborate below), and the Jaccard index is 0 (there is no intersection between the correct labels and the wrong guesses). Therefore the expected random score is 0. (2) The probability for a random guess is correct in 1 associations is 0.6, and the Jaccard index is 0.33 (intersection=1, union=3, one of the correct guesses, and one of the wrong guesses). Therefore the expected random score is 0.6*0.33 = 0.198. (3) The probability for a random guess is correct in 2 associations is 0.1, and the Jaccard index is 1 (intersection=2, union=2). Therefore the expected random score is 0.1*1 = 0.1. * Together, when K=2, the expected score is 0+0.198+0.1 = 0.298. To calculate (1), the first guess needs to be wrong. There are 3 "wrong" guesses and 5 candidates, so the probability for it is 3/5. The next guess should also be wrong. Now there are only 2 "wrong" guesses, and 4 candidates, so the probability for it is 2/4. Multiplying 3/5 * 2/4 = 0.3. Same goes for (2) and (3). Now we can perform the same calculation with K=3 associations. Assuming N=5 candidates, and K=3 associations, there could be four events: (4) The probability for a random guess is correct in 0 associations is 0, and the Jaccard index is 0. Therefore the expected random score is 0. (5) The probability for a random guess is correct in 1 associations is 0.3, and the Jaccard index is 0.2 (intersection=1, union=4). Therefore the expected random score is 0.3*0.2 = 0.06. (6) The probability for a random guess is correct in 2 associations is 0.6, and the Jaccard index is 0.5 (intersection=2, union=4). Therefore the expected random score is 0.6*5 = 0.3. (7) The probability for a random guess is correct in 3 associations is 0.1, and the Jaccard index is 1 (intersection=3, union=3). Therefore the expected random score is 0.1*1 = 0.1. * Together, when K=3, the expected score is 0+0.06+0.3+0.1 = 0.46. Taking the average of 0.298 and 0.46 we reach 0.379. Same process can be recalculated with 6 candidates (and K=2,3,4), 10 candidates (and K=2,3,4,5) and 123 candidates (and K=2,3,4,5,6). </details> ## Dataset Creation Inspired by the popular card game Codenames, a “spymaster” gives a textual cue related to several visual candidates, and another player has to identify them. Human players are rewarded for creating associations that are challenging for a rival AI model but still solvable by other human players. ### Annotations #### Annotation process We paid Amazon Mechanical Turk Workers to play our game. ## Considerations for Using the Data All associations were obtained with human annotators. ### Licensing Information CC-By 4.0 ### Citation Information @article{bitton2022winogavil, title={WinoGAViL: Gamified Association Benchmark to Challenge Vision-and-Language Models}, author={Bitton, Yonatan and Guetta, Nitzan Bitton and Yosef, Ron and Elovici, Yuval and Bansal, Mohit and Stanovsky, Gabriel and Schwartz, Roy}, journal={arXiv preprint arXiv:2207.12576}, year={2022}
[ -0.2999548316001892, -0.5467277765274048, 0.38893285393714905, -0.0032049966976046562, -0.13469380140304565, -0.02715943567454815, -0.11183617264032364, -0.7848528623580933, 0.3743811845779419, 0.14734788239002228, -0.2837006747722626, -0.8072812557220459, -0.6229792833328247, -0.1841668039560318, -0.018189547583460808, 1.0153038501739502, 0.1655726134777069, 0.06435168534517288, -0.3515058159828186, -0.05080031976103783, -0.7780434489250183, -0.32888203859329224, -0.730151891708374, -0.2325485795736313, 0.08009621500968933, 0.29497185349464417, 0.59200119972229, 0.6708024144172668, 0.6505029797554016, 0.3317928910255432, -0.23066399991512299, 0.03289260342717171, -0.5335582494735718, -0.15315257012844086, -0.11844225227832794, -1.0146279335021973, -0.5251872539520264, 0.4841247498989105, -0.08451084047555923, 0.37624818086624146, -0.40911173820495605, 0.27042853832244873, -0.14825032651424408, 0.40806397795677185, -0.5763856172561646, 0.47051772475242615, -0.6023473739624023, 0.06180443987250328, -0.22352562844753265, -0.09288395196199417, -0.3711281716823578, -0.3297349512577057, 0.15882599353790283, -0.8189557790756226, 0.34523555636405945, 0.27989351749420166, 1.0417089462280273, -0.004670226946473122, 0.06099071353673935, -0.5055047869682312, -0.4565056264400482, 0.6718450784683228, -0.4427396357059479, -0.18794608116149902, 0.46664559841156006, 0.517866849899292, -0.23208019137382507, -0.1661311537027359, -0.49041688442230225, -0.33521559834480286, 0.03086092881858349, 0.44313082098960876, -0.10996941477060318, -0.12265736609697342, 0.3321033716201782, 0.44055548310279846, -0.5883611440658569, -0.23979386687278748, -0.4360910654067993, -0.10196398943662643, 0.8824361562728882, 0.34428349137306213, 0.34761250019073486, -0.08701512217521667, -0.41559892892837524, -0.4645060896873474, -0.36649149656295776, 0.23354215919971466, 0.6926190257072449, 0.12038246542215347, -0.109500952064991, 0.4828259348869324, -0.009800557978451252, 0.8680070042610168, 0.12940526008605957, -0.2276286631822586, 0.42372432351112366, -0.2454943209886551, -0.24966810643672943, -0.06843843311071396, 0.8343789577484131, 0.5876756310462952, 0.49555766582489014, -0.013845793902873993, -0.009856339544057846, 0.3602053225040436, 0.021407857537269592, -0.27149608731269836, -0.4753342270851135, 0.29120826721191406, -0.5930292010307312, -0.5227330327033997, 0.15662096440792084, -0.8096678853034973, -0.35628002882003784, -0.028754092752933502, 0.692596971988678, -0.6846100091934204, -0.23236991465091705, 0.13338907063007355, -0.734051525592804, 0.5696361660957336, 0.3487076461315155, -0.6555802822113037, 0.11865001171827316, 0.3513674736022949, 0.6289435029029846, -0.24412143230438232, -0.5219382047653198, -0.2205490618944168, -0.05861664190888405, -0.548367440700531, 0.651809573173523, -0.628857433795929, -0.38955456018447876, -0.3870123326778412, -0.20029407739639282, -0.23441217839717865, -0.5088248252868652, 0.23763823509216309, -0.3090377449989319, 0.5265114307403564, -0.07733988016843796, -0.5777071714401245, -0.004692814778536558, 0.5737288594245911, -0.6950366497039795, 1.0115339756011963, -0.0710778459906578, -0.5395219326019287, 0.5531594753265381, -0.6847540140151978, -0.2765408158302307, 0.05754004791378975, -0.12884336709976196, -0.04697651043534279, 0.06228293105959892, 0.12097033113241196, 0.14938287436962128, -0.3038146197795868, 0.28174450993537903, -0.21769674122333527, -0.45646074414253235, 0.2943938076496124, -0.29936420917510986, 1.2947261333465576, 0.06280007213354111, -0.40585219860076904, -0.06628397852182388, -0.801133394241333, -0.0774230882525444, 0.37774786353111267, -0.32096067070961, -0.34112411737442017, -0.013667471706867218, -0.12926745414733887, 0.32891392707824707, 0.2695298194885254, -0.3989178538322449, 0.28610390424728394, -0.28521016240119934, -0.25900688767433167, 0.7527211308479309, -0.03462756797671318, 0.2578390836715698, -0.3806556165218353, 0.6922157406806946, 0.06945193558931351, 0.5106385946273804, 0.31252428889274597, -0.883378267288208, -0.6698347926139832, -0.17776434123516083, 0.3101057708263397, 0.8821426630020142, -0.7019879221916199, 0.5937051773071289, -0.0012433830415830016, -0.8489527702331543, -0.8491294980049133, -0.06886884570121765, 0.6176319718360901, 0.2674185633659363, 0.4371914267539978, -0.5205277800559998, -0.23222485184669495, -0.7890795469284058, -0.17687369883060455, -0.37714001536369324, -0.1792430430650711, 0.5213468074798584, 0.5658301711082458, 0.1879083514213562, 0.7480961084365845, -0.6948352456092834, -0.7141026258468628, -0.29427647590637207, 0.08558612316846848, 0.5858116745948792, 0.4676419198513031, 0.5854020714759827, -0.5758610963821411, -0.2783605456352234, -0.32007402181625366, -0.8582419157028198, 0.4368722140789032, -0.08095170557498932, -0.34312137961387634, 0.028866762295365334, 0.19384202361106873, -0.6385014653205872, 0.6690409779548645, 0.3712352514266968, -0.6389276385307312, 0.6268717646598816, -0.4535098969936371, 0.29656022787094116, -1.1081295013427734, 0.19249023497104645, -0.05242158845067024, 0.21412870287895203, -0.4825610816478729, 0.20819121599197388, -0.3016471862792969, 0.11671356856822968, -0.35286179184913635, 0.4584117531776428, -0.8621770143508911, 0.10857757180929184, 0.1655886322259903, 0.3187520503997803, -0.20158375799655914, 0.5950022339820862, -0.036848776042461395, 0.41039949655532837, 0.8283746242523193, -0.5395997166633606, 0.5820162892341614, 0.2000972330570221, -0.5547652840614319, 0.729576051235199, -0.47673991322517395, 0.04635053873062134, -0.1321830302476883, -0.11285389214754105, -1.18692147731781, -0.24727681279182434, 0.19556206464767456, -0.8469187021255493, 0.28546640276908875, 0.030467446893453598, -0.3586823344230652, -0.4054452180862427, -0.4571245312690735, 0.059985022991895676, 0.5116757750511169, -0.3596380352973938, 0.7863848209381104, 0.621561586856842, 0.5398943424224854, -0.5907425880432129, -0.7476226687431335, 0.07046858966350555, -0.14751185476779938, -0.5113382935523987, 0.17990289628505707, -0.4002950191497803, -0.2622582018375397, -0.027455227449536324, 0.12932871282100677, 0.1372068226337433, 0.10727323591709137, 0.22724942862987518, 0.5834700465202332, 0.1433686763048172, -0.06617676466703415, -0.5478910803794861, -0.002190951956436038, 0.02425716072320938, 0.20709306001663208, 0.4625592529773712, -0.23389935493469238, -0.10897443443536758, -0.13108834624290466, 0.26236671209335327, 0.3173453211784363, -0.3446041941642761, 0.8469954133033752, 0.5022071599960327, -0.3865385055541992, 0.03658609464764595, -0.3285110890865326, 0.06550811231136322, -0.43320056796073914, 0.19899077713489532, -0.4797697365283966, -0.3666812479496002, 0.7934856414794922, 0.5263162851333618, 0.03599943593144417, 0.6114168763160706, 0.5225316286087036, -0.07280757278203964, 1.054437279701233, 0.350918173789978, -0.20278705656528473, 0.26591959595680237, -0.387002170085907, -0.09241393953561783, -0.611444890499115, -0.5318716168403625, -0.38961756229400635, -0.4614666998386383, -0.7490004897117615, -0.40128785371780396, 0.22414587438106537, 0.10426975041627884, 0.16878736019134521, 0.38020408153533936, -0.6896207928657532, 0.6044145822525024, 1.0070911645889282, 0.22663328051567078, -0.034294843673706055, -0.17293424904346466, -0.23824186623096466, 0.11451420187950134, -0.6541572213172913, -0.10870873183012009, 1.1453871726989746, 0.1467464417219162, 0.7465145587921143, 0.41572248935699463, 0.9892473816871643, 0.24157965183258057, 0.4843231439590454, -0.6852729916572571, 0.7542184591293335, 0.15417969226837158, -1.1413755416870117, -0.3776530623435974, -0.2440243363380432, -1.0497097969055176, 0.07903753966093063, -0.5092259645462036, -0.9448245763778687, 0.24092735350131989, 0.266940712928772, -0.29880639910697937, 0.13131219148635864, -0.7515023946762085, 0.9482262134552002, -0.413402259349823, -0.34124529361724854, 0.2120971977710724, -0.857537567615509, 0.42541202902793884, 0.4225340187549591, 0.17070631682872772, -0.1720266342163086, 0.22301146388053894, 0.9797447323799133, -0.1199587807059288, 0.6457513570785522, -0.3384384214878082, 0.3449461758136749, 0.49510693550109863, 0.25653913617134094, 0.38109320402145386, -0.16922271251678467, 0.07907617837190628, 0.12684452533721924, 0.11580678820610046, -0.25535842776298523, -0.3183639943599701, 0.4887712299823761, -0.7614115476608276, -0.546752393245697, -0.7674292922019958, -0.5166791081428528, -0.17650113999843597, 0.1869746446609497, 0.40860769152641296, 0.24129611253738403, -0.3358137905597687, -0.01976211927831173, 0.5368199944496155, -0.30483439564704895, 0.1998685598373413, 0.2673763036727905, -0.16083990037441254, -0.3856666088104248, 0.9878091812133789, -0.06872978061437607, 0.11963678896427155, 0.3152073919773102, 0.16505764424800873, -0.23294848203659058, -0.3298642635345459, -0.1995883733034134, 0.26011228561401367, -0.7262791991233826, -0.22188635170459747, -0.18955503404140472, -0.09717392921447754, -0.39042574167251587, 0.14807142317295074, -0.07510577142238617, -0.05243575945496559, -0.5658625364303589, -0.29407238960266113, 0.1623997539281845, 0.48781129717826843, -0.20378318428993225, 0.10121160745620728, -0.15014728903770447, 0.23289717733860016, 0.39671921730041504, 0.5496463775634766, -0.0949234813451767, -0.45426875352859497, 0.050471387803554535, -0.06476898491382599, -0.05405668169260025, -1.1440101861953735, 0.3332456946372986, 0.11276491731405258, 0.9261048436164856, 0.6009937524795532, -0.21200300753116608, 0.7670520544052124, -0.25031545758247375, 0.9991984963417053, 0.2556661367416382, -0.6369113922119141, 0.6216402053833008, -0.22404062747955322, 0.12209763377904892, 0.8626062870025635, 0.35953569412231445, -0.4543885588645935, -0.4872182309627533, -1.0352486371994019, -0.5544365048408508, 0.8138912916183472, 0.2413841187953949, -0.15478014945983887, -0.28703823685646057, 0.06953255832195282, -0.24778930842876434, -0.027237383648753166, -0.6838119626045227, -0.6316242218017578, 0.07464136928319931, -0.3911885917186737, -0.33573853969573975, -0.12981954216957092, -0.3424338400363922, -0.25718212127685547, 0.5919312834739685, 0.14528949558734894, 0.6899004578590393, 0.026653917506337166, -0.08325959742069244, 0.18003174662590027, 0.025751296430826187, 0.5510513782501221, 0.6206401586532593, -0.765825629234314, 0.0007002498023211956, 0.03158941492438316, -0.620294451713562, 0.04492395743727684, 0.12771429121494293, -0.11873332411050797, -0.007175205275416374, 0.6333929300308228, 0.6729305982589722, -0.04785170778632164, -0.7322052121162415, 0.5716546773910522, -0.2862013876438141, -0.43061134219169617, -0.30671167373657227, 0.5683159232139587, 0.15295392274856567, 0.133858323097229, 0.408453106880188, 0.13834865391254425, 0.2359815388917923, -0.8100575804710388, 0.04187692329287529, 0.6101046800613403, -0.42435237765312195, -0.08963405340909958, 0.8004289865493774, -0.002908540889620781, -0.590491771697998, 0.42709553241729736, -0.39791297912597656, -0.3937496542930603, 0.859976053237915, 0.36045628786087036, 0.6505922675132751, -0.2628718316555023, 0.22973445057868958, 0.6104162931442261, 0.6509173512458801, -0.19395293295383453, 0.407591313123703, 0.13653263449668884, -0.6902027726173401, 0.1937772035598755, -0.6833571195602417, -0.24972236156463623, 0.17531320452690125, -0.6961033344268799, 0.07619044184684753, -0.24777328968048096, -0.1853860318660736, -0.09668664634227753, 0.1646527349948883, -1.0037431716918945, 0.2932438850402832, 0.23514099419116974, 1.1633937358856201, -0.9626413583755493, 0.46413788199424744, 0.5288438200950623, -0.7010816931724548, -0.999895453453064, -0.3060601055622101, 0.08657107502222061, -0.8600711226463318, 0.2885144054889679, 0.09090186655521393, 0.2683621644973755, -0.240740105509758, -0.7535677552223206, -0.8614363074302673, 1.2849713563919067, 0.013669601641595364, -0.3380255699157715, -0.08444570749998093, -0.1407398134469986, 0.7165661454200745, -0.4070952832698822, 0.6114465594291687, 0.6940051913261414, 0.3729764223098755, 0.1791355311870575, -0.6798939108848572, -0.14931288361549377, -0.4548795819282532, 0.02992784045636654, -0.018889520317316055, -0.33052968978881836, 0.7413618564605713, -0.43826940655708313, -0.10196784883737564, -0.014844004064798355, 0.3936174511909485, 0.5143333077430725, 0.29600387811660767, 0.5428106784820557, 0.6371381878852844, 0.8412464261054993, -0.12894606590270996, 1.105785846710205, -0.1261676400899887, 0.3344733417034149, 1.118696689605713, 0.010021387599408627, 0.8452249765396118, 0.4494869112968445, -0.395150750875473, 0.42113667726516724, 0.7630271911621094, -0.21201449632644653, 0.5558305978775024, 0.26090821623802185, 0.13962353765964508, -0.3109905421733856, 0.22048698365688324, -0.28715285658836365, 0.8823815584182739, 0.28099769353866577, -0.4583706557750702, -0.19930115342140198, -0.1544453352689743, -0.07392662018537521, -0.18797719478607178, -0.21539737284183502, 0.6422271132469177, -0.297265887260437, -0.8957740068435669, 0.2641609311103821, -0.11025086790323257, 0.6646544933319092, -0.6044390201568604, -0.20150530338287354, -0.462589830160141, 0.3147493302822113, 0.08065742999315262, -1.0371354818344116, -0.16747646033763885, -0.053762294352054596, -0.09182415157556534, 0.3298017680644989, 0.5164467096328735, -0.49640777707099915, -0.5800374150276184, 0.37126561999320984, 0.4583868980407715, 0.6085759997367859, 0.1753247082233429, -0.9120702743530273, -0.16521631181240082, 0.22158460319042206, -0.36195889115333557, 0.3646072447299957, 0.262699156999588, 0.04509323462843895, 0.4545913338661194, 0.7002474069595337, 0.27335605025291443, 0.02710244245827198, -0.16380393505096436, 0.5305346250534058, -0.5949295163154602, -0.4306095540523529, -0.7119415998458862, 0.4247473478317261, -0.3132966160774231, -0.7059597969055176, 0.7814204692840576, 0.7024955153465271, 0.7771828174591064, -0.18188448250293732, 0.5235639214515686, -0.40774795413017273, 0.2575082778930664, -0.32606735825538635, 0.8157879710197449, -0.6731325387954712, 0.05083727091550827, -0.3647758364677429, -0.5923730134963989, -0.26787087321281433, 0.643217921257019, -0.3959808647632599, 0.10196869820356369, 0.28845664858818054, 0.8728798031806946, 0.02271016128361225, -0.39892008900642395, 0.389839231967926, -0.13181205093860626, 0.3608560860157013, 1.128048062324524, 0.4243152141571045, -0.5767719149589539, 0.7424170970916748, -0.11046110838651657, -0.6159461736679077, -0.2802111804485321, -0.7141965627670288, -1.0328211784362793, -0.47054219245910645, -0.10785523056983948, -0.5411242246627808, -0.01627388224005699, 0.6722373366355896, 0.298350989818573, -0.6388211250305176, -0.45211875438690186, 0.18868985772132874, 0.06933560967445374, -0.6183431148529053, -0.30413445830345154, 0.4102230668067932, 0.09893734008073807, -0.5253210663795471, 0.027847247198224068, 0.01095092948526144, -0.0519026443362236, -0.0322456993162632, -0.19066904485225677, -0.8154792785644531, 0.08176200836896896, 0.42672157287597656, 0.30115413665771484, -0.5236679911613464, -0.323790967464447, 0.12394805252552032, -0.28797489404678345, 0.06581991165876389, 0.07286499440670013, -0.6657330393791199, 0.8797339797019958, 0.37621212005615234, 0.12211412936449051, 0.6065070629119873, 0.032398391515016556, 0.2091408222913742, -0.5511084794998169, 0.029951386153697968, 0.08304356783628464, 0.3589927852153778, 0.24096667766571045, -0.27563056349754333, 0.660469114780426, 0.48810243606567383, -0.21322187781333923, -0.6365370154380798, -0.19030873477458954, -0.999650239944458, -0.2564093768596649, 1.1059682369232178, 0.010483447462320328, -0.5217859745025635, 0.052803490310907364, -0.1939704567193985, 0.12030676752328873, -0.1905568540096283, 0.7765247225761414, 0.8356973528862, -0.35559430718421936, -0.09222922474145889, -0.47031068801879883, 0.5617297887802124, 0.001149483839981258, -0.8742169141769409, -0.20510686933994293, 0.5559692978858948, 0.4740353524684906, 0.667539119720459, 0.7232216000556946, 0.027204176411032677, 0.6146143674850464, 0.42350029945373535, 0.48092928528785706, -0.25895997881889343, -0.34691739082336426, -0.2165849655866623, 0.290630966424942, 0.00039871115586720407, -0.6206092238426208 ]
null
null
null
null
null
null
null
null
null
null
null
null
null
detection-datasets/coco
detection-datasets
2023-03-15T15:11:53Z
474
9
null
[ "task_categories:object-detection", "language:en", "region:us" ]
2023-03-15T15:11:53Z
2022-10-04T08:13:16.000Z
2022-10-04T08:13:16
--- task_categories: - object-detection 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
code_x_glue_cc_code_completion_line
null
2023-06-01T14:59:47Z
473
1
null
[ "task_categories:text-generation", "task_categories:fill-mask", "task_ids:slot-filling", "annotations_creators:found", "language_creators:found", "multilinguality:monolingual", "size_categories:1K<n<10K", "size_categories:n<1K", "source_datasets:original", "language:code", "license:c-uda", "region:us" ]
2023-06-01T14:59:47Z
2022-03-02T23:29:22.000Z
2022-03-02T23:29:22
--- annotations_creators: - found language_creators: - found language: - code license: - c-uda multilinguality: - monolingual size_categories: - 1K<n<10K - n<1K source_datasets: - original task_categories: - text-generation - fill-mask task_ids: - slot-filling pretty_name: CodeXGlueCcCodeCompletionLine dataset_info: - config_name: java features: - name: id dtype: int32 - name: input dtype: string - name: gt dtype: string splits: - name: train num_bytes: 5454783 num_examples: 3000 download_size: 5523586 dataset_size: 5454783 - config_name: python features: - name: id dtype: int32 - name: input dtype: string - name: gt dtype: string splits: - name: train num_bytes: 24021562 num_examples: 10000 download_size: 24266715 dataset_size: 24021562 config_names: - go - java - javascript - php - python - ruby --- # Dataset Card for "code_x_glue_cc_code_completion_line" ## Table of Contents - [Dataset Description](#dataset-description) - [Dataset Summary](#dataset-summary) - [Supported Tasks and Leaderboards](#supported-tasks) - [Languages](#languages) - [Dataset Structure](#dataset-structure) - [Data Instances](#data-instances) - [Data Fields](#data-fields) - [Data Splits](#data-splits-sample-size) - [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/microsoft/CodeXGLUE/tree/main/Code-Code/CodeCompletion-line ### Dataset Summary CodeXGLUE CodeCompletion-line dataset, available at https://github.com/microsoft/CodeXGLUE/tree/main/Code-Code/CodeCompletion-line Complete the unfinished line given previous context. Models are evaluated by exact match and edit similarity. We propose line completion task to test model's ability to autocomplete a line. Majority code completion systems behave well in token level completion, but fail in completing an unfinished line like a method call with specific parameters, a function signature, a loop condition, a variable definition and so on. When a software develop finish one or more tokens of the current line, the line level completion model is expected to generate the entire line of syntactically correct code. Line level code completion task shares the train/dev dataset with token level completion. After training a model on CodeCompletion-token, you could directly use it to test on line-level completion. ### Supported Tasks and Leaderboards - `slot-filling`: The dataset can be used to train a model for completing entire code lines. ### Languages - Java **programming** language - Python **programming** language ## Dataset Structure ### Data Instances #### java An example of 'train' looks as follows. ``` { "gt": "", "id": 0, "input": "<s> package org . rubypeople . rdt . internal . ui . rubyeditor ; import java . util . Iterator ; import org . eclipse . core . resources . IMarker ; import org . eclipse . ui . texteditor . MarkerAnnotation ; import org . eclipse . ui . texteditor . MarkerUtilities ; import org . rubypeople . rdt . core . IRubyElement ; import org . rubypeople . rdt . core . IRubyModelMarker ; import org . rubypeople . rdt . core . IRubyScript ; import org . rubypeople . rdt . core . RubyCore ; public class RubyMarkerAnnotation extends MarkerAnnotation implements IRubyAnnotation { public static final String RUBY_MARKER_TYPE_PREFIX = \"\" ; public static final String ERROR_ANNOTATION_TYPE = \"\" ; public static final String WARNING_ANNOTATION_TYPE = \"\" ; public static final String INFO_ANNOTATION_TYPE = \"\" ; public static final String TASK_ANNOTATION_TYPE = \"\" ; private IRubyAnnotation fOverlay ; public RubyMarkerAnnotation ( IMarker marker ) { super ( marker ) ; } public String [ ] getArguments ( ) { return null ; } public int getId ( ) { IMarker marker = getMarker ( ) ; if ( marker == null || ! marker . exists ( ) ) return - 1 ; if ( isProblem ( ) ) return marker . getAttribute ( IRubyModelMarker . ID , - 1 ) ; return - 1 ; } public boolean isProblem ( ) { String type = getType ( ) ; return WARNING_ANNOTATION_TYPE . equals ( type ) || ERROR_ANNOTATION_TYPE . equals" } ``` #### python An example of 'train' looks as follows. ``` { "gt": "", "id": 0, "input": "<s> from __future__ import absolute_import <EOL> import weakref <EOL> import operator <EOL> from . compat import threading , itertools_filterfalse <EOL> from . import py2k <EOL> import types <EOL> EMPTY_SET = frozenset ( ) <EOL> class KeyedTuple ( tuple ) : <EOL> def __new__ ( cls , vals , labels = None ) : <EOL> t = tuple . __new__ ( cls , vals ) <EOL> t . _labels = [ ] <EOL> if labels : <EOL> t . __dict__ . update ( zip ( labels , vals ) ) <EOL> t . _labels = labels <EOL> return t <EOL> def keys ( self ) : <EOL> return [ l for l in self . _labels if l is not None ] <EOL> @ property <EOL> def _fields ( self ) : <EOL> return tuple ( self . keys ( ) ) <EOL> def _asdict ( self ) : <EOL> return dict ( ( key , self . __dict__ [ key ] ) for key in self . keys ( ) ) <EOL> class ImmutableContainer ( object ) : <EOL> def _immutable ( self , * arg , ** kw ) : <EOL> raise TypeError ( \"\" % self . __class__ . __name__ ) <EOL> __delitem__ = __setitem__ = __setattr__ = _immutable <EOL> class immutabledict ( ImmutableContainer , dict ) : <EOL> clear = pop = popitem = setdefault = update = ImmutableContainer . _immutable <EOL> def __new__ ( cls , * args ) : <EOL> new = dict . __new__ ( cls ) <EOL> dict . __init__ ( new , * args ) <EOL> return new <EOL> def __init__ ( self , * args ) : <EOL> pass <EOL> def __reduce__ ( self ) : <EOL> return immutabledict , ( dict ( self ) , ) <EOL> def union ( self , d ) : <EOL> if not self : <EOL> return immutabledict ( d ) <EOL> else : <EOL> d2 = immutabledict ( self ) <EOL> dict . update ( d2 , d ) <EOL> return d2 <EOL> def __repr__ ( self ) : <EOL> return \"\" % dict . __repr__ ( self ) <EOL> class Properties ( object ) : <EOL> def __init__ ( self , data ) : <EOL> self . __dict__ [ '_data' ] = data <EOL> def __len__ ( self ) : <EOL> return len ( self . _data ) <EOL> def __iter__ ( self ) : <EOL> return iter ( list ( self . _data . values ( ) ) ) <EOL> def __add__ ( self , other ) : <EOL> return list ( self ) + list ( other ) <EOL> def __setitem__ ( self , key , object ) : <EOL> self . _data [ key ] = object <EOL> def __getitem__ ( self , key ) : <EOL> return self . _data [ key ] <EOL> def __delitem__ ( self , key ) : <EOL> del self . _data [ key ] <EOL> def __setattr__ ( self , key , object ) : <EOL> self . _data [ key ] = object <EOL> def __getstate__ ( self ) : <EOL> return { '_data' : self . __dict__ [ '_data' ] } <EOL> def __setstate__ ( self , state ) : <EOL> self . __dict__ [ '_data' ] = state [ '_data' ] <EOL> def __getattr__ ( self , key ) : <EOL> try : <EOL> return self . _data [ key ] <EOL> except KeyError : <EOL> raise AttributeError ( key ) <EOL> def __contains__ ( self , key ) : <EOL> return key in self . _data <EOL> def as_immutable ( self ) : <EOL> return ImmutableProperties ( self . _data ) <EOL> def update ( self , value ) : <EOL> self . _data . update ( value ) <EOL> def get ( self , key , default = None ) : <EOL> if key in self : <EOL> return self [ key ] <EOL> else : <EOL> return default <EOL> def keys ( self ) : <EOL> return list ( self . _data ) <EOL> def values ( self ) : <EOL> return list ( self . _data . values ( ) ) <EOL> def items ( self ) : <EOL> return list ( self . _data . items ( ) ) <EOL> def has_key ( self , key ) : <EOL> return key in self . _data <EOL> def clear ( self ) : <EOL> self . _data . clear ( ) <EOL> class OrderedProperties ( Properties ) : <EOL> def __init__ ( self ) : <EOL> Properties . __init__ ( self , OrderedDict ( ) ) <EOL> class ImmutableProperties ( ImmutableContainer , Properties ) : <EOL> class OrderedDict ( dict ) : <EOL> def __init__ ( self , ____sequence = None , ** kwargs ) : <EOL> self . _list = [ ] <EOL> if ____sequence is None : <EOL> if kwargs : <EOL> self . update ( ** kwargs ) <EOL> else : <EOL> self . update ( ____sequence , ** kwargs ) <EOL> def clear ( self ) : <EOL> self . _list = [ ] <EOL> dict . clear ( self ) <EOL> def copy ( self ) : <EOL> return self . __copy__ ( ) <EOL> def __copy__ ( self ) : <EOL> return OrderedDict ( self ) <EOL> def sort ( self , * arg , ** kw ) : <EOL> self . _list . sort ( * arg , ** kw ) <EOL> def update ( self , ____sequence = None , ** kwargs ) : <EOL> if ____sequence is not None : <EOL> if hasattr ( ____sequence , 'keys' ) : <EOL> for key in ____sequence . keys ( ) : <EOL> self . __setitem__ ( key , ____sequence [ key ] ) <EOL> else : <EOL> for key , value in ____sequence : <EOL> self [ key ] = value <EOL> if kwargs : <EOL> self . update ( kwargs ) <EOL> def setdefault ( self , key , value ) : <EOL> if key not in self : <EOL> self . __setitem__ ( key , value ) <EOL> return value <EOL> else : <EOL> return self . __getitem__ ( key ) <EOL> def __iter__ ( self ) : <EOL> return iter ( self . _list ) <EOL> def keys ( self ) : <EOL> return list ( self ) <EOL> def values ( self ) : <EOL> return [ self [ key ] for key in self . _list ] <EOL> def items ( self ) : <EOL> return [ ( key , self [ key ] ) for key in self . _list ] <EOL> if py2k : <EOL> def itervalues ( self ) : <EOL> return iter ( self . values ( ) ) <EOL> def iterkeys ( self ) : <EOL> return iter ( self ) <EOL> def iteritems ( self ) : <EOL> return iter ( self . items ( ) ) <EOL> def __setitem__ ( self , key , object ) : <EOL> if key not in self : <EOL> try : <EOL> self . _list . append ( key ) <EOL> except AttributeError : <EOL> self . _list = [ key ] <EOL> dict . __setitem__ ( self , key , object ) <EOL> def __delitem__ ( self , key ) : <EOL> dict . __delitem__ ( self , key ) <EOL> self . _list . remove ( key ) <EOL> def pop ( self , key , * default ) : <EOL> present = key in self <EOL> value = dict . pop ( self , key , * default ) <EOL> if present : <EOL> self . _list . remove ( key ) <EOL> return value <EOL> def popitem ( self ) : <EOL> item = dict . popitem ( self ) <EOL> self . _list . remove ( item [ 0 ] ) <EOL> return item <EOL> class OrderedSet ( set ) : <EOL> def __init__ ( self , d = None ) : <EOL> set . __init__ ( self ) <EOL> self . _list = [ ] <EOL> if d is not None : <EOL>" } ``` ### Data Fields In the following each data field in go is explained for each config. The data fields are the same among all splits. #### java, python |field name| type | description | |----------|------|----------------------------| |id |int32 | Index of the sample | |input |string| Input code string | |gt |string| Code string to be predicted| ### Data Splits | name |train| |------|----:| |java | 3000| |python|10000| ## 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 https://github.com/microsoft, https://github.com/madlag ### Licensing Information Computational Use of Data Agreement (C-UDA) License. ### Citation Information ``` @article{raychev2016probabilistic, title={Probabilistic Model for Code with Decision Trees}, author={Raychev, Veselin and Bielik, Pavol and Vechev, Martin}, journal={ACM SIGPLAN Notices}, pages={731--747}, year={2016}, publisher={ACM New York, NY, USA} } @inproceedings{allamanis2013mining, title={Mining Source Code Repositories at Massive Scale using Language Modeling}, author={Allamanis, Miltiadis and Sutton, Charles}, booktitle={2013 10th Working Conference on Mining Software Repositories (MSR)}, pages={207--216}, year={2013}, organization={IEEE} } ``` ### Contributions Thanks to @madlag (and partly also @ncoop57) for adding this dataset.
[ -0.46011844277381897, -0.5413273572921753, 0.1994365155696869, 0.17947427928447723, -0.16453677415847778, 0.18727463483810425, -0.16475358605384827, -0.4491494297981262, 0.23266483843326569, 0.223642036318779, -0.5759962797164917, -0.46656927466392517, -0.47019684314727783, 0.05564987286925316, -0.24006278812885284, 1.0469028949737549, -0.27156710624694824, -0.4472396969795227, -0.2616977393627167, -0.2987127900123596, -0.4419104754924774, -0.539058268070221, -0.2765251100063324, -0.23708468675613403, -0.052830033004283905, 0.3326871693134308, 0.6516298055648804, 0.8351254463195801, 0.4715213179588318, 0.390607088804245, -0.17900361120700836, 0.2857907712459564, -0.2477739006280899, -0.030423980206251144, -0.08406085520982742, -0.3044126033782959, -0.5591048002243042, 0.11560606211423874, 0.5591219067573547, 0.5587458610534668, 0.1050211563706398, 0.2813011407852173, 0.1948481947183609, 0.43460410833358765, -0.9129177927970886, 0.4355344772338867, -0.5356859564781189, 0.13331085443496704, -0.25870972871780396, -0.40535876154899597, -0.17013078927993774, -0.47996601462364197, -0.04464171826839447, -0.7316645979881287, 0.2830992341041565, -0.05787293612957001, 1.0663747787475586, 0.139081671833992, -0.22243915498256683, -0.39212509989738464, -0.442096471786499, 0.7125080823898315, -0.8861896991729736, 0.11885601282119751, 0.5027660727500916, -0.08117356151342392, -0.3698748052120209, -0.7229350209236145, -0.7557070851325989, -0.2055048793554306, -0.3666831851005554, 0.32480546832084656, 0.13944214582443237, -0.00025061675114557147, 0.46130990982055664, 0.6248747110366821, -0.47985777258872986, -0.2981826663017273, -0.4109692871570587, -0.04237652197480202, 0.6871179342269897, 0.47574177384376526, 0.17812290787696838, -0.3380656838417053, -0.3738255202770233, -0.241779163479805, -0.22591915726661682, 0.4556960165500641, 0.31302410364151, 0.28331661224365234, -0.35937798023223877, 0.6532387733459473, -0.4302569627761841, 0.8493696451187134, 0.07515723258256912, -0.3161402940750122, 0.6326831579208374, -0.6289086937904358, -0.11366450041532516, -0.12282899022102356, 0.937299907207489, 0.6839413642883301, 0.16329649090766907, -0.07233165949583054, -0.07135997712612152, 0.00858079269528389, -0.04626631364226341, -0.8322843313217163, -0.4829804301261902, 0.6287228465080261, -0.3551942706108093, -0.32077547907829285, 0.1338520348072052, -0.7784752249717712, -0.24171657860279083, -0.051042936742305756, 0.36747708916664124, -0.4404674768447876, -0.15534132719039917, -0.08568792790174484, -0.2626487910747528, 0.14472559094429016, 0.07849324494600296, -1.0707238912582397, 0.2429431974887848, 0.6649209856987, 0.6350826025009155, 0.13844741880893707, -0.6446111798286438, -0.3367311954498291, 0.26512017846107483, -0.2952191233634949, 0.6285628080368042, -0.35004857182502747, -0.29858696460723877, -0.046363890171051025, 0.09923315048217773, -0.004267415497452021, -0.5430957674980164, 0.1569991260766983, -0.10386569797992706, 0.023938918486237526, -0.36435768008232117, -0.5323759913444519, -0.24928900599479675, 0.29932329058647156, -0.44362449645996094, 1.2702624797821045, 0.28890684247016907, -0.7934853434562683, 0.5645588636398315, -0.5238733291625977, -0.5748897194862366, -0.03148539364337921, -0.15893487632274628, -0.7401045560836792, -0.059394270181655884, 0.1419304609298706, 0.6011143326759338, -0.1744680404663086, -0.08026590943336487, -0.39109838008880615, -0.3543165326118469, 0.24472840130329132, 0.054974865168333054, 1.0315066576004028, 0.30990052223205566, -0.5255692601203918, -0.11807810515165329, -0.8418377041816711, 0.239142045378685, 0.0759020671248436, -0.5296423435211182, -0.1557760089635849, 0.09270496666431427, -0.06613492220640182, 0.15586496889591217, 0.4639534056186676, -0.450347900390625, 0.5440549254417419, -0.2764895260334015, 0.4872785210609436, 0.8373295664787292, 0.1662788689136505, 0.3921763598918915, -0.5045210719108582, 0.17114774882793427, 0.355260968208313, 0.35627996921539307, 0.04002787545323372, -0.5058626532554626, -0.8564474582672119, -0.05364346131682396, 0.011710009537637234, 0.7421983480453491, -0.47502949833869934, 0.8726574778556824, -0.19261430203914642, -0.5516543388366699, -0.21892277896404266, 0.11554458737373352, 0.364351361989975, 0.4181332588195801, 0.5354563593864441, -0.16561013460159302, -0.5231299996376038, -0.592825174331665, -0.14931833744049072, -0.23985901474952698, 0.4187599718570709, 0.27800115942955017, 0.8089843988418579, -0.27233079075813293, 0.9901021122932434, -0.8049657344818115, -0.2276986837387085, 0.01220105029642582, 0.07374725490808487, 0.46937283873558044, 0.8798877596855164, 0.607441782951355, -0.5413875579833984, -0.4244958162307739, -0.013436146080493927, -0.9350420236587524, -0.0438028946518898, -0.28740671277046204, -0.21734251081943512, 0.24111993610858917, 0.24472390115261078, -0.5170153379440308, 0.8140366077423096, 0.14553849399089813, -0.5672393441200256, 0.6400482058525085, -0.4024398922920227, 0.39039668440818787, -1.1372836828231812, 0.05487734079360962, -0.3359667956829071, -0.055959708988666534, -0.4714239239692688, 0.14561359584331512, 0.19781862199306488, 0.1519191861152649, -0.30401161313056946, 0.5022934675216675, -0.6666677594184875, 0.11441294103860855, 0.003118449356406927, -0.1034352257847786, -0.14866046607494354, 0.49786800146102905, -0.15961512923240662, 0.7289355993270874, 0.6047349572181702, -0.8186593055725098, 0.3949623703956604, 0.5004283785820007, -0.22890840470790863, 0.5168957710266113, -0.3453858196735382, -0.011334291659295559, -0.14863057434558868, -0.1154203712940216, -1.0482895374298096, -0.13904128968715668, 0.35099807381629944, -0.42108726501464844, 0.13244220614433289, -0.217830628156662, -0.5339442491531372, -0.6223520636558533, -0.3681487739086151, 0.3497887849807739, 0.47715499997138977, -0.522018551826477, 0.40245410799980164, 0.27929437160491943, 0.25019240379333496, -0.624086856842041, -0.7148353457450867, -0.14383630454540253, 0.020103393122553825, -0.49903807044029236, 0.19027476012706757, -0.3229629397392273, -0.19849863648414612, 0.18105174601078033, -0.08757279813289642, -0.20520544052124023, 0.17838793992996216, 0.42505162954330444, 0.223624587059021, 0.18615533411502838, 0.031593065708875656, -0.09635913372039795, -0.21957316994667053, -0.09615860879421234, -0.010982646606862545, 0.5440618395805359, -0.22480639815330505, -0.22948631644248962, -0.3974810838699341, 0.2601597309112549, 0.5736021995544434, -0.3547581434249878, 0.7849108576774597, 0.38663744926452637, -0.3699289560317993, -0.25333869457244873, -0.4912886619567871, -0.24368201196193695, -0.49379763007164, 0.24598339200019836, -0.5824978351593018, -0.5303806662559509, 0.7862364053726196, 0.3511502742767334, 0.443959504365921, 0.5922150015830994, 0.5582618117332458, -0.24897952377796173, 0.6504849791526794, 0.2017393410205841, -0.057224344462156296, 0.5188563466072083, -0.854896068572998, 0.15809646248817444, -0.6137888431549072, -0.3517080247402191, -0.3989177346229553, -0.2909035384654999, -0.680242121219635, -0.3603006601333618, 0.31907007098197937, 0.4593023657798767, -0.314882755279541, 0.686009407043457, -1.082050085067749, 0.26836737990379333, 0.7663782835006714, 0.23418518900871277, 0.17848484218120575, -0.0688178539276123, -0.13001662492752075, 0.044965919107198715, -0.4666120409965515, -0.18428534269332886, 1.1040135622024536, -0.07252389192581177, 0.7368855476379395, -0.10080382227897644, 0.9613377451896667, 0.14121177792549133, 0.17392347753047943, -0.4928036332130432, 0.6620323061943054, -0.07864618301391602, -0.7616084814071655, -0.28088870644569397, -0.4311085045337677, -0.7528507709503174, 0.3068934977054596, -0.3067702054977417, -0.7612687945365906, 0.45873671770095825, 0.32330581545829773, -0.317598819732666, 0.5949450135231018, -0.5359335541725159, 0.8302749991416931, -0.06401252746582031, -0.4423718750476837, 0.007153430953621864, -0.6187952756881714, 0.2599431574344635, 0.15423807501792908, 0.061948440968990326, -0.13770133256912231, -0.04701269418001175, 0.9486984610557556, -1.1014708280563354, 0.4001248776912689, -0.2848196029663086, 0.2716218829154968, 0.6142376661300659, -0.07492785155773163, 0.820203423500061, 0.05698500573635101, -0.07559103518724442, -0.1284785270690918, 0.0348542183637619, -0.3798500895500183, -0.4858514666557312, 0.6215471625328064, -0.8593084812164307, -0.30812299251556396, -0.7013440132141113, -0.5571807622909546, 0.1466233730316162, 0.2666916251182556, 0.3939790725708008, 0.5700722336769104, 0.3616580367088318, 0.04459382966160774, 0.3685203790664673, -0.07450244575738907, 0.7829194664955139, 0.32506871223449707, -0.03287448361515999, -0.7255832552909851, 0.8964873552322388, 0.4912947416305542, 0.2441260665655136, 0.44377386569976807, 0.0032504876144230366, -0.2846373915672302, -0.4685554504394531, -0.25209277868270874, 0.1693403720855713, -0.8109751343727112, -0.28384795784950256, -0.7341244220733643, -0.2257433533668518, -0.5437273383140564, -0.368420273065567, -0.4003995656967163, -0.45597198605537415, -0.4324101209640503, -0.15738697350025177, 0.9577341079711914, 0.5124826431274414, -0.49024882912635803, 0.17314186692237854, -0.6162921786308289, 0.4280906319618225, 0.37418776750564575, 0.3787260949611664, -0.05484231188893318, -0.3378966450691223, -0.2192825973033905, 0.09930706769227982, -0.3590100407600403, -0.7656893730163574, 0.20151609182357788, -0.031058285385370255, 0.5790089964866638, 0.2540118098258972, 0.2704988121986389, 1.133550763130188, -0.2307841181755066, 0.8107894062995911, 0.20494218170642853, -0.9672538042068481, 0.6345285177230835, -0.24783337116241455, 0.1176023930311203, 0.7879716753959656, 0.08386893570423126, -0.3835836946964264, -0.4543862044811249, -0.655062735080719, -1.1029188632965088, 0.6324037313461304, 0.23187828063964844, -0.11283077299594879, -0.12882757186889648, 0.42464253306388855, -0.1814565658569336, 0.16740240156650543, -0.8759684562683105, -0.8844778537750244, -0.32718658447265625, -0.041212018579244614, 0.09864263981580734, -0.1390538364648819, -0.09508417546749115, -0.5687453150749207, 0.767029345035553, 0.17358551919460297, 0.5366438031196594, 0.377767950296402, -0.18691125512123108, -0.014534153044223785, 0.20124700665473938, 0.6482945680618286, 0.7552908658981323, -0.5261980891227722, 0.07876627892255783, 0.229445680975914, -0.5909561514854431, 0.37636247277259827, 0.15881647169589996, -0.21484655141830444, -0.08065710961818695, 0.48415282368659973, 0.6950823664665222, -0.009676152840256691, -0.2123938500881195, 0.4815467298030853, 0.2028152346611023, -0.2458919733762741, -0.5040022134780884, 0.07304468750953674, -0.1365879625082016, 0.23866355419158936, 0.44350534677505493, 0.1071409210562706, -0.08860448002815247, -0.5285669565200806, 0.2523380219936371, 0.32315102219581604, -0.21971449255943298, -0.03353559598326683, 0.9884490370750427, -0.11265035718679428, -0.11989229917526245, 0.6299270391464233, -0.2824130952358246, -0.5808629989624023, 0.7355439066886902, 0.340053915977478, 0.8172134160995483, 0.11911190301179886, -0.11402983218431473, 0.637793779373169, 0.49722832441329956, -0.060403767973184586, 0.6172782778739929, -0.2093099057674408, -0.5716205835342407, -0.13327907025814056, -0.5809523463249207, -0.14938238263130188, 0.0052530826069414616, -0.5063039064407349, -0.042044296860694885, -0.6842955946922302, -0.3547416031360626, -0.2123212218284607, 0.2638241946697235, -0.5411108136177063, 0.26198041439056396, -0.1967499554157257, 0.8899217844009399, -0.9347785711288452, 0.6073878407478333, 0.7099185585975647, -0.7604545950889587, -0.9180244207382202, -0.13484419882297516, -0.244999960064888, -0.619266927242279, 0.7013694643974304, -0.04799921438097954, 0.3208402097225189, -0.12773586809635162, -0.5384529232978821, -0.8894203901290894, 1.2601792812347412, 0.00026600417913869023, -0.3636396527290344, 0.051182858645915985, 0.3049747049808502, 0.2930207848548889, 0.1117493137717247, 0.470585435628891, 0.593085527420044, 0.7604327201843262, -0.1848820596933365, -0.7634932398796082, 0.3534472584724426, -0.4003143310546875, -0.04717526584863663, 0.2695118486881256, -0.9092239141464233, 1.305817723274231, -0.22546300292015076, 0.039973605424165726, 0.28248733282089233, 0.6863777041435242, 0.5101009011268616, -0.020910274237394333, 0.4399077892303467, 1.0692840814590454, 0.6653558015823364, -0.4085468351840973, 1.0430009365081787, -0.4639055132865906, 0.7800382375717163, 0.9956884384155273, 0.05567081272602081, 0.7381413578987122, 0.4864242970943451, -0.425798237323761, 0.42678722739219666, 0.5034742951393127, -0.25080379843711853, 0.669181227684021, 0.3477027416229248, -0.43642356991767883, -0.1775609850883484, 0.28686925768852234, -0.6240519881248474, 0.24456708133220673, 0.16440220177173615, -0.26502394676208496, -0.13510198891162872, -0.030868442729115486, 0.1948215514421463, -0.19059735536575317, -0.3176932632923126, 0.693558931350708, -0.15771640837192535, -0.6096428632736206, 0.9173714518547058, -0.30664071440696716, 0.7405899167060852, -0.37080463767051697, -0.164641872048378, -0.2684454917907715, 0.4521355926990509, -0.5855480432510376, -0.9642717838287354, 0.08055468648672104, -0.4297447204589844, -0.5451799631118774, 0.009841948747634888, 0.24706538021564484, -0.5022130608558655, -0.5345842242240906, 0.4030662178993225, -0.07289290428161621, 0.18802975118160248, 0.17363275587558746, -0.7059071063995361, 0.053687483072280884, 0.08807142823934555, -0.40212997794151306, 0.09487355500459671, 0.2965514063835144, 0.1449149250984192, 0.7098667621612549, 0.6792008280754089, 0.07263224571943283, 0.5492373108863831, -0.4942474961280823, 0.9263268113136292, -0.8320984840393066, -0.4291083812713623, -0.7694998979568481, 0.7899195551872253, -0.16058151423931122, -0.5480861067771912, 0.7646790146827698, 0.9704040884971619, 0.934833824634552, -0.24621044099330902, 1.0391558408737183, -0.5821146965026855, 0.42479604482650757, -0.3977510929107666, 0.7969143986701965, -0.6700207591056824, -0.08991758525371552, -0.39320552349090576, -0.798732340335846, -0.23206791281700134, 0.801190197467804, -0.3171960711479187, -0.009081979282200336, 0.7232497334480286, 0.9456785917282104, 0.004764148965477943, -0.26307910680770874, 0.0960911437869072, 0.32161325216293335, 0.3018598258495331, 0.8456547856330872, 0.7118801474571228, -0.9440088868141174, 0.4855760931968689, -0.819877028465271, -0.21070772409439087, -0.15559349954128265, -0.6999080777168274, -0.8335956931114197, -0.7560527324676514, -0.4266704022884369, -0.6072876453399658, 0.03364050015807152, 0.9040613174438477, 0.6798017621040344, -1.0989515781402588, -0.4467763602733612, -0.12468055635690689, 0.14122742414474487, -0.4628894627094269, -0.3109382688999176, 0.6442806124687195, -0.32806316018104553, -0.6380178928375244, 0.09202782809734344, 0.05602637678384781, 0.20105935633182526, 0.24883303046226501, -0.14987310767173767, -0.4115464687347412, -0.34892669320106506, 0.43088993430137634, 0.4958127439022064, -0.613669753074646, -0.22625838220119476, -0.5228512287139893, -0.24068240821361542, 0.2469075620174408, 0.4618854224681854, -0.6668441295623779, 0.5721039772033691, 0.9596368074417114, 0.2964506149291992, 0.5641196370124817, -0.07917090505361557, 0.10699861496686935, -0.47735005617141724, 0.3073781728744507, -0.06451113522052765, 0.5623153448104858, -0.16561059653759003, -0.41656970977783203, 0.7483026385307312, 0.5756270289421082, -0.6520196795463562, -0.8180317878723145, -0.3058299422264099, -1.2064087390899658, -0.20621903240680695, 0.9262503981590271, -0.17090070247650146, -0.24970704317092896, -0.15882128477096558, -0.1064121425151825, 0.37731093168258667, -0.4639560282230377, 0.45272302627563477, 0.25086164474487305, -0.13106025755405426, -0.10924682766199112, -0.44234055280685425, 0.6219383478164673, 0.12812362611293793, -0.9720525145530701, 0.1208353191614151, 0.2735948860645294, 0.5102448463439941, 0.42005184292793274, 0.8329411149024963, -0.08516108989715576, 0.3343946635723114, -0.01219470426440239, 0.30659249424934387, -0.3059510886669159, -0.08232365548610687, -0.026931660249829292, 0.08613961935043335, -0.20908169448375702, -0.45982852578163147 ]
null
null
null
null
null
null
null
null
null
null
null
null
null
multi_booked
null
2023-06-01T14:59:47Z
473
0
multibooked
[ "task_categories:text-classification", "task_ids:sentiment-classification", "annotations_creators:expert-generated", "language_creators:found", "multilinguality:monolingual", "size_categories:n<1K", "source_datasets:original", "language:ca", "language:eu", "license:cc-by-3.0", "arxiv:1803.08614", "region:us" ]
2023-06-01T14:59:47Z
2022-03-02T23:29:22.000Z
2022-03-02T23:29:22
--- annotations_creators: - expert-generated language_creators: - found language: - ca - eu license: - cc-by-3.0 multilinguality: - monolingual size_categories: - n<1K source_datasets: - original task_categories: - text-classification task_ids: - sentiment-classification paperswithcode_id: multibooked pretty_name: MultiBooked dataset_info: - config_name: ca features: - name: text sequence: - name: wid dtype: string - name: sent dtype: string - name: para dtype: string - name: word dtype: string - name: terms sequence: - name: tid dtype: string - name: lemma dtype: string - name: morphofeat dtype: string - name: pos dtype: string - name: target sequence: string - name: opinions sequence: - name: oid dtype: string - name: opinion_holder_target sequence: string - name: opinion_target_target sequence: string - name: opinion_expression_polarity dtype: class_label: names: '0': StrongNegative '1': Negative '2': Positive '3': StrongPositive - name: opinion_expression_target sequence: string splits: - name: train num_bytes: 1952731 num_examples: 567 download_size: 4429415 dataset_size: 1952731 - config_name: eu features: - name: text sequence: - name: wid dtype: string - name: sent dtype: string - name: para dtype: string - name: word dtype: string - name: terms sequence: - name: tid dtype: string - name: lemma dtype: string - name: morphofeat dtype: string - name: pos dtype: string - name: target sequence: string - name: opinions sequence: - name: oid dtype: string - name: opinion_holder_target sequence: string - name: opinion_target_target sequence: string - name: opinion_expression_polarity dtype: class_label: names: '0': StrongNegative '1': Negative '2': Positive '3': StrongPositive - name: opinion_expression_target sequence: string splits: - name: train num_bytes: 1175816 num_examples: 343 download_size: 4429415 dataset_size: 1175816 config_names: - ca - eu --- # Dataset Card for MultiBooked ## 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://hdl.handle.net/10230/33928 - **Repository:** https://github.com/jerbarnes/multibooked - **Paper:** https://arxiv.org/abs/1803.08614 - **Leaderboard:** - **Point of Contact:** ### Dataset Summary MultiBooked is a corpus of Basque and Catalan Hotel Reviews Annotated for Aspect-level Sentiment Classification. The corpora are compiled from hotel reviews taken mainly from booking.com. The corpora are in Kaf/Naf format, which is an xml-style stand-off format that allows for multiple layers of annotation. Each review was sentence- and word-tokenized and lemmatized using Freeling for Catalan and ixa-pipes for Basque. Finally, for each language two annotators annotated opinion holders, opinion targets, and opinion expressions for each review, following the guidelines set out in the OpeNER project. ### Supported Tasks and Leaderboards [More Information Needed] ### Languages Each sub-dataset is monolingual in the languages: - ca: Catalan - eu: Basque ## Dataset Structure ### Data Instances [More Information Needed] ### Data Fields - `text`: layer of the original text. - `wid`: list of word IDs for each word within the example. - `sent`: list of sentence IDs for each sentence within the example. - `para`: list of paragraph IDs for each paragraph within the example. - `word`: list of words. - `terms`: layer of the terms resulting from the analysis of the original text (lemmatization, morphological, PoS tagging) - `tid`: list of term IDs for each term within the example. - `lemma`: list of lemmas. - `morphofeat`: list of morphological features. - `pos`: list of PoS tags. - `target`: list of sublists of the corresponding word IDs (normally, the sublists contain only one element, in a one-to-one correspondence between words and terms). - `opinions`: layer of the opinions in the text. - `oid`: list of opinion IDs - `opinion_holder_target`: list of sublists of the corresponding term IDs that span the opinion holder. - `opinion_target_target`: list of sublists of the corresponding term IDs that span the opinion target. - `opinion_expression_polarity`: list of the opinion expression polarities. The polarity can take one of the values: `StrongNegative`, `Negative`, `Positive`, or `StrongPositive`. - `opinion_expression_target`: list of sublists of the corresponding term IDs that span the opinion expression. ### 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 Dataset is under the [CC-BY 3.0](https://creativecommons.org/licenses/by/3.0/) license. ### Citation Information ``` @inproceedings{Barnes2018multibooked, author={Barnes, Jeremy and Lambert, Patrik and Badia, Toni}, title={MultiBooked: A corpus of Basque and Catalan Hotel Reviews Annotated for Aspect-level Sentiment Classification}, booktitle = {Proceedings of the Eleventh International Conference on Language Resources and Evaluation (LREC'18)}, year = {2018}, month = {May}, date = {7-12}, address = {Miyazaki, Japan}, publisher = {European Language Resources Association (ELRA)}, language = {english} } ``` ### Contributions Thanks to [@albertvillanova](https://github.com/albertvillanova) for adding this dataset.
[ -0.537034273147583, -0.6084229946136475, 0.0681442990899086, 0.28851601481437683, -0.25689369440078735, -0.006207871250808239, -0.41915208101272583, -0.3242396116256714, 0.48355206847190857, 0.6675919890403748, -0.6432689428329468, -1.0597437620162964, -0.5062817931175232, 0.2411847859621048, -0.10836561024188995, 1.3830900192260742, -0.13376832008361816, 0.023854754865169525, -0.23322255909442902, -0.4483163058757782, -0.2249155342578888, -0.8118888139724731, -0.2910322844982147, -0.30784815549850464, 0.5219607353210449, 0.5542889833450317, 0.5900619029998779, 0.34067195653915405, 0.32698315382003784, 0.21183480322360992, -0.07308278232812881, 0.1420486867427826, -0.3230638802051544, -0.08005697280168533, -0.031063377857208252, -0.37571123242378235, -0.6624839901924133, 0.06248586252331734, 0.6496740579605103, 0.5998605489730835, -0.05474555864930153, 0.4096950888633728, 0.3154258728027344, 0.9846223592758179, -0.39287880063056946, 0.6320639252662659, -0.20882581174373627, 0.008756191469728947, -0.2740810811519623, 0.01335992943495512, -0.2625029981136322, -0.4945127069950104, -0.05347079038619995, -0.6121694445610046, 0.2681257724761963, 0.01609518937766552, 0.7937583327293396, 0.05352528393268585, -0.31796208024024963, -0.4249051809310913, -0.5245171189308167, 0.8417471647262573, -0.6352361440658569, 0.36802536249160767, 0.5252400040626526, -0.11656273901462555, -0.08398184180259705, -0.4903146028518677, -0.8598834276199341, 0.14302527904510498, -0.2938300669193268, 0.321786105632782, 0.038656871765851974, -0.167787104845047, 0.2827302813529968, 0.46428313851356506, -0.3302232325077057, -0.3089437186717987, -0.4752127528190613, -0.01374615728855133, 0.6720188856124878, 0.11657002568244934, 0.2142031341791153, -0.6665129661560059, -0.2943750321865082, -0.32301560044288635, -0.36248981952667236, 0.3238237798213959, 0.5886470079421997, 0.5745067596435547, -0.3971979320049286, 0.7274350523948669, -0.2260427623987198, 0.37665992975234985, -0.21209004521369934, -0.1954706907272339, 0.8914675116539001, -0.7029802203178406, 0.03776254877448082, 0.10362511873245239, 1.0032260417938232, 0.7476973533630371, 0.09386445581912994, 0.19599375128746033, -0.07813654094934464, 0.04930463805794716, 0.08422575891017914, -0.6038730144500732, -0.29523414373397827, 0.6969043612480164, -0.616093099117279, -0.3606571555137634, 0.17553800344467163, -1.2321388721466064, -0.31589075922966003, -0.31374019384384155, 0.19656087458133698, -0.15385597944259644, -0.5313020348548889, 0.15316273272037506, -0.33937689661979675, 0.2515259385108948, 0.1255701333284378, -0.6351512670516968, 0.360996812582016, 0.31989413499832153, 0.759771466255188, -0.10409048199653625, -0.3729098439216614, -0.03905302286148071, -0.06985434889793396, -0.08041822910308838, 0.7582552433013916, -0.2953610122203827, -0.627943754196167, 0.30726736783981323, 0.24782590568065643, 0.033521268516778946, -0.21002240478992462, 1.050362467765808, -0.23220881819725037, 0.540921688079834, -0.5323184132575989, -0.3538449704647064, -0.36315566301345825, 0.4959527254104614, -0.8059835433959961, 1.4253664016723633, 0.12485765665769577, -0.9776062965393066, 0.41948744654655457, -0.7994899153709412, -0.3269360363483429, -0.12596920132637024, -0.09104802459478378, -0.5774132013320923, -0.2640480101108551, 0.3878340423107147, 0.4454291760921478, -0.1540554016828537, 0.13591454923152924, -0.16344039142131805, 0.1305137723684311, 0.048492178320884705, -0.1056893989443779, 0.9423952698707581, -0.004287505988031626, -0.17932096123695374, 0.23564474284648895, -1.065171241760254, -0.12074152380228043, 0.17320825159549713, -0.5453934669494629, -0.4279002547264099, 0.12478680163621902, 0.45125874876976013, 0.33238527178764343, 0.47279179096221924, -0.6310553550720215, 0.3481922149658203, -0.3463771641254425, 0.1853303760290146, 0.5133041739463806, 0.17044812440872192, 0.326002299785614, -0.41079509258270264, 0.46265143156051636, 0.24781545996665955, 0.5205468535423279, -0.027907956391572952, -0.6756678819656372, -0.8000498414039612, -0.3215082585811615, 0.3007350564002991, 0.7284517288208008, -0.7192688584327698, 0.7725847363471985, -0.3995010554790497, -0.6268657445907593, -0.6321232914924622, 0.2617812156677246, 0.5190646052360535, 0.22275039553642273, 0.6245443820953369, -0.36640694737434387, -0.3622722029685974, -0.9061070680618286, -0.021703211590647697, -0.21797211468219757, 0.42164862155914307, 0.34143728017807007, 0.5957115292549133, -0.16841699182987213, 0.6776238679885864, -0.602135419845581, -0.6054306626319885, -0.4290770888328552, 0.10692526400089264, 0.4967392683029175, 0.4914156496524811, 0.481868714094162, -0.8164052367210388, -0.42671826481819153, -0.20704558491706848, -0.6130205988883972, -0.0644155889749527, 0.012280546128749847, -0.2525828778743744, 0.26488351821899414, 0.30591878294944763, -0.3178319036960602, 0.3783280849456787, 0.5844855904579163, -0.40808534622192383, 0.557437539100647, -0.07366856187582016, 0.25911152362823486, -1.4300063848495483, -0.13498066365718842, 0.14003019034862518, 0.15531262755393982, -0.4942757785320282, -0.2939917743206024, 0.05541400983929634, 0.20013800263404846, -0.28543633222579956, 0.5681369304656982, -0.37838077545166016, 0.3015225827693939, 0.07363754510879517, 0.07581111043691635, 0.2817714810371399, 0.8652933239936829, 0.09362607449293137, 0.46767234802246094, 0.5894430875778198, -0.5743640661239624, 0.20064035058021545, 0.6453797221183777, -0.5497019290924072, 0.4962270259857178, -0.5017728805541992, -0.052603501826524734, -0.2825196087360382, 0.22546951472759247, -1.032073974609375, -0.10363002866506577, 0.47136586904525757, -0.384092777967453, 0.14965584874153137, -0.25933942198753357, -0.6814625263214111, -0.24430882930755615, -0.7616651654243469, 0.23821476101875305, 0.04299716278910637, -0.4670906066894531, 0.82546067237854, 0.5922596454620361, -0.2892494797706604, -0.824943482875824, -0.6441380381584167, -0.10155039280653, -0.04872007668018341, -0.38147789239883423, 0.35546717047691345, -0.19016870856285095, -0.149517223238945, 0.20107246935367584, 0.2354792207479477, 0.17734631896018982, -0.19720458984375, 0.4315333962440491, 0.3240221440792084, 0.024654366075992584, 0.21041345596313477, 0.1633138209581375, 0.07984554022550583, -0.08817974478006363, -0.06617037206888199, 0.737967848777771, -0.26479509472846985, -0.11506200581789017, -0.24651989340782166, 0.5141069293022156, 0.5042210817337036, -0.39164304733276367, 0.9449562430381775, 0.810884416103363, -0.38211655616760254, -0.17001523077487946, -0.5699483752250671, 0.1173577606678009, -0.3523299992084503, 0.3488335609436035, -0.4865821599960327, -0.5062836408615112, 0.853072464466095, 0.30568310618400574, 0.38363519310951233, 0.7774710655212402, 0.74966961145401, 0.16385409235954285, 0.6605787873268127, 0.6245083808898926, -0.16932237148284912, 0.5680768489837646, -0.531805157661438, 0.2239239364862442, -0.8863134384155273, -0.577934205532074, -0.7973419427871704, -0.267060250043869, -0.9540297389030457, -0.3131769895553589, 0.31772270798683167, 0.24416136741638184, -0.07491780072450638, 0.33875182271003723, -0.7802534103393555, 0.37487688660621643, 0.8635371327400208, 0.012522563338279724, 0.36821094155311584, -0.04999842867255211, -0.22495104372501373, 0.09139218926429749, -0.6139305830001831, -0.7397111058235168, 1.1313902139663696, 0.3474003076553345, 0.6289006471633911, 0.20010708272457123, 0.7542993426322937, 0.29745909571647644, 0.2923312485218048, -0.7939154505729675, 0.3818008303642273, -0.20701272785663605, -0.7150005102157593, -0.32889798283576965, -0.23484210669994354, -0.8029594421386719, 0.2607652246952057, -0.5109134316444397, -0.4961560070514679, 0.7243548631668091, -0.02401198260486126, -0.30687958002090454, 0.25963258743286133, -0.8209922909736633, 0.9200772047042847, -0.1909998655319214, -0.2519041895866394, -0.04948773235082626, -0.565159022808075, 0.15287931263446808, -0.03602488711476326, 0.5851166844367981, -0.1794724315404892, 0.003082927083596587, 1.1155539751052856, -0.25631678104400635, 0.9592312574386597, -0.19150182604789734, 0.07049562782049179, 0.3522879481315613, -0.16876401007175446, 0.18302559852600098, 0.07589209824800491, -0.2174024134874344, 0.6352274417877197, 0.3152751922607422, -0.2704909145832062, -0.25461962819099426, 0.7518802881240845, -1.0116729736328125, -0.2160666435956955, -0.6743951439857483, -0.2925109565258026, -0.13985972106456757, 0.3519168198108673, 0.16929537057876587, 0.5225490927696228, -0.20833098888397217, 0.0564192458987236, 0.2955596148967743, -0.5002588629722595, 0.30788370966911316, 0.344473272562027, -0.3258049190044403, -0.8236059546470642, 0.7029786109924316, 0.33282360434532166, -0.011034137569367886, 0.3974657952785492, 0.18777428567409515, -0.5058877468109131, -0.4490506649017334, -0.46617719531059265, 0.25453808903694153, -0.8206641674041748, -0.09065329283475876, -0.8345061540603638, -0.09405585378408432, -0.6314418315887451, 0.05593381077051163, -0.23888267576694489, -0.6309584379196167, -0.16647078096866608, -0.2952125370502472, 0.5057207942008972, 0.7288370728492737, -0.08476172387599945, 0.24628035724163055, -0.7031944394111633, 0.27238738536834717, -0.0008581731235608459, 0.43112221360206604, -0.07921324670314789, -0.2980659008026123, -0.44728758931159973, -0.21955075860023499, -0.2789388597011566, -0.7786122560501099, 0.4426499009132385, 0.12196730077266693, 0.5657207369804382, 0.21403416991233826, 0.29208943247795105, 0.2816599905490875, -0.40865904092788696, 1.2037421464920044, 0.18624696135520935, -0.6336432099342346, 0.6130866408348083, -0.265692800283432, 0.2084086835384369, 0.8733491897583008, 0.5676866769790649, -0.5341511964797974, -0.31928205490112305, -0.751440703868866, -1.2565990686416626, 0.6803818941116333, 0.07578553259372711, 0.22131194174289703, -0.15586480498313904, 0.21452580392360687, 0.1947048008441925, 0.4740302562713623, -1.1572998762130737, -0.6849076151847839, -0.47935721278190613, -0.453129380941391, -0.2740509808063507, -0.35706931352615356, -0.3223608434200287, -0.39626625180244446, 1.0592082738876343, 0.04099258407950401, 0.26882851123809814, 0.38753122091293335, 0.16966605186462402, -0.05368264764547348, 0.47295889258384705, 0.35003262758255005, 0.46257996559143066, -0.48501208424568176, 0.017346283420920372, -0.05002664402127266, -0.5524358749389648, -0.21505007147789001, 0.16542454063892365, -0.21075402200222015, 0.04509143903851509, 0.4311835765838623, 0.732948362827301, -0.15018166601657867, -0.35465484857559204, 0.6187711358070374, -0.1492318958044052, -0.2268010526895523, -0.6469239592552185, -0.21808703243732452, -0.11545594036579132, 0.15006902813911438, 0.14455881714820862, -0.026812300086021423, 0.0908794105052948, -0.686632513999939, -0.008663466200232506, 0.2664502263069153, -0.2794438600540161, -0.2383180409669876, 0.41126155853271484, 0.2797180414199829, -0.2972506284713745, 0.39543458819389343, -0.3247324526309967, -0.6125874519348145, 0.33729037642478943, 0.07969372719526291, 0.8909403085708618, 0.027582865208387375, 0.27156683802604675, 0.7597779035568237, 0.5516993999481201, -0.05162143334746361, 0.6051098108291626, -0.0765225738286972, -1.1096062660217285, -0.20438522100448608, -0.9568909406661987, -0.4126603901386261, 0.08197830617427826, -0.8030995726585388, 0.3829333484172821, -0.48536601662635803, -0.3156241476535797, 0.10509045422077179, 0.15861108899116516, -0.7953794598579407, 0.024126781150698662, -0.03082774206995964, 0.807640016078949, -1.0439003705978394, 0.7419580817222595, 0.7076071500778198, -0.991605281829834, -0.7879875898361206, -0.13167022168636322, 0.04167231544852257, -0.5244126915931702, 0.28798142075538635, 0.11987430602312088, 0.01288439892232418, -0.3504510521888733, -0.42872026562690735, -0.48386308550834656, 0.9165984392166138, -0.2614136338233948, -0.49045467376708984, 0.14760169386863708, 0.07613614946603775, 0.5674043893814087, -0.47534334659576416, 0.17065134644508362, 0.5016337037086487, 0.5338881611824036, -0.19083093106746674, -0.857193648815155, -0.12196994572877884, -0.5244356989860535, -0.28254368901252747, 0.167673721909523, -0.7569402456283569, 0.8315730094909668, 0.06075771152973175, 0.08012832701206207, -0.24006249010562897, 0.4658779203891754, 0.009405805729329586, 0.23102104663848877, 0.5552639961242676, 0.7511405944824219, 0.8094243407249451, -0.16408707201480865, 1.1443724632263184, -0.5155943036079407, 0.4083937406539917, 1.23051917552948, -0.1314372569322586, 1.059993028640747, 0.4238568842411041, -0.27375277876853943, 0.7964819669723511, 0.5301495790481567, -0.04959802329540253, 0.5803147554397583, 0.0512603223323822, -0.1506456583738327, 0.05440960079431534, -0.2730536460876465, -0.4432692527770996, 0.2706662714481354, 0.4261082112789154, -0.38189688324928284, 0.05800236016511917, 0.05336172506213188, 0.14673246443271637, 0.008150734938681126, -0.3416004478931427, 0.9529055953025818, 0.014383385889232159, -0.5599804520606995, 0.31833237409591675, 0.11525668203830719, 0.7767036557197571, -0.586059033870697, -0.037914834916591644, -0.07331477850675583, 0.15913517773151398, -0.52411949634552, -1.0437278747558594, 0.12954284250736237, -0.005040384363383055, -0.5922173857688904, -0.26259565353393555, 0.4687071442604065, -0.6107394695281982, -0.9092589020729065, 0.4105389416217804, 0.5849339365959167, 0.1386253386735916, 0.17549140751361847, -0.8315277695655823, 0.11124318838119507, 0.16308645904064178, -0.42566385865211487, 0.08392615616321564, 0.5094806551933289, -0.04244928061962128, 0.297672837972641, 0.5830402374267578, 0.26598459482192993, 0.05972316861152649, 0.5565404295921326, 0.9173349738121033, -0.6263251304626465, -0.5060729384422302, -0.5785871744155884, 0.6065718531608582, -0.20487521588802338, -0.5879727602005005, 0.8431882858276367, 0.8678950071334839, 1.1049374341964722, -0.10842959582805634, 0.9483690857887268, -0.1917528212070465, 0.7631734013557434, -0.4384939670562744, 0.5402064323425293, -0.5989212989807129, 0.20066340267658234, -0.5065480470657349, -0.941559374332428, -0.36508697271347046, 0.719869077205658, -0.45258525013923645, -0.06515488028526306, 0.7357324361801147, 0.9853365421295166, 0.18568719923496246, 0.11314112693071365, -0.08169107884168625, 0.36521115899086, 0.23183278739452362, 0.15799489617347717, 0.5940966010093689, -0.6044454574584961, 0.4581461250782013, -0.5252949595451355, -0.384086549282074, 0.13076752424240112, -0.8454868197441101, -0.8923344612121582, -0.9848535656929016, -0.6157774329185486, -0.7610717415809631, -0.24596498906612396, 1.2460265159606934, 0.3356010615825653, -1.1035736799240112, -0.34462252259254456, 0.3501444160938263, 0.2367822229862213, -0.28340601921081543, -0.2713606655597687, 0.7662785053253174, -0.09467257559299469, -0.787753164768219, -0.09451418370008469, 0.13042856752872467, -0.18127556145191193, -0.30039337277412415, 0.04575283080339432, -0.41393721103668213, 0.01240408793091774, 0.6778905987739563, 0.04787859320640564, -0.5141922831535339, -0.1604115217924118, -0.21086733043193817, 0.014888278208673, 0.21389199793338776, 0.4779805541038513, -0.3778868019580841, 0.4503615200519562, 0.47879382967948914, 0.21156451106071472, 0.4321357309818268, -0.06700960546731949, 0.042303431779146194, -0.7622420787811279, 0.1387128233909607, 0.12755537033081055, 0.5071166753768921, 0.4228920340538025, -0.43338215351104736, 0.41091349720954895, 0.21606482565402985, -0.4631309509277344, -0.662212610244751, -0.07105685770511627, -1.4125499725341797, -0.15199311077594757, 1.4203201532363892, 0.09533262252807617, -0.3034355640411377, -0.3552905023097992, -0.36988919973373413, 0.14775307476520538, -0.6931188106536865, 0.6884148120880127, 1.1380623579025269, -0.09508367627859116, 0.06100769340991974, -0.5610537528991699, 0.6765509247779846, 0.027929753065109253, -0.8419278264045715, 0.07386389374732971, 0.556520938873291, 0.3049525022506714, 0.5623226165771484, 0.9202347993850708, -0.4529306888580322, -0.14061592519283295, -0.15559595823287964, 0.6095226407051086, 0.010479197837412357, -0.3307062089443207, -0.25396233797073364, 0.28043001890182495, 0.10845151543617249, -0.2746279239654541 ]
null
null
null
null
null
null
null
null
null
null
null
null
null
Muennighoff/multi_eurlex
Muennighoff
2023-05-21T18:17:23Z
473
2
null
[ "region:us" ]
2023-05-21T18:17:23Z
2023-05-21T14:54:28.000Z
2023-05-21T14:54:28
Entry not found
[ -0.3227645754814148, -0.22568479180335999, 0.8622263669967651, 0.43461522459983826, -0.52829909324646, 0.7012971639633179, 0.7915719747543335, 0.07618614286184311, 0.774603009223938, 0.2563217282295227, -0.7852813005447388, -0.22573819756507874, -0.9104475975036621, 0.5715674161911011, -0.3992327153682709, 0.5791246294975281, -0.14494499564170837, -0.10751135647296906, 0.28233814239501953, -0.2768957316875458, -0.5409227013587952, -0.3685525059700012, -1.1902779340744019, 0.061491698026657104, 0.5316582918167114, 0.743514358997345, 0.7584061622619629, 0.3652168810367584, 0.643257737159729, 0.39322906732559204, -0.231389120221138, 0.48270541429519653, -0.04171793907880783, 0.0026038705836981535, -0.3524438440799713, -0.5516899824142456, -0.28596577048301697, 0.07584768533706665, 1.096130132675171, 0.9666873812675476, -0.28466421365737915, 0.05330856889486313, -0.30636167526245117, 0.3308892846107483, -0.4973427355289459, 0.3054097294807434, -0.022506216540932655, 0.16318757832050323, -0.704151451587677, -0.5535351634025574, 0.012795033864676952, -0.7361212968826294, 0.17926514148712158, -0.6900812387466431, 0.8269097208976746, 0.18583209812641144, 1.1533749103546143, 0.14819422364234924, -0.4624859392642975, -0.8161761164665222, -0.6538985371589661, 0.5711163282394409, -0.32703715562820435, 0.3968023657798767, 0.7028226256370544, -0.048573337495326996, -0.9820331335067749, -0.6745738983154297, -0.46466246247291565, 0.2923974096775055, 0.3540281355381012, -0.3411684036254883, -0.17522093653678894, -0.30589917302131653, 0.15791958570480347, 0.1281142681837082, -0.48419976234436035, -0.5543919205665588, -0.547515869140625, -0.39602571725845337, 0.6206656694412231, 0.34829503297805786, 0.24291737377643585, -0.18884189426898956, -0.3228582441806793, 0.0880165845155716, -0.41608554124832153, 0.3402574062347412, 0.6335517168045044, 0.711402416229248, -0.5811446309089661, 0.5602157711982727, -0.049275897443294525, 0.7439709901809692, 0.11445585638284683, -0.2747812569141388, 0.4146060049533844, -0.14724673330783844, 0.055171847343444824, 0.42263513803482056, 0.3152443468570709, 0.28413069248199463, -0.3273696303367615, 0.20322275161743164, -0.32151490449905396, -0.3049626648426056, -0.2233218252658844, -0.29490745067596436, -0.35921788215637207, 0.5492295026779175, -0.3314018249511719, -0.4285552501678467, 1.1431758403778076, -0.42007699608802795, -0.7302228808403015, 0.33156365156173706, 0.40652117133140564, -0.0994473472237587, -0.37146514654159546, -0.052260853350162506, -0.8458787202835083, -0.00790744461119175, 0.7491178512573242, -0.7198969125747681, 0.33717358112335205, 0.47280627489089966, 0.741721510887146, 0.1965060532093048, -0.14034466445446014, -0.4294945299625397, 0.2971963882446289, -0.8659994006156921, 0.6320174336433411, -0.20135276019573212, -1.0051976442337036, 0.11150483042001724, 0.8971704244613647, -0.3789643347263336, -1.2094870805740356, 1.0605157613754272, -0.6887932419776917, 0.16017864644527435, -0.6767609119415283, -0.14661164581775665, -0.07118469476699829, -0.005095955915749073, -0.6088155508041382, 0.7567099332809448, 0.5872676968574524, -0.49952778220176697, 0.21429462730884552, -0.2602984309196472, -0.3915135860443115, 0.38824939727783203, -0.0793546810746193, -0.21858906745910645, 0.7138336896896362, -0.6647078394889832, -0.2693284749984741, 0.2942773103713989, 0.23689350485801697, -0.357060968875885, -0.793192446231842, 0.08478079736232758, -0.05786222219467163, 1.5507503747940063, -0.03868860378861427, -0.35861143469810486, -0.6793836951255798, -1.1506236791610718, -0.07070811837911606, 0.6886887550354004, -0.9194992184638977, -0.27839499711990356, -0.046410247683525085, -0.26169371604919434, 0.0899493545293808, 0.7390591502189636, -1.119404911994934, 0.28327250480651855, -0.050927065312862396, -0.22794730961322784, 0.8271061182022095, 0.1538720428943634, 0.24758882820606232, 0.14913466572761536, 0.4295872151851654, 0.5277255773544312, 0.11115183681249619, 0.6835882663726807, -0.3472035229206085, -0.9694353938102722, 0.6154633164405823, 0.25266438722610474, 0.8121451139450073, -0.49945372343063354, 0.2685092091560364, 0.2702546715736389, -0.3409683108329773, -0.5682377815246582, -0.310282826423645, 0.09025713056325912, 0.14930608868598938, 0.11142496764659882, -0.5721707344055176, -0.6576128005981445, -0.9689135551452637, -0.13590654730796814, -0.43143755197525024, -0.35715678334236145, 0.2100687474012375, 0.5792907476425171, -1.1975533962249756, 0.4128877520561218, -0.7705622911453247, -0.703874409198761, -0.010655621066689491, -0.1933809369802475, 0.7540653944015503, 0.43240174651145935, 0.5033961534500122, -0.6397145390510559, -0.5661987066268921, -0.22470159828662872, -1.0333740711212158, -0.13280484080314636, 0.24819664657115936, 0.3065737783908844, -0.1342328041791916, -0.2744964361190796, -0.48740261793136597, 0.8100383877754211, 0.14789214730262756, -0.5391897559165955, 0.5220769643783569, -0.3020317554473877, 0.17224839329719543, -0.6369158029556274, -0.0691685602068901, -0.6616761684417725, -0.0009067110950127244, -0.36083078384399414, -0.5737436413764954, 0.14772333204746246, 0.07017548382282257, -0.16065415740013123, 0.2880837619304657, -0.909276008605957, -0.0010854422580450773, -0.744221568107605, 0.37907224893569946, 0.0639476627111435, -0.3145084083080292, -0.017516743391752243, 1.000038743019104, 0.7784457206726074, -0.3848040699958801, 0.7217439413070679, 0.4440040588378906, 0.19036099314689636, 0.7630518674850464, -0.18725158274173737, 0.16478213667869568, -0.5245421528816223, -0.12161099910736084, -0.8887605667114258, -1.0982943773269653, 0.7320572137832642, -0.6114250421524048, 0.36542850732803345, -0.42778605222702026, 0.2589159309864044, -0.6919258832931519, -0.038853395730257034, 0.4808599054813385, -0.05936374515295029, -0.6863952875137329, 0.5232571363449097, 0.4531749188899994, -0.2019244134426117, -0.6609036922454834, -0.5301570296287537, 0.39365914463996887, 0.6154113411903381, -0.16390396654605865, 0.06878498196601868, 0.14941087365150452, -0.5441920757293701, -0.040802545845508575, -0.3869187533855438, -0.4576674997806549, 0.05422405153512955, 0.13053379952907562, -0.005750161595642567, -0.40482011437416077, -0.08680257946252823, -0.35842010378837585, -0.4656125009059906, 0.21876463294029236, 0.30119529366493225, -0.04096344858407974, -0.42599743604660034, -0.36198148131370544, -0.8881808519363403, 0.6719611883163452, 0.5370280146598816, 0.05281474441289902, 0.7555550336837769, 0.16819244623184204, -0.801498293876648, -0.13532206416130066, -0.17607054114341736, 0.2696835994720459, -0.5588056445121765, 0.13849826157093048, -0.013484805822372437, -0.06374907493591309, 0.2629791498184204, 0.25386205315589905, -0.4300558567047119, 0.927625298500061, -0.26152747869491577, -0.3592526614665985, 0.7960182428359985, 0.5974737405776978, 0.4958309531211853, 0.16503198444843292, -0.044541094452142715, 0.9007097482681274, -1.196651816368103, -0.6563171744346619, -0.7409546375274658, -0.15945661067962646, -0.43510857224464417, -0.0321057066321373, 0.6254417300224304, 0.29009905457496643, -0.13333925604820251, 0.47563934326171875, -0.5243490934371948, 0.3556032180786133, 1.0119839906692505, 0.3574867248535156, 0.34357017278671265, -0.7570232152938843, -0.25157779455184937, -0.14024296402931213, -0.9998159408569336, -0.2631372809410095, 0.8871029615402222, 0.2275265008211136, 0.8444608449935913, 0.5992542505264282, 0.6784538626670837, 0.136723130941391, 0.2523833215236664, -0.305902898311615, 0.39202871918678284, 0.43760839104652405, -1.040114164352417, -0.42758411169052124, 0.02141888067126274, -0.9703332185745239, -0.14227578043937683, -0.03495054319500923, -0.42617106437683105, 0.7681738138198853, 0.00016635804786346853, -0.4076710641384125, 0.7732735872268677, -0.4555833339691162, 0.7562878727912903, -0.4473649859428406, -0.026638653129339218, 0.4699098467826843, -0.707064151763916, 0.4677433967590332, 0.12878736853599548, 0.6205845475196838, -0.015571946278214455, -0.04078621417284012, 0.7104931473731995, -0.9129164814949036, 0.25438612699508667, -0.6348398923873901, 0.22421303391456604, 0.24246959388256073, 0.5160625576972961, 0.5969962477684021, 0.4371241629123688, 0.10119915008544922, -0.23920848965644836, 0.04115789383649826, -0.8241121172904968, -0.21050670742988586, 0.6975144147872925, -0.7186897397041321, -0.6864195466041565, -1.2355334758758545, 0.14438661932945251, 0.2734704911708832, 0.3893047273159027, 0.7959297895431519, 0.5714079141616821, 0.12895449995994568, 0.6805254220962524, 0.9888579249382019, -0.06885591894388199, 0.916691780090332, 0.3224475085735321, 0.09175165742635727, -0.2194489687681198, 0.703682541847229, 0.2662784457206726, -0.2470790147781372, -0.11939744651317596, 0.20913469791412354, -0.11069414764642715, -0.5917618870735168, -0.4999074339866638, 0.3701755702495575, -0.6731783747673035, -0.1830393373966217, -0.6243732571601868, -0.6043766736984253, -0.5117589235305786, 0.0692739263176918, -0.7147684097290039, 0.23979082703590393, -0.7753568887710571, -0.10574901103973389, 0.04323358088731766, 0.9792002439498901, -0.5893120765686035, 0.5805228352546692, -1.12185800075531, 0.19345775246620178, -0.07949890196323395, 0.792106032371521, 0.2139579802751541, -0.7344390153884888, -0.39754199981689453, -0.11592598259449005, -0.37299054861068726, -1.3576757907867432, 0.21404962241649628, -0.24541422724723816, 0.2309398353099823, 0.6145407557487488, 0.13977040350437164, 0.5258244276046753, -0.3432632088661194, 0.7029102444648743, -0.057016827166080475, -0.7069293856620789, 0.7934491038322449, -0.5026893615722656, 0.4963533282279968, 0.9766002893447876, 0.5333840250968933, -0.7984007596969604, 0.0357406847178936, -1.041122555732727, -0.600869357585907, 0.38426393270492554, 0.1192895919084549, -0.03601125627756119, -0.665955662727356, -0.054019927978515625, -0.16143806278705597, 0.6043741703033447, -1.0390695333480835, -0.785835862159729, 0.25766894221305847, 0.5277299284934998, 0.08168502151966095, -0.5653401613235474, 0.2088075876235962, -0.5444163084030151, 1.0657776594161987, 0.45109352469444275, 0.32744958996772766, 0.8406059145927429, 0.4649237096309662, -0.38231605291366577, 0.09252502024173737, 0.7662692070007324, 0.6666228771209717, -0.5239795446395874, -0.2908027172088623, -0.0882752314209938, -0.9143400192260742, 0.05927503854036331, 0.1116887554526329, -0.013456095941364765, 0.9082115292549133, 0.579308032989502, 0.253970205783844, 0.4514276385307312, -0.7264610528945923, 0.8859445452690125, -0.1495419293642044, -0.1247284859418869, -1.0677239894866943, 0.19486205279827118, -0.23984935879707336, 0.5006400346755981, 1.0061331987380981, 0.525004506111145, -0.047630541026592255, -0.814338207244873, -0.014736384153366089, 0.6939173936843872, -0.7091119289398193, -0.17449775338172913, 0.9448539614677429, 0.38471025228500366, -1.295304536819458, 1.106776475906372, -0.5381773710250854, -0.5603317618370056, 0.9121302366256714, 0.5229570269584656, 1.1221849918365479, -0.44204193353652954, 0.0008675057324580848, 0.2662239074707031, 0.4137844443321228, 0.5423170328140259, 1.0869632959365845, 0.43141356110572815, -0.7931072115898132, 0.8826581835746765, -0.24776068329811096, -0.40361127257347107, -0.053475700318813324, -0.42859864234924316, 0.16892209649085999, -0.4406189024448395, -0.10712965577840805, -0.3444185256958008, 0.2854307293891907, -0.70720374584198, 0.42807644605636597, -0.08385642617940903, 0.8653066754341125, -0.8553729057312012, 0.47207602858543396, 0.6354700326919556, -0.33373481035232544, -0.8508192300796509, -0.26198476552963257, -0.1144845262169838, -0.6389466524124146, 0.30214792490005493, -0.45541054010391235, 0.044398874044418335, 0.09623479843139648, -0.6491509675979614, -1.1778273582458496, 0.9093631505966187, -0.6396117210388184, -0.2784458100795746, 0.20463958382606506, -0.1151471883058548, 0.28811654448509216, -0.2524648904800415, 0.010661328211426735, 0.4187661111354828, 0.7489396333694458, 0.28446561098098755, -0.7727053761482239, -0.36948859691619873, 0.0015033691888675094, -0.44474759697914124, 0.7582973837852478, -0.6002098917961121, 1.1840776205062866, -0.556353747844696, -0.05965423583984375, 0.4438447952270508, 0.24690861999988556, 0.21076245605945587, 0.6629217267036438, 0.144208163022995, 0.7282259464263916, 1.0701210498809814, -0.4083522856235504, 0.881180465221405, 0.26432785391807556, 0.4743083417415619, 0.7238510251045227, -0.6487718820571899, 0.7513747811317444, 0.3181043267250061, -0.5682927966117859, 0.9228019714355469, 1.290606141090393, -0.15699152648448944, 0.80793696641922, 0.051364265382289886, -1.0815999507904053, 0.32583361864089966, -0.20724761486053467, -0.7530062198638916, 0.31502565741539, 0.19055864214897156, -0.6920987367630005, -0.5770313739776611, -0.2404651641845703, -0.35662829875946045, -0.11552873998880386, -0.763173520565033, 0.6720565557479858, -0.01696927472949028, -0.5103673934936523, 0.18857470154762268, 0.28775009512901306, 0.17368444800376892, -0.5235736966133118, -0.029393965378403664, -0.22823575139045715, 0.2660652697086334, -0.5670853853225708, -0.5234523415565491, 0.5724437236785889, -0.32430148124694824, -0.5343252420425415, 0.181474968791008, 0.7635870575904846, -0.16923785209655762, -0.4515411853790283, 0.3247268795967102, 0.6959530115127563, 0.16658467054367065, 0.42502790689468384, -0.23511283099651337, 0.2448059767484665, -0.08044827729463577, -0.06651593744754791, 0.27714747190475464, 0.3449171781539917, 0.22435645759105682, 0.44501352310180664, 0.432856947183609, -0.018087303265929222, -0.10736559331417084, -0.38282057642936707, 0.41249361634254456, -0.9542784690856934, -0.5713290572166443, -0.630710780620575, 0.2740667760372162, -0.023154327645897865, -1.0836422443389893, 0.41451746225357056, 1.4406688213348389, 1.0359984636306763, -0.4756380617618561, 1.0672271251678467, -0.21818462014198303, 0.9594789743423462, 0.4148314893245697, 0.5420438051223755, -0.6030403971672058, 0.038353081792593, -0.43644052743911743, -1.0769634246826172, -0.3571633994579315, 0.4539390206336975, -0.02289981208741665, -0.3429867625236511, 0.8725717663764954, 0.5887162685394287, -0.3347362279891968, -0.11728022992610931, 0.04848663881421089, -0.029941599816083908, -0.12433874607086182, 0.5145372152328491, 0.764839768409729, -0.9344298243522644, -0.10680411010980606, -0.21577700972557068, -0.6382728815078735, -0.5047284364700317, -0.9632002711296082, -0.12959381937980652, -0.16037842631340027, 0.03534334897994995, -0.5662809014320374, 0.002556905150413513, 1.2083250284194946, 0.5684951543807983, -1.1113994121551514, -0.5303782224655151, 0.33718499541282654, 0.39204245805740356, -0.1874789297580719, -0.24202406406402588, 0.2984571158885956, 0.1538221836090088, -0.5908879041671753, 0.6875662803649902, 0.8089626431465149, 0.20888905227184296, 0.19554781913757324, 0.15893003344535828, -0.8229468464851379, -0.1491343379020691, 0.1744047999382019, 0.9450566172599792, -0.9398531913757324, -0.7114846110343933, -0.03168468177318573, -0.2709487974643707, -0.05765697360038757, 0.17102089524269104, -0.4046342968940735, 0.5180684924125671, 0.34591469168663025, 0.49933499097824097, 0.056160878390073776, -0.05474642664194107, 0.5409556031227112, -0.9069051742553711, 0.09425970166921616, 0.41343608498573303, 0.4154110848903656, -0.4000871181488037, -0.5910195112228394, 0.6713417172431946, 1.0073974132537842, -0.6594864130020142, -0.8743263483047485, -0.19846680760383606, -1.0016000270843506, 0.04189697653055191, 0.6762756109237671, 0.5009528994560242, -0.48065176606178284, -0.4174492359161377, -0.5617400407791138, -0.1254679411649704, -0.13699708878993988, 0.76216059923172, 1.1796802282333374, -0.7432100772857666, 0.07975788414478302, -1.0386393070220947, 0.6594987511634827, -0.2419460564851761, -0.3457580506801605, -0.4864429533481598, 0.3832802176475525, 0.3523699641227722, 0.44048118591308594, 0.6148120164871216, 0.14084689319133759, 0.8338428735733032, 0.31260576844215393, -0.17026856541633606, 0.2698982357978821, -0.4559198319911957, -0.02893332578241825, -0.05796259641647339, 0.3101596236228943, -1.026215672492981 ]
null
null
null
null
null
null
null
null
null
null
null
null
null
ubuntu_dialogs_corpus
null
2023-04-05T13:42:49Z
472
15
ubuntu-dialogue-corpus
[ "task_categories:conversational", "task_ids:dialogue-generation", "annotations_creators:found", "language_creators:found", "multilinguality:monolingual", "size_categories:1M<n<10M", "source_datasets:original", "language:en", "license:unknown", "arxiv:1506.08909", "region:us" ]
2023-04-05T13:42:49Z
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: UDC (Ubuntu Dialogue Corpus) size_categories: - 1M<n<10M source_datasets: - original task_categories: - conversational task_ids: - dialogue-generation paperswithcode_id: ubuntu-dialogue-corpus dataset_info: - config_name: train features: - name: Context dtype: string - name: Utterance dtype: string - name: Label dtype: int32 splits: - name: train num_bytes: 525126729 num_examples: 1000000 download_size: 0 dataset_size: 525126729 - config_name: dev_test features: - name: Context dtype: string - name: Ground Truth Utterance dtype: string - name: Distractor_0 dtype: string - name: Distractor_1 dtype: string - name: Distractor_2 dtype: string - name: Distractor_3 dtype: string - name: Distractor_4 dtype: string - name: Distractor_5 dtype: string - name: Distractor_6 dtype: string - name: Distractor_7 dtype: string - name: Distractor_8 dtype: string splits: - name: test num_bytes: 27060502 num_examples: 18920 - name: validation num_bytes: 27663181 num_examples: 19560 download_size: 0 dataset_size: 54723683 --- # Dataset Card for "ubuntu_dialogs_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 - **Repository:** https://github.com/rkadlec/ubuntu-ranking-dataset-creator - **Paper:** [The Ubuntu Dialogue Corpus: A Large Dataset for Research in Unstructured Multi-Turn Dialogue Systems](https://arxiv.org/abs/1506.08909) - **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:** 65.49 MB - **Total amount of disk used:** 65.49 MB ### Dataset Summary Ubuntu Dialogue Corpus, a dataset containing almost 1 million multi-turn dialogues, with a total of over 7 million utterances and 100 million words. This provides a unique resource for research into building dialogue managers based on neural language models that can make use of large amounts of unlabeled data. The dataset has both the multi-turn property of conversations in the Dialog State Tracking Challenge datasets, and the unstructured nature of interactions from microblog services such as Twitter. ### 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 #### train - **Size of downloaded dataset files:** 0.00 MB - **Size of the generated dataset:** 65.49 MB - **Total amount of disk used:** 65.49 MB An example of 'train' looks as follows. ``` This example was too long and was cropped: { "Context": "\"i think we could import the old comment via rsync , but from there we need to go via email . i think it be easier than cach the...", "Label": 1, "Utterance": "basic each xfree86 upload will not forc user to upgrad 100mb of font for noth __eou__ no someth i do in my spare time . __eou__" } ``` ### Data Fields The data fields are the same among all splits. #### train - `Context`: a `string` feature. - `Utterance`: a `string` feature. - `Label`: a `int32` feature. ### Data Splits |name |train | |-----|-----:| |train|127422| ## 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{DBLP:journals/corr/LowePSP15, author = {Ryan Lowe and Nissan Pow and Iulian Serban and Joelle Pineau}, title = {The Ubuntu Dialogue Corpus: {A} Large Dataset for Research in Unstructured Multi-Turn Dialogue Systems}, journal = {CoRR}, volume = {abs/1506.08909}, year = {2015}, url = {http://arxiv.org/abs/1506.08909}, archivePrefix = {arXiv}, eprint = {1506.08909}, timestamp = {Mon, 13 Aug 2018 16:48:23 +0200}, biburl = {https://dblp.org/rec/journals/corr/LowePSP15.bib}, bibsource = {dblp computer science bibliography, https://dblp.org} } ``` ### Contributions Thanks to [@thomwolf](https://github.com/thomwolf), [@patrickvonplaten](https://github.com/patrickvonplaten), [@lewtun](https://github.com/lewtun) for adding this dataset.
[ -0.5760695338249207, -0.623132050037384, 0.22720570862293243, 0.07360246032476425, -0.1936277598142624, 0.08074730634689331, -0.449709415435791, -0.2829078435897827, 0.5137019157409668, 0.6250668168067932, -0.7051259875297546, -0.7759789824485779, -0.35066112875938416, 0.04721638187766075, -0.20145481824874878, 1.2828856706619263, 0.11888012290000916, -0.1861637681722641, -0.3433264195919037, -0.24059666693210602, -0.3710300326347351, -0.5921964645385742, -0.36784645915031433, -0.12171919643878937, 0.22892054915428162, 0.4320697784423828, 0.6149817109107971, 0.6475111246109009, 0.2780695855617523, 0.33655041456222534, -0.17012514173984528, -0.12029547244310379, -0.4497351050376892, 0.05658430978655815, 0.1355847269296646, -0.2781722843647003, -0.4723668396472931, -0.022053683176636696, 0.6987220644950867, 0.6312698721885681, -0.21033020317554474, 0.3009450137615204, 0.1300428807735443, 0.6692807674407959, -0.22501163184642792, 0.5947047472000122, -0.3211074471473694, -0.16904060542583466, -0.3432375192642212, -0.06306766718626022, -0.1557544320821762, -0.4826940894126892, 0.1321578323841095, -0.8103187680244446, 0.08779817819595337, 0.006608334835618734, 0.7979094982147217, 0.08636903762817383, 0.10041312873363495, -0.1506054699420929, -0.3666384220123291, 0.6336399912834167, -0.940430223941803, 0.12570340931415558, 0.34407439827919006, 0.006931023206561804, -0.2795690894126892, -0.638580322265625, -0.5528391599655151, 0.1423172950744629, -0.3559940457344055, 0.16698627173900604, -0.30116674304008484, -0.05231722071766853, 0.5636767148971558, 0.5414607524871826, -0.5764022469520569, -0.20423506200313568, -0.5595291256904602, -0.4314185380935669, 0.742344081401825, 0.2716049253940582, 0.24898774921894073, -0.6469165086746216, -0.026113566011190414, -0.4603877365589142, -0.401291161775589, 0.1701338291168213, 0.4721941351890564, 0.5554718375205994, -0.6954825520515442, 0.5063424706459045, -0.21519172191619873, 0.43390509486198425, -0.14188218116760254, 0.03831292316317558, 0.6492215394973755, -0.7310255169868469, -0.0945020392537117, -0.10288936644792557, 1.2272228002548218, 0.6215800046920776, 0.081172876060009, 0.14026637375354767, 0.13127027451992035, -0.05336274579167366, -0.11809080094099045, -0.7877682447433472, -0.5463100671768188, 0.49507755041122437, -0.4072103798389435, -0.3815724551677704, -0.1361541599035263, -1.2202357053756714, -0.18145161867141724, -0.43472063541412354, 0.03266722336411476, -0.3519802689552307, -0.5528269410133362, -0.04004025086760521, -0.1575479507446289, 0.17070244252681732, 0.35145577788352966, -0.6208932995796204, 0.24948380887508392, 0.5223715901374817, 0.7556415796279907, 0.10083357989788055, -0.14699457585811615, -0.21898430585861206, -0.24359630048274994, -0.02288779988884926, 0.5807428359985352, -0.4692423641681671, -0.49630656838417053, -0.026487991213798523, 0.3502504229545593, -0.10722503811120987, -0.38613802194595337, 0.8419356942176819, -0.05953966826200485, 0.5190691947937012, -0.44407206773757935, -0.46988967061042786, -0.13500863313674927, -0.0151707474142313, -0.619138240814209, 1.4126712083816528, 0.34246698021888733, -0.8152257800102234, -0.03652019053697586, -0.995134711265564, -0.2661553621292114, 0.07823793590068817, -0.15849977731704712, -0.3842778503894806, -0.22665591537952423, 0.1791677176952362, 0.5559598207473755, -0.4855528771877289, 0.43542754650115967, -0.35262352228164673, 0.024426018819212914, 0.4082789123058319, -0.12358244508504868, 1.399747371673584, 0.21625131368637085, -0.15987446904182434, 0.03385075181722641, -0.8269056677818298, -0.07370688766241074, 0.1888294219970703, -0.20225203037261963, -0.11771265417337418, -0.3485153019428253, 0.3840901851654053, 0.07071393728256226, 0.15763890743255615, -0.5964122414588928, 0.4330024719238281, -0.11386710405349731, 0.5683649778366089, 0.7781684994697571, -0.05524352565407753, 0.37411031126976013, -0.25018614530563354, 0.3432752788066864, 0.2247375249862671, 0.30168095231056213, -0.2505663335323334, -0.6010273098945618, -0.8718923330307007, -0.2542860805988312, 0.5643370151519775, 0.6503873467445374, -0.5735628604888916, 0.8025916218757629, -0.40290161967277527, -0.4311393201351166, -0.7672598361968994, 0.21906651556491852, 0.2898384630680084, 0.55327969789505, 0.3129558265209198, -0.6781834959983826, -0.806283712387085, -0.7559335231781006, 0.33346351981163025, -0.42036715149879456, 0.005664344411343336, 0.5696640014648438, 0.6915680170059204, -0.27929505705833435, 0.9400058388710022, -0.7510694265365601, -0.23338055610656738, -0.2387438863515854, 0.15959377586841583, 0.2409178912639618, 0.6701285243034363, 0.4594356119632721, -0.5561236143112183, -0.29803285002708435, -0.3499816060066223, -0.7588986158370972, -0.2602218985557556, -0.08658023923635483, -0.2954159080982208, 0.27783024311065674, 0.43311014771461487, -0.8035675287246704, 0.3410179913043976, 0.4414491653442383, -0.39746901392936707, 0.4337901771068573, 0.11344152688980103, 0.03104391135275364, -1.3774172067642212, 0.2746429145336151, 0.13694898784160614, -0.16168169677257538, -0.5395510196685791, -0.38145580887794495, -0.3246043622493744, -0.12493528425693512, -0.1316768079996109, 0.5251423120498657, -0.23627524077892303, 0.05674581602215767, 0.3198288679122925, 0.15671686828136444, 0.017780687659978867, 0.7874913215637207, -0.07292221486568451, 0.6195478439331055, 0.8206528425216675, -0.43442559242248535, 0.563123345375061, 0.6326629519462585, -0.36383041739463806, 0.6345443725585938, -0.7319295406341553, 0.1511053442955017, -0.1550830751657486, 0.4929350018501282, -0.9761247038841248, -0.4620501697063446, 0.7446768283843994, -0.667178213596344, 0.3108822703361511, -0.3825397491455078, -0.5977354049682617, -0.4558318853378296, -0.4874381124973297, 0.03834366425871849, 0.43199631571769714, -0.18145999312400818, 0.5423151850700378, 0.7060324549674988, -0.3500790297985077, -0.2548781633377075, -0.6288803219795227, 0.05757477879524231, -0.23113717138767242, -0.6818243861198425, 0.19016899168491364, -0.478094220161438, -0.08739650249481201, 0.058252111077308655, 0.29742804169654846, 0.05886152386665344, -0.05903879925608635, 0.30493828654289246, 0.37408509850502014, -0.0822453573346138, 0.03354881703853607, -0.13301336765289307, -0.19098041951656342, 0.05869336426258087, -0.06683765351772308, 0.3988312780857086, -0.1947477012872696, -0.04401307925581932, -0.5354646444320679, 0.2700211703777313, 0.5056120157241821, -0.03897951543331146, 0.384988397359848, 0.8982271552085876, -0.07858730107545853, 0.26264169812202454, -0.5496374368667603, -0.2609827518463135, -0.397799015045166, 0.1735997051000595, -0.032411254942417145, -0.8962433934211731, 0.7959698438644409, 0.04549851268529892, 0.327607125043869, 0.6386857628822327, 0.5506646633148193, -0.13620804250240326, 0.6801769137382507, 0.3923567235469818, -0.41963738203048706, 0.5971959233283997, -0.4697135388851166, -0.09429048001766205, -1.077675223350525, -0.12607963383197784, -0.6155514121055603, -0.20552074909210205, -0.9855097532272339, -0.46154236793518066, 0.1730673760175705, -0.007261190563440323, -0.10013282299041748, 0.5400579571723938, -0.7984587550163269, 0.16248482465744019, 0.5845906734466553, -0.08708564192056656, 0.17636044323444366, -0.023516345769166946, -0.032595161348581314, 0.05332060903310776, -0.6488497853279114, -0.4309677183628082, 1.3094500303268433, 0.437688946723938, 0.5828697681427002, 0.020024800673127174, 0.5701966881752014, 0.318372905254364, -0.08226116001605988, -0.4642980396747589, 0.6115784645080566, 0.11957922577857971, -0.6243314146995544, -0.3440960943698883, -0.5789873003959656, -0.9029125571250916, 0.006215129978954792, -0.1892465502023697, -0.9229692816734314, 0.45057523250579834, 0.06770280003547668, -0.3389468491077423, 0.24088546633720398, -0.816041111946106, 1.0272878408432007, -0.09688541293144226, -0.1527029126882553, 0.08714646846055984, -1.0870531797409058, 0.13095137476921082, 0.2925091087818146, 0.4016355872154236, -0.3051329553127289, 0.3186591565608978, 1.1358791589736938, -0.5025835037231445, 1.13756263256073, -0.3031444847583771, 0.18435980379581451, 0.5287045836448669, -0.18656806647777557, 0.39076560735702515, 0.22551685571670532, 0.029276320710778236, 0.4268876314163208, 0.21380968391895294, -0.336225688457489, -0.41973498463630676, 0.6878254413604736, -0.8202545046806335, -0.1300162523984909, -0.4824862480163574, -0.5282424688339233, -0.0321243517100811, 0.13535667955875397, 0.1375594288110733, 0.5861279368400574, -0.2691408395767212, 0.282428115606308, 0.7766345143318176, -0.26395705342292786, 0.3091389536857605, 0.3406902253627777, -0.26099082827568054, -0.6637555360794067, 0.9106897711753845, -0.0006532527040690184, 0.030851492658257484, 0.19161935150623322, 0.10871217399835587, -0.24304211139678955, -0.2002108246088028, -0.81585294008255, 0.1474984884262085, -0.49752458930015564, -0.2834654152393341, -0.6954076886177063, -0.17223401367664337, -0.6262023448944092, 0.20905962586402893, -0.33020076155662537, -0.7043418884277344, -0.45296791195869446, -0.15170380473136902, 0.9046347737312317, 0.5397705435752869, -0.47885414958000183, 0.2106897234916687, -0.5934590101242065, 0.12444063276052475, -0.04735608771443367, 0.4010295271873474, -0.14311166107654572, -0.487837553024292, -0.314880907535553, 0.21432451903820038, -0.3812792897224426, -0.4192892014980316, 0.23744560778141022, -0.02621815912425518, 0.4029962718486786, -0.03679276257753372, 0.13357758522033691, 0.48217514157295227, -0.09576281905174255, 0.9558720588684082, 0.1165582463145256, -0.6453526020050049, 0.4781236946582794, -0.5639719367027283, 0.46201804280281067, 0.855693519115448, 0.29167288541793823, -0.6614176630973816, -0.2487359642982483, -0.8522526025772095, -0.8743880987167358, 0.8928542137145996, 0.49627915024757385, 0.15778833627700806, 0.21240068972110748, 0.218072772026062, -0.20146261155605316, 0.2689734995365143, -0.5807833075523376, -0.7940207719802856, -0.30477175116539, -0.26309967041015625, -0.006836479529738426, -0.19674436748027802, -0.3903295397758484, -0.6761146187782288, 0.8144460320472717, -0.15704651176929474, 0.5300518870353699, 0.27740299701690674, 0.018044566735625267, -0.06881042569875717, 0.43550175428390503, 0.3446083664894104, 0.34592458605766296, -0.41627493500709534, -0.28337109088897705, -0.0959685668349266, -0.479518324136734, -0.25316402316093445, 0.510246753692627, -0.28942519426345825, 0.1445968896150589, 0.1346869021654129, 0.9598022103309631, 0.23249249160289764, -0.40313541889190674, 0.43657785654067993, -0.2795097827911377, -0.18727369606494904, -0.442058801651001, -0.11848394572734833, 0.1629699319601059, 0.17251820862293243, 0.18574804067611694, -0.047239042818546295, 0.1272251009941101, -0.6568723320960999, 0.13630075752735138, 0.14612044394016266, -0.37660256028175354, -0.49974358081817627, 0.23330630362033844, 0.37626856565475464, -0.007513642311096191, 0.6993522644042969, -0.2116585075855255, -0.6125360727310181, 0.3566007614135742, 0.0433247834444046, 0.8246732354164124, -0.01736045442521572, 0.37792351841926575, 0.6533311009407043, 0.2724322974681854, 0.1302606612443924, 0.30959755182266235, -0.21832087635993958, -0.7129137516021729, -0.23124124109745026, -0.6417891979217529, -0.4006302058696747, 0.30533671379089355, -0.6630598902702332, 0.20193243026733398, -0.38245731592178345, -0.22386868298053741, 0.28100886940956116, 0.13199138641357422, -0.715587317943573, 0.014813216403126717, -0.00806351751089096, 0.6449995040893555, -0.8415572643280029, 0.5627875328063965, 0.5785698294639587, -0.6962684392929077, -0.7281976342201233, -0.3847714066505432, 0.3828829526901245, -0.4104929566383362, 0.09357209503650665, -0.055280234664678574, 0.44890132546424866, -0.1472225934267044, -0.8162190914154053, -0.6800262928009033, 1.0607014894485474, 0.26406580209732056, -0.4936234652996063, 0.04291849583387375, 0.2708485722541809, 0.6114720702171326, -0.3840300142765045, 0.49906420707702637, 0.7939685583114624, 0.5892899632453918, 0.13066861033439636, -0.9507956504821777, 0.1787777841091156, -0.5327126979827881, -0.13856643438339233, 0.197914257645607, -0.7866107821464539, 0.5043573379516602, 0.012527303770184517, -0.11660237610340118, 0.07746902108192444, 0.5509821176528931, -0.004586802329868078, 0.059834934771060944, 0.42534083127975464, 0.8575247526168823, 0.8515775203704834, -0.3953891098499298, 1.0478190183639526, -0.24737997353076935, 0.4449943006038666, 1.0968742370605469, 0.0702090784907341, 0.5285965800285339, 0.3270292580127716, -0.46092578768730164, 0.6572510600090027, 0.6356857419013977, -0.19883951544761658, 0.2211121767759323, 0.1396702527999878, -0.09928780049085617, -0.13622066378593445, -0.46693456172943115, -0.5178406238555908, 0.3174990713596344, 0.46074554324150085, -0.3016904890537262, 0.022881705313920975, -0.1831599324941635, 0.4266129434108734, -0.29249808192253113, 0.07359366118907928, 1.0334722995758057, 0.10951345413923264, -0.3802659213542938, 0.5266121029853821, -0.4353361129760742, 0.6107059121131897, -0.6234153509140015, -0.009088338352739811, -0.16286121308803558, 0.06342633068561554, -0.36159762740135193, -1.0712308883666992, 0.357315331697464, -0.06519795209169388, -0.27243801951408386, -0.28610819578170776, 0.5731368660926819, -0.48340609669685364, -0.6095203757286072, 0.24221518635749817, 0.3373943865299225, 0.3748551905155182, 0.2373875230550766, -1.1188418865203857, 0.5473860502243042, 0.324872761964798, -0.39925554394721985, 0.40821266174316406, 0.5389179587364197, 0.1546308994293213, 0.3598756790161133, 0.8134502172470093, -0.052652232348918915, -0.2588041126728058, 0.23655830323696136, 1.1009695529937744, -0.6847171187400818, -0.182173490524292, -0.4683786928653717, 0.8462777733802795, -0.3817327320575714, -0.555785596370697, 0.6136426329612732, 0.7810834646224976, 1.1348825693130493, 0.13701079785823822, 1.046095609664917, -0.636100172996521, 0.7874221801757812, -0.27323704957962036, 0.5784515738487244, -0.4702381491661072, 0.19803386926651, -0.6341803073883057, -0.7642083764076233, -0.19629715383052826, 0.5080022811889648, -0.10095343738794327, 0.05927044153213501, 0.4128173589706421, 1.056430459022522, 0.056837886571884155, 0.2523004710674286, -0.08724192529916763, 0.5082949995994568, 0.2639963626861572, 0.37832069396972656, 0.37911540269851685, -0.7229633927345276, 0.6569474339485168, -0.48854783177375793, -0.2313787341117859, -0.10879411548376083, -0.8024302124977112, -0.835823655128479, -1.0173417329788208, -0.5639981627464294, -0.7186776995658875, -0.11330682039260864, 1.069249153137207, 0.6140766739845276, -0.9926514625549316, -0.515953540802002, 0.06668940931558609, 0.15589413046836853, 0.20731475949287415, -0.3528931736946106, 0.35163742303848267, 0.10245619714260101, -0.5883251428604126, -0.006069792900234461, 0.06666931509971619, 0.01970633678138256, -0.23360933363437653, 0.002444475656375289, -0.32891935110092163, -0.22448286414146423, 0.5155361294746399, 0.5615270733833313, -0.5234523415565491, 0.00004888681723969057, -0.14479312300682068, -0.024753134697675705, 0.3148053288459778, 0.6319479942321777, -0.5183857083320618, 0.47593021392822266, 0.582953691482544, 0.329682856798172, 0.6145859956741333, -0.06144923344254494, 0.48385676741600037, -0.5422868728637695, 0.03692697361111641, 0.05915888398885727, 0.4595470726490021, 0.6847399473190308, -0.30066150426864624, 0.7946782112121582, 0.36673545837402344, -0.6330223083496094, -0.7412613034248352, -0.06886721402406693, -1.2973302602767944, 0.05163663625717163, 1.2152003049850464, -0.06256097555160522, -0.2610650658607483, -0.2416044920682907, -0.42441701889038086, 0.20984908938407898, -1.0939383506774902, 0.4545563757419586, 0.809188961982727, 0.019229112192988396, -0.0935877189040184, -0.5750938653945923, 0.6967359185218811, 0.19743719696998596, -0.9514151215553284, 0.5044333338737488, 0.6324517726898193, 0.2312116026878357, 0.4617319405078888, 0.8237398862838745, -0.26436346769332886, -0.018979350104928017, -0.1991511434316635, 0.2589801251888275, 0.09123217314481735, -0.03375893086194992, -0.29086923599243164, -0.387771338224411, -0.27957528829574585, 0.034898627549409866 ]
null
null
null
null
null
null
null
null
null
null
null
null
null
SocialGrep/the-reddit-covid-dataset
SocialGrep
2022-07-01T18:40:57Z
472
1
null
[ "annotations_creators:lexyr", "language_creators:crowdsourced", "multilinguality:monolingual", "size_categories:1M<n<10M", "source_datasets:original", "language:en", "license:cc-by-4.0", "region:us" ]
2022-07-01T18:40:57Z
2022-03-02T23:29:22.000Z
2022-03-02T23:29:22
--- annotations_creators: - lexyr language_creators: - crowdsourced language: - en license: - cc-by-4.0 multilinguality: - monolingual size_categories: - 1M<n<10M source_datasets: - original paperswithcode_id: null --- # Dataset Card for the-reddit-covid-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) ## Disclaimer Due to file size limitations, we are not able to provide the comments for this dataset. Please feel free to download them from the [website](https://socialgrep.com/datasets?utm_source=huggingface&utm_medium=link&utm_campaign=theredditcoviddataset#the-reddit-covid-dataset) - no registration required. ## Dataset Description - **Homepage:** [https://socialgrep.com/datasets](https://socialgrep.com/datasets?utm_source=huggingface&utm_medium=link&utm_campaign=theredditcoviddataset) - **Point of Contact:** [Website](https://socialgrep.com/contact?utm_source=huggingface&utm_medium=link&utm_campaign=theredditcoviddataset) ### Dataset Summary This corpus contains all the mentions of the term `covid` in post titles on the social media platform Reddit, up until the 25th of October, 2021. The data was procured from Reddit using [SocialGrep](https://socialgrep.com/?utm_source=huggingface&utm_medium=link&utm_campaign=theredditcoviddataset). ### Languages Mainly English. ## Dataset Structure ### Data Instances A data point is a post or a comment. Due to the separate nature of the two, those exist in two different files - even though many fields are shared. ### Data Fields - 'type': the type of the data point. Can be 'post' or 'comment'. - 'id': the base-36 Reddit ID of the data point. Unique when combined with type. - 'subreddit.id': the base-36 Reddit ID of the data point's host subreddit. Unique. - 'subreddit.name': the human-readable name of the data point's host subreddit. - 'subreddit.nsfw': a boolean marking the data point's host subreddit as NSFW or not. - 'created_utc': a UTC timestamp for the data point. - 'permalink': a reference link to the data point on Reddit. - 'score': score of the data point on Reddit. - 'domain': (Post only) the domain of the data point's link. - 'url': (Post only) the destination of the data point's link, if any. - 'selftext': (Post only) the self-text of the data point, if any. - 'title': (Post only) the title of the post data point. - 'body': (Comment only) the body of the comment data point. - 'sentiment': (Comment only) the result of an in-house sentiment analysis pipeline. Used for exploratory analysis. ## 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 CC-BY v4.0 ### Contributions [Needs More Information]
[ -0.5546907186508179, -0.8148225545883179, 0.13872185349464417, 0.4802864193916321, -0.44973161816596985, 0.01781316287815571, -0.2875179946422577, -0.4315180480480194, 0.825532078742981, 0.18483835458755493, -0.9102546572685242, -0.9946132898330688, -0.6959887146949768, 0.2443058043718338, -0.29214179515838623, 1.3449972867965698, 0.07199177145957947, -0.5177091360092163, -0.6538786292076111, -0.013738319277763367, -0.15850506722927094, -0.7773465514183044, -0.4872279763221741, -0.1832321733236313, 0.6629530191421509, 0.6665160655975342, 0.5110745429992676, 0.5025520920753479, 0.9652029871940613, 0.18091359734535217, 0.21157416701316833, -0.01016207318753004, -0.5822062492370605, -0.25876978039741516, -0.1800857037305832, -0.12248922139406204, -0.6980804204940796, 0.16020479798316956, 0.19182968139648438, 0.23838020861148834, -0.1208711639046669, 0.7320865392684937, -0.007529489230364561, 0.5538126230239868, -0.5965245366096497, 0.4212009608745575, -0.35012221336364746, -0.018639875575900078, -0.2102203220129013, -0.20301325619220734, -0.050562433898448944, -0.5989090800285339, -0.13395392894744873, -0.6696351766586304, 0.21906760334968567, -0.021104924380779266, 0.8559507131576538, 0.06401143223047256, -0.058289460837841034, -0.04252566024661064, -0.41559693217277527, 0.7095731496810913, -0.6202068328857422, 0.0747612863779068, 0.674598217010498, 0.2095346301794052, -0.04707857593894005, -0.8557288646697998, -0.5252455472946167, 0.2713698744773865, -0.3687286972999573, 0.10985453426837921, -0.5570573806762695, -0.47756636142730713, 0.3237331807613373, 0.4564037024974823, -0.627863883972168, -0.6062461137771606, -0.7278677225112915, -0.06694462895393372, 1.12299382686615, 0.02908424288034439, 0.40839508175849915, -0.41879400610923767, -0.19743576645851135, -0.029330311343073845, -0.2638193666934967, 0.1402885764837265, 0.08628401905298233, 0.39733418822288513, -0.963327944278717, 0.7321512699127197, -0.0331781730055809, 0.4728538990020752, 0.15606693923473358, -0.0601273737847805, 0.509943962097168, -0.7980429530143738, -0.14201314747333527, -0.23291677236557007, 1.0693422555923462, 0.8878109455108643, 0.09008006006479263, 0.20617029070854187, 0.3079600930213928, 0.12627506256103516, 0.16778965294361115, -0.6427427530288696, -0.47711384296417236, 0.3704701364040375, -0.5761856436729431, -0.3920406103134155, 0.278315007686615, -1.0450129508972168, -0.3755394518375397, -0.10190263390541077, -0.06726338714361191, -0.06663025915622711, -0.4711676239967346, 0.0722590908408165, -0.433392196893692, 0.19469402730464935, 0.11667538434267044, -0.6211583614349365, 0.6052368879318237, 0.6179980039596558, 0.6550479531288147, -0.2889856696128845, -0.11632310599088669, -0.05907614156603813, -0.04286438226699829, 0.2054232507944107, 0.7147602438926697, -0.6022593975067139, -0.3211369514465332, -0.031151408329606056, 0.32895201444625854, -0.00262104207649827, -0.26955896615982056, 0.802141010761261, -0.2479674220085144, 0.2727457880973816, -0.619171142578125, -0.26372936367988586, -0.18694375455379486, 0.4403612017631531, -0.6151814460754395, 1.0266867876052856, 0.06524157524108887, -1.1995282173156738, 0.23875410854816437, -0.7645319700241089, -0.47093069553375244, -0.1068413183093071, -0.18174265325069427, -0.5344533920288086, -0.32309144735336304, 0.1821460872888565, 0.7201008796691895, -0.4268912374973297, -0.03346206247806549, -0.4475567936897278, -0.17610454559326172, 0.11199737340211868, 0.11880733072757721, 0.951184093952179, 0.015763647854328156, -0.09204140305519104, 0.05463215336203575, -0.8943941593170166, -0.2269192785024643, 0.4021467864513397, -0.09219713509082794, -0.3731156587600708, -0.11691927909851074, 0.029598288238048553, 0.257685124874115, 0.48881837725639343, -0.6164785623550415, 0.11242709308862686, -0.029216010123491287, 0.5870439410209656, 0.2859451472759247, 0.5207653045654297, 0.2851625084877014, -0.5546512007713318, 0.6704846620559692, 0.1678341031074524, 0.59867924451828, 0.430764764547348, -0.7499905228614807, -0.5148001313209534, -0.30718642473220825, -0.12687723338603973, 0.747326135635376, -0.39561381936073303, 0.6708192825317383, -0.20194098353385925, -0.8732656836509705, -0.3575807809829712, -0.02367018535733223, 0.23525534570217133, 0.5299962759017944, 0.5333712697029114, -0.30290690064430237, -1.029831051826477, -0.7057115435600281, -0.02814018540084362, -0.1344446986913681, 0.3730039894580841, 0.6551730036735535, 0.8709684610366821, -0.4311976432800293, 0.7047646641731262, -0.8400759100914001, -0.09052200615406036, -0.28545719385147095, 0.2482071965932846, 0.3902888894081116, 0.35425591468811035, 0.3913990259170532, -0.9682648181915283, -0.63337242603302, -0.16418199241161346, -0.8773666620254517, -0.15792837738990784, 0.010935533791780472, -0.19011859595775604, 0.007722404319792986, 0.401803195476532, -0.5359750986099243, 0.5768722891807556, 0.6824348568916321, -0.4421900510787964, 0.5099755525588989, 0.01941363327205181, 0.35501629114151, -1.162422776222229, 0.18448442220687866, 0.3318434953689575, 0.05129430443048477, -0.38557764887809753, -0.18371443450450897, -0.10992132127285004, 0.016890669241547585, -0.4129636287689209, 0.5438987016677856, -0.1955639272928238, 0.27322351932525635, 0.22383299469947815, 0.21892060339450836, 0.13779082894325256, 0.36358365416526794, -0.1903916299343109, 0.5320127606391907, 0.6279035210609436, -0.5148350596427917, 0.6385878324508667, 0.21784964203834534, -0.0956672802567482, 0.5025671124458313, -0.9354203343391418, 0.022963831201195717, -0.24914877116680145, 0.19960784912109375, -0.8967893719673157, -0.5406897664070129, 0.7036618590354919, -0.7810981869697571, -0.28269773721694946, 0.10429602861404419, -0.281888872385025, -0.597136914730072, -0.6628813147544861, 0.5436487793922424, 0.3959094285964966, -0.0008900304092094302, 0.3077505826950073, 0.7756468653678894, -0.1435220092535019, -0.6507054567337036, -0.7232557535171509, -0.07291881740093231, -0.23358026146888733, -0.727688729763031, 0.46357250213623047, -0.20027799904346466, -0.47475287318229675, 0.34634777903556824, 0.3495621979236603, -0.16914626955986023, -0.123664990067482, 0.48554205894470215, -0.008511506952345371, 0.23300856351852417, 0.03980197012424469, -0.36072903871536255, 0.06447676569223404, 0.18352143466472626, 0.3425196409225464, 0.6339100003242493, -0.03950841724872589, -0.25895169377326965, -0.7056509256362915, 0.46316373348236084, 0.49162906408309937, -0.19171158969402313, 0.6628662943840027, 0.7066462635993958, -0.47198939323425293, 0.0673457533121109, -0.3287562429904938, -0.25596529245376587, -0.3707147240638733, 0.08786758035421371, 0.03183646500110626, -0.614366352558136, 0.7500417232513428, 0.33703848719596863, 0.1621602177619934, 0.7702949047088623, 0.40787798166275024, -0.06177544966340065, 0.5824759602546692, 0.7718266844749451, -0.24847359955310822, 0.40093010663986206, -0.24889232218265533, 0.2862975597381592, -0.5712670087814331, -0.4924309253692627, -0.5180931687355042, -0.3218671381473541, -0.6987441182136536, -0.5961825847625732, 0.15812908113002777, -0.12540017068386078, -0.21994200348854065, 0.5426698923110962, -0.5968418121337891, 0.19171330332756042, 0.6589635610580444, 0.31404322385787964, 0.16562114655971527, 0.09044484794139862, 0.2509342133998871, -0.1809542328119278, -0.6250880360603333, -0.2482611984014511, 1.042185664176941, 0.38060858845710754, 0.8257402777671814, -0.016346609219908714, 0.8094761371612549, 0.6734004020690918, -0.05137365683913231, -0.4647723436355591, 0.6462557911872864, -0.3339512348175049, -0.442880779504776, -0.0965355709195137, -0.13610734045505524, -0.835435688495636, -0.5671795606613159, -0.4276060163974762, -0.44029030203819275, 0.4900205731391907, 0.18184040486812592, -0.4636368155479431, 0.11305472999811172, -0.5830379128456116, 0.8003923892974854, 0.00743934465572238, -0.39733755588531494, -0.15329234302043915, -0.8634060025215149, 0.1963396966457367, 0.2737864553928375, 0.31848952174186707, -0.18965616822242737, 0.08489295095205307, 0.9322041869163513, -0.5130022168159485, 1.1444801092147827, -0.0717419907450676, 0.29038453102111816, 0.4936739206314087, -0.5573804974555969, 0.41380640864372253, 0.13189411163330078, -0.10380461812019348, 0.42966142296791077, -0.03955988585948944, -0.3434295058250427, -0.3013078272342682, 0.7378960847854614, -0.9839377999305725, -0.277468204498291, -0.49955061078071594, -0.25665339827537537, 0.2328581064939499, -0.009130619466304779, 0.31352245807647705, 0.2431335747241974, -0.32931259274482727, 0.34719279408454895, 0.507316529750824, -0.39166003465652466, 0.13393984735012054, 0.17341695725917816, -0.1990985870361328, -0.7061259150505066, 0.6488456130027771, 0.10962255299091339, -0.030826685950160027, 0.347129762172699, 0.2615888714790344, -0.2728586494922638, 0.020100943744182587, -0.02301362156867981, 0.45054349303245544, -0.5209494829177856, -0.2434011697769165, -0.7004119157791138, -0.3872276246547699, -0.8129083514213562, -0.26488327980041504, -0.043139733374118805, -0.32442352175712585, -0.4898154139518738, -0.31367120146751404, 1.0093783140182495, 0.6545067429542542, -0.5931759476661682, 0.09824229776859283, -0.5400076508522034, 0.38272625207901, 0.3686694800853729, 0.2843311131000519, -0.18645071983337402, -0.28484413027763367, -0.18122482299804688, 0.16566425561904907, -0.04798245429992676, -0.5791215896606445, 0.4872748851776123, 0.22018790245056152, 0.2815854549407959, 0.12392530590295792, 0.31916293501853943, 0.7251011729240417, 0.001874641515314579, 1.0905230045318604, 0.20953115820884705, -0.4399763345718384, 0.7627949118614197, -0.4875299632549286, 0.31494349241256714, 0.663594663143158, 0.6104434132575989, -0.7555487751960754, -0.37505510449409485, -0.81632399559021, -1.0234829187393188, 0.34312543272972107, 0.02795320563018322, 0.12643031775951385, -0.34556296467781067, 0.5273788571357727, -0.05445503070950508, 0.08847273886203766, -0.9566234350204468, -0.7088087201118469, -0.17074818909168243, -0.21535614132881165, 0.08828237652778625, -0.40715306997299194, -0.4139867424964905, -0.7963043451309204, 0.7442464232444763, 0.3524274230003357, 0.5448575615882874, 0.3233437240123749, 0.20326289534568787, -0.24821707606315613, 0.27194327116012573, 0.5452690720558167, 0.7542725801467896, -0.30243611335754395, 0.26489388942718506, -0.13290847837924957, -0.6293553113937378, -0.1707000881433487, 0.19435913860797882, -0.11466473340988159, -0.10744166374206543, 0.31559136509895325, 0.40984395146369934, 0.0367237888276577, -0.2926672697067261, 0.7788644433021545, -0.4089358150959015, -0.15771977603435516, -0.7166262269020081, 0.07321162521839142, 0.11147475987672806, 0.29930487275123596, 0.1947944313287735, 0.18078824877738953, -0.07158228754997253, -0.6887244582176208, 0.5649624466896057, 0.2029108852148056, -0.24044249951839447, -0.4719173014163971, 0.6329053044319153, 0.2031720131635666, -0.3149305582046509, 0.33047837018966675, -0.23018458485603333, -0.13544359803199768, 0.7695139050483704, 0.3997936546802521, 0.769885241985321, 0.13353751599788666, 0.4770372807979584, 0.8363351821899414, 0.18918631970882416, -0.10682892054319382, 0.8075312376022339, 0.13621807098388672, -0.6492648720741272, -0.18769684433937073, -0.6838605403900146, -0.22379420697689056, 0.2964235842227936, -0.8379852771759033, 0.5768218636512756, -0.6424811482429504, -0.4550124406814575, 0.07424101233482361, 0.04329007863998413, -0.715008020401001, 0.3459666073322296, 0.04640783742070198, 0.8935959935188293, -1.1339976787567139, 0.4284493327140808, 0.8984470963478088, -0.680882453918457, -0.6563100218772888, -0.03845039755105972, 0.1528106927871704, -0.7218124270439148, 0.37463030219078064, -0.11435925215482712, -0.025949781760573387, -0.19317175447940826, -0.9419628977775574, -0.8605896830558777, 1.0566285848617554, 0.005640767514705658, -0.31423619389533997, 0.30479684472084045, 0.2338622510433197, 0.6593227386474609, -0.4556152820587158, 0.08958633244037628, 0.47368472814559937, 0.5483470559120178, 0.20974288880825043, -0.6449418663978577, 0.23594622313976288, -0.6971309185028076, -0.485811710357666, -0.11637039482593536, -0.7353677153587341, 0.8169441819190979, -0.19163361191749573, -0.254290908575058, -0.395418256521225, 0.5867683291435242, 0.24088621139526367, 0.4195767343044281, 0.32944801449775696, 0.9375919699668884, 0.6853927969932556, -0.1359473466873169, 1.1537472009658813, -0.42276084423065186, 0.5588981509208679, 1.0550117492675781, 0.14381597936153412, 0.964111328125, 0.3330516517162323, -0.2865618169307709, 0.6224142909049988, 0.7008888721466064, -0.17477205395698547, 0.524353563785553, -0.022426065057516098, -0.2599070966243744, -0.09561450779438019, -0.4156130254268646, -0.6262162923812866, 0.40258970856666565, 0.30814695358276367, -0.6477752923965454, -0.0679226666688919, -0.152372345328331, 0.48006919026374817, -0.001397455227561295, -0.4425295293331146, 0.8945512771606445, 0.013640700839459896, -0.54712975025177, 0.5520058274269104, -0.1504545956850052, 0.7541528940200806, -0.4652130901813507, -0.013194994069635868, -0.1871808022260666, 0.10465510934591293, -0.6896347999572754, -0.9557370543479919, 0.7708995342254639, 0.11554743349552155, -0.6162432432174683, -0.23121951520442963, 0.9659035205841064, -0.4916209280490875, -0.8913119435310364, 0.2693166732788086, 0.36606886982917786, 0.25998228788375854, 0.07813867181539536, -0.9247173070907593, 0.3598381280899048, 0.017118416726589203, -0.16190698742866516, 0.019603392109274864, 0.32779115438461304, 0.0812491849064827, 0.4647848606109619, 0.3968700170516968, 0.24455572664737701, -0.08093563467264175, -0.013284937478601933, 0.9138475656509399, -0.9131986498832703, -0.3053346574306488, -0.8701032400131226, 0.6171557307243347, -0.42167797684669495, -0.3093821108341217, 0.978416383266449, 0.5542874932289124, 0.8366687893867493, -0.023579904809594154, 1.2070201635360718, -0.7751909494400024, 0.7286850214004517, 0.07262284308671951, 0.8086204528808594, -0.8723374009132385, -0.21282349526882172, -0.41911226511001587, -0.3423280417919159, -0.593571662902832, 0.6131657361984253, -0.5358074903488159, -0.17265684902668, 0.5265095829963684, 0.9659587740898132, 0.10121619701385498, -0.03653624281287193, -0.07142040133476257, 0.47560974955558777, 0.014317798428237438, 0.2446763962507248, 0.4675101041793823, -0.46048852801322937, 0.336489200592041, -0.7184305191040039, -0.2575531005859375, -0.3152746856212616, -0.943722128868103, -0.8082960844039917, -0.7327268123626709, -0.7173621654510498, -0.5878486037254333, 0.03605754300951958, 1.153324842453003, 0.5186492800712585, -0.9415542483329773, -0.3212100863456726, 0.06838919222354889, 0.28163230419158936, -0.24204984307289124, -0.33255913853645325, 0.40221452713012695, 0.33714452385902405, -0.43459445238113403, -0.24054794013500214, 0.27771398425102234, -0.2968910038471222, -0.03219432011246681, 0.1222858652472496, -0.48591703176498413, 0.11288824677467346, 0.8933343291282654, 0.6595683693885803, -0.4500351846218109, -0.46581020951271057, 0.1386578381061554, -0.2445848137140274, 0.2301841676235199, 0.3374297320842743, -0.3118942975997925, 0.2671254873275757, 0.9123460054397583, 0.1080990806221962, 0.24452422559261322, 0.45861390233039856, 0.26012927293777466, -0.7722499370574951, 0.09158364683389664, 0.06127963587641716, 0.3113797903060913, 0.3803102672100067, -0.5485216379165649, 0.40105539560317993, 0.5220439434051514, -0.6596436500549316, -0.4255332350730896, -0.19245731830596924, -1.3395992517471313, 0.0524454303085804, 1.4632220268249512, -0.06949027627706528, -0.4539858102798462, -0.23291051387786865, -0.15318603813648224, 0.21204853057861328, -0.8211407661437988, 0.860914409160614, 0.6428935527801514, -0.3478233814239502, -0.2617896795272827, -0.36900997161865234, 0.697774350643158, -0.3279636800289154, -1.1381388902664185, 0.0179663747549057, 0.4149235188961029, 0.3432093560695648, 0.13349786400794983, 1.0118927955627441, -0.19470663368701935, 0.17582790553569794, -0.1736588478088379, 0.263448566198349, 0.21554921567440033, -0.2104547619819641, -0.0962594747543335, 0.3505455255508423, -0.33124008774757385, -0.21665668487548828 ]
null
null
null
null
null
null
null
null
null
null
null
null
null
classla/FRENK-hate-hr
classla
2022-10-21T07:46:28Z
472
0
null
[ "task_categories:text-classification", "size_categories:1K<n<10K", "language:hr", "license:other", "hate-speech-detection", "offensive-language", "arxiv:1906.02045", "region:us" ]
2022-10-21T07:46:28Z
2022-03-02T23:29:22.000Z
2022-03-02T23:29:22
--- language: - hr license: - other size_categories: - 1K<n<10K task_categories: - text-classification task_ids: [] tags: - hate-speech-detection - offensive-language --- # Offensive language dataset of Croatian comments FRENK 1.0 Croatian subset of the [FRENK dataset](http://hdl.handle.net/11356/1433). Also available on HuggingFace dataset hub: [English subset](https://huggingface.co/datasets/5roop/FRENK-hate-en), [Slovenian subset](https://huggingface.co/datasets/5roop/FRENK-hate-sl). ## Dataset Description - **Homepage:** http://hdl.handle.net/11356/1433 - **Repository:** http://hdl.handle.net/11356/1433 - **Paper:** https://arxiv.org/abs/1906.02045 - **Project page** https://nl.ijs.si/frenk/ ## Description of the original dataset >The original FRENK dataset consists of comments to Facebook posts (news articles) of mainstream media outlets from Croatia, Great Britain, and Slovenia, on the topics of migrants and LGBT. The dataset contains whole discussion threads. Each comment is annotated by the type of socially unacceptable discourse (e.g., inappropriate, offensive, violent speech) and its target (e.g., migrants/LGBT, commenters, media). The annotation schema is described in detail in [https://arxiv.org/pdf/1906.02045.pdf]. Usernames in the metadata are pseudo-anonymised and removed from the comments. > >The data in each language (Croatian (hr), English (en), Slovenian (sl), and topic (migrants, LGBT) is divided into a training and a testing portion. The training and testing data consist of separate discussion threads, i.e., there is no cross-discussion-thread contamination between training and testing data. The sizes of the splits are the following: Croatian, migrants: 4356 training comments, 978 testing comments; Croatian LGBT: 4494 training comments, 1142 comments; English, migrants: 4540 training comments, 1285 testing comments; English, LGBT: 4819 training comments, 1017 testing comments; Slovenian, migrants: 5145 training comments, 1277 testing comments; Slovenian, LGBT: 2842 training comments, 900 testing comments. For this dataset only the Croatian data was used. Training segment has been split into beginning 90% (published here as training split) and end 10% (published here as dev split). Test segment has been preserved in its original form. ## Usage in `Transformers` ```python import datasets ds = datasets.load_dataset("classla/FRENK-hate-hr","binary") ``` For binary classification the following encoding is used: ```python _CLASS_MAP_BINARY = { 'Acceptable': 0, 'Offensive': 1, } ``` The original labels are available if the dataset is loaded with the `multiclass` option: ```python import datasets ds = datasets.load_dataset("classla/FRENK-hate-hr","multiclass"). ``` In this case the encoding used is: ```python _CLASS_MAP_MULTICLASS = { 'Acceptable speech': 0, 'Inappropriate': 1, 'Background offensive': 2, 'Other offensive': 3, 'Background violence': 4, 'Other violence': 5, } ``` ## Data structure * `text`: text * `target`: who is the target of the hate-speech text ("no target", "commenter", "target" (migrants or LGBT, depending on the topic), or "related to" (again, the topic)) * `topic`: whether the text relates to lgbt or migrants hate-speech domains * `label`: label of the text instance, see above. ## Data instance ``` {'text': 'Potpisujem komentar g ankice pavicic', 'target': 'No target', 'topic': 'lgbt', 'label': 0} ``` ## Licensing information CLARIN.SI Licence ACA ID-BY-NC-INF-NORED 1.0 ## Citation information When using this dataset please cite the following paper: ``` @misc{ljubešić2019frenk, title={The FRENK Datasets of Socially Unacceptable Discourse in Slovene and English}, author={Nikola Ljubešić and Darja Fišer and Tomaž Erjavec}, year={2019}, eprint={1906.02045}, archivePrefix={arXiv}, primaryClass={cs.CL}, url={https://arxiv.org/abs/1906.02045} } ``` The original dataset can be cited as ``` @misc{11356/1433, title = {Offensive language dataset of Croatian, English and Slovenian comments {FRENK} 1.0}, author = {Ljube{\v s}i{\'c}, Nikola and Fi{\v s}er, Darja and Erjavec, Toma{\v z}}, url = {http://hdl.handle.net/11356/1433}, note = {Slovenian language resource repository {CLARIN}.{SI}}, copyright = {{CLARIN}.{SI} Licence {ACA} {ID}-{BY}-{NC}-{INF}-{NORED} 1.0}, year = {2021} } ```
[ -0.4611867070198059, -0.6637739539146423, -0.0979316234588623, 0.432485431432724, -0.19726434350013733, -0.30682867765426636, -0.5053578615188599, -0.3990623354911804, 0.13244301080703735, 0.32839053869247437, -0.5898562073707581, -0.7867127060890198, -0.7158397436141968, 0.41193801164627075, -0.2809404730796814, 1.2355470657348633, -0.027738463133573532, 0.22051148116588593, 0.12135658413171768, -0.5079506635665894, 0.15618382394313812, -0.5732944011688232, -0.3279181122779846, -0.009906698018312454, 0.6888814568519592, 0.31664371490478516, 0.5069161057472229, 0.5748200416564941, 0.34254270792007446, 0.2796144187450409, -0.13389351963996887, -0.13267414271831512, -0.5969654321670532, 0.11877238750457764, -0.2744375169277191, -0.1946931779384613, -0.3463556170463562, 0.2723621726036072, 0.6882429718971252, 0.48324185609817505, 0.02479265071451664, 0.3820095658302307, 0.09234509617090225, 0.6096833348274231, -0.5112314820289612, 0.07671357691287994, -0.6366115808486938, 0.11114658415317535, -0.41926321387290955, 0.14726872742176056, -0.3833776116371155, -0.3925536572933197, -0.13593865931034088, -0.4127485156059265, 0.1253037005662918, -0.15926361083984375, 0.8626235127449036, 0.18783387541770935, -0.49360761046409607, -0.2787841260433197, -0.3762127161026001, 0.865513026714325, -0.8307009935379028, 0.5959047079086304, 0.4495636820793152, -0.23665723204612732, -0.23797845840454102, -0.1003488078713417, -0.6742424964904785, 0.07567538321018219, -0.19438204169273376, 0.15838105976581573, -0.17447331547737122, -0.22884158790111542, 0.3052048683166504, 0.12934857606887817, -0.7405758500099182, 0.01660933718085289, -0.6360503435134888, -0.24616074562072754, 0.989965558052063, 0.139558345079422, 0.3349779546260834, -0.33938807249069214, -0.38424286246299744, 0.0001920491486089304, -0.575069785118103, 0.07053923606872559, 0.7553831338882446, 0.7540349960327148, -0.4570408761501312, 0.7700172662734985, -0.20322299003601074, 0.532193660736084, -0.042784325778484344, -0.2117711305618286, 0.8946723937988281, -0.4266602396965027, -0.03173980861902237, -0.11178107559680939, 1.1621778011322021, 0.6312440633773804, 0.3612094521522522, 0.059610117226839066, 0.2679171860218048, 0.21140804886817932, 0.054657090455293655, -0.701391875743866, -0.1863684207201004, 0.0029984558932483196, -0.2803584337234497, -0.1825144737958908, -0.08247236907482147, -1.1136337518692017, -0.349626362323761, 0.007020253688097, -0.15492597222328186, -0.3510855436325073, -0.39066165685653687, -0.18070194125175476, -0.024031750857830048, 0.3347034454345703, 0.10650024563074112, -0.5898949503898621, 0.12898722290992737, 0.4718915820121765, 0.6099687218666077, -0.21087293326854706, -0.2835085093975067, -0.13623753190040588, -0.20690396428108215, -0.11235246807336807, 0.37292155623435974, -0.7009986639022827, -0.14336419105529785, 0.010610104538500309, 0.2922392189502716, -0.1718931794166565, -0.2868055999279022, 0.7903374433517456, -0.3038875460624695, 0.5811484456062317, -0.15441620349884033, -0.29551273584365845, -0.19490525126457214, 0.34971678256988525, -0.2598452568054199, 1.3220460414886475, 0.3555103540420532, -1.1538101434707642, 0.5410307049751282, -0.647584080696106, -0.35841241478919983, -0.0522608757019043, -0.04142182320356369, -0.5279513597488403, -0.5513818860054016, 0.06639690697193146, 0.4141816198825836, -0.09785281121730804, 0.048690635710954666, -0.5262190103530884, -0.09120111167430878, 0.13613708317279816, -0.14764460921287537, 1.2328768968582153, 0.38471895456314087, -0.3968036472797394, 0.10626339912414551, -0.7440614104270935, -0.2211151123046875, 0.1968865841627121, -0.7750130891799927, -0.4441201686859131, -0.05745445564389229, 0.10423369705677032, 0.5247374773025513, -0.02683703601360321, -0.9999834299087524, 0.003379643661901355, -0.7021040916442871, -0.07310615479946136, 0.7689671516418457, -0.13408377766609192, 0.37454676628112793, -0.1295144259929657, 0.5083779096603394, 0.07008381187915802, 0.28457751870155334, 0.21453337371349335, -0.7457036972045898, -0.5849211812019348, -0.25256237387657166, 0.02469041757285595, 0.8366923332214355, -0.8089553117752075, 0.550642192363739, -0.26121455430984497, -0.5277814269065857, -0.4244648814201355, 0.07549598067998886, 0.5961216688156128, 0.43872666358947754, 0.3882916569709778, -0.19260957837104797, -0.9862357378005981, -0.9643207788467407, -0.38486966490745544, -0.5219401121139526, 0.14676639437675476, 0.5673441886901855, 0.6596046686172485, -0.08258530497550964, 0.7457607388496399, -0.23876193165779114, -0.20719829201698303, -0.1227487176656723, 0.022495348006486893, 0.2611634135246277, 0.5437847971916199, 0.7373911142349243, -1.062869668006897, -1.1387572288513184, -0.13055333495140076, -0.6086777448654175, -0.24896469712257385, 0.18284092843532562, -0.12443673610687256, 0.5139589905738831, 0.13562360405921936, -0.07841856777667999, 0.4588060975074768, 0.4959231913089752, -0.798258900642395, 0.49390649795532227, 0.3770582377910614, 0.4290592074394226, -1.0597354173660278, -0.04441904276609421, 0.2676907479763031, 0.05373569577932358, -0.8869028091430664, -0.1774076521396637, -0.3473770022392273, 0.24472768604755402, -0.8147687911987305, 0.5672316551208496, -0.15277503430843353, 0.34801796078681946, 0.2191428244113922, 0.05073199421167374, -0.5760054588317871, 0.6668794751167297, -0.011038369499146938, 0.6133915185928345, 0.5778802633285522, -0.3277425169944763, 0.3391711115837097, 0.6160281896591187, -0.31491172313690186, 0.5808253288269043, -0.25683754682540894, 0.08877529203891754, -0.19628605246543884, 0.11478213965892792, -0.8712573051452637, -0.21930232644081116, 1.0179169178009033, -0.6165351867675781, -0.05021199584007263, -0.5300484895706177, -0.39173632860183716, -0.5724571943283081, -0.5055022835731506, 0.38148775696754456, 0.2786702811717987, -0.1829317957162857, 0.24654626846313477, 0.707480251789093, -0.3754073679447174, -1.0208256244659424, -0.8158696889877319, -0.04374248534440994, -0.4660671651363373, -0.627728283405304, -0.2345883548259735, -0.20391421020030975, -0.15675099194049835, -0.03163432329893112, 0.19253116846084595, -0.18620285391807556, 0.09445098787546158, 0.33393874764442444, 0.1518310010433197, -0.18409213423728943, -0.1613900065422058, -0.17481103539466858, 0.14983665943145752, 0.183567076921463, 0.05042966455221176, 0.5788889527320862, -0.17662814259529114, 0.035792477428913116, -0.24255189299583435, 0.5782807469367981, 0.4017311930656433, 0.03623183071613312, 0.987755298614502, 0.7259871363639832, -0.12941041588783264, 0.151920884847641, -0.30983060598373413, 0.05494115501642227, -0.392737478017807, 0.4580460488796234, -0.1436997354030609, -0.9683713912963867, 0.5967425107955933, 0.40292245149612427, 0.09854544699192047, 0.5870940685272217, 0.8865019679069519, -0.02764863334596157, 0.8915752172470093, 0.310286283493042, -0.030952507629990578, 0.6158262491226196, -0.10455869138240814, 0.08584807068109512, -0.7476991415023804, -0.4420233368873596, -0.7061344385147095, -0.2336919605731964, -0.8134651184082031, -0.48836907744407654, 0.15866371989250183, -0.22902972996234894, -0.4963761270046234, 0.42159023880958557, -0.5366169810295105, 0.4692937731742859, 0.202655628323555, -0.07546861469745636, -0.1827002763748169, 0.23997926712036133, -0.17002029716968536, -0.3504149913787842, -0.7076444625854492, -0.3732314705848694, 1.116925835609436, 0.4293592572212219, 0.6459245085716248, 0.12962743639945984, 0.4957377314567566, 0.28001829981803894, 0.4223945736885071, -0.43753594160079956, 0.6650772094726562, -0.35127779841423035, -0.9949945211410522, -0.36831650137901306, -0.7366467714309692, -0.99238520860672, 0.34018799662590027, -0.3952105939388275, -1.1749099493026733, 0.5210906267166138, 0.030566776171326637, 0.07939046621322632, 0.5422412157058716, -0.3620557188987732, 0.7286121249198914, 0.2144090235233307, -0.4535689353942871, 0.04347752779722214, -0.9306615591049194, 0.34408074617385864, 0.061202190816402435, 0.5015825033187866, -0.33097562193870544, 0.1552756130695343, 1.2083890438079834, -0.2156008780002594, 1.0096834897994995, -0.42746084928512573, -0.28776535391807556, 0.17219802737236023, -0.14356741309165955, 0.2480163276195526, -0.3649521768093109, -0.4244058132171631, 0.4425067901611328, -0.21936115622520447, -0.29383552074432373, -0.21456582844257355, 0.5050804018974304, -0.6713878512382507, -0.3259044885635376, -0.37503570318222046, -0.6898582577705383, -0.022191978991031647, 0.20882272720336914, 0.33535587787628174, 0.12398739904165268, -0.15438756346702576, 0.31625446677207947, 0.4878290295600891, -0.4582919180393219, 0.0842246413230896, 0.6295980215072632, -0.1420331448316574, -0.5354591012001038, 0.7705091238021851, 0.331686794757843, 0.04373078793287277, -0.13920441269874573, 0.10678372532129288, -0.29431840777397156, -0.3620813488960266, -0.4179382920265198, 0.378082275390625, -0.6681215763092041, -0.1392822563648224, -0.844002366065979, -0.24337168037891388, -0.6326515674591064, -0.059526145458221436, -0.42439180612564087, -0.38470807671546936, -0.0123532610014081, -0.03759251907467842, 0.4162167012691498, 0.7105463743209839, -0.46749216318130493, 0.17922727763652802, -0.38941270112991333, 0.20487788319587708, -0.09922905266284943, 0.4804683327674866, -0.28544554114341736, -0.8210872411727905, -0.35060247778892517, 0.3207293450832367, -0.10784957557916641, -1.0325937271118164, 0.35119494795799255, 0.06964044272899628, 0.5314354300498962, 0.1929633915424347, 0.3411659002304077, 0.3473532795906067, -0.2705240547657013, 1.129781723022461, 0.21723410487174988, -0.47608622908592224, 0.6934460401535034, -0.5743215084075928, -0.054135240614414215, 0.49830007553100586, 0.8353301882743835, -0.7425122261047363, -0.7998957633972168, -0.7687689065933228, -1.188614845275879, 1.2135155200958252, 0.5571428537368774, 0.25514286756515503, -0.19222603738307953, 0.2540246546268463, 0.12703029811382294, -0.04218766838312149, -1.0918599367141724, -0.8444929122924805, -0.15518054366111755, -0.26953789591789246, -0.0030086853075772524, -0.4045655131340027, -0.4392777383327484, -0.6298694610595703, 1.1212230920791626, 0.12167175859212875, 0.26136133074760437, 0.11118032038211823, -0.13540175557136536, -0.018574710935354233, 0.46412524580955505, 0.6815453171730042, 0.35435450077056885, -0.17591126263141632, 0.20505185425281525, 0.46870318055152893, -0.7095375657081604, 0.24630677700042725, -0.14013367891311646, -0.2742050588130951, -0.0776425302028656, 0.1529691517353058, 0.7296037673950195, -0.06492310017347336, -0.2661132514476776, 0.6701270937919617, -0.10666158050298691, -0.4362386167049408, -0.20290131866931915, 0.14022743701934814, -0.22019775211811066, 0.33927059173583984, 0.19783887267112732, -0.03536022827029228, 0.05164838582277298, -0.3354145586490631, 0.4676102101802826, 0.09301160275936127, -0.43741559982299805, -0.3329317569732666, 0.4599526822566986, 0.12291290611028671, -0.34610122442245483, 0.5145552754402161, -0.2767340838909149, -0.8449899554252625, 0.31699734926223755, 0.591625452041626, 0.5749505758285522, -0.33500728011131287, 0.45429325103759766, 0.8276670575141907, 0.4443996548652649, 0.37781935930252075, 0.49022212624549866, -0.07851456850767136, -0.9545310735702515, -0.1756821572780609, -0.6751930117607117, 0.02839561179280281, 0.13435831665992737, -0.7749015688896179, 0.008841535076498985, -0.2949914038181305, -0.08099882304668427, -0.15907534956932068, 0.12483568489551544, -0.41160550713539124, 0.18907436728477478, 0.5133073925971985, 0.8573094606399536, -1.364473581314087, 0.694696307182312, 0.8173726201057434, -0.38123416900634766, -0.6150879859924316, -0.23897084593772888, 0.3443918824195862, -0.5807506442070007, 0.6352836489677429, -0.06057978793978691, 0.005205642897635698, -0.2826402485370636, -0.8048602342605591, -0.7291713953018188, 0.4304676949977875, 0.3816758096218109, -0.2126772105693817, 0.3721504211425781, 0.5066338181495667, 0.6610636115074158, -0.454201877117157, 0.07612486928701401, 0.7190160751342773, 0.6916570663452148, -0.058096520602703094, -0.7424684762954712, 0.15419214963912964, -0.6797574162483215, -0.22746816277503967, 0.12205223739147186, -0.7535771131515503, 0.7511147856712341, 0.2182454615831375, -0.3039496839046478, -0.2168370932340622, 0.4656967222690582, 0.1220528855919838, 0.2868881821632385, 0.6628843545913696, 0.513404905796051, 0.6271899938583374, -0.3054947257041931, 0.8533539772033691, -0.07667005062103271, 0.5897511839866638, 1.2981443405151367, 0.09359686076641083, 0.6703698039054871, 0.342201292514801, -0.42975884675979614, 0.620415985584259, 0.4143533706665039, -0.22655963897705078, 0.42961955070495605, 0.15640246868133545, -0.12826696038246155, -0.03305560350418091, -0.20024998486042023, -0.3588941693305969, 0.45952457189559937, 0.39933282136917114, -0.3684270977973938, -0.36067327857017517, 0.15496602654457092, 0.4633234143257141, 0.10132992267608643, -0.18518848717212677, 0.8775097131729126, -0.18504378199577332, -0.2970196306705475, 0.7961872816085815, -0.14414560794830322, 0.9433399438858032, -0.5382509231567383, 0.16033950448036194, -0.12104674428701401, -0.07042498886585236, -0.480496883392334, -1.152557611465454, 0.557402491569519, 0.40472736954689026, -0.3529396653175354, -0.3281813859939575, 0.5032562017440796, -0.7871206998825073, -0.4545366168022156, 0.458638995885849, 0.014013484120368958, 0.7589617371559143, 0.32075756788253784, -1.097847580909729, 0.15846797823905945, 0.4581298828125, -0.3981717824935913, 0.2414993941783905, 0.33080726861953735, 0.00869226735085249, 0.5304226875305176, 0.5789064168930054, 0.24882109463214874, 0.41926154494285583, -0.09051594883203506, 0.9964636564254761, -0.47580766677856445, -0.3571423590183258, -0.9052101969718933, 0.7299167513847351, -0.22968339920043945, -0.4533511996269226, 0.9799664616584778, 0.7993043065071106, 1.0466856956481934, 0.10920743644237518, 0.7215672731399536, -0.5164152383804321, 0.7421954870223999, -0.11643479019403458, 0.7878686785697937, -0.523727536201477, -0.11703622341156006, -0.5752402544021606, -0.7906605005264282, -0.5464080572128296, 0.7708802223205566, -0.5113920569419861, -0.19254067540168762, 0.357078492641449, 1.1220426559448242, 0.015288107097148895, -0.049233995378017426, 0.1802968531847, 0.7587364912033081, 0.17078812420368195, 0.35987257957458496, 0.6515864729881287, -0.532808780670166, 0.4821959435939789, -0.5175616145133972, -0.21320009231567383, -0.05445067211985588, -0.6080362200737, -0.7765015363693237, -0.7886143922805786, -0.573716938495636, -0.6897695660591125, 0.03170294314622879, 0.9883224368095398, 0.5922733545303345, -1.143957257270813, -0.22809667885303497, 0.44320544600486755, 0.3583713173866272, 0.06327741593122482, -0.2953597903251648, 0.25316983461380005, -0.005324260797351599, -0.7134643793106079, 0.15999126434326172, 0.04281501844525337, -0.022378528490662575, 0.0770498514175415, -0.37469378113746643, -0.7599462270736694, 0.07366959005594254, 0.6169615983963013, 0.40996813774108887, -0.60496985912323, -0.40274572372436523, -0.363425076007843, -0.07873009145259857, 0.28851720690727234, 0.3205929398536682, -0.4109730124473572, 0.22489774227142334, 0.5454496145248413, 0.22004064917564392, 0.36757978796958923, 0.030942654237151146, 0.22334513068199158, -0.8641374707221985, 0.5371407270431519, 0.21906757354736328, 0.2760745882987976, 0.3108285367488861, -0.3950121998786926, 0.7717407941818237, 0.3757428526878357, -0.4857419431209564, -1.1044877767562866, 0.04959068447351456, -0.8957940936088562, -0.010731430724263191, 1.3918037414550781, -0.4966551661491394, -0.3029259741306305, -0.4853042960166931, -0.20237167179584503, 0.3733997941017151, -0.5687636137008667, 0.5594480037689209, 0.7002538442611694, -0.07525870949029922, -0.010401539504528046, -0.2126142531633377, 0.6062726378440857, 0.20014259219169617, -0.5273808240890503, 0.47221964597702026, 0.3759480118751526, 0.5612697601318359, 0.1783568412065506, 0.5544562339782715, -0.24862360954284668, 0.10561271011829376, -0.020665673539042473, 0.3160035014152527, 0.19247862696647644, -0.2215346097946167, -0.29250770807266235, 0.12966129183769226, -0.5920826196670532, 0.019750624895095825 ]
null
null
null
null
null
null
null
null
null
null
null
null
null
bigbio/bc5cdr
bigbio
2022-12-22T15:43:20Z
472
1
null
[ "multilinguality:monolingual", "language:en", "license:other", "region:us" ]
2022-12-22T15:43:20Z
2022-11-13T22:06:13.000Z
2022-11-13T22:06:13
--- language: - en bigbio_language: - English license: other multilinguality: monolingual bigbio_license_shortname: PUBLIC_DOMAIN_MARK_1p0 pretty_name: BC5CDR homepage: http://www.biocreative.org/tasks/biocreative-v/track-3-cdr/ bigbio_pubmed: True bigbio_public: True bigbio_tasks: - NAMED_ENTITY_RECOGNITION - NAMED_ENTITY_DISAMBIGUATION - RELATION_EXTRACTION --- # Dataset Card for BC5CDR ## Dataset Description - **Homepage:** http://www.biocreative.org/tasks/biocreative-v/track-3-cdr/ - **Pubmed:** True - **Public:** True - **Tasks:** NER,NED,RE The BioCreative V Chemical Disease Relation (CDR) dataset is a large annotated text corpus of human annotations of all chemicals, diseases and their interactions in 1,500 PubMed articles. ## Citation Information ``` @article{DBLP:journals/biodb/LiSJSWLDMWL16, author = {Jiao Li and Yueping Sun and Robin J. Johnson and Daniela Sciaky and Chih{-}Hsuan Wei and Robert Leaman and Allan Peter Davis and Carolyn J. Mattingly and Thomas C. Wiegers and Zhiyong Lu}, title = {BioCreative {V} {CDR} task corpus: a resource for chemical disease relation extraction}, journal = {Database J. Biol. Databases Curation}, volume = {2016}, year = {2016}, url = {https://doi.org/10.1093/database/baw068}, doi = {10.1093/database/baw068}, timestamp = {Thu, 13 Aug 2020 12:41:41 +0200}, biburl = {https://dblp.org/rec/journals/biodb/LiSJSWLDMWL16.bib}, bibsource = {dblp computer science bibliography, https://dblp.org} } ```
[ -0.2071751058101654, -0.41206789016723633, 0.6274516582489014, 0.24231545627117157, -0.10670080035924911, 0.09501610696315765, -0.13778673112392426, -0.3676798641681671, 0.16267994046211243, 0.369950532913208, -0.6515641212463379, -1.1485117673873901, -0.45756831765174866, 0.4480787515640259, -0.0027720765210688114, 1.492990255355835, 0.1388377547264099, 0.26214566826820374, -0.4334891736507416, -0.0421840138733387, -0.28153714537620544, -0.5821747183799744, -0.3627900183200836, -0.18771088123321533, 1.1264511346817017, 0.3947443664073944, 0.4975023567676544, 0.43253982067108154, 1.0034891366958618, 0.1665385663509369, -0.26739323139190674, -0.03319930657744408, -0.5841944217681885, 0.17118573188781738, -0.4288715422153473, -0.25548040866851807, -0.8360094428062439, -0.07453715056180954, 0.18343456089496613, 0.8154438138008118, -0.04260233789682388, 0.22891947627067566, -0.11903753131628036, 0.7419936656951904, -0.8042101263999939, 0.4006991386413574, -0.296780526638031, 0.02903818152844906, -0.6609880328178406, -0.05081290379166603, -0.29209956526756287, -0.4977928400039673, 0.031115788966417313, -0.7354236245155334, 0.6562151908874512, -0.2506371736526489, 1.0650849342346191, 0.16697192192077637, -0.6007262468338013, -0.020043615251779556, -0.7148258090019226, 0.4371300935745239, -0.5080939531326294, 0.21449555456638336, 0.4911642372608185, 0.21333760023117065, -0.20195737481117249, -0.9666506052017212, -0.85386723279953, 0.17361055314540863, -0.18953564763069153, 0.4236733317375183, -0.07355719804763794, -0.0005903218989260495, 0.3380802869796753, 0.5305692553520203, -0.7613935470581055, -0.3659689128398895, -1.0123409032821655, -0.5402374863624573, 0.6257468461990356, 0.6457166075706482, 0.11746159940958023, -0.19121265411376953, -0.5409957766532898, -0.11760711669921875, -0.3969564735889435, -0.2747737169265747, -0.17639444768428802, 0.3224982023239136, -0.5529409646987915, 0.6272755265235901, -0.011780861765146255, 0.5109173059463501, 0.16365762054920197, 0.056632913649082184, 0.7852185964584351, -1.1358083486557007, -0.03804687410593033, 0.20845134556293488, 0.9757584929466248, 0.3606535792350769, -0.1731226146221161, 0.08721758425235748, 0.37281790375709534, 0.13051694631576538, 0.20792503654956818, -1.0078294277191162, -0.774461567401886, 0.7286700010299683, -0.5567114949226379, 0.05391792207956314, 0.305460125207901, -0.8317242860794067, -0.4159187972545624, -0.16026729345321655, 0.0759270042181015, -0.4298367500305176, -0.28552237153053284, -0.08714815229177475, -0.31366395950317383, 0.1716684103012085, 0.06959361582994461, -0.6205205917358398, 0.46790215373039246, 0.351047158241272, 0.7242119312286377, -0.49383193254470825, 0.0873500257730484, -0.3554449677467346, 0.6981468796730042, -0.005161239765584469, 0.7525385022163391, -0.44460687041282654, -0.650592565536499, -0.06090603768825531, 0.5024031400680542, 0.034965310245752335, -0.7252309322357178, 0.9855899214744568, -0.44896644353866577, -0.03979857265949249, -0.9664610028266907, -0.11373397707939148, 0.136830672621727, -0.17275063693523407, -1.1030426025390625, 0.9995817542076111, 0.05455345660448074, -1.057328701019287, 0.7896438837051392, -0.4746321141719818, -0.37877151370048523, 0.250149667263031, -0.0363427996635437, -0.6910775303840637, -0.2793685495853424, 0.02489190176129341, 0.518017053604126, -0.2101711630821228, 0.19621703028678894, -0.6927978992462158, -0.23706334829330444, 0.04599869251251221, 0.05530263110995293, 0.9781835079193115, 0.4879497289657593, 0.1476890593767166, 0.1519119292497635, -1.2290315628051758, -0.07983433455228806, -0.07451169937849045, -0.5350984334945679, -0.3882008492946625, -0.06377646327018738, 0.5102154612541199, 0.4666658341884613, 0.43008899688720703, -0.9200699925422668, 0.1490776091814041, -0.01065902505069971, -0.007589211221784353, 0.5792179703712463, 0.43905776739120483, -0.1591675579547882, -0.3654228746891022, 0.13257996737957, 0.7918771505355835, 0.06735887378454208, 0.3521646559238434, -0.39353060722351074, -0.3851386308670044, -0.6211845278739929, 0.27914369106292725, 0.5288446545600891, -0.4318576157093048, 0.8283182978630066, -0.7568503022193909, -0.5728062987327576, -0.47116145491600037, -0.040546953678131104, 0.4953511655330658, 0.2790760397911072, 0.8637826442718506, -0.6782242059707642, -0.6094021797180176, -0.7752390503883362, 0.3988296687602997, 0.0208904892206192, 0.10543066263198853, 0.16738395392894745, 0.7802515029907227, -0.37507835030555725, 0.9482070803642273, -0.8460946679115295, -0.7233251333236694, -0.08902125805616379, 0.07052851468324661, 0.4911739230155945, 0.5685869455337524, 0.34491512179374695, -0.5321545004844666, -0.6165990233421326, 0.07327106595039368, -0.6203925609588623, -0.3193458020687103, 0.21942631900310516, -0.3930787742137909, 0.4847765266895294, 0.01626380905508995, -0.5366050004959106, 0.6264397501945496, 0.27345454692840576, -0.6145006418228149, 0.47289758920669556, -0.43659552931785583, -0.061476029455661774, -1.054444670677185, 0.6499655246734619, 0.041322410106658936, 0.13099287450313568, -0.5435947775840759, -0.4892677366733551, 0.16136647760868073, 0.13762232661247253, -0.2924754321575165, 0.290205180644989, -0.6815767288208008, 0.09743988513946533, 0.004321351181715727, -0.058461084961891174, 0.06915795803070068, 0.25466403365135193, 0.30498287081718445, 0.3410573899745941, 0.3738953471183777, -0.6554738283157349, 0.3163479268550873, 0.7302626371383667, -0.0014115277444943786, 0.8089227676391602, -0.6412327289581299, -0.10939928144216537, -0.003822909202426672, 0.60404372215271, -0.9494742751121521, -0.2923823595046997, 0.4252853989601135, -0.5620170831680298, 0.27585524320602417, 0.07575254887342453, -0.6257743239402771, -0.3170238137245178, -0.3179374933242798, 0.4626520872116089, 0.13159669935703278, -0.3867741823196411, 0.2558189630508423, 0.15052586793899536, -0.18059153854846954, -0.5337961316108704, -0.7542734742164612, -0.34780845046043396, 0.05595389008522034, -0.36712124943733215, 0.7139145135879517, -0.40511178970336914, 0.008148043416440487, 0.18825185298919678, -0.4580949544906616, -0.3140062093734741, -0.5657764077186584, 0.20778346061706543, 0.3522350788116455, 0.14888769388198853, -0.10301089286804199, -0.07598947733640671, -0.2615945041179657, 0.35605910420417786, 0.4544745087623596, 0.31366708874702454, 0.47307804226875305, -0.21841411292552948, -0.3686073422431946, 0.4393977224826813, 0.5865346193313599, -0.3482384979724884, 0.8546920418739319, 0.9805690050125122, -0.4324531555175781, 0.3319277763366699, -0.26804831624031067, 0.07864144444465637, -0.37204286456108093, 0.38887861371040344, -0.4460163712501526, -0.4248691201210022, 0.7800100445747375, 0.35228779911994934, -0.30894437432289124, 0.772546648979187, 0.8652907013893127, -0.01981532946228981, 0.6186062693595886, 0.19769106805324554, -0.17168676853179932, -0.08314099907875061, -0.286331444978714, 0.029712587594985962, -1.1567955017089844, -0.7109405398368835, -0.6912228465080261, -0.13116495311260223, -0.6617935299873352, -0.48816347122192383, 0.4777340888977051, -0.37881559133529663, -0.6652421355247498, 0.4259028136730194, -0.48629888892173767, 0.020959220826625824, 0.4058149456977844, 0.5967161655426025, 0.29479140043258667, -0.2060522437095642, -0.509734570980072, -0.08259279280900955, -0.6194798946380615, -0.15674592554569244, 1.3247756958007812, 0.20102736353874207, 0.5795978307723999, 0.5306172966957092, 0.8012571930885315, 0.29329806566238403, 0.1867043375968933, -0.36953499913215637, 0.33125242590904236, -0.2216961532831192, -1.2187620401382446, 0.09623071551322937, -0.2764184772968292, -1.188546061515808, -0.25044870376586914, -0.38090622425079346, -0.6788434386253357, 0.93330979347229, 0.016334928572177887, -0.27741721272468567, -0.018499672412872314, -0.3549543619155884, 0.772894024848938, 0.050271421670913696, -0.9075347781181335, -0.04832812026143074, -1.2698639631271362, 0.39953139424324036, -0.03382759541273117, 0.22096754610538483, 0.0976359024643898, 0.008268523029983044, 0.7104330658912659, -0.7483464479446411, 0.8891883492469788, -0.20755785703659058, -0.06703208386898041, 0.01708754524588585, -0.26575684547424316, 0.4256911873817444, -0.024881012737751007, 0.08535949140787125, 0.29886671900749207, 0.3942949175834656, -0.6337664723396301, -0.08598770201206207, 0.7495741844177246, -0.7354202270507812, -0.12582288682460785, -1.160492181777954, -0.30598530173301697, 0.08731795102357864, 0.21451398730278015, 0.2730795443058014, 0.3520776629447937, -0.2246951162815094, 0.20634856820106506, 0.746025800704956, -0.3997216820716858, 0.45868977904319763, 0.4379236102104187, 0.1765126734972, -0.7317193150520325, 0.9712986350059509, -0.07842592149972916, 0.3883664608001709, 0.5802363753318787, -0.3867478370666504, -0.27986493706703186, -0.3681434094905853, 0.15143953263759613, 0.4194587171077728, -0.628723680973053, -0.4165569245815277, -0.7361158728599548, -0.2699328362941742, -0.4361206293106079, 0.15463128685951233, -0.05852338671684265, -0.05133289843797684, -0.6778770089149475, -0.37054243683815, 0.6824021935462952, 0.48211002349853516, -0.6195233464241028, -0.08878656476736069, -0.9324524998664856, 0.41895100474357605, -0.274936705827713, 0.4103347957134247, -0.1530172973871231, -0.2343473732471466, -0.3784220516681671, -0.08738632500171661, -0.7294085025787354, -1.1233669519424438, 0.6040948033332825, 0.2172478437423706, 0.7538168430328369, 0.22323015332221985, 0.23329280316829681, 0.7959867119789124, -0.10988931357860565, 0.9444860219955444, 0.1764233410358429, -0.5786685347557068, 0.34230130910873413, -0.556053638458252, 0.387849897146225, 0.7477202415466309, 0.7137022614479065, -0.3397422730922699, -0.13453523814678192, -0.7559299468994141, -1.3073009252548218, 0.7594874501228333, 0.47699812054634094, -0.33640047907829285, -0.3366521894931793, 0.10917937755584717, 0.10612275451421738, -0.16242298483848572, -0.8607401847839355, -0.9708850979804993, -0.2019028514623642, -0.3340001404285431, 0.14616084098815918, -0.34944435954093933, -0.39903831481933594, -0.5632895827293396, 0.872424840927124, 0.09533823281526566, 0.6673559546470642, 0.6471772789955139, 0.011510347947478294, -0.15251588821411133, 0.39103013277053833, 0.4686927795410156, 0.46865522861480713, -0.823745846748352, 0.16717198491096497, -0.044442858546972275, -1.046217918395996, -0.16259358823299408, 0.5527887344360352, 0.3896438181400299, -0.20172828435897827, 0.41016024351119995, 0.2538152039051056, -0.10978340357542038, -0.3572676181793213, 0.5172646045684814, 0.13625071942806244, -0.2886534631252289, -0.5237722396850586, -0.010826355777680874, 0.1747245341539383, 0.11235159635543823, 0.5013463497161865, -0.04406387731432915, 0.3160962164402008, -0.4692029058933258, 0.2377089411020279, 0.20677031576633453, -0.7872332334518433, -0.36823904514312744, 0.9008260369300842, 0.20652854442596436, 0.4933154881000519, 0.7230923175811768, -0.19231320917606354, -0.08796293288469315, 0.5526415705680847, 0.599632978439331, 0.6811529994010925, 0.027649011462926865, -0.06591642647981644, 0.895447313785553, 0.042955432087183, 0.4322015643119812, 0.8370398283004761, 0.12845559418201447, -0.7031980752944946, -0.157385915517807, -0.5874965190887451, 0.025529401376843452, 0.4463121294975281, -0.8505205512046814, 0.47047317028045654, -0.27349406480789185, -0.21372374892234802, 0.37046048045158386, 0.3823581337928772, -0.68137526512146, 0.45585331320762634, -0.013298965990543365, 0.7494935989379883, -0.9027775526046753, 0.9010416865348816, 0.6795302033424377, -1.0381383895874023, -0.40643471479415894, -0.11480366438627243, 0.27942800521850586, -0.02493477426469326, 0.8527771234512329, -0.39754605293273926, 0.4524448812007904, -0.12129715830087662, -0.4597527086734772, -1.0589940547943115, 1.6087456941604614, -0.010645235888659954, -0.6806117296218872, 0.5029928684234619, -0.0013522215886041522, 0.7094644904136658, -0.044363781809806824, 0.46976158022880554, 0.5780491232872009, 0.8433623313903809, 0.33815017342567444, -0.9402997493743896, 0.5042735934257507, -0.5571410059928894, -0.039691563695669174, 0.25719863176345825, -0.7183635234832764, 0.5787603855133057, -0.43340200185775757, -0.0970253050327301, 0.19383122026920319, 0.6838463544845581, 0.7649295330047607, 0.6870482563972473, -0.09741394966840744, 0.6816680431365967, 0.48767581582069397, -0.42096132040023804, 1.0021610260009766, -0.17783519625663757, 0.2933494448661804, 1.0142322778701782, -0.5055015087127686, 0.4945702850818634, 0.5255818367004395, -0.6234803795814514, 0.7842119932174683, 0.9477948546409607, -0.3582444190979004, 0.995576798915863, 0.39332064986228943, -0.4488069713115692, 0.04921477288007736, 0.14579948782920837, -0.8277692198753357, -0.03144054114818573, 0.5288246273994446, -0.6938061118125916, 0.12716570496559143, -0.519557535648346, 0.38721007108688354, -0.14391401410102844, -0.062234457582235336, 0.7481904625892639, -0.22455112636089325, -0.10668586194515228, 0.5658250451087952, -0.33357590436935425, 0.29340943694114685, -0.5285837054252625, -0.3407047986984253, -0.2264835238456726, 0.2441795915365219, -0.6520663499832153, -0.46999305486679077, 0.4398593306541443, -0.31399160623550415, -0.731072187423706, 0.6201699376106262, 0.42447352409362793, -0.4082793891429901, -0.5794090032577515, 0.3450068235397339, 0.448476642370224, 0.11395859718322754, 0.6173028349876404, -0.4297139346599579, 0.1904165893793106, -0.17556366324424744, 0.07080697268247604, 0.38279464840888977, 0.5938767790794373, -0.21606218814849854, 0.43039438128471375, 0.9259828329086304, 0.3811320960521698, -0.3172038793563843, -0.07110248506069183, 1.094224214553833, -0.9980054497718811, 0.05731210857629776, -0.5342680215835571, 0.7119073271751404, -0.1882380247116089, -0.5422642827033997, 0.3511599898338318, 1.1627256870269775, 0.8624110817909241, -0.42681771516799927, 1.1210417747497559, -0.568092942237854, 0.6461901068687439, -0.26342299580574036, 0.9028022289276123, -0.259467750787735, 0.3296796381473541, -0.7016906142234802, -0.8587508201599121, -0.6754195094108582, 0.3697216510772705, -0.1911635845899582, 0.2867819666862488, 1.415837287902832, 0.8525957465171814, -0.15936332941055298, -0.21352055668830872, -0.1696200966835022, 0.613208532333374, 0.12487772852182388, 0.5803816318511963, 0.0947793647646904, -0.32719922065734863, 0.4699556529521942, -0.3159670829772949, -0.0362582728266716, 0.02859567664563656, -0.9158768653869629, -0.6261112093925476, -0.8608136773109436, -0.6093792915344238, -0.7123771905899048, 0.3373761773109436, 0.9857509136199951, 0.49057480692863464, -1.0870590209960938, -0.22006237506866455, 0.02993372455239296, -0.09061708301305771, -0.5159325003623962, -0.24716496467590332, 0.7149901986122131, 0.1533309817314148, -0.5262429714202881, -0.10951471328735352, -0.19159717857837677, -0.21754401922225952, 0.07983279228210449, -0.04296437278389931, -0.5783382058143616, -0.34538859128952026, 0.4969576895236969, 0.4364389479160309, -0.5265487432479858, -0.17212966084480286, -0.26211297512054443, -0.3167760372161865, 0.1948099583387375, 0.30957654118537903, -0.70343416929245, 0.41715046763420105, 0.5276113152503967, 0.12414387613534927, 0.7428557872772217, -0.06125258281826973, 0.457050621509552, -0.7503130435943604, -0.4531615972518921, -0.04463651403784752, 0.22068750858306885, 0.30402645468711853, -0.5546826720237732, 0.670731246471405, 0.6265904903411865, -0.64351886510849, -0.45621392130851746, -0.30166786909103394, -1.9177272319793701, -0.018180200830101967, 1.3169163465499878, -0.049679093062877655, -0.05841434374451637, -0.5981873869895935, -0.2902912497520447, 0.5558029413223267, -0.8193119168281555, 0.6497283577919006, 0.47465142607688904, -0.20412294566631317, 0.02732119709253311, -0.4268340766429901, 0.5602749586105347, -0.29194843769073486, -1.1045390367507935, 0.12121005356311798, 0.8352493047714233, 0.46492722630500793, 0.19163765013217926, 0.7192615270614624, -0.47302141785621643, 0.261211097240448, -0.21170328557491302, 0.67289799451828, 0.16217516362667084, -0.13620957732200623, -0.1641150414943695, 0.03738003969192505, -0.37731605768203735, -0.16849027574062347 ]
null
null
null
null
null
null
null
null
null
null
null
null
null
Kyle1668/AG-Tweets
Kyle1668
2023-08-09T22:22:37Z
472
0
null
[ "region:us" ]
2023-08-09T22:22:37Z
2023-06-29T22:07:56.000Z
2023-06-29T22:07:56
--- pretty_name: AG News Tweets --- \subsection{Motivation} AG News is a four-way topic classification task introduced in \cite{Zhang2015CharacterlevelCN}. In this setup, a task model must classify whether a given news article is about world events (\textbf{\textit{World}}), sports and athletics (\textbf{\textit{Sports}}), business and economics (\textbf{\textit{Business}}), and scientific developments (\textbf{\textit{Sci/Tech}}). The test set on HuggingFace (\url{huggingface.co/datasets/ag_news}) is composed of 7,600 examples equally balanced across the four classes. News topic classification presents a promising opportunity for largely isolating the effect of writing style shifts. Existing deep learning methods also perform well on this dataset with accuracy reaching higher than 90\% (\url{paperswithcode.com/sota/text-classification-on-ag-news}). Another motivation for this particular task is the common risk of data augmentation inadvertently flipping the label/semantics of the text \cite{Bayer2021ASO}. Unlike other tasks such as sentiment classification or subtle hate speech, the topic of a news article is unlikely to change during augmentation, thus preserving the original label. \subsection{Creation} We used GPT-3.5 Turbo \cite{brown2020language} (6/7/23 version) for style transfer. We did an initial pass through all 7,600 examples using a conservative "V1" prompt and greedy decoding. Calls were made using the OpenAI Python SDK with top\_p and temperature set to zero. The data was then lightly preprocessed to reduce the number of examples that began with \textbf{BREAKING NEWS} flanked my emojis. 512 of the initial model responses did not result in satisfactory generations. These were typical cases where the generated text was almost indiscernible from the original text or the generation was entirely emojis. We called GPT-3.5 Turbo again with an updated prompt and hyperparameters (temperature=0.7, top\_p=0.9, frequency\_penalty=0.5, presence\_penalty=0.5) for these examples. Whereas all the first-pass generations did not have any instructions to the model as to the sentiment/mood of the hypothetical post author, we purposefully instructed the model to "\textit{Add some flare with humor, anger, or sarcasm.}" in the generation. It's important to note that we did not enforce Twitter's character limit. These sequences should be considered as more broadly inspired by social media posts rather than following the exact specifications of Twitter posts. We also did not manually review every sequence in the dataset to confirm that the original label was preserved. GPT 3.5 Turbo also hallucinates facts, such as adding the hashtag \#Olympics2021 even though the original dataset was created in 2015.
[ -0.42165055871009827, -0.8498826026916504, 0.3772298991680145, 0.1892070323228836, -0.5150445699691772, 0.1055900901556015, -0.18065384030342102, -0.309232234954834, 0.2677995264530182, 0.11600770801305771, -0.47376349568367004, -0.46477389335632324, -0.6454035043716431, 0.15751707553863525, -0.3935661315917969, 1.484607219696045, -0.1628837287425995, -0.3755382001399994, 0.05205122008919716, -0.03417673707008362, -0.07452194392681122, -0.5379672646522522, -0.801336407661438, -0.20875082910060883, 0.5053642392158508, 0.3897131383419037, 0.5525770783424377, 0.5657699108123779, 0.23144231736660004, 0.23674552142620087, -0.12171563506126404, 0.030360791832208633, -0.3256637156009674, -0.25999006628990173, -0.03595547750592232, -0.19300204515457153, -0.33097514510154724, 0.4808887839317322, 0.3899070918560028, 0.2470337450504303, 0.027271144092082977, 0.10754817724227905, 0.031586192548274994, 0.6762568950653076, -0.39279675483703613, 0.17747627198696136, -0.5662686228752136, -0.026340672746300697, -0.2130473405122757, -0.2782471477985382, -0.21741235256195068, -0.27938011288642883, -0.16557878255844116, -0.3552001118659973, 0.33941763639450073, -0.15060415863990784, 1.3833509683609009, 0.1045081615447998, -0.4421539604663849, -0.1457953155040741, -0.49253523349761963, 0.6697843074798584, -0.6604225039482117, 0.3718917667865753, 0.3312406837940216, -0.09834248572587967, 0.10117917507886887, -0.6245500445365906, -0.8014039993286133, 0.009770327247679234, 0.04808586463332176, 0.28105542063713074, -0.42521288990974426, -0.3134986460208893, 0.16491058468818665, 0.3384551703929901, -0.6678212881088257, -0.041209425777196884, -0.3655731976032257, -0.022010281682014465, 0.71556156873703, -0.0984676405787468, 0.314382404088974, -0.34083837270736694, -0.24205347895622253, -0.020003199577331543, -0.5532376766204834, 0.0007694085943512619, 0.32992154359817505, 0.31426870822906494, -0.2542800307273865, 0.4058617651462555, -0.4817434549331665, 0.34023603796958923, 0.3915364146232605, -0.21567946672439575, 0.6263025403022766, -0.5098599791526794, -0.1193753108382225, 0.06187913194298744, 0.8049530386924744, 0.599250316619873, 0.36932387948036194, -0.1259087771177292, 0.07602337002754211, 0.02870832197368145, 0.36833372712135315, -0.8630580902099609, -0.014972666278481483, 0.08840730041265488, -0.3628130257129669, -0.2673770785331726, 0.32108011841773987, -0.8012544512748718, -0.24789878726005554, -0.3817802369594574, 0.2087046504020691, -0.3872899115085602, -0.01612522266805172, 0.043565958738327026, -0.18329201638698578, 0.4420662820339203, 0.40420272946357727, -0.848007082939148, -0.18170486390590668, 0.8185691237449646, 0.8319618701934814, 0.009345512837171555, -0.23756837844848633, -0.1981526017189026, -0.10903572291135788, -0.2600264549255371, 0.7939044237136841, -0.5551726222038269, 0.06445790827274323, -0.21995589137077332, 0.15216007828712463, -0.15693630278110504, -0.08971025049686432, 0.5764546990394592, -0.4638347625732422, 0.34408771991729736, -0.3018445372581482, -0.28993016481399536, -0.07819127291440964, 0.125390887260437, -0.32810261845588684, 0.9361621141433716, 0.1977768838405609, -0.9887108206748962, 0.6982426643371582, -0.36388710141181946, -0.7007569074630737, -0.0021800424437969923, -0.04485888034105301, -0.5049665570259094, 0.07237136363983154, 0.4570578634738922, 0.39359134435653687, -0.20469239354133606, 0.3359780013561249, -0.11185802519321442, -0.25328150391578674, 0.09404144436120987, -0.277372807264328, 0.4724653661251068, 0.4911783039569855, -0.49047693610191345, -0.07835376262664795, -0.5617250800132751, -0.20950870215892792, 0.09430693089962006, -0.38587287068367004, -0.4989534914493561, -0.1324368268251419, -0.18347994983196259, 0.3176344931125641, 0.03739388659596443, -0.6151936054229736, 0.41348129510879517, -0.10833077132701874, 0.46067094802856445, 0.5853893160820007, 0.12353044748306274, 0.49342039227485657, -0.343189537525177, 0.5339937806129456, 0.03687380626797676, 0.1482975333929062, -0.009048380888998508, -0.6528083086013794, -0.8390401005744934, -0.04008703678846359, 0.38686370849609375, 0.7399752736091614, -1.0235346555709839, 0.4602454900741577, -0.3416266143321991, -0.5847476124763489, -0.4228970408439636, -0.06959427893161774, 0.09603319317102432, 0.5413090586662292, 0.4121553301811218, -0.08613965660333633, -0.5455060005187988, -0.8163813352584839, -0.3955956697463989, -0.12229485809803009, 0.11486183851957321, 0.03913368657231331, 0.4709184765815735, -0.22160857915878296, 0.8386982679367065, -0.3876575231552124, 0.10122449696063995, -0.48988479375839233, 0.6207720041275024, 0.292214035987854, 0.4819774627685547, 0.7147703170776367, -1.0425493717193604, -0.5407263040542603, 0.027868086472153664, -0.6704700589179993, -0.36478063464164734, -0.3132656216621399, -0.11979810893535614, 0.545924186706543, 0.39613401889801025, -0.5998551845550537, 0.6009464263916016, 0.36970189213752747, -0.3938722014427185, 0.3368818163871765, 0.31449371576309204, 0.3022373616695404, -1.264940619468689, -0.05072657763957977, 0.43689537048339844, 0.04894721135497093, -0.7308980822563171, -0.12221542000770569, -0.11546800285577774, -0.04421422630548477, -0.4612257182598114, 0.6772074699401855, -0.2512216866016388, 0.27988937497138977, -0.37210050225257874, -0.24867956340312958, 0.07343927025794983, 0.42758721113204956, -0.03704531490802765, 0.7936066389083862, 0.47529810667037964, -0.5861960053443909, 0.2267843782901764, 0.12171567976474762, -0.1729537546634674, 0.6252527832984924, -0.40832632780075073, 0.24583497643470764, -0.4447374939918518, 0.3943693935871124, -0.7830425500869751, -0.23792731761932373, 0.47367697954177856, -0.6655871868133545, 0.3530620336532593, -0.07017304748296738, -0.47603848576545715, -0.4585729241371155, -0.4461095333099365, 0.06274086982011795, 0.7063819169998169, -0.3700946867465973, 0.5447706580162048, 0.3045766353607178, -0.43447035551071167, -0.446395605802536, -0.7512304782867432, 0.2193492352962494, -0.45805132389068604, -0.5063987374305725, 0.2086445391178131, 0.01073191873729229, -0.10664001107215881, 0.08885210752487183, -0.24791404604911804, 0.08670537173748016, 0.015349130146205425, -0.031343378126621246, 0.06572771072387695, -0.14557553827762604, 0.11157021671533585, 0.14530029892921448, 0.05571838840842247, -0.14827729761600494, -0.17380006611347198, 0.6611997485160828, -0.21699807047843933, 0.1310598999261856, -0.5459499955177307, 0.46344026923179626, 0.4889490604400635, -0.13771750032901764, 0.9531437754631042, 0.9033691883087158, -0.21181358397006989, -0.04850134253501892, -0.5645169019699097, 0.067961685359478, -0.4533175230026245, 0.31827279925346375, -0.239577516913414, -0.9327250123023987, 0.4548364281654358, 0.24255825579166412, -0.09079696983098984, 0.779974639415741, 0.4392177164554596, 0.036450691521167755, 1.0566184520721436, 0.4748551547527313, -0.23781555891036987, 0.58309406042099, -0.11744954437017441, 0.2361593246459961, -0.6899775862693787, -0.26367995142936707, -0.5234574675559998, -0.3431096374988556, -0.7708271741867065, -0.15799452364444733, 0.18946433067321777, 0.010432755574584007, -0.3365669250488281, 0.3537433445453644, -0.48971694707870483, 0.3799087405204773, 0.703271746635437, 0.09482018649578094, 0.06025092303752899, 0.26119837164878845, 0.36441582441329956, 0.05332758277654648, -0.6584264636039734, -0.41770070791244507, 0.6057239770889282, 0.4344232976436615, 1.021135926246643, -0.12084856629371643, 0.8321298956871033, 0.2770555317401886, 0.5683278441429138, -0.7013274431228638, 0.5936568975448608, -0.587505042552948, -0.2603643536567688, -0.12388484179973602, -0.7524874210357666, -0.9888137578964233, -0.03099045343697071, -0.05058644711971283, -0.8133807182312012, 0.30067989230155945, -0.08154506236314774, -0.22608093917369843, 0.3057894706726074, -0.7556697726249695, 0.6912445425987244, -0.19220216572284698, -0.13686364889144897, 0.2847166359424591, -0.4894508421421051, 0.236120343208313, -0.15349505841732025, 0.3344888985157013, -0.1234513595700264, 0.10765374451875687, 0.8947760462760925, -0.32828444242477417, 0.9498082995414734, -0.012945774011313915, -0.12964968383312225, 0.4310090243816376, -0.25829535722732544, 0.359040230512619, 0.0746430978178978, -0.05292850360274315, 0.11270973831415176, -0.37797582149505615, -0.21463994681835175, -0.4823368787765503, 0.6082001328468323, -0.8046184182167053, -0.7476236820220947, -0.6770235896110535, -0.5279280543327332, -0.08965914696455002, 0.18237292766571045, 0.4825144112110138, 0.30977728962898254, 0.1675749272108078, 0.36204928159713745, 0.2424663007259369, -0.16640305519104004, 0.3912856876850128, 0.32166242599487305, -0.07027628272771835, -0.3591826558113098, 1.0545508861541748, 0.22091475129127502, -0.008696903474628925, 0.27719438076019287, 0.41435664892196655, -0.2832266092300415, -0.5457549691200256, -0.43060067296028137, 0.19754178822040558, -0.6561554670333862, -0.26918110251426697, -0.7452725172042847, -0.39697837829589844, -0.8309860825538635, -0.2354566901922226, -0.02588529884815216, -0.3714839518070221, -0.5610511302947998, -0.22536960244178772, 0.42184799909591675, 0.6070771217346191, -0.09766951948404312, 0.3262813091278076, -0.8678467869758606, 0.31955668330192566, 0.255972683429718, 0.2542915940284729, -0.2141503542661667, -0.6965618133544922, -0.23428621888160706, 0.12931503355503082, -0.43385615944862366, -0.9507572054862976, 0.47836440801620483, 0.3066604435443878, 0.5860565900802612, 0.28012222051620483, 0.14566388726234436, 0.36739006638526917, -0.30510827898979187, 0.8450957536697388, 0.006112799514085054, -0.9571189284324646, 0.6532987356185913, -0.536491870880127, 0.4865882992744446, 0.6541921496391296, 0.6820223331451416, -0.6424785852432251, -0.5438647270202637, -0.8183204531669617, -0.9663643836975098, 0.761807918548584, 0.23431481420993805, 0.294061541557312, -0.2779444456100464, 0.5926016569137573, 0.14117860794067383, 0.3665388524532318, -0.8519311547279358, -0.19433565437793732, -0.542121171951294, -0.19112978875637054, -0.12211305648088455, -0.11444386839866638, 0.05774187296628952, -0.4633398950099945, 0.767572820186615, -0.24404072761535645, 0.34408101439476013, 0.20809727907180786, 0.19921064376831055, 0.03550464287400246, 0.4585023820400238, 0.6194601655006409, 0.5280789136886597, -0.0850159227848053, 0.2691742181777954, -0.005389039404690266, -0.5690770745277405, 0.06951265782117844, 0.4086080491542816, -0.5342711210250854, -0.09363845735788345, 0.2882845103740692, 0.9722633361816406, -0.3048930764198303, -0.10587889701128006, 0.3289615213871002, -0.008384576998651028, -0.29917198419570923, 0.051313366740942, 0.0544145293533802, -0.2864988148212433, 0.15631023049354553, 0.6629385352134705, -0.04907422140240669, 0.13650275766849518, -0.9840567708015442, 0.38486337661743164, 0.25874048471450806, -0.17429110407829285, -0.5284208059310913, 0.4922736585140228, 0.13459549844264984, -0.05610385909676552, 0.49937525391578674, -0.6560048460960388, -0.9216679930686951, 0.6690382361412048, 0.5354959964752197, 1.0128252506256104, -0.17359822988510132, 0.6401488184928894, 0.4510017931461334, 0.4097015857696533, -0.13101501762866974, 0.5082043409347534, 0.24045200645923615, -0.768657922744751, -0.3799024224281311, -0.8061977028846741, -0.1527329385280609, 0.2973674237728119, -0.4438990354537964, 0.17580559849739075, -0.3743451237678528, -0.21308240294456482, 0.002842213958501816, -0.20380379259586334, -0.5008739233016968, 0.46658527851104736, 0.3600418269634247, 0.804364800453186, -1.1634751558303833, 0.5318408608436584, 0.924132764339447, -0.4835489094257355, -0.7461845278739929, 0.44154998660087585, -0.008382239378988743, -0.5773377418518066, 0.5016607642173767, 0.3031841218471527, 0.22365105152130127, -0.11136612296104431, -0.872515857219696, -0.785834014415741, 0.7592820525169373, 0.19827283918857574, -0.17279964685440063, -0.01034567505121231, 0.11943569779396057, 0.6350375413894653, -0.3332218527793884, -0.11249200999736786, 0.4691934287548065, 0.6450550556182861, 0.3740299642086029, -0.9253174662590027, 0.3591218590736389, -0.37015873193740845, -0.1929357498884201, 0.331277072429657, -0.9440808296203613, 1.1173412799835205, -0.07899771630764008, -0.3708466589450836, -0.16174554824829102, 0.7376947402954102, 0.04086311161518097, 0.5654454827308655, 0.3934233486652374, 0.7589151859283447, 0.47594019770622253, -0.4300372898578644, 1.364586353302002, 0.009695565328001976, 0.5088324546813965, 0.6991540789604187, -0.07288794964551926, 0.4493515193462372, 0.32740649580955505, -0.09291736036539078, 0.4859647750854492, 0.7583692073822021, -0.23331350088119507, 0.7563115358352661, 0.028972936794161797, -0.047725167125463486, -0.12886926531791687, -0.3385568857192993, -0.5564559102058411, 0.5667449831962585, 0.188072070479393, -0.22030630707740784, -0.3297973573207855, 0.07533888518810272, 0.5551168918609619, -0.29124873876571655, -0.36845865845680237, 0.740333080291748, 0.026488618925213814, -0.8998926877975464, 0.37754470109939575, -0.01505181286484003, 0.7885773777961731, -0.5028760433197021, 0.06677834689617157, -0.4260537624359131, 0.021320093423128128, -0.2729197144508362, -0.884498119354248, 0.47810983657836914, 0.07643836736679077, -0.05083350092172623, -0.29523965716362, 0.7595863342285156, -0.38643965125083923, -0.677009105682373, -0.16521242260932922, 0.403923898935318, 0.06253141164779663, -0.09910176694393158, -0.6810153722763062, 0.15846960246562958, 0.06121837720274925, -0.4888930916786194, 0.3555203676223755, 0.6856998205184937, -0.005645709112286568, 0.26008689403533936, 0.5582216382026672, -0.08601007610559464, -0.11130445450544357, 0.13768836855888367, 1.056046485900879, -0.595903217792511, -0.6568853855133057, -0.8072001338005066, 0.3278045356273651, -0.09206177294254303, -0.4948899745941162, 0.9615464210510254, 0.48461052775382996, 0.7164868712425232, 0.007062844466418028, 0.91694176197052, -0.4684661626815796, 0.23305439949035645, -0.7304593920707703, 0.5822638869285583, -0.845221996307373, -0.04188953712582588, -0.540690004825592, -0.7942389845848083, -0.27204835414886475, 0.4687277376651764, -0.4629553556442261, 0.49448809027671814, 0.7100192308425903, 0.35919806361198425, 0.08159995079040527, 0.17621225118637085, -0.17211993038654327, 0.15834766626358032, 0.23829597234725952, 0.3636477291584015, 0.8145527839660645, -0.2379731684923172, 0.4234623312950134, -0.40954580903053284, -0.4151355028152466, -0.124387726187706, -1.0092508792877197, -0.835076630115509, -0.5778087377548218, -0.589926540851593, -0.47718727588653564, 0.19847643375396729, 0.6986180543899536, 0.6381051540374756, -0.7700281143188477, 0.33011066913604736, -0.06358637660741806, -0.08994018286466599, -0.2034960389137268, -0.321356862783432, 0.41762101650238037, -0.24332506954669952, -0.7047029137611389, 0.18370512127876282, 0.012384245172142982, 0.16816802322864532, 0.19379130005836487, 0.22790499031543732, -0.3602621555328369, 0.047517016530036926, 0.5791362524032593, 0.4383094906806946, -0.471121221780777, -0.6361358165740967, 0.047200366854667664, -0.04597361385822296, 0.1010802686214447, 0.6670289039611816, -0.5928443670272827, -0.021861547604203224, 0.6507675051689148, 0.7011871337890625, 0.4385983645915985, 0.48863348364830017, 0.23003578186035156, -0.9157238602638245, 0.008264866657555103, 0.0740978866815567, 0.29434406757354736, 0.4068981409072876, -0.5930714011192322, 0.5551874041557312, 0.5403634309768677, -0.6061791181564331, -0.47857871651649475, 0.0755031481385231, -1.1229188442230225, -0.26801398396492004, 1.4826151132583618, 0.18413786590099335, -0.22350072860717773, -0.10198958218097687, -0.20494025945663452, 0.3194202184677124, -0.7266510128974915, 0.8036340475082397, 0.7876891493797302, -0.35122257471084595, -0.4049493372440338, -0.3661375045776367, 0.420514315366745, 0.18666024506092072, -0.9641158580780029, -0.1502773016691208, 0.35044151544570923, 0.1959751397371292, 0.3228401839733124, 0.659896969795227, 0.1287994384765625, 0.22555406391620636, -0.12063778191804886, 0.031371332705020905, -0.07576621323823929, -0.4124079942703247, -0.19402365386486053, 0.13400907814502716, -0.43570035696029663, -0.16701076924800873 ]
null
null
null
null
null
null
null
null
null
null
null
null
null
iamshnoo/geomlama
iamshnoo
2023-11-22T10:53:13Z
472
0
null
[ "region:us" ]
2023-11-22T10:53:13Z
2023-08-02T01:18:19.000Z
2023-08-02T01:18:19
--- dataset_info: features: - name: question dtype: string - name: answer dtype: string - name: candidate_answers dtype: string - name: context dtype: string - name: country dtype: string splits: - name: en num_bytes: 20705 num_examples: 150 - name: fa num_bytes: 29418 num_examples: 150 - name: hi num_bytes: 41903 num_examples: 150 - name: sw num_bytes: 21231 num_examples: 150 - name: zh num_bytes: 19155 num_examples: 150 - name: el num_bytes: 38057 num_examples: 150 download_size: 45566 dataset_size: 170469 --- data from the paper GeoMLAMA: Geo-Diverse Commonsense Probing on Multilingual Pre-Trained Language Models (along with some new data and modifications for cleaning) [GitHub](https://github.com/WadeYin9712/GeoMLAMA) # Dataset Card for "geomlama" [More Information needed](https://github.com/huggingface/datasets/blob/main/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
[ -0.5986782312393188, -0.739802360534668, 0.4362555146217346, -0.20674823224544525, -0.13931672275066376, -0.1790311336517334, -0.44695422053337097, -0.4524633586406708, 0.3041228652000427, 0.6508136987686157, -0.35054805874824524, -1.1067770719528198, -0.7941014766693115, 0.03378268703818321, -0.3545003831386566, 1.4197478294372559, -0.02716009132564068, 0.06575348228216171, -0.1780402809381485, -0.5288743376731873, -0.040254414081573486, -0.545001208782196, -0.14546139538288116, -0.14211684465408325, 0.49237850308418274, 0.7506912350654602, 0.8445680141448975, 0.30125874280929565, 0.31556376814842224, 0.30427902936935425, -0.14419656991958618, -0.10008715093135834, -0.5151533484458923, -0.4487920105457306, -0.38836219906806946, -0.3166194260120392, -0.5930467247962952, 0.4894362688064575, 0.8485867977142334, 0.7224116921424866, -0.33573397994041443, 0.7254582047462463, 0.07327210158109665, 0.2037050575017929, -0.6549848914146423, 0.1436793953180313, -0.5241839289665222, -0.2620745599269867, -0.47384876012802124, -0.028327753767371178, -0.11788107454776764, -0.4686999022960663, 0.18804307281970978, -1.043284296989441, 0.40198421478271484, -0.05419754981994629, 1.1292117834091187, 0.17723745107650757, -0.4536219835281372, -0.31658872961997986, -0.35545629262924194, 0.6814005374908447, -0.4974956512451172, 0.17553608119487762, 0.7381994724273682, 0.4711168110370636, 0.041860565543174744, -0.7602769732475281, -0.5700257420539856, -0.04728030413389206, -0.45418474078178406, -0.03273598477244377, -0.03144988790154457, -0.3963855504989624, 0.3766418695449829, 0.5233634114265442, -0.5798302888870239, -0.11497863382101059, -0.7401266694068909, -0.11771737784147263, 0.8535230159759521, 0.052451618015766144, 0.3366682827472687, -0.27415719628334045, -0.2580547034740448, -0.20121780037879944, -0.7960718274116516, -0.11159171164035797, 0.7108598351478577, 0.39444828033447266, -0.9435980916023254, 0.4564010500907898, -0.2874995470046997, 0.7423579096794128, -0.5661522150039673, 0.043513257056474686, 0.7825511693954468, -0.48056671023368835, -0.09177818149328232, -0.15493564307689667, 0.6940003037452698, 0.32322511076927185, 0.32375651597976685, 0.16523465514183044, -0.040055450052022934, -0.2765256464481354, -0.21254101395606995, -0.5791593194007874, -0.7833121418952942, 0.149289071559906, -0.5745769739151001, 0.11015277355909348, 0.307768851518631, -1.1320925951004028, -0.39136219024658203, -0.4658392071723938, -0.007991451770067215, -0.013358130119740963, -0.7848867177963257, 0.15840864181518555, -0.09085443615913391, 0.14137955009937286, 0.16142092645168304, -0.7992038726806641, -0.06281247735023499, 0.6234598159790039, 0.6853131651878357, 0.2434242069721222, -0.8054664731025696, -0.31378090381622314, 0.03653080388903618, 0.01789182983338833, 0.7329149842262268, -0.5668275356292725, -0.4927467703819275, -0.12736937403678894, 0.17842088639736176, 0.13578453660011292, -0.6443440914154053, 0.7488441467285156, -0.3062349259853363, 0.4178125262260437, -0.5359541773796082, 0.03793111816048622, -0.26293209195137024, 0.5082128047943115, -1.080778956413269, 1.2401294708251953, 0.03383220359683037, -0.7770782709121704, 0.48297110199928284, -1.023140788078308, -0.24393533170223236, 0.11409861594438553, 0.16833044588565826, -0.26907283067703247, -0.025945348665118217, 0.39762040972709656, 0.36326244473457336, -0.04403048753738403, 0.5822644829750061, -0.5622421503067017, -0.2551781237125397, 0.2043115347623825, -0.15334153175354004, 1.0765454769134521, 0.48693493008613586, 0.11919473111629486, 0.14935429394245148, -0.9897550940513611, -0.01368469838052988, 0.4076436161994934, -0.3391974866390228, -0.32825881242752075, -0.05641867220401764, 0.3943824768066406, 0.04259311407804489, 0.49768489599227905, -0.42528006434440613, 0.18125294148921967, 0.26310884952545166, 0.05093121901154518, 0.5718534588813782, -0.3682374954223633, 0.34213578701019287, -0.3467862010002136, 0.3894745111465454, 0.04649193957448006, 0.47474440932273865, -0.13626112043857574, -0.6142375469207764, -0.4985506236553192, -0.3909952938556671, 0.125173419713974, 0.5420480370521545, -0.5010946989059448, 0.11579705774784088, -0.5214996337890625, -0.8825819492340088, -0.7226338982582092, 0.23342587053775787, 0.14888186752796173, 0.3268269896507263, 0.6124945878982544, -0.1541612595319748, -0.48341694474220276, -0.6200571656227112, -0.3710263669490814, -0.05072974041104317, 0.06432969123125076, 0.626990020275116, 0.7551925778388977, -0.4399394989013672, 0.8816885352134705, -0.7977858781814575, 0.06612314283847809, -0.019982675090432167, 0.284134179353714, 0.4151381552219391, 0.4747384786605835, 0.8094218373298645, -0.9203752875328064, -0.5244142413139343, -0.0063132005743682384, -0.64069664478302, -0.18491704761981964, 0.35992419719696045, -0.2926841676235199, 0.057938482612371445, 0.20958848297595978, -0.5281003713607788, 0.39832860231399536, 0.9378446936607361, -0.48156315088272095, 0.5446500182151794, 0.08528957515954971, 0.341033935546875, -1.2105196714401245, 0.4836476445198059, -0.16489696502685547, -0.08438099175691605, -0.4585297703742981, 0.2804371416568756, -0.06851978600025177, -0.26398319005966187, -0.4834730923175812, 0.758614718914032, -0.6869768500328064, -0.10091850161552429, -0.1379268616437912, 0.1776442676782608, -0.09469373524188995, 0.2735677659511566, 0.1107841432094574, 0.7963164448738098, 0.9423062801361084, -0.29688844084739685, 0.3782649338245392, 0.2667413651943207, -0.3777073621749878, 0.3987480103969574, -0.7046858072280884, 0.07764848321676254, -0.24581757187843323, 0.12808260321617126, -0.9201269149780273, -0.41969114542007446, 0.4893334209918976, -0.40995609760284424, -0.024056900292634964, -0.5732649564743042, -0.6083287596702576, -0.11080745607614517, -0.29094257950782776, 0.7147300243377686, 0.3022701144218445, -0.9260959625244141, 0.408560186624527, 0.8022297024726868, -0.2808845639228821, -0.7241740822792053, -0.6062512993812561, 0.16441671550273895, -0.39435574412345886, -0.14366427063941956, -0.034579649567604065, -0.03329533338546753, -0.20906658470630646, 0.24756838381290436, 0.5962179899215698, -0.21872970461845398, 0.1932601034641266, 0.30616089701652527, 0.21729274094104767, -0.2689574360847473, 0.1732529252767563, -0.24329958856105804, -0.06614655256271362, 0.3027894198894501, 0.07740987837314606, 0.6479647159576416, -0.25887414813041687, -0.3225683867931366, -0.34862232208251953, 0.3522883653640747, 0.20283524692058563, -0.525903046131134, 0.5984106659889221, 0.9823880791664124, -0.40041303634643555, 0.08972468227148056, -0.3632749915122986, 0.027659567072987556, -0.47439488768577576, 0.1842951476573944, -0.2357931137084961, -0.9297439455986023, 0.6655703186988831, -0.2161351889371872, -0.06004137173295021, 0.5813930630683899, 0.3971121907234192, 0.1586793214082718, 0.4679659307003021, 0.5388222336769104, -0.4651794731616974, 0.22221055626869202, -0.23773613572120667, 0.1570773422718048, -0.4166393280029297, -0.32063671946525574, -0.8660896420478821, -0.3472929298877716, -1.0589687824249268, -0.29724541306495667, 0.029782656580209732, 0.19613322615623474, -0.1835702806711197, 0.12844090163707733, -0.31640344858169556, 0.7409917712211609, 0.6666629910469055, -0.23353071510791779, 0.29709547758102417, 0.06056156009435654, 0.14632700383663177, 0.07673654705286026, -0.5554000735282898, -0.6847842931747437, 1.4091031551361084, 0.2529134154319763, 0.799644410610199, 0.38648107647895813, 0.6198840737342834, -0.050136517733335495, 0.7566660642623901, -0.14652249217033386, 0.4399026334285736, 0.12828125059604645, -0.9722139835357666, -0.15873460471630096, -0.5207403898239136, -1.0196419954299927, -0.009978742338716984, -0.320329487323761, -0.5439179539680481, -0.20782046020030975, 0.13394619524478912, 0.07599732279777527, 0.4896930158138275, -0.8683225512504578, 0.8928978443145752, -0.13272351026535034, -0.17191191017627716, -0.15448907017707825, -0.6516351103782654, 0.40604668855667114, 0.17914488911628723, 0.28003808856010437, -0.2873888611793518, 0.035683583468198776, 0.6679808497428894, -0.09926986694335938, 0.9544969201087952, -0.4607830047607422, -0.2929078936576843, 0.42669323086738586, -0.43216678500175476, 0.1822637915611267, 0.5507403016090393, 0.1039232462644577, 0.671825647354126, -0.07641550153493881, -0.737247884273529, -0.23221583664417267, 0.8066734075546265, -0.8812687397003174, -0.3056158721446991, -0.4608098864555359, -0.6922038793563843, 0.04259222373366356, 0.4360305666923523, 0.1955971121788025, 0.4879206418991089, -0.3929336667060852, -0.1786436140537262, 0.413450688123703, -0.3930034935474396, 0.3062010407447815, 0.4780140817165375, -0.3798294961452484, -0.4468349516391754, 0.669465959072113, -0.060739271342754364, -0.149360790848732, 0.23163540661334991, -0.0016972845187410712, -0.39985892176628113, -0.4725817143917084, -0.3885948359966278, 0.45971623063087463, -0.8301181197166443, -0.0916154682636261, -0.5020783543586731, 0.02860712818801403, -0.4808584451675415, -0.0639486014842987, -0.20751717686653137, -0.30122673511505127, -0.33919936418533325, -0.38467052578926086, 0.5562177896499634, 0.8773906826972961, -0.32424989342689514, 0.47853419184684753, -1.0357991456985474, 0.1993221789598465, 0.11080260574817657, 0.49346911907196045, -0.29744580388069153, -0.05926176533102989, -0.37242600321769714, 0.09422467648983002, 0.08713207393884659, -0.709294855594635, 0.2413490265607834, 0.028166282922029495, 0.7049010992050171, 0.26153701543807983, -0.2884669601917267, 0.5041377544403076, -0.19736112654209137, 1.0158238410949707, -0.13138875365257263, -0.799453854560852, 0.6809269785881042, -0.5314404964447021, 0.5695106387138367, 0.6902790665626526, 0.7679243683815002, -0.4947587251663208, 0.03001573495566845, -0.5616739988327026, -0.7094468474388123, 0.4221309423446655, -0.4398602545261383, 0.3851863741874695, 0.12640315294265747, 0.13650523126125336, 0.3641815781593323, 0.09528603404760361, -0.8426223993301392, -0.4871697723865509, -0.2922067642211914, -0.3602141737937927, -0.39359647035598755, -0.5258541703224182, -0.6020349860191345, -0.273366242647171, 0.5089805722236633, -0.10544510185718536, -0.08534951508045197, -0.0885280892252922, -0.39184677600860596, 0.2965889275074005, 0.4019428789615631, 0.8582298159599304, 1.0300036668777466, -0.09862099587917328, 0.27973824739456177, 0.31748801469802856, -0.9236001372337341, -0.11339877545833588, 0.4341839551925659, -0.049724411219358444, 0.032897964119911194, 0.445521742105484, 0.6179068088531494, -0.003024565288797021, -0.7567209005355835, 0.4104721248149872, -0.09860134869813919, -0.09488239139318466, -0.17104488611221313, -0.057446591556072235, 0.11352173238992691, 0.11036814004182816, 0.20571930706501007, -0.27345192432403564, 0.2825847566127777, -0.15960533916950226, 0.18738825619220734, 0.07405027002096176, 0.0674780085682869, -0.6248347163200378, 0.38209500908851624, 0.29931798577308655, 0.12880991399288177, 0.7953290343284607, -0.4675251543521881, -0.4799097180366516, 0.15435263514518738, 0.3860107958316803, 0.36545994877815247, -0.25669682025909424, 0.5019562244415283, 0.793467104434967, 0.4537401795387268, 0.4046728312969208, 0.7614734172821045, -0.26449981331825256, -0.7028264403343201, -0.2559531331062317, -0.21367500722408295, -0.25878462195396423, 0.11555279046297073, -0.8062403202056885, 0.282015860080719, -0.44862911105155945, -0.06126565486192703, -0.5261819958686829, 0.2988949418067932, -0.815338671207428, 0.2712734639644623, 0.17498089373111725, 0.980147659778595, -1.0344516038894653, 0.79459547996521, 1.0059752464294434, 0.00830631610006094, -0.6712936758995056, -0.24940225481987, 0.06781066954135895, -0.8296255469322205, 0.22839228808879852, 0.12968863546848297, -0.0045433915220201015, -0.229620561003685, -0.923754870891571, -1.0313785076141357, 1.194977879524231, 0.38331401348114014, -0.3010188341140747, 0.459184855222702, 0.5097980499267578, 0.2773365080356598, 0.06004118546843529, 0.17416125535964966, 0.48509499430656433, 0.690018892288208, -0.33010831475257874, -0.9019351601600647, -0.07612579315900803, -0.7295886874198914, -0.5152212977409363, 0.29688695073127747, -0.577225923538208, 0.9530693292617798, -0.24364407360553741, -0.34231916069984436, -0.011453160084784031, 0.6727179288864136, 0.5912015438079834, 0.5649746656417847, 0.25576043128967285, 1.260661005973816, 1.110541820526123, -0.3083515763282776, 0.9447715878486633, -0.09808892756700516, 0.6969964504241943, 1.4476832151412964, -0.28741276264190674, 0.668495774269104, 0.47266045212745667, -0.012300056405365467, 0.5022270083427429, 0.6076999306678772, -0.17826169729232788, 0.5917362570762634, 0.1185026466846466, -0.1653035432100296, 0.21131911873817444, -0.4070238173007965, -0.7625406980514526, 0.7317221164703369, 0.2868993878364563, -0.13332904875278473, -0.5589408874511719, -0.21764497458934784, 0.4830435812473297, -0.003562109312042594, -0.38473644852638245, 0.4583730697631836, -0.2810458838939667, -0.41393405199050903, 0.46531742811203003, 0.016222022473812103, 0.7121040225028992, -0.5336163640022278, -0.1394539326429367, -0.21109381318092346, -0.08616030216217041, -0.2890411913394928, -1.0635371208190918, 0.4112641215324402, 0.15820834040641785, -0.03473874554038048, -0.10332830995321274, 0.7513633966445923, -0.6335323452949524, -0.39823463559150696, 0.256906658411026, 0.5586978793144226, 0.29669493436813354, 0.35112321376800537, -0.8458335995674133, 0.025683995336294174, -0.3315570652484894, -0.20778824388980865, 0.03962160646915436, 0.4465090036392212, 0.0675606057047844, 0.4982975721359253, 0.845483660697937, 0.11096262186765671, 0.2810322642326355, 0.1491917222738266, 0.8533996343612671, -0.6645411849021912, -0.5439759492874146, -0.6481289267539978, 0.693800151348114, -0.3501432538032532, -0.9825680255889893, 0.9188417792320251, 0.9162843823432922, 1.4517326354980469, -0.1381642073392868, 0.8119380474090576, 0.004752929788082838, 0.48180216550827026, -0.7089214324951172, 1.08091402053833, -0.5823303461074829, -0.3587125539779663, -0.10800226777791977, -0.7531243562698364, -0.4925505816936493, 0.2763894498348236, -0.21512015163898468, 0.11752244830131531, 0.525989294052124, 1.0869107246398926, -0.3675293028354645, 0.1102805808186531, -0.0399799607694149, -0.006287515163421631, 0.2478935569524765, 0.49948546290397644, 0.8696309924125671, -0.2207426279783249, 0.09286767989397049, -0.06190812587738037, -0.18900150060653687, 0.0940995141863823, -1.0050580501556396, -0.8915008902549744, -0.733622133731842, -0.13007695972919464, 0.0034285862930119038, -0.2870195508003235, 0.6038271188735962, 0.7407978177070618, -0.9986202120780945, -0.2350786030292511, 0.38281527161598206, 0.229119673371315, 0.276499480009079, -0.17444616556167603, 0.38814258575439453, 0.09627286344766617, -0.8646388649940491, 0.08344267308712006, -0.08690629154443741, 0.19403009116649628, -0.0032606085296720266, -0.21505655348300934, -0.42713138461112976, -0.41510042548179626, 0.2729520797729492, 0.3069693148136139, -0.3208812177181244, -0.15282821655273438, -0.271663099527359, -0.1473112404346466, -0.10937264561653137, 0.7135980129241943, -0.40687885880470276, 0.06518106907606125, 0.542324423789978, 0.6085243225097656, 0.2653113901615143, 0.03377731516957283, 0.20843927562236786, -0.7746875882148743, 0.6224226355552673, -0.12704597413539886, 0.5364919304847717, 0.516341507434845, -0.2865029275417328, 0.6447555422782898, 0.21822534501552582, -0.47946789860725403, -0.7811470031738281, 0.08331272751092911, -0.9027062058448792, -0.11342151463031769, 1.1349154710769653, -0.2690945267677307, -0.2889719009399414, 0.07226001471281052, -0.1080072894692421, 0.18413451313972473, -0.1702827513217926, 0.4544089138507843, 0.8570421934127808, 0.5947625041007996, -0.26921170949935913, -0.6114556789398193, 0.4582618474960327, 0.2115992158651352, -1.3937656879425049, -0.04478347301483154, 0.6633107662200928, 0.4834691882133484, 0.12672090530395508, 0.73685622215271, -0.25143393874168396, 0.1755194067955017, -0.12421442568302155, 0.23924818634986877, -0.22302743792533875, -0.6639530062675476, -0.4126013517379761, 0.17923349142074585, -0.12454482167959213, -0.22824428975582123 ]
null
null
null
null
null
null
null
null
null
null
null
null
null
SocialGrep/reddit-nonewnormal-complete
SocialGrep
2022-07-01T19:02:06Z
471
1
null
[ "annotations_creators:lexyr", "language_creators:crowdsourced", "multilinguality:monolingual", "size_categories:1M<n<10M", "source_datasets:original", "language:en", "license:cc-by-4.0", "region:us" ]
2022-07-01T19:02:06Z
2022-03-02T23:29:22.000Z
2022-03-02T23:29:22
--- annotations_creators: - lexyr language_creators: - crowdsourced language: - en license: - cc-by-4.0 multilinguality: - monolingual size_categories: - 1M<n<10M source_datasets: - original paperswithcode_id: null --- # Dataset Card for reddit-nonewnormal-complete ## 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://socialgrep.com/datasets](https://socialgrep.com/datasets?utm_source=huggingface&utm_medium=link&utm_campaign=dataset&utm_term=nonewnormal) - **Point of Contact:** [Website](https://socialgrep.com/contact?utm_source=huggingface&utm_medium=link&utm_campaign=dataset&utm_term=nonewnormal) ### Dataset Summary This corpus contains the complete data for the activity on subreddit /r/NoNewNormal for the entire duration of its existence. ### Languages Mainly English. ## Dataset Structure ### Data Instances A data point is a post or a comment. Due to the separate nature of the two, those exist in two different files - even though many fields are shared. ### Data Fields - 'type': the type of the data point. Can be 'post' or 'comment'. - 'id': the base-36 Reddit ID of the data point. Unique when combined with type. - 'subreddit.id': the base-36 Reddit ID of the data point's host subreddit. Unique. - 'subreddit.name': the human-readable name of the data point's host subreddit. - 'subreddit.nsfw': a boolean marking the data point's host subreddit as NSFW or not. - 'created_utc': a UTC timestamp for the data point. - 'permalink': a reference link to the data point on Reddit. - 'domain': (Post only) the domain of the data point's link. - 'url': (Post only) the destination of the data point's link, if any. - 'selftext': (Post only) the self-text of the data point, if any. - 'title': (Post only) the title of the post data point. - 'body': (Comment only) the body of the comment data point. - 'sentiment': (Comment only) the result of an in-house sentiment analysis pipeline. Used for exploratory analysis. ## 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 CC-BY v4.0 ### Contributions [Needs More Information]
[ -0.5950338840484619, -0.7958219051361084, 0.3033091425895691, 0.4276687502861023, -0.4249167740345001, 0.07801056653261185, -0.3339063227176666, -0.3383167088031769, 0.8613178133964539, 0.45786795020103455, -1.0125633478164673, -1.1180896759033203, -0.698117733001709, 0.33811211585998535, -0.21593692898750305, 1.274524211883545, 0.05707560479640961, -0.43337514996528625, -0.4429404139518738, -0.23985157907009125, -0.32628417015075684, -0.6106176376342773, -0.3295455276966095, -0.16948142647743225, 0.6834489107131958, 0.7008643746376038, 0.4762173593044281, 0.7532704472541809, 0.7489084005355835, 0.2322920858860016, 0.14900192618370056, 0.020905153825879097, -0.6374565362930298, -0.2338569313287735, -0.34775084257125854, -0.19370217621326447, -0.749815046787262, 0.09779707342386246, 0.44582971930503845, 0.6126994490623474, -0.019058696925640106, 0.7406834363937378, -0.052798327058553696, 0.5700898170471191, -0.5716663002967834, 0.6381965279579163, -0.5017356276512146, -0.06276459991931915, -0.2702259421348572, -0.28462061285972595, -0.057183872908353806, -0.7180556058883667, -0.411557674407959, -0.6287320256233215, 0.1565987914800644, -0.06261314451694489, 0.6488097906112671, 0.06315729767084122, -0.15015366673469543, -0.056546907871961594, -0.4760511517524719, 0.8047652244567871, -0.6908860206604004, 0.09237635880708694, 0.6186183094978333, 0.19248293340206146, 0.06594200432300568, -0.8385946154594421, -0.5465326309204102, 0.39731791615486145, -0.39135366678237915, 0.1477324515581131, -0.28105077147483826, -0.42757847905158997, 0.4725677967071533, 0.4200475215911865, -0.4952700436115265, -0.5606985092163086, -0.7193282246589661, 0.049974821507930756, 1.0040996074676514, 0.21995887160301208, 0.2566089332103729, -0.5157062411308289, -0.037683624774217606, -0.06433004885911942, -0.3499075174331665, -0.07357072085142136, 0.3554081916809082, 0.6436526775360107, -0.7918931245803833, 0.8657892346382141, -0.19211021065711975, 0.5829945206642151, -0.026159387081861496, -0.015329652465879917, 0.6398575901985168, -0.7588749527931213, 0.06291744858026505, -0.35029521584510803, 1.0188664197921753, 0.9100190997123718, 0.2514703571796417, 0.1628420352935791, 0.11811267584562302, 0.057552359998226166, 0.06662072241306305, -0.5718462467193604, -0.38980913162231445, 0.43216025829315186, -0.7491918206214905, -0.49934548139572144, 0.3287528455257416, -1.0649033784866333, -0.32095617055892944, -0.18737883865833282, -0.0820726528763771, 0.04054927080869675, -0.546515703201294, -0.0374811626970768, -0.24759046733379364, 0.18938849866390228, 0.004721732810139656, -0.7141114473342896, 0.536547064781189, 0.600224494934082, 0.6782873272895813, -0.20348575711250305, -0.23774094879627228, 0.09827234596014023, 0.061300214380025864, 0.07840440422296524, 0.797532320022583, -0.5974628329277039, -0.389800488948822, 0.1918010711669922, 0.5863246321678162, -0.04816189408302307, -0.26835212111473083, 0.823786735534668, -0.26577723026275635, 0.13743795454502106, -0.5923796892166138, -0.5145440697669983, -0.16260848939418793, 0.3020443916320801, -0.7850151658058167, 1.094223976135254, 0.1471368372440338, -1.1111936569213867, 0.2687866985797882, -1.0672715902328491, -0.5407161116600037, 0.026172000914812088, -0.09680549055337906, -0.279682457447052, -0.13385501503944397, -0.05080006644129753, 0.5768634676933289, -0.21686899662017822, -0.1889611780643463, -0.4285412132740021, -0.18177543580532074, 0.15100491046905518, -0.003987662494182587, 0.9793367385864258, -0.03170333430171013, -0.03138377144932747, 0.08486498147249222, -0.9443728923797607, 0.03202728182077408, 0.44629916548728943, -0.2573877274990082, -0.19465987384319305, -0.03410261496901512, 0.24347540736198425, 0.16588744521141052, 0.5830841064453125, -0.6044332385063171, 0.14978231489658356, 0.014120654202997684, 0.6454275250434875, 0.5005505084991455, 0.4919454753398895, 0.34048089385032654, -0.4399647116661072, 0.45541003346443176, 0.053141217678785324, 0.5711660385131836, 0.3022652268409729, -0.7394088506698608, -0.6796090602874756, 0.0021558725275099277, 0.15933820605278015, 0.7315418124198914, -0.4000706672668457, 0.7806853652000427, -0.41097211837768555, -0.6798896193504333, -0.4234832227230072, 0.17722396552562714, 0.10939732939004898, 0.4676647484302521, 0.5210524201393127, -0.34491774439811707, -0.9777339100837708, -0.7539013028144836, 0.030249256640672684, -0.13198696076869965, 0.22673316299915314, 0.7403760552406311, 0.936677098274231, -0.40234991908073425, 0.724358320236206, -0.8258481621742249, -0.22309993207454681, -0.3967825770378113, 0.2107516974210739, 0.49891340732574463, 0.3440830707550049, 0.3934110403060913, -0.9125107526779175, -0.6918398141860962, -0.15918010473251343, -0.8430627584457397, -0.24370072782039642, 0.06834523379802704, -0.27685150504112244, 0.07339320331811905, 0.2632276713848114, -0.612693727016449, 0.571936845779419, 0.5634127259254456, -0.3389376699924469, 0.3463287055492401, 0.044080886989831924, 0.3334347605705261, -1.0395253896713257, 0.16513746976852417, 0.14455372095108032, 0.04304145276546478, -0.3362400233745575, -0.3621242940425873, 0.02717544510960579, 0.14352665841579437, -0.438427209854126, 0.6559328436851501, -0.273118257522583, 0.15635895729064941, 0.1052481010556221, 0.2638947367668152, -0.040694791823625565, 0.5676507949829102, -0.040106188505887985, 0.48866546154022217, 0.4942626357078552, -0.517314076423645, 0.5626806616783142, 0.3177514374256134, -0.07908277213573456, 0.5407040119171143, -0.9252017736434937, 0.10308729112148285, -0.2880387604236603, 0.11042531579732895, -0.948326587677002, -0.5933634042739868, 0.5534224510192871, -0.7986318469047546, -0.08470650017261505, -0.10433658957481384, -0.5337339639663696, -0.44238317012786865, -0.6445972323417664, 0.41057732701301575, 0.4245845377445221, -0.048541489988565445, 0.36425545811653137, 0.8226981163024902, -0.051705073565244675, -0.5267611742019653, -0.6985172629356384, 0.015578086487948895, -0.11177997291088104, -0.6073898077011108, 0.3676030933856964, -0.21829265356063843, -0.24702057242393494, 0.36309871077537537, 0.3544791042804718, -0.14084845781326294, -0.2164127677679062, 0.41593292355537415, 0.03507004678249359, 0.15652649104595184, -0.05137737840414047, -0.3526139557361603, -0.09867694228887558, 0.11864808946847916, 0.17385709285736084, 0.5544467568397522, 0.07348868250846863, -0.329973965883255, -0.5051665902137756, 0.4910106658935547, 0.38665691018104553, -0.14320138096809387, 0.614128053188324, 0.6243475675582886, -0.4431648254394531, -0.1015661209821701, -0.3958527147769928, -0.26642367243766785, -0.39423704147338867, 0.12676113843917847, 0.0695192962884903, -0.5665789246559143, 0.8020230531692505, 0.3012257516384125, 0.44264331459999084, 0.7062940001487732, 0.4642926752567291, -0.11131995171308517, 0.8711902499198914, 0.6863763332366943, -0.14962081611156464, 0.5394593477249146, -0.3742239475250244, 0.23327219486236572, -0.5904818773269653, -0.29133594036102295, -0.4751925468444824, -0.5100639462471008, -0.8219558000564575, -0.46976369619369507, -0.1498907506465912, -0.17084884643554688, -0.2001129686832428, 0.619275689125061, -0.6237581968307495, 0.5373048186302185, 0.6939498782157898, 0.10454580932855606, 0.1565765142440796, 0.004254122730344534, 0.3176579177379608, -0.2510157823562622, -0.596382737159729, -0.536496639251709, 1.237663745880127, 0.3168979287147522, 0.8351010680198669, 0.034565337002277374, 0.7667667865753174, 0.49477842450141907, 0.21607042849063873, -0.4757615625858307, 0.7026079893112183, -0.3185576796531677, -0.6300654411315918, -0.09855611622333527, -0.2840212881565094, -0.7367035746574402, -0.3891931474208832, -0.4282558262348175, -0.4321945309638977, 0.345775306224823, 0.06620689481496811, -0.1554693728685379, 0.34003013372421265, -0.6112521290779114, 0.9521191120147705, -0.04108486697077751, -0.3536745011806488, 0.09084871411323547, -0.9699829816818237, 0.14333482086658478, 0.2838546931743622, 0.4113325774669647, -0.15044984221458435, 0.015475964173674583, 0.9163540601730347, -0.2839111387729645, 1.2599705457687378, -0.17509065568447113, 0.27611809968948364, 0.423744797706604, -0.3632327616214752, 0.4017711579799652, 0.06915564835071564, 0.08077726513147354, 0.4691525995731354, -0.11697627604007721, -0.26235100626945496, -0.37817686796188354, 0.8283271193504333, -0.8297695517539978, -0.07925320416688919, -0.25541484355926514, -0.29819566011428833, 0.03499366343021393, 0.21477791666984558, 0.19909179210662842, 0.12287876754999161, -0.27186232805252075, 0.47813379764556885, 0.612164318561554, -0.17429709434509277, 0.21251241862773895, 0.24930648505687714, -0.08119871467351913, -0.6740683317184448, 0.7433499693870544, 0.22570335865020752, -0.09310898184776306, 0.3790336549282074, -0.038501352071762085, -0.5935311317443848, -0.1795053482055664, -0.0569988451898098, 0.4762401878833771, -0.747146725654602, -0.23040559887886047, -0.711047887802124, -0.33896884322166443, -0.7437930703163147, -0.1873636692762375, -0.14136536419391632, -0.6056031584739685, -0.47057652473449707, -0.4688401222229004, 0.8204914927482605, 0.6457747220993042, -0.6455569863319397, 0.14986078441143036, -0.6502299904823303, 0.35117408633232117, 0.23710128664970398, 0.49360159039497375, -0.14067226648330688, -0.2720417082309723, -0.11646576225757599, 0.178354874253273, -0.025771111249923706, -0.7124878168106079, 0.3103383481502533, 0.08536949008703232, 0.5051807761192322, 0.15931649506092072, 0.23939871788024902, 0.5081080794334412, -0.17498821020126343, 0.9219088554382324, 0.059795524924993515, -0.4161105453968048, 0.7774625420570374, -0.49040526151657104, 0.11875496059656143, 0.7930441498756409, 0.41920408606529236, -0.7108513712882996, -0.3298534154891968, -0.8684094548225403, -1.015400767326355, 0.45359179377555847, 0.14326173067092896, 0.4362894594669342, -0.4286876320838928, 0.42902567982673645, -0.15490616858005524, 0.1396680623292923, -1.1259135007858276, -0.801987886428833, -0.2756986916065216, -0.3309965431690216, 0.16637872159481049, -0.2664048373699188, -0.4311719834804535, -0.6544039249420166, 0.724262535572052, 0.1555142104625702, 0.36055833101272583, -0.04659979045391083, 0.11551521718502045, -0.23212070763111115, 0.22622981667518616, 0.49283283948898315, 0.8548014760017395, -0.3628021776676178, 0.08989571779966354, 0.053982216864824295, -0.5226333737373352, -0.26043614745140076, 0.07177253067493439, -0.20978260040283203, 0.049758024513721466, 0.4334006607532501, 0.40375402569770813, 0.17832879722118378, -0.27388322353363037, 0.696152925491333, -0.3692333698272705, -0.3270918130874634, -0.6074541211128235, 0.05063776299357414, 0.14707379043102264, 0.18494370579719543, 0.20845623314380646, -0.024254590272903442, -0.20217694342136383, -0.5905553698539734, 0.4358038008213043, 0.17116740345954895, -0.35202544927597046, -0.3863268494606018, 0.6898261904716492, 0.29544541239738464, -0.4362553358078003, 0.3121900260448456, -0.2045212835073471, -0.1502400040626526, 0.6952275633811951, 0.27919909358024597, 0.8133348226547241, 0.2107546627521515, 0.4119451642036438, 0.8003373146057129, 0.35834768414497375, 0.06501010060310364, 0.8205978274345398, -0.02751573733985424, -0.7272570729255676, -0.24460715055465698, -0.710606575012207, -0.2621432840824127, 0.2475658655166626, -0.688541829586029, 0.47886839509010315, -0.7669779658317566, -0.41209325194358826, 0.16655991971492767, 0.10781800001859665, -0.6472005844116211, 0.2546583414077759, -0.2292354851961136, 0.908685564994812, -1.1144169569015503, 0.4359184205532074, 0.9173110723495483, -0.7078366875648499, -0.5867791771888733, -0.256462037563324, 0.12301408499479294, -0.7262765765190125, 0.4540824294090271, -0.21901728212833405, 0.17662805318832397, -0.12914030253887177, -0.9825624823570251, -0.7683963179588318, 1.0378788709640503, -0.10254887491464615, -0.1600133776664734, 0.3060261309146881, 0.3379329442977905, 0.5606290698051453, -0.5124359726905823, 0.1672801971435547, 0.4547431468963623, 0.7526458501815796, 0.2523300051689148, -0.5011353492736816, 0.24568204581737518, -0.5777677893638611, -0.3193614184856415, 0.015296021476387978, -0.6612284779548645, 0.9030380845069885, -0.07115636765956879, -0.3216111361980438, -0.3257428705692291, 0.5150194764137268, 0.19714657962322235, 0.08683440834283829, 0.42343902587890625, 0.7521112561225891, 0.549331784248352, -0.2803412675857544, 0.9415797591209412, -0.5678203701972961, 0.7127465009689331, 1.0359044075012207, 0.01442113146185875, 0.8482791781425476, 0.4090929925441742, -0.2628069818019867, 0.5038903951644897, 0.6933884024620056, -0.2862096130847931, 0.5473373532295227, -0.05698135122656822, -0.14599552750587463, -0.11820200085639954, -0.37635737657546997, -0.6444246172904968, 0.3334607481956482, 0.2576449513435364, -0.6185821890830994, -0.21430936455726624, -0.46593302488327026, 0.2584892213344574, -0.015260573476552963, -0.36373016238212585, 0.9339916706085205, -0.061294831335544586, -0.4029231667518616, 0.29973265528678894, -0.10231228172779083, 0.7377298474311829, -0.5526759028434753, -0.19280967116355896, -0.34432318806648254, 0.2191147655248642, -0.6580584049224854, -1.2053663730621338, 0.6740135550498962, 0.0900810956954956, -0.5255720019340515, -0.32650884985923767, 0.8557956218719482, -0.37998703122138977, -0.9352134466171265, 0.31512704491615295, 0.41654282808303833, 0.19717265665531158, 0.27542492747306824, -0.9292465448379517, 0.2623780369758606, 0.08238331973552704, -0.25759392976760864, 0.002058576326817274, 0.5487542152404785, 0.18482929468154907, 0.3854351043701172, 0.6091968417167664, 0.27295807003974915, -0.02526140585541725, 0.27278873324394226, 0.9196663498878479, -0.976504385471344, -0.31338971853256226, -0.7137863039970398, 0.6312512755393982, -0.5189450979232788, -0.3965803384780884, 0.8997377753257751, 0.5560714602470398, 0.9407835602760315, -0.017103441059589386, 1.1437172889709473, -0.7343244552612305, 0.9307159185409546, -0.015840645879507065, 0.9411352276802063, -0.8380693793296814, -0.18133977055549622, -0.5044679045677185, -0.7257751226425171, -0.5475412011146545, 0.8477380275726318, -0.21809707581996918, 0.09762925654649734, 0.5319153070449829, 0.9467502236366272, -0.07663524150848389, 0.16529087722301483, -0.020537901669740677, 0.47401779890060425, -0.02563399448990822, 0.33113664388656616, 0.6152510046958923, -0.3904435336589813, 0.49961820244789124, -0.6856101155281067, -0.27195775508880615, -0.11041706055402756, -0.9710709452629089, -0.8703628778457642, -0.694392204284668, -0.6485859751701355, -0.4456845819950104, -0.1875886470079422, 0.8758983016014099, 0.6156339049339294, -0.9337097406387329, -0.3491707444190979, 0.031456511467695236, 0.4236096441745758, -0.023742634803056717, -0.37620115280151367, 0.2613314688205719, 0.19291628897190094, -0.5968636274337769, -0.1737356334924698, 0.20792682468891144, -0.16096027195453644, -0.11707209050655365, 0.11569121479988098, -0.41691485047340393, 0.09127013385295868, 0.7022180557250977, 0.5954703092575073, -0.3660174310207367, -0.46568000316619873, 0.12592653930187225, 0.016466647386550903, 0.12157288938760757, 0.43416839838027954, -0.13176730275154114, 0.07471665740013123, 0.8848147392272949, 0.0415225550532341, 0.34003326296806335, 0.34393566846847534, 0.06985561549663544, -0.9147475957870483, 0.09211894124746323, 0.1842358559370041, 0.3879553973674774, 0.29978257417678833, -0.361461877822876, 0.6617671251296997, 0.42263466119766235, -0.6606407761573792, -0.544186532497406, -0.12579092383384705, -1.1378862857818604, -0.07458259910345078, 1.393816590309143, 0.056502219289541245, -0.42877039313316345, -0.34140679240226746, -0.11546283960342407, 0.04480517655611038, -0.7458053827285767, 0.7030971646308899, 0.8095508217811584, -0.29137277603149414, -0.25872868299484253, -0.6361055970191956, 0.5535802245140076, -0.34083569049835205, -1.0400582551956177, 0.21687549352645874, 0.5116714239120483, 0.42299410700798035, 0.2505268454551697, 1.023301124572754, -0.3340848386287689, 0.0423562228679657, -0.14308924973011017, 0.20819143950939178, 0.2075161337852478, -0.21671991050243378, 0.02643897384405136, 0.24492992460727692, -0.41999706625938416, -0.21947693824768066 ]
null
null
null
null
null
null
null
null
null
null
null
null
null
classla/FRENK-hate-sl
classla
2022-10-21T07:46:11Z
471
0
null
[ "task_categories:text-classification", "size_categories:1K<n<10K", "language:sl", "license:other", "hate-speech-detection", "offensive-language", "arxiv:1906.02045", "region:us" ]
2022-10-21T07:46:11Z
2022-03-02T23:29:22.000Z
2022-03-02T23:29:22
--- language: - sl license: - other size_categories: - 1K<n<10K task_categories: - text-classification task_ids: [] tags: - hate-speech-detection - offensive-language --- Slovenian subset of the [FRENK dataset](http://hdl.handle.net/11356/1433). Also available on HuggingFace dataset hub: [English subset](https://huggingface.co/datasets/5roop/FRENK-hate-en), [Croatian subset](https://huggingface.co/datasets/5roop/FRENK-hate-hr). ## Dataset Description - **Homepage:** http://hdl.handle.net/11356/1433 - **Repository:** http://hdl.handle.net/11356/1433 - **Paper:** https://arxiv.org/abs/1906.02045 - **Project page** https://nl.ijs.si/frenk/ ## Description of the original dataset >The original FRENK dataset consists of comments to Facebook posts (news articles) of mainstream media outlets from Croatia, Great Britain, and Slovenia, on the topics of migrants and LGBT. The dataset contains whole discussion threads. Each comment is annotated by the type of socially unacceptable discourse (e.g., inappropriate, offensive, violent speech) and its target (e.g., migrants/LGBT, commenters, media). The annotation schema is described in detail in [https://arxiv.org/pdf/1906.02045.pdf]. Usernames in the metadata are pseudo-anonymised and removed from the comments. > >The data in each language (Croatian (hr), English (en), Slovenian (sl), and topic (migrants, LGBT) is divided into a training and a testing portion. The training and testing data consist of separate discussion threads, i.e., there is no cross-discussion-thread contamination between training and testing data. The sizes of the splits are the following: Croatian, migrants: 4356 training comments, 978 testing comments; Croatian LGBT: 4494 training comments, 1142 comments; English, migrants: 4540 training comments, 1285 testing comments; English, LGBT: 4819 training comments, 1017 testing comments; Slovenian, migrants: 5145 training comments, 1277 testing comments; Slovenian, LGBT: 2842 training comments, 900 testing comments. For this dataset only the Croatian data was used. Training segment has been split into beginning 90% (published here as training split) and end 10% (published here as dev split). ## Usage in `Transformers` ```python import datasets ds = datasets.load_dataset("classla/FRENK-hate-sl","binary") ``` For binary classification the following encoding is used: ```python _CLASS_MAP_BINARY = { 'Acceptable': 0, 'Offensive': 1, } ``` The original labels are available if the dataset is loaded with the `multiclass` option: ```python import datasets ds = datasets.load_dataset("classla/FRENK-hate-sl","multiclass"). ``` In this case the encoding used is: ```python _CLASS_MAP_MULTICLASS = { 'Acceptable speech': 0, 'Inappropriate': 1, 'Background offensive': 2, 'Other offensive': 3, 'Background violence': 4, 'Other violence': 5, } ``` ## Data structure * `text`: text * `target`: who is the target of the hate-speech text ("no target", "commenter", "target" (migrants or LGBT, depending on the topic), or "related to" (again, the topic)) * `topic`: whether the text relates to lgbt or migrants hate-speech domains * `label`: label of the text instance, see above. ## Data instance ``` {'text': 'Otroci so odprti in brez predsodkov.Predsodke jim vcepimo starejši,starši,družba,družina...Če otroku lepo razložimo,razume.Nikoli ni dobro,da omejujemo otroka,njegovo inteligenco in duhovnost z lastnim ne razumevanjem nečesa ali nekoga.Predsodek je miselni zapor,prepreka,da bi bili svobodni.Ljubezen je svoboda.Sem ZA spremembo zakona!Srečno :D', 'target': 'No target', 'topic': 'lgbt', 'label': 0} ``` ## Licensing information CLARIN.SI Licence ACA ID-BY-NC-INF-NORED 1.0 ## Citation information When using this dataset please cite the following paper: ``` @misc{ljubešić2019frenk, title={The FRENK Datasets of Socially Unacceptable Discourse in Slovene and English}, author={Nikola Ljubešić and Darja Fišer and Tomaž Erjavec}, year={2019}, eprint={1906.02045}, archivePrefix={arXiv}, primaryClass={cs.CL}, url={https://arxiv.org/abs/1906.02045} } ``` The original dataset can be cited as ``` @misc{11356/1433, title = {Offensive language dataset of Croatian, English and Slovenian comments {FRENK} 1.0}, author = {Ljube{\v s}i{\'c}, Nikola and Fi{\v s}er, Darja and Erjavec, Toma{\v z}}, url = {http://hdl.handle.net/11356/1433}, note = {Slovenian language resource repository {CLARIN}.{SI}}, copyright = {{CLARIN}.{SI} Licence {ACA} {ID}-{BY}-{NC}-{INF}-{NORED} 1.0}, year = {2021} } ```
[ -0.5468823909759521, -0.6412628293037415, -0.021568847820162773, 0.34737035632133484, -0.17093925178050995, -0.3217296302318573, -0.42696529626846313, -0.3691076636314392, 0.2574945092201233, 0.3324279189109802, -0.6225666403770447, -0.8547221422195435, -0.745137095451355, 0.40245214104652405, -0.24984130263328552, 1.165899395942688, -0.04245605692267418, 0.20931535959243774, 0.13478633761405945, -0.44454294443130493, 0.08091568946838379, -0.510751485824585, -0.31521981954574585, 0.035970594733953476, 0.6709373593330383, 0.3111652731895447, 0.5113428235054016, 0.5201502442359924, 0.3329089879989624, 0.2774006724357605, -0.21277810633182526, -0.09099362790584564, -0.5471979379653931, 0.11531441658735275, -0.29533088207244873, -0.2047710418701172, -0.2990894615650177, 0.2425571084022522, 0.7184877991676331, 0.5475298762321472, 0.051614776253700256, 0.370299369096756, 0.13431435823440552, 0.589978039264679, -0.4129239618778229, 0.04484151303768158, -0.6605464816093445, 0.13468781113624573, -0.39865970611572266, 0.20196941494941711, -0.3243737816810608, -0.39127087593078613, -0.1638132929801941, -0.4018516540527344, 0.2011275291442871, -0.09084958583116531, 0.9191650748252869, 0.09204373508691788, -0.5204486846923828, -0.24281151592731476, -0.37601128220558167, 0.848890483379364, -0.7878398895263672, 0.6114059686660767, 0.4145575761795044, -0.27365636825561523, -0.3234030306339264, -0.14108806848526, -0.6494900584220886, 0.1272999793291092, -0.20852051675319672, 0.13684959709644318, -0.18261900544166565, -0.32643893361091614, 0.31439611315727234, 0.04768982157111168, -0.7343162894248962, 0.02578485757112503, -0.6462274789810181, -0.2754414975643158, 0.9755743741989136, 0.17737606167793274, 0.31836527585983276, -0.40111243724823, -0.45760613679885864, 0.02810109406709671, -0.5338584780693054, 0.1069575771689415, 0.6812219619750977, 0.7295500040054321, -0.3570449948310852, 0.7841880917549133, -0.1276477426290512, 0.5117261409759521, 0.03055894747376442, -0.19756348431110382, 0.9088985323905945, -0.46645310521125793, -0.03363266587257385, -0.14744937419891357, 1.1023145914077759, 0.6539643406867981, 0.2249811738729477, 0.1243153065443039, 0.27106767892837524, 0.12252174317836761, 0.05057539418339729, -0.7638832330703735, -0.02378932014107704, -0.00003707100768224336, -0.34187400341033936, -0.03802219033241272, -0.05775325745344162, -1.1661808490753174, -0.3336735963821411, -0.07323011010885239, -0.13599687814712524, -0.4070006310939789, -0.4131462574005127, -0.1193244457244873, -0.0013210278702899814, 0.36975571513175964, 0.13372083008289337, -0.546635091304779, 0.08068949729204178, 0.5327398180961609, 0.6844574809074402, -0.20771625638008118, -0.3350723087787628, -0.17432376742362976, -0.16752035915851593, -0.10903875529766083, 0.40092021226882935, -0.6901304721832275, -0.21903948485851288, -0.0380588173866272, 0.34319010376930237, -0.24419327080249786, -0.25817766785621643, 0.8412343859672546, -0.24534231424331665, 0.5528517365455627, -0.2031138688325882, -0.35970497131347656, -0.203443244099617, 0.2771080434322357, -0.2682143449783325, 1.2650381326675415, 0.30677923560142517, -1.0977492332458496, 0.5637133717536926, -0.5275078415870667, -0.312113493680954, -0.061997249722480774, -0.02810339629650116, -0.5980972051620483, -0.463664710521698, 0.07671589404344559, 0.4443454444408417, -0.12192823737859726, 0.07651796191930771, -0.5612810254096985, -0.11968991905450821, 0.0713939219713211, -0.012065291404724121, 1.2568161487579346, 0.37527957558631897, -0.4227830767631531, 0.09269542992115021, -0.6811922192573547, -0.2939433157444, 0.19954898953437805, -0.6381756663322449, -0.535784900188446, -0.12424259632825851, 0.06635819375514984, 0.5650987029075623, -0.04655356705188751, -1.0334421396255493, 0.016448497772216797, -0.6381589770317078, -0.08692453056573868, 0.8136323690414429, -0.08979228138923645, 0.3546813726425171, -0.1317041516304016, 0.46807947754859924, 0.14505091309547424, 0.29862281680107117, 0.2839829921722412, -0.8305829763412476, -0.5621256232261658, -0.2972071170806885, 0.016802143305540085, 0.7557955980300903, -0.776244580745697, 0.6182873249053955, -0.24230468273162842, -0.5616093873977661, -0.4646667540073395, 0.04249235615134239, 0.5243197679519653, 0.48877960443496704, 0.36910125613212585, -0.2577439546585083, -0.9259080290794373, -0.9445012211799622, -0.42345473170280457, -0.4126644730567932, 0.1609800010919571, 0.5856695175170898, 0.7342065572738647, -0.1803717315196991, 0.8258086442947388, -0.31483617424964905, -0.29949215054512024, -0.13169331848621368, 0.04166649281978607, 0.308424711227417, 0.5000539422035217, 0.7271696925163269, -1.1261006593704224, -1.0939279794692993, -0.13764815032482147, -0.5597873330116272, -0.2490578144788742, 0.18727073073387146, -0.21267259120941162, 0.5012715458869934, 0.11369060724973679, -0.1189875528216362, 0.5303981304168701, 0.4511595070362091, -0.8939136266708374, 0.510589599609375, 0.36838677525520325, 0.4316001534461975, -1.1102409362792969, -0.06372416764497757, 0.3173406422138214, 0.09509535878896713, -0.8904521465301514, -0.26951026916503906, -0.35483279824256897, 0.18092551827430725, -0.8275758624076843, 0.5891721844673157, -0.1695690006017685, 0.22119726240634918, 0.23634395003318787, 0.13217061758041382, -0.4902200698852539, 0.6431021690368652, 0.009978790767490864, 0.592153787612915, 0.6163904666900635, -0.30992478132247925, 0.31174662709236145, 0.6937093734741211, -0.37042245268821716, 0.6906501650810242, -0.23547200858592987, 0.0026646233163774014, -0.3031686842441559, 0.15894393622875214, -0.8560675382614136, -0.18362917006015778, 0.9710356593132019, -0.5919840931892395, -0.1031099334359169, -0.49545392394065857, -0.43501967191696167, -0.5732208490371704, -0.45792722702026367, 0.3142235577106476, 0.2957298457622528, -0.14709532260894775, 0.3504238724708557, 0.6466880440711975, -0.3343885540962219, -0.9354616403579712, -0.7985039949417114, -0.10417830944061279, -0.5188142657279968, -0.6727742552757263, -0.11113329231739044, -0.1909879446029663, -0.14631801843643188, 0.04925966262817383, 0.20039990544319153, -0.1677306592464447, 0.05416782572865486, 0.4015643298625946, 0.12209486961364746, -0.13927312195301056, -0.17324623465538025, -0.17419159412384033, 0.10164879262447357, 0.12225589901208878, 0.017017019912600517, 0.552358090877533, -0.18180355429649353, -0.07659400999546051, -0.2593012750148773, 0.6568689942359924, 0.38408616185188293, -0.028772814199328423, 1.053348183631897, 0.808907151222229, -0.12986823916435242, 0.18089860677719116, -0.3279867172241211, 0.021836133673787117, -0.38314053416252136, 0.37463080883026123, -0.1837148368358612, -0.9904439449310303, 0.6260879635810852, 0.36247116327285767, 0.09260231256484985, 0.6324458718299866, 0.8640161156654358, -0.013235955499112606, 0.8580642938613892, 0.37355542182922363, 0.006542813498526812, 0.6048649549484253, -0.08666964620351791, 0.0605604387819767, -0.7270002961158752, -0.4860282838344574, -0.7014746069908142, -0.2692195773124695, -0.7624255418777466, -0.5315103530883789, 0.26131442189216614, -0.22165396809577942, -0.507677435874939, 0.42513346672058105, -0.5245480537414551, 0.38586732745170593, 0.26234865188598633, -0.055795393884181976, -0.1196042001247406, 0.25831907987594604, -0.1778945028781891, -0.4071212112903595, -0.6316377520561218, -0.3290916085243225, 1.0738593339920044, 0.3852951228618622, 0.5867233872413635, 0.1491747498512268, 0.5911594033241272, 0.2621379792690277, 0.37194058299064636, -0.3762394189834595, 0.7203011512756348, -0.29008397459983826, -0.9604405164718628, -0.3488178551197052, -0.7242891192436218, -1.1044598817825317, 0.38487234711647034, -0.37975701689720154, -1.1512595415115356, 0.5934783220291138, -0.09831070154905319, 0.045517463237047195, 0.5400969386100769, -0.36333686113357544, 0.7175213098526001, 0.23086026310920715, -0.41629308462142944, 0.0325983501970768, -0.9231919050216675, 0.3285709321498871, -0.03301532194018364, 0.5113202929496765, -0.3920477628707886, 0.15432822704315186, 1.1585484743118286, -0.2631476819515228, 0.983697235584259, -0.4298626184463501, -0.2241281121969223, 0.1810729056596756, -0.1910245418548584, 0.2817334234714508, -0.3526751697063446, -0.4720314145088196, 0.4671044945716858, -0.24677763879299164, -0.30865150690078735, -0.2323414534330368, 0.5107772946357727, -0.7211916446685791, -0.34242767095565796, -0.3815843462944031, -0.6108636260032654, 0.019835762679576874, 0.21110855042934418, 0.3461863696575165, 0.11218314617872238, -0.0922253280878067, 0.30108481645584106, 0.5246612429618835, -0.4256827235221863, 0.11077762395143509, 0.6017722487449646, -0.17812831699848175, -0.5563666820526123, 0.6705713272094727, 0.37894755601882935, 0.020991431549191475, -0.16556690633296967, 0.11275433748960495, -0.2653282880783081, -0.33467936515808105, -0.37380626797676086, 0.4693543314933777, -0.6275631785392761, -0.10827764123678207, -0.8541054725646973, -0.2373175323009491, -0.6141988635063171, -0.10923703759908676, -0.4140828549861908, -0.2971286475658417, -0.04670443385839462, -0.08082575350999832, 0.4386453628540039, 0.6041721701622009, -0.49854978919029236, 0.13713115453720093, -0.4035201370716095, 0.2022043913602829, -0.07701605558395386, 0.4375965893268585, -0.3269861042499542, -0.854606568813324, -0.35680317878723145, 0.2831474244594574, -0.10977426916360855, -1.0451449155807495, 0.47244495153427124, -0.004983630497008562, 0.5407828688621521, 0.08441329747438431, 0.3158785104751587, 0.43792685866355896, -0.30247482657432556, 1.1321920156478882, 0.23423069715499878, -0.5803845524787903, 0.6969456076622009, -0.5118376016616821, -0.09040843695402145, 0.511156439781189, 0.8937066793441772, -0.7087903022766113, -0.7717801928520203, -0.7753058075904846, -1.1799839735031128, 1.1642072200775146, 0.5554682612419128, 0.1670009344816208, -0.09099152684211731, 0.24146726727485657, 0.13397619128227234, -0.030996276065707207, -1.060388207435608, -0.8533192873001099, -0.1435510665178299, -0.23957660794258118, -0.04369725286960602, -0.37602919340133667, -0.47137778997421265, -0.6416239738464355, 1.1102651357650757, 0.20745275914669037, 0.3041141927242279, 0.19499099254608154, -0.0881202444434166, -0.007434066850692034, 0.4233739674091339, 0.6908737421035767, 0.36000287532806396, -0.2150566428899765, 0.19676223397254944, 0.43178436160087585, -0.7018961310386658, 0.33256521821022034, -0.039353661239147186, -0.35024240612983704, 0.03249543905258179, 0.11818617582321167, 0.8287340998649597, -0.11897797137498856, -0.2659517526626587, 0.7083705067634583, -0.12817563116550446, -0.4966413974761963, -0.2047579288482666, 0.04511323198676109, -0.22525089979171753, 0.4087766110897064, 0.24600420892238617, -0.13168765604496002, 0.01722162961959839, -0.24122102558612823, 0.49689793586730957, 0.17214180529117584, -0.4149814546108246, -0.32041826844215393, 0.47263896465301514, 0.05514577776193619, -0.3074949085712433, 0.42915987968444824, -0.294870525598526, -0.7549673318862915, 0.3279271125793457, 0.5786599516868591, 0.6115204095840454, -0.35210779309272766, 0.46672487258911133, 0.7741254568099976, 0.4225923717021942, 0.3858078718185425, 0.4572884440422058, 0.042990542948246, -0.9159182906150818, -0.16515125334262848, -0.7280677556991577, 0.019310807809233665, 0.09493086487054825, -0.768942654132843, 0.13592618703842163, -0.24957546591758728, -0.13910682499408722, -0.16716402769088745, 0.15202412009239197, -0.4413502514362335, 0.15140807628631592, 0.546748161315918, 0.8242742419242859, -1.4025044441223145, 0.6448444128036499, 0.8162892460823059, -0.3624557554721832, -0.6397342681884766, -0.17766152322292328, 0.3649499714374542, -0.5105739235877991, 0.6620485782623291, -0.04950075224041939, -0.03935297206044197, -0.26856228709220886, -0.7068805694580078, -0.8414506316184998, 0.5640482902526855, 0.340523898601532, -0.2573562562465668, 0.3594808578491211, 0.48551562428474426, 0.6115978956222534, -0.48547595739364624, 0.09357664734125137, 0.6530964970588684, 0.7216286659240723, 0.018153218552470207, -0.7212802171707153, 0.12441959232091904, -0.5842132568359375, -0.15358580648899078, 0.12986904382705688, -0.8201948404312134, 0.8005799651145935, 0.24500396847724915, -0.2136506289243698, -0.33424171805381775, 0.5496618747711182, 0.15045814216136932, 0.38717278838157654, 0.6912322044372559, 0.5083340406417847, 0.6188106536865234, -0.26285916566848755, 0.7386941313743591, -0.08656294643878937, 0.6222182512283325, 1.1696491241455078, 0.01633884198963642, 0.6559236645698547, 0.29202112555503845, -0.4033541977405548, 0.6452467441558838, 0.4434066116809845, -0.2397288680076599, 0.4585849344730377, 0.07120908796787262, -0.16126136481761932, -0.06195628643035889, -0.20584088563919067, -0.3920097053050995, 0.44925400614738464, 0.39503100514411926, -0.37232041358947754, -0.3580639362335205, 0.2490065097808838, 0.4854867458343506, 0.08392772823572159, -0.24606682360172272, 0.813149094581604, -0.1302339732646942, -0.31565287709236145, 0.8270010948181152, -0.1507701724767685, 0.8762108683586121, -0.5387685298919678, 0.2817653715610504, -0.15164116024971008, -0.10130468755960464, -0.47031092643737793, -1.175428032875061, 0.6191322207450867, 0.37395787239074707, -0.40312066674232483, -0.3508159816265106, 0.5063068270683289, -0.8012006282806396, -0.5247911214828491, 0.48610037565231323, 0.0581999272108078, 0.7555171847343445, 0.34627339243888855, -1.1041100025177002, 0.20468033850193024, 0.5055086016654968, -0.453069806098938, 0.3022724986076355, 0.3801344037055969, 0.008759102784097195, 0.5198155045509338, 0.564297616481781, 0.26608482003211975, 0.3944109380245209, -0.1688714325428009, 0.991706907749176, -0.5282611846923828, -0.3326464295387268, -0.9259586334228516, 0.7616143822669983, -0.25195470452308655, -0.39647209644317627, 1.073481798171997, 0.7951712608337402, 0.9845429062843323, 0.13212072849273682, 0.6847148537635803, -0.4774340093135834, 0.805918276309967, -0.07599648833274841, 0.674976110458374, -0.5782688856124878, -0.11828817427158356, -0.647102952003479, -0.8006960153579712, -0.5480095148086548, 0.6818017363548279, -0.5591349601745605, -0.2618069350719452, 0.3521210551261902, 1.1383683681488037, 0.0013525198446586728, -0.04830033704638481, 0.15279552340507507, 0.7337893843650818, 0.21503369510173798, 0.4114859700202942, 0.5904658436775208, -0.45368605852127075, 0.44521766901016235, -0.4866926670074463, -0.2416440099477768, -0.10749366134405136, -0.6434466242790222, -0.774928629398346, -0.841835618019104, -0.5647386312484741, -0.703065037727356, -0.02129169926047325, 0.967925488948822, 0.5499321818351746, -1.0420414209365845, -0.21288372576236725, 0.44496452808380127, 0.398011714220047, 0.012363499961793423, -0.26345035433769226, 0.3091733157634735, 0.0005632871761918068, -0.7391635179519653, 0.10600963979959488, 0.0672762393951416, 0.01194544043391943, 0.060974426567554474, -0.30652934312820435, -0.7253097295761108, 0.11631806939840317, 0.5974655747413635, 0.33273863792419434, -0.5994759202003479, -0.339965283870697, -0.35971754789352417, -0.11032623052597046, 0.256229430437088, 0.2946324050426483, -0.4055767357349396, 0.207990363240242, 0.5151521563529968, 0.2537672221660614, 0.4337414801120758, 0.08426708728075027, 0.17557483911514282, -0.8145654797554016, 0.5129836797714233, 0.2118229866027832, 0.30589911341667175, 0.2502085268497467, -0.3897080719470978, 0.7405616641044617, 0.45798009634017944, -0.5302585959434509, -1.1197654008865356, 0.10100606828927994, -0.9007823467254639, -0.054788243025541306, 1.4639074802398682, -0.4498116374015808, -0.3115118145942688, -0.47226959466934204, -0.22587808966636658, 0.3422092795372009, -0.5529301762580872, 0.466770201921463, 0.69496750831604, -0.09024558216333389, -0.029482759535312653, -0.20948785543441772, 0.5639248490333557, 0.24873211979866028, -0.5194346308708191, 0.369210422039032, 0.4132367670536041, 0.49068570137023926, 0.21104882657527924, 0.5597937107086182, -0.17408837378025055, 0.010724839754402637, -0.0735519528388977, 0.2989758551120758, 0.21741914749145508, -0.20050548017024994, -0.27948489785194397, 0.14531546831130981, -0.6460849046707153, 0.043402962386608124 ]
null
null
null
null
null
null
null
null
null
null
null
null
null
msr_sqa
null
2022-11-18T21:30:23Z
470
1
null
[ "task_categories:question-answering", "task_ids:extractive-qa", "annotations_creators:crowdsourced", "language_creators:found", "multilinguality:monolingual", "size_categories:10K<n<100K", "source_datasets:original", "language:en", "license:ms-pl", "region:us" ]
2022-11-18T21:30:23Z
2022-03-02T23:29:22.000Z
2022-03-02T23:29:22
--- annotations_creators: - crowdsourced language_creators: - found language: - en license: - ms-pl multilinguality: - monolingual size_categories: - 10K<n<100K source_datasets: - original task_categories: - question-answering task_ids: - extractive-qa paperswithcode_id: null pretty_name: Microsoft Research Sequential Question Answering dataset_info: features: - name: id dtype: string - name: annotator dtype: int32 - name: position dtype: int32 - name: question dtype: string - name: question_and_history sequence: string - name: table_file dtype: string - name: table_header sequence: string - name: table_data sequence: sequence: string - name: answer_coordinates sequence: - name: row_index dtype: int32 - name: column_index dtype: int32 - name: answer_text sequence: string splits: - name: train num_bytes: 19732499 num_examples: 12276 - name: validation num_bytes: 3738331 num_examples: 2265 - name: test num_bytes: 5105873 num_examples: 3012 download_size: 4796932 dataset_size: 28576703 --- # Dataset Card for Microsoft Research Sequential Question Answering ## 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:** [Microsoft Research Sequential Question Answering (SQA) Dataset](https://msropendata.com/datasets/b25190ed-0f59-47b1-9211-5962858142c2) - **Repository:** - **Paper:** [https://www.microsoft.com/en-us/research/wp-content/uploads/2017/05/acl17-dynsp.pdf](https://www.microsoft.com/en-us/research/wp-content/uploads/2017/05/acl17-dynsp.pdf) - **Leaderboard:** - **Point of Contact:** - Scott Wen-tau Yih scottyih@microsoft.com - Mohit Iyyer m.iyyer@gmail.com - Ming-Wei Chang minchang@microsoft.com ### Dataset Summary Recent work in semantic parsing for question answering has focused on long and complicated questions, many of which would seem unnatural if asked in a normal conversation between two humans. In an effort to explore a conversational QA setting, we present a more realistic task: answering sequences of simple but inter-related questions. We created SQA by asking crowdsourced workers to decompose 2,022 questions from WikiTableQuestions (WTQ)*, which contains highly-compositional questions about tables from Wikipedia. We had three workers decompose each WTQ question, resulting in a dataset of 6,066 sequences that contain 17,553 questions in total. Each question is also associated with answers in the form of cell locations in the tables. - Panupong Pasupat, Percy Liang. "Compositional Semantic Parsing on Semi-Structured Tables" ACL-2015. [http://www-nlp.stanford.edu/software/sempre/wikitable/](http://www-nlp.stanford.edu/software/sempre/wikitable/) ### Supported Tasks and Leaderboards [More Information Needed] ### Languages English (`en`). ## Dataset Structure ### Data Instances ``` {'id': 'nt-639', 'annotator': 0, 'position': 0, 'question': 'where are the players from?', 'table_file': 'table_csv/203_149.csv', 'table_header': ['Pick', 'Player', 'Team', 'Position', 'School'], 'table_data': [['1', 'Ben McDonald', 'Baltimore Orioles', 'RHP', 'Louisiana State University'], ['2', 'Tyler Houston', 'Atlanta Braves', 'C', '"Valley HS (Las Vegas', ' NV)"'], ['3', 'Roger Salkeld', 'Seattle Mariners', 'RHP', 'Saugus (CA) HS'], ['4', 'Jeff Jackson', 'Philadelphia Phillies', 'OF', '"Simeon HS (Chicago', ' IL)"'], ['5', 'Donald Harris', 'Texas Rangers', 'OF', 'Texas Tech University'], ['6', 'Paul Coleman', 'Saint Louis Cardinals', 'OF', 'Frankston (TX) HS'], ['7', 'Frank Thomas', 'Chicago White Sox', '1B', 'Auburn University'], ['8', 'Earl Cunningham', 'Chicago Cubs', 'OF', 'Lancaster (SC) HS'], ['9', 'Kyle Abbott', 'California Angels', 'LHP', 'Long Beach State University'], ['10', 'Charles Johnson', 'Montreal Expos', 'C', '"Westwood HS (Fort Pierce', ' FL)"'], ['11', 'Calvin Murray', 'Cleveland Indians', '3B', '"W.T. White High School (Dallas', ' TX)"'], ['12', 'Jeff Juden', 'Houston Astros', 'RHP', 'Salem (MA) HS'], ['13', 'Brent Mayne', 'Kansas City Royals', 'C', 'Cal State Fullerton'], ['14', 'Steve Hosey', 'San Francisco Giants', 'OF', 'Fresno State University'], ['15', 'Kiki Jones', 'Los Angeles Dodgers', 'RHP', '"Hillsborough HS (Tampa', ' FL)"'], ['16', 'Greg Blosser', 'Boston Red Sox', 'OF', 'Sarasota (FL) HS'], ['17', 'Cal Eldred', 'Milwaukee Brewers', 'RHP', 'University of Iowa'], ['18', 'Willie Greene', 'Pittsburgh Pirates', 'SS', '"Jones County HS (Gray', ' GA)"'], ['19', 'Eddie Zosky', 'Toronto Blue Jays', 'SS', 'Fresno State University'], ['20', 'Scott Bryant', 'Cincinnati Reds', 'OF', 'University of Texas'], ['21', 'Greg Gohr', 'Detroit Tigers', 'RHP', 'Santa Clara University'], ['22', 'Tom Goodwin', 'Los Angeles Dodgers', 'OF', 'Fresno State University'], ['23', 'Mo Vaughn', 'Boston Red Sox', '1B', 'Seton Hall University'], ['24', 'Alan Zinter', 'New York Mets', 'C', 'University of Arizona'], ['25', 'Chuck Knoblauch', 'Minnesota Twins', '2B', 'Texas A&M University'], ['26', 'Scott Burrell', 'Seattle Mariners', 'RHP', 'Hamden (CT) HS']], 'answer_coordinates': {'row_index': [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25], 'column_index': [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4]}, 'answer_text': ['Louisiana State University', 'Valley HS (Las Vegas, NV)', 'Saugus (CA) HS', 'Simeon HS (Chicago, IL)', 'Texas Tech University', 'Frankston (TX) HS', 'Auburn University', 'Lancaster (SC) HS', 'Long Beach State University', 'Westwood HS (Fort Pierce, FL)', 'W.T. White High School (Dallas, TX)', 'Salem (MA) HS', 'Cal State Fullerton', 'Fresno State University', 'Hillsborough HS (Tampa, FL)', 'Sarasota (FL) HS', 'University of Iowa', 'Jones County HS (Gray, GA)', 'Fresno State University', 'University of Texas', 'Santa Clara University', 'Fresno State University', 'Seton Hall University', 'University of Arizona', 'Texas A&M University', 'Hamden (CT) HS']} ``` ### Data Fields - `id` (`str`): question sequence id (the id is consistent with those in WTQ) - `annotator` (`int`): `0`, `1`, `2` (the 3 annotators who annotated the question intent) - `position` (`int`): the position of the question in the sequence - `question` (`str`): the question given by the annotator - `table_file` (`str`): the associated table - `table_header` (`List[str]`): a list of headers in the table - `table_data` (`List[List[str]]`): 2d array of data in the table - `answer_coordinates` (`List[Dict]`): the table cell coordinates of the answers (0-based, where 0 is the first row after the table header) - `row_index` - `column_index` - `answer_text` (`List[str]`): the content of the answer cells Note that some text fields may contain Tab or LF characters and thus start with quotes. It is recommended to use a CSV parser like the Python CSV package to process the data. ### Data Splits | | train | test | |-------------|------:|-----:| | N. examples | 14541 | 3012 | ## 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 [Microsoft Research Data License Agreement](https://msropendata-web-api.azurewebsites.net/licenses/2f933be3-284d-500b-7ea3-2aa2fd0f1bb2/view). ### Citation Information ``` @inproceedings{iyyer-etal-2017-search, title = "Search-based Neural Structured Learning for Sequential Question Answering", author = "Iyyer, Mohit and Yih, Wen-tau and Chang, Ming-Wei", booktitle = "Proceedings of the 55th Annual Meeting of the Association for Computational Linguistics (Volume 1: Long Papers)", month = jul, year = "2017", address = "Vancouver, Canada", publisher = "Association for Computational Linguistics", url = "https://aclanthology.org/P17-1167", doi = "10.18653/v1/P17-1167", pages = "1821--1831", } ``` ### Contributions Thanks to [@mattbui](https://github.com/mattbui) for adding this dataset.
[ -0.45379990339279175, -0.7299298644065857, 0.6131727695465088, 0.08467145264148712, 0.33399224281311035, 0.19008402526378632, 0.07308531552553177, -0.31042930483818054, 0.4878440499305725, -0.06360132992267609, -0.6400764584541321, -0.730724573135376, -0.5036596059799194, 0.3559778332710266, -0.28118896484375, 0.9994788765907288, 0.09708543866872787, -0.08344147354364395, -0.4107826352119446, -0.13056954741477966, -0.6412758231163025, -0.4581827223300934, -0.47404876351356506, -0.21203792095184326, 0.3147311210632324, 0.6317145228385925, 0.7861984968185425, 0.48547860980033875, 0.5875000953674316, 0.4303434491157532, -0.10543743520975113, 0.07521223276853561, -0.4712870121002197, 0.1011725664138794, -0.2631547749042511, -0.3565998673439026, -0.5746033787727356, -0.10755820572376251, 0.7449043989181519, 0.9997174143791199, -0.09881352633237839, 0.6483445763587952, -0.060017623007297516, 0.6495311856269836, -0.44163522124290466, 0.10883471369743347, -0.335075318813324, 0.21835701167583466, -0.12241091579198837, -0.3437064588069916, -0.2676122188568115, -0.6162420511245728, 0.11741531640291214, -0.8145655393600464, 0.10255099087953568, 0.024750560522079468, 0.849355161190033, 0.016309723258018494, -0.31697356700897217, -0.08067701011896133, -0.19569508731365204, 0.8621140718460083, -0.6502295136451721, -0.022836485877633095, 0.5202435851097107, 0.3273235857486725, -0.20142266154289246, -0.6850424408912659, -0.7021582126617432, 0.14135311543941498, -0.47137075662612915, 0.48837772011756897, -0.15448403358459473, -0.08831685781478882, 0.3727216422557831, 0.38307762145996094, -1.1236073970794678, -0.14940804243087769, -0.6985710263252258, -0.16486895084381104, 0.8456245064735413, 0.5994535088539124, 0.285091370344162, -0.326486200094223, -0.37534868717193604, -0.40862858295440674, -0.0720994770526886, 0.6552770733833313, 0.1824074685573578, 0.15036877989768982, -0.05916972830891609, 0.7757138609886169, -0.47720226645469666, 0.5820229649543762, -0.15321138501167297, 0.16239452362060547, 0.4612933397293091, -0.40896308422088623, -0.18110176920890808, 0.04951172322034836, 0.862660825252533, 0.5077816247940063, -0.1462431102991104, -0.11033272743225098, 0.14643360674381256, -0.0733243003487587, -0.20150314271450043, -0.7245884537696838, -0.29965940117836, 0.6051503419876099, -0.4271908402442932, -0.11255497485399246, 0.29674646258354187, -0.9746841192245483, 0.07656834274530411, -0.23466677963733673, 0.5369594097137451, -0.3124082088470459, 0.15220151841640472, -0.0448448583483696, -0.24806594848632812, 0.5133322477340698, 0.21504051983356476, -0.7036140561103821, 0.2774623930454254, 0.529905378818512, 0.7720811367034912, -0.25935688614845276, -0.44433748722076416, -0.2729017436504364, 0.16320858895778656, -0.2852340042591095, 0.6672835350036621, -0.552029013633728, -0.41640183329582214, 0.015162482857704163, 0.10218948870897293, -0.21293936669826508, -0.35732096433639526, 0.6375060081481934, -0.36946621537208557, 0.32047221064567566, -0.8429833650588989, -0.7010290622711182, -0.1124124750494957, 0.37572041153907776, -0.5641675591468811, 1.352118968963623, 0.2798585593700409, -0.9208806753158569, 0.1594095379114151, -0.7210265398025513, -0.29777875542640686, 0.12872807681560516, -0.1904018223285675, -0.32039400935173035, -0.43004733324050903, 0.2753204107284546, 0.47524502873420715, -0.2685679793357849, 0.21905174851417542, -0.2421346753835678, -0.4015309810638428, 0.20790886878967285, -0.16038380563259125, 1.1509058475494385, 0.05566832423210144, -0.28744691610336304, 0.06819567084312439, -1.079110860824585, 0.3671726882457733, 0.27198487520217896, -0.5043957829475403, -0.03253725543618202, -0.3893204629421234, -0.1715201586484909, 0.49811965227127075, 0.19067595899105072, -0.48785313963890076, 0.32135796546936035, -0.4376841187477112, 0.3373759388923645, 0.7417622804641724, 0.3870639503002167, 0.4756339490413666, -0.611594557762146, 0.6478608250617981, 0.14373299479484558, 0.2281181961297989, -0.12136100977659225, -0.758899450302124, -0.5838584303855896, -0.024522511288523674, 0.059073932468891144, 0.8569011688232422, -0.602346658706665, 0.6967520117759705, -0.4661954939365387, -0.5997900366783142, -0.6347430348396301, -0.06728653609752655, 0.3001479208469391, 1.0014725923538208, 0.5750657916069031, -0.010948991402983665, -0.5888158679008484, -0.9320563077926636, -0.16647565364837646, -0.37843406200408936, 0.14261910319328308, 0.4061706066131592, 0.784214973449707, 0.24622894823551178, 0.9524028897285461, -0.902828574180603, -0.21116019785404205, -0.33389344811439514, -0.16879644989967346, 0.5190690159797668, 0.6283197402954102, 0.43168118596076965, -0.7422171235084534, -0.535474419593811, -0.288389652967453, -0.9064712524414062, 0.04318865016102791, 0.06378336995840073, -0.39950987696647644, -0.26321735978126526, 0.26830562949180603, -0.6795302629470825, 0.6318780183792114, 0.2734229564666748, -0.8188462853431702, 0.41600552201271057, -0.19096753001213074, 0.350711852312088, -1.0587513446807861, 0.33709239959716797, -0.15307867527008057, 0.24956196546554565, -0.8104441165924072, -0.25842049717903137, -0.06908529251813889, 0.05853136256337166, -0.21432548761367798, 0.3512028157711029, -0.24529877305030823, -0.043700192123651505, 0.3231939375400543, 0.17951813340187073, 0.2560335397720337, 0.4644702076911926, 0.014787396416068077, 0.791066586971283, 0.5308612585067749, -0.5015615224838257, 0.26593613624572754, 0.47496166825294495, -0.42689716815948486, 0.3965012729167938, -0.7101840376853943, -0.17883214354515076, -0.35240599513053894, 0.24366118013858795, -1.2219500541687012, -0.28865858912467957, 0.28255000710487366, -0.7499657273292542, -0.11561895906925201, 0.21216928958892822, -0.3339441120624542, -0.771272599697113, -0.43333131074905396, 0.366865336894989, 0.4478148818016052, -0.052466150373220444, 0.3270389139652252, 0.27689236402511597, -0.19299615919589996, -0.7979353666305542, -0.6603443026542664, -0.2349865585565567, -0.1990974098443985, -0.8038558959960938, 0.31719136238098145, -0.24463625252246857, -0.12698964774608612, 0.15021996200084686, 0.005384629126638174, -0.13370215892791748, 0.1488019973039627, 0.10901709645986557, 0.3964134454727173, -0.30456778407096863, -0.11987145245075226, -0.2430090606212616, 0.07452672719955444, 0.2541602551937103, -0.09667160362005234, 0.504971444606781, -0.05611991882324219, -0.06255169212818146, -0.4933627247810364, 0.5305867195129395, 0.5021727085113525, -0.2983781397342682, 0.9689338803291321, 0.5900369882583618, -0.21409520506858826, -0.056381456553936005, -0.3152308762073517, -0.24170556664466858, -0.4426809251308441, 0.38805997371673584, -0.38473185896873474, -0.8650518655776978, 0.7859480381011963, 0.49299386143684387, 0.18889425694942474, 0.7954797744750977, 0.416309654712677, -0.33294084668159485, 0.8540836572647095, 0.08695113658905029, 0.14217595756053925, 0.3426443636417389, -0.6664712429046631, -0.21283644437789917, -0.5565217137336731, -0.47614994645118713, -0.5842434167861938, -0.4603721499443054, -0.7048378586769104, -0.46135127544403076, 0.3155308961868286, 0.11159925907850266, -0.44965502619743347, 0.25604939460754395, -0.7081787586212158, 0.5108906626701355, 0.7288967967033386, 0.22468610107898712, 0.0936160534620285, -0.2565684914588928, -0.03755680471658707, 0.0573679581284523, -0.7705661654472351, -0.3863467574119568, 1.18014657497406, 0.21924377977848053, 0.2161668986082077, 0.3096035420894623, 0.843758761882782, 0.3512474298477173, 0.014024432748556137, -0.6698535680770874, 0.7564104199409485, 0.014095732010900974, -0.7678263187408447, -0.6722288131713867, -0.47617676854133606, -1.112735390663147, 0.3617604970932007, -0.2685118317604065, -0.7214236855506897, 0.44401752948760986, -0.013812802731990814, -0.6767719388008118, 0.08976289629936218, -0.6004819273948669, 0.9862728714942932, -0.014151069335639477, -0.6229515671730042, 0.27086812257766724, -1.0700019598007202, 0.41313084959983826, 0.0927005186676979, 0.4103739857673645, -0.2740573287010193, 0.2671757936477661, 1.1544091701507568, -0.6743338704109192, 0.4938388764858246, -0.2900935709476471, 0.38287508487701416, 0.6717552542686462, -0.0548650287091732, 0.5473679900169373, 0.23931919038295746, -0.1423146277666092, -0.12603941559791565, 0.36943748593330383, -0.7139002680778503, -0.5956501960754395, 0.4692825973033905, -1.0832127332687378, -0.6515794396400452, -0.8748883605003357, -0.4838118851184845, -0.15908905863761902, 0.29040104150772095, 0.16732211410999298, 0.2567131221294403, 0.02651738002896309, 0.28785502910614014, 0.6882124543190002, -0.3150532841682434, 0.6010512709617615, 0.2707236707210541, -0.1079099178314209, -0.5935164093971252, 0.8492008447647095, 0.363296777009964, 0.11267326772212982, 0.7351356744766235, 0.5156323909759521, -0.526501476764679, -0.3994413912296295, -0.32879242300987244, 0.14727187156677246, -0.7553651928901672, -0.3385487198829651, -0.7929908633232117, -0.1984497457742691, -0.9316548109054565, -0.10644137859344482, -0.017028916627168655, -0.588370680809021, -0.2119913250207901, -0.45634397864341736, 0.2490776628255844, 0.4372875988483429, -0.041282590478658676, -0.07530611008405685, -0.6298050284385681, 0.4978351891040802, 0.41985365748405457, 0.03665107488632202, 0.0282044168561697, -0.6008632183074951, 0.11058515310287476, -0.04789291322231293, -0.5031077861785889, -0.9707657098770142, 0.3250010013580322, 0.22904306650161743, 0.6658512949943542, 0.14398780465126038, 0.1917712539434433, 0.9591200351715088, -0.2226783186197281, 1.3575259447097778, 0.17976637184619904, -0.6352023482322693, 0.7466017007827759, -0.2914731502532959, 0.3665693402290344, 1.0050429105758667, 0.48243916034698486, -0.5378494262695312, -0.24636603891849518, -0.7257322669029236, -1.113909125328064, 0.8312650322914124, 0.2379593849182129, -0.04108957573771477, -0.32400184869766235, 0.2035694122314453, -0.08702848851680756, 0.006526873912662268, -0.7624927759170532, -0.8172510862350464, -0.3321455121040344, -0.36735740303993225, 0.031145518645644188, -0.016624262556433678, -0.06655590981245041, -0.42496809363365173, 0.7779908180236816, 0.19603896141052246, 0.1546807885169983, 0.5029364824295044, 0.012493817135691643, 0.13777706027030945, 0.32406774163246155, 0.629633367061615, 0.6595185399055481, -0.23890377581119537, -0.06252523511648178, 0.396247923374176, -0.8120660185813904, 0.1325918287038803, 0.08866283297538757, -0.26970791816711426, 0.06812885403633118, 0.42364978790283203, 0.29435452818870544, 0.03253370150923729, -0.6512920260429382, 0.6135825514793396, -0.03939204663038254, -0.1895301192998886, -0.4145013391971588, -0.11337003856897354, -0.24229967594146729, 0.049851056188344955, 0.4408540427684784, -0.2533496618270874, 0.2894727289676666, -0.7868312001228333, 0.3203426003456116, 0.03919123858213425, -0.29273220896720886, -0.14060276746749878, 0.6010894179344177, -0.06703993678092957, -0.07278602570295334, 0.6626543998718262, -0.024205777794122696, -0.5833956599235535, 0.7097601890563965, 0.3415016531944275, 0.47902384400367737, -0.2374299019575119, 0.23641422390937805, 0.9784102439880371, 0.15003971755504608, 0.009559852071106434, 0.6878088712692261, 0.06731825321912766, -0.36742377281188965, 0.006803767755627632, -0.8143441677093506, -0.19089460372924805, 0.08281461149454117, -0.745749294757843, 0.10443379729986191, -0.39153382182121277, -0.36962056159973145, 0.13297946751117706, 0.20557613670825958, -0.9232082962989807, 0.44890064001083374, -0.13275189697742462, 0.9138102531433105, -0.9424589276313782, 0.6713101267814636, 0.919918954372406, -0.8374286890029907, -1.153537631034851, -0.18428665399551392, -0.10610152781009674, -0.653355598449707, 0.5969996452331543, -0.12996914982795715, 0.3402649760246277, 0.0299375057220459, -0.22425533831119537, -1.075213074684143, 1.465818166732788, -0.07365816831588745, -0.5201358795166016, -0.019340915605425835, 0.5296603441238403, 0.6225166916847229, -0.019168736413121223, 0.6188612580299377, 0.742404580116272, 0.5594474077224731, 0.23891456425189972, -0.6092536449432373, 0.22840534150600433, -0.2859428822994232, -0.28576400876045227, 0.14572840929031372, -0.8245938420295715, 0.7784600853919983, -0.24625520408153534, 0.02230943739414215, -0.20599494874477386, 0.9057101607322693, 0.4297410547733307, 0.7033694386482239, 0.17967818677425385, 0.6914232969284058, 0.954164445400238, -0.3729429244995117, 0.7460256814956665, -0.33864492177963257, 0.3431459665298462, 1.0387537479400635, -0.023579100146889687, 0.9539512991905212, 0.5139654278755188, -0.6724370718002319, 0.3310137987136841, 0.6658632755279541, 0.07332633435726166, 0.5017901659011841, 0.4816681146621704, -0.052956368774175644, -0.2029399871826172, 0.1705109179019928, -0.5728367567062378, 0.6305332183837891, 0.1684361696243286, -0.4742186367511749, -0.05505094677209854, -0.2612568736076355, 0.08292990177869797, 0.24102149903774261, -0.3435230851173401, 0.7366685271263123, -0.15195409953594208, -0.9754517674446106, 0.57418292760849, -0.20735076069831848, 0.3749338388442993, -0.4353006184101105, -0.17039000988006592, -0.5112265944480896, -0.020866187289357185, -0.4549291133880615, -1.2933272123336792, 0.15800181031227112, -0.05899878218770027, -0.5079550743103027, -0.10480199754238129, 0.3954414427280426, -0.39493921399116516, -0.5318977236747742, -0.1124100610613823, 0.5449860692024231, 0.26826077699661255, 0.38491091132164, -0.8864833116531372, -0.007426918484270573, 0.007144764997065067, -0.41259944438934326, 0.2819157540798187, 0.46496137976646423, -0.010129899717867374, 0.5926411151885986, 0.8779692649841309, -0.0628037378191948, 0.3940516710281372, 0.1277788132429123, 0.7209720015525818, -0.7104706764221191, -0.5023982524871826, -0.8670681118965149, 0.7011131644248962, -0.247931569814682, -0.4648526906967163, 0.888886570930481, 0.9921965599060059, 0.810721755027771, 0.11664450913667679, 0.6788336634635925, -0.3186109662055969, 0.6669160723686218, -0.062442537397146225, 0.8249884247779846, -0.5414054989814758, 0.15584403276443481, -0.1457507163286209, -0.8433787822723389, -0.12589293718338013, 0.6035075187683105, -0.42333588004112244, -0.12104378640651703, 0.5129080414772034, 0.5418637990951538, 0.4048086106777191, 0.16095490753650665, 0.20368501543998718, 0.20712874829769135, 0.30249303579330444, 0.8857429623603821, 0.7134145498275757, -0.6726962327957153, 0.9087368249893188, -0.5388882756233215, -0.20721766352653503, -0.05183156579732895, -0.4554699659347534, -0.6677494049072266, -0.6732625961303711, -0.329075425863266, -0.5369272828102112, 0.08247997611761093, 1.011687994003296, 0.18205228447914124, -1.0063321590423584, -0.2651652991771698, 0.16576503217220306, -0.005322387907654047, -0.4357987940311432, -0.29071980714797974, 0.7252383828163147, -0.1263524889945984, -0.5396112203598022, 0.11351551860570908, -0.10936859995126724, 0.07107441127300262, 0.2250416874885559, 0.07582059502601624, -0.4749452471733093, 0.15542040765285492, 0.7361250519752502, 0.5778062343597412, -0.7808214426040649, -0.43303921818733215, 0.22265781462192535, -0.2525426149368286, 0.25465163588523865, 0.09420383721590042, -0.652877926826477, 0.26739931106567383, 0.9070397615432739, 0.5654333829879761, 0.4540388882160187, 0.5145830512046814, -0.07892345637083054, -0.5387188792228699, -0.28069695830345154, 0.44067180156707764, 0.20143628120422363, 0.01512005366384983, -0.2318396270275116, 0.5757958889007568, 0.3098009526729584, -0.71918785572052, -0.9744436740875244, -0.4062345623970032, -1.4883965253829956, -0.13742533326148987, 1.139553189277649, -0.11940494924783707, -0.29437607526779175, -0.2604350447654724, -0.16313479840755463, 0.10948562622070312, -0.4298871159553528, 0.733517050743103, 0.7113988399505615, -0.441706120967865, 0.13558009266853333, -0.6367828845977783, 0.45543766021728516, 0.24278134107589722, -1.0830416679382324, -0.012049653567373753, 0.24884207546710968, 0.32146528363227844, 0.14778363704681396, 0.6504203677177429, -0.14444857835769653, 0.2442198097705841, 0.07631050795316696, -0.1095191165804863, 0.0602143220603466, -0.12569430470466614, 0.021945063024759293, 0.59202641248703, -0.17415159940719604, -0.2306690514087677 ]
null
null
null
null
null
null
null
null
null
null
null
null
null
wmt20_mlqe_task2
null
2023-06-01T14:59:47Z
470
2
null
[ "task_categories:translation", "task_categories:text-classification", "annotations_creators:expert-generated", "annotations_creators:machine-generated", "language_creators:found", "multilinguality:translation", "size_categories:1K<n<10K", "source_datasets:extended|wikipedia", "language:de", "language:en", "language:zh", "license:unknown", "translation-quality-estimation", "arxiv:1902.08646", "region:us" ]
2023-06-01T14:59:47Z
2022-03-02T23:29:22.000Z
2022-03-02T23:29:22
--- annotations_creators: - expert-generated - machine-generated language_creators: - found language: - de - en - zh license: - unknown multilinguality: - translation size_categories: - 1K<n<10K source_datasets: - extended|wikipedia task_categories: - translation - text-classification task_ids: [] pretty_name: WMT20 - MultiLingual Quality Estimation (MLQE) Task2 tags: - translation-quality-estimation dataset_info: - config_name: en-de features: - name: translation dtype: translation: languages: - en - de - name: src_tags sequence: class_label: names: '0': BAD '1': OK - name: mt_tags sequence: class_label: names: '0': BAD '1': OK - name: pe dtype: string - name: hter dtype: float32 - name: alignments sequence: sequence: int32 splits: - name: train num_bytes: 6463930 num_examples: 7000 - name: test num_bytes: 425582 num_examples: 1000 - name: validation num_bytes: 927616 num_examples: 1000 download_size: 1377020 dataset_size: 7817128 - config_name: en-zh features: - name: translation dtype: translation: languages: - en - zh - name: src_tags sequence: class_label: names: '0': BAD '1': OK - name: mt_tags sequence: class_label: names: '0': BAD '1': OK - name: pe dtype: string - name: hter dtype: float32 - name: alignments sequence: sequence: int32 splits: - name: train num_bytes: 6786898 num_examples: 7000 - name: test num_bytes: 443740 num_examples: 1000 - name: validation num_bytes: 954710 num_examples: 1000 download_size: 1564953 dataset_size: 8185348 config_names: - en-de - en-zh --- # Dataset Card for WMT20 - MultiLingual Quality Estimation (MLQE) Task2 ## 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:** [WMT20 Quality Estimation Shared Task](http://www.statmt.org/wmt20/quality-estimation-task.html) - **Repository**: [Github repository](https://github.com/deep-spin/deep-spin.github.io/tree/master/docs/data/wmt2020_qe) - **Paper:** *Not available* ### Dataset Summary From the homepage: *This shared task (part of WMT20) will build on its previous editions to further examine automatic methods for estimating the quality of neural machine translation output at run-time, without relying on reference translations. As in previous years, we cover estimation at various levels. Important elements introduced this year include: a new task where sentences are annotated with Direct Assessment (DA) scores instead of labels based on post-editing; a new multilingual sentence-level dataset mainly from Wikipedia articles, where the source articles can be retrieved for document-wide context; the availability of NMT models to explore system-internal information for the task.* *Task 1 evaluates the application of QE for post-editing purposes. It consists of predicting:* - ***Word-level tags.*** *This is done both on source side (to detect which words caused errors) and target side (to detect mistranslated or missing words).* - ***Target.*** *Each token is tagged as either `OK` or `BAD`. Additionally, each gap between two words is tagged as `BAD` if one or more missing words should have been there, and `OK` otherwise. Note that number of tags for each target sentence is 2*N+1, where N is the number of tokens in the sentence.* - ***Source.*** *Tokens are tagged as `OK` if they were correctly translated, and `BAD` otherwise. Gaps are not tagged.* - ***Sentence-level HTER scores.*** *HTER (Human Translation Error Rate) is the ratio between the number of edits (insertions/deletions/replacements) needed and the reference translation length.* ### Supported Tasks and Leaderboards From the homepage: *For sentence-level QE, submissions are evaluated in terms of the Pearson's correlation metric for the sentence-level HTER prediction. For word-level QE, they will be evaluated in terms of MCC ([Matthews correlation coefficient](https://en.wikipedia.org/wiki/Matthews_correlation_coefficient)). These are the [official evaluation scripts](https://github.com/sheffieldnlp/qe-eval-scripts).* ### Languages There are two language pairs in this dataset: - English - German (`en` - `de`) - German - Chinese (`en` - `zh`) ## Dataset Structure ### Data Instances An example looks like this: ``` { 'translation': { 'en': 'favorite fish include cod , salmon , winter flounder , haddock , striped bass , pollock , hake , bluefish , and , in southern New England , Tautog .', 'de': 'zu den Lieblingsfischen gehören Kabeljau , Lachs , Winterflounder , Schellfisch , gestreifter Bass , Pollock , Seehecht , Rotbarsch und in Südengland Tautog .', } 'src_tags': [1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1], 'mt_tags': [1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 0, 0, 1, 0, 1, 1, 1, 1, 1], 'pe': 'zu den Lieblingsfischen zählen Kabeljau , Lachs , Winterflunder , Schellfisch , Wolfsbarsch , Pollock , Seehecht , Bluefish und im Süden Neuenglands Tautog .', 'hter': 0.3199999928474426, 'alignments': [[2, 0], [2, 1], [2, 3], [3, 2], [3, 4], [4, 5], [5, 6], [6, 5], [7, 6], [8, 6], [9, 7], [10, 8], [10, 10], [11, 9], [12, 12], [13, 13], [14, 11], [15, 12], [15, 15], [16, 14], [17, 17], [19, 16], [20, 16], [21, 20], [22, 18], [23, 19], [23, 21], [24, 22], [25, 21], [26, 22], [27, 22], [28, 23], [29, 24]], } ``` ### Data Fields - `translation`: Dictionary with pairs (source,target). - src_lg: sequence of text in source language. - tgt_lg: sequence of text in target language. - `src_tags`: source word-level tags. `0`=`BAD`, `1`=`OK`. `[]` if N/A (only for test). - `mt_tags`: target word-level tags. `0`=`BAD`, `1`=`OK`. `[]` if N/A (only for test). - `pe`: post-edited version of NMT output. `""` if N/A (only for test). - `hter`: human translation error rate. `-10_000` if N/A (only for test). - `alignments`: Word aligments. List of pairs of integers. ### Data Splits There are 2 configurations in this dataset (one for each available language pair). Each configuration is composed of 7K examples for training, 1K for validation and 1K for (blind) test. ## Dataset Creation ### Curation Rationale The original text is extracted from Wikipedia. From the homepage: *Word-level labels have been obtained by using the alignments provided by the [TER](http://www.cs.umd.edu/~snover/tercom/) tool (settings: tokenised, case insensitive, exact matching only, disabling shifts by using the `-d 0` option) between machine translations and their post-edited versions. Shifts (word order errors) were not annotated as such (but rather as deletions + insertions) to avoid introducing noise in the annotation.* *HTER values are obtained deterministically from word-level tags. However, when computing HTER, we allow shifts in TER.* *The baseline system is a neural predictor-estimator approach implemented in [OpenKiwi](https://github.com/Unbabel/OpenKiwi) ([Kepler at al., 2019](https://arxiv.org/abs/1902.08646)), where the predictor model will be trained on the parallel data used to train the NMT model.* ### 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 Unknown ### Citation Information ``` Not available. ``` ### Contributions Thanks to [@VictorSanh](https://github.com/VictorSanh) for adding this dataset.
[ -0.44028717279434204, -0.48089125752449036, 0.3218404948711395, 0.139726921916008, -0.26772576570510864, 0.005888238083571196, -0.300692617893219, -0.3515542447566986, 0.3544587790966034, 0.3130175769329071, -0.6181976795196533, -0.9651046991348267, -0.6393845677375793, 0.32770150899887085, -0.10465293377637863, 0.9926490187644958, -0.220964714884758, 0.031710170209407806, 0.038586318492889404, -0.25098106265068054, -0.5358690023422241, -0.3540860116481781, -0.46896255016326904, -0.22193816304206848, 0.594504177570343, 0.3567553758621216, 0.7204191088676453, 0.8625521659851074, 0.6518536806106567, 0.3109551668167114, -0.10691960901021957, 0.2647190988063812, -0.2910363972187042, -0.11895034462213516, -0.08742132037878036, -0.29838594794273376, -0.5960755944252014, 0.17735998332500458, 0.6567202806472778, 0.5579196810722351, 0.036457691341638565, 0.4714832305908203, 0.17619626224040985, 0.6134312748908997, -0.3797276020050049, 0.33410805463790894, -0.41453373432159424, 0.1465080827474594, -0.2619801461696625, -0.22194965183734894, -0.23530228435993195, -0.3060857653617859, -0.07113832235336304, -0.6931166052818298, -0.04548697918653488, 0.060642339289188385, 1.325311541557312, 0.21633757650852203, -0.41222435235977173, -0.11228025704622269, -0.44862034916877747, 0.9602887630462646, -1.0176036357879639, 0.32907307147979736, 0.7228527069091797, -0.009023620747029781, -0.13766376674175262, -0.7085279822349548, -0.6452120542526245, -0.026689104735851288, -0.3175974190235138, 0.5589187145233154, -0.18365344405174255, -0.11407020688056946, 0.367628812789917, 0.4267004728317261, -0.7000375390052795, -0.058198582381010056, -0.34000277519226074, -0.3372630178928375, 0.747565507888794, 0.24222639203071594, 0.43528038263320923, -0.4719531238079071, -0.34814131259918213, -0.2913689911365509, -0.3306730389595032, 0.006813278421759605, 0.22937226295471191, 0.24928799271583557, -0.41206395626068115, 0.7884666323661804, -0.15884283185005188, 0.6186655163764954, -0.10728777945041656, -0.2306426763534546, 0.742207407951355, -0.7605736255645752, -0.09470227360725403, -0.32633689045906067, 1.1920560598373413, 0.5815072059631348, 0.15173321962356567, -0.0511263906955719, -0.41554689407348633, 0.03743613511323929, -0.0900585725903511, -0.6251329183578491, -0.20572471618652344, 0.2773504853248596, -0.4457986354827881, -0.2303040474653244, 0.14694806933403015, -0.8566606640815735, 0.010658747516572475, -0.3309638500213623, 0.7310816049575806, -0.5664162635803223, -0.18419882655143738, -0.013465497642755508, -0.3041757047176361, 0.18100199103355408, -0.09720863401889801, -0.4493255019187927, 0.1323569118976593, 0.3713122606277466, 0.8527461290359497, -0.2564183473587036, -0.5320681929588318, -0.23841440677642822, 0.061329152435064316, -0.255555123090744, 0.5648350715637207, -0.2608538866043091, -0.20036017894744873, -0.10618040710687637, 0.2844306230545044, -0.16946768760681152, -0.24128352105617523, 0.6678662300109863, -0.38101211190223694, 0.553414523601532, -0.4609261453151703, -0.6482596397399902, -0.1643649786710739, 0.3246375024318695, -0.719813883304596, 1.2884713411331177, 0.3004101514816284, -1.048832654953003, 0.3446802794933319, -0.7502988576889038, -0.3379313349723816, -0.06768421083688736, 0.09240996837615967, -0.398579478263855, -0.18743523955345154, 0.2990531325340271, 0.389617919921875, -0.2668146789073944, 0.2035445123910904, 0.050713758915662766, -0.4029903709888458, 0.19219672679901123, -0.285927414894104, 1.0614525079727173, 0.23588837683200836, -0.4651242196559906, 0.22779519855976105, -0.8177096247673035, 0.11665929108858109, 0.22106274962425232, -0.425828218460083, -0.19385309517383575, -0.10052535682916641, 0.08560574054718018, 0.39048850536346436, 0.31068098545074463, -0.5710710287094116, 0.007292927708476782, -0.5087372064590454, 0.5075896978378296, 0.5759555697441101, 0.26308727264404297, 0.33133384585380554, -0.30971571803092957, 0.5706478357315063, 0.2792876660823822, 0.3117000460624695, -0.004478428512811661, -0.5773771405220032, -0.7290205359458923, -0.12180371582508087, 0.5430033206939697, 0.7467969059944153, -1.1249600648880005, 0.7863916754722595, -0.49860456585884094, -0.5450495481491089, -0.6345903873443604, -0.04829996079206467, 0.5682701468467712, 0.4617204964160919, 0.5375695824623108, -0.3096216917037964, -0.5344874858856201, -0.982774019241333, -0.05751854553818703, -0.10073024779558182, 0.17767295241355896, -0.047886092215776443, 0.6467058062553406, -0.1235150694847107, 0.7989897727966309, -0.5676233172416687, -0.2587811052799225, -0.1720481961965561, 0.07565394788980484, 0.38150402903556824, 0.5959581136703491, 0.42169684171676636, -0.7782933115959167, -0.6396027207374573, -0.10998918116092682, -0.6750645041465759, -0.15193897485733032, 0.005145830102264881, -0.43571287393569946, 0.2641074061393738, 0.32753896713256836, -0.4997888505458832, 0.32740309834480286, 0.6780185699462891, -0.5098124146461487, 0.557288646697998, -0.10432044416666031, 0.16719341278076172, -1.5595643520355225, 0.14336664974689484, 0.09436895698308945, 0.025711875408887863, -0.6081868410110474, -0.07345253229141235, 0.11449691653251648, 0.17858420312404633, -0.3804115951061249, 0.6053767800331116, -0.46327123045921326, 0.08767177909612656, 0.004876959137618542, 0.2135791927576065, 0.21482829749584198, 0.7421748638153076, -0.17394259572029114, 0.8929800391197205, 0.3710208237171173, -0.3373267650604248, 0.13734422624111176, 0.320464551448822, -0.43654587864875793, 0.44498077034950256, -0.5911791920661926, -0.11807182431221008, -0.13694623112678528, 0.029295481741428375, -1.070270299911499, -0.04774490371346474, 0.4894615113735199, -0.7565698623657227, 0.35391414165496826, 0.06459090113639832, -0.7659156918525696, -0.5031434297561646, -0.4027789831161499, 0.30088284611701965, 0.47358235716819763, -0.11248618364334106, 0.2930232882499695, 0.41599196195602417, 0.10100003331899643, -0.6327100992202759, -0.8843792676925659, 0.10517358034849167, -0.21789750456809998, -0.5029991865158081, 0.41979825496673584, -0.11324001848697662, 0.04593338817358017, 0.19313327968120575, 0.026186469942331314, -0.11655542999505997, 0.07949568331241608, 0.1571921408176422, 0.3218826949596405, -0.20085389912128448, 0.09228046983480453, -0.0555851049721241, -0.09988544136285782, -0.02603861503303051, -0.3323521614074707, 0.6462597250938416, -0.08969371020793915, -0.05615265294909477, -0.5676009058952332, 0.24425584077835083, 0.3196881115436554, -0.5311073064804077, 0.7509927153587341, 1.1980780363082886, -0.47148627042770386, 0.2254999727010727, -0.4966179132461548, -0.044664084911346436, -0.44138166308403015, 0.48319923877716064, -0.3538147509098053, -0.7416166067123413, 0.6840883493423462, 0.5127661228179932, 0.10237494856119156, 0.9462377429008484, 0.49271294474601746, -0.21662519872188568, 1.083403468132019, 0.4037511646747589, 0.059075649827718735, 0.553668737411499, -0.6140041947364807, -0.06771013885736465, -0.9469879269599915, -0.2480340152978897, -0.4103640019893646, -0.40100839734077454, -0.9420588612556458, -0.43880361318588257, 0.2905343770980835, 0.1337227076292038, -0.33531826734542847, 0.7012841701507568, -0.5047689080238342, 0.35596078634262085, 0.694722592830658, 0.08824781328439713, 0.15555086731910706, 0.04889361932873726, -0.320390909910202, -0.2844998836517334, -0.7039074301719666, -0.458686888217926, 0.9845061302185059, 0.38729292154312134, 0.20951366424560547, 0.06451942026615143, 0.7991538047790527, 0.26346004009246826, 0.3447169065475464, -0.7074469923973083, 0.5948562026023865, -0.29536426067352295, -0.5735183358192444, -0.4233706295490265, -0.6105788946151733, -1.0806964635849, 0.25439947843551636, -0.26734328269958496, -0.6739163398742676, 0.2483411282300949, 0.04539131373167038, -0.1869397908449173, 0.2250899374485016, -0.7700215578079224, 0.9769717454910278, -0.08121288567781448, -0.3279343247413635, 0.08889574557542801, -0.746902346611023, 0.17660516500473022, -0.08542454987764359, 0.3640974164009094, -0.35617342591285706, -0.113327257335186, 1.1515421867370605, -0.39730843901634216, 0.8183301091194153, -0.21468457579612732, -0.012837267480790615, 0.414986789226532, -0.06718110293149948, 0.5222611427307129, -0.25792065262794495, -0.16554078459739685, 0.27977117896080017, 0.2706943154335022, -0.4807668924331665, -0.32782745361328125, 0.460344135761261, -0.8328431844711304, -0.3243470788002014, -0.4522510766983032, -0.7443554401397705, -0.17593443393707275, 0.5003035068511963, 0.48030099272727966, 0.3951112627983093, 0.0987914502620697, 0.05331159755587578, 0.2225535660982132, -0.4501853585243225, 0.47400903701782227, 0.3580024540424347, -0.09873024374246597, -0.9189427495002747, 1.1039612293243408, 0.511771559715271, 0.242171972990036, 0.48301300406455994, 0.34871354699134827, -0.3850115239620209, -0.5845745205879211, -0.37606197595596313, 0.3339918553829193, -0.6799289584159851, -0.35645198822021484, -0.54736328125, -0.21878252923488617, -0.40239450335502625, 0.16313356161117554, -0.1292031705379486, -0.5795002579689026, -0.1827859729528427, -0.201335147023201, 0.380988210439682, 0.6456354260444641, -0.14323066174983978, 0.3609347641468048, -0.8135536909103394, 0.1525234878063202, -0.10975337028503418, 0.3286427855491638, -0.09768970310688019, -0.6631603837013245, -0.5577457547187805, 0.24103911221027374, -0.3001422584056854, -1.0211516618728638, 0.59901362657547, 0.06076028198003769, 0.5711130499839783, -0.022140469402074814, 0.045417845249176025, 0.672127366065979, -0.4014085531234741, 1.020850658416748, 0.2461821287870407, -0.9350982308387756, 0.4995863735675812, -0.467694491147995, 0.49052876234054565, 0.6289635300636292, 0.45659899711608887, -0.7262581586837769, -0.4969393014907837, -0.6580548286437988, -1.0662814378738403, 0.7271434664726257, 0.40113189816474915, 0.04175910726189613, -0.31705349683761597, 0.22615587711334229, -0.1573278307914734, 0.17750073969364166, -0.8568223714828491, -0.5610283017158508, -0.24486233294010162, -0.539176881313324, -0.2194100320339203, -0.20688079297542572, -0.05309971049427986, -0.5442589521408081, 0.8481044769287109, 0.08460907638072968, 0.36741718649864197, 0.28711408376693726, -0.1593000590801239, -0.05505555495619774, 0.17509710788726807, 0.6501452922821045, 0.6571167707443237, -0.2543027698993683, 0.1718759387731552, 0.28733548521995544, -0.6184104681015015, 0.026487814262509346, -0.015905428677797318, -0.2623405158519745, 0.07273399084806442, 0.5171434283256531, 0.8279739022254944, 0.011874818243086338, -0.3845858573913574, 0.5546690821647644, 0.10609808564186096, -0.3187016546726227, -0.32620951533317566, -0.23804712295532227, 0.06237408518791199, 0.12238622456789017, 0.14852799475193024, -0.056600719690322876, 0.05652877315878868, -0.3398554027080536, 0.3428942859172821, 0.10725591331720352, -0.5279293060302734, -0.39403703808784485, 0.5522661209106445, -0.010741326957941055, -0.19382961094379425, 0.5184071660041809, -0.5275051593780518, -0.6230495572090149, 0.6549622416496277, 0.5253673195838928, 0.8435110449790955, -0.19469523429870605, 0.2587756812572479, 0.8451923727989197, 0.5508134961128235, -0.054120320826768875, 0.6236613392829895, 0.2498166561126709, -0.7579131722450256, -0.5471324324607849, -0.7783377766609192, 0.07060553133487701, 0.13166217505931854, -0.7391921281814575, 0.13999560475349426, -0.10607645660638809, -0.4587816894054413, -0.011789476498961449, 0.23524722456932068, -0.7888570427894592, 0.2548373341560364, 0.07768812775611877, 0.9750003814697266, -0.9207333326339722, 0.9141358733177185, 0.633438766002655, -0.7235966920852661, -0.9623957872390747, 0.0438259057700634, -0.12453452497720718, -0.851414680480957, 0.6084960103034973, 0.014815320260822773, 0.26963698863983154, 0.2011396884918213, -0.3927099108695984, -1.193737506866455, 1.3763618469238281, 0.07294072210788727, -0.3429011404514313, 0.049111828207969666, 0.33662235736846924, 0.7093526721000671, -0.10940402001142502, 0.17909464240074158, 0.5677920579910278, 0.7928247451782227, -0.15899069607257843, -0.8557943105697632, 0.22446992993354797, -0.45296424627304077, 0.1461847424507141, 0.3800663948059082, -0.6032108664512634, 0.7865674495697021, 0.06196688115596771, -0.2924346327781677, -0.13475793600082397, 0.6538094282150269, 0.05108445882797241, 0.06335490196943283, 0.4570828974246979, 0.6904709339141846, 0.6152639985084534, -0.32638177275657654, 1.003392219543457, -0.4760403037071228, 0.5016932487487793, 1.039004921913147, 0.1715737134218216, 0.984586238861084, 0.4945061504840851, -0.3870525658130646, 0.32425248622894287, 0.7868378162384033, -0.3553227484226227, 0.43766582012176514, 0.18316206336021423, 0.14404398202896118, 0.05315309390425682, -0.26613983511924744, -0.2857612371444702, 0.39223673939704895, 0.2950645387172699, -0.47259142994880676, 0.028503959998488426, -0.06601369380950928, 0.3043244481086731, -0.08713720738887787, -0.2189704030752182, 0.7590472102165222, 0.06849305331707001, -0.6935909986495972, 0.7191565036773682, 0.19771994650363922, 0.7177510261535645, -0.4364832639694214, 0.07152413576841354, -0.2562754154205322, -0.026409290730953217, -0.3822372257709503, -1.1320831775665283, 0.387492835521698, -0.08249017596244812, -0.28838789463043213, -0.1422233283519745, 0.4364966154098511, -0.7073702812194824, -0.6307876110076904, 0.35049521923065186, 0.6314049959182739, 0.15541432797908783, 0.14640861749649048, -0.9677828550338745, -0.011666917242109776, 0.13558581471443176, -0.48038432002067566, 0.17932896316051483, 0.4296259880065918, -0.06986837089061737, 0.3057548999786377, 0.5024832487106323, 0.09030807018280029, 0.20075830817222595, 0.1440897434949875, 0.6252269744873047, -0.7810459733009338, -0.24517512321472168, -0.82337886095047, 0.7767598032951355, -0.14481838047504425, -0.4040568470954895, 0.8725625276565552, 0.7008323669433594, 1.0183665752410889, -0.0778675451874733, 0.6664952039718628, -0.1569901704788208, 0.40814700722694397, -0.5022796988487244, 0.7764900326728821, -0.7373253703117371, -0.01334688626229763, -0.309528112411499, -1.0049573183059692, -0.390436053276062, 0.3951916992664337, -0.46894142031669617, 0.034666962921619415, 0.8656666874885559, 0.8422641158103943, 0.10247854888439178, -0.23678694665431976, 0.2573351562023163, 0.39493823051452637, 0.11339911818504333, 0.615909993648529, 0.6554663777351379, -0.8185500502586365, 0.5836559534072876, -0.7469782829284668, -0.010317199863493443, 0.12211451679468155, -0.7613539695739746, -0.625201940536499, -0.9596470594406128, -0.5392515659332275, -0.49591967463493347, 0.021714983507990837, 1.094232439994812, 0.41885247826576233, -0.8864986300468445, -0.3240702748298645, 0.08010479807853699, -0.0011235992424190044, -0.38220134377479553, -0.2774012088775635, 0.7399767637252808, -0.21152858436107635, -0.7500638365745544, 0.1583818793296814, 0.050236962735652924, 0.08440160751342773, 0.046589333564043045, -0.16565251350402832, -0.3877721428871155, -0.09572295844554901, 0.6476181745529175, 0.034251607954502106, -0.7257818579673767, -0.26379886269569397, 0.06118253618478775, -0.3631756007671356, 0.25091636180877686, 0.11170479655265808, -0.29239824414253235, 0.3137921988964081, 0.7389286756515503, 0.31296780705451965, 0.35149553418159485, -0.07691450417041779, 0.3582710325717926, -0.851307213306427, -0.056621916592121124, 0.20958222448825836, 0.42784467339515686, 0.2540314793586731, -0.1467282474040985, 0.6675075888633728, 0.3550876975059509, -0.47211194038391113, -0.8769372701644897, -0.06930948048830032, -1.1537991762161255, -0.10153136402368546, 1.3039815425872803, -0.21810974180698395, -0.3832077085971832, -0.06494386494159698, -0.16871145367622375, 0.6127779483795166, -0.2511799931526184, 0.48493024706840515, 0.826509952545166, 0.14351598918437958, -0.1107788011431694, -0.8116745948791504, 0.5071109533309937, 0.29562854766845703, -0.8196501731872559, -0.16756539046764374, 0.3024252951145172, 0.35890376567840576, 0.28512945771217346, 0.5453259348869324, -0.3280697762966156, 0.022344814613461494, -0.06584390997886658, 0.5348963737487793, -0.08826681971549988, 0.014929131604731083, -0.23943057656288147, -0.03461077809333801, 0.02526555024087429, -0.3001788854598999 ]
null
null
null
null
null
null
null
null
null
null
null
null
null
gsarti/itacola
gsarti
2022-07-01T15:38:55Z
470
1
null
[ "task_categories:text-classification", "task_ids:acceptability-classification", "annotations_creators:expert-generated", "language_creators:expert-generated", "multilinguality:monolingual", "size_categories:unknown", "source_datasets:original", "language:it", "license:unknown", "arxiv:2109.12053", "region:us" ]
2022-07-01T15:38:55Z
2022-03-02T23:29:22.000Z
2022-03-02T23:29:22
--- annotations_creators: - expert-generated language_creators: - expert-generated language: - it license: - unknown multilinguality: - monolingual pretty_name: itacola size_categories: - unknown source_datasets: - original task_categories: - text-classification task_ids: - acceptability-classification --- # Dataset Card for ItaCoLA ## Table of Contents - [Dataset Card for ItaCoLA](#dataset-card-for-itacola) - [Table of Contents](#table-of-contents) - [Dataset Description](#dataset-description) - [Dataset Summary](#dataset-summary) - [Supported Tasks and Leaderboards](#supported-tasks-and-leaderboards) - [Acceptability Classification](#acceptability-classification) - [Languages](#languages) - [Dataset Structure](#dataset-structure) - [Data Instances](#data-instances) - [Scores Configuration](#scores-configuration) - [Phenomena Configuration](#phenomena-configuration) - [Data Splits](#data-splits) - [Dataset Creation](#dataset-creation) - [Additional Information](#additional-information) - [Dataset Curators](#dataset-curators) - [Licensing Information](#licensing-information) - [Citation Information](#citation-information) ## Dataset Description - **Repository:** [Github](https://github.com/dhfbk/ItaCoLA-dataset) - **Paper:** [Arxiv](http://ceur-ws.org/Vol-2765/paper169.pdf) - **Point of Contact:** [Daniela Trotta](dtrotta@unisa.it) ### Dataset Summary The Italian Corpus of Linguistic Acceptability includes almost 10k sentences taken from linguistic literature with a binary annotation made by the original authors themselves. The work is inspired by the English [Corpus of Linguistic Acceptability](https://nyu-mll.github.io/CoLA/). **Disclaimer**: *The ItaCoLA corpus is hosted on Github by the [Digital Humanities group at FBK](https://dh.fbk.eu/)*. It was introduced in the article [Monolingual and Cross-Lingual Acceptability Judgments with the Italian CoLA corpus](https://arxiv.org/abs/2109.12053) by [Daniela Trotta](https://dh.fbk.eu/author/daniela/), [Raffaele Guarasci](https://www.icar.cnr.it/persone/guarasci/), [Elisa Leonardelli](https://dh.fbk.eu/author/elisa/), [Sara Tonelli](https://dh.fbk.eu/author/sara/) ### Supported Tasks and Leaderboards #### Acceptability Classification The following table is taken from Table 4 of the original paper, where an LSTM and a BERT model pretrained on the Italian languages are fine-tuned on the `train` split of the corpus and evaluated respectively on the `test` split (*In-domain*, `in`) and on the acceptability portion of the [AcCompl-it] corpus (*Out-of-domain*, `out`). Models are evaluated with accuracy (*Acc.*) and Matthews Correlation Coefficient (*MCC*) in both settings. Results are averaged over 10 runs with ±stdev. error bounds. | | `in`, Acc.| `in`, MCC| `out`, Acc.|`out`, MCC| |---------:|-----------:|----------:|-----------:|---------:| |`LSTM` | 0.794 | 0.278 ± 0.029 | 0.605 | 0.147 ± 0.066 | |`ITA-BERT`| 0.904 | 0.603 ± 0.022 | 0.683 | 0.198 ± 0.036 | ### Languages The language data in ItaCoLA is in Italian (BCP-47 `it`) ## Dataset Structure ### Data Instances #### Scores Configuration The `scores` configuration contains sentences with acceptability judgments. An example from the `train` split of the `scores` config (default) is provided below. ```json { "unique_id": 1, "source": "Graffi_1994", "acceptability": 1, "sentence": "Quest'uomo mi ha colpito." } ``` The text is provided as-is, without further preprocessing or tokenization. The fields are the following: - `unique_id`: Unique identifier for the sentence across configurations. - `source`: Original source for the sentence. - `acceptability`: Binary score, 1 = acceptable, 0 = not acceptable. - `sentence`: The evaluated sentence. #### Phenomena Configuration The `phenomena` configuration contains a sample of sentences from `scores` that has been manually annotated to denote the presence of 9 linguistic phenomena. An example from the `train` split is provided below: ```json { "unique_id": 1, "source": "Graffi_1994", "acceptability": 1, "sentence": "Quest'uomo mi ha colpito.", "cleft_construction": 0, "copular_construction": 0, "subject_verb_agreement": 1, "wh_islands_violations": 0, "simple": 0, "question": 0, "auxiliary": 1, "bind": 0, "indefinite_pronouns": 0 } ``` For each one of the new fields, the value of the binary score denotes the presence (1) or the absence (0) of the respective phenomenon. Refer to the original paper for a detailed description of each phenomenon. ### Data Splits | config| train| test| |----------:|-----:|----:| |`scores` | 7801 | 975 | |`phenomena`| 2088 | - | ### Dataset Creation Please refer to the original article [Monolingual and Cross-Lingual Acceptability Judgments with the Italian CoLA corpus](https://arxiv.org/abs/2109.12053) for additional information on dataset creation. ## Additional Information ### Dataset Curators The authors are the curators of the original dataset. For problems or updates on this 🤗 Datasets version, please contact [gabriele.sarti996@gmail.com](mailto:gabriele.sarti996@gmail.com). ### Licensing Information No licensing information available. ### Citation Information Please cite the authors if you use these corpora in your work: ```bibtex @inproceedings{trotta-etal-2021-monolingual-cross, title = "Monolingual and Cross-Lingual Acceptability Judgments with the {I}talian {C}o{LA} corpus", author = "Trotta, Daniela and Guarasci, Raffaele and Leonardelli, Elisa and Tonelli, Sara", booktitle = "Findings of the Association for Computational Linguistics: EMNLP 2021", month = nov, year = "2021", address = "Punta Cana, Dominican Republic", publisher = "Association for Computational Linguistics", url = "https://aclanthology.org/2021.findings-emnlp.250", doi = "10.18653/v1/2021.findings-emnlp.250", pages = "2929--2940" } ```
[ -0.5019131302833557, -0.5549906492233276, 0.3099241852760315, 0.43436199426651, -0.09744849801063538, -0.12057740241289139, -0.5776684880256653, -0.6573255658149719, 0.6042419075965881, 0.13263088464736938, -0.3339843153953552, -0.8702524900436401, -0.6862139701843262, 0.3270571529865265, -0.3122369050979614, 0.9852177500724792, -0.2629377841949463, 0.13809065520763397, -0.07263117283582687, -0.3996911644935608, -0.28527188301086426, -0.5394501686096191, -0.5460309386253357, -0.15354591608047485, 0.4018058776855469, 0.25483429431915283, 0.6429286003112793, 0.4805818796157837, 0.31242936849594116, 0.2889278829097748, -0.2809299826622009, 0.005495571531355381, -0.0683402568101883, -0.06773097813129425, -0.18188729882240295, -0.3717076778411865, -0.6354270577430725, 0.012250610627233982, 0.8611657023429871, 0.8009656667709351, -0.1007314920425415, -0.0030427719466388226, 0.2077469676733017, 0.6473260521888733, -0.35335206985473633, 0.42212414741516113, -0.6508139967918396, 0.14670410752296448, -0.24734921753406525, 0.06636599451303482, -0.5737473368644714, -0.3859238624572754, -0.029619917273521423, -0.7927172780036926, 0.036553915590047836, 0.14555539190769196, 1.0229675769805908, 0.031138243153691292, -0.1448644995689392, -0.47968316078186035, -0.32457220554351807, 0.5964049100875854, -0.7530738711357117, 0.47931891679763794, 0.636413037776947, 0.01928599365055561, -0.17647410929203033, -0.37530094385147095, -0.7682895064353943, -0.28498896956443787, -0.44382408261299133, 0.2670762240886688, -0.32146960496902466, -0.14632035791873932, 0.22194306552410126, 0.4041813910007477, -0.7300331592559814, 0.18558089435100555, -0.5490295886993408, -0.32848861813545227, 0.7454487681388855, 0.11263307183980942, 0.3192574381828308, -0.26933857798576355, -0.11442691087722778, 0.035312071442604065, -0.5099606513977051, 0.17837078869342804, 0.4371856153011322, 0.6647719740867615, -0.4612509310245514, 0.7518368363380432, -0.1764964610338211, 0.7009616494178772, -0.07659036666154861, 0.32347625494003296, 0.8611850142478943, -0.6204527020454407, -0.10109724849462509, 0.17435197532176971, 1.20334792137146, 0.17854952812194824, 0.3174009323120117, -0.09848707914352417, 0.10935910046100616, -0.0865587666630745, 0.12010908126831055, -0.3977319300174713, 0.047550417482852936, 0.5289223194122314, -0.38687944412231445, 0.006228962447494268, 0.010009370744228363, -0.9030581116676331, -0.06938520073890686, -0.1171141192317009, 0.24897196888923645, -0.7431004047393799, -0.3205542266368866, 0.02266964688897133, 0.04754878208041191, 0.19036301970481873, -0.025822838768363, -0.8523769378662109, 0.20439068973064423, 0.3379440903663635, 0.9325157403945923, -0.3191066384315491, -0.6511173248291016, -0.1738683134317398, -0.16972509026527405, -0.250966340303421, 0.671229898929596, -0.3074972927570343, -0.5973466038703918, -0.001846540835686028, 0.19507524371147156, -0.6452073454856873, -0.4022873640060425, 0.9744119048118591, -0.27801376581192017, 0.40002644062042236, -0.1914445012807846, -0.513900876045227, -0.13588187098503113, 0.49401938915252686, -0.7028480768203735, 1.0351558923721313, 0.10400586575269699, -0.7188268303871155, 0.4903484582901001, -0.7976968288421631, -0.4726899564266205, -0.2523326873779297, -0.043659258633852005, -0.4092092216014862, -0.1476738303899765, -0.0025236429646611214, 0.21264486014842987, -0.10064083337783813, 0.275447815656662, -0.4721335172653198, -0.07269252836704254, 0.27520355582237244, -0.313995897769928, 1.2975499629974365, 0.40250638127326965, -0.364317387342453, -0.050023153424263, -1.0375357866287231, 0.27318075299263, -0.026290835812687874, -0.525660514831543, -0.27623307704925537, -0.02409038506448269, 0.13760103285312653, 0.23160631954669952, 0.20865212380886078, -0.5378131866455078, 0.1834414303302765, -0.522681474685669, 0.2553460896015167, 0.5886353850364685, -0.36507725715637207, 0.33626464009284973, -0.22718404233455658, 0.30535170435905457, 0.24503737688064575, 0.20139479637145996, -0.0031736900564283133, -0.605334460735321, -0.9305412173271179, -0.5357751846313477, 0.49038106203079224, 0.7292294502258301, -0.6490493416786194, 0.8877102732658386, -0.3185853958129883, -0.633987307548523, -0.7702419757843018, -0.059754811227321625, 0.4157751500606537, 0.36618658900260925, 0.527923047542572, -0.21690526604652405, -0.5831989049911499, -0.8840155601501465, -0.23145824670791626, -0.302482545375824, 0.29799818992614746, 0.26468998193740845, 0.6434930562973022, -0.25477930903434753, 0.8158376812934875, -0.27254295349121094, -0.3925957679748535, -0.078852578997612, 0.003494524396955967, 0.54453444480896, 0.8244373798370361, 0.7771471738815308, -0.7700182199478149, -0.5300792455673218, 0.0473160520195961, -0.9225882291793823, 0.018444500863552094, 0.23353998363018036, 0.014981693588197231, 0.537628173828125, 0.08876967430114746, -0.4551982283592224, 0.4371347427368164, 0.6008394360542297, -0.7979425191879272, 0.4294959008693695, -0.4064052402973175, 0.5353161096572876, -1.3453922271728516, 0.14857132732868195, 0.06418828666210175, 0.005743765737861395, -0.6312974095344543, 0.022118903696537018, -0.20739705860614777, 0.3403998613357544, -0.3884386420249939, 0.5656426548957825, -0.39586058259010315, -0.04636811837553978, 0.3103325068950653, 0.16685791313648224, -0.0697992593050003, 0.4827170968055725, 0.23646681010723114, 0.6151375770568848, 0.7057512998580933, -0.5942017436027527, -0.05977168306708336, 0.48066821694374084, -0.5355483889579773, 0.6526973843574524, -0.6502136588096619, -0.18108214437961578, -0.09907357394695282, -0.03188488259911537, -1.2035108804702759, -0.026200583204627037, 0.6100546717643738, -0.6792506575584412, 0.15932925045490265, 0.06999552249908447, -0.6212645769119263, -0.16984997689723969, -0.14590871334075928, 0.4464862048625946, 0.1349688470363617, -0.44564783573150635, 0.657005786895752, 0.1790064424276352, -0.033965256065130234, -0.5322752594947815, -1.0368911027908325, -0.0590701550245285, -0.2435481697320938, -0.5441280603408813, 0.35351166129112244, -0.5925386548042297, -0.258029967546463, 0.09126688539981842, 0.23000332713127136, -0.3943745195865631, 0.15625706315040588, 0.195861354470253, 0.2994178533554077, -0.1960982084274292, -0.10019141435623169, 0.1524168848991394, -0.07772351801395416, -0.23825928568840027, -0.17758895456790924, 0.5075446367263794, -0.1964544653892517, -0.13819311559200287, -0.505974292755127, 0.491416335105896, 0.5855644941329956, -0.08316314965486526, 0.8716410994529724, 0.5532305836677551, -0.3051273822784424, 0.24444718658924103, -0.17975245416164398, 0.2876211404800415, -0.39910975098609924, 0.0724031925201416, -0.6350838541984558, -0.8380995988845825, 0.8570044040679932, 0.6539955735206604, 0.0982380136847496, 0.8231785297393799, 0.5562847256660461, -0.07390441000461578, 0.9092271327972412, 0.2842905521392822, -0.12468433380126953, 0.4746840298175812, -0.3302364945411682, 0.009265204891562462, -0.730068027973175, -0.3661527633666992, -1.121269941329956, -0.10750327259302139, -1.1403963565826416, -0.2524520456790924, 0.3109337091445923, -0.03180744871497154, -0.23683372139930725, 0.5152103900909424, -0.33437779545783997, 0.22973941266536713, 0.5069156885147095, 0.13918326795101166, 0.5231386423110962, 0.01715826988220215, -0.46736714243888855, -0.16888460516929626, -0.7549326419830322, -0.3206222653388977, 1.0392136573791504, 0.24851137399673462, 0.2881167232990265, 0.3170692026615143, 0.6259639859199524, 0.2808782458305359, 0.24473614990711212, -0.6834632158279419, 0.396321177482605, -0.36103054881095886, -0.8853824734687805, -0.10875740647315979, -0.5592361688613892, -0.975434422492981, 0.3048545718193054, -0.3436887860298157, -1.051360011100769, 0.5449911952018738, 0.1620534062385559, -0.1606966108083725, 0.024688029661774635, -0.8708203434944153, 1.0404751300811768, -0.25662121176719666, -0.24835458397865295, -0.07350113987922668, -0.5014800429344177, 0.05536247044801712, 0.01134871132671833, 0.600647509098053, 0.011988000944256783, 0.0028579116333276033, 0.7189733386039734, -0.24669525027275085, 0.786636233329773, -0.10545969009399414, -0.0764210894703865, 0.27732497453689575, 0.10346945375204086, 0.3162229061126709, 0.019963396713137627, -0.5887224674224854, 0.8317601084709167, 0.28546956181526184, -0.4898652136325836, -0.36284390091896057, 0.7071613669395447, -0.8048515915870667, -0.29880157113075256, -0.6454029083251953, -0.5699326992034912, -0.13413576781749725, 0.4590902626514435, 0.5444490909576416, 0.25779515504837036, -0.09689417481422424, 0.07987969368696213, 0.5022696256637573, -0.353572279214859, 0.3360934853553772, 0.7246217131614685, -0.21080388128757477, -0.677595317363739, 0.7289032936096191, 0.38433629274368286, 0.2578706443309784, 0.3998473584651947, -0.038541827350854874, -0.30705228447914124, -0.8086705803871155, -0.4326404333114624, 0.24634034931659698, -0.43690812587738037, 0.11505865305662155, -0.5452944040298462, -0.09538163244724274, -0.5942345857620239, 0.027378421276807785, -0.29319462180137634, -0.6257412433624268, -0.31871774792671204, -0.28576672077178955, 0.21158549189567566, 0.3292796313762665, -0.23430003225803375, 0.19156864285469055, -0.6197361946105957, 0.04804936423897743, -0.3563903272151947, 0.632779061794281, -0.413433700799942, -0.8419729471206665, -0.3455794155597687, 0.2703150808811188, 0.05064009875059128, -0.6545640826225281, 0.3878694772720337, 0.2644219696521759, 0.7905020117759705, 0.17453686892986298, -0.10163666307926178, 0.7392677664756775, -0.37605929374694824, 1.0314074754714966, 0.14813415706157684, -1.0187629461288452, 0.6818443536758423, -0.2671428918838501, 0.15944790840148926, 1.00249445438385, 0.7783143520355225, -0.36860331892967224, -0.5550177097320557, -0.7085146903991699, -1.0128850936889648, 0.8929606080055237, 0.4000719487667084, 0.06387260556221008, -0.19560298323631287, 0.29682543873786926, 0.1307462751865387, 0.2305707484483719, -1.0150808095932007, -0.6715884804725647, -0.18541979789733887, -0.43062201142311096, -0.33181917667388916, -0.06258180737495422, -0.0030224693473428488, -0.4264677166938782, 0.9145978093147278, -0.019603736698627472, 0.4339700937271118, 0.42137208580970764, -0.12054897099733353, 0.21942006051540375, 0.42834487557411194, 0.6186273097991943, 0.5189316868782043, -0.3088565766811371, 0.00813587848097086, 0.06482335925102234, -0.46627745032310486, -0.028240416198968887, 0.35501226782798767, -0.40570691227912903, 0.19441315531730652, 0.47823259234428406, 0.8261198401451111, 0.07911781221628189, -0.7078207731246948, 0.31500667333602905, -0.2159678041934967, -0.3738827109336853, -0.569056510925293, 0.07043693959712982, -0.36058497428894043, 0.26361480355262756, 0.10240691155195236, 0.12987956404685974, 0.21495826542377472, -0.6190705299377441, 0.22169916331768036, 0.1842820644378662, -0.5931190252304077, -0.4348812699317932, 0.5844123959541321, -0.1167948916554451, -0.20910832285881042, 0.4541845917701721, -0.41503989696502686, -0.335970014333725, 0.470357209444046, 0.5359830856323242, 0.7828006148338318, -0.242385134100914, 0.33410710096359253, 0.7996608018875122, 0.49277210235595703, -0.03544420748949051, 0.275456964969635, -0.10569814592599869, -1.1629635095596313, -0.05313050001859665, -0.5725920796394348, -0.024294855073094368, -0.18342225253582, -0.7359740138053894, 0.2567703127861023, -0.3681057095527649, -0.0011382575612515211, 0.14556655287742615, -0.07430440187454224, -0.5394130945205688, 0.14865581691265106, -0.10419542342424393, 1.0791875123977661, -0.9910231232643127, 0.8806285262107849, 0.8163362741470337, -0.887319803237915, -0.8335707187652588, -0.1679200977087021, -0.0615493468940258, -0.8378232717514038, 0.44569677114486694, -0.0820193737745285, 0.315339058637619, -0.16460755467414856, -0.15626689791679382, -0.7075448632240295, 0.9364510774612427, 0.46067339181900024, -0.531083881855011, 0.003999923821538687, 0.37719210982322693, 0.8312590718269348, -0.44374188780784607, 0.6054103970527649, 0.7585940957069397, 0.7146511077880859, 0.05157903581857681, -1.161200761795044, 0.014727737754583359, -0.5566280484199524, -0.27430784702301025, -0.0600644089281559, -0.860139012336731, 0.7479265332221985, -0.08101383596658707, 0.07168832421302795, 0.18872514367103577, 0.5214477777481079, 0.33403539657592773, 0.5928149819374084, 0.612247109413147, 0.7507927417755127, 0.8316330909729004, -0.3191554546356201, 0.920731782913208, -0.2940017282962799, 0.5550191402435303, 1.2088466882705688, -0.0025760571006685495, 0.9453081488609314, 0.5266807675361633, -0.4051700532436371, 0.6978805065155029, 0.7929654121398926, 0.10556063801050186, 0.3885002136230469, -0.11689218133687973, -0.038654815405607224, -0.02619342692196369, -0.11764127761125565, -0.4032435715198517, 0.6723803281784058, 0.3956730365753174, -0.6757350564002991, -0.057887833565473557, 0.13686983287334442, 0.36132752895355225, 0.1530941128730774, -0.22369226813316345, 0.6267955899238586, -0.047060295939445496, -0.7996500134468079, 0.853980541229248, -0.22597870230674744, 0.5844036340713501, -0.6402897834777832, 0.16433842480182648, -0.32736900448799133, -0.009542161598801613, -0.47918111085891724, -1.0020315647125244, 0.5848391652107239, 0.23090697824954987, -0.4768848717212677, -0.12721073627471924, 0.12851782143115997, -0.5783331990242004, -0.6609566807746887, 0.60099196434021, 0.4131232798099518, 0.3099554777145386, 0.3003481924533844, -0.8496521711349487, 0.22828224301338196, 0.3339359760284424, -0.24998174607753754, 0.21344909071922302, 0.3112054169178009, 0.15232841670513153, 0.41678526997566223, 0.29709574580192566, 0.3621746301651001, 0.13003674149513245, 0.024658439680933952, 0.6476483941078186, -0.6624444723129272, -0.494293749332428, -0.66805499792099, 0.8098534345626831, -0.07031004130840302, -0.507426381111145, 0.761703610420227, 0.7457250356674194, 1.1048190593719482, 0.19119319319725037, 0.8741286993026733, -0.6868968605995178, 0.4876555800437927, -0.5742394328117371, 0.5626367330551147, -0.790385901927948, 0.4121198058128357, -0.3412438631057739, -0.821478545665741, -0.45822209119796753, 0.5593639612197876, -0.4548807144165039, 0.15355437994003296, 0.7948998808860779, 0.8772227168083191, 0.06680372357368469, -0.00009805957961361855, 0.1636521965265274, 0.6466937065124512, 0.19743722677230835, 0.624333918094635, 0.4193607568740845, -0.7742692828178406, 0.5409820079803467, -0.17099173367023468, -0.14549431204795837, 0.10832720994949341, -0.7839787006378174, -0.6038517355918884, -1.0350900888442993, -0.4544178545475006, -0.7403272986412048, 0.09104538708925247, 1.0715276002883911, 0.3982654809951782, -1.2191544771194458, -0.30293911695480347, -0.07225240767002106, 0.27511996030807495, -0.3430381119251251, -0.27531182765960693, 0.31410667300224304, -0.2650642395019531, -0.9709866046905518, 0.23037435114383698, -0.18673047423362732, -0.12758930027484894, 0.04563251510262489, -0.19298984110355377, -0.4798372685909271, -0.24182318150997162, 0.5768353343009949, 0.39747723937034607, -0.413444846868515, -0.4920918643474579, -0.10952956229448318, 0.0704052671790123, 0.2540512681007385, 0.3416200876235962, -0.39180105924606323, 0.6106149554252625, 0.487078458070755, 0.40615177154541016, 0.3897942006587982, -0.32864147424697876, 0.2943374812602997, -0.5925412178039551, 0.3088063895702362, -0.008481014519929886, 0.6486124992370605, 0.16560208797454834, -0.34026241302490234, 0.7181568741798401, 0.3526829481124878, -0.34888577461242676, -0.7773420810699463, -0.12387355417013168, -1.3573843240737915, -0.07735586911439896, 1.283146858215332, -0.4477695822715759, -0.2104727029800415, -0.018338067457079887, -0.020454389974474907, 0.19976532459259033, -0.5023112893104553, 0.8333348035812378, 0.8713791370391846, -0.17485173046588898, 0.07589302211999893, -0.4196988046169281, 0.22505690157413483, 0.38090938329696655, -1.0008655786514282, -0.19921495020389557, 0.5775735974311829, 0.4260467290878296, 0.48621073365211487, 0.6415790915489197, -0.3712693452835083, 0.21127457916736603, -0.1129218265414238, 0.14197394251823425, 0.1132197454571724, -0.18901944160461426, -0.5196224451065063, 0.14968904852867126, 0.18322236835956573, -0.1157391294836998 ]
null
null
null
null
null
null
null
null
null
null
null
null
null
iohadrubin/mtop
iohadrubin
2022-01-01T20:54:04Z
470
0
null
[ "region:us" ]
2022-01-01T20:54:04Z
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
ncslgr
null
2022-11-03T16:16:28Z
469
4
null
[ "task_categories:translation", "annotations_creators:expert-generated", "language_creators:expert-generated", "multilinguality:translation", "size_categories:n<1K", "source_datasets:original", "language:ase", "language:en", "license:mit", "region:us" ]
2022-11-03T16:16:28Z
2022-03-02T23:29:22.000Z
2022-03-02T23:29:22
--- annotations_creators: - expert-generated language_creators: - expert-generated language: - ase - en license: - mit multilinguality: - translation size_categories: - n<1K source_datasets: - original task_categories: - translation task_ids: [] paperswithcode_id: null pretty_name: NCSLGR dataset_info: - config_name: entire_dataset features: - name: eaf dtype: string - name: sentences sequence: - name: gloss dtype: string - name: text dtype: string - name: videos sequence: string splits: - name: train num_bytes: 783504 num_examples: 870 download_size: 4113829143 dataset_size: 783504 - config_name: annotations features: - name: eaf dtype: string - name: sentences sequence: - name: gloss dtype: string - name: text dtype: string - name: videos sequence: string splits: - name: train num_bytes: 371725 num_examples: 870 download_size: 5335358 dataset_size: 371725 --- # Dataset Card for NCSLGR ## 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.bu.edu/asllrp/ncslgr.html - **Repository:** - **Paper:** - **Leaderboard:** - **Point of Contact:** ### Dataset Summary A small corpus of American Sign Language (ASL) video data from native signers, annotated with non-manual features. ### Supported Tasks and Leaderboards [More Information Needed] ### Languages - American Sign Language - English ## Dataset Structure ### Data Instances [More Information Needed] ### Data Fields - eaf: path to an ELAN annotation file - videos: sequence of strings to video paths - sentences: sequence of parallel sentences - gloss: American Sign Language gloss annotations - text: English text ### Data Splits None ## Dataset Creation ### Curation Rationale [More Information Needed] ### Source Data #### Initial Data Collection and Normalization [More Information Needed] #### Who are the source language producers? [More Information Needed] ### Annotations #### Annotation process [More Information Needed] #### Who are the annotators? [More Information Needed] ### Personal and Sensitive Information [More Information Needed] ## Considerations for Using the Data ### Social Impact of Dataset [More Information Needed] ### Discussion of Biases [More Information Needed] ### Other Known Limitations [More Information Needed] ## Additional Information ### Dataset Curators [More Information Needed] ### Licensing Information [More Information Needed] ### Citation Information ```bibtex @misc{dataset:databases2007volumes, title={Volumes 2--7}, author={Databases, NCSLGR}, year={2007}, publisher={American Sign Language Linguistic Research Project (Distributed on CD-ROM~…} } ``` ### Contributions Thanks to [@AmitMY](https://github.com/AmitMY) for adding this dataset.
[ -0.22826732695102692, -0.19285745918750763, -0.15330524742603302, 0.19199971854686737, -0.469579815864563, 0.31055331230163574, -0.22903358936309814, -0.4977230429649353, 0.6344965100288391, 0.5521106719970703, -0.6855216026306152, -1.2008450031280518, -0.7465357184410095, 0.24281692504882812, -0.23340925574302673, 1.096497654914856, 0.07800807803869247, 0.030658859759569168, -0.04381927102804184, -0.25663042068481445, -0.15461938083171844, -0.3904051184654236, -0.720816969871521, -0.2628505825996399, 0.09656504541635513, 0.6479608416557312, 0.7039352059364319, 0.6852570176124573, 0.44866523146629333, 0.21780510246753693, -0.17698808014392853, 0.025446156039834023, -0.4674900472164154, -0.21224376559257507, 0.05960392206907272, -0.15356814861297607, -0.8870978355407715, -0.031536053866147995, 0.8106701970100403, 0.6230964064598083, -0.1471158117055893, 0.6432444453239441, 0.07318601757287979, 0.5890036225318909, -0.23235921561717987, 0.5686758756637573, -0.3682398796081543, 0.08225947618484497, -0.5393454432487488, -0.08534465730190277, -0.07595255225896835, -0.5248699188232422, -0.28750938177108765, -0.7192472815513611, 0.39866819977760315, 0.04369618743658066, 0.7844085693359375, 0.12886250019073486, -0.4035496413707733, -0.27345022559165955, -0.27199697494506836, 0.6547836661338806, -0.9413498640060425, 0.29480665922164917, 0.6065027117729187, 0.3345857560634613, 0.16640514135360718, -0.7598101496696472, -0.48312416672706604, 0.140690416097641, -0.20611809194087982, 0.1956452876329422, -0.10706538707017899, 0.06322221457958221, 0.7056154012680054, 0.36361995339393616, -0.900632381439209, -0.21350489556789398, -0.8387861251831055, -0.41825321316719055, 1.1681900024414062, 0.3706960082054138, 0.34629568457603455, -0.4322938323020935, -0.21486735343933105, -0.3918886184692383, -0.47020426392555237, -0.07467886060476303, 0.3962722420692444, 0.728701114654541, -0.8531241416931152, 0.5514827966690063, -0.23587894439697266, 0.8360359072685242, -0.15166141092777252, -0.05380099266767502, 0.8439993858337402, -0.7854399085044861, 0.03450663015246391, 0.19082584977149963, 0.8215636610984802, 0.5194253325462341, -0.03573259711265564, 0.19458940625190735, -0.08754127472639084, -0.14135503768920898, -0.19598166644573212, -0.602333128452301, -0.2638052701950073, 0.27926960587501526, -0.7120940089225769, -0.04458749294281006, 0.38185301423072815, -0.9680547118186951, -0.31288203597068787, -0.5077452659606934, -0.20756961405277252, -0.08344189822673798, -0.42267510294914246, 0.03659439459443092, -0.23125314712524414, 0.5305367112159729, 0.013835419900715351, -0.6500558853149414, 0.6625025272369385, 0.5515597462654114, 1.0035784244537354, -0.37456679344177246, -0.06359050422906876, -0.2743312418460846, 0.15375949442386627, 0.1077360212802887, 0.4633517861366272, -0.2916112244129181, -0.5205984711647034, 0.06064046174287796, 0.2662682831287384, -0.01101099606603384, -0.21456588804721832, 0.7414034008979797, -0.2205231785774231, 0.13507135212421417, -0.5978619456291199, -0.2551720440387726, 0.14066709578037262, 0.13156484067440033, -0.7996366620063782, 1.2314224243164062, 0.02567223086953163, -0.5614531636238098, 0.39228615164756775, -1.0506484508514404, -0.5106282830238342, 0.31029289960861206, -0.3515792489051819, -0.36675283312797546, -0.4239119589328766, -0.07295132428407669, 0.45603612065315247, -0.4134514331817627, 0.17672425508499146, -0.010409881360828876, -0.10353279113769531, -0.23971347510814667, -0.18232066929340363, 1.3737759590148926, 0.3134688138961792, -0.3213995397090912, 0.07742439210414886, -1.0454374551773071, -0.0028190186712890863, 0.12369315326213837, -0.2330208420753479, -0.16040462255477905, -0.30995360016822815, 0.38086727261543274, 0.33662357926368713, 0.5383857488632202, -0.5633202195167542, -0.019841646775603294, -0.09780614823102951, 0.10672031342983246, 0.5337575674057007, 0.08755874633789062, 0.29562777280807495, -0.1477462649345398, 0.8190258741378784, 0.004107021726667881, 0.5367153882980347, 0.31074610352516174, -0.7507787346839905, -0.5205833911895752, 0.05419366434216499, 0.12454947829246521, 0.45614299178123474, -0.8417991399765015, 0.5798535346984863, -0.3640851378440857, -0.5841798782348633, -0.3779052495956421, 0.1373991072177887, 0.7483712434768677, 0.24771101772785187, 0.5097435116767883, -0.6806011199951172, -0.7510885000228882, -0.6476895809173584, 0.05515482649207115, -0.14753007888793945, 0.2221461534500122, 0.4448000192642212, 0.6555361747741699, 0.16318659484386444, 0.5552732944488525, -0.7267999053001404, -0.3948131501674652, -0.23359929025173187, 0.14190684258937836, 0.49176934361457825, 0.5007685422897339, 0.5754278302192688, -0.926521897315979, -0.7416780591011047, -0.07866615056991577, -0.6365259885787964, -0.2987091839313507, -0.19699612259864807, -0.1385430097579956, 0.12515226006507874, 0.4112999439239502, -0.14305028319358826, 0.7397276759147644, 0.8686014413833618, -0.9646390080451965, 0.7735742926597595, 0.02773101255297661, 0.09496919810771942, -1.0966633558273315, 0.3054141402244568, 0.0403561107814312, 0.19382476806640625, -0.7614970803260803, -0.3808627724647522, -0.1463160216808319, 0.06235063448548317, -0.4314548969268799, 0.7742020487785339, -0.8339424133300781, -0.24055567383766174, -0.03073331154882908, 0.2322990894317627, -0.09495178610086441, 0.39527395367622375, 0.04144610837101936, 0.6018815636634827, 0.7479640245437622, -0.620824933052063, 0.19280126690864563, 0.7949070334434509, -0.17032064497470856, 0.7059682011604309, -0.9255012273788452, -0.15056434273719788, -0.18638452887535095, 0.14725500345230103, -0.915951132774353, -0.18879111111164093, 0.614812970161438, -0.6982274055480957, 0.29877516627311707, -0.021292923018336296, -0.5244821310043335, -0.46135854721069336, -0.2908243238925934, 0.24511156976222992, 0.24051490426063538, -0.28111669421195984, 0.5250606536865234, 0.6108532547950745, 0.16853418946266174, -0.6571377515792847, -0.8575395345687866, 0.14580416679382324, 0.03976884484291077, -0.3893793821334839, 0.42084020376205444, -0.20503155887126923, -0.1461486667394638, -0.14880821108818054, 0.00007902711513452232, -0.07909966260194778, -0.1316058486700058, 0.33712151646614075, 0.10828051716089249, -0.040937017649412155, -0.12952615320682526, -0.061768874526023865, -0.14584532380104065, 0.13272762298583984, 0.20272277295589447, 0.42416808009147644, -0.07867062836885452, -0.5434039831161499, -0.24582916498184204, 0.233546182513237, 0.19577127695083618, -0.2091895043849945, 0.6690000295639038, 0.8724507689476013, -0.31777116656303406, 0.03918993100523949, -0.24082258343696594, -0.3128226399421692, -0.4599831998348236, 0.18685133755207062, 0.014677455648779869, -0.6856025457382202, 0.8834191560745239, 0.5303478240966797, 0.466033011674881, 0.4425472915172577, 0.4319177269935608, 0.38029852509498596, 0.7342028021812439, 0.15089282393455505, 0.04416090250015259, 0.5869482755661011, -0.48983094096183777, -0.13349883258342743, -1.0347232818603516, -0.4580569863319397, -0.6317123174667358, -0.41684672236442566, -0.5211769938468933, -0.6823574900627136, 0.08556488156318665, -0.16979600489139557, -0.35401853919029236, 0.8633211851119995, -0.798409104347229, 0.33279111981391907, 0.6400335431098938, 0.06935103982686996, 0.28760233521461487, -0.21474941074848175, -0.15018059313297272, 0.08896838873624802, -0.7398895025253296, -0.6152272820472717, 1.2686339616775513, 0.3398892879486084, 0.4269615411758423, 0.38257962465286255, 0.8289902210235596, 0.2551829218864441, 0.3761696219444275, -0.2806973159313202, 0.8172165751457214, -0.4015425145626068, -0.8125605583190918, -0.5069161653518677, -0.300756573677063, -1.1056559085845947, 0.03962090238928795, -0.3358471691608429, -0.5517668128013611, 0.5946078300476074, 0.3879680633544922, -0.1404261440038681, 0.169663205742836, -0.5861259698867798, 0.9254552125930786, -0.34651222825050354, -0.2358524203300476, 0.15213213860988617, -1.1765985488891602, 0.3327610492706299, 0.2555907368659973, 0.31830018758773804, -0.17001202702522278, 0.07654429227113724, 1.197195053100586, -0.4449588656425476, 1.3649101257324219, -0.3564072549343109, 0.13191694021224976, 0.4305403232574463, -0.43228548765182495, 0.43625590205192566, -0.01753116212785244, -0.20449769496917725, 0.4878019690513611, 0.02442842163145542, -0.3558632731437683, -0.3531678318977356, 0.569186806678772, -0.6524829268455505, -0.1829182505607605, -0.7089582085609436, -0.2527647614479065, 0.07627955824136734, 0.3553099036216736, 0.06996079534292221, 0.37291136384010315, -0.27260440587997437, 0.29260438680648804, 0.5434544086456299, -0.04546208307147026, 0.3187444508075714, 0.47938093543052673, -0.0077981045469641685, -0.6715574264526367, 0.7149444818496704, 0.2898382842540741, 0.29085588455200195, 0.09815524518489838, 0.01942584477365017, -0.5877033472061157, -0.46479764580726624, -0.1729120910167694, 0.4759523868560791, -0.748896598815918, -0.2239486575126648, -0.29297736287117004, -0.21473540365695953, -0.6966614127159119, 0.08037478476762772, 0.03920712321996689, -0.5718833804130554, -0.7366705536842346, -0.43332093954086304, 0.6518228054046631, 0.44004425406455994, -0.6253641843795776, 0.40628692507743835, -0.5944373607635498, 0.3001113533973694, 0.09588395059108734, 0.5912160873413086, 0.2179098129272461, -0.41996297240257263, -0.40181174874305725, 0.1229524165391922, -0.3352152109146118, -0.9389115571975708, 0.26769766211509705, 0.30355146527290344, 0.9052773714065552, 0.3563031554222107, 0.2622484564781189, 0.5291080474853516, -0.14923767745494843, 1.2922799587249756, 0.5386270880699158, -0.6832787990570068, 0.4004530906677246, -0.4950934648513794, 0.5648695826530457, 0.8239224553108215, 0.3641567826271057, -0.6550469398498535, -0.07218378037214279, -0.9699583649635315, -1.147408127784729, 0.8070152997970581, 0.30896133184432983, 0.06331232935190201, -0.29437753558158875, 0.19207800924777985, -0.24237938225269318, 0.19492636620998383, -0.9052329659461975, -1.0155446529388428, -0.4578556716442108, -0.3246043622493744, -0.09542876482009888, -0.06551660597324371, -0.37682709097862244, -0.46078965067863464, 0.8037113547325134, -0.16282279789447784, 0.24707287549972534, 0.021849654614925385, 0.17061768472194672, -0.1340174525976181, 0.05072538182139397, 0.795526921749115, 0.5291197896003723, -0.13547468185424805, 0.05674172565340996, 0.23393237590789795, -1.021294116973877, -0.23610658943653107, 0.047058213502168655, -0.24471105635166168, 0.1908714473247528, 0.38957011699676514, 1.0491976737976074, 0.24148190021514893, -0.4717850089073181, 0.553693950176239, 0.03469249606132507, -0.5922078490257263, -0.6569610834121704, -0.07525794208049774, -0.034305814653635025, 0.12655961513519287, 0.4547896981239319, -0.24446430802345276, 0.15044347941875458, -0.24909234046936035, 0.4776332676410675, 0.41628631949424744, -0.5974355936050415, -0.4732087254524231, 0.8085840344429016, 0.13290700316429138, -0.4163861870765686, 0.1949368566274643, -0.24238471686840057, -0.31172919273376465, 0.7543525695800781, 0.46483105421066284, 0.8837036490440369, -0.18721473217010498, 0.5833350419998169, 0.9402255415916443, 0.40179911255836487, -0.12759539484977722, 0.8540092706680298, -0.16189849376678467, -0.6657692790031433, -0.1919301152229309, -0.5169339776039124, -0.3020612597465515, -0.04784494638442993, -0.994548499584198, 0.40747252106666565, -0.575478732585907, -0.3797697424888611, -0.24213552474975586, 0.24567939341068268, -0.8531619310379028, 0.24866120517253876, 0.17227700352668762, 1.0499286651611328, -1.2782394886016846, 0.5405769348144531, 0.7124309539794922, -0.6386122107505798, -0.7590782642364502, -0.3341480791568756, 0.293662428855896, -0.7445937991142273, 0.5839799642562866, -0.36999160051345825, 0.24807341396808624, -0.06517006456851959, -0.7359580993652344, -1.110153317451477, 1.5343501567840576, -0.08604317158460617, -0.27497467398643494, 0.23301592469215393, 0.308668315410614, 0.7560824751853943, -0.41773390769958496, 0.26857852935791016, 0.6256037354469299, 0.8582980036735535, 0.42567238211631775, -0.8420866131782532, 0.44985249638557434, -0.3278646171092987, -0.06531327962875366, 0.1448228657245636, -0.7274670600891113, 0.5968123078346252, -0.049909353256225586, -0.31409069895744324, -0.3535255789756775, 0.7696244120597839, 0.6710514426231384, 0.522077739238739, 0.3731849491596222, 0.36877891421318054, 0.7808385491371155, -0.13483856618404388, 0.6301579475402832, -0.42501428723335266, 0.23837600648403168, 1.3283218145370483, -0.022420734167099, 0.655851423740387, 0.4667190909385681, -0.4160182774066925, 0.4744921922683716, 0.40329793095588684, -0.2147948145866394, 0.27170389890670776, 0.31208568811416626, -0.010985481552779675, -0.012312513776123524, -0.13238941133022308, -0.36391034722328186, 0.34367141127586365, 0.5031338930130005, -0.6706446409225464, -0.3297393321990967, -0.28608566522598267, 0.05393644794821739, 0.22295282781124115, -0.35423555970191956, 0.6258982419967651, 0.15613234043121338, -0.23600740730762482, 0.5044658184051514, -0.3449408710002899, 0.6240488886833191, -0.6908740401268005, -0.2518632411956787, 0.08197417855262756, -0.3090394139289856, -0.660326361656189, -1.0362519025802612, 0.5613324046134949, -0.1962905377149582, -0.22285133600234985, -0.42775875329971313, 0.5096603035926819, -0.5708622336387634, -0.5404988527297974, 0.11491623520851135, 0.18434815108776093, 0.5137898325920105, 0.6334747672080994, -1.211849331855774, 0.31728595495224, 0.2662430703639984, -0.16241447627544403, 0.23438172042369843, 0.29401689767837524, -0.23370985686779022, 0.35222890973091125, 0.7012501358985901, 0.30067598819732666, 0.07228793948888779, 0.3463464379310608, 0.777688205242157, -0.6141585111618042, -0.4337087571620941, -0.3852783441543579, 0.8278886079788208, -0.6327794790267944, -0.7586010694503784, 1.1056469678878784, 0.7819027304649353, 0.6635645031929016, 0.027697402983903885, 0.8641131520271301, -0.5659424662590027, 0.7241462469100952, -0.2953212857246399, 0.8905445337295532, -0.41622424125671387, 0.14084818959236145, -0.5829789638519287, -0.7449173927307129, -0.7173517942428589, 0.6803705096244812, -0.4036487340927124, 0.08405421674251556, 0.4367993175983429, 0.8963189721107483, 0.15210622549057007, 0.1471707969903946, 0.2051471620798111, 0.2581222355365753, 0.19708611071109772, 0.34486353397369385, -0.046747662127017975, -0.808438241481781, 0.5728761553764343, -0.14648891985416412, -0.2737329602241516, -0.12352517247200012, -1.1601476669311523, -0.9043283462524414, -0.9317638874053955, -0.7840038537979126, -0.5935035347938538, -0.06487933546304703, 1.0897642374038696, 0.38635823130607605, -1.1406337022781372, -0.6513918042182922, 0.11191432178020477, 0.14874865114688873, -0.4424532949924469, -0.24757495522499084, 0.6600522398948669, 0.38476383686065674, -0.4311380386352539, -0.11623404175043106, -0.20086270570755005, 0.2458290159702301, -0.27705609798431396, -0.5118236541748047, -0.43550559878349304, -0.35019925236701965, 0.47993358969688416, 0.8894345164299011, -0.5292091369628906, -0.21062959730625153, 0.07634157687425613, 0.05602486804127693, -0.06845380365848541, 0.3175201416015625, -0.20760080218315125, 0.38833290338516235, 0.6067577004432678, -0.0581335686147213, 0.546747088432312, 0.3139841854572296, 0.3247208595275879, -0.9981456995010376, 0.026775604113936424, 0.3145337700843811, 0.17089228332042694, 0.3830409049987793, -0.4399774670600891, 0.6795603632926941, 0.16995009779930115, -0.4639698565006256, -0.7726820111274719, 0.03500773757696152, -1.3399097919464111, 0.10189010947942734, 1.6023496389389038, 0.12029969692230225, -0.30938559770584106, -0.6024244427680969, -0.12815546989440918, 0.28925564885139465, -0.6942034363746643, 0.42462828755378723, 0.6127821207046509, -0.18590492010116577, -0.32450681924819946, -0.44216978549957275, 0.8395395874977112, -0.24728737771511078, -0.7640743851661682, 0.22443033754825592, 0.546718955039978, 0.07744361460208893, 0.3684859871864319, 0.9594467878341675, -0.38832348585128784, 0.29759490489959717, -0.057766418904066086, 0.5476692318916321, -0.11893933266401291, -0.04548923671245575, -0.3530493676662445, -0.16386573016643524, -0.07568705826997757, -0.13312602043151855 ]
null
null
null
null
null
null
null
null
null
null
null
null
null
SocialGrep/top-american-universities-on-reddit
SocialGrep
2022-07-25T18:57:00Z
468
2
null
[ "annotations_creators:lexyr", "language_creators:crowdsourced", "multilinguality:monolingual", "size_categories:100K<n<1M", "source_datasets:original", "language:en", "license:cc-by-4.0", "region:us" ]
2022-07-25T18:57:00Z
2022-03-02T23:29:22.000Z
2022-03-02T23:29:22
--- annotations_creators: - lexyr language_creators: - crowdsourced language: - en license: - cc-by-4.0 multilinguality: - monolingual size_categories: - 100K<n<1M source_datasets: - original paperswithcode_id: null --- # Dataset Card for top-american-universities-on-reddit ## 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://socialgrep.com/datasets](https://socialgrep.com/datasets/top-american-universities-on-reddit?utm_source=huggingface&utm_medium=link&utm_campaign=topamericanuniversitiesonreddit) - **Point of Contact:** [Website](https://socialgrep.com/contact?utm_source=huggingface&utm_medium=link&utm_campaign=topamericanuniversitiesonreddit) ### Dataset Summary This corpus contains the complete data for the activity of the subreddits of the top 10 US colleges, according to the [2019 Forbes listing](https://www.forbes.com/top-colleges/#1208425d1987). ### Languages Mainly English. ## Dataset Structure ### Data Instances A data point is a post or a comment. Due to the separate nature of the two, those exist in two different files - even though many fields are shared. ### Data Fields - 'type': the type of the data point. Can be 'post' or 'comment'. - 'id': the base-36 Reddit ID of the data point. Unique when combined with type. - 'subreddit.id': the base-36 Reddit ID of the data point's host subreddit. Unique. - 'subreddit.name': the human-readable name of the data point's host subreddit. - 'subreddit.nsfw': a boolean marking the data point's host subreddit as NSFW or not. - 'created_utc': a UTC timestamp for the data point. - 'permalink': a reference link to the data point on Reddit. - 'score': score of the data point on Reddit. - 'domain': (Post only) the domain of the data point's link. - 'url': (Post only) the destination of the data point's link, if any. - 'selftext': (Post only) the self-text of the data point, if any. - 'title': (Post only) the title of the post data point. - 'body': (Comment only) the body of the comment data point. - 'sentiment': (Comment only) the result of an in-house sentiment analysis pipeline. Used for exploratory analysis. ## 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 CC-BY v4.0 ### Contributions [Needs More Information]
[ -0.648639440536499, -0.8684467077255249, 0.3311619460582733, 0.20430123805999756, -0.34176576137542725, 0.23290620744228363, -0.30093511939048767, -0.22102238237857819, 0.6452510952949524, 0.29752108454704285, -0.8648955821990967, -1.1021627187728882, -0.6492074728012085, 0.32617029547691345, -0.18068674206733704, 1.1622111797332764, 0.06420904397964478, -0.258829802274704, -0.5279846787452698, -0.1790497750043869, -0.27625688910484314, -0.6720589995384216, -0.4803454577922821, -0.1829315423965454, 0.561610758304596, 0.5990530252456665, 0.4836893081665039, 0.6742100119590759, 0.8374626636505127, 0.28178322315216064, 0.1635144203901291, -0.10695220530033112, -0.6471866965293884, -0.24741771817207336, -0.2686939239501953, -0.1717449128627777, -0.5980454087257385, 0.2751341164112091, 0.6545214653015137, 0.707210898399353, -0.00789736583828926, 0.606590211391449, 0.03219086676836014, 0.6795737147331238, -0.5942847728729248, 0.5120365023612976, -0.33363673090934753, -0.09637787938117981, -0.18665534257888794, -0.22273124754428864, -0.10875865072011948, -0.7924740314483643, -0.2594248652458191, -0.6956170797348022, 0.15919320285320282, -0.09306588023900986, 0.6964337229728699, 0.1246786117553711, -0.24979785084724426, 0.07831458002328873, -0.4845869541168213, 0.8064978122711182, -0.5037399530410767, 0.22195157408714294, 0.5282068848609924, 0.29602527618408203, 0.08278355747461319, -0.7347779870033264, -0.39570897817611694, 0.3249812424182892, -0.4170742928981781, 0.15909013152122498, -0.3424083888530731, -0.3369121551513672, 0.42695602774620056, 0.45996013283729553, -0.5779232978820801, -0.5748595595359802, -0.7705057263374329, 0.06946564465761185, 0.9219842553138733, 0.17934255301952362, 0.14229822158813477, -0.24711577594280243, -0.09613273292779922, -0.23128502070903778, -0.3979569375514984, -0.03736679255962372, 0.3645734190940857, 0.4841129183769226, -0.5290709733963013, 0.6545282602310181, -0.2570999562740326, 0.4542975127696991, -0.09028411656618118, 0.27206024527549744, 0.4220704436302185, -0.7751073241233826, -0.03825540840625763, -0.24278265237808228, 0.9363877177238464, 0.7450281381607056, 0.29403156042099, 0.03356321528553963, 0.33042195439338684, 0.16209328174591064, 0.2187659591436386, -0.6349765658378601, -0.3863672614097595, 0.45160943269729614, -0.6733307838439941, -0.4559547007083893, 0.4449896216392517, -0.9635776877403259, -0.2225043773651123, -0.33900806307792664, 0.039808910340070724, -0.015437896363437176, -0.4344548285007477, -0.14750057458877563, -0.20624685287475586, 0.2392655462026596, 0.047348424792289734, -0.6839848756790161, 0.6500900387763977, 0.5724820494651794, 0.6812484264373779, -0.3719913959503174, -0.2612265944480896, 0.20179517567157745, 0.0076498775742948055, 0.09700192511081696, 0.6144501566886902, -0.5507659316062927, -0.4167143702507019, 0.19273220002651215, 0.4420692026615143, 0.010516292415559292, -0.3271339237689972, 0.7382424473762512, -0.28550952672958374, 0.13423727452754974, -0.7406983971595764, -0.5575605630874634, -0.12255455553531647, 0.2927934527397156, -0.7242990732192993, 1.2168397903442383, 0.17100778222084045, -0.9456764459609985, 0.18630321323871613, -0.9653247594833374, -0.37982943654060364, -0.038753002882003784, -0.15508323907852173, -0.24404388666152954, -0.26155051589012146, -0.020345760509371758, 0.5603442192077637, -0.15041156113147736, 0.044347189366817474, -0.25984489917755127, -0.24678723514080048, 0.25657081604003906, -0.03225725516676903, 1.1857448816299438, 0.001235172268934548, -0.05663667991757393, 0.0811414122581482, -0.9733086228370667, -0.16439777612686157, 0.3829716742038727, -0.33838170766830444, -0.33645299077033997, -0.134028360247612, 0.1362798810005188, 0.08589944243431091, 0.43585118651390076, -0.6206773519515991, 0.34659597277641296, 0.1313837766647339, 0.547645628452301, 0.595221996307373, 0.2759890854358673, 0.35810399055480957, -0.42351505160331726, 0.39911308884620667, 0.03610808402299881, 0.5040440559387207, 0.3934725821018219, -0.6047681570053101, -0.7259119153022766, 0.04941321909427643, 0.06845971941947937, 0.7668526768684387, -0.38312476873397827, 0.7005515098571777, -0.2962639629840851, -0.6761981248855591, -0.45739758014678955, 0.060967154800891876, 0.16298224031925201, 0.5271514058113098, 0.7093006372451782, -0.24469850957393646, -0.9374945759773254, -0.6148390173912048, -0.04777275770902634, -0.098881296813488, 0.22899657487869263, 0.5825872421264648, 0.9274935126304626, -0.3417075574398041, 0.7321763634681702, -0.8960026502609253, -0.23487219214439392, -0.3248268961906433, 0.1666303426027298, 0.34178289771080017, 0.367031067609787, 0.42815953493118286, -0.8546140193939209, -0.5148453712463379, -0.27454450726509094, -0.89774090051651, -0.23765528202056885, 0.019245410338044167, -0.4636707007884979, -0.046396318823099136, 0.2470243126153946, -0.5791128873825073, 0.6046826839447021, 0.4543643891811371, -0.5866972804069519, 0.4369255304336548, 0.12113675475120544, 0.5325743556022644, -0.9770752191543579, 0.06687904894351959, 0.21190974116325378, 0.17696301639080048, -0.32255107164382935, -0.1197863221168518, -0.009845294058322906, 0.1230323389172554, -0.2899509370326996, 0.6700954437255859, -0.24659167230129242, 0.028881613165140152, 0.11360649019479752, 0.15142107009887695, 0.034165628254413605, 0.41923388838768005, -0.07060209661722183, 0.555103600025177, 0.5866803526878357, -0.5564566254615784, 0.5057212114334106, 0.4261699616909027, -0.17640334367752075, 0.6585187911987305, -0.7590358853340149, -0.10772306472063065, -0.1501740664243698, 0.32179325819015503, -0.8849459886550903, -0.5816649794578552, 0.3040994703769684, -0.6553239226341248, -0.12642425298690796, -0.04075508937239647, -0.3083989918231964, -0.4917759895324707, -0.6353785991668701, 0.5459206700325012, 0.3362251818180084, -0.17553918063640594, 0.2775624990463257, 0.7233105301856995, -0.13606640696525574, -0.6358746886253357, -0.7007577419281006, 0.04849371314048767, -0.07546070963144302, -0.558100163936615, 0.4990851581096649, -0.2783917188644409, -0.35770323872566223, 0.2504287660121918, 0.518085777759552, -0.13313151895999908, -0.08080456405878067, 0.3488263785839081, 0.22216862440109253, 0.08770788460969925, -0.06169303506612778, -0.21830157935619354, 0.022657455876469612, 0.24522408843040466, 0.029450029134750366, 0.4915734529495239, -0.05594494566321373, -0.2453501671552658, -0.6707291603088379, 0.5092461705207825, 0.45207229256629944, -0.09532948583364487, 0.6231595873832703, 0.6436325907707214, -0.4407546818256378, -0.05143878981471062, -0.4551403820514679, -0.49152979254722595, -0.4073832035064697, 0.023687390610575676, 0.0727708637714386, -0.5982359051704407, 0.6892737746238708, 0.28417912125587463, 0.5149135589599609, 0.6086963415145874, 0.3742319345474243, -0.12401579320430756, 0.757416307926178, 0.5757057070732117, -0.09898298978805542, 0.45550838112831116, -0.5999975204467773, 0.106352299451828, -0.6174625754356384, -0.2978675961494446, -0.654829740524292, -0.5148292183876038, -0.705522358417511, -0.3963247835636139, -0.06779689341783524, -0.15590472519397736, -0.25163763761520386, 0.5947038531303406, -0.6155680418014526, 0.5047845244407654, 0.8393041491508484, 0.05421934649348259, 0.18056072294712067, 0.12102849036455154, 0.1346164494752884, -0.11575591564178467, -0.4058891534805298, -0.4561508297920227, 1.2425364255905151, 0.2882080078125, 0.7904012203216553, 0.1928410679101944, 0.7788581848144531, 0.5202563405036926, 0.10896580666303635, -0.5099272727966309, 0.7813658118247986, -0.3748742341995239, -0.5669114589691162, -0.17755617201328278, -0.4318716824054718, -0.7266883254051208, -0.33618059754371643, -0.494904488325119, -0.5043550133705139, 0.29424944519996643, 0.14774104952812195, -0.147318035364151, 0.33605366945266724, -0.41352376341819763, 0.8961198925971985, -0.048361361026763916, -0.4686680734157562, 0.08478937298059464, -0.8106503486633301, 0.09412706643342972, 0.3269362449645996, 0.4360075294971466, 0.013778489083051682, 0.2205897569656372, 0.9484303593635559, -0.3118261992931366, 1.0270894765853882, -0.12477119266986847, 0.36339038610458374, 0.4391385018825531, -0.3358384966850281, 0.3381724953651428, 0.006308204960078001, -0.03352184221148491, 0.6261701583862305, -0.08558360487222672, -0.2818671464920044, -0.3118535876274109, 0.8300085067749023, -0.9885602593421936, -0.10704457759857178, -0.34786757826805115, -0.29297101497650146, 0.07075662910938263, 0.12546883523464203, 0.2802879810333252, 0.24495257437229156, -0.36029863357543945, 0.5097404718399048, 0.6206686496734619, -0.1278742551803589, 0.24393582344055176, 0.17019280791282654, -0.0031077114399522543, -0.6682366728782654, 0.7616373300552368, 0.3936959207057953, -0.129590705037117, 0.39829501509666443, 0.16547097265720367, -0.6428202986717224, -0.2576734721660614, -0.23640374839305878, 0.4388907253742218, -0.7043306827545166, -0.14274978637695312, -0.7047138214111328, -0.37957993149757385, -1.0046931505203247, -0.3651748299598694, -0.026206843554973602, -0.666366457939148, -0.4610452651977539, -0.6385940909385681, 0.5968202352523804, 0.5824609398841858, -0.524944543838501, 0.30224746465682983, -0.5341383814811707, 0.23602715134620667, 0.27338337898254395, 0.4415033459663391, -0.24213382601737976, -0.2919171452522278, -0.10360020399093628, -0.03006901405751705, -0.21501041948795319, -0.6859465837478638, 0.2072320431470871, 0.17006438970565796, 0.5321229696273804, 0.1844896376132965, 0.24954281747341156, 0.4116229712963104, -0.09818431735038757, 0.9854201078414917, 0.013902192004024982, -0.3634512722492218, 0.8377083539962769, -0.4684418737888336, 0.2621450126171112, 0.9492970705032349, 0.6643775701522827, -0.5038334727287292, -0.45523837208747864, -0.8374617099761963, -1.049403190612793, 0.3923755884170532, 0.16810861229896545, 0.38464024662971497, -0.3000277280807495, 0.45415088534355164, 0.0014954954385757446, 0.08960804343223572, -1.1491297483444214, -0.8396272659301758, -0.24626797437667847, -0.3940849006175995, 0.13440464437007904, -0.2339201420545578, -0.4673163890838623, -0.6259552240371704, 0.903770387172699, 0.2970069348812103, 0.26725563406944275, -0.04476558044552803, 0.10504208505153656, -0.2395726442337036, 0.3228077292442322, 0.46540114283561707, 0.8659120202064514, -0.5182417631149292, 0.15942929685115814, -0.03573240339756012, -0.7143577933311462, -0.17261086404323578, 0.10138211399316788, -0.3331420421600342, 0.0034530479460954666, 0.24883787333965302, 0.3944268822669983, 0.10478872060775757, -0.16667090356349945, 0.5740724802017212, -0.43137580156326294, -0.3089262843132019, -0.6109394431114197, 0.13381995260715485, -0.07875175029039383, 0.10686028748750687, 0.43802472949028015, -0.1891089528799057, 0.008023709058761597, -0.7117542624473572, 0.4906552731990814, 0.2133992463350296, -0.32039931416511536, -0.29520246386528015, 0.692640483379364, 0.3821389973163605, -0.32161247730255127, 0.4111603796482086, 0.002530875848606229, -0.2195523977279663, 0.7035523653030396, 0.3573475182056427, 0.7523587346076965, 0.0724179819226265, 0.40275058150291443, 1.0167877674102783, 0.2075013518333435, 0.026352213695645332, 0.7130123376846313, -0.02882995270192623, -0.6443289518356323, -0.022051407024264336, -0.9144082069396973, -0.3442298471927643, 0.23339684307575226, -0.7289689779281616, 0.4743899405002594, -0.757610023021698, -0.4723931849002838, 0.14902405440807343, 0.1599760800600052, -0.6640017032623291, 0.36686936020851135, -0.15833865106105804, 0.9438509941101074, -1.1450144052505493, 0.4335097074508667, 0.995324432849884, -0.6381939053535461, -0.6120005249977112, -0.39758387207984924, 0.22480225563049316, -0.42738887667655945, 0.3373098373413086, -0.10249719768762589, 0.07709290832281113, 0.01821005530655384, -0.7357105016708374, -0.7523499727249146, 1.1246633529663086, -0.1955541968345642, -0.25786206126213074, 0.21398700773715973, 0.3530346751213074, 0.45512112975120544, -0.4900707006454468, 0.2543637156486511, 0.5456163883209229, 0.652866780757904, 0.20880767703056335, -0.38996151089668274, 0.22915026545524597, -0.44472169876098633, -0.5526057481765747, 0.09787222743034363, -0.5875421762466431, 0.9748209714889526, -0.01202746294438839, -0.2013377845287323, -0.41596511006355286, 0.5272298455238342, 0.17917069792747498, 0.27421653270721436, 0.3559081256389618, 0.8300744295120239, 0.6448029279708862, -0.422333687543869, 0.8206210136413574, -0.44709837436676025, 0.6754440069198608, 1.0111744403839111, 0.19419953227043152, 0.8790502548217773, 0.41119396686553955, -0.4199996292591095, 0.6240922212600708, 0.7119765877723694, -0.31655818223953247, 0.4947146773338318, -0.06018015369772911, -0.18280573189258575, -0.04786770045757294, -0.23734435439109802, -0.7300800681114197, 0.4562562108039856, 0.3473115861415863, -0.5890671610832214, -0.12279608845710754, -0.3619312047958374, 0.164653018116951, 0.014664094895124435, -0.4172861576080322, 0.8884319067001343, -0.09733076393604279, -0.5906241536140442, 0.2159520387649536, -0.17636345326900482, 0.6383045315742493, -0.4578736126422882, -0.23242752254009247, -0.3504440188407898, 0.10423760116100311, -0.5837662816047668, -1.0836936235427856, 0.4889428913593292, 0.15248744189739227, -0.43660807609558105, -0.27220430970191956, 0.7668970227241516, -0.4092482924461365, -0.9062198400497437, 0.26352301239967346, 0.26560676097869873, 0.32554638385772705, 0.3327440619468689, -0.8395917415618896, 0.35230913758277893, -0.05105074867606163, -0.202964648604393, 0.09389837086200714, 0.2674080729484558, 0.07185671478509903, 0.38235220313072205, 0.6548900604248047, 0.29439592361450195, 0.058582406491041183, 0.38677990436553955, 0.8180552124977112, -0.8957172632217407, -0.37409651279449463, -0.6636689305305481, 0.6592865586280823, -0.5360347628593445, -0.43147119879722595, 0.6797987222671509, 0.573491632938385, 1.1117396354675293, 0.0534072108566761, 1.1604124307632446, -0.5953790545463562, 0.7469611763954163, -0.06992201507091522, 0.9050706624984741, -0.7436378002166748, -0.012051334604620934, -0.3889366090297699, -0.9015329480171204, -0.4663444757461548, 0.9259649515151978, -0.3035110533237457, 0.027875686064362526, 0.4366147220134735, 0.7534914612770081, -0.07986237108707428, 0.1186208501458168, 0.09686349332332611, 0.5021800398826599, 0.04878374934196472, 0.18592190742492676, 0.6081820726394653, -0.4586763083934784, 0.5770339369773865, -0.7823041081428528, -0.3562179207801819, -0.3337244987487793, -0.881400465965271, -0.8259648680686951, -0.6646415591239929, -0.7291789054870605, -0.45445001125335693, -0.08385574072599411, 0.8682960867881775, 0.5623819231987, -1.0947518348693848, -0.40681344270706177, 0.006043977569788694, 0.24279963970184326, -0.09424971789121628, -0.38317352533340454, 0.3627375364303589, 0.2102518379688263, -0.5611525177955627, -0.11728738993406296, 0.11697429418563843, -0.1332516372203827, -0.21730417013168335, 0.16236965358257294, -0.46420207619667053, 0.12957927584648132, 0.7063707113265991, 0.5184162259101868, -0.4985514283180237, -0.5298936367034912, 0.15307198464870453, -0.17037294805049896, -0.024965882301330566, 0.5231311917304993, -0.31535473465919495, 0.11355230957269669, 0.787585973739624, 0.2089451253414154, 0.20505867898464203, 0.4735278785228729, 0.06582425534725189, -0.8169352412223816, -0.08584483712911606, 0.07665293663740158, 0.4018849730491638, 0.34992724657058716, -0.4831050932407379, 0.7676957249641418, 0.42968669533729553, -0.7688966989517212, -0.4899461567401886, -0.16558320820331573, -1.321009635925293, -0.22289589047431946, 1.2849464416503906, -0.11408966034650803, -0.18160061538219452, -0.3535589575767517, -0.088656485080719, 0.18402628600597382, -0.7138237953186035, 0.8807547688484192, 0.8413277268409729, -0.35794004797935486, -0.16474215686321259, -0.6785232424736023, 0.593115508556366, -0.3251757323741913, -1.122372031211853, 0.20062826573848724, 0.612841010093689, 0.349042683839798, 0.17304816842079163, 0.8916818499565125, -0.15206153690814972, 0.1339915543794632, -0.15088646113872528, 0.07428295910358429, 0.15173907577991486, -0.38578182458877563, 0.07913673669099808, 0.23866668343544006, -0.3982352614402771, -0.1367509365081787 ]
null
null
null
null
null
null
null
null
null
null
null
null
null
eloukas/edgar-corpus
eloukas
2023-07-14T07:17:12Z
468
17
null
[ "task_categories:other", "annotations_creators:no-annotation", "language_creators:other", "multilinguality:monolingual", "size_categories:100K<n<1M", "source_datasets:extended|other", "language:en", "license:apache-2.0", "research papers", "edgar", "sec", "finance", "financial", "filings", "10K", "10-K", "nlp", "research", "econlp", "economics", "business", "arxiv:2109.14394", "region:us" ]
2023-07-14T07:17:12Z
2022-12-30T16:55:08.000Z
2022-12-30T16:55:08
--- dataset_info: - config_name: . features: - name: filename dtype: string - name: cik dtype: string - name: year dtype: string - name: section_1 dtype: string - name: section_1A dtype: string - name: section_1B dtype: string - name: section_2 dtype: string - name: section_3 dtype: string - name: section_4 dtype: string - name: section_5 dtype: string - name: section_6 dtype: string - name: section_7 dtype: string - name: section_7A dtype: string - name: section_8 dtype: string - name: section_9 dtype: string - name: section_9A dtype: string - name: section_9B dtype: string - name: section_10 dtype: string - name: section_11 dtype: string - name: section_12 dtype: string - name: section_13 dtype: string - name: section_14 dtype: string - name: section_15 dtype: string splits: - name: train num_bytes: 40306320885 num_examples: 220375 download_size: 10734208660 dataset_size: 40306320885 - config_name: full features: - name: filename dtype: string - name: cik dtype: string - name: year dtype: string - name: section_1 dtype: string - name: section_1A dtype: string - name: section_1B dtype: string - name: section_2 dtype: string - name: section_3 dtype: string - name: section_4 dtype: string - name: section_5 dtype: string - name: section_6 dtype: string - name: section_7 dtype: string - name: section_7A dtype: string - name: section_8 dtype: string - name: section_9 dtype: string - name: section_9A dtype: string - name: section_9B dtype: string - name: section_10 dtype: string - name: section_11 dtype: string - name: section_12 dtype: string - name: section_13 dtype: string - name: section_14 dtype: string - name: section_15 dtype: string splits: - name: train num_bytes: 32237457024 num_examples: 176289 - name: validation num_bytes: 4023129683 num_examples: 22050 - name: test num_bytes: 4045734178 num_examples: 22036 download_size: 40699852536 dataset_size: 40306320885 - config_name: year_1993 features: - name: filename dtype: string - name: cik dtype: string - name: year dtype: string - name: section_1 dtype: string - name: section_1A dtype: string - name: section_1B dtype: string - name: section_2 dtype: string - name: section_3 dtype: string - name: section_4 dtype: string - name: section_5 dtype: string - name: section_6 dtype: string - name: section_7 dtype: string - name: section_7A dtype: string - name: section_8 dtype: string - name: section_9 dtype: string - name: section_9A dtype: string - name: section_9B dtype: string - name: section_10 dtype: string - name: section_11 dtype: string - name: section_12 dtype: string - name: section_13 dtype: string - name: section_14 dtype: string - name: section_15 dtype: string splits: - name: train num_bytes: 112714537 num_examples: 1060 - name: validation num_bytes: 13584432 num_examples: 133 - name: test num_bytes: 14520566 num_examples: 133 download_size: 141862572 dataset_size: 140819535 - config_name: year_1994 features: - name: filename dtype: string - name: cik dtype: string - name: year dtype: string - name: section_1 dtype: string - name: section_1A dtype: string - name: section_1B dtype: string - name: section_2 dtype: string - name: section_3 dtype: string - name: section_4 dtype: string - name: section_5 dtype: string - name: section_6 dtype: string - name: section_7 dtype: string - name: section_7A dtype: string - name: section_8 dtype: string - name: section_9 dtype: string - name: section_9A dtype: string - name: section_9B dtype: string - name: section_10 dtype: string - name: section_11 dtype: string - name: section_12 dtype: string - name: section_13 dtype: string - name: section_14 dtype: string - name: section_15 dtype: string splits: - name: train num_bytes: 198955093 num_examples: 2083 - name: validation num_bytes: 23432307 num_examples: 261 - name: test num_bytes: 26115768 num_examples: 260 download_size: 250411041 dataset_size: 248503168 - config_name: year_1995 features: - name: filename dtype: string - name: cik dtype: string - name: year dtype: string - name: section_1 dtype: string - name: section_1A dtype: string - name: section_1B dtype: string - name: section_2 dtype: string - name: section_3 dtype: string - name: section_4 dtype: string - name: section_5 dtype: string - name: section_6 dtype: string - name: section_7 dtype: string - name: section_7A dtype: string - name: section_8 dtype: string - name: section_9 dtype: string - name: section_9A dtype: string - name: section_9B dtype: string - name: section_10 dtype: string - name: section_11 dtype: string - name: section_12 dtype: string - name: section_13 dtype: string - name: section_14 dtype: string - name: section_15 dtype: string splits: - name: train num_bytes: 356959049 num_examples: 4110 - name: validation num_bytes: 42781161 num_examples: 514 - name: test num_bytes: 45275568 num_examples: 514 download_size: 448617549 dataset_size: 445015778 - config_name: year_1996 features: - name: filename dtype: string - name: cik dtype: string - name: year dtype: string - name: section_1 dtype: string - name: section_1A dtype: string - name: section_1B dtype: string - name: section_2 dtype: string - name: section_3 dtype: string - name: section_4 dtype: string - name: section_5 dtype: string - name: section_6 dtype: string - name: section_7 dtype: string - name: section_7A dtype: string - name: section_8 dtype: string - name: section_9 dtype: string - name: section_9A dtype: string - name: section_9B dtype: string - name: section_10 dtype: string - name: section_11 dtype: string - name: section_12 dtype: string - name: section_13 dtype: string - name: section_14 dtype: string - name: section_15 dtype: string splits: - name: train num_bytes: 738506135 num_examples: 7589 - name: validation num_bytes: 89873905 num_examples: 949 - name: test num_bytes: 91248882 num_examples: 949 download_size: 926536700 dataset_size: 919628922 - config_name: year_1997 features: - name: filename dtype: string - name: cik dtype: string - name: year dtype: string - name: section_1 dtype: string - name: section_1A dtype: string - name: section_1B dtype: string - name: section_2 dtype: string - name: section_3 dtype: string - name: section_4 dtype: string - name: section_5 dtype: string - name: section_6 dtype: string - name: section_7 dtype: string - name: section_7A dtype: string - name: section_8 dtype: string - name: section_9 dtype: string - name: section_9A dtype: string - name: section_9B dtype: string - name: section_10 dtype: string - name: section_11 dtype: string - name: section_12 dtype: string - name: section_13 dtype: string - name: section_14 dtype: string - name: section_15 dtype: string splits: - name: train num_bytes: 854201733 num_examples: 8084 - name: validation num_bytes: 103167272 num_examples: 1011 - name: test num_bytes: 106843950 num_examples: 1011 download_size: 1071898139 dataset_size: 1064212955 - config_name: year_1998 features: - name: filename dtype: string - name: cik dtype: string - name: year dtype: string - name: section_1 dtype: string - name: section_1A dtype: string - name: section_1B dtype: string - name: section_2 dtype: string - name: section_3 dtype: string - name: section_4 dtype: string - name: section_5 dtype: string - name: section_6 dtype: string - name: section_7 dtype: string - name: section_7A dtype: string - name: section_8 dtype: string - name: section_9 dtype: string - name: section_9A dtype: string - name: section_9B dtype: string - name: section_10 dtype: string - name: section_11 dtype: string - name: section_12 dtype: string - name: section_13 dtype: string - name: section_14 dtype: string - name: section_15 dtype: string splits: - name: train num_bytes: 904075497 num_examples: 8040 - name: validation num_bytes: 112630658 num_examples: 1006 - name: test num_bytes: 113308750 num_examples: 1005 download_size: 1137887615 dataset_size: 1130014905 - config_name: year_1999 features: - name: filename dtype: string - name: cik dtype: string - name: year dtype: string - name: section_1 dtype: string - name: section_1A dtype: string - name: section_1B dtype: string - name: section_2 dtype: string - name: section_3 dtype: string - name: section_4 dtype: string - name: section_5 dtype: string - name: section_6 dtype: string - name: section_7 dtype: string - name: section_7A dtype: string - name: section_8 dtype: string - name: section_9 dtype: string - name: section_9A dtype: string - name: section_9B dtype: string - name: section_10 dtype: string - name: section_11 dtype: string - name: section_12 dtype: string - name: section_13 dtype: string - name: section_14 dtype: string - name: section_15 dtype: string splits: - name: train num_bytes: 911374885 num_examples: 7864 - name: validation num_bytes: 118614261 num_examples: 984 - name: test num_bytes: 116706581 num_examples: 983 download_size: 1154736765 dataset_size: 1146695727 - config_name: year_2000 features: - name: filename dtype: string - name: cik dtype: string - name: year dtype: string - name: section_1 dtype: string - name: section_1A dtype: string - name: section_1B dtype: string - name: section_2 dtype: string - name: section_3 dtype: string - name: section_4 dtype: string - name: section_5 dtype: string - name: section_6 dtype: string - name: section_7 dtype: string - name: section_7A dtype: string - name: section_8 dtype: string - name: section_9 dtype: string - name: section_9A dtype: string - name: section_9B dtype: string - name: section_10 dtype: string - name: section_11 dtype: string - name: section_12 dtype: string - name: section_13 dtype: string - name: section_14 dtype: string - name: section_15 dtype: string splits: - name: train num_bytes: 926444625 num_examples: 7589 - name: validation num_bytes: 113264749 num_examples: 949 - name: test num_bytes: 114605470 num_examples: 949 download_size: 1162526814 dataset_size: 1154314844 - config_name: year_2001 features: - name: filename dtype: string - name: cik dtype: string - name: year dtype: string - name: section_1 dtype: string - name: section_1A dtype: string - name: section_1B dtype: string - name: section_2 dtype: string - name: section_3 dtype: string - name: section_4 dtype: string - name: section_5 dtype: string - name: section_6 dtype: string - name: section_7 dtype: string - name: section_7A dtype: string - name: section_8 dtype: string - name: section_9 dtype: string - name: section_9A dtype: string - name: section_9B dtype: string - name: section_10 dtype: string - name: section_11 dtype: string - name: section_12 dtype: string - name: section_13 dtype: string - name: section_14 dtype: string - name: section_15 dtype: string splits: - name: train num_bytes: 964631161 num_examples: 7181 - name: validation num_bytes: 117509010 num_examples: 898 - name: test num_bytes: 116141097 num_examples: 898 download_size: 1207790205 dataset_size: 1198281268 - config_name: year_2002 features: - name: filename dtype: string - name: cik dtype: string - name: year dtype: string - name: section_1 dtype: string - name: section_1A dtype: string - name: section_1B dtype: string - name: section_2 dtype: string - name: section_3 dtype: string - name: section_4 dtype: string - name: section_5 dtype: string - name: section_6 dtype: string - name: section_7 dtype: string - name: section_7A dtype: string - name: section_8 dtype: string - name: section_9 dtype: string - name: section_9A dtype: string - name: section_9B dtype: string - name: section_10 dtype: string - name: section_11 dtype: string - name: section_12 dtype: string - name: section_13 dtype: string - name: section_14 dtype: string - name: section_15 dtype: string splits: - name: train num_bytes: 1049271720 num_examples: 6636 - name: validation num_bytes: 128339491 num_examples: 830 - name: test num_bytes: 128444184 num_examples: 829 download_size: 1317817728 dataset_size: 1306055395 - config_name: year_2003 features: - name: filename dtype: string - name: cik dtype: string - name: year dtype: string - name: section_1 dtype: string - name: section_1A dtype: string - name: section_1B dtype: string - name: section_2 dtype: string - name: section_3 dtype: string - name: section_4 dtype: string - name: section_5 dtype: string - name: section_6 dtype: string - name: section_7 dtype: string - name: section_7A dtype: string - name: section_8 dtype: string - name: section_9 dtype: string - name: section_9A dtype: string - name: section_9B dtype: string - name: section_10 dtype: string - name: section_11 dtype: string - name: section_12 dtype: string - name: section_13 dtype: string - name: section_14 dtype: string - name: section_15 dtype: string splits: - name: train num_bytes: 1027557690 num_examples: 6672 - name: validation num_bytes: 126684704 num_examples: 834 - name: test num_bytes: 130672979 num_examples: 834 download_size: 1297227566 dataset_size: 1284915373 - config_name: year_2004 features: - name: filename dtype: string - name: cik dtype: string - name: year dtype: string - name: section_1 dtype: string - name: section_1A dtype: string - name: section_1B dtype: string - name: section_2 dtype: string - name: section_3 dtype: string - name: section_4 dtype: string - name: section_5 dtype: string - name: section_6 dtype: string - name: section_7 dtype: string - name: section_7A dtype: string - name: section_8 dtype: string - name: section_9 dtype: string - name: section_9A dtype: string - name: section_9B dtype: string - name: section_10 dtype: string - name: section_11 dtype: string - name: section_12 dtype: string - name: section_13 dtype: string - name: section_14 dtype: string - name: section_15 dtype: string splits: - name: train num_bytes: 1129657843 num_examples: 7111 - name: validation num_bytes: 147499772 num_examples: 889 - name: test num_bytes: 147890092 num_examples: 889 download_size: 1439663100 dataset_size: 1425047707 - config_name: year_2005 features: - name: filename dtype: string - name: cik dtype: string - name: year dtype: string - name: section_1 dtype: string - name: section_1A dtype: string - name: section_1B dtype: string - name: section_2 dtype: string - name: section_3 dtype: string - name: section_4 dtype: string - name: section_5 dtype: string - name: section_6 dtype: string - name: section_7 dtype: string - name: section_7A dtype: string - name: section_8 dtype: string - name: section_9 dtype: string - name: section_9A dtype: string - name: section_9B dtype: string - name: section_10 dtype: string - name: section_11 dtype: string - name: section_12 dtype: string - name: section_13 dtype: string - name: section_14 dtype: string - name: section_15 dtype: string splits: - name: train num_bytes: 1200714441 num_examples: 7113 - name: validation num_bytes: 161003977 num_examples: 890 - name: test num_bytes: 160727195 num_examples: 889 download_size: 1538876195 dataset_size: 1522445613 - config_name: year_2006 features: - name: filename dtype: string - name: cik dtype: string - name: year dtype: string - name: section_1 dtype: string - name: section_1A dtype: string - name: section_1B dtype: string - name: section_2 dtype: string - name: section_3 dtype: string - name: section_4 dtype: string - name: section_5 dtype: string - name: section_6 dtype: string - name: section_7 dtype: string - name: section_7A dtype: string - name: section_8 dtype: string - name: section_9 dtype: string - name: section_9A dtype: string - name: section_9B dtype: string - name: section_10 dtype: string - name: section_11 dtype: string - name: section_12 dtype: string - name: section_13 dtype: string - name: section_14 dtype: string - name: section_15 dtype: string splits: - name: train num_bytes: 1286566049 num_examples: 7064 - name: validation num_bytes: 160843494 num_examples: 883 - name: test num_bytes: 163270601 num_examples: 883 download_size: 1628452618 dataset_size: 1610680144 - config_name: year_2007 features: - name: filename dtype: string - name: cik dtype: string - name: year dtype: string - name: section_1 dtype: string - name: section_1A dtype: string - name: section_1B dtype: string - name: section_2 dtype: string - name: section_3 dtype: string - name: section_4 dtype: string - name: section_5 dtype: string - name: section_6 dtype: string - name: section_7 dtype: string - name: section_7A dtype: string - name: section_8 dtype: string - name: section_9 dtype: string - name: section_9A dtype: string - name: section_9B dtype: string - name: section_10 dtype: string - name: section_11 dtype: string - name: section_12 dtype: string - name: section_13 dtype: string - name: section_14 dtype: string - name: section_15 dtype: string splits: - name: train num_bytes: 1296737173 num_examples: 6683 - name: validation num_bytes: 166735560 num_examples: 836 - name: test num_bytes: 156399535 num_examples: 835 download_size: 1637502176 dataset_size: 1619872268 - config_name: year_2008 features: - name: filename dtype: string - name: cik dtype: string - name: year dtype: string - name: section_1 dtype: string - name: section_1A dtype: string - name: section_1B dtype: string - name: section_2 dtype: string - name: section_3 dtype: string - name: section_4 dtype: string - name: section_5 dtype: string - name: section_6 dtype: string - name: section_7 dtype: string - name: section_7A dtype: string - name: section_8 dtype: string - name: section_9 dtype: string - name: section_9A dtype: string - name: section_9B dtype: string - name: section_10 dtype: string - name: section_11 dtype: string - name: section_12 dtype: string - name: section_13 dtype: string - name: section_14 dtype: string - name: section_15 dtype: string splits: - name: train num_bytes: 1525698198 num_examples: 7408 - name: validation num_bytes: 190034435 num_examples: 927 - name: test num_bytes: 187659976 num_examples: 926 download_size: 1924164839 dataset_size: 1903392609 - config_name: year_2009 features: - name: filename dtype: string - name: cik dtype: string - name: year dtype: string - name: section_1 dtype: string - name: section_1A dtype: string - name: section_1B dtype: string - name: section_2 dtype: string - name: section_3 dtype: string - name: section_4 dtype: string - name: section_5 dtype: string - name: section_6 dtype: string - name: section_7 dtype: string - name: section_7A dtype: string - name: section_8 dtype: string - name: section_9 dtype: string - name: section_9A dtype: string - name: section_9B dtype: string - name: section_10 dtype: string - name: section_11 dtype: string - name: section_12 dtype: string - name: section_13 dtype: string - name: section_14 dtype: string - name: section_15 dtype: string splits: - name: train num_bytes: 1547816260 num_examples: 7336 - name: validation num_bytes: 188897783 num_examples: 917 - name: test num_bytes: 196463897 num_examples: 917 download_size: 1954076983 dataset_size: 1933177940 - config_name: year_2010 features: - name: filename dtype: string - name: cik dtype: string - name: year dtype: string - name: section_1 dtype: string - name: section_1A dtype: string - name: section_1B dtype: string - name: section_2 dtype: string - name: section_3 dtype: string - name: section_4 dtype: string - name: section_5 dtype: string - name: section_6 dtype: string - name: section_7 dtype: string - name: section_7A dtype: string - name: section_8 dtype: string - name: section_9 dtype: string - name: section_9A dtype: string - name: section_9B dtype: string - name: section_10 dtype: string - name: section_11 dtype: string - name: section_12 dtype: string - name: section_13 dtype: string - name: section_14 dtype: string - name: section_15 dtype: string splits: - name: train num_bytes: 1493505900 num_examples: 7013 - name: validation num_bytes: 192695567 num_examples: 877 - name: test num_bytes: 191482640 num_examples: 877 download_size: 1897687327 dataset_size: 1877684107 - config_name: year_2011 features: - name: filename dtype: string - name: cik dtype: string - name: year dtype: string - name: section_1 dtype: string - name: section_1A dtype: string - name: section_1B dtype: string - name: section_2 dtype: string - name: section_3 dtype: string - name: section_4 dtype: string - name: section_5 dtype: string - name: section_6 dtype: string - name: section_7 dtype: string - name: section_7A dtype: string - name: section_8 dtype: string - name: section_9 dtype: string - name: section_9A dtype: string - name: section_9B dtype: string - name: section_10 dtype: string - name: section_11 dtype: string - name: section_12 dtype: string - name: section_13 dtype: string - name: section_14 dtype: string - name: section_15 dtype: string splits: - name: train num_bytes: 1481486551 num_examples: 6724 - name: validation num_bytes: 190781558 num_examples: 841 - name: test num_bytes: 185869151 num_examples: 840 download_size: 1877396421 dataset_size: 1858137260 - config_name: year_2012 features: - name: filename dtype: string - name: cik dtype: string - name: year dtype: string - name: section_1 dtype: string - name: section_1A dtype: string - name: section_1B dtype: string - name: section_2 dtype: string - name: section_3 dtype: string - name: section_4 dtype: string - name: section_5 dtype: string - name: section_6 dtype: string - name: section_7 dtype: string - name: section_7A dtype: string - name: section_8 dtype: string - name: section_9 dtype: string - name: section_9A dtype: string - name: section_9B dtype: string - name: section_10 dtype: string - name: section_11 dtype: string - name: section_12 dtype: string - name: section_13 dtype: string - name: section_14 dtype: string - name: section_15 dtype: string splits: - name: train num_bytes: 1463496224 num_examples: 6479 - name: validation num_bytes: 186247306 num_examples: 810 - name: test num_bytes: 185923601 num_examples: 810 download_size: 1854377191 dataset_size: 1835667131 - config_name: year_2013 features: - name: filename dtype: string - name: cik dtype: string - name: year dtype: string - name: section_1 dtype: string - name: section_1A dtype: string - name: section_1B dtype: string - name: section_2 dtype: string - name: section_3 dtype: string - name: section_4 dtype: string - name: section_5 dtype: string - name: section_6 dtype: string - name: section_7 dtype: string - name: section_7A dtype: string - name: section_8 dtype: string - name: section_9 dtype: string - name: section_9A dtype: string - name: section_9B dtype: string - name: section_10 dtype: string - name: section_11 dtype: string - name: section_12 dtype: string - name: section_13 dtype: string - name: section_14 dtype: string - name: section_15 dtype: string splits: - name: train num_bytes: 1468172419 num_examples: 6372 - name: validation num_bytes: 183570866 num_examples: 797 - name: test num_bytes: 182495750 num_examples: 796 download_size: 1852839009 dataset_size: 1834239035 - config_name: year_2014 features: - name: filename dtype: string - name: cik dtype: string - name: year dtype: string - name: section_1 dtype: string - name: section_1A dtype: string - name: section_1B dtype: string - name: section_2 dtype: string - name: section_3 dtype: string - name: section_4 dtype: string - name: section_5 dtype: string - name: section_6 dtype: string - name: section_7 dtype: string - name: section_7A dtype: string - name: section_8 dtype: string - name: section_9 dtype: string - name: section_9A dtype: string - name: section_9B dtype: string - name: section_10 dtype: string - name: section_11 dtype: string - name: section_12 dtype: string - name: section_13 dtype: string - name: section_14 dtype: string - name: section_15 dtype: string splits: - name: train num_bytes: 1499451593 num_examples: 6261 - name: validation num_bytes: 181568907 num_examples: 783 - name: test num_bytes: 181046535 num_examples: 783 download_size: 1880963095 dataset_size: 1862067035 - config_name: year_2015 features: - name: filename dtype: string - name: cik dtype: string - name: year dtype: string - name: section_1 dtype: string - name: section_1A dtype: string - name: section_1B dtype: string - name: section_2 dtype: string - name: section_3 dtype: string - name: section_4 dtype: string - name: section_5 dtype: string - name: section_6 dtype: string - name: section_7 dtype: string - name: section_7A dtype: string - name: section_8 dtype: string - name: section_9 dtype: string - name: section_9A dtype: string - name: section_9B dtype: string - name: section_10 dtype: string - name: section_11 dtype: string - name: section_12 dtype: string - name: section_13 dtype: string - name: section_14 dtype: string - name: section_15 dtype: string splits: - name: train num_bytes: 1472346721 num_examples: 6028 - name: validation num_bytes: 180128910 num_examples: 754 - name: test num_bytes: 189210252 num_examples: 753 download_size: 1860303134 dataset_size: 1841685883 - config_name: year_2016 features: - name: filename dtype: string - name: cik dtype: string - name: year dtype: string - name: section_1 dtype: string - name: section_1A dtype: string - name: section_1B dtype: string - name: section_2 dtype: string - name: section_3 dtype: string - name: section_4 dtype: string - name: section_5 dtype: string - name: section_6 dtype: string - name: section_7 dtype: string - name: section_7A dtype: string - name: section_8 dtype: string - name: section_9 dtype: string - name: section_9A dtype: string - name: section_9B dtype: string - name: section_10 dtype: string - name: section_11 dtype: string - name: section_12 dtype: string - name: section_13 dtype: string - name: section_14 dtype: string - name: section_15 dtype: string splits: - name: train num_bytes: 1471605426 num_examples: 5812 - name: validation num_bytes: 178310005 num_examples: 727 - name: test num_bytes: 177481471 num_examples: 727 download_size: 1845967492 dataset_size: 1827396902 - config_name: year_2017 features: - name: filename dtype: string - name: cik dtype: string - name: year dtype: string - name: section_1 dtype: string - name: section_1A dtype: string - name: section_1B dtype: string - name: section_2 dtype: string - name: section_3 dtype: string - name: section_4 dtype: string - name: section_5 dtype: string - name: section_6 dtype: string - name: section_7 dtype: string - name: section_7A dtype: string - name: section_8 dtype: string - name: section_9 dtype: string - name: section_9A dtype: string - name: section_9B dtype: string - name: section_10 dtype: string - name: section_11 dtype: string - name: section_12 dtype: string - name: section_13 dtype: string - name: section_14 dtype: string - name: section_15 dtype: string splits: - name: train num_bytes: 1459021126 num_examples: 5635 - name: validation num_bytes: 174360913 num_examples: 705 - name: test num_bytes: 184398250 num_examples: 704 download_size: 1836306408 dataset_size: 1817780289 - config_name: year_2018 features: - name: filename dtype: string - name: cik dtype: string - name: year dtype: string - name: section_1 dtype: string - name: section_1A dtype: string - name: section_1B dtype: string - name: section_2 dtype: string - name: section_3 dtype: string - name: section_4 dtype: string - name: section_5 dtype: string - name: section_6 dtype: string - name: section_7 dtype: string - name: section_7A dtype: string - name: section_8 dtype: string - name: section_9 dtype: string - name: section_9A dtype: string - name: section_9B dtype: string - name: section_10 dtype: string - name: section_11 dtype: string - name: section_12 dtype: string - name: section_13 dtype: string - name: section_14 dtype: string - name: section_15 dtype: string splits: - name: train num_bytes: 1433409319 num_examples: 5508 - name: validation num_bytes: 181466460 num_examples: 689 - name: test num_bytes: 182594965 num_examples: 688 download_size: 1815810567 dataset_size: 1797470744 - config_name: year_2019 features: - name: filename dtype: string - name: cik dtype: string - name: year dtype: string - name: section_1 dtype: string - name: section_1A dtype: string - name: section_1B dtype: string - name: section_2 dtype: string - name: section_3 dtype: string - name: section_4 dtype: string - name: section_5 dtype: string - name: section_6 dtype: string - name: section_7 dtype: string - name: section_7A dtype: string - name: section_8 dtype: string - name: section_9 dtype: string - name: section_9A dtype: string - name: section_9B dtype: string - name: section_10 dtype: string - name: section_11 dtype: string - name: section_12 dtype: string - name: section_13 dtype: string - name: section_14 dtype: string - name: section_15 dtype: string splits: - name: train num_bytes: 1421232269 num_examples: 5354 - name: validation num_bytes: 175603562 num_examples: 670 - name: test num_bytes: 176336174 num_examples: 669 download_size: 1791237155 dataset_size: 1773172005 - config_name: year_2020 features: - name: filename dtype: string - name: cik dtype: string - name: year dtype: string - name: section_1 dtype: string - name: section_1A dtype: string - name: section_1B dtype: string - name: section_2 dtype: string - name: section_3 dtype: string - name: section_4 dtype: string - name: section_5 dtype: string - name: section_6 dtype: string - name: section_7 dtype: string - name: section_7A dtype: string - name: section_8 dtype: string - name: section_9 dtype: string - name: section_9A dtype: string - name: section_9B dtype: string - name: section_10 dtype: string - name: section_11 dtype: string - name: section_12 dtype: string - name: section_13 dtype: string - name: section_14 dtype: string - name: section_15 dtype: string splits: - name: train num_bytes: 1541847387 num_examples: 5480 - name: validation num_bytes: 193498658 num_examples: 686 - name: test num_bytes: 192600298 num_examples: 685 download_size: 1946916132 dataset_size: 1927946343 annotations_creators: - no-annotation language: - en language_creators: - other license: - apache-2.0 multilinguality: - monolingual pretty_name: EDGAR-CORPUS (10-K Filings from 1999 to 2020) size_categories: - 100K<n<1M source_datasets: - extended|other tags: - research papers - edgar - sec - finance - financial - filings - 10K - 10-K - nlp - research - econlp - economics - business task_categories: - other task_ids: [] --- # Dataset Card for [EDGAR-CORPUS] ## Table of Contents - [Table of Contents](#table-of-contents) - [Dataset Description](#dataset-description) - [Dataset Summary](#dataset-summary) - [Supported Tasks](#supported-tasks) - [Languages](#languages) - [Dataset Structure](#dataset-structure) - [Data Instances](#data-instances) - [Data Fields](#data-fields) - [Data Splits](#data-splits) - [Dataset Creation](#dataset-creation) - [Source Data](#source-data) - [Annotations](#annotations) - [Personal and Sensitive Information](#personal-and-sensitive-information) - [Considerations for Using the Data](#considerations-for-using-the-data) - [Social Impact of Dataset](#social-impact-of-dataset) - [Discussion of Biases](#discussion-of-biases) - [Other Known Limitations](#other-known-limitations) - [Additional Information](#additional-information) - [Licensing Information](#licensing-information) - [References](#references) - [Contributions](#contributions) ## Dataset Description - **Point of Contact: Lefteris Loukas** ### Dataset Summary This dataset card is based on the paper **EDGAR-CORPUS: Billions of Tokens Make The World Go Round** authored by _Lefteris Loukas et.al_, as published in the _ECONLP 2021_ workshop. This dataset contains the annual reports of public companies from 1993-2020 from SEC EDGAR filings. There is supported functionality to load a specific year. Care: since this is a corpus dataset, different `train/val/test` splits do not have any special meaning. It's the default HF card format to have train/val/test splits. If you wish to load specific year(s) of specific companies, you probably want to use the open-source software which generated this dataset, EDGAR-CRAWLER: https://github.com/nlpaueb/edgar-crawler. ## Citation If this work helps or inspires you in any way, please consider citing the relevant paper published at the [3rd Economics and Natural Language Processing (ECONLP) workshop](https://lt3.ugent.be/econlp/) at EMNLP 2021 (Punta Cana, Dominican Republic): ``` @inproceedings{loukas-etal-2021-edgar, title = "{EDGAR}-{CORPUS}: Billions of Tokens Make The World Go Round", author = "Loukas, Lefteris and Fergadiotis, Manos and Androutsopoulos, Ion and Malakasiotis, Prodromos", booktitle = "Proceedings of the Third Workshop on Economics and Natural Language Processing", month = nov, year = "2021", address = "Punta Cana, Dominican Republic", publisher = "Association for Computational Linguistics", url = "https://aclanthology.org/2021.econlp-1.2", pages = "13--18", } ``` ### Supported Tasks This is a raw dataset/corpus for financial NLP. As such, there are no annotations or labels. ### Languages The EDGAR Filings are in English. ## Dataset Structure ### Data Instances Refer to the dataset preview. ### Data Fields **filename**: Name of file on EDGAR from which the report was extracted.<br> **cik**: EDGAR identifier for a firm.<br> **year**: Year of report.<br> **section_1**: Corressponding section of the Annual Report.<br> **section_1A**: Corressponding section of the Annual Report.<br> **section_1B**: Corressponding section of the Annual Report.<br> **section_2**: Corressponding section of the Annual Report.<br> **section_3**: Corressponding section of the Annual Report.<br> **section_4**: Corressponding section of the Annual Report.<br> **section_5**: Corressponding section of the Annual Report.<br> **section_6**: Corressponding section of the Annual Report.<br> **section_7**: Corressponding section of the Annual Report.<br> **section_7A**: Corressponding section of the Annual Report.<br> **section_8**: Corressponding section of the Annual Report.<br> **section_9**: Corressponding section of the Annual Report.<br> **section_9A**: Corressponding section of the Annual Report.<br> **section_9B**: Corressponding section of the Annual Report.<br> **section_10**: Corressponding section of the Annual Report.<br> **section_11**: Corressponding section of the Annual Report.<br> **section_12**: Corressponding section of the Annual Report.<br> **section_13**: Corressponding section of the Annual Report.<br> **section_14**: Corressponding section of the Annual Report.<br> **section_15**: Corressponding section of the Annual Report.<br> ```python import datasets # Load the entire dataset raw_dataset = datasets.load_dataset("eloukas/edgar-corpus", "full") # Load a specific year and split year_1993_training_dataset = datasets.load_dataset("eloukas/edgar-corpus", "year_1993", split="train") ``` ### Data Splits | Config | Training | Validation | Test | | --------- | -------- | ---------- | ------ | | full | 176,289 | 22,050 | 22,036 | | year_1993 | 1,060 | 133 | 133 | | year_1994 | 2,083 | 261 | 260 | | year_1995 | 4,110 | 514 | 514 | | year_1996 | 7,589 | 949 | 949 | | year_1997 | 8,084 | 1,011 | 1,011 | | year_1998 | 8,040 | 1,006 | 1,005 | | year_1999 | 7,864 | 984 | 983 | | year_2000 | 7,589 | 949 | 949 | | year_2001 | 7,181 | 898 | 898 | | year_2002 | 6,636 | 830 | 829 | | year_2003 | 6,672 | 834 | 834 | | year_2004 | 7,111 | 889 | 889 | | year_2005 | 7,113 | 890 | 889 | | year_2006 | 7,064 | 883 | 883 | | year_2007 | 6,683 | 836 | 835 | | year_2008 | 7,408 | 927 | 926 | | year_2009 | 7,336 | 917 | 917 | | year_2010 | 7,013 | 877 | 877 | | year_2011 | 6,724 | 841 | 840 | | year_2012 | 6,479 | 810 | 810 | | year_2013 | 6,372 | 797 | 796 | | year_2014 | 6,261 | 783 | 783 | | year_2015 | 6,028 | 754 | 753 | | year_2016 | 5,812 | 727 | 727 | | year_2017 | 5,635 | 705 | 704 | | year_2018 | 5,508 | 689 | 688 | | year_2019 | 5,354 | 670 | 669 | | year_2020 | 5,480 | 686 | 685 | ## Dataset Creation ### Source Data #### Initial Data Collection and Normalization Initial data was collected and processed by the authors of the research paper **EDGAR-CORPUS: Billions of Tokens Make The World Go Round**. #### Who are the source language producers? Public firms filing with the SEC. ### Annotations #### Annotation process NA #### Who are the annotators? NA ### Personal and Sensitive Information The dataset contains public filings data from SEC. ## Considerations for Using the Data ### Social Impact of Dataset Low to none. ### Discussion of Biases The dataset is about financial information of public companies and as such the tone and style of text is in line with financial literature. ### Other Known Limitations The dataset needs further cleaning for improved performance. ## Additional Information ### Licensing Information EDGAR data is publicly available. ### Shoutout Huge shoutout to [@JanosAudran](https://huggingface.co/JanosAudran) for the HF Card setup! ### References - [Research Paper] Lefteris Loukas, Manos Fergadiotis, Ion Androutsopoulos, and, Prodromos Malakasiotis. EDGAR-CORPUS: Billions of Tokens Make The World Go Round. Third Workshop on Economics and Natural Language Processing (ECONLP). https://arxiv.org/abs/2109.14394 - Punta Cana, Dominican Republic, November 2021. - [Software] Lefteris Loukas, Manos Fergadiotis, Ion Androutsopoulos, and, Prodromos Malakasiotis. EDGAR-CRAWLER. https://github.com/nlpaueb/edgar-crawler (2021) - [EDGAR CORPUS, but in zip files] EDGAR CORPUS: A corpus for financial NLP research, built from SEC's EDGAR. https://zenodo.org/record/5528490 (2021) - [Word Embeddings] EDGAR-W2V: Word2vec Embeddings trained on EDGAR-CORPUS. https://zenodo.org/record/5524358 (2021) - [Applied Research paper where EDGAR-CORPUS is used] Lefteris Loukas, Manos Fergadiotis, Ilias Chalkidis, Eirini Spyropoulou, Prodromos Malakasiotis, Ion Androutsopoulos, and, George Paliouras. FiNER: Financial Numeric Entity Recognition for XBRL Tagging. Proceedings of the 60th Annual Meeting of the Association for Computational Linguistics (Volume 1: Long Papers). https://doi.org/10.18653/v1/2022.acl-long.303 (2022)
[ -0.3463030159473419, -0.5501840710639954, -0.004334384109824896, 0.32810938358306885, -0.08904904127120972, 0.012670546770095825, 0.027202656492590904, -0.672699511051178, 0.6609619855880737, 0.3926374614238739, -0.365386039018631, -0.6781855225563049, -0.5117766261100769, 0.2585946023464203, -0.198836088180542, 1.204985499382019, -0.06191098317503929, -0.3303316831588745, -0.048764873296022415, -0.24518869817256927, -0.17050844430923462, -0.39835992455482483, -0.7745457291603088, -0.16199813783168793, 0.4137064218521118, 0.3849866986274719, 0.6472077965736389, 0.7355402112007141, 0.6678873300552368, 0.3627608120441437, 0.06935132294893265, 0.1363518387079239, -0.27522721886634827, -0.307550311088562, 0.19240230321884155, -0.27489227056503296, -0.6715222001075745, 0.12726528942584991, 0.6842455863952637, 0.5999075174331665, -0.17408069968223572, 0.39687010645866394, 0.08255936205387115, 0.8696652054786682, -0.3670181930065155, 0.6631647348403931, -0.49278461933135986, -0.08151905238628387, -0.16111035645008087, -0.3180199861526489, -0.2037145346403122, -0.46646878123283386, 0.05591699853539467, -0.8362606167793274, 0.19295842945575714, 0.5411514043807983, 1.3254822492599487, 0.016231313347816467, -0.18890686333179474, -0.43807312846183777, -0.34988418221473694, 0.8279691934585571, -0.6698508262634277, 0.28167733550071716, 0.47475364804267883, -0.052315954118967056, -0.034187525510787964, -0.9151380062103271, -0.5080917477607727, 0.052287980914115906, -0.28959423303604126, 0.20133082568645477, -0.40384191274642944, -0.17856857180595398, 0.2859152555465698, 0.37073689699172974, -0.4856659770011902, -0.12280359864234924, -0.8789767026901245, -0.37515944242477417, 0.9140146374702454, 0.12711261212825775, 0.21436327695846558, -0.2339821755886078, -0.7114435434341431, -0.39970269799232483, -0.5048884749412537, 0.31244295835494995, 0.6813812851905823, 0.27160075306892395, -0.2752355933189392, 0.41915223002433777, -0.016924146562814713, 0.45422667264938354, -0.0463273748755455, -0.3733054995536804, 0.7895482182502747, -0.5652079582214355, -0.459476113319397, 0.16686251759529114, 0.73412024974823, 0.547192394733429, 0.1661752611398697, -0.08046497404575348, -0.2686639726161957, -0.19228854775428772, -0.011653824709355831, -0.7473025918006897, -0.004993925802409649, 0.38551437854766846, -0.6233400702476501, -0.37908443808555603, 0.36601293087005615, -1.1258487701416016, 0.14270538091659546, -0.33915403485298157, 0.1524258255958557, -0.3022615611553192, -0.15721122920513153, -0.06862358003854752, -0.4480588734149933, 0.5148926973342896, -0.0071614463813602924, -0.7706162333488464, 0.4030161499977112, 0.6956019401550293, 0.8457943201065063, 0.034805841743946075, -0.35196778178215027, -0.6075562238693237, 0.07149224728345871, -0.3340875804424286, 0.681492805480957, -0.3286799490451813, -0.2860748767852783, 0.04897914081811905, 0.3400987386703491, -0.2212403267621994, -0.43970420956611633, 0.7602229118347168, -0.30418989062309265, 0.31919896602630615, -0.3901176154613495, -0.31877362728118896, -0.24984373152256012, 0.2517010271549225, -0.5905987024307251, 1.2247329950332642, 0.13905496895313263, -1.2266836166381836, 0.46565839648246765, -0.7974122762680054, -0.2151034027338028, 0.02890649624168873, -0.09402133524417877, -0.5887083411216736, -0.4882842004299164, 0.2725566327571869, 0.39399805665016174, -0.2667795419692993, 0.3021632134914398, -0.19876542687416077, -0.22158098220825195, 0.054187532514333725, -0.15581195056438446, 1.1970278024673462, 0.33801084756851196, -0.23212718963623047, 0.05081924796104431, -1.1533104181289673, -0.19712503254413605, 0.21862296760082245, -0.3236948847770691, -0.30645591020584106, -0.05552415922284126, 0.370571494102478, 0.0358697883784771, 0.4780096113681793, -0.7117273211479187, 0.2838684916496277, -0.7135986089706421, 0.5676321983337402, 0.6418703198432922, 0.23459485173225403, 0.17616774141788483, -0.654999315738678, 0.7127338647842407, 0.2913965880870819, 0.10656074434518814, -0.1989692747592926, -0.62173992395401, -0.7259418964385986, -0.16979171335697174, 0.42648714780807495, 0.7548719644546509, -0.45550405979156494, 0.7294927835464478, -0.20277170836925507, -0.5819017291069031, -0.38253095746040344, -0.1068248301744461, 0.1649942398071289, 0.8119427561759949, 0.35544711351394653, -0.1875324696302414, -0.7521310448646545, -1.0855903625488281, 0.04143989458680153, -0.2867140471935272, 0.17379529774188995, 0.23005911707878113, 0.919281542301178, -0.031894538551568985, 1.035927414894104, -0.8337526917457581, -0.4346817433834076, -0.09747419506311417, 0.11662416905164719, 0.5316303968429565, 0.46778905391693115, 0.7334377765655518, -0.6533340215682983, -0.5386170744895935, 0.08819244056940079, -0.5551832914352417, 0.09972266107797623, -0.29322853684425354, -0.18619509041309357, 0.40708425641059875, 0.5027531981468201, -0.27940627932548523, 0.6431517004966736, 0.40541431307792664, -0.5089861750602722, 0.5205859541893005, -0.5078142881393433, -0.06313687562942505, -1.0630428791046143, 0.5507844686508179, 0.15389573574066162, -0.08437667787075043, -0.34718480706214905, -0.14081153273582458, -0.08310788124799728, 0.06295492500066757, -0.34920254349708557, 0.5854191184043884, -0.43289533257484436, -0.043845389038324356, 0.3143538236618042, 0.14418010413646698, 0.1343391090631485, 0.7549774050712585, -0.31361860036849976, 0.9720693230628967, 0.6364266872406006, -0.4793902039527893, 0.2945646643638611, 0.34621191024780273, -0.4878263771533966, 0.2984488606452942, -0.837451696395874, -0.1796238273382187, -0.31607237458229065, 0.36649030447006226, -1.1735445261001587, -0.06129170581698418, 0.44908562302589417, -0.5129059553146362, 0.2779626250267029, 0.2073792815208435, -0.3024560213088989, -0.538896918296814, -0.663322389125824, -0.10450323671102524, 0.3710961639881134, -0.29413992166519165, 0.3963841497898102, 0.34222593903541565, -0.29250022768974304, -0.9517715573310852, -0.9455511569976807, 0.02258254401385784, -0.3887234926223755, -0.8172862529754639, 0.4642137289047241, -0.16747596859931946, -0.34696274995803833, 0.11205930262804031, 0.04966026172041893, 0.025086985900998116, 0.01665910892188549, 0.21087150275707245, 0.4443741738796234, -0.11051071435213089, -0.08551757782697678, -0.20906366407871246, -0.1642197072505951, 0.08981182426214218, -0.22794406116008759, 0.3998708128929138, -0.2546652853488922, 0.02893383614718914, -0.405108779668808, 0.11680752784013748, 0.49699386954307556, -0.39269113540649414, 1.0954989194869995, 0.4757450222969055, -0.3563426733016968, 0.13820880651474, -0.4370657205581665, 0.22988884150981903, -0.44699978828430176, 0.1841658055782318, -0.040874090045690536, -0.6015096306800842, 0.9272173047065735, 0.2260228395462036, 0.4301670491695404, 1.0756754875183105, 0.5044296383857727, 0.11659231781959534, 0.5750510096549988, 0.44287869334220886, -0.26866963505744934, 0.2801423966884613, -0.7761251926422119, 0.3390999734401703, -0.7362536787986755, -0.4918496906757355, -0.8620844483375549, -0.47870683670043945, -0.9053535461425781, -0.1883133351802826, 0.2276814877986908, -0.0015658714110031724, -0.3056061565876007, 0.44388547539711, -0.6320663094520569, 0.4395635724067688, 0.5505604147911072, -0.2257303148508072, 0.2380872517824173, 0.12678289413452148, -0.40201252698898315, 0.09769529104232788, -0.4643968343734741, -0.5654597878456116, 1.2624489068984985, 0.6618120670318604, 0.43634262681007385, -0.13792219758033752, 0.9972266554832458, 0.3040376603603363, 0.19100172817707062, -0.5310202240943909, 0.31633374094963074, -0.08474291115999222, -0.691143274307251, -0.4486018717288971, -0.3679201900959015, -1.274407982826233, 0.14884477853775024, -0.02510451152920723, -0.8352027535438538, 0.6074750423431396, -0.042647283524274826, -0.5120983719825745, 0.23561125993728638, -0.6863079071044922, 0.7740028500556946, -0.08402727544307709, -0.35834696888923645, 0.09920790791511536, -0.6576901078224182, 0.2782882750034332, 0.0038742218166589737, 0.6161715388298035, -0.16974906623363495, -0.2527215778827667, 1.2259572744369507, -0.6044783592224121, 0.724109947681427, -0.29488512873649597, -0.030362237244844437, 0.5630689859390259, -0.46077921986579895, 0.7861056923866272, 0.08558792620897293, -0.26923418045043945, 0.27518102526664734, 0.26466497778892517, -0.4616338312625885, -0.1169617623090744, 0.7360520958900452, -0.8584989905357361, -0.2570894956588745, -0.8512753844261169, -0.428787499666214, 0.14494207501411438, 0.15683408081531525, 0.32318195700645447, 0.5540919899940491, -0.291454017162323, 0.40959876775741577, 0.16870015859603882, -0.47820401191711426, 0.7879930734634399, 0.2208903431892395, -0.3238658308982849, -0.7697591185569763, 0.8544570207595825, 0.4270551800727844, -0.010392637923359871, 0.3192768692970276, 0.19437243044376373, -0.4820830523967743, -0.2623599171638489, -0.2895292341709137, 0.2911114990711212, -0.49432215094566345, -0.3084409534931183, -0.7687131762504578, -0.19503892958164215, -0.8316146731376648, -0.17410071194171906, -0.006954201962798834, -0.46069496870040894, -0.3801320195198059, -0.32658061385154724, 0.4872739613056183, 0.6102896928787231, -0.31314757466316223, 0.13046079874038696, -0.5831061601638794, 0.1720225214958191, 0.1321323662996292, 0.2724970281124115, 0.24470581114292145, -0.3915950357913971, -0.39265066385269165, 0.1244417130947113, -0.5783922076225281, -0.7690861821174622, 1.0121417045593262, 0.2458345741033554, 0.5046250820159912, 0.5681259632110596, 0.12812276184558868, 0.7749848961830139, -0.2622351050376892, 0.9765647053718567, 0.36151209473609924, -0.647510826587677, 0.4268548786640167, -0.4400557577610016, 0.05542674660682678, 0.6364901065826416, 0.49498599767684937, -0.6828505992889404, -0.23667535185813904, -1.2563227415084839, -1.1514137983322144, 1.0003262758255005, 0.29699382185935974, -0.1313512623310089, -0.004792989697307348, 0.2062394618988037, -0.059786368161439896, 0.3291022479534149, -0.753239631652832, -0.6921164393424988, 0.04126202315092087, -0.19257600605487823, 0.04399336129426956, -0.13137084245681763, -0.1462864875793457, -0.49795395135879517, 0.9448695182800293, 0.10445964336395264, 0.369520902633667, 0.4048042297363281, 0.18000191450119019, -0.1980048418045044, 0.2205023318529129, 0.706057608127594, 1.0587083101272583, -0.5217410922050476, -0.12574060261249542, 0.1534932553768158, -0.6700122356414795, -0.07215633243322372, 0.2418239265680313, -0.2190270870923996, -0.028844386339187622, 0.5629298090934753, 0.7551547884941101, 0.12752029299736023, -0.48537588119506836, 0.4966924488544464, 0.021790077909827232, -0.513822615146637, -0.6780642867088318, -0.13345837593078613, 0.13901673257350922, 0.12279485166072845, 0.5674781203269958, 0.10283301025629044, 0.10082878172397614, -0.7327631711959839, 0.3207477331161499, 0.09419261664152145, -0.26563915610313416, -0.17381978034973145, 0.7218290567398071, 0.26334959268569946, -0.19937537610530853, 0.6186097860336304, -0.2739471197128296, -0.5945574641227722, 1.1165293455123901, 0.38076427578926086, 0.9542105793952942, 0.09856727719306946, 0.17193563282489777, 0.8888653516769409, 0.561008095741272, -0.07790130376815796, 0.4170428514480591, 0.10596062988042831, -0.5896555185317993, -0.24225731194019318, -0.863062858581543, -0.21222980320453644, 0.28483372926712036, -0.7376613020896912, 0.38770559430122375, -0.4846654236316681, -0.0992434099316597, 0.22772105038166046, 0.41817808151245117, -0.9309380054473877, 0.13253946602344513, 0.03141112998127937, 1.0080993175506592, -0.8024477958679199, 0.631885290145874, 0.6161025762557983, -0.912384033203125, -0.822320818901062, -0.24771779775619507, -0.13286809623241425, -1.023318886756897, 0.8387561440467834, 0.15350057184696198, 0.34264102578163147, -0.20104417204856873, -0.71534663438797, -1.0578447580337524, 1.3060365915298462, -0.02982465550303459, -0.7400703430175781, 0.07401499152183533, 0.18258149921894073, 0.5604002475738525, -0.4927423894405365, 0.20277653634548187, 0.7194987535476685, 0.712172269821167, 0.22564241290092468, -0.8726248741149902, -0.09860442578792572, -0.32819801568984985, -0.24004480242729187, 0.3286876976490021, -1.0323371887207031, 0.8902411460876465, -0.030933145433664322, -0.08851616084575653, -0.38173869252204895, 0.7982831597328186, 0.3069789409637451, 0.7218402624130249, 0.5210033059120178, 0.9159935116767883, 0.978641152381897, -0.08059189468622208, 0.996731162071228, -0.5940817594528198, 0.5284739136695862, 0.8071417808532715, -0.07025826722383499, 1.0460337400436401, 0.37770572304725647, -0.6057979464530945, 0.5192891359329224, 0.6424869894981384, -0.24522648751735687, 0.17151391506195068, 0.11355727910995483, 0.15647250413894653, 0.09516198188066483, 0.05075550451874733, -0.6498359441757202, 0.4140864312648773, 0.22807687520980835, -0.5691843628883362, -0.1019255667924881, -0.2655840516090393, 0.3153509795665741, -0.25914427638053894, -0.17550374567508698, 0.6569669842720032, 0.0972743108868599, -0.6850785613059998, 0.4435853064060211, 0.11261837929487228, 0.8562356233596802, -0.6530166864395142, 0.08616385608911514, -0.26794472336769104, 0.0827278271317482, -0.42443007230758667, -0.7286744713783264, 0.6742345690727234, 0.17106735706329346, -0.19243508577346802, -0.3976931571960449, 0.5269281268119812, -0.4278613030910492, -0.9370529651641846, 0.13095706701278687, 0.08577670902013779, 0.31464308500289917, 0.24134030938148499, -0.7317808270454407, -0.08124273270368576, 0.31854137778282166, -0.4824915826320648, 0.2708022892475128, 0.5533386468887329, 0.12732014060020447, 0.3404664397239685, 0.7374027371406555, 0.2219199240207672, -0.050749920308589935, -0.19004003703594208, 0.7330422401428223, -0.8675745129585266, -0.757178008556366, -0.6149023771286011, 0.5084078311920166, -0.2827790677547455, -0.6733739376068115, 0.70229172706604, 0.976284921169281, 0.7524791955947876, 0.18900078535079956, 0.7397667169570923, -0.31047651171684265, 0.4816446304321289, -0.3498416244983673, 0.7533038258552551, -0.7325612306594849, 0.06288685649633408, -0.21749994158744812, -1.0761770009994507, -0.20980188250541687, 0.6449304223060608, -0.3792544901371002, -0.13043148815631866, 0.6546286940574646, 0.7153757810592651, 0.25090670585632324, 0.1955363154411316, 0.07548241317272186, 0.4912504255771637, 0.3162698447704315, 0.2613825500011444, 0.15851500630378723, -0.8293101191520691, 0.6549711227416992, -0.4736155867576599, -0.13619966804981232, -0.3308621346950531, -1.058866262435913, -0.4981285035610199, -0.7650545835494995, -0.5650761723518372, -0.4733908474445343, -0.32740870118141174, 1.1581721305847168, 0.3253813683986664, -0.9271286725997925, -0.5375096797943115, 0.1416189819574356, -0.09718769788742065, -0.19188708066940308, -0.24514394998550415, 0.8389094471931458, -0.30909132957458496, -0.7676412463188171, 0.037591077387332916, 0.3006350100040436, -0.06436705589294434, -0.2099764496088028, -0.04296997934579849, -0.4822126626968384, 0.0755247175693512, 0.4863377511501312, 0.37589433789253235, -0.6005174517631531, -0.149253711104393, -0.047438718378543854, -0.004628400318324566, 0.2917681336402893, 0.48898786306381226, -0.5114814639091492, 0.13569268584251404, 0.7588252425193787, 0.40551653504371643, 0.5499587059020996, 0.16734683513641357, 0.05302673950791359, -0.6574687361717224, 0.34638306498527527, -0.025843052193522453, 0.4949738681316376, 0.13628661632537842, -0.5267812609672546, 0.755192220211029, 0.4048132300376892, -0.6926467418670654, -0.6430849432945251, -0.6355189085006714, -1.3561360836029053, -0.06590297818183899, 1.109946608543396, 0.011046034283936024, -0.6569929718971252, -0.060117512941360474, -0.2680589556694031, 0.17503103613853455, -0.7935921549797058, 0.46522700786590576, 1.0289703607559204, -0.19973163306713104, 0.3911401629447937, -0.6484118103981018, 0.4037800133228302, -0.01839403063058853, -0.8396887183189392, 0.06795970350503922, 0.36629658937454224, 0.27066805958747864, 0.2939455807209015, 0.8611685633659363, -0.029193764552474022, -0.16287139058113098, 0.2422531545162201, 0.2118566334247589, -0.06691750884056091, -0.2500186562538147, -0.1420518010854721, 0.3274398148059845, -0.21753601729869843, -0.4164719581604004 ]
null
null
null
null
null
null
null
null
null
null
null
null
null
pn_summary
null
2023-01-25T14:42:36Z
467
4
pn-summary
[ "task_categories:summarization", "task_categories:text-classification", "task_ids:news-articles-summarization", "task_ids:news-articles-headline-generation", "task_ids:text-simplification", "task_ids:topic-classification", "annotations_creators:found", "language_creators:found", "multilinguality:monolingual", "size_categories:10K<n<100K", "source_datasets:original", "language:fa", "license:mit", "arxiv:2012.11204", "region:us" ]
2023-01-25T14:42:36Z
2022-03-02T23:29:22.000Z
2022-03-02T23:29:22
--- annotations_creators: - found language_creators: - found language: - fa license: - mit multilinguality: - monolingual size_categories: - 10K<n<100K source_datasets: - original task_categories: - summarization - text-classification task_ids: - news-articles-summarization - news-articles-headline-generation - text-simplification - topic-classification paperswithcode_id: pn-summary pretty_name: Persian News Summary (PnSummary) dataset_info: features: - name: id dtype: string - name: title dtype: string - name: article dtype: string - name: summary dtype: string - name: category dtype: class_label: names: '0': Economy '1': Roads-Urban '2': Banking-Insurance '3': Agriculture '4': International '5': Oil-Energy '6': Industry '7': Transportation '8': Science-Technology '9': Local '10': Sports '11': Politics '12': Art-Culture '13': Society '14': Health '15': Research '16': Education-University '17': Tourism - name: categories dtype: string - name: network dtype: class_label: names: '0': Tahlilbazaar '1': Imna '2': Shana '3': Mehr '4': Irna '5': Khabaronline - name: link dtype: string config_name: 1.0.0 splits: - name: train num_bytes: 309436493 num_examples: 82022 - name: validation num_bytes: 21311817 num_examples: 5592 - name: test num_bytes: 20936820 num_examples: 5593 download_size: 89591141 dataset_size: 351685130 --- # Dataset Card for Persian News Summary (pn_summary) ## 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/hooshvare/pn-summary/ - **Paper:** https://arxiv.org/abs/2012.11204 - **Leaderboard:** [More Information Needed] - **Point of Contact:** [Mehrdad Farahani](mailto:m3hrdadfphi@gmail.com) ### Dataset Summary A well-structured summarization dataset for the Persian language consists of 93,207 records. It is prepared for Abstractive/Extractive tasks (like cnn_dailymail for English). It can also be used in other scopes like Text Generation, Title Generation, and News Category Classification. It is imperative to consider that the newlines were replaced with the `[n]` symbol. Please interpret them into normal newlines (for ex. `t.replace("[n]", "\n")`) and then use them for your purposes. ### Supported Tasks and Leaderboards The dataset is prepared for Abstractive/Extractive summarization tasks (like cnn_dailymail for English). It can also be used in other scopes like Text Generation, Title Generation, and News Category Classification. ### Languages The dataset covers Persian mostly and somewhere a combination with English. ## Dataset Structure ### Data Instances A record consists of 8 features: ```python record = ['id','title', 'article', 'summary', 'category', 'categories', 'network', 'link'] ``` In the following, you can see an example of `pn_summmary`. ```json { "article": "به گزارش شانا، علی کاردر امروز (۲۷ دی ماه) در مراسم تودیع محسن قمصری، مدیر سابق امور بین الملل شرکت ملی نفت ایران و معارفه سعید خوشرو، مدیر جدید امور بین الملل این شرکت، گفت: مدیریت امور بین\u200eالملل به عنوان یکی از تاثیرگذارترین مدیریت\u200cهای شرکت ملی نفت ایران در دوران تحریم\u200cهای ظالمانه غرب علیه کشورمان بسیار هوشمندانه عمل کرد و ما توانستیم به خوبی از عهده تحریم\u200cها برآییم. [n] وی افزود: مجموعه امور بین الملل در همه دوران\u200cها با سختی\u200cها و مشکلات بسیاری مواجه بوده است، به ویژه در دوره اخیر به دلیل مسائل پیرامون تحریم وظیفه سنگینی بر عهده داشت که با تدبیر مدیریت خوب این مجموعه سربلند از آن بیرون آمد. [n] کاردر با قدردانی از زحمات محسن قمصری، به سلامت مدیریت امور بین الملل این شرکت اشاره کرد و افزود: محوریت کار مدیریت اموربین الملل سلامت مالی بوده است. [n] وی بر ضرورت نهادینه سازی جوانگرایی در مدیریت شرکت ملی نفت ایران تاکید کرد و گفت: مدیریت امور بین الملل در پرورش نیروهای زبده و کارآزموده آنچنان قوی عملکرده است که برای انتخاب مدیر جدید مشکلی وجود نداشت. [n] کاردر، حرفه\u200eای\u200eگری و کار استاندارد را از ویژگی\u200cهای مدیران این مدیریت برشمرد و گفت: نگاه جامع، خلاقیت و نوآوری و بکارگیری نیروهای جوان باید همچنان مد نظر مدیریت جدید امور بین الملل شرکت ملی نفت ایران باشد.", "categories": "نفت", "category": 5, "id": "738e296491f8b24c5aa63e9829fd249fb4428a66", "link": "https://www.shana.ir/news/275284/%D9%85%D8%AF%DB%8C%D8%B1%DB%8C%D8%AA-%D9%81%D8%B1%D9%88%D8%B4-%D9%86%D9%81%D8%AA-%D8%AF%D8%B1-%D8%AF%D9%88%D8%B1%D8%A7%D9%86-%D8%AA%D8%AD%D8%B1%DB%8C%D9%85-%D9%87%D9%88%D8%B4%D9%85%D9%86%D8%AF%D8%A7%D9%86%D9%87-%D8%B9%D9%85%D9%84-%DA%A9%D8%B1%D8%AF", "network": 2, "summary": "مدیرعامل شرکت ملی نفت، عملکرد مدیریت امور بین\u200eالملل این شرکت را در دوران تحریم بسیار هوشمندانه خواند و گفت: امور بین الملل در دوران پس از تحریم\u200eها نیز می\u200cتواند نقش بزرگی در تسریع روند توسعه داشته باشد.", "title": "مدیریت فروش نفت در دوران تحریم هوشمندانه عمل کرد" } ``` ### Data Fields - `id (string)`: ID of the news. - `title (string)`: The title of the news. - `article (string)`: The article of the news. - `summary (string)`: The summary of the news. - `category (int)`: The category of news in English (index of categories), including `Economy`, `Roads-Urban`, `Banking-Insurance`, `Agriculture`, `International`, `Oil-Energy`, `Industry`, `Transportation`, `Science-Technology`, `Local`, `Sports`, `Politics`, `Art-Culture`, `Society`, `Health`, `Research`, `Education-University`, `Tourism`. - `categories (string)`: The category and sub-category of the news in Persian. - `network (int)`: The news agency name (index of news agencies), including `Tahlilbazaar`, `Imna`, `Shana`, `Mehr`, `Irna`, `Khabaronline`. - `link (string)`: The link of the news. The category in English includes 18 different article categories from economy to tourism. ```bash Economy, Roads-Urban, Banking-Insurance, Agriculture, International, Oil-Energy, Industry, Transportation, Science-Technology, Local, Sports, Politics, Art-Culture, Society, Health, Research, Education-University, Tourism ``` ### Data Splits Training (82,022 records, 8 features), validation (5,592 records, 8 features), and test split (5,593 records and 8 features). ## Dataset Creation ### Curation Rationale [More Information Needed] ### Source Data #### Initial Data Collection and Normalization [More Information Needed] #### Who are the source language producers? The dataset comprises numerous articles of various categories that have been crawled from six news agency websites (Tahlilbazaar, Imna, Shana, Mehr, Irna, and Khabaronline). ### Annotations #### Annotation process Each record (article) includes the long original text as well as a human-generated summary. The total number of cleaned articles is 93,207 (from 200,000 crawled articles). #### Who are the annotators? The dataset was organized by [Mehrdad Farahani](https://github.com/m3hrdadfi), [Mohammad Gharachorloo](https://github.com/baarsaam) and [Mohammad Manthouri](https://github.com/mmanthouri) for this paper [Leveraging ParsBERT and Pretrained mT5 for Persian Abstractive Text Summarization](https://arxiv.org/abs/2012.11204) ### 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 This dataset was curated by [Mehrdad Farahani](https://github.com/m3hrdadfi), [Mohammad Gharachorloo](https://github.com/baarsaam) and [Mohammad Manthouri](https://github.com/mmanthouri). ### Licensing Information This dataset is licensed under MIT License. ### Citation Information ```bibtex @article{pnSummary, title={Leveraging ParsBERT and Pretrained mT5 for Persian Abstractive Text Summarization}, author={Mehrdad Farahani, Mohammad Gharachorloo, Mohammad Manthouri}, year={2020}, eprint={2012.11204}, archivePrefix={arXiv}, primaryClass={cs.CL} } ``` ### Contributions Thanks to [@m3hrdadfi](https://github.com/m3hrdadfi) for adding this dataset.
[ -0.6918358206748962, -0.6359299421310425, 0.18538106977939606, 0.38232898712158203, -0.5856658816337585, -0.007829711772501469, -0.18426306545734406, -0.24972477555274963, 0.6768056750297546, 0.36310499906539917, -0.4097081422805786, -0.8618705868721008, -0.6403498649597168, 0.4812231659889221, -0.4445079267024994, 1.0075792074203491, -0.059477224946022034, -0.14258329570293427, 0.26689639687538147, -0.14325419068336487, -0.1521335393190384, -0.4492024779319763, -0.5032687187194824, 0.1580415964126587, 0.2615138292312622, 0.5041206479072571, 0.6394957304000854, 0.43259671330451965, 0.6415013670921326, 0.4011599123477936, -0.01071639358997345, 0.10322936624288559, -0.07132800668478012, -0.1892632395029068, 0.08640940487384796, -0.4163922369480133, -0.46411970257759094, -0.12224887311458588, 0.8189523220062256, 0.6823667287826538, -0.24701924622058868, 0.44498011469841003, 0.21271315217018127, 1.3762282133102417, -0.46952033042907715, -0.19376282393932343, -0.0447399728000164, -0.03997066617012024, -0.5253282189369202, -0.0894973948597908, 0.11301279067993164, -0.7695202231407166, -0.44231611490249634, -0.5465672612190247, -0.10359345376491547, 0.19203706085681915, 1.2343941926956177, -0.249629408121109, -0.4440682530403137, -0.053715575486421585, -0.5741944909095764, 1.1176824569702148, -0.8474100828170776, 0.17939256131649017, 0.404837042093277, 0.17999714612960815, -0.307388037443161, -0.3941073417663574, -0.8335122466087341, 0.22223636507987976, -0.2791884243488312, 0.3511102497577667, -0.22384637594223022, -0.6089831590652466, 0.3008008599281311, 0.5779783725738525, -0.5838128924369812, -0.5212365984916687, -0.4675234258174896, 0.0869726911187172, 0.8752725720405579, 0.2763456404209137, 0.5588934421539307, -0.4197387397289276, -0.4225669801235199, -0.12286131083965302, -0.3468668758869171, 0.30253562331199646, 0.5128805637359619, -0.03440505638718605, -0.6830220222473145, 0.6909546256065369, -0.6226636171340942, 0.6901972889900208, 0.3841290771961212, -0.46099644899368286, 0.6773311495780945, -0.8688400983810425, -0.2106819599866867, -0.04496048763394356, 1.066733717918396, 0.6267728805541992, 0.08607226610183716, 0.28658461570739746, 0.1151968464255333, -0.2501338720321655, -0.05954425781965256, -0.6079550981521606, 0.028454598039388657, 0.3423122465610504, -0.9046751260757446, -0.45370960235595703, 0.21140576899051666, -1.198755145072937, -0.18088673055171967, 0.007552419323474169, 0.11720603704452515, -0.3943980932235718, -0.6071271300315857, 0.18721334636211395, -0.22618348896503448, 0.3285233974456787, 0.4813230037689209, -0.5343273878097534, 0.33656594157218933, 0.1852233111858368, 0.870116114616394, 0.03533930331468582, -0.18356892466545105, 0.24280431866645813, 0.4058564603328705, -0.3843965232372284, 0.7948454022407532, -0.15731847286224365, -0.2666201591491699, -0.2152644395828247, 0.2222670614719391, -0.21415750682353973, -0.14361725747585297, 0.8356648683547974, -0.33165931701660156, 0.4319270849227905, -0.23231688141822815, -0.34631675481796265, -0.39808452129364014, 0.16497135162353516, -0.8311595916748047, 0.9276113510131836, 0.031297896057367325, -1.3417388200759888, 0.01906377263367176, -0.6183059811592102, -0.48645395040512085, -0.23614732921123505, 0.15779371559619904, -0.6397244930267334, -0.09899704903364182, 0.4193704128265381, 0.42799708247184753, -0.3809763193130493, 0.07797902822494507, 0.03539683297276497, -0.14266911149024963, 0.3408726155757904, -0.028042364865541458, 1.01218843460083, 0.4196280837059021, -0.35536080598831177, 0.07045089453458786, -0.8698641061782837, 0.025786153972148895, 0.18167008459568024, -0.33428582549095154, -0.31470760703086853, -0.08798439055681229, 0.20725096762180328, 0.44113144278526306, 0.28210097551345825, -0.5059082508087158, 0.1442587971687317, -0.7336546182632446, 0.10955163836479187, 0.7053074836730957, 0.40606075525283813, 0.37842416763305664, -0.9057392477989197, 0.597906231880188, 0.14400367438793182, 0.12236791104078293, 0.06185172125697136, -0.4075947403907776, -0.8358251452445984, -0.08307218551635742, 0.3234352469444275, 0.5244919657707214, -0.7840710878372192, 0.6600541472434998, -0.22302164137363434, -0.8944875597953796, -0.17387935519218445, 0.017663391306996346, 0.33919769525527954, 0.25514647364616394, 0.4319726228713989, -0.1846364587545395, -0.7847936153411865, -0.5967020988464355, -0.4025763273239136, -0.006914214696735144, 0.1979263573884964, 0.15832632780075073, 0.6419263482093811, -0.07018259912729263, 0.6517521142959595, -0.5260646343231201, -0.4858792722225189, -0.6914870738983154, -0.19406478106975555, 0.7034483551979065, 0.661885142326355, 0.5607308149337769, -0.9659481048583984, -0.8528261780738831, 0.1300118863582611, -0.7875012755393982, 0.13621684908866882, -0.3023262023925781, -0.4323767125606537, 0.45001667737960815, 0.1887369155883789, -0.48709821701049805, 0.6063364148139954, 0.42517098784446716, -0.5140138864517212, 0.673373281955719, 0.08076060563325882, 0.4894353449344635, -1.5927399396896362, 0.3035649061203003, -0.0937596783041954, 0.14815901219844818, -0.567070722579956, -0.03860278055071831, -0.15982230007648468, 0.1580398827791214, -0.43195730447769165, 0.6851652264595032, -0.7458511590957642, 0.43944990634918213, 0.08626314252614975, 0.07349029183387756, -0.026834873482584953, 0.6081830263137817, -0.047665566205978394, 0.7646927833557129, 0.4304811954498291, -0.6198436617851257, 0.12624119222164154, 0.4453313946723938, -0.38981732726097107, 0.41395124793052673, -0.7107975482940674, -0.3815937638282776, -0.08053923398256302, 0.273928165435791, -0.8665160536766052, -0.3330705165863037, 0.6885533928871155, -0.7717713713645935, 0.10483784228563309, 0.0610039047896862, -0.5238112211227417, -0.2564451992511749, -0.8989892601966858, 0.11321038007736206, 0.38612326979637146, -0.06625307351350784, 0.6121808886528015, 0.47105762362480164, -0.14587438106536865, -0.5831361413002014, -0.5617942214012146, 0.20488613843917847, -0.23791730403900146, -0.5502901673316956, 0.2331106960773468, -0.02583344094455242, -0.19010615348815918, 0.033980078995227814, -0.035820744931697845, -0.16325749456882477, 0.13929003477096558, 0.34181731939315796, 0.16379031538963318, -0.2241782397031784, -0.08873328566551208, 0.10972636938095093, -0.178330197930336, -0.11614672839641571, 0.1381055861711502, 0.539994478225708, -0.22789759933948517, -0.2167954444885254, -0.7985308170318604, 0.7117050886154175, 0.539806067943573, -0.24993285536766052, 0.9729520678520203, 0.8459709286689758, -0.19771632552146912, 0.3153686821460724, -0.5518871545791626, 0.02208254300057888, -0.4396863281726837, 0.2584994435310364, -0.1708875298500061, -0.4611241817474365, 0.4936732053756714, -0.13874909281730652, -0.1288614571094513, 1.129740834236145, 0.6137418746948242, -0.11029244214296341, 0.9737381935119629, 0.50654536485672, -0.4059147238731384, 0.18967735767364502, -0.5279659032821655, 0.22413428127765656, -1.0886648893356323, -0.36928579211235046, -0.5133171081542969, -0.40111908316612244, -0.6918788552284241, -0.3207423985004425, 0.46180450916290283, 0.18725061416625977, -0.2591516077518463, 0.1986238956451416, -0.5957762002944946, 0.33248570561408997, 0.4762401282787323, 0.21976880729198456, 0.35762685537338257, 0.08291763067245483, -0.022165855392813683, -0.01402148138731718, -0.518618643283844, -0.5594879388809204, 1.1899951696395874, 0.08811859041452408, 0.5967572331428528, 0.526749849319458, 0.688995361328125, 0.2884956896305084, -0.12789611518383026, -0.24309389293193817, 0.5642366409301758, -0.0988505631685257, -0.6698002219200134, -0.4373890161514282, -0.1827557384967804, -1.0499544143676758, 0.1895943135023117, -0.3939441442489624, -0.710734486579895, 0.6217803955078125, -0.22438351809978485, -0.4126151502132416, 0.5292811989784241, -0.3243202567100525, 0.6138392090797424, -0.2036164104938507, -0.5421912670135498, -0.3043944537639618, -0.8419191837310791, 0.5419624447822571, 0.0971260517835617, 0.5652862787246704, -0.235018789768219, -0.14390191435813904, 0.9986786246299744, -0.7445722222328186, 0.6906023621559143, 0.038998864591121674, 0.19830580055713654, 0.324689656496048, -0.13526076078414917, 0.37344151735305786, 0.27475884556770325, -0.1950075775384903, 0.3505423963069916, 0.12694714963436127, -0.536752462387085, -0.12842819094657898, 0.7256149053573608, -0.8761523365974426, -0.5788185596466064, -1.0156248807907104, -0.29864251613616943, 0.07750671356916428, 0.4645790159702301, 0.34012570977211, 0.5593013167381287, -0.00003210109571227804, 0.3765611946582794, 0.4353506565093994, -0.3950345516204834, 0.532680332660675, 0.2913408875465393, -0.05008052662014961, -0.48093071579933167, 0.9080999493598938, 0.1624019742012024, 0.013312498107552528, 0.35941556096076965, 0.028708389028906822, -0.11627930402755737, -0.41577014327049255, -0.6427342295646667, 0.39829522371292114, -0.37776753306388855, -0.38937142491340637, -0.7676418423652649, -0.2286299467086792, -0.4744802713394165, -0.17985376715660095, -0.10987642407417297, -0.6872513294219971, -0.23526820540428162, -0.012540150433778763, 0.7479767203330994, 0.6361658573150635, -0.26249685883522034, 0.23861974477767944, -0.8022371530532837, 0.3258252441883087, -0.17696769535541534, 0.31775397062301636, 0.27842727303504944, -0.3328392803668976, -0.7145531177520752, 0.16870459914207458, -0.4552949070930481, -1.3712005615234375, 0.8136292695999146, 0.11168079823255539, 0.29269781708717346, 0.4783989489078522, 0.35540971159935, 0.6530545949935913, -0.18135292828083038, 0.9624911546707153, 0.17610928416252136, -0.7985320687294006, 0.6403553485870361, -0.6918843388557434, 0.25276562571525574, 0.6407839059829712, 0.604495108127594, -0.6862832903862, -0.4745653569698334, -0.646639883518219, -0.9793011546134949, 0.8614916205406189, 0.2835853397846222, 0.0734039694070816, 0.01233428530395031, 0.03486297279596329, -0.2710813581943512, 0.36686232686042786, -0.6497325897216797, -0.8297328948974609, -0.15035580098628998, -0.3019757568836212, 0.21519441902637482, -0.45015397667884827, -0.16729143261909485, -0.5771529078483582, 0.7884601950645447, 0.44154614210128784, 0.6021129488945007, 0.47580447793006897, -0.07628560811281204, -0.027560735121369362, 0.5728439688682556, 0.6447005867958069, 0.6111634969711304, -0.1275288164615631, -0.06818732619285583, 0.2543824315071106, -0.8246243596076965, 0.06991291046142578, -0.0921001210808754, -0.3791998028755188, 0.1872609257698059, 0.3404930830001831, 0.6276227235794067, 0.1832740306854248, -0.43747678399086, 0.6835193634033203, -0.14213135838508606, -0.27722883224487305, -0.814553439617157, -0.09987398236989975, 0.16357089579105377, 0.026001164689660072, 0.5259864926338196, 0.08583733439445496, 0.2934253215789795, -0.4169847369194031, 0.1301029771566391, 0.23476740717887878, -0.0039006294682621956, -0.13153637945652008, 0.626610517501831, 0.06106536462903023, 0.10754872113466263, 0.33615508675575256, -0.3320379853248596, -0.7445862293243408, 0.6968264579772949, 0.37719228863716125, 0.6838104128837585, -0.32461631298065186, 0.36857280135154724, 1.0545262098312378, 0.35208648443222046, 0.02260352298617363, 0.5101598501205444, 0.048127081245183945, -0.38803553581237793, -0.1372564435005188, -0.899391770362854, -0.0100714648142457, -0.148570254445076, -0.7111366391181946, 0.15521495044231415, -0.6413025259971619, -0.17982086539268494, -0.10974536091089249, 0.46361976861953735, -0.22041742503643036, 0.16890330612659454, -0.23803216218948364, 0.832276463508606, -0.931098997592926, 0.8164180517196655, 0.8194430470466614, -0.8176525831222534, -1.1938345432281494, 0.19116508960723877, 0.06866081804037094, -0.39239540696144104, 0.591480553150177, -0.11921440064907074, 0.051870208233594894, -0.025374779477715492, -0.2942577600479126, -1.235335111618042, 1.0681650638580322, -0.4046896994113922, -0.30360621213912964, 0.38604021072387695, 0.013767620548605919, 0.3473204970359802, -0.21905900537967682, 0.3922186493873596, 0.24739550054073334, 0.6573827862739563, -0.025659605860710144, -0.8617426753044128, 0.5269490480422974, -0.891554594039917, -0.04250200465321541, 0.18582645058631897, -0.9338862895965576, 1.3034248352050781, -0.22394701838493347, -0.33186423778533936, 0.10991480946540833, 0.511530339717865, 0.09843562543392181, 0.4831978678703308, 0.2688050866127014, 0.6374716758728027, 0.453655868768692, -0.0951140746474266, 1.1003750562667847, -0.5793455243110657, 0.2901879549026489, 0.6102808117866516, 0.27473026514053345, 0.8694486618041992, 0.3405589461326599, -0.7309271693229675, 0.9948031306266785, 0.5100721120834351, -0.30324479937553406, 0.5970650911331177, -0.2397022396326065, -0.257965087890625, -0.0513625293970108, -0.17709748446941376, -0.7772408723831177, 0.1912366896867752, 0.1886657029390335, -0.3422735631465912, -0.07513657957315445, -0.02520887553691864, 0.36898261308670044, 0.18174327909946442, -0.2577400803565979, 0.806790828704834, 0.039396464824676514, -0.3065285086631775, 0.7054787278175354, 0.3688097596168518, 0.6792125105857849, -0.5224394202232361, -0.01376055832952261, -0.197419211268425, 0.16309458017349243, -0.6325733065605164, -0.7801193594932556, 0.5259582996368408, -0.06467628479003906, -0.348862886428833, 0.0719071626663208, 0.8083765506744385, -0.266256719827652, -0.9234591722488403, -0.17590570449829102, 0.5759524703025818, 0.21993911266326904, -0.002439802745357156, -0.766323447227478, 0.04251858964562416, 0.2981586456298828, -0.48491737246513367, 0.39665600657463074, 0.3578140139579773, -0.24517309665679932, 0.41134485602378845, 0.9112277030944824, 0.3471581041812897, -0.1611442118883133, -0.4593571722507477, 0.9687617421150208, -0.9645367860794067, -0.5191997289657593, -0.8568284511566162, 0.6231861114501953, -0.42937931418418884, -0.2895803153514862, 1.285288691520691, 0.7357488870620728, 0.5663261413574219, -0.24273954331874847, 0.8945656418800354, -0.3073576092720032, 1.0766350030899048, -0.4021507501602173, 0.9759945869445801, -0.8299261927604675, 0.018738174811005592, -0.5801896452903748, -0.31325796246528625, -0.3252026438713074, 0.8784051537513733, -0.31692373752593994, 0.04270860180258751, 0.7382209300994873, 0.7115933299064636, 0.3383837938308716, 0.12732364237308502, -0.1684889793395996, 0.4912657141685486, -0.31211650371551514, 0.6820248961448669, 0.6561081409454346, -0.6188907027244568, 0.29404014348983765, -0.5500603318214417, -0.15068881213665009, -0.38408011198043823, -0.5775730609893799, -0.8957269191741943, -0.7452979683876038, -0.15331031382083893, -0.32438886165618896, 0.0035600080154836178, 0.8159167766571045, 0.2245907038450241, -0.9377738833427429, -0.46480801701545715, 0.1762903779745102, 0.5354502201080322, -0.4242452383041382, -0.2668933868408203, 0.7949768304824829, 0.17129430174827576, -0.7128610014915466, -0.22548626363277435, 0.009324303828179836, -0.061496634036302567, 0.16242621839046478, 0.036493636667728424, -0.6868049502372742, -0.05598472058773041, 0.41693854331970215, 0.4010719060897827, -0.5482083559036255, 0.20996098220348358, 0.16232922673225403, -0.2148422747850418, 0.03172455355525017, 0.35876062512397766, -0.669757604598999, -0.15667836368083954, 0.5070778727531433, 0.05956391990184784, 0.24849236011505127, 0.20186111330986023, 0.17445555329322815, -0.3204549551010132, 0.2221956104040146, -0.05220017209649086, 0.16195796430110931, 0.1004396602511406, -0.619796633720398, 0.4953938126564026, 0.3783211410045624, -0.4477708637714386, -0.678496241569519, -0.0340363010764122, -1.159913420677185, -0.33217668533325195, 1.1455529928207397, 0.08676300197839737, -0.463961660861969, -0.23686231672763824, -0.4468466639518738, 0.368008553981781, -0.6701202392578125, 0.6312755942344666, 0.5885936617851257, -0.03751629218459129, -0.09417475759983063, -0.7461786866188049, 0.45870551466941833, 0.22582513093948364, -0.8075603246688843, -0.2580106854438782, 0.31633588671684265, 0.2332923859357834, 0.22208751738071442, 0.9508923292160034, -0.19312147796154022, 0.38587382435798645, -0.18435867130756378, 0.22626321017742157, -0.03335194289684296, 0.09417324513196945, -0.1583327203989029, -0.025624923408031464, -0.21850359439849854, -0.2966705560684204 ]
null
null
null
null
null
null
null
null
null
null
null
null
null
wiki_split
null
2023-04-05T13:43:23Z
467
3
wikisplit
[ "task_categories:text2text-generation", "annotations_creators:machine-generated", "language_creators:found", "multilinguality:monolingual", "size_categories:100K<n<1M", "source_datasets:original", "language:en", "license:cc-by-4.0", "split-and-rephrase", "arxiv:1808.09468", "region:us" ]
2023-04-05T13:43:23Z
2022-03-02T23:29:22.000Z
2022-03-02T23:29:22
--- annotations_creators: - machine-generated language: - en language_creators: - found license: - cc-by-4.0 multilinguality: - monolingual pretty_name: WikiSplit size_categories: - 100K<n<1M source_datasets: - original task_categories: - text2text-generation task_ids: [] paperswithcode_id: wikisplit tags: - split-and-rephrase dataset_info: features: - name: complex_sentence dtype: string - name: simple_sentence_1 dtype: string - name: simple_sentence_2 dtype: string splits: - name: test num_bytes: 1949294 num_examples: 5000 - name: train num_bytes: 384513073 num_examples: 989944 - name: validation num_bytes: 1935459 num_examples: 5000 download_size: 100279164 dataset_size: 388397826 --- # Dataset Card for "wiki_split" ## 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://dataset-homepage/](https://dataset-homepage/) - **Repository:** https://github.com/google-research-datasets/wiki-split - **Paper:** [Learning To Split and Rephrase From Wikipedia Edit History](https://arxiv.org/abs/1808.09468) - **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:** 100.28 MB - **Size of the generated dataset:** 388.40 MB - **Total amount of disk used:** 488.68 MB ### Dataset Summary One million English sentences, each split into two sentences that together preserve the original meaning, extracted from Wikipedia Google's WikiSplit dataset was constructed automatically from the publicly available Wikipedia revision history. Although the dataset contains some inherent noise, it can serve as valuable training data for models that split or merge sentences. ### Supported Tasks and Leaderboards - Split and Rephrase ### 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:** 100.28 MB - **Size of the generated dataset:** 388.40 MB - **Total amount of disk used:** 488.68 MB An example of 'train' looks as follows. ``` { "complex_sentence": " '' As she translates from one language to another , she tries to find the appropriate wording and context in English that would correspond to the work in Spanish her poems and stories started to have differing meanings in their respective languages .", "simple_sentence_1": "' '' As she translates from one language to another , she tries to find the appropriate wording and context in English that would correspond to the work in Spanish . ", "simple_sentence_2": " Ergo , her poems and stories started to have differing meanings in their respective languages ." } ``` ### Data Fields The data fields are the same among all splits. #### default - `complex_sentence`: a `string` feature. - `simple_sentence_1`: a `string` feature. - `simple_sentence_2`: a `string` feature. ### Data Splits | name |train |validation|test| |-------|-----:|---------:|---:| |default|989944| 5000|5000| ## Dataset Creation ### Curation Rationale [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Source Data #### Initial Data Collection and Normalization [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) #### Who are the source language producers? [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Annotations #### Annotation process [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) #### Who are the annotators? [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Personal and Sensitive Information [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ## Considerations for Using the Data ### Social Impact of Dataset [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Discussion of Biases [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Other Known Limitations [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ## Additional Information ### Dataset Curators [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Licensing Information The WikiSplit dataset is a verbatim copy of certain content from the publicly available Wikipedia revision history. The dataset is therefore licensed under [CC BY-SA 4.0](http://creativecommons.org/licenses/by-sa/4.0/). Any third party content or data is provided "As Is" without any warranty, express or implied. ### Citation Information ``` @inproceedings{botha-etal-2018-learning, title = "Learning To Split and Rephrase From {W}ikipedia Edit History", author = "Botha, Jan A. and Faruqui, Manaal and Alex, John and Baldridge, Jason and Das, Dipanjan", booktitle = "Proceedings of the 2018 Conference on Empirical Methods in Natural Language Processing", month = oct # "-" # nov, year = "2018", address = "Brussels, Belgium", publisher = "Association for Computational Linguistics", url = "https://aclanthology.org/D18-1080", doi = "10.18653/v1/D18-1080", pages = "732--737", } ``` ### Contributions Thanks to [@thomwolf](https://github.com/thomwolf), [@patrickvonplaten](https://github.com/patrickvonplaten), [@albertvillanova](https://github.com/albertvillanova), [@lewtun](https://github.com/lewtun) for adding this dataset.
[ -0.6085343956947327, -0.677703320980072, 0.1372820883989334, 0.2235860377550125, -0.31917548179626465, 0.0025269719772040844, -0.529482364654541, -0.4471946656703949, 0.6747322082519531, 0.36130961775779724, -0.8982139825820923, -0.7828173637390137, -0.5727807283401489, 0.2822960615158081, -0.27761587500572205, 1.345102071762085, -0.26823854446411133, -0.12525880336761475, -0.3323529064655304, -0.2758316695690155, -0.17055627703666687, -0.2523196339607239, -0.3286179006099701, -0.1965673863887787, 0.6634392142295837, 0.6468484997749329, 0.6474271416664124, 0.9159411787986755, 0.39605045318603516, 0.26429519057273865, -0.04079081118106842, 0.11779987066984177, -0.4469497799873352, -0.08877775073051453, -0.03621530160307884, -0.3617093861103058, -0.3058800995349884, 0.24405257403850555, 0.6084025502204895, 0.7952262759208679, -0.1658564656972885, 0.4393639862537384, 0.002982374746352434, 0.8789754509925842, -0.3741590082645416, 0.3788529336452484, -0.18483203649520874, -0.14770002663135529, -0.5172744989395142, 0.19888468086719513, -0.08693984150886536, -0.39798590540885925, -0.019268186762928963, -0.8384497165679932, 0.29122403264045715, -0.027112510055303574, 1.0406253337860107, 0.1683032065629959, -0.18717695772647858, -0.2910537123680115, -0.2931879758834839, 0.5060495734214783, -0.7455111742019653, 0.27427563071250916, 0.5945440530776978, 0.08772825449705124, -0.13463276624679565, -0.7663185000419617, -0.7804446220397949, 0.08996298909187317, -0.201928973197937, 0.16784223914146423, 0.05360507592558861, -0.3552997410297394, 0.4064454138278961, 0.5788209438323975, -0.6367990374565125, -0.03631261736154556, -0.7023192644119263, -0.058137644082307816, 1.1186116933822632, 0.18130213022232056, 0.42751044034957886, -0.5363113880157471, -0.038642507046461105, -0.37560614943504333, -0.32096508145332336, 0.057239871472120285, 0.7296084761619568, 0.5138887763023376, -0.7931376695632935, 0.6973041892051697, -0.2704598307609558, 0.5045139193534851, -0.020578017458319664, -0.07717077434062958, 0.7696667313575745, -0.4315184950828552, -0.08797496557235718, -0.17497529089450836, 1.1014652252197266, 0.4396165609359741, 0.08670014142990112, -0.007005754858255386, 0.2848016023635864, -0.11809973418712616, -0.03910968080163002, -0.6334177255630493, -0.5085468888282776, 0.5326583981513977, -0.5428118109703064, -0.5544590353965759, 0.16890636086463928, -1.1037945747375488, -0.20991137623786926, -0.3039534389972687, 0.0976468101143837, -0.3643377721309662, -0.5934882164001465, 0.03339031711220741, -0.2728518545627594, 0.26038146018981934, 0.08560433983802795, -0.6724467277526855, 0.3080500364303589, 0.6103692054748535, 0.7732285857200623, -0.08361390978097916, -0.594196617603302, -0.058387238532304764, -0.15274208784103394, -0.1006130799651146, 0.5600523352622986, -0.16785745322704315, -0.2975521683692932, -0.08209481835365295, 0.40146663784980774, -0.22389596700668335, -0.1976725459098816, 0.944959819316864, -0.10147807002067566, 0.6880353093147278, -0.4889349341392517, -0.5906938910484314, -0.06307823956012726, 0.23194336891174316, -1.013297438621521, 1.32611882686615, 0.224439799785614, -1.0886324644088745, 0.2784050703048706, -0.8183457255363464, -0.5622820854187012, 0.03883778676390648, 0.05463866516947746, -0.5795462727546692, -0.13753986358642578, 0.10133682936429977, 0.39819812774658203, -0.3261902928352356, 0.11062964797019958, -0.3961872458457947, 0.09651321172714233, 0.16879796981811523, -0.0653504878282547, 1.3280558586120605, 0.10984127223491669, -0.24269713461399078, -0.030558306723833084, -1.0462799072265625, -0.07321403175592422, 0.44704389572143555, -0.37004396319389343, -0.20708638429641724, -0.0892396792769432, 0.4638787806034088, 0.2356482297182083, 0.265078604221344, -0.5181018114089966, 0.3633021116256714, -0.4116637706756592, 0.23449775576591492, 0.645965039730072, -0.09175258874893188, 0.3851492404937744, -0.27761054039001465, 0.3412344753742218, 0.03297039493918419, 0.4045151174068451, 0.10593511909246445, -0.5715230703353882, -0.84087735414505, -0.2791910767555237, 0.5720363259315491, 0.5343388319015503, -0.7342908382415771, 0.8228128552436829, -0.49515998363494873, -0.723354160785675, -0.7427418828010559, 0.22927811741828918, 0.1531037837266922, 0.5531927943229675, 0.42565658688545227, -0.28607186675071716, -0.6494588851928711, -0.8262556195259094, 0.03833042457699776, -0.11973275244235992, 0.11218350380659103, 0.25498145818710327, 0.8439170718193054, -0.06926684826612473, 0.7793679237365723, -0.7605994343757629, -0.22034288942813873, -0.2720770835876465, -0.0855981633067131, 0.266396164894104, 0.5355876684188843, 0.45093199610710144, -1.0623492002487183, -0.5923061966896057, -0.19471004605293274, -0.6897057294845581, -0.1127973422408104, 0.13494162261486053, -0.3442044258117676, 0.18480649590492249, 0.21015386283397675, -0.8368090391159058, 0.4162050485610962, 0.5315065979957581, -0.6334037780761719, 0.5348568558692932, -0.02166871540248394, -0.028412844985723495, -1.5542457103729248, 0.2346925288438797, 0.06942486763000488, 0.027951302006840706, -0.5703381299972534, -0.11038102954626083, -0.06027359515428543, 0.18097823858261108, -0.25261354446411133, 0.47307050228118896, -0.4150983691215515, 0.2587091624736786, 0.03198981285095215, 0.06591828167438507, 0.09263059496879578, 0.517762303352356, -0.1097983568906784, 0.37932270765304565, 0.6323516368865967, -0.4291400611400604, 0.4759940207004547, 0.5193541049957275, -0.35286739468574524, 0.5635355114936829, -0.5793953537940979, 0.04643445461988449, -0.19806285202503204, 0.40125757455825806, -0.7515591979026794, -0.559509813785553, 0.6382641196250916, -0.6293498873710632, 0.38869795203208923, -0.21276216208934784, -0.7112550139427185, -0.5476210117340088, -0.6278781294822693, 0.09266837686300278, 0.22622746229171753, -0.45297971367836, 0.4517163336277008, 0.5392718315124512, -0.004133216571062803, -0.5286452174186707, -0.7608606815338135, -0.037248674780130386, -0.25932449102401733, -0.7532330751419067, 0.43780407309532166, -0.30041423439979553, -0.06147827208042145, 0.2682880461215973, 0.17060865461826324, -0.02550600841641426, 0.04361574351787567, 0.27981770038604736, 0.2529827356338501, 0.1011953055858612, -0.011568968184292316, -0.030666686594486237, -0.006207498721778393, -0.017696093767881393, -0.12705381214618683, 0.3970305323600769, 0.09017033874988556, -0.0482349656522274, -0.2616136372089386, 0.33762145042419434, 0.4668501913547516, -0.16429977118968964, 0.9210004210472107, 0.8811048865318298, -0.32891926169395447, -0.08825872093439102, -0.5018012523651123, 0.13192610442638397, -0.3804876208305359, 0.1510632187128067, -0.19444987177848816, -0.7400542497634888, 0.794173538684845, 0.25478142499923706, 0.2495267242193222, 0.866533637046814, 0.6345528960227966, -0.18205243349075317, 0.5987171530723572, 0.4365503191947937, -0.3246684670448303, 0.5250636339187622, -0.5084673166275024, -0.1606481671333313, -0.7693023681640625, -0.4157361090183258, -0.6892699003219604, -0.41475754976272583, -1.0780643224716187, -0.5107905864715576, -0.04377969354391098, 0.0038892640732228756, -0.08030259609222412, 0.38439440727233887, -0.6700051426887512, 0.42662253975868225, 0.5319113731384277, 0.10241258144378662, 0.033847562968730927, 0.04097416624426842, -0.0727035328745842, 0.0535508431494236, -0.5597652196884155, -0.23794881999492645, 1.2122840881347656, 0.4009852111339569, 0.35497185587882996, 0.09572941809892654, 0.7773101329803467, 0.22730880975723267, 0.0488036684691906, -0.5161317586898804, 0.4176171123981476, -0.12066203355789185, -0.6647710800170898, -0.4377565383911133, -0.5640599727630615, -1.039488673210144, 0.19294968247413635, -0.1707194298505783, -0.5401196479797363, 0.4085725247859955, -0.22097493708133698, 0.11643652617931366, 0.22434920072555542, -0.7881510257720947, 0.9919909238815308, -0.12008542567491531, -0.29213759303092957, 0.08078135550022125, -0.9570538401603699, 0.22041548788547516, 0.16097848117351532, 0.5191277265548706, -0.2707180380821228, -0.02266029827296734, 1.1857751607894897, -0.8463470339775085, 0.915921688079834, -0.33894413709640503, 0.1218278631567955, 0.3513403534889221, -0.33852851390838623, 0.3229924440383911, -0.04572810232639313, -0.040914617478847504, 0.3732462525367737, 0.07128307223320007, -0.47336795926094055, -0.4184368848800659, 0.7109898328781128, -0.8880062699317932, -0.04225416108965874, -0.39723649621009827, -0.48043614625930786, -0.04201482981443405, 0.3159298002719879, 0.37849748134613037, 0.09734386205673218, -0.17965906858444214, 0.23519094288349152, 0.5814054608345032, -0.16849254071712494, 0.25701650977134705, 0.3039340674877167, -0.0994451493024826, -0.8456520438194275, 0.7438445091247559, 0.34737613797187805, -0.10976094752550125, 0.1932540088891983, 0.18566451966762543, -0.2609572410583496, -0.29335203766822815, -0.5919903516769409, 0.4212912917137146, -0.4986674189567566, -0.24386264383792877, -0.5110112428665161, -0.08618836849927902, -0.6339258551597595, 0.17617566883563995, -0.2591172158718109, -0.7533597350120544, -0.32651379704475403, -0.4767621159553528, 0.748994767665863, 0.43000078201293945, -0.4059879779815674, 0.06333508342504501, -0.44100627303123474, 0.2874070703983307, -0.12375283986330032, 0.5402019619941711, -0.11828146874904633, -0.3784658908843994, -0.5990582704544067, -0.02181130088865757, -0.10217039287090302, -0.805552065372467, 0.3282833695411682, -0.036186255514621735, 0.5112613439559937, -0.00667884387075901, 0.07597137987613678, 0.5245398879051208, -0.30984145402908325, 0.9199549555778503, 0.1437174677848816, -0.5915160775184631, 0.6102171540260315, -0.3847905695438385, 0.28835436701774597, 0.9443869590759277, 0.5445220470428467, -0.6137092113494873, -0.18566885590553284, -0.8991494178771973, -1.0856800079345703, 0.8707667589187622, 0.32074862718582153, 0.131876140832901, 0.0454883947968483, 0.3442304730415344, 0.04114310443401337, 0.09925813227891922, -0.7769750356674194, -0.8235095143318176, -0.22592924535274506, -0.5176181793212891, -0.02294306829571724, -0.15171541273593903, -0.2979477047920227, -0.5542382597923279, 0.9029755592346191, -0.025271113961935043, 0.05194059759378433, 0.2128446251153946, -0.07998776435852051, -0.1395874321460724, 0.07684233039617538, 0.2771972715854645, 0.34817901253700256, -0.13338477909564972, -0.09086602926254272, 0.010602683760225773, -0.7651787996292114, -0.16529080271720886, 0.593148946762085, -0.3410305976867676, 0.10753443837165833, 0.4336107075214386, 0.8635872006416321, 0.10686678439378738, -0.31215858459472656, 0.5310075879096985, -0.07003408670425415, -0.494046688079834, -0.37673407793045044, -0.1163594201207161, 0.22797712683677673, 0.14591720700263977, 0.30671584606170654, -0.32939255237579346, 0.018032271414995193, -0.3024417459964752, 0.1945374310016632, 0.039248231798410416, -0.04510945826768875, -0.36908987164497375, 0.4331475496292114, 0.10118339955806732, -0.15443448722362518, 0.6506012082099915, -0.08087562769651413, -0.5100000500679016, 0.5565853118896484, -0.003072617342695594, 0.8682587742805481, -0.07304216176271439, 0.3205528259277344, 0.5889342427253723, 0.42166951298713684, -0.008485437370836735, 0.34250426292419434, -0.25454893708229065, -0.7419819235801697, -0.31013330817222595, -0.675805926322937, -0.16539394855499268, 0.20608776807785034, -0.7759122252464294, 0.38612017035484314, -0.3237730860710144, -0.05702393874526024, 0.218593567609787, 0.5288816094398499, -0.7825255393981934, 0.17220476269721985, 0.06546702235937119, 1.1240144968032837, -1.0793453454971313, 0.7583564519882202, 0.6424800157546997, -0.8991963267326355, -1.003962516784668, -0.049733102321624756, 0.11393528431653976, -0.2649604082107544, 0.2746412754058838, 0.001544589758850634, 0.5463976263999939, -0.2488420456647873, -0.819252073764801, -0.7487813234329224, 1.2055569887161255, 0.19257214665412903, -0.2418595850467682, -0.018767548725008965, 0.30140578746795654, 0.6435665488243103, -0.17350973188877106, 0.15649382770061493, 0.6599851846694946, 0.6734145283699036, 0.0867324098944664, -0.9465950131416321, 0.16881141066551208, -0.5768342614173889, -0.16961629688739777, 0.11465033143758774, -0.891961395740509, 0.6768799424171448, 0.09861861169338226, -0.07236909121274948, -0.1847156286239624, 0.6769400835037231, 0.23026111721992493, 0.31890884041786194, 0.43428894877433777, 0.896271288394928, 0.9407793283462524, -0.24903573095798492, 1.0841007232666016, -0.11173810064792633, 0.5359395742416382, 1.1321860551834106, -0.0020559809636324644, 0.7428106069564819, 0.4740654230117798, -0.4660840332508087, 0.7247096300125122, 0.7255439162254333, -0.25594425201416016, 0.3958102762699127, 0.11968310922384262, -0.04434875026345253, 0.16441300511360168, -0.05036713927984238, -0.5026107430458069, 0.35063549876213074, 0.29130011796951294, -0.4648154079914093, -0.06601651757955551, 0.0020886289421468973, 0.431864470243454, -0.14212362468242645, -0.048914097249507904, 0.8479719758033752, -0.031044863164424896, -0.4140840768814087, 0.3637220859527588, -0.00816140603274107, 0.7063290476799011, -0.6539565324783325, 0.14647342264652252, -0.2765093445777893, -0.0027476355899125338, -0.6485695242881775, -0.9992218613624573, 0.4696367383003235, 0.06459714472293854, -0.5410547852516174, -0.2666187286376953, 0.7267917394638062, -0.5548942685127258, -0.7889835238456726, 0.2667885720729828, 0.3971365988254547, 0.25783032178878784, 0.3230421245098114, -1.0988694429397583, 0.37118276953697205, 0.21291093528270721, -0.6860899329185486, 0.35242196917533875, 0.5472624897956848, 0.031845707446336746, 0.3684505522251129, 0.7606179118156433, 0.12064967304468155, 0.006266561336815357, 0.30223286151885986, 0.9357886910438538, -0.5549148917198181, -0.40729188919067383, -0.6533144116401672, 0.8160699009895325, -0.4184497594833374, -0.301728218793869, 0.8844385147094727, 0.989739716053009, 1.2102023363113403, 0.07680419832468033, 0.8889973759651184, -0.6850359439849854, 0.7139611840248108, -0.25180232524871826, 0.8341712951660156, -0.6219212412834167, -0.08292757719755173, -0.45189210772514343, -0.6277363300323486, -0.33670181035995483, 0.5289493799209595, -0.24688342213630676, 0.03119298256933689, 0.3973935544490814, 0.78864586353302, 0.046269018203020096, 0.1027456745505333, -0.1201707199215889, 0.29253214597702026, 0.21439699828624725, 0.32540929317474365, 0.33274710178375244, -0.8035507202148438, 0.6190800666809082, -0.7048377394676208, -0.14387279748916626, -0.011206102557480335, -0.7335214614868164, -0.6465753316879272, -1.0854601860046387, -0.6581147909164429, -0.7089139223098755, -0.23094797134399414, 1.0277117490768433, 0.5869072675704956, -0.7623879909515381, -0.35093259811401367, 0.0029989685863256454, 0.2601343095302582, -0.10009035468101501, -0.34412068128585815, 0.6772338151931763, 0.0992278903722763, -0.7825043201446533, 0.08756857365369797, -0.08989476412534714, -0.11320426315069199, -0.1849081963300705, -0.13580797612667084, -0.5181476473808289, -0.23189915716648102, 0.47730717062950134, 0.44555214047431946, -0.3684091866016388, 0.07111595571041107, -0.22322726249694824, -0.030276745557785034, 0.09774672240018845, 0.390074223279953, -0.426198273897171, 0.31614014506340027, 0.691712498664856, 0.33771398663520813, 0.8322166800498962, -0.09713966399431229, 0.22043320536613464, -0.7035187482833862, 0.09843561053276062, -0.03445807844400406, 0.35716938972473145, 0.5118016600608826, -0.45589107275009155, 0.9009353518486023, 0.4891827404499054, -0.3532356917858124, -0.8666211366653442, -0.18921205401420593, -1.135705590248108, -0.19321641325950623, 1.1741479635238647, -0.020088154822587967, -0.549873411655426, 0.004372133873403072, -0.12363991141319275, 0.4566509425640106, -0.3779686987400055, 0.4585012197494507, 0.9583160877227783, 0.00022677065862808377, -0.10840132087469101, -0.4768279492855072, 0.5497451424598694, -0.0408746600151062, -1.0263625383377075, 0.19095641374588013, 0.6476373076438904, 0.568824827671051, 0.2507246136665344, 0.6549861431121826, -0.24138203263282776, 0.06256785988807678, -0.018871989101171494, 0.3272596299648285, -0.16737885773181915, -0.03377952799201012, -0.28301912546157837, 0.044755466282367706, -0.3185385763645172, -0.19753919541835785 ]
null
null
null
null
null
null
null
null
null
null
null
null
null
dangne/gcc_caption_only
dangne
2022-08-08T04:48:09Z
467
0
null
[ "region:us" ]
2022-08-08T04:48:09Z
2022-08-08T04:43:20.000Z
2022-08-08T04:43:20
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
Geonmo/midjourney-prompts-only
Geonmo
2023-10-25T09:12:51Z
467
1
null
[ "region:us" ]
2023-10-25T09:12:51Z
2023-10-25T09:10:06.000Z
2023-10-25T09:10:06
--- dataset_info: features: - name: text dtype: string splits: - name: train num_bytes: 495800699 num_examples: 3492544 download_size: 334934157 dataset_size: 495800699 --- # Dataset Card for "midjourney-prompts-only" [More Information needed](https://github.com/huggingface/datasets/blob/main/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
[ -0.5035315752029419, -0.32398030161857605, 0.6366696357727051, 0.6096073985099792, -0.309102863073349, -0.17135685682296753, 0.15977559983730316, 0.20164284110069275, 0.8867361545562744, 0.46877992153167725, -1.5438153743743896, -0.649084746837616, -0.44233036041259766, -0.05268082767724991, 0.011697256937623024, 1.306713581085205, 0.06023580953478813, -0.08223143219947815, -0.6116793155670166, -0.16276054084300995, -0.5356818437576294, -0.5206804275512695, -0.6886959075927734, -0.45060038566589355, 1.080505609512329, 1.0728813409805298, 0.2644164562225342, 0.25767916440963745, 0.5489888191223145, 0.06882695108652115, 0.05035020038485527, -0.1644393503665924, -0.41335776448249817, 0.23954300582408905, -0.23116827011108398, -0.5217136144638062, -0.8478772640228271, 0.050382502377033234, 0.7076412439346313, 0.6127125024795532, -0.19459089636802673, 0.8355833888053894, -0.08946485072374344, 0.8618708848953247, -0.39745500683784485, 0.37015753984451294, 0.006069396156817675, -0.12061849981546402, -0.8825609683990479, -0.07152928411960602, 0.14708876609802246, -0.43676188588142395, -0.09323150664567947, -1.0233831405639648, 0.08590541034936905, 0.16726240515708923, 0.875344455242157, 0.14550551772117615, -0.06457408517599106, 0.01445383857935667, -0.28783902525901794, 0.3108883798122406, -0.03458331152796745, 0.061382755637168884, 0.55096036195755, 0.761202871799469, 0.13219799101352692, -0.6136279702186584, -0.6167582869529724, 0.15508636832237244, -0.05421034246683121, 0.3590293824672699, -0.17077237367630005, 0.06071730703115463, 0.6774736046791077, 0.21996991336345673, -1.0000532865524292, -0.1403539478778839, -0.4186972379684448, -0.2675168514251709, 0.549984872341156, 0.43476414680480957, 0.2536880671977997, -0.2390795648097992, -0.035260170698165894, -0.04893993213772774, -0.7677767872810364, 0.31558525562286377, 0.2923073470592499, 0.19111932814121246, -1.2510234117507935, 0.8350115418434143, -0.15975520014762878, 0.3574296236038208, 0.24461013078689575, 0.669386088848114, 0.40773457288742065, -0.365865558385849, -0.08953092247247696, -0.1220184862613678, 0.33650103211402893, 0.5305033922195435, 0.17332929372787476, -0.1858287900686264, -0.07361296564340591, 0.06825556606054306, -0.19324755668640137, -1.134666085243225, -0.6876097321510315, 0.27697962522506714, -0.6699019074440002, -0.18694494664669037, -0.003422637702897191, -1.075487494468689, -0.5132133960723877, -0.4856358766555786, -0.06806778162717819, 0.22308243811130524, -0.4402952492237091, -0.36607688665390015, -0.43326929211616516, 0.2487330436706543, 0.2501815855503082, -0.4986669719219208, 0.23550142347812653, 0.3722424805164337, 0.8077616691589355, -0.13354815542697906, -0.39185187220573425, -0.7921474575996399, -0.09473489969968796, 0.13071873784065247, 0.9669142365455627, -0.6771907806396484, -0.7819451093673706, -0.003217814490199089, 0.6644294261932373, 0.09530623257160187, -0.21729588508605957, 0.8746638894081116, -0.35343340039253235, -0.04134548082947731, -1.0667858123779297, -0.33902502059936523, 0.2506301701068878, 0.38106659054756165, -0.7890609502792358, 0.8267593383789062, 0.4435666799545288, -0.45985016226768494, 0.18379035592079163, -1.1625087261199951, -0.2903333306312561, 0.2216932773590088, -0.13018189370632172, -0.31881678104400635, -0.15351355075836182, 0.1642141193151474, 0.311209112405777, -0.2800915539264679, 0.341285765171051, -0.6623852252960205, -0.07293598353862762, 0.10638844221830368, -0.13495127856731415, 0.9009469747543335, 0.23909898102283478, 0.3591976463794708, 0.21803514659404755, -0.9529461860656738, -0.3818669319152832, 0.2639034390449524, -0.0051989867351949215, -0.10343896597623825, -0.7252466678619385, 0.3263064920902252, 0.11714291572570801, 0.4234841763973236, -0.5135464668273926, 0.7473879456520081, 0.1387888789176941, -0.41920632123947144, 0.9246032238006592, 0.39205628633499146, 0.5934600830078125, -0.6373561024665833, 0.9680230617523193, 0.3779161274433136, 0.4259425103664398, -0.3454873561859131, -0.45280691981315613, -0.5441333651542664, 0.1616082787513733, 0.3145214319229126, 0.7682121396064758, -0.8233124017715454, 0.6778749823570251, -0.0014323729556053877, -0.7039299011230469, -0.19654831290245056, -0.1650354564189911, 0.2438204288482666, 0.6909673810005188, 0.3296250104904175, -0.2819780707359314, -0.7003840208053589, -0.42742329835891724, 0.1945975124835968, 0.05303378403186798, 0.11522693932056427, 0.341391921043396, 0.6036455631256104, -0.21236899495124817, 0.6816595196723938, -0.8612783551216125, 0.18025653064250946, -0.06303000450134277, -0.12273325026035309, 0.6001288294792175, 0.7107769250869751, 1.0040943622589111, -0.5676354169845581, -0.3995945453643799, -0.9082764387130737, -0.5381796360015869, -0.5918793678283691, -0.2474374622106552, -0.7281160950660706, -0.5711040496826172, 0.007038081530481577, -0.6609389185905457, 0.7953625917434692, 0.7878948450088501, -1.0108351707458496, 0.47527167201042175, 0.012152072042226791, 0.03530442714691162, -1.0893515348434448, 0.400121808052063, -0.04113907366991043, -0.23794697225093842, -0.36520150303840637, -0.35797223448753357, -0.08431646227836609, -0.4399605095386505, 0.1553059071302414, 0.9548993706703186, -0.31581732630729675, 0.15155622363090515, -0.14462462067604065, 0.016879959031939507, 0.316495418548584, 0.2751111090183258, -0.021290386095643044, 0.5888752937316895, 1.2138155698776245, -0.656775176525116, 0.7087132334709167, 0.753537118434906, 0.36562418937683105, 1.1098947525024414, -0.8239797949790955, 0.06997642666101456, -0.2994804382324219, 0.38549309968948364, -0.9311619400978088, -0.5155991315841675, 0.8931965231895447, -0.488435834646225, 0.4021361768245697, -0.5616079568862915, -0.3441735506057739, -0.44908130168914795, -0.2884884774684906, 0.6077144742012024, 0.5264250636100769, -0.7148075103759766, 0.37887993454933167, 0.42935916781425476, -0.46094876527786255, 0.022730741649866104, -0.6978355050086975, 0.07412759214639664, -0.09788209944963455, -0.17789439857006073, 0.2650476098060608, -0.6446576714515686, 0.22017718851566315, -0.3535242974758148, 0.30062198638916016, 0.03569500148296356, -0.34502163529396057, 0.6354960799217224, 0.6286894679069519, -0.14559930562973022, 0.28507766127586365, 0.3566315174102783, -0.9032999873161316, -0.011881332844495773, -0.28363728523254395, 0.47770705819129944, 0.02884061448276043, -0.37405505776405334, -0.48098400235176086, 0.6296239495277405, 0.40012305974960327, -0.3376369774341583, 0.4260997176170349, 0.8839044570922852, -0.5094506740570068, 0.13467900454998016, -0.4494091272354126, -0.2288619726896286, -0.48756590485572815, -0.25234687328338623, -0.20976322889328003, -0.46758395433425903, 0.6249761581420898, -0.2662188708782196, 0.21585214138031006, 0.5874617099761963, 0.6173427700996399, -0.15704210102558136, 0.3511459529399872, 0.46550557017326355, -0.16929171979427338, 0.5980352163314819, -0.20985771715641022, -0.24086767435073853, -0.9639362096786499, -0.37422850728034973, -0.6980000734329224, -0.44705742597579956, -0.5409648418426514, -0.20713941752910614, 0.3755228817462921, -0.0020772861316800117, -0.4891534149646759, 0.15765272080898285, -0.7566311359405518, 0.36440953612327576, 0.6364976167678833, 0.13485439121723175, -0.28630757331848145, -0.23130904138088226, 0.29125750064849854, 0.0354703925549984, -0.7775848507881165, -0.3691977262496948, 1.1547825336456299, 0.09574078023433685, 0.6560710668563843, 0.03719630092382431, 0.867948055267334, 0.2860524356365204, 0.11533261090517044, -0.4181162416934967, 0.6389774680137634, 0.0351051464676857, -0.4307340383529663, -0.30411162972450256, -0.2618981599807739, -0.9196324348449707, -0.5185374021530151, -0.35911232233047485, -0.37953153252601624, 0.888090968132019, 0.13542599976062775, -0.5852465033531189, 0.27990564703941345, -0.6498907208442688, 0.8662803173065186, -0.10997457057237625, -0.22211916744709015, 0.23824334144592285, -0.8790429830551147, -0.20530149340629578, 0.21590344607830048, 0.0008304023067466915, -0.41579341888427734, -0.028450530022382736, 1.0148496627807617, -0.37873542308807373, 1.1817747354507446, -0.9941152930259705, 0.6497098207473755, 0.31045374274253845, -0.17836898565292358, 0.3486417829990387, 0.6575111150741577, -0.03819018974900246, 0.04344852268695831, 0.29766470193862915, -0.6451235413551331, -0.204057514667511, 0.5724355578422546, -0.7661046385765076, 0.13923877477645874, -0.5635443329811096, -0.41330286860466003, 0.0010940093779936433, 0.42331254482269287, 0.27266958355903625, 0.6903972625732422, -0.32064396142959595, -0.2832276523113251, 0.6744431257247925, 0.004973183386027813, 0.5969511866569519, 0.22117732465267181, -0.3353493809700012, -0.30199068784713745, 0.9102994799613953, 0.2676457464694977, -0.5131370425224304, 0.26675641536712646, 0.6824286580085754, -0.406768262386322, -0.37962326407432556, -0.8660879731178284, 0.2803786098957062, -0.5721911191940308, -0.3375328779220581, -0.382730633020401, -0.003448853036388755, -0.5351225733757019, -0.4424688518047333, -0.16520965099334717, -0.8486270904541016, -0.8320451974868774, -0.5369651317596436, 0.786613941192627, 0.31871524453163147, -0.7080911993980408, 0.8005664348602295, -1.0652167797088623, 0.6864156723022461, 0.06712594628334045, 0.267280638217926, -0.3156789243221283, -0.3238612115383148, -0.2091255486011505, -0.09937888383865356, -0.18221528828144073, -0.47741764783859253, -0.3248191773891449, -0.00036589548108167946, 0.5604881048202515, 0.4340040385723114, 0.11856059730052948, 0.8058172464370728, -0.19209113717079163, 1.1373913288116455, 0.44257476925849915, -0.613603949546814, 0.7812047600746155, -0.46790874004364014, 0.6848913431167603, 0.9943151473999023, 0.39236360788345337, -0.6158868670463562, 0.21524381637573242, -1.0245617628097534, -0.6091115474700928, 0.6645272970199585, 0.06711436808109283, 0.19082953035831451, 0.4168756306171417, 0.7631509900093079, 0.11549513787031174, 0.3932638168334961, -0.6804349422454834, -0.813728928565979, -0.32171446084976196, -0.16915485262870789, 0.15478791296482086, -0.528601884841919, -0.3827621042728424, -0.6233119368553162, 0.6560431718826294, 0.048650652170181274, 0.29441753029823303, 0.12329401075839996, 0.4938947856426239, -0.32253968715667725, 0.061926234513521194, 0.3538172245025635, 0.9531569480895996, -0.12046674638986588, -0.1787511110305786, 0.02073051407933235, -0.5669693946838379, 0.027092808857560158, 0.5734877586364746, -0.375175416469574, 0.24799476563930511, 0.5911870002746582, 0.7400863766670227, -0.3088070750236511, -0.019177891314029694, 0.613567590713501, -0.1727077215909958, -0.010008188895881176, -0.4798169732093811, 0.06814569234848022, 0.024489769712090492, 0.3354422450065613, -0.1403511017560959, 0.07115192711353302, 0.0882253497838974, -0.3272039592266083, 0.384946346282959, -0.3690618574619293, -0.46755173802375793, -0.7395591139793396, 0.5407670140266418, 0.3906234800815582, -0.2826743423938751, 0.9061158895492554, -0.36772459745407104, -0.2691277265548706, 0.5631659030914307, 0.3132789134979248, 0.859032154083252, -0.5258476734161377, 0.3894289433956146, 0.5182338356971741, 0.11387903988361359, 0.40478792786598206, 1.0811066627502441, -0.3501822054386139, -0.5131250619888306, 0.19639378786087036, -0.3869854807853699, -0.5765156745910645, -0.5289334654808044, -1.1291600465774536, 0.38731133937835693, -0.5121533870697021, -0.3544628322124481, -0.1790206879377365, 0.02376987785100937, -0.9737862944602966, 0.3387933075428009, 0.2902141809463501, 1.2890530824661255, -0.9972618818283081, 0.7256467938423157, 0.8935410380363464, -0.4696411192417145, -0.5354735851287842, -0.008011715486645699, 0.13302381336688995, -0.726150631904602, -0.3130587339401245, 0.05869709700345993, 0.20691993832588196, -0.3459082543849945, -0.9299992322921753, -0.31395646929740906, 1.3217675685882568, 0.060864996165037155, -0.9971022605895996, -0.18492566049098969, -0.10832154005765915, 0.13474740087985992, -0.36346757411956787, 0.3122543692588806, 0.6623108983039856, 0.9168997406959534, 0.4877759516239166, -0.5856921076774597, -0.04956971853971481, -0.36044418811798096, -0.41398632526397705, 0.08068220317363739, -0.8509975671768188, 0.48619943857192993, -0.06008604168891907, -0.027184361591935158, 0.01183957140892744, 0.686652421951294, 0.5372151136398315, 0.8962637186050415, 0.5313795804977417, 0.31065717339515686, 1.2133680582046509, -0.5030820965766907, 0.9401267766952515, -0.24280838668346405, 0.2502872049808502, 1.290277123451233, -0.3254755437374115, -0.0750032439827919, 0.7158758640289307, 0.019447043538093567, 0.30669105052948, 0.918225109577179, -0.3179760277271271, 0.8336434364318848, 0.23216471076011658, -0.21279345452785492, -0.26922807097435, -0.32230257987976074, -0.5771839022636414, 0.00627166498452425, 0.3254014253616333, 0.1084648072719574, -0.22547167539596558, 0.24185287952423096, 0.41726502776145935, -0.41052234172821045, -0.45952463150024414, 0.6923193335533142, 0.23008325695991516, -0.3660235106945038, -0.18607601523399353, -0.30796217918395996, 0.2679998576641083, -1.12458336353302, -0.3091483414173126, -0.14866864681243896, -0.26982954144477844, -0.3943242132663727, -1.1581453084945679, 0.7172313928604126, -0.05475139990448952, -0.42384350299835205, -0.25756755471229553, 0.7018017172813416, -0.3247114419937134, -0.8121759295463562, -0.0011223022593185306, 0.5898508429527283, 0.10536627471446991, 0.07343755662441254, -1.2161076068878174, -0.0277407243847847, -0.11543890833854675, -0.3791007101535797, -0.0016122900415211916, 0.6541811227798462, 0.25146812200546265, 0.31231245398521423, 0.7463274598121643, 0.2850971817970276, -0.3861059248447418, 0.48762017488479614, 1.2476398944854736, -0.659399151802063, -0.8186227679252625, -0.7702285647392273, 0.9195453524589539, -0.364286869764328, -0.7926650643348694, 0.5273488759994507, 0.8605890274047852, 0.6994701623916626, -0.04783198982477188, 0.9168308973312378, -0.28877800703048706, 0.66045743227005, -0.48821330070495605, 0.5321049094200134, -0.39796170592308044, -0.01611482724547386, -0.12658314406871796, -0.5019945502281189, -0.5732554197311401, 0.3982338011264801, -0.16076363623142242, -0.15545892715454102, 0.4223383665084839, 0.9707320928573608, -0.18684272468090057, 0.19720344245433807, 0.08159122616052628, 0.0012746897991746664, 0.38764461874961853, 0.3027094006538391, 0.7089939117431641, -0.10304959118366241, -0.0036923959851264954, -0.22509823739528656, -0.7615478038787842, 0.06280838698148727, -0.9246582388877869, -1.0943578481674194, -0.6579732894897461, -0.4032135009765625, -0.7169509530067444, -0.04920727759599686, 1.0429145097732544, 0.7738196849822998, -0.8630990982055664, -0.2252088338136673, 0.12970077991485596, 0.18981444835662842, 0.1858534961938858, -0.11777866631746292, 0.884598970413208, 0.243159681558609, -0.2937752902507782, -0.0028382742311805487, 0.1297786682844162, 0.27053356170654297, -0.009222537279129028, 0.1406896710395813, 0.1341499388217926, -0.007148544769734144, 0.3233974277973175, 0.2816162109375, 0.1819823682308197, -0.07092144340276718, -0.14168106019496918, 0.1758609265089035, 0.2512867748737335, 1.0590015649795532, -0.25299155712127686, 0.43296459317207336, 0.4063325524330139, 0.292388379573822, 0.7457606196403503, -0.04508557543158531, 0.2666627764701843, -0.7787755727767944, 0.3715082108974457, 0.1865999400615692, 0.6611443161964417, 0.07961329072713852, -0.6870535612106323, 0.5531333088874817, 0.44126006960868835, -0.7844091057777405, -0.5347317457199097, 0.10441284626722336, -1.4342886209487915, 0.37852606177330017, 0.8948317170143127, -0.05417348071932793, -0.4223683774471283, -0.14161255955696106, -0.4879046380519867, 0.38098958134651184, -0.8771435022354126, 0.20904839038848877, 0.6574176549911499, -0.21573765575885773, -0.13215909898281097, -0.37479326128959656, 0.45166313648223877, -0.28247392177581787, -1.1603055000305176, 0.12240662425756454, 0.5562674403190613, 0.1297767609357834, 0.03553234785795212, 1.0881495475769043, -0.04669227451086044, 0.40377503633499146, 0.16351987421512604, 0.1305287629365921, -0.4090748131275177, -0.85683673620224, -0.4139971137046814, -0.21894878149032593, -0.20679238438606262, -0.6724333763122559 ]
null
null
null
null
null
null
null
null
null
null
null
null
null
numer_sense
null
2022-11-18T21:34:07Z
466
1
numersense
[ "task_categories:text-generation", "task_categories:fill-mask", "task_ids:slot-filling", "annotations_creators:expert-generated", "language_creators:crowdsourced", "multilinguality:monolingual", "size_categories:10K<n<100K", "source_datasets:extended|other", "language:en", "license:mit", "arxiv:2005.00683", "region:us" ]
2022-11-18T21:34:07Z
2022-03-02T23:29:22.000Z
2022-03-02T23:29:22
--- annotations_creators: - expert-generated language_creators: - crowdsourced language: - en license: - mit multilinguality: - monolingual size_categories: - 10K<n<100K source_datasets: - extended|other task_categories: - text-generation - fill-mask task_ids: - slot-filling paperswithcode_id: numersense pretty_name: NumerSense dataset_info: features: - name: sentence dtype: string - name: target dtype: string splits: - name: train num_bytes: 825865 num_examples: 10444 - name: test_core num_bytes: 62652 num_examples: 1132 - name: test_all num_bytes: 184180 num_examples: 3146 download_size: 985463 dataset_size: 1072697 --- # 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://inklab.usc.edu/NumerSense/ - **Repository:** https://github.com/INK-USC/NumerSense - **Paper:** https://arxiv.org/abs/2005.00683 - **Leaderboard:** https://inklab.usc.edu/NumerSense/#exp - **Point of Contact:** Author emails listed in [paper](https://arxiv.org/abs/2005.00683) ### Dataset Summary NumerSense is a new numerical commonsense reasoning probing task, with a diagnostic dataset consisting of 3,145 masked-word-prediction probes. The general idea is to mask numbers between 0-10 in sentences mined from a commonsense corpus and evaluate whether a language model can correctly predict the masked value. ### Supported Tasks and Leaderboards The dataset supports the task of slot-filling, specifically as an evaluation of numerical common sense. A leaderboard is included on the [dataset webpage](https://inklab.usc.edu/NumerSense/#exp) with included benchmarks for GPT-2, RoBERTa, BERT, and human performance. Leaderboards are included for both the core set and the adversarial set discussed below. ### Languages This dataset is in English. ## Dataset Structure ### Data Instances Each instance consists of a sentence with a masked numerical value between 0-10 and (in the train set) a target. Example from the training set: ``` sentence: Black bears are about <mask> metres tall. target: two ``` ### Data Fields Each value of the training set consists of: - `sentence`: The sentence with a number masked out with the `<mask>` token. - `target`: The ground truth target value. Since the test sets do not include the ground truth, the `target` field values are empty strings in the `test_core` and `test_all` splits. ### Data Splits The dataset includes the following pre-defined data splits: - A train set with >10K labeled examples (i.e. containing a ground truth value) - A core test set (`test_core`) with 1,132 examples (no ground truth provided) - An expanded test set (`test_all`) encompassing `test_core` with the addition of adversarial examples for a total of 3,146 examples. See section 2.2 of [the paper] for a discussion of how these examples are constructed. ## Dataset Creation ### Curation Rationale The purpose of this dataset is "to study whether PTLMs capture numerical commonsense knowledge, i.e., commonsense knowledge that provides an understanding of the numeric relation between entities." This work is motivated by the prior research exploring whether language models possess _commonsense knowledge_. ### Source Data #### Initial Data Collection and Normalization The dataset is an extension of the [Open Mind Common Sense](https://huggingface.co/datasets/open_mind_common_sense) corpus. A query was performed to discover sentences containing numbers between 0-12, after which the resulting sentences were manually evaluated for inaccuracies, typos, and the expression of commonsense knowledge. The numerical values were then masked. #### Who are the source language producers? The [Open Mind Common Sense](https://huggingface.co/datasets/open_mind_common_sense) corpus, from which this dataset is sourced, is a crowdsourced dataset maintained by the MIT Media Lab. ### Annotations #### Annotation process No annotations are present in this dataset beyond the `target` values automatically sourced from the masked sentences, as discussed above. #### Who are the annotators? The curation and inspection was done in two rounds by graduate students. ### Personal and Sensitive Information [More Information Needed] ## Considerations for Using the Data ### Social Impact of Dataset The motivation of measuring a model's ability to associate numerical values with real-world concepts appears relatively innocuous. However, as discussed in the following section, the source dataset may well have biases encoded from crowdworkers, particularly in terms of factoid coverage. A model's ability to perform well on this benchmark should therefore not be considered evidence that it is more unbiased or objective than a human performing similar tasks. [More Information Needed] ### Discussion of Biases This dataset is sourced from a crowdsourced commonsense knowledge base. While the information contained in the graph is generally considered to be of high quality, the coverage is considered to very low as a representation of all possible commonsense knowledge. The representation of certain factoids may also be skewed by the demographics of the crowdworkers. As one possible example, the term "homophobia" is connected with "Islam" in the ConceptNet knowledge base, but not with any other religion or group, possibly due to the biases of crowdworkers contributing to the project. ### Other Known Limitations [More Information Needed] ## Additional Information ### Dataset Curators This dataset was collected by Bill Yuchen Lin, Seyeon Lee, Rahul Khanna, and Xiang Ren, Computer Science researchers at the at the University of Southern California. ### Licensing Information The data is hosted in a GitHub repositor with the [MIT License](https://github.com/INK-USC/NumerSense/blob/main/LICENSE). ### Citation Information ``` @inproceedings{lin2020numersense, title={Birds have four legs?! NumerSense: Probing Numerical Commonsense Knowledge of Pre-trained Language Models}, author={Bill Yuchen Lin and Seyeon Lee and Rahul Khanna and Xiang Ren}, booktitle={Proceedings of EMNLP}, year={2020}, note={to appear} } ``` ### Contributions Thanks to [@joeddav](https://github.com/joeddav) for adding this dataset.
[ -0.6242503523826599, -0.63050776720047, 0.12102825939655304, 0.025959426537156105, -0.26046106219291687, -0.33442914485931396, -0.2417185753583908, -0.27855411171913147, 0.12190725654363632, 0.4992913007736206, -0.3519061207771301, -0.7311727404594421, -0.6408438086509705, 0.19798509776592255, -0.11698462814092636, 1.0119953155517578, 0.2140456736087799, -0.22127139568328857, -0.3357659578323364, -0.2988859713077545, -0.25065457820892334, -0.5167004466056824, -0.27127307653427124, -0.21444472670555115, 0.4459274411201477, 0.5255886316299438, 0.7099882960319519, 0.7289576530456543, 0.3154483735561371, 0.23413875699043274, -0.1791744828224182, 0.23901653289794922, -0.6287667155265808, -0.3681212067604065, -0.13303770124912262, -0.05194871500134468, -0.41516825556755066, 0.3780859112739563, 0.5315240621566772, 0.8298822641372681, 0.06723430752754211, 0.2277464121580124, 0.16779634356498718, 0.6483625769615173, -0.5737807750701904, 0.27887222170829773, -0.6226238012313843, 0.020516077056527138, -0.32978975772857666, 0.10349354892969131, -0.2598634958267212, -0.37770140171051025, 0.044470641762018204, -0.8831764459609985, 0.22978714108467102, 0.03789211064577103, 0.8254786729812622, 0.25250598788261414, -0.3261875808238983, -0.1283768266439438, -0.05507752671837807, 0.8248786926269531, -0.8909554481506348, 0.1612115204334259, 0.6793304681777954, 0.07937301695346832, 0.16214631497859955, -0.63104647397995, -0.6736782789230347, -0.008517405949532986, -0.29046496748924255, 0.23229467868804932, -0.30958324670791626, -0.09717320650815964, 0.5700815320014954, 0.22082065045833588, -0.6729097366333008, -0.04426875710487366, -0.6982900500297546, -0.12975230813026428, 0.8348552584648132, -0.01010685134679079, 0.08092606067657471, -0.3045717179775238, -0.38380345702171326, -0.14326918125152588, -0.5398176312446594, -0.11135504394769669, 0.3500455915927887, 0.32783928513526917, -0.41832858324050903, 0.6087424755096436, -0.33673223853111267, 0.9083904027938843, -0.16844554245471954, 0.08570899069309235, 0.6107458472251892, -0.3412421643733978, -0.23135915398597717, 0.0057759154587984085, 0.7493590712547302, 0.5396609902381897, 0.4981273412704468, -0.021169662475585938, -0.08706554025411606, 0.0061231618747115135, -0.0714191272854805, -0.7128692269325256, -0.3259902596473694, 0.19532230496406555, -0.2928646206855774, -0.5015983581542969, 0.25361037254333496, -0.7221761345863342, -0.41520220041275024, -0.391431987285614, 0.11854245513677597, -0.40443575382232666, -0.5236125588417053, 0.2241075336933136, -0.36182084679603577, 0.16390849649906158, 0.1698765903711319, -0.43220943212509155, 0.311237096786499, 0.7611309289932251, 0.8205766677856445, -0.18229418992996216, -0.46151813864707947, -0.22055162489414215, -0.0026356130838394165, -0.15939724445343018, 0.5864608883857727, -0.43853968381881714, -0.3209414482116699, -0.06896163523197174, -0.016854988411068916, -0.15771187841892242, -0.40364184975624084, 0.46063974499702454, -0.3738209009170532, 0.4367360770702362, -0.5256849527359009, -0.6579764485359192, -0.2363470196723938, 0.32699254155158997, -0.7647267580032349, 1.07221257686615, 0.036239441484212875, -0.9800776839256287, 0.2943462133407593, -0.9616326689720154, -0.2869396507740021, 0.13332483172416687, -0.06987063586711884, -0.2841005027294159, -0.20305389165878296, 0.07869647443294525, 0.6177049279212952, -0.1836116760969162, 0.40003976225852966, -0.5031367540359497, -0.36711832880973816, 0.5333243012428284, -0.463958203792572, 1.2234387397766113, 0.25922855734825134, -0.2472560703754425, -0.24407868087291718, -0.7970455884933472, -0.07704611122608185, 0.124269999563694, -0.025012893602252007, -0.3591088652610779, -0.315731942653656, 0.14320166409015656, 0.2440813183784485, 0.15692512691020966, -0.4454561471939087, 0.08399725705385208, -0.38613253831863403, 0.3756833076477051, 0.7712576985359192, 0.10105425119400024, 0.370044082403183, -0.41914331912994385, 0.25853705406188965, 0.12623141705989838, 0.17997674643993378, 0.15438660979270935, -0.7346402406692505, -0.5637145042419434, -0.11746709048748016, 0.19251921772956848, 0.5135053396224976, -0.6929984092712402, 0.5760370492935181, -0.4314078092575073, -0.5894727110862732, -0.33816757798194885, 0.1137179434299469, 0.5796830058097839, 0.6706216931343079, 0.36636975407600403, -0.16433826088905334, -0.35442763566970825, -0.7412362694740295, -0.17940598726272583, 0.005219055339694023, 0.07034822553396225, 0.4484299421310425, 0.7831994891166687, 0.14222076535224915, 0.8945885300636292, -0.7548769116401672, -0.17215846478939056, -0.10325886309146881, 0.1339375078678131, 0.38904446363449097, 0.5243396759033203, 0.4151969850063324, -1.0583258867263794, -0.4166926443576813, -0.22307254374027252, -0.7739119529724121, -0.21967515349388123, 0.11692524701356888, -0.08976348489522934, 0.1734347641468048, 0.3632405698299408, -0.3860999643802643, 0.45723193883895874, 0.6206362247467041, -0.6476210355758667, 0.4649539589881897, 0.18092286586761475, -0.09011220932006836, -1.0913159847259521, 0.38396233320236206, 0.12213379144668579, 0.19296522438526154, -0.68159419298172, -0.3048316538333893, -0.10503560304641724, -0.14335066080093384, -0.6375786066055298, 0.7990850806236267, -0.34433507919311523, -0.08063545823097229, 0.07221157103776932, 0.338042289018631, 0.23988358676433563, 0.6862875819206238, 0.04539031162858009, 0.6803240180015564, 0.4600481688976288, -0.5929613709449768, 0.2107684314250946, 0.25340014696121216, -0.35821405053138733, 0.615785539150238, -0.8642160296440125, 0.13051554560661316, -0.09404551982879639, 0.03222094848752022, -0.811844527721405, -0.2610292136669159, 0.46239519119262695, -0.6583352088928223, -0.03193722665309906, -0.09177517145872116, -0.5500292181968689, -0.283875435590744, -0.2420141100883484, 0.28911301493644714, 0.2447565346956253, -0.2289336621761322, 0.14413416385650635, 0.48326799273490906, 0.13663654029369354, -0.7186943292617798, -0.8472356200218201, -0.1130344346165657, -0.2898588180541992, -0.5680176019668579, 0.1828637719154358, -0.10548659414052963, -0.4254683554172516, 0.09321776032447815, 0.21195799112319946, -0.16866567730903625, 0.20264342427253723, 0.36438119411468506, 0.21754342317581177, 0.004059202037751675, 0.2552002966403961, -0.23402802646160126, -0.16992071270942688, 0.050911225378513336, -0.1809154748916626, 0.3443790376186371, -0.2645412087440491, -0.3672622740268707, -0.20946919918060303, 0.24786341190338135, 0.3581874668598175, -0.28907909989356995, 0.6040080785751343, 0.7541113495826721, -0.3818131983280182, -0.03161980211734772, -0.5155597925186157, -0.28501006960868835, -0.441452294588089, 0.33699125051498413, -0.2531573474407196, -0.7901393175125122, 0.5381578803062439, 0.3691934645175934, 0.11569790542125702, 0.6013991832733154, 0.27353930473327637, 0.08133134990930557, 0.5885967016220093, 0.10902190208435059, -0.04009338840842247, 0.23437714576721191, -0.5320189595222473, -0.09850753843784332, -0.7811631560325623, -0.20342470705509186, -0.473064661026001, -0.29968589544296265, -0.5795711278915405, -0.5098024606704712, 0.18447209894657135, 0.03142312914133072, -0.4692426323890686, 0.27005404233932495, -0.7736026644706726, 0.5377757549285889, 0.7412214279174805, 0.11329585313796997, 0.13926851749420166, -0.07164590060710907, -0.0989515408873558, -0.10219836235046387, -0.792682409286499, -0.5041732788085938, 1.1610482931137085, 0.221111461520195, 0.2708057761192322, 0.0847325399518013, 0.5669741630554199, 0.3412574529647827, 0.30869290232658386, -0.47949865460395813, 0.6527407169342041, -0.309733510017395, -0.8130178451538086, -0.5280917882919312, -0.4724752902984619, -0.9933081269264221, 0.2292553335428238, -0.12635748088359833, -0.504840612411499, 0.41409626603126526, 0.028139106929302216, -0.2631085216999054, 0.3874625861644745, -0.7213019132614136, 0.9502685070037842, -0.17598852515220642, -0.40907809138298035, 0.1093856543302536, -0.7212274074554443, 0.4049818515777588, 0.11306720227003098, 0.2538859248161316, -0.25904110074043274, -0.0687609389424324, 1.061607837677002, -0.2893964350223541, 1.2107456922531128, -0.36603084206581116, 0.16100375354290009, 0.32992854714393616, -0.32081979513168335, 0.3472282886505127, 0.029575001448392868, -0.25102078914642334, 0.5365040898323059, -0.11308550834655762, -0.4632897973060608, -0.4573019742965698, 0.5815845727920532, -0.9241911172866821, -0.21084842085838318, -0.5677695274353027, -0.5387430191040039, -0.02810751646757126, 0.44766849279403687, 0.3292383551597595, 0.5295902490615845, -0.13645677268505096, 0.3956114649772644, 0.8731933832168579, -0.26240742206573486, 0.25974351167678833, 0.45541226863861084, 0.028717420995235443, -0.7657949924468994, 0.7841079831123352, 0.4835786819458008, 0.16238385438919067, 0.3017123341560364, 0.23553164303302765, -0.40234801173210144, -0.3699992597103119, -0.22608381509780884, 0.19856677949428558, -0.6894349455833435, -0.2999524772167206, -0.5640357136726379, -0.19282224774360657, -0.6646430492401123, -0.12151958793401718, -0.046528711915016174, -0.47276541590690613, -0.49089518189430237, -0.2591313421726227, 0.6212171316146851, 0.5692543983459473, -0.3169080317020416, 0.13864421844482422, -0.4252261221408844, 0.2921162545681, 0.4162975251674652, 0.391963928937912, -0.028804101049900055, -0.452399343252182, -0.27704447507858276, 0.30599528551101685, -0.14390428364276886, -0.8327128887176514, 0.3231598436832428, 0.08259059488773346, 0.6205726861953735, 0.5019484162330627, 0.36626526713371277, 0.4855607748031616, -0.0015014340169727802, 0.8755868077278137, 0.07417917996644974, -0.6735665202140808, 0.4739014804363251, -0.449553906917572, 0.3240267038345337, 0.6939821839332581, 0.3770638704299927, -0.6397758722305298, -0.13568949699401855, -1.0127804279327393, -0.7472853660583496, 0.5816504955291748, 0.2700240910053253, 0.04594205692410469, -0.11414933949708939, 0.08510193973779678, -0.019748752936720848, 0.23719677329063416, -0.7926655411720276, -0.5036011338233948, -0.46545839309692383, -0.14138998091220856, -0.1260429471731186, -0.14490893483161926, -0.41208288073539734, -0.28409916162490845, 0.6421915292739868, -0.12398507446050644, 0.25982236862182617, 0.14608491957187653, -0.04762249067425728, 0.28678786754608154, 0.19686394929885864, 0.7313519716262817, 0.7209407091140747, -0.2435525357723236, 0.25377368927001953, 0.23455210030078888, -0.6412285566329956, -0.2921404540538788, 0.36216065287590027, -0.31792405247688293, 0.03033631108701229, 0.3536792993545532, 0.7878934741020203, 0.29150351881980896, -0.46812909841537476, 0.666932225227356, 0.21210630238056183, -0.4344384968280792, -0.48225367069244385, 0.01255828607827425, -0.009048935025930405, 0.03581983596086502, 0.37346142530441284, 0.1237058937549591, 0.1210341677069664, -0.1254684329032898, 0.4005780816078186, 0.21070295572280884, -0.28913095593452454, -0.28828954696655273, 0.4662213623523712, 0.17238706350326538, -0.09003151208162308, 0.600151777267456, -0.4147050380706787, -0.4434482753276825, 0.6919819712638855, 0.2821372151374817, 0.7188014984130859, 0.13396359980106354, 0.33378809690475464, 0.5704588890075684, 0.341139018535614, 0.0376448817551136, 0.33440259099006653, -0.04689976945519447, -0.9986971020698547, -0.34399524331092834, -0.327389657497406, -0.30310967564582825, 0.1983388364315033, -0.753375768661499, 0.23475883901119232, -0.3829827904701233, -0.09628196060657501, -0.09721843153238297, 0.3527865409851074, -0.7982158660888672, 0.29740381240844727, 0.20911593735218048, 1.048311710357666, -1.1200873851776123, 0.6970119476318359, 0.6487491726875305, -0.6066171526908875, -0.7808095812797546, -0.328896164894104, 0.11962305754423141, -0.9320685267448425, 0.514146625995636, 0.24271713197231293, 0.36939379572868347, 0.041760727763175964, -0.829006552696228, -0.7956634759902954, 1.2101969718933105, 0.05076572671532631, -0.21498505771160126, 0.09144868701696396, 0.41527628898620605, 0.35478049516677856, -0.2534397840499878, 0.1724056899547577, 0.34113702178001404, 0.7776450514793396, 0.14747536182403564, -0.6266643404960632, 0.1933496594429016, -0.5297225117683411, -0.1180635616183281, -0.14030523598194122, -0.7089976072311401, 0.8497709035873413, -0.04077315330505371, -0.11400347203016281, -0.40644416213035583, 0.5674822330474854, 0.6718892455101013, 0.6463135480880737, 0.5118547677993774, 0.9198974370956421, 0.9411818981170654, -0.15877404808998108, 0.8450064063072205, -0.3168259263038635, 0.24157249927520752, 1.227655291557312, -0.017713207751512527, 0.7207090854644775, 0.36151835322380066, -0.20840410888195038, 0.21527189016342163, 0.4793770909309387, -0.31383514404296875, 0.4081707298755646, 0.20787891745567322, 0.10935084521770477, -0.025142446160316467, -0.24134911596775055, -0.543259859085083, 0.38493916392326355, 0.38062068819999695, -0.33858904242515564, -0.05260288715362549, -0.04850393533706665, 0.39862802624702454, 0.03315423056483269, -0.2692933678627014, 0.6795728206634521, 0.03824291005730629, -0.5671396255493164, 0.6509369015693665, -0.2301575392484665, 0.7532283663749695, -0.44692444801330566, -0.06696862727403641, -0.3352058529853821, -0.060669027268886566, -0.3275340795516968, -1.081095814704895, 0.3268934190273285, -0.04058734327554703, -0.16554374992847443, -0.41563737392425537, 0.7790715098381042, -0.3516966700553894, -0.5571262240409851, -0.10913066565990448, 0.49426862597465515, 0.4151516854763031, -0.1597064733505249, -0.8676289319992065, -0.0013885867083445191, 0.0929209366440773, -0.2524450421333313, 0.16989612579345703, 0.7647497653961182, 0.1019652858376503, 0.45747581124305725, 0.755871593952179, 0.1583966314792633, 0.04285021871328354, 0.0694955363869667, 0.9385327100753784, -0.5929446220397949, -0.38034316897392273, -0.5853394269943237, 0.6712550520896912, -0.5403149724006653, -0.6908984780311584, 0.9026014804840088, 0.750700831413269, 1.012802243232727, 0.06510082632303238, 0.9581177830696106, -0.22252953052520752, 0.5526585578918457, -0.28891974687576294, 0.8141746520996094, -0.3801262378692627, 0.14977914094924927, -0.3331981599330902, -0.6354265213012695, -0.37668541073799133, 0.6102466583251953, -0.5276092290878296, 0.07931087166070938, 0.33552953600883484, 0.9976879358291626, -0.028815528377890587, 0.058990176767110825, 0.38552868366241455, 0.24785982072353363, 0.007377099245786667, 0.5163228511810303, 0.4866373836994171, -0.496833473443985, 0.5435982942581177, -0.5201519727706909, -0.1979232281446457, -0.14160266518592834, -0.8581987023353577, -0.9055584669113159, -0.7504851818084717, -0.46469730138778687, -0.5410361886024475, -0.06816746294498444, 0.6142604351043701, 0.581348717212677, -0.8307255506515503, -0.23048296570777893, -0.06786120682954788, 0.24185723066329956, -0.30542781949043274, -0.35028621554374695, 0.5013399124145508, 0.06970425695180893, -0.5160793662071228, -0.08230272680521011, -0.12013435363769531, 0.06719650328159332, -0.28531500697135925, -0.2598036825656891, -0.31543979048728943, -0.19231417775154114, 0.4497230648994446, 0.36803892254829407, -0.5532054305076599, -0.09160656481981277, 0.2673138380050659, -0.10008007287979126, -0.15818195044994354, 0.3923415541648865, -0.679678201675415, 0.2855416238307953, 0.5337392687797546, 0.35224589705467224, 0.313259482383728, 0.006344737485051155, 0.16091492772102356, -0.8018841743469238, 0.16124200820922852, 0.3562406599521637, 0.23238256573677063, 0.4402145743370056, -0.31450679898262024, 0.7725729942321777, 0.488791286945343, -0.45601481199264526, -0.8414545059204102, -0.022960253059864044, -1.041175365447998, -0.20637255907058716, 1.5311752557754517, -0.14559303224086761, -0.19391906261444092, -0.35023799538612366, 0.03480781987309456, 0.25074535608291626, -0.5279609560966492, 0.5897017121315002, 0.7239735722541809, 0.17277757823467255, -0.240763321518898, -0.4511870741844177, 0.48046910762786865, 0.01109300460666418, -0.7009425759315491, 0.14739461243152618, 0.57281893491745, 0.1921333372592926, 0.2815193235874176, 0.6896572709083557, -0.10395170748233795, 0.12438318878412247, 0.005368038546293974, 0.06934352219104767, -0.4320666790008545, 0.040379881858825684, -0.1506524682044983, 0.21353372931480408, -0.25755050778388977, -0.15865737199783325 ]
null
null
null
null
null
null
null
null
null
null
null
null
null
SocialGrep/reddit-wallstreetbets-aug-2021
SocialGrep
2022-07-01T19:15:07Z
466
2
null
[ "annotations_creators:lexyr", "language_creators:crowdsourced", "multilinguality:monolingual", "size_categories:1M<n<10M", "source_datasets:original", "language:en", "license:cc-by-4.0", "region:us" ]
2022-07-01T19:15:07Z
2022-03-02T23:29:22.000Z
2022-03-02T23:29:22
--- annotations_creators: - lexyr language_creators: - crowdsourced language: - en license: - cc-by-4.0 multilinguality: - monolingual size_categories: - 1M<n<10M source_datasets: - original paperswithcode_id: null --- # Dataset Card for reddit-wallstreetbets-aug-2021 ## 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://socialgrep.com/datasets](https://socialgrep.com/datasets?utm_source=huggingface&utm_medium=link&utm_campaign=dataset&utm_term=wallstreetbets) - **Point of Contact:** [Website](https://socialgrep.com/contact?utm_source=huggingface&utm_medium=link&utm_campaign=dataset&utm_term=wallstreetbets) ### Dataset Summary This corpus contains the complete data for the activity on subreddit /r/WallStreetBets for the entire month of August. ### Languages Mainly English. ## Dataset Structure ### Data Instances A data point is a post or a comment. Due to the separate nature of the two, those exist in two different files - even though many fields are shared. ### Data Fields - 'type': the type of the data point. Can be 'post' or 'comment'. - 'id': the base-36 Reddit ID of the data point. Unique when combined with type. - 'subreddit.id': the base-36 Reddit ID of the data point's host subreddit. Unique. - 'subreddit.name': the human-readable name of the data point's host subreddit. - 'subreddit.nsfw': a boolean marking the data point's host subreddit as NSFW or not. - 'created_utc': a UTC timestamp for the data point. - 'permalink': a reference link to the data point on Reddit. - 'domain': (Post only) the domain of the data point's link. - 'url': (Post only) the destination of the data point's link, if any. - 'selftext': (Post only) the self-text of the data point, if any. - 'title': (Post only) the title of the post data point. - 'body': (Comment only) the body of the comment data point. - 'sentiment': (Comment only) the result of an in-house sentiment analysis pipeline. Used for exploratory analysis. ## 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 CC-BY v4.0 ### Contributions [Needs More Information]
[ -0.5220205187797546, -0.9202008247375488, 0.25300511717796326, 0.44718092679977417, -0.35791870951652527, 0.10892938077449799, -0.2794759273529053, -0.4666301906108856, 0.7980913519859314, 0.481896311044693, -0.9555782079696655, -1.2059907913208008, -0.7892469763755798, 0.17223647236824036, -0.15451368689537048, 1.380575180053711, -0.0880008265376091, -0.5195754766464233, -0.3010934889316559, -0.1714971959590912, -0.3184410631656647, -0.5665832757949829, -0.3570474684238434, -0.04825415089726448, 0.6099134087562561, 0.7160630226135254, 0.5404985547065735, 0.8638691306114197, 0.8221891522407532, 0.23783107101917267, 0.034133076667785645, -0.126008078455925, -0.5010567903518677, -0.2448011338710785, -0.20147490501403809, -0.03840174153447151, -0.7422059178352356, 0.09607260674238205, 0.3796387314796448, 0.5713685750961304, -0.036374129354953766, 0.7202408909797668, 0.02487783320248127, 0.6889743208885193, -0.5335949063301086, 0.7239240407943726, -0.445191890001297, -0.04493185132741928, -0.3272382616996765, -0.2899978756904602, -0.03677283599972725, -0.8443000316619873, -0.3413834869861603, -0.6224850416183472, 0.1245727688074112, -0.09464022517204285, 0.8973170518875122, -0.0574425645172596, -0.18982283771038055, -0.23856352269649506, -0.2872067391872406, 0.5314093232154846, -0.7182349562644958, 0.09882516413927078, 0.719412088394165, 0.20962701737880707, 0.04013868048787117, -0.8128018379211426, -0.38592585921287537, 0.3072420656681061, -0.4584724009037018, 0.009876593016088009, -0.3784797191619873, -0.36286666989326477, 0.5177574157714844, 0.5241897702217102, -0.4701789319515228, -0.6474537253379822, -0.7495971918106079, -0.08746027946472168, 0.9852362275123596, 0.20947453379631042, 0.15542617440223694, -0.6105953454971313, -0.14950960874557495, -0.17604130506515503, -0.4706929922103882, 0.2550714612007141, 0.3351333737373352, 0.6318225264549255, -0.6670540571212769, 0.7669382691383362, -0.2621080279350281, 0.4652748107910156, -0.08360455185174942, -0.0569048710167408, 0.6171922087669373, -0.8302577137947083, -0.027629343792796135, -0.2942771315574646, 0.8841335773468018, 0.8962997794151306, 0.13690276443958282, 0.30248361825942993, -0.0054938714019954205, 0.025565430521965027, -0.16766546666622162, -0.7970269322395325, -0.6345767378807068, 0.4441456198692322, -0.694061815738678, -0.4756404757499695, 0.3703896999359131, -0.9013515114784241, -0.3002866804599762, -0.06345731765031815, -0.09277976304292679, -0.04931369423866272, -0.37465351819992065, -0.029210230335593224, -0.3252444863319397, 0.0507974699139595, 0.017740435898303986, -0.7721772789955139, 0.5506772994995117, 0.5491383075714111, 0.6822426915168762, -0.05030975863337517, -0.2790681719779968, -0.11592444777488708, 0.15497440099716187, 0.11027143895626068, 0.6692172884941101, -0.47014668583869934, -0.46221715211868286, 0.020435422658920288, 0.594679057598114, 0.17597104609012604, -0.223658487200737, 0.7280429005622864, -0.30093398690223694, 0.16736218333244324, -0.7224146127700806, -0.33179792761802673, -0.14904464781284332, 0.3259432911872864, -0.7037574648857117, 1.0782519578933716, 0.1857050210237503, -1.1375333070755005, 0.4243168830871582, -1.1034616231918335, -0.5432544350624084, 0.12921808660030365, -0.04212195426225662, -0.3598654568195343, -0.2385377585887909, 0.13257978856563568, 0.566494345664978, -0.02981724590063095, 0.0614437572658062, -0.2853401303291321, -0.09570808708667755, 0.04356781765818596, -0.12403527647256851, 1.1514900922775269, -0.0038150374311953783, -0.015341484919190407, 0.13656359910964966, -0.7197533249855042, -0.10245277732610703, 0.4447729289531708, -0.33251798152923584, -0.1992349624633789, -0.036351367831230164, 0.379989892244339, 0.05392099916934967, 0.5519028902053833, -0.675909698009491, 0.33702102303504944, 0.05876906216144562, 0.7317506670951843, 0.5463592410087585, 0.373767226934433, 0.12864093482494354, -0.46454623341560364, 0.41451314091682434, 0.1678508222103119, 0.5499640703201294, 0.06898266077041626, -0.8637062311172485, -0.46275848150253296, -0.051653727889060974, 0.14025817811489105, 0.7562269568443298, -0.1805274486541748, 0.8806993365287781, -0.34804630279541016, -0.6955751180648804, -0.31661278009414673, 0.11465132981538773, 0.14257244765758514, 0.5231612920761108, 0.5234190225601196, -0.5565430521965027, -0.9054383039474487, -0.7877197265625, 0.05506756901741028, -0.21211372315883636, 0.3107534348964691, 0.8327469825744629, 0.8170900940895081, -0.47396931052207947, 0.8961871862411499, -0.9244781136512756, -0.1243218332529068, -0.21144825220108032, 0.2681579887866974, 0.524860143661499, 0.3482486307621002, 0.42501479387283325, -0.8707391023635864, -0.6257830262184143, -0.17526376247406006, -0.5883933901786804, -0.1617051362991333, 0.09855802357196808, -0.05452956631779671, -0.041615117341279984, 0.25966253876686096, -0.5629640221595764, 0.7145907878875732, 0.7407813668251038, -0.6654835939407349, 0.4491029977798462, 0.13015687465667725, 0.4037695527076721, -1.124613881111145, 0.1226363480091095, 0.1689884215593338, -0.088387131690979, -0.18634548783302307, -0.3967590034008026, -0.007856262847781181, 0.08673389256000519, -0.28125056624412537, 0.6070418357849121, -0.29547831416130066, 0.14029210805892944, 0.17171785235404968, 0.22105583548545837, 0.04045969992876053, 0.49487870931625366, -0.1785997897386551, 0.5854825973510742, 0.5778874754905701, -0.36357975006103516, 0.49669963121414185, 0.3781016767024994, -0.18603138625621796, 0.39039725065231323, -0.8688405752182007, -0.037944402545690536, -0.22644679248332977, 0.24004463851451874, -1.0705822706222534, -0.6210430860519409, 0.5593047142028809, -0.7892841696739197, -0.14879071712493896, -0.0982373058795929, -0.33748748898506165, -0.6301239132881165, -0.6086376309394836, 0.36100485920906067, 0.30027464032173157, -0.1439114212989807, 0.3067120909690857, 0.7883652448654175, -0.29173099994659424, -0.5000033378601074, -0.8042188882827759, 0.13870589435100555, -0.12842673063278198, -0.6381314992904663, 0.3894810974597931, -0.17321661114692688, -0.2944391369819641, 0.43405860662460327, 0.46517103910446167, -0.05459490790963173, -0.12376155704259872, 0.5398380160331726, -0.04098140448331833, 0.05499039217829704, -0.029277345165610313, -0.1996242105960846, -0.15488408505916595, 0.1675054430961609, 0.06703685969114304, 0.4714204668998718, -0.18979747593402863, -0.334419310092926, -0.5788247585296631, 0.43647947907447815, 0.30451470613479614, -0.13900862634181976, 0.5239396095275879, 0.5177956223487854, -0.47135820984840393, 0.10983512550592422, -0.3517775535583496, -0.3262108564376831, -0.4309823215007782, 0.27997320890426636, -0.05743143707513809, -0.727207362651825, 0.7015987634658813, 0.31827569007873535, 0.4542502760887146, 0.758931577205658, 0.5263581275939941, -0.12404802441596985, 0.7239112854003906, 0.6287114024162292, -0.15296794474124908, 0.5840071439743042, -0.35633715987205505, 0.10509395599365234, -0.5154096484184265, -0.24521233141422272, -0.40861237049102783, -0.509505569934845, -0.7327178120613098, -0.3462342917919159, -0.1736140102148056, 0.004377367906272411, -0.22066301107406616, 0.8208577036857605, -0.6422707438468933, 0.6266176104545593, 0.6947120428085327, 0.12549619376659393, 0.2573287785053253, 0.04897771403193474, 0.24625514447689056, -0.13929909467697144, -0.5449591279029846, -0.5953845977783203, 1.2513476610183716, 0.549221932888031, 0.5870945453643799, 0.05239567533135414, 0.7966150641441345, 0.5897228121757507, 0.4758906066417694, -0.458560973405838, 0.6037018895149231, -0.2311941534280777, -0.6954952478408813, -0.21211397647857666, -0.22215625643730164, -0.7710167765617371, -0.49332451820373535, -0.3510313332080841, -0.662437379360199, 0.36801663041114807, 0.170552596449852, -0.3006370961666107, 0.42455896735191345, -0.7489424347877502, 1.0029276609420776, -0.11899875849485397, -0.32885074615478516, 0.007622556760907173, -0.8998808860778809, 0.21791036427021027, 0.300947904586792, 0.41180703043937683, -0.23807576298713684, 0.18352431058883667, 1.0328353643417358, -0.4076126515865326, 1.1136630773544312, -0.2787744700908661, 0.22928190231323242, 0.46622413396835327, -0.29111430048942566, 0.6239455938339233, 0.1752060055732727, 0.14107538759708405, 0.40868157148361206, 0.037890296429395676, -0.41279351711273193, -0.1517043262720108, 0.7860878705978394, -0.7714215517044067, -0.2392563372850418, -0.2800133228302002, -0.3806225657463074, 0.0327269621193409, 0.14391842484474182, 0.13157983124256134, 0.20918504893779755, -0.31634536385536194, 0.3972596228122711, 0.26505589485168457, 0.006861914414912462, 0.318968802690506, 0.09856348484754562, -0.2803627550601959, -0.8011763691902161, 0.7255104780197144, 0.1708713173866272, -0.13899730145931244, 0.19011567533016205, 0.13447749614715576, -0.38856926560401917, -0.35241684317588806, -0.15004341304302216, 0.3329203128814697, -0.6898500919342041, -0.2596072852611542, -0.6707221865653992, -0.27132150530815125, -0.6836827993392944, -0.29285141825675964, -0.09268737584352493, -0.5010569095611572, -0.36085501313209534, -0.612456202507019, 0.9630039930343628, 0.8325902819633484, -0.7017011642456055, 0.2930120527744293, -0.7489476203918457, 0.18511176109313965, 0.3174189031124115, 0.4690091907978058, -0.2044164538383484, -0.20944027602672577, -0.2972564399242401, 0.1721617728471756, -0.15300680696964264, -0.8516522645950317, 0.4141349196434021, -0.06289089471101761, 0.266059011220932, 0.26833608746528625, -0.03745540231466293, 0.5844876766204834, -0.04841950535774231, 0.891843318939209, 0.15149924159049988, -0.5616422295570374, 0.7654291987419128, -0.5843908190727234, 0.12422564625740051, 0.9742004871368408, 0.42630478739738464, -0.7501217126846313, -0.18050438165664673, -0.8581923246383667, -1.025430679321289, 0.4184125065803528, 0.13863103091716766, 0.3367338478565216, -0.30097532272338867, 0.3453481197357178, -0.045240484178066254, 0.13419193029403687, -1.1326535940170288, -0.599799394607544, -0.2832172214984894, -0.21182428300380707, 0.1793728917837143, -0.3650408983230591, -0.4577535092830658, -0.8158902525901794, 0.6513182520866394, 0.1596207618713379, 0.1308618187904358, 0.024839695543050766, 0.2137969732284546, -0.3768046796321869, 0.1641608327627182, 0.46461498737335205, 0.9287044405937195, -0.5604299902915955, 0.057488732039928436, 0.04193953052163124, -0.6815895438194275, -0.27628353238105774, 0.22161723673343658, -0.1954663097858429, -0.05375509336590767, 0.49185338616371155, 0.49788397550582886, 0.07034716755151749, -0.27157339453697205, 0.7211552858352661, -0.2422482669353485, -0.3023649752140045, -0.47465163469314575, -0.05449605733156204, 0.22962021827697754, 0.2574957609176636, 0.3508583903312683, 0.025528714060783386, -0.1327751874923706, -0.6747252941131592, 0.6007535457611084, 0.11461073905229568, -0.5978085398674011, -0.4556184411048889, 0.5456111431121826, 0.3484845459461212, -0.5188935995101929, 0.41623544692993164, -0.3486739993095398, -0.22819703817367554, 0.747227668762207, 0.30903807282447815, 0.9214897155761719, 0.19650831818580627, 0.33094269037246704, 0.7926470637321472, 0.39566469192504883, 0.25450828671455383, 0.7887437343597412, -0.08438717573881149, -0.7326180934906006, -0.19135302305221558, -0.6557231545448303, -0.25149908661842346, 0.16395707428455353, -0.6292493939399719, 0.43546950817108154, -0.7200139760971069, -0.5482041239738464, -0.013147194869816303, 0.1907242238521576, -0.5975716710090637, 0.32363393902778625, -0.0970114916563034, 1.048639178276062, -1.2427130937576294, 0.5341816544532776, 0.8317528367042542, -0.5905225276947021, -0.6072558164596558, -0.1446511149406433, 0.15423855185508728, -0.6509668231010437, 0.5014948844909668, -0.13057860732078552, 0.15287478268146515, -0.1229395940899849, -1.0326331853866577, -0.7903070449829102, 1.2106716632843018, -0.3283896744251251, -0.3755769729614258, 0.281208336353302, 0.11399674415588379, 0.46631526947021484, -0.5131648778915405, 0.18627141416072845, 0.5506792068481445, 0.7948777675628662, 0.20875482261180878, -0.47553688287734985, 0.23570194840431213, -0.53001469373703, -0.42868417501449585, 0.08457760512828827, -0.5715442299842834, 0.9386727213859558, -0.1314360499382019, -0.40632179379463196, -0.33204102516174316, 0.6031127572059631, 0.3854137063026428, 0.20632511377334595, 0.467854768037796, 0.7548795938491821, 0.6629996299743652, -0.3654089570045471, 0.9516153931617737, -0.606516420841217, 0.7593634128570557, 1.0327435731887817, 0.14887064695358276, 0.879958987236023, 0.5561046004295349, -0.4206447899341583, 0.5793248414993286, 0.8225311636924744, -0.19949877262115479, 0.5200449824333191, -0.007273253984749317, 0.02891453355550766, -0.04255006089806557, -0.3794410228729248, -0.650466799736023, 0.2353333681821823, 0.34884074330329895, -0.5732429027557373, -0.28726404905319214, -0.41748273372650146, 0.28587454557418823, -0.0568678192794323, -0.3119190037250519, 0.7698644399642944, -0.11100378632545471, -0.26293617486953735, 0.14277108013629913, -0.04257262870669365, 0.7517565488815308, -0.5687230825424194, -0.11456640064716339, -0.3288746476173401, 0.1042218878865242, -0.5790261030197144, -1.2947081327438354, 0.6744550466537476, 0.019016915932297707, -0.4382164478302002, -0.4660593867301941, 0.6919468641281128, -0.26214274764060974, -0.8768762946128845, 0.294620543718338, 0.29979410767555237, 0.16525518894195557, 0.23094916343688965, -0.9760311245918274, 0.20551718771457672, 0.09562654793262482, -0.4178592562675476, -0.17785632610321045, 0.5282682180404663, 0.10206233710050583, 0.3005824387073517, 0.7161421775817871, 0.33111581206321716, -0.20265084505081177, 0.05146242678165436, 1.1241486072540283, -1.1298009157180786, -0.362508088350296, -0.7883971929550171, 0.6574805974960327, -0.43525230884552, -0.586016833782196, 0.9345229268074036, 0.7489692568778992, 0.8578689694404602, 0.0962233766913414, 1.0722821950912476, -0.692183792591095, 0.8011625409126282, -0.11632712930440903, 0.9369552135467529, -0.6746763586997986, -0.13786762952804565, -0.4913673996925354, -0.7574385404586792, -0.4849937856197357, 0.5543397068977356, -0.5127601027488708, 0.05627399682998657, 0.5031047463417053, 0.9879980087280273, -0.07680772989988327, 0.21765370666980743, -0.10659652203321457, 0.5071239471435547, 0.09115251153707504, 0.4514037072658539, 0.6053041219711304, -0.5193732976913452, 0.4081568419933319, -0.599350094795227, -0.28499695658683777, -0.27614063024520874, -0.9716185927391052, -0.7190806865692139, -0.7284927368164062, -0.49483543634414673, -0.5158769488334656, -0.09452106058597565, 0.922049880027771, 0.6456533670425415, -1.2176830768585205, -0.4599694311618805, 0.002160720992833376, 0.28508424758911133, 0.005082417279481888, -0.3447113633155823, 0.4620246887207031, 0.36167222261428833, -0.40715426206588745, -0.12291641533374786, 0.365664541721344, -0.13751757144927979, -0.11587406694889069, 0.01629704050719738, -0.4269157946109772, 0.003757165977731347, 0.648684024810791, 0.5647410154342651, -0.41305726766586304, -0.483749657869339, 0.14836668968200684, -0.24100346863269806, 0.28166764974594116, 0.517406165599823, -0.24887090921401978, 0.10632343590259552, 0.886811375617981, 0.05693409591913223, 0.49029698967933655, 0.5337010622024536, 0.007509017363190651, -0.825788140296936, 0.09504396468400955, 0.13784117996692657, 0.38891613483428955, 0.35935264825820923, -0.3579336702823639, 0.4920429289340973, 0.48925167322158813, -0.5234367847442627, -0.43828514218330383, -0.04873505234718323, -1.0526227951049805, -0.15847280621528625, 1.3436295986175537, 0.11097826063632965, -0.45339441299438477, -0.3562682271003723, -0.21388264000415802, -0.0696897804737091, -0.7512330412864685, 0.6928589344024658, 0.8765974640846252, -0.17180588841438293, -0.14150714874267578, -0.43264713883399963, 0.6656811833381653, -0.29810261726379395, -1.099779486656189, 0.36903199553489685, 0.5247859358787537, 0.27305978536605835, 0.24798212945461273, 1.038624882698059, -0.2434178590774536, 0.04633549600839615, -0.03166067600250244, 0.24402591586112976, 0.026945210993289948, -0.3551393449306488, 0.034369319677352905, 0.22558602690696716, -0.2955302894115448, -0.18122050166130066 ]
null
null
null
null
null
null
null
null
null
null
null
null
null
clarin-pl/aspectemo
clarin-pl
2022-08-29T16:39:32Z
466
1
null
[ "task_categories:token-classification", "task_ids:sentiment-classification", "annotations_creators:expert-generated", "language_creators:other", "multilinguality:monolingual", "size_categories:1K", "size_categories:1K<n<10K", "source_datasets:original", "language:pl", "license:mit", "region:us" ]
2022-08-29T16:39:32Z
2022-03-02T23:29:22.000Z
2022-03-02T23:29:22
--- annotations_creators: - expert-generated language_creators: - other language: - pl license: - mit multilinguality: - monolingual pretty_name: 'AspectEmo' size_categories: - 1K - 1K<n<10K source_datasets: - original task_categories: - token-classification task_ids: - sentiment-classification --- # AspectEmo ## Description AspectEmo Corpus is an extended version of a publicly available PolEmo 2.0 corpus of Polish customer reviews used in many projects on the use of different methods in sentiment analysis. The AspectEmo corpus consists of four subcorpora, each containing online customer reviews from the following domains: school, medicine, hotels, and products. All documents are annotated at the aspect level with six sentiment categories: strong negative (minus_m), weak negative (minus_s), neutral (zero), weak positive (plus_s), strong positive (plus_m). ## Versions | version | config name | description | default | notes | |---------|-------------|--------------------------------|---------|------------------| | 1.0 | "1.0" | The version used in the paper. | YES | | | 2.0 | - | Some bugs fixed. | NO | work in progress | ## Tasks (input, output and metrics) Aspect-based sentiment analysis (ABSA) is a text analysis method that categorizes data by aspects and identifies the sentiment assigned to each aspect. It is the sequence tagging task. **Input** ('*tokens'* column): sequence of tokens **Output** ('*labels'* column): sequence of predicted tokens’ classes ("O" + 6 possible classes: strong negative (a_minus_m), weak negative (a_minus_s), neutral (a_zero), weak positive (a_plus_s), strong positive (a_plus_m), ambiguous (a_amb) ) **Domain**: school, medicine, hotels and products **Measurements**: F1-score (seqeval) **Example***:* Input: `['Dużo', 'wymaga', ',', 'ale', 'bardzo', 'uczciwy', 'i', 'przyjazny', 'studentom', '.', 'Warto', 'chodzić', 'na', 'konsultacje', '.', 'Docenia', 'postępy', 'i', 'zaangażowanie', '.', 'Polecam', '.']` Input (translated by DeepL): `'Demands a lot , but very honest and student friendly . Worth going to consultations . Appreciates progress and commitment . I recommend .'` Output: `['O', 'a_plus_s', 'O', 'O', 'O', 'a_plus_m', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'a_zero', 'O', 'a_plus_m', 'O', 'O', 'O', 'O', 'O', 'O']` ## Data splits | Subset | Cardinality (sentences) | |:-------|------------------------:| | train | 1173 | | val | 0 | | test | 292 | ## Class distribution(without "O") | Class | train | validation | test | |:----------|--------:|-------------:|-------:| | a_plus_m | 0.359 | - | 0.369 | | a_minus_m | 0.305 | - | 0.377 | | a_zero | 0.234 | - | 0.182 | | a_minus_s | 0.037 | - | 0.024 | | a_plus_s | 0.037 | - | 0.015 | | a_amb | 0.027 | - | 0.033 | ## Citation ``` @misc{11321/849, title = {{AspectEmo} 1.0: Multi-Domain Corpus of Consumer Reviews for Aspect-Based Sentiment Analysis}, author = {Koco{\'n}, Jan and Radom, Jarema and Kaczmarz-Wawryk, Ewa and Wabnic, Kamil and Zaj{\c a}czkowska, Ada and Za{\'s}ko-Zieli{\'n}ska, Monika}, url = {http://hdl.handle.net/11321/849}, note = {{CLARIN}-{PL} digital repository}, copyright = {The {MIT} License}, year = {2021} } ``` ## License ``` The MIT License ``` ## Links [HuggingFace](https://huggingface.co/datasets/clarin-pl/aspectemo) [Source](https://clarin-pl.eu/dspace/handle/11321/849) [Paper](https://sentic.net/sentire2021kocon.pdf) ## Examples ### Loading ```python from pprint import pprint from datasets import load_dataset dataset = load_dataset("clarin-pl/aspectemo") pprint(dataset['train'][20]) # {'labels': [0, 4, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 3, 0, 5, 0, 0, 0, 0, 0, 0], # 'tokens': ['Dużo', # 'wymaga', # ',', # 'ale', # 'bardzo', # 'uczciwy', # 'i', # 'przyjazny', # 'studentom', # '.', # 'Warto', # 'chodzić', # 'na', # 'konsultacje', # '.', # 'Docenia', # 'postępy', # 'i', # 'zaangażowanie', # '.', # 'Polecam', # '.']} ``` ### Evaluation ```python import random from pprint import pprint from datasets import load_dataset, load_metric dataset = load_dataset("clarin-pl/aspectemo") references = dataset["test"]["labels"] # generate random predictions predictions = [ [ random.randrange(dataset["train"].features["labels"].feature.num_classes) for _ in range(len(labels)) ] for labels in references ] # transform to original names of labels references_named = [ [dataset["train"].features["labels"].feature.names[label] for label in labels] for labels in references ] predictions_named = [ [dataset["train"].features["labels"].feature.names[label] for label in labels] for labels in predictions ] # transform to BILOU scheme references_named = [ [f"U-{label}" if label != "O" else label for label in labels] for labels in references_named ] predictions_named = [ [f"U-{label}" if label != "O" else label for label in labels] for labels in predictions_named ] # utilise seqeval to evaluate seqeval = load_metric("seqeval") seqeval_score = seqeval.compute( predictions=predictions_named, references=references_named, scheme="BILOU", mode="strict", ) pprint(seqeval_score) # {'a_amb': {'f1': 0.00597237775289287, # 'number': 91, # 'precision': 0.003037782418834251, # 'recall': 0.17582417582417584}, # 'a_minus_m': {'f1': 0.048306148055207034, # 'number': 1039, # 'precision': 0.0288551620760727, # 'recall': 0.1482194417709336}, # 'a_minus_s': {'f1': 0.004682997118155619, # 'number': 67, # 'precision': 0.0023701002734731083, # 'recall': 0.19402985074626866}, # 'a_plus_m': {'f1': 0.045933014354066985, # 'number': 1015, # 'precision': 0.027402473834443386, # 'recall': 0.14187192118226602}, # 'a_plus_s': {'f1': 0.0021750951604132683, # 'number': 41, # 'precision': 0.001095690284879474, # 'recall': 0.14634146341463414}, # 'a_zero': {'f1': 0.025159400310184387, # 'number': 501, # 'precision': 0.013768389287061486, # 'recall': 0.14570858283433133}, # 'overall_accuracy': 0.13970115681233933, # 'overall_f1': 0.02328248652368391, # 'overall_precision': 0.012639312620633834, # 'overall_recall': 0.14742193173565724} ```
[ -0.5569705367088318, -0.6340002417564392, 0.40437084436416626, 0.3111935257911682, -0.3081539571285248, -0.21568799018859863, -0.20872145891189575, -0.32598066329956055, 0.6122029423713684, 0.4196491837501526, -0.4354000687599182, -0.8647777438163757, -0.4416140913963318, 0.11935367435216904, -0.04796998202800751, 1.118408441543579, -0.026449669152498245, 0.09528931230306625, -0.03140366077423096, -0.2872944474220276, -0.16674622893333435, -0.7884471416473389, -0.5794664025306702, -0.29842111468315125, 0.1928548961877823, 0.48147374391555786, 0.6368649005889893, 0.4519088566303253, 0.5889291167259216, 0.4439440071582794, -0.2286653369665146, 0.04581337794661522, -0.10512026399374008, 0.0501377247273922, 0.0434715710580349, -0.6390227675437927, -0.7781774401664734, -0.07634241878986359, 0.5723533630371094, 0.8584364056587219, 0.03631101921200752, 0.3046295642852783, 0.12529654800891876, 0.8303967118263245, -0.2597396969795227, 0.3792904317378998, -0.34910428524017334, -0.12164471298456192, -0.12711285054683685, 0.07704658061265945, -0.08444536477327347, -0.42854928970336914, -0.09364469349384308, -0.7073697447776794, 0.18899717926979065, 0.14912928640842438, 1.222557783126831, -0.07468468695878983, 0.1040857806801796, -0.37685227394104004, -0.4792504906654358, 1.0286811590194702, -0.97138512134552, 0.0070388782769441605, 0.49062103033065796, -0.047600071877241135, -0.17296329140663147, -0.41785553097724915, -0.7255412340164185, 0.1482294201850891, -0.27587538957595825, 0.40520036220550537, -0.00521788140758872, -0.13397790491580963, 0.13358527421951294, 0.4899786710739136, -0.42000454664230347, 0.029236968606710434, -0.5612285733222961, -0.2098541557788849, 0.9751018285751343, 0.3090832233428955, 0.021054409444332123, -0.6340444087982178, -0.4401140809059143, -0.3293187916278839, -0.3424055576324463, 0.4021255075931549, 0.42779359221458435, 0.46102845668792725, -0.3831877112388611, 0.7392649054527283, -0.4146776795387268, 0.5493943095207214, 0.10448281466960907, -0.24614016711711884, 1.0010902881622314, -0.4108574092388153, -0.2875119745731354, 0.04144715890288353, 1.2411038875579834, 0.6365211009979248, -0.0480932779610157, 0.33297866582870483, -0.1550261527299881, -0.09064605087041855, -0.14381630718708038, -0.6156183481216431, -0.373182088136673, 0.610088586807251, -0.3492574393749237, -0.3959353268146515, 0.2125183790922165, -1.1195731163024902, -0.10030201077461243, -0.22445717453956604, 0.536820113658905, -0.8519929647445679, -0.21389277279376984, 0.024441266432404518, -0.13898566365242004, 0.18311050534248352, 0.13380619883537292, -0.6518694758415222, 0.14968349039554596, 0.5710230469703674, 0.837397575378418, 0.15667594969272614, -0.39111292362213135, -0.14161548018455505, -0.27800440788269043, -0.39607325196266174, 0.7606294751167297, -0.28232523798942566, -0.5658715963363647, -0.09531112760305405, 0.24465690553188324, -0.10834088921546936, -0.37992241978645325, 0.8048135042190552, -0.12510058283805847, 0.3241317868232727, -0.27871400117874146, -0.42203566431999207, -0.5758345723152161, 0.40922945737838745, -0.48200276494026184, 1.2685215473175049, 0.44325390458106995, -0.8569884300231934, 0.37141579389572144, -0.5997564196586609, -0.4199800491333008, -0.06595274806022644, 0.019943255931138992, -0.9360923767089844, -0.10837408900260925, 0.48487335443496704, 0.521729588508606, -0.22355975210666656, 0.019223440438508987, -0.46591562032699585, -0.022627567872405052, 0.5437601208686829, -0.14808320999145508, 1.0475070476531982, 0.13005076348781586, -0.39110231399536133, 0.32175466418266296, -0.942213237285614, 0.323230504989624, 0.044677019119262695, -0.26939502358436584, -0.3240284323692322, -0.24107027053833008, -0.019730882719159126, 0.22117528319358826, 0.4052317440509796, -0.6100436449050903, 0.164035826921463, -0.7566882371902466, 0.4902404844760895, 0.6754195094108582, 0.1678277850151062, 0.3521833121776581, -0.3589766025543213, 0.4265318810939789, 0.3630572259426117, 0.2969878017902374, -0.07035642117261887, -0.5350954532623291, -0.915597677230835, -0.3482603132724762, 0.2577759027481079, 0.669647216796875, -0.7594919800758362, 1.043108344078064, -0.30171334743499756, -0.6954060196876526, -0.6836633086204529, -0.025890715420246124, 0.32761508226394653, 0.5723471641540527, 0.6581919193267822, -0.039144448935985565, -0.6427735090255737, -1.052909016609192, 0.08105571568012238, -0.312793493270874, -0.0009059018921107054, 0.25312870740890503, 0.6575594544410706, -0.04609402269124985, 0.8457932472229004, -0.6734070777893066, -0.5498369336128235, -0.3718697726726532, 0.0833824872970581, 0.7113048434257507, 0.6011184453964233, 0.6481651663780212, -0.5928055644035339, -0.5975311994552612, 0.007947320118546486, -0.841761589050293, 0.015287653543055058, -0.16676992177963257, -0.1554289311170578, 0.40998056530952454, 0.10274423658847809, -0.5854160189628601, 0.5488486886024475, 0.30206403136253357, -0.5853089690208435, 0.661780059337616, -0.4069267213344574, 0.35082319378852844, -1.2881423234939575, 0.07631224393844604, -0.09746736288070679, -0.10566669702529907, -0.5720164775848389, -0.15388141572475433, 0.04221990332007408, 0.06984296441078186, -0.46394434571266174, 0.43623432517051697, -0.46383875608444214, -0.03805999457836151, 0.16291086375713348, 0.15466298162937164, 0.00030789064476266503, 0.7006091475486755, 0.09092505276203156, 0.6387736201286316, 0.9168471693992615, -0.582862377166748, 0.2660737633705139, 0.43581756949424744, -0.35158422589302063, 0.5421751141548157, -0.6564547419548035, -0.07870036363601685, 0.015861278399825096, 0.0182495079934597, -1.0104022026062012, -0.19607742130756378, 0.5592162609100342, -0.694909930229187, 0.13584758341312408, -0.061032071709632874, -0.3721577823162079, -0.5885708928108215, -0.7373982667922974, 0.18231628835201263, 0.40555238723754883, -0.33317017555236816, 0.5003782510757446, 0.3572961688041687, -0.21723264455795288, -0.6284422278404236, -0.6799565553665161, -0.24442096054553986, -0.29337435960769653, -0.6080132722854614, 0.2810879647731781, 0.07598301023244858, -0.208689346909523, 0.07188713550567627, 0.1519925445318222, 0.049163054674863815, -0.05176593363285065, 0.4182736575603485, 0.482194185256958, -0.1320318579673767, -0.1412494033575058, 0.08616043627262115, -0.1944994479417801, 0.11170367151498795, -0.1589699238538742, 0.8226176500320435, -0.4615286588668823, -0.03553051874041557, -0.44536757469177246, 0.3469376266002655, 0.48394179344177246, -0.10845359414815903, 0.8499757051467896, 0.5219175219535828, -0.24860736727714539, 0.006465339567512274, -0.2445937544107437, 0.09741923958063126, -0.4663134813308716, 0.4741142988204956, -0.5808857083320618, -0.5846440196037292, 0.8781704902648926, 0.33730828762054443, -0.025112444534897804, 1.0375945568084717, 0.49345099925994873, -0.16878637671470642, 0.818569004535675, 0.22072350978851318, 0.019602173939347267, 0.2254360169172287, -0.7528114318847656, 0.11715880036354065, -0.9719359874725342, -0.5469140410423279, -0.5157585740089417, -0.2848856747150421, -0.6394016742706299, -0.3904067873954773, 0.421607106924057, 0.46147748827934265, -0.2763924300670624, 0.40339919924736023, -0.7046119570732117, 0.08912317454814911, 0.7270320057868958, 0.34082260727882385, -0.10613991320133209, -0.0563734732568264, -0.12491156160831451, -0.0772969126701355, -0.5076627731323242, -0.36890414357185364, 1.3603010177612305, 0.3131352365016937, 0.559648334980011, 0.10464704781770706, 0.8628320097923279, 0.2452220916748047, 0.3849380910396576, -0.828201413154602, 0.682796061038971, -0.2024775743484497, -0.5160792469978333, -0.46390578150749207, -0.3799082338809967, -0.9972139596939087, 0.42201632261276245, -0.3926045298576355, -0.9183255434036255, 0.4493388533592224, 0.038036227226257324, -0.4925604462623596, 0.3922775089740753, -0.549582839012146, 0.7247502207756042, -0.2499205768108368, -0.5015382170677185, 0.075441375374794, -0.6027153730392456, 0.19599446654319763, 0.04526877403259277, 0.4111675024032593, -0.25227296352386475, 0.09059441089630127, 1.1011680364608765, -0.8527989387512207, 0.7544566988945007, -0.20741795003414154, 0.2107798308134079, 0.7699819207191467, -0.02599814347922802, 0.4834185540676117, 0.10278009623289108, -0.2225925177335739, 0.5336184501647949, 0.09625393897294998, -0.4916624128818512, -0.1834585815668106, 0.6692754030227661, -0.9959105849266052, -0.4529973268508911, -0.7248910665512085, -0.3132539391517639, -0.037082865834236145, 0.3389507234096527, 0.6124542355537415, 0.4580976366996765, 0.07589195668697357, 0.2623768150806427, 0.32876357436180115, -0.3471938371658325, 0.5116121768951416, 0.38755783438682556, -0.30641499161720276, -1.0813534259796143, 0.9193972945213318, 0.08408956229686737, 0.06394872069358826, 0.37996649742126465, 0.24049319326877594, -0.571721076965332, -0.5097454786300659, -0.41008102893829346, 0.3849216103553772, -0.5591695308685303, -0.5292220711708069, -0.6090570092201233, -0.2378324270248413, -0.7391316890716553, -0.2258802205324173, -0.2989194393157959, -0.7129349708557129, -0.31272125244140625, -0.21344663202762604, 0.5184611678123474, 0.5519341230392456, -0.38224178552627563, 0.4183427691459656, -0.6623808145523071, 0.016262037679553032, -0.0386965349316597, 0.28591787815093994, -0.2706888020038605, -0.6116026639938354, -0.18587055802345276, 0.06571090221405029, -0.4819706082344055, -1.0031471252441406, 0.8322728872299194, 0.0793219730257988, 0.3632025420665741, 0.4289454221725464, 0.07228868454694748, 0.7484142184257507, -0.16318820416927338, 1.080486536026001, 0.44766321778297424, -1.026535987854004, 0.5706833600997925, -0.12800024449825287, 0.014231963083148003, 0.6261129379272461, 0.4273498058319092, -0.47770997881889343, -0.48275837302207947, -1.0196239948272705, -1.2019102573394775, 0.9751333594322205, 0.4441983997821808, -0.26017943024635315, 0.025585563853383064, 0.24182423949241638, 0.11980822682380676, 0.28771084547042847, -0.6050402522087097, -0.7996892333030701, -0.5439314842224121, -0.5388434529304504, -0.26430025696754456, -0.16459083557128906, -0.14003822207450867, -0.4228018522262573, 0.9454411864280701, 0.009907959960401058, 0.5268949866294861, 0.5901148319244385, 0.12504152953624725, 0.15236739814281464, 0.3920759856700897, 0.5592668056488037, 0.5639037489891052, -0.41745537519454956, 0.04985541105270386, 0.2622925043106079, -0.5935556292533875, 0.04053417593240738, 0.28040188550949097, -0.3565008342266083, 0.13264884054660797, 0.4113919734954834, 0.746651291847229, 0.03604540228843689, -0.3186270594596863, 0.4322592616081238, 0.18704459071159363, -0.5850979685783386, -0.7692796587944031, -0.01548695657402277, -0.07210274040699005, 0.04357678070664406, 0.39774149656295776, 0.21136611700057983, 0.1323270946741104, -0.5356806516647339, 0.20592981576919556, 0.31890085339546204, -0.47060614824295044, -0.4389088451862335, 0.7463471293449402, -0.01848590560257435, -0.3520255386829376, 0.507241427898407, -0.38369348645210266, -0.9348393678665161, 0.8747429847717285, 0.2963297665119171, 0.8292487859725952, -0.12729255855083466, 0.3021642565727234, 0.9502055048942566, 0.3854457139968872, -0.0710376724600792, 0.6412334442138672, 0.27488312125205994, -0.7732877135276794, 0.0572541281580925, -0.8879168629646301, -0.2154178023338318, 0.3664039373397827, -0.7819396257400513, 0.18765516579151154, -0.596138596534729, -0.3975242078304291, 0.24044355750083923, 0.277932733297348, -0.7211911082267761, 0.32021480798721313, -0.0083310566842556, 0.6720068454742432, -0.9990072846412659, 0.707730770111084, 0.9076005816459656, -0.6996490955352783, -1.0397080183029175, -0.3352183997631073, -0.31483718752861023, -0.6901045441627502, 0.453533798456192, 0.18549297749996185, 0.28256821632385254, -0.3734375536441803, -0.42880845069885254, -1.052824854850769, 1.109519600868225, -0.2239694595336914, -0.5484122633934021, 0.35555997490882874, 0.30546319484710693, 0.664794385433197, -0.2871305048465729, 0.46166878938674927, 0.5338674187660217, 0.5170477628707886, -0.11071445792913437, -0.7256463766098022, 0.141606867313385, -0.27350059151649475, -0.29197394847869873, 0.41082000732421875, -0.9558119177818298, 1.2177157402038574, -0.11159460246562958, 0.0757448747754097, -0.06100860610604286, 0.8378041982650757, 0.3210766017436981, 0.527107298374176, 0.48890015482902527, 0.582016110420227, 0.891954779624939, -0.376932293176651, 0.8185017704963684, -0.408486008644104, 0.7457816004753113, 1.0840157270431519, 0.11021582782268524, 1.0269460678100586, 0.3238862454891205, -0.7271256446838379, 0.7965379357337952, 0.6570590734481812, -0.06466910243034363, 0.28184592723846436, -0.1098649799823761, -0.07599657028913498, -0.27810734510421753, 0.40750652551651, -0.44192832708358765, 0.315536767244339, 0.5737914443016052, -0.42471179366111755, 0.06234859302639961, -0.09998635947704315, 0.2024535834789276, 0.12478508055210114, -0.4699985086917877, 0.633653998374939, 0.046115148812532425, -0.6424786448478699, 0.7521219849586487, 0.07119184732437134, 0.7047919034957886, -0.4865414500236511, 0.16917851567268372, -0.2749900221824646, 0.3980881869792938, -0.3909970819950104, -1.2905986309051514, 0.24305720627307892, -0.2106121927499771, -0.09764396399259567, 0.18013377487659454, 0.4834703207015991, -0.44682687520980835, -1.0103205442428589, 0.10167050361633301, 0.21871818602085114, 0.4092567563056946, 0.06634396314620972, -0.9810928106307983, -0.16853103041648865, 0.3845796585083008, -0.3928435146808624, 0.13497255742549896, 0.5291682481765747, 0.06522775441408157, 0.5347426533699036, 0.6360407471656799, 0.14378617703914642, -0.02123863622546196, -0.3249010443687439, 0.8647454977035522, -0.9763057231903076, -0.7762536406517029, -0.7942058444023132, 0.6094793081283569, -0.3715274930000305, -0.6981760859489441, 0.8837283849716187, 0.9855351448059082, 0.6512994766235352, -0.0712042823433876, 0.8432421088218689, -0.3560387194156647, 0.6493592858314514, -0.46148744225502014, 0.6490642428398132, -0.5390040278434753, 0.14028075337409973, -0.0886508971452713, -0.7355300784111023, -0.2986580729484558, 0.649992048740387, -0.5776222348213196, -0.05196518078446388, 0.7266826033592224, 0.726943850517273, 0.25527194142341614, 0.062753826379776, 0.09784585982561111, 0.42928168177604675, 0.2082488089799881, 0.6894115805625916, 0.3644311726093292, -0.7263702154159546, 0.5322949290275574, -0.9171264171600342, -0.3617834150791168, -0.33919960260391235, -0.4781512916088104, -0.894030749797821, -0.687029242515564, -0.3568182587623596, -0.7877216935157776, -0.2843211889266968, 0.9716471433639526, 0.4240892231464386, -1.091098427772522, -0.10756739974021912, 0.04216238111257553, 0.09614939242601395, -0.48730239272117615, -0.36372798681259155, 0.8656952977180481, -0.28506627678871155, -0.766478955745697, 0.005245181731879711, -0.026548366993665695, 0.05501002073287964, -0.01808343268930912, -0.061426471918821335, -0.12713365256786346, -0.0018493381794542074, 0.5737245678901672, 0.31571242213249207, -0.6064271330833435, -0.2978519797325134, -0.06206865608692169, -0.03898227959871292, 0.4135703444480896, 0.20412595570087433, -0.5413719415664673, 0.22649452090263367, 0.6459560990333557, 0.02090233936905861, 0.6198360323905945, 0.3599826693534851, 0.08882585912942886, -0.5753469467163086, 0.32530349493026733, 0.20402224361896515, 0.38285231590270996, 0.43612009286880493, -0.43076711893081665, 0.4317806363105774, 0.3827259838581085, -0.5920324325561523, -0.6679210066795349, -0.26788952946662903, -1.2658183574676514, -0.34050223231315613, 1.1793156862258911, -0.2981545031070709, -0.7547416090965271, -0.05366511642932892, -0.2769480347633362, 0.12230657041072845, -0.7076945900917053, 0.629548966884613, 0.4847060441970825, -0.36361151933670044, 0.3511633574962616, -0.31992605328559875, 0.4596433639526367, 0.40054675936698914, -0.8106170892715454, -0.06428944319486618, 0.3051208257675171, 0.5646472573280334, 0.48813870549201965, 0.6704155206680298, -0.17364482581615448, -0.045231204479932785, 0.28258654475212097, 0.3501650393009186, -0.028619498014450073, -0.014135419391095638, -0.32818952202796936, 0.19029971957206726, -0.19013290107250214, -0.5515440702438354 ]
null
null
null
null
null
null
null
null
null
null
null
null
null
midas/inspec
midas
2022-03-05T03:08:37Z
466
9
null
[ "arxiv:1910.08840", "region:us" ]
2022-03-05T03:08:37Z
2022-03-02T23:29:22.000Z
2022-03-02T23:29:22
A dataset for benchmarking keyphrase extraction and generation techniques from abstracts of English scientific papers. For more details about the dataset please refer the original paper - [https://dl.acm.org/doi/pdf/10.3115/1119355.1119383](https://dl.acm.org/doi/pdf/10.3115/1119355.1119383). Data source - [https://github.com/boudinfl/ake-datasets/tree/master/datasets/Inspec](https://github.com/boudinfl/ake-datasets/tree/master/datasets/Inspec) ## Dataset Summary The Inspec dataset was originally proposed by *Hulth* in the paper titled - [Improved automatic keyword extraction given more linguistic knowledge](https://aclanthology.org/W03-1028.pdf) in the year 2003. The dataset consists of abstracts of 2,000 English scientific papers from the [Inspec database](https://clarivate.com/webofsciencegroup/solutions/webofscience-inspec/). The abstracts are from papers belonging to the scientific domains of *Computers and Control* and *Information Technology* published between 1998 to 2002. Each abstract has two sets of keyphrases annotated by professional indexers - *controlled* and *uncontrolled*. The *controlled* keyphrases are obtained from the Inspec thesaurus and therefore are often not present in the abstract's text. Only 18.1% of the *controlled* keyphrases are actually present in the abstract's text. The *uncontrolled* keyphrases are those selected by the indexers after reading the full-length scientific articles and 76.2% of them are present in the abstract's text. There is no information in the original paper about how these 2,000 scientific papers were selected. It is unknown whether the papers were randomly selected out of all the papers published between 1998-2002 in the *Computers and Control* and *Information Technology* domains or were there only 2,000 papers in this domain that were indexed by Inspec. The train, dev and test splits of the data were arbitrarily chosen. One of the key aspect of this dataset which makes it unique is that it provides keyphrases assigned by professional indexers, which is uncommon in the keyphrase literature. Most of the datasets in this domain have author assigned keyphrases as the ground truth. The dataset shared over here does not explicitly presents the *controlled* and *uncontrolled* keyphrases instead it only categorizes the keyphrases into *extractive* and *abstractive*. **Extractive keyphrases** are those that could be found in the input text and the **abstractive keyphrases** are those that are not present in the input text. In order to get all the meta-data about the documents and keyphrases please refer to the [original source](https://github.com/boudinfl/ake-datasets/tree/master/datasets/Inspec) from which the dataset was taken from. The main motivation behind making this dataset available in the form as presented over here is to make it easy for the researchers to programmatically download it and evaluate their models for the tasks of keyphrase extraction and generation. As keyphrase extraction by treating it as a sequence tagging task and using contextual language models has become popular - [Keyphrase extraction from scholarly articles as sequence labeling using contextualized embeddings](https://arxiv.org/pdf/1910.08840.pdf), we have also made the token tags available in the BIO tagging format. ## Dataset Structure ## Dataset Statistics Table 1: Statistics on the length of the abstractive keyphrases for Train, Test, and Validation splits of Inspec dataset. | | Train | Test | Validation | |:---------------:|:-----------------------:|:----------------------:|:------------------------:| | Single word | 9.0% | 9.5% | 10.1% | | Two words | 50.4% | 48.2% | 45.7% | | Three words | 27.6% | 28.6% | 29.8% | | Four words | 9.3% | 10.3% | 10.3% | | Five words | 2.4% | 2.0% | 3.2% | | Six words | 0.9% | 1.2% | 0.7% | | Seven words | 0.3% | 0.2% | 0.2% | | Eight words | 0.1% | 0% | 0.1% | | Nine words | 0% | 0.1% | 0% | Table 2: Statistics on the length of the extractive keyphrases for Train, Test, and Validation splits of Inspec dataset. | | Train | Test | Validation | |:------------:|:-----------------------:|:----------------------:|:------------------------:| | Single word | 16.2% | 15.4% | 17.0% | | Two words | 52.4% | 54.8% | 51.6% | | Three words | 24.3% | 22.99% | 24.3% | | Four words | 5.6% | 4.96% | 5.8% | | Five words | 1.2% | 1.3% | 1.1% | | Six words | 0.2% | 0.36% | 0.2% | | Seven words | 0.1% | 0.06% | 0.1% | | Eight words | 0% | 0% | 0.03% | Table 3: General statistics of the Inspec dataset. | Type of Analysis | Train | Test | Validation | |:----------------------------------------------:|:------------------------------:|:------------------------------:|:------------------------------:| | Annotator Type | Professional Indexers | Professional Indexers | Professional Indexers | | Document Type | Abstracts from Inspec Database | Abstracts from Inspec Database | Abstracts from Inspec Database | | No. of Documents | 1000 | 500 | 500 | | Avg. Document length (words) | 141.5 | 134.6 | 132.6 | | Max Document length (words) | 557 | 384 | 330 | | Max no. of abstractive keyphrases in a document | 17 | 20 | 14 | | Min no. of abstractive keyphrases in a document | 0 | 0 | 0 | | Avg. no. of abstractive keyphrases per document | 3.39 | 3.26 | 3.12 | | Max no. of extractive keyphrases in a document | 24 | 27 | 22 | | Min no. of extractive keyphrases in a document | 0 | 0 | 0 | | Avg. no. of extractive keyphrases per document | 6.39 | 6.56 | 5.95 | - Percentage of keyphrases that are named entities: 55.25% (named entities detected using scispacy - en-core-sci-lg model) - Percentage of keyphrases that are noun phrases: 73.59% (noun phrases detected using spacy after removing determiners) ### Data Fields - **id**: unique identifier of the document. - **document**: Whitespace separated list of words in the document. - **doc_bio_tags**: BIO tags for each word in the document. B stands for the beginning of a keyphrase and I stands for inside the keyphrase. O stands for outside the keyphrase and represents the word that isn't a part of the keyphrase at all. - **extractive_keyphrases**: List of all the present keyphrases. - **abstractive_keyphrase**: List of all the absent keyphrases. ### Data Splits |Split| No. of datapoints | |--|--| | Train | 1,000 | | Test | 500 | | Validation | 500 | ## Usage ### Full Dataset ```python from datasets import load_dataset # get entire dataset dataset = load_dataset("midas/inspec", "raw") # sample from the train split print("Sample from training dataset split") train_sample = dataset["train"][0] print("Fields in the sample: ", [key for key in train_sample.keys()]) print("Tokenized Document: ", train_sample["document"]) print("Document BIO Tags: ", train_sample["doc_bio_tags"]) print("Extractive/present Keyphrases: ", train_sample["extractive_keyphrases"]) print("Abstractive/absent Keyphrases: ", train_sample["abstractive_keyphrases"]) print("\n-----------\n") # sample from the validation split print("Sample from validation dataset split") validation_sample = dataset["validation"][0] print("Fields in the sample: ", [key for key in validation_sample.keys()]) print("Tokenized Document: ", validation_sample["document"]) print("Document BIO Tags: ", validation_sample["doc_bio_tags"]) print("Extractive/present Keyphrases: ", validation_sample["extractive_keyphrases"]) print("Abstractive/absent Keyphrases: ", validation_sample["abstractive_keyphrases"]) print("\n-----------\n") # sample from the test split print("Sample from test dataset split") test_sample = dataset["test"][0] print("Fields in the sample: ", [key for key in test_sample.keys()]) print("Tokenized Document: ", test_sample["document"]) print("Document BIO Tags: ", test_sample["doc_bio_tags"]) print("Extractive/present Keyphrases: ", test_sample["extractive_keyphrases"]) print("Abstractive/absent Keyphrases: ", test_sample["abstractive_keyphrases"]) print("\n-----------\n") ``` **Output** ```bash Sample from training data split Fields in the sample: ['id', 'document', 'doc_bio_tags', 'extractive_keyphrases', 'abstractive_keyphrases', 'other_metadata'] Tokenized Document: ['A', 'conflict', 'between', 'language', 'and', 'atomistic', 'information', 'Fred', 'Dretske', 'and', 'Jerry', 'Fodor', 'are', 'responsible', 'for', 'popularizing', 'three', 'well-known', 'theses', 'in', 'contemporary', 'philosophy', 'of', 'mind', ':', 'the', 'thesis', 'of', 'Information-Based', 'Semantics', '-LRB-', 'IBS', '-RRB-', ',', 'the', 'thesis', 'of', 'Content', 'Atomism', '-LRB-', 'Atomism', '-RRB-', 'and', 'the', 'thesis', 'of', 'the', 'Language', 'of', 'Thought', '-LRB-', 'LOT', '-RRB-', '.', 'LOT', 'concerns', 'the', 'semantically', 'relevant', 'structure', 'of', 'representations', 'involved', 'in', 'cognitive', 'states', 'such', 'as', 'beliefs', 'and', 'desires', '.', 'It', 'maintains', 'that', 'all', 'such', 'representations', 'must', 'have', 'syntactic', 'structures', 'mirroring', 'the', 'structure', 'of', 'their', 'contents', '.', 'IBS', 'is', 'a', 'thesis', 'about', 'the', 'nature', 'of', 'the', 'relations', 'that', 'connect', 'cognitive', 'representations', 'and', 'their', 'parts', 'to', 'their', 'contents', '-LRB-', 'semantic', 'relations', '-RRB-', '.', 'It', 'holds', 'that', 'these', 'relations', 'supervene', 'solely', 'on', 'relations', 'of', 'the', 'kind', 'that', 'support', 'information', 'content', ',', 'perhaps', 'with', 'some', 'help', 'from', 'logical', 'principles', 'of', 'combination', '.', 'Atomism', 'is', 'a', 'thesis', 'about', 'the', 'nature', 'of', 'the', 'content', 'of', 'simple', 'symbols', '.', 'It', 'holds', 'that', 'each', 'substantive', 'simple', 'symbol', 'possesses', 'its', 'content', 'independently', 'of', 'all', 'other', 'symbols', 'in', 'the', 'representational', 'system', '.', 'I', 'argue', 'that', 'Dretske', "'s", 'and', 'Fodor', "'s", 'theories', 'are', 'false', 'and', 'that', 'their', 'falsehood', 'results', 'from', 'a', 'conflict', 'IBS', 'and', 'Atomism', ',', 'on', 'the', 'one', 'hand', ',', 'and', 'LOT', ',', 'on', 'the', 'other'] Document BIO Tags: ['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'B', 'I', 'I', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'B', 'O', 'O', 'O', 'O', 'O', 'B', 'I', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'B', 'I', 'I', 'O', 'B', 'O', 'O', 'B', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'B', 'I', 'O', 'O', 'B', 'O', 'B', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'B', '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', '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', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'B', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'B', 'O', 'O', 'O', 'O'] Extractive/present Keyphrases: ['philosophy of mind', 'content atomism', 'ibs', 'language of thought', 'lot', 'cognitive states', 'beliefs', 'desires'] Abstractive/absent Keyphrases: ['information-based semantics'] ----------- Sample from validation data split Fields in the sample: ['id', 'document', 'doc_bio_tags', 'extractive_keyphrases', 'abstractive_keyphrases', 'other_metadata'] Tokenized Document: ['Impact', 'of', 'aviation', 'highway-in-the-sky', 'displays', 'on', 'pilot', 'situation', 'awareness', 'Thirty-six', 'pilots', '-LRB-', '31', 'men', ',', '5', 'women', '-RRB-', 'were', 'tested', 'in', 'a', 'flight', 'simulator', 'on', 'their', 'ability', 'to', 'intercept', 'a', 'pathway', 'depicted', 'on', 'a', 'highway-in-the-sky', '-LRB-', 'HITS', '-RRB-', 'display', '.', 'While', 'intercepting', 'and', 'flying', 'the', 'pathway', ',', 'pilots', 'were', 'required', 'to', 'watch', 'for', 'traffic', 'outside', 'the', 'cockpit', '.', 'Additionally', ',', 'pilots', 'were', 'tested', 'on', 'their', 'awareness', 'of', 'speed', ',', 'altitude', ',', 'and', 'heading', 'during', 'the', 'flight', '.', 'Results', 'indicated', 'that', 'the', 'presence', 'of', 'a', 'flight', 'guidance', 'cue', 'significantly', 'improved', 'flight', 'path', 'awareness', 'while', 'intercepting', 'the', 'pathway', ',', 'but', 'significant', 'practice', 'effects', 'suggest', 'that', 'a', 'guidance', 'cue', 'might', 'be', 'unnecessary', 'if', 'pilots', 'are', 'given', 'proper', 'training', '.', 'The', 'amount', 'of', 'time', 'spent', 'looking', 'outside', 'the', 'cockpit', 'while', 'using', 'the', 'HITS', 'display', 'was', 'significantly', 'less', 'than', 'when', 'using', 'conventional', 'aircraft', 'instruments', '.', 'Additionally', ',', 'awareness', 'of', 'flight', 'information', 'present', 'on', 'the', 'HITS', 'display', 'was', 'poor', '.', 'Actual', 'or', 'potential', 'applications', 'of', 'this', 'research', 'include', 'guidance', 'for', 'the', 'development', 'of', 'perspective', 'flight', 'display', 'standards', 'and', 'as', 'a', 'basis', 'for', 'flight', 'training', 'requirements'] Document BIO Tags: ['O', 'O', 'O', 'O', 'O', 'O', 'O', 'B', 'I', 'O', 'B', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'B', 'I', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'B', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'B', 'O', 'O', 'O', 'B', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'B', 'I', 'O', 'O', 'O', 'B', 'I', 'I', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'B', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'B', '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', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O'] Extractive/present Keyphrases: ['flight simulator', 'pilots', 'cockpit', 'flight guidance', 'situation awareness', 'flight path awareness'] Abstractive/absent Keyphrases: ['highway-in-the-sky display', 'human factors', 'aircraft display'] ----------- Sample from test data split Fields in the sample: ['id', 'document', 'doc_bio_tags', 'extractive_keyphrases', 'abstractive_keyphrases', 'other_metadata'] Tokenized Document: ['A', 'new', 'graphical', 'user', 'interface', 'for', 'fast', 'construction', 'of', 'computation', 'phantoms', 'and', 'MCNP', 'calculations', ':', 'application', 'to', 'calibration', 'of', 'in', 'vivo', 'measurement', 'systems', 'Reports', 'on', 'a', 'new', 'utility', 'for', 'development', 'of', 'computational', 'phantoms', 'for', 'Monte', 'Carlo', 'calculations', 'and', 'data', 'analysis', 'for', 'in', 'vivo', 'measurements', 'of', 'radionuclides', 'deposited', 'in', 'tissues', '.', 'The', 'individual', 'properties', 'of', 'each', 'worker', 'can', 'be', 'acquired', 'for', 'a', 'rather', 'precise', 'geometric', 'representation', 'of', 'his', '-LRB-', 'her', '-RRB-', 'anatomy', ',', 'which', 'is', 'particularly', 'important', 'for', 'low', 'energy', 'gamma', 'ray', 'emitting', 'sources', 'such', 'as', 'thorium', ',', 'uranium', ',', 'plutonium', 'and', 'other', 'actinides', '.', 'The', 'software', 'enables', 'automatic', 'creation', 'of', 'an', 'MCNP', 'input', 'data', 'file', 'based', 'on', 'scanning', 'data', '.', 'The', 'utility', 'includes', 'segmentation', 'of', 'images', 'obtained', 'with', 'either', 'computed', 'tomography', 'or', 'magnetic', 'resonance', 'imaging', 'by', 'distinguishing', 'tissues', 'according', 'to', 'their', 'signal', '-LRB-', 'brightness', '-RRB-', 'and', 'specification', 'of', 'the', 'source', 'and', 'detector', '.', 'In', 'addition', ',', 'a', 'coupling', 'of', 'individual', 'voxels', 'within', 'the', 'tissue', 'is', 'used', 'to', 'reduce', 'the', 'memory', 'demand', 'and', 'to', 'increase', 'the', 'calculational', 'speed', '.', 'The', 'utility', 'was', 'tested', 'for', 'low', 'energy', 'emitters', 'in', 'plastic', 'and', 'biological', 'tissues', 'as', 'well', 'as', 'for', 'computed', 'tomography', 'and', 'magnetic', 'resonance', 'imaging', 'scanning', 'information'] Document BIO Tags: ['O', 'O', 'B', 'I', 'I', 'O', 'O', 'O', 'O', 'B', 'I', 'O', 'O', 'O', 'O', 'O', 'O', 'B', 'O', 'B', 'I', 'I', 'I', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'B', 'I', 'O', 'B', 'I', 'I', 'O', 'O', 'O', 'O', 'B', 'I', 'I', 'O', 'B', 'O', 'O', 'B', 'O', 'O', 'O', 'O', 'O', 'O', 'B', 'O', 'O', 'O', 'O', 'O', 'O', 'B', 'I', 'I', 'O', 'O', 'O', 'O', 'O', 'B', 'O', 'O', 'O', 'O', 'O', 'O', 'B', 'I', 'I', 'I', 'I', 'I', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'B', 'O', 'O', 'B', 'O', 'B', 'I', 'O', 'O', 'B', 'I', 'I', 'I', 'O', 'O', 'B', 'I', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'B', 'I', 'O', 'O', 'O', 'O', 'O', 'O', 'B', 'O', 'O', 'O', 'B', 'O', 'B', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'B', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'B', 'I', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'B', 'I', 'O', 'O', 'O', 'O', 'B', 'I', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'B', 'O', 'O', 'B', 'O', 'O', 'O', 'O', 'B', 'I', 'O', 'B', 'I', 'I', 'I', 'I'] Extractive/present Keyphrases: ['computational phantoms', 'monte carlo calculations', 'in vivo measurements', 'radionuclides', 'tissues', 'worker', 'precise geometric representation', 'mcnp input data file', 'scanning data', 'computed tomography', 'brightness', 'graphical user interface', 'computation phantoms', 'calibration', 'in vivo measurement systems', 'signal', 'detector', 'individual voxels', 'memory demand', 'calculational speed', 'plastic', 'magnetic resonance imaging scanning information', 'anatomy', 'low energy gamma ray emitting sources', 'actinides', 'software', 'automatic creation'] Abstractive/absent Keyphrases: ['th', 'u', 'pu', 'biological tissues'] ----------- ``` ### Keyphrase Extraction ```python from datasets import load_dataset # get the dataset only for keyphrase extraction dataset = load_dataset("midas/inspec", "extraction") print("Samples for Keyphrase Extraction") # sample from the train split print("Sample from training data split") train_sample = dataset["train"][0] print("Fields in the sample: ", [key for key in train_sample.keys()]) print("Tokenized Document: ", train_sample["document"]) print("Document BIO Tags: ", train_sample["doc_bio_tags"]) print("\n-----------\n") # sample from the validation split print("Sample from validation data split") validation_sample = dataset["validation"][0] print("Fields in the sample: ", [key for key in validation_sample.keys()]) print("Tokenized Document: ", validation_sample["document"]) print("Document BIO Tags: ", validation_sample["doc_bio_tags"]) print("\n-----------\n") # sample from the test split print("Sample from test data split") test_sample = dataset["test"][0] print("Fields in the sample: ", [key for key in test_sample.keys()]) print("Tokenized Document: ", test_sample["document"]) print("Document BIO Tags: ", test_sample["doc_bio_tags"]) print("\n-----------\n") ``` ### Keyphrase Generation ```python # get the dataset only for keyphrase generation dataset = load_dataset("midas/inspec", "generation") print("Samples for Keyphrase Generation") # sample from the train split print("Sample from training data split") train_sample = dataset["train"][0] print("Fields in the sample: ", [key for key in train_sample.keys()]) print("Tokenized Document: ", train_sample["document"]) print("Extractive/present Keyphrases: ", train_sample["extractive_keyphrases"]) print("Abstractive/absent Keyphrases: ", train_sample["abstractive_keyphrases"]) print("\n-----------\n") # sample from the validation split print("Sample from validation data split") validation_sample = dataset["validation"][0] print("Fields in the sample: ", [key for key in validation_sample.keys()]) print("Tokenized Document: ", validation_sample["document"]) print("Extractive/present Keyphrases: ", validation_sample["extractive_keyphrases"]) print("Abstractive/absent Keyphrases: ", validation_sample["abstractive_keyphrases"]) print("\n-----------\n") # sample from the test split print("Sample from test data split") test_sample = dataset["test"][0] print("Fields in the sample: ", [key for key in test_sample.keys()]) print("Tokenized Document: ", test_sample["document"]) print("Extractive/present Keyphrases: ", test_sample["extractive_keyphrases"]) print("Abstractive/absent Keyphrases: ", test_sample["abstractive_keyphrases"]) print("\n-----------\n") ``` ## Citation Information Please cite the works below if you use this dataset in your work. ``` @inproceedings{hulth2003improved, title={Improved automatic keyword extraction given more linguistic knowledge}, author={Hulth, Anette}, booktitle={Proceedings of the 2003 conference on Empirical methods in natural language processing}, pages={216--223}, year={2003} } ``` and ``` @InProceedings{10.1007/978-3-030-45442-5_41, author="Sahrawat, Dhruva and Mahata, Debanjan and Zhang, Haimin and Kulkarni, Mayank and Sharma, Agniv and Gosangi, Rakesh and Stent, Amanda and Kumar, Yaman and Shah, Rajiv Ratn and Zimmermann, Roger", editor="Jose, Joemon M. and Yilmaz, Emine and Magalh{\~a}es, Jo{\~a}o and Castells, Pablo and Ferro, Nicola and Silva, M{\'a}rio J. and Martins, Fl{\'a}vio", title="Keyphrase Extraction as Sequence Labeling Using Contextualized Embeddings", booktitle="Advances in Information Retrieval", year="2020", publisher="Springer International Publishing", address="Cham", pages="328--335", abstract="In this paper, we formulate keyphrase extraction from scholarly articles as a sequence labeling task solved using a BiLSTM-CRF, where the words in the input text are represented using deep contextualized embeddings. We evaluate the proposed architecture using both contextualized and fixed word embedding models on three different benchmark datasets, and compare with existing popular unsupervised and supervised techniques. Our results quantify the benefits of: (a) using contextualized embeddings over fixed word embeddings; (b) using a BiLSTM-CRF architecture with contextualized word embeddings over fine-tuning the contextualized embedding model directly; and (c) using domain-specific contextualized embeddings (SciBERT). Through error analysis, we also provide some insights into why particular models work better than the others. Lastly, we present a case study where we analyze different self-attention layers of the two best models (BERT and SciBERT) to better understand their predictions.", isbn="978-3-030-45442-5" } ``` and ``` @article{kulkarni2021learning, title={Learning Rich Representation of Keyphrases from Text}, author={Kulkarni, Mayank and Mahata, Debanjan and Arora, Ravneet and Bhowmik, Rajarshi}, journal={arXiv preprint arXiv:2112.08547}, year={2021} } ``` ## Contributions Thanks to [@debanjanbhucs](https://github.com/debanjanbhucs), [@dibyaaaaax](https://github.com/dibyaaaaax), [@UmaGunturi](https://github.com/UmaGunturi) and [@ad6398](https://github.com/ad6398) for adding this dataset
[ -0.13355350494384766, -0.34359562397003174, 0.23883117735385895, 0.28897979855537415, -0.28679323196411133, 0.2366381734609604, -0.18013940751552582, -0.1374606341123581, 0.05458887666463852, 0.16928055882453918, -0.3581055998802185, -0.8513256907463074, -0.6114618182182312, 0.6128312349319458, -0.5499846935272217, 0.9698013067245483, 0.047308146953582764, 0.14375223219394684, -0.1408919245004654, -0.10459722578525543, -0.16689364612102509, -0.5012025237083435, -0.30348944664001465, -0.15336419641971588, -0.07173079997301102, 0.6143961548805237, 0.3853798508644104, 0.2127903252840042, 0.8090559244155884, 0.14478479325771332, -0.3557322025299072, 0.061462752521038055, -0.01584460772573948, 0.1510479748249054, -0.12575405836105347, -0.2942699193954468, -0.14912131428718567, -0.013224433176219463, 0.6191582083702087, 0.443013459444046, 0.05901582911610603, 0.04831709340214729, 0.36607274413108826, 0.7300510406494141, -0.460761159658432, 0.05420006066560745, -0.8029683232307434, 0.03399264067411423, -0.47464171051979065, -0.2434324026107788, -0.1631925106048584, -0.5390565991401672, 0.19275102019309998, -0.27262985706329346, 0.2640596628189087, -0.09696897119283676, 0.9808366894721985, -0.15761318802833557, -0.2803080081939697, -0.5375505089759827, -0.08025972545146942, 0.6130409240722656, -1.1815681457519531, 0.1147909164428711, 0.38892480731010437, -0.20348864793777466, -0.45728933811187744, -0.7823512554168701, -0.6467176675796509, -0.04614414647221565, -0.22698675096035004, 0.19442437589168549, 0.09516336768865585, 0.21102634072303772, 0.3155317008495331, 0.6827664971351624, -0.8836817145347595, 0.03676260635256767, -0.6621417999267578, -0.17030614614486694, 0.8437805771827698, 0.15284128487110138, 0.2607190012931824, -0.39932385087013245, -0.14889539778232574, -0.397687703371048, -0.8128254413604736, 0.29323095083236694, 0.23355023562908173, 0.30305153131484985, -0.11372934281826019, 0.6097196340560913, -0.3760518431663513, 0.36232444643974304, -0.15446773171424866, -0.34027940034866333, 0.7094231247901917, -0.8943634033203125, -0.17242133617401123, 0.1386103481054306, 1.128872036933899, 0.3728204369544983, 0.13935710489749908, -0.3558739423751831, 0.009955677203834057, -0.03909178078174591, -0.04527394846081734, -1.052006483078003, -0.10820326954126358, 0.42508992552757263, -0.6487734913825989, -0.5289612412452698, 0.208701029419899, -1.206708550453186, 0.030606284737586975, 0.24356889724731445, 0.4466562569141388, -0.7317650318145752, 0.05784574896097183, -0.024247970432043076, -0.6508098840713501, 0.29941830039024353, -0.2819211184978485, -0.7980190515518188, 0.5278190970420837, 0.526019275188446, 1.1675684452056885, -0.4748530685901642, -0.0927879810333252, 0.2722202241420746, -0.25186505913734436, -0.24297817051410675, 0.4862041473388672, -0.5902549624443054, -0.6556239128112793, -0.0022622798569500446, 0.25513210892677307, -0.4033476412296295, -0.48517709970474243, 1.014583945274353, -0.2181105613708496, 0.49539411067962646, -0.21787148714065552, -1.0461336374282837, -0.2042223960161209, 0.10593893378973007, -0.3765329420566559, 1.3915560245513916, 0.03372342884540558, -0.787539541721344, 0.4456396698951721, -0.8790063261985779, -0.4872908890247345, -0.008678325451910496, -0.22988037765026093, -0.4307417571544647, 0.004887493792921305, 0.22240959107875824, 0.40309229493141174, -0.46445202827453613, 0.0009807009482756257, -0.042192887514829636, -0.36389824748039246, 0.432668536901474, -0.16089093685150146, 1.0107507705688477, 0.38131052255630493, -0.6360883116722107, -0.35466012358665466, -1.0125137567520142, 0.33447012305259705, -0.03849427402019501, -0.35535767674446106, -0.4616129994392395, 0.053296081721782684, 0.11390241980552673, 0.535234272480011, 0.13601776957511902, -0.8843930959701538, 0.21609507501125336, -0.8511157035827637, 0.6933560371398926, 0.5579653978347778, 0.5393353700637817, 0.27540063858032227, -0.2921651005744934, 0.5354216694831848, -0.06656356900930405, 0.015559673309326172, -0.10362690687179565, -0.5737529993057251, -0.2099018096923828, -0.4467415511608124, 0.5426895618438721, 0.5294566750526428, -0.11599809676408768, 0.7341179251670837, -0.4662250876426697, -0.6813293099403381, -0.5427093505859375, -0.028666537255048752, 0.5869948267936707, 0.5881963968276978, 0.31278955936431885, -0.14388298988342285, -0.35680726170539856, -1.0533326864242554, -0.3679216802120209, 0.08982288837432861, 0.03678600490093231, 0.11163568496704102, 1.1198221445083618, 0.23263297975063324, 0.8874180316925049, -0.5125710964202881, -0.22924396395683289, -0.129959374666214, 0.09211918711662292, 0.5970747470855713, 0.6229302883148193, 0.4619167745113373, -0.8970794677734375, -0.822530210018158, -0.18042027950286865, -0.6976813673973083, -0.12610292434692383, -0.01981499418616295, -0.00019778544083237648, -0.011026445776224136, 0.6827395558357239, -0.5965027213096619, 0.40445709228515625, 0.16023868322372437, -0.26858580112457275, 0.42532941699028015, -0.16121648252010345, 0.24872496724128723, -1.319993257522583, 0.4483012557029724, -0.13699766993522644, 0.34171581268310547, -0.45882660150527954, 0.08647351711988449, 0.28735408186912537, -0.11802233755588531, -0.1842070072889328, 0.6378039121627808, -0.5509582161903381, 0.3441375195980072, -0.026037413626909256, 0.08319571614265442, -0.06970125436782837, 0.6369978189468384, -0.07864050567150116, 1.0952733755111694, 0.5096261501312256, -0.5020103454589844, -0.25054019689559937, 0.49671071767807007, -0.6631825566291809, 0.2512527406215668, -0.8578304052352905, -0.11664538085460663, 0.12893764674663544, 0.08666305243968964, -1.1760046482086182, -0.16057375073432922, 0.13584648072719574, -0.6042628884315491, 0.07472901046276093, 0.010996284894645214, -0.7776839733123779, -0.28998759388923645, -0.6755350232124329, 0.1195075660943985, 0.5565897226333618, -0.12154281139373779, 0.023956522345542908, 0.32411623001098633, -0.19947974383831024, -0.48612937331199646, -0.5932243466377258, -0.04126112163066864, -0.17345944046974182, -0.5166934132575989, 0.6606349945068359, -0.2921648919582367, -0.16438990831375122, 0.10554071515798569, -0.2261180728673935, -0.1236167773604393, 0.04154594987630844, 0.3829754590988159, 0.04125220328569412, 0.15813623368740082, 0.2774353325366974, 0.2575622498989105, 0.21267536282539368, 0.0794256404042244, 0.0167364701628685, 0.45092499256134033, 0.1583145260810852, -0.057763125747442245, -0.3090672194957733, 0.38756880164146423, 0.7896441221237183, -0.33891212940216064, 0.6619491577148438, -0.07830881327390671, -0.35124969482421875, 0.20898877084255219, -0.1788448989391327, -0.26034674048423767, -0.4046349823474884, 0.41552335023880005, -0.2975069284439087, -0.4514389634132385, 0.5663459897041321, 0.07481995970010757, 0.4157060384750366, 0.9280206561088562, 0.48413750529289246, -0.14413687586784363, 1.0589195489883423, 0.25872594118118286, -0.17999860644340515, 0.34960874915122986, -0.5655074119567871, 0.23407767713069916, -0.8594878315925598, -0.42856499552726746, -0.8837988972663879, -0.4616462290287018, -0.8629645705223083, 0.10179296880960464, 0.6065410375595093, -0.1310654729604721, -0.11519131064414978, 0.34230345487594604, -0.7563343644142151, 0.263210654258728, 0.6256508827209473, 0.21826224029064178, 0.140496164560318, 0.09533374756574631, -0.4854934513568878, -0.2637462317943573, -0.5935044288635254, -0.39745423197746277, 1.6917622089385986, 0.09385830909013748, 0.4401693344116211, -0.17780561745166779, 0.7718270421028137, 0.28536680340766907, 0.03918832913041115, -0.4485107958316803, 0.566540539264679, -0.0976681336760521, -1.039975643157959, -0.15985457599163055, -0.13637344539165497, -0.893515944480896, 0.38957229256629944, -0.3009682595729828, -0.7755534052848816, 0.40179112553596497, -0.24445857107639313, -0.365748792886734, 0.12811467051506042, -0.47231438755989075, 0.8986276388168335, -0.1779000163078308, -0.10834967344999313, -0.20511718094348907, -0.9772367477416992, 0.19786939024925232, -0.19488589465618134, 0.2655660808086395, -0.01497205812484026, -0.07304804027080536, 1.2189886569976807, -0.9004383087158203, 0.43636205792427063, 0.0749828889966011, 0.4411691427230835, 0.2798497974872589, -0.42563334107398987, 0.7327885031700134, -0.2963272035121918, -0.2949158549308777, -0.1022372841835022, 0.17060482501983643, -0.21559299528598785, -0.33451685309410095, 0.4840974807739258, -0.5247355699539185, -0.046929895877838135, -0.8057185411453247, -0.40355631709098816, -0.24730493128299713, 0.4020184278488159, 1.0032892227172852, 0.4613092839717865, -0.24752815067768097, 0.6759940385818481, 0.9546144604682922, -0.1012934222817421, 0.5960789322853088, 0.3485443592071533, 0.2832651138305664, -0.5472622513771057, 0.4818935692310333, 0.3764970302581787, 0.169711634516716, 0.5416355133056641, 0.23630574345588684, -0.2998224198818207, -0.8506014347076416, 0.1545604169368744, 0.20665092766284943, -0.4537084698677063, -0.36106911301612854, -0.907829761505127, -0.4831016957759857, -0.7307450175285339, -0.04597601667046547, 0.07143611460924149, -0.5953580141067505, -0.08942394703626633, -0.3775376081466675, 0.6690961122512817, 0.30509936809539795, 0.005741992965340614, 0.509183406829834, -0.7156556844711304, 0.06415977329015732, -0.04510217532515526, -0.025642763823270798, -0.20946115255355835, -0.8406323790550232, -0.3184013068675995, -0.05960272252559662, -0.3848617970943451, -1.298613429069519, 0.5279003977775574, 0.5385081768035889, 0.5848951935768127, 0.3442123532295227, 0.13681042194366455, 0.5699929594993591, -0.23962317407131195, 1.0466281175613403, -0.12231293320655823, -0.5428640842437744, 0.6762418150901794, 0.04090796038508415, 0.24444417655467987, 1.1903841495513916, 0.6343741416931152, -0.5790517330169678, -0.6579282283782959, -1.066868782043457, -1.3331295251846313, 0.5742871165275574, 0.6560739278793335, -0.06029752269387245, -0.06464723497629166, 0.33643150329589844, 0.025665001943707466, 0.4249512255191803, -0.5732777118682861, -0.37999510765075684, 0.09269644320011139, -0.5012011528015137, 0.17185460031032562, -0.32743698358535767, -0.08366487175226212, -0.40320733189582825, 1.0427640676498413, 0.21332985162734985, 0.03928539156913757, 0.4611852467060089, -0.1860840916633606, 0.35848569869995117, 0.4129052758216858, 0.5195875763893127, 0.5947707891464233, -0.5260246396064758, -0.09471427649259567, 0.08525081723928452, -1.0420069694519043, -0.009365499019622803, 0.16228921711444855, -0.4370068609714508, 0.2044920027256012, 0.41458994150161743, 0.2756093144416809, 0.3445296883583069, -0.9444966912269592, 0.5917583107948303, -0.023388532921671867, -0.41795817017555237, -0.3725668489933014, -0.10200232267379761, -0.2793562412261963, 0.0019249875331297517, 0.583099901676178, -0.06335094571113586, 0.36220425367355347, -0.4184401035308838, 0.26470571756362915, 0.5035993456840515, -0.14151351153850555, -0.28320521116256714, 0.5398603081703186, -0.011423141695559025, -0.10615045577287674, 0.6204636693000793, -0.03276918828487396, -0.5062201619148254, 0.5741166472434998, 0.38713496923446655, 1.124436378479004, 0.007787459995597601, 0.028928186744451523, 0.8110767602920532, 0.4579228162765503, -0.06024349108338356, 0.6038505434989929, -0.06625744700431824, -0.3701039254665375, 0.17515195906162262, -0.6574401259422302, -0.1663943976163864, 0.4296559691429138, -0.3643721640110016, 0.08276845514774323, -0.20225949585437775, -0.21534469723701477, 0.13985857367515564, 0.4224630892276764, -0.496189683675766, 0.23016688227653503, -0.47707095742225647, 1.2773386240005493, -1.0003471374511719, 0.6824114322662354, 0.4969654083251953, -0.7822949886322021, -0.748664140701294, -0.05624279007315636, -0.11836515367031097, -0.5127821564674377, 0.5735742449760437, -0.06417620182037354, 0.39174777269363403, -0.23849758505821228, -0.6174613833427429, -0.9436691999435425, 1.1683108806610107, -0.10555976629257202, -0.39951658248901367, -0.24015836417675018, 0.2442120462656021, 0.6459648609161377, -0.18059763312339783, 0.28417015075683594, 0.48617711663246155, 0.5359076261520386, -0.18066999316215515, -0.832075297832489, 0.13480962812900543, -0.6344403028488159, -0.055328305810689926, 0.061329279094934464, -0.5222544074058533, 0.8957648873329163, 0.34713685512542725, -0.16995474696159363, 0.016968904063105583, 0.4654169976711273, 0.3625800907611847, 0.23245370388031006, 0.181575745344162, 0.6896932721138, 0.7038604021072388, 0.07406871020793915, 0.8393301963806152, -0.6280960440635681, 0.20500725507736206, 0.9690208435058594, 0.0788581371307373, 0.7922309041023254, 0.562114417552948, -0.280320942401886, 0.36104345321655273, 0.8388547897338867, -0.011870182119309902, 0.8908475041389465, -0.04412037879228592, -0.15330785512924194, 0.24629002809524536, 0.27038443088531494, -0.5156672596931458, 0.3625868558883667, 0.38990139961242676, -0.8692983388900757, -0.29062947630882263, -0.05609601363539696, 0.502443790435791, -0.07777424156665802, -0.13538695871829987, 0.7348490953445435, 0.045123789459466934, -0.6925640106201172, 0.459036648273468, -0.1489909589290619, 0.682415246963501, -0.9816278219223022, 0.011530767194926739, -0.37612247467041016, 0.20564259588718414, -0.4558180868625641, -0.9062706232070923, 0.12551259994506836, 0.1773078739643097, -0.173008531332016, -0.16969479620456696, 0.5709630250930786, -0.4509707987308502, -0.5515400171279907, -0.09579411894083023, 0.27307969331741333, 0.35806408524513245, -0.1910865753889084, -0.7080942988395691, -0.3962492048740387, 0.08004403114318848, -0.3082389235496521, 0.4048255980014801, 0.508849024772644, -0.05323683097958565, 0.34055206179618835, 0.4401134252548218, 0.2018056958913803, 0.2689170837402344, -0.4434138536453247, 0.7537800669670105, -0.6853512525558472, -0.5263713598251343, -0.9865458607673645, 0.5011079907417297, -0.6047472953796387, -0.7924511432647705, 1.109466791152954, 1.1224534511566162, 0.6678550839424133, -0.013240360654890537, 1.021077036857605, -0.34361153841018677, 0.741266667842865, -0.4508989453315735, 0.7617416381835938, -0.7250925898551941, -0.1944662183523178, -0.5541635751724243, -0.6165792942047119, -0.10436327755451202, 0.45405450463294983, -0.07820043712854385, -0.27983418107032776, 0.8371976613998413, 0.9930477142333984, 0.11999398469924927, -0.053211111575365067, -0.2347448319196701, 0.20499688386917114, 0.2884216606616974, 0.3997524678707123, 0.16154415905475616, -0.9202781915664673, 0.5837942957878113, -0.4900378882884979, -0.18550656735897064, -0.34035781025886536, -0.6820363402366638, -0.5738933682441711, -1.0560855865478516, -0.3402167856693268, -0.5274655222892761, 0.060844771564006805, 1.016377568244934, 0.20466502010822296, -0.9548512101173401, -0.4065619111061096, -0.19856761395931244, 0.21947984397411346, -0.4777248501777649, -0.27156344056129456, 0.7081310749053955, -0.48877495527267456, -0.5806124806404114, 0.3939535319805145, 0.08429825305938721, -0.09571745246648788, 0.2048194706439972, 0.025487786158919334, -0.5713307857513428, 0.2517094910144806, 0.4768929183483124, 0.5160841345787048, -0.2538534998893738, 0.08627431839704514, 0.3024041950702667, -0.3966972827911377, 0.27725493907928467, 0.5706973671913147, -0.428518146276474, 0.3676857054233551, 0.8968574404716492, 0.2693968117237091, 0.4778662919998169, -0.22247864305973053, 0.3022388517856598, -0.6466493606567383, 0.05409808084368706, 0.31010839343070984, 0.33818843960762024, -0.06885917484760284, -0.21775022149085999, 0.8746157884597778, 0.3958156108856201, -0.6260803937911987, -1.097343921661377, -0.427153617143631, -0.8616759777069092, -0.2821614444255829, 1.0678919553756714, 0.07821938395500183, -0.27686893939971924, 0.021602105349302292, -0.10444898903369904, 0.11539094150066376, -0.45258456468582153, 0.7493962049484253, 0.8572685122489929, -0.15176083147525787, 0.24703086912631989, -0.36006441712379456, 0.8940391540527344, 0.21911753714084625, -0.707631528377533, -0.06698384881019592, 0.16991016268730164, 0.4784944951534271, 0.09783575683832169, 0.8269732594490051, -0.59677654504776, 0.02119937352836132, -0.15563319623470306, 0.16995084285736084, 0.23025627434253693, 0.10862654447555542, -0.35486069321632385, 0.34383246302604675, -0.14717473089694977, -0.4966542720794678 ]
null
null
null
null
null
null
null
null
null
null
null
null
null
jeanlee/kmhas_korean_hate_speech
jeanlee
2022-11-28T16:26:56Z
466
11
korean-multi-label-hate-speech-dataset
[ "task_categories:text-classification", "task_ids:multi-label-classification", "task_ids:hate-speech-detection", "annotations_creators:crowdsourced", "language_creators:found", "multilinguality:monolingual", "size_categories:100K<n<1M", "source_datasets:original", "language:ko", "license:cc-by-sa-4.0", "K-MHaS", "Korean NLP", "Hate Speech Detection", "Dataset", "Coling2022", "arxiv:2208.10684", "region:us" ]
2022-11-28T16:26:56Z
2022-11-21T05:03:58.000Z
2022-11-21T05:03:58
--- annotations_creators: - crowdsourced language: - ko language_creators: - found license: - cc-by-sa-4.0 multilinguality: - monolingual pretty_name: 'K-MHaS' size_categories: - 100K<n<1M source_datasets: - original tags: - K-MHaS - Korean NLP - Hate Speech Detection - Dataset - Coling2022 task_categories: - text-classification task_ids: - multi-label-classification - hate-speech-detection paperswithcode_id: korean-multi-label-hate-speech-dataset dataset_info: features: - name: text dtype: string - name: label sequence: class_label: names: 0: origin 1: physical 2: politics 3: profanity 4: age 5: gender 6: race 7: religion 8: not_hate_speech splits: - name: train num_bytes: 6845463 num_examples: 78977 - name: validation num_bytes: 748899 num_examples: 8776 - name: test num_bytes: 1902352 num_examples: 21939 download_size: 9496714 dataset_size: 109692 --- # Dataset Card for K-MHaS ## Table of Contents - [Dataset Description](#dataset-description) - [Dataset Summary](#dataset-summary) - [Supported Tasks and Leaderboards](#supported-tasks-and-leaderboards) - [Languages](#languages) - [Dataset Structure](#dataset-structure) - [Data Instances](#data-instances) - [Data Fields](#data-fields) - [Data Splits](#data-splits) - [Dataset Creation](#dataset-creation) - [Curation Rationale](#curation-rationale) - [Source Data](#source-data) - [Annotations](#annotations) - [Personal and Sensitive Information](#personal-and-sensitive-information) - [Considerations for Using the Data](#considerations-for-using-the-data) - [Social Impact of Dataset](#social-impact-of-dataset) - [Discussion of Biases](#discussion-of-biases) - [Other Known Limitations](#other-known-limitations) - [Additional Information](#additional-information) - [Dataset Curators](#dataset-curators) - [Licensing Information](#licensing-information) - [Citation Information](#citation-information) - [Contributions](#contributions) ## Sample Code <a href="https://colab.research.google.com/drive/171KhS1_LVBtpAFd_kaT8lcrZmhcz5ehY?usp=sharing"><img src="https://colab.research.google.com/assets/colab-badge.svg" alt="base"/></a> ## Dataset Description - **Homepage:** [K-MHaS](https://github.com/adlnlp/K-MHaS) - **Repository:** [Korean Multi-label Hate Speech Dataset](https://github.com/adlnlp/K-MHaS) - **Paper:** [K-MHaS: A Multi-label Hate Speech Detection Dataset in Korean Online News Comment](https://arxiv.org/abs/2208.10684) - **Point of Contact:** [Caren Han](caren.han@sydney.edu.au) - **Sample code:** [Colab](https://colab.research.google.com/drive/171KhS1_LVBtpAFd_kaT8lcrZmhcz5ehY?usp=sharing) ### Dataset Summary The Korean Multi-label Hate Speech Dataset, **K-MHaS**, consists of 109,692 utterances from Korean online news comments, labelled with 8 fine-grained hate speech classes (labels: `Politics`, `Origin`, `Physical`, `Age`, `Gender`, `Religion`, `Race`, `Profanity`) or `Not Hate Speech` class. Each utterance provides from a single to four labels that can handles Korean language patterns effectively. For more details, please refer to our paper about [**K-MHaS**](https://aclanthology.org/2022.coling-1.311), published at COLING 2022. ### Supported Tasks and Leaderboards Hate Speech Detection * `binary classification` (labels: `Hate Speech`, `Not Hate Speech`) * `multi-label classification`: (labels: `Politics`, `Origin`, `Physical`, `Age`, `Gender`, `Religion`, `Race`, `Profanity`, `Not Hate Speech`) For the multi-label classification, a `Hate Speech` class from the binary classification, is broken down into eight classes, associated with the hate speech category. In order to reflect the social and historical context, we select the eight hate speech classes. For example, the `Politics` class is chosen, due to a significant influence on the style of Korean hate speech. ### Languages Korean ## Dataset Structure ### Data Instances The dataset is provided with train/validation/test set in the txt format. Each instance is a news comment with a corresponding one or more hate speech classes (labels: `Politics`, `Origin`, `Physical`, `Age`, `Gender`, `Religion`, `Race`, `Profanity`) or `Not Hate Speech` class. The label numbers matching in both English and Korean is in the data fields section. ```python {'text':'수꼴틀딱시키들이 다 디져야 나라가 똑바로 될것같다..답이 없는 종자들ㅠ' 'label': [2, 3, 4] } ``` ### Data Fields * `text`: utterance from Korean online news comment. * `label`: the label numbers matching with 8 fine-grained hate speech classes and `not hate speech` class are follows. * `0`: `Origin`(`출신차별`) hate speech based on place of origin or identity; * `1`: `Physical`(`외모차별`) hate speech based on physical appearance (e.g. body, face) or disability; * `2`: `Politics`(`정치성향차별`) hate speech based on political stance; * `3`: `Profanity`(`혐오욕설`) hate speech in the form of swearing, cursing, cussing, obscene words, or expletives; or an unspecified hate speech category; * `4`: `Age`(`연령차별`) hate speech based on age; * `5`: `Gender`(`성차별`) hate speech based on gender or sexual orientation (e.g. woman, homosexual); * `6`: `Race`(`인종차별`) hate speech based on ethnicity; * `7`: `Religion`(`종교차별`) hate speech based on religion; * `8`: `Not Hate Speech`(`해당사항없음`). ### Data Splits In our repository, we provide splitted datasets that have 78,977(train) / 8,776 (validation) / 21,939 (test) samples, preserving the class proportion. ## Dataset Creation ### Curation Rationale We propose K-MHaS, a large size Korean multi-label hate speech detection dataset that represents Korean language patterns effectively. Most datasets in hate speech research are annotated using a single label classification of particular aspects, even though the subjectivity of hate speech cannot be explained with a mutually exclusive annotation scheme. We propose a multi-label hate speech annotation scheme that allows overlapping labels associated with the subjectivity and the intersectionality of hate speech. ### Source Data #### Initial Data Collection and Normalization Our dataset is based on the Korean online news comments available on Kaggle and Github. The unlabeled raw data was collected between January 2018 and June 2020. Please see the details in our paper [K-MHaS](https://aclanthology.org/2022.coling-1.311) published at COLING2020. #### Who are the source language producers? The language producers are users who left the comments on the Korean online news platform between 2018 and 2020. ### Annotations #### Annotation process We begin with the common categories of hate speech found in literature and match the keywords for each category. After the preliminary round, we investigate the results to merge or remove labels in order to provide the most representative subtype labels of hate speech contextual to the cultural background. Our annotation instructions explain a twolayered annotation to (a) distinguish hate and not hate speech, and (b) the categories of hate speech. Annotators are requested to consider given keywords or alternatives of each category within social, cultural, and historical circumstances. For more details, please refer to the paper [K-MHaS](https://aclanthology.org/2022.coling-1.311). #### Who are the annotators? Five native speakers were recruited for manual annotation in both the preliminary and main rounds. ### Personal and Sensitive Information This datasets contains examples of hateful language, however, has no personal information. ## Considerations for Using the Data ### Social Impact of Dataset We propose K-MHaS, a new large-sized dataset for Korean hate speech detection with a multi-label annotation scheme. We provided extensive baseline experiment results, presenting the usability of a dataset to detect Korean language patterns in hate speech. ### Discussion of Biases All annotators were recruited from a crowdsourcing platform. They were informed about hate speech before handling the data. Our instructions allowed them to feel free to leave if they were uncomfortable with the content. With respect to the potential risks, we note that the subjectivity of human annotation would impact on the quality of the dataset. ### Other Known Limitations [More Information Needed] ## Additional Information ### Dataset Curators This dataset is curated by Taejun Lim, Heejun Lee and Bogeun Jo. ### Licensing Information Creative Commons Attribution-ShareAlike 4.0 International (cc-by-sa-4.0). ### Citation Information ``` @inproceedings{lee-etal-2022-k, title = "K-{MH}a{S}: A Multi-label Hate Speech Detection Dataset in {K}orean Online News Comment", author = "Lee, Jean and Lim, Taejun and Lee, Heejun and Jo, Bogeun and Kim, Yangsok and Yoon, Heegeun and Han, Soyeon Caren", booktitle = "Proceedings of the 29th International Conference on Computational Linguistics", month = oct, year = "2022", address = "Gyeongju, Republic of Korea", publisher = "International Committee on Computational Linguistics", url = "https://aclanthology.org/2022.coling-1.311", pages = "3530--3538", abstract = "Online hate speech detection has become an important issue due to the growth of online content, but resources in languages other than English are extremely limited. We introduce K-MHaS, a new multi-label dataset for hate speech detection that effectively handles Korean language patterns. The dataset consists of 109k utterances from news comments and provides a multi-label classification using 1 to 4 labels, and handles subjectivity and intersectionality. We evaluate strong baselines on K-MHaS. KR-BERT with a sub-character tokenizer outperforms others, recognizing decomposed characters in each hate speech class.", } ``` ### Contributions The contributors of the work are: - [Jean Lee](https://jeanlee-ai.github.io/) (The University of Sydney) - [Taejun Lim](https://github.com/taezun) (The University of Sydney) - [Heejun Lee](https://bigwaveai.com/) (BigWave AI) - [Bogeun Jo](https://bigwaveai.com/) (BigWave AI) - Yangsok Kim (Keimyung University) - Heegeun Yoon (National Information Society Agency) - [Soyeon Caren Han](https://drcarenhan.github.io/) (The University of Western Australia and The University of Sydney)
[ -0.5708795189857483, -0.7071517109870911, 0.06561780720949173, 0.11431563645601273, -0.24757596850395203, 0.31798484921455383, -0.3701232969760895, -0.45052221417427063, 0.5155812501907349, 0.353811115026474, -0.4674461781978607, -0.8167798519134521, -0.722423255443573, 0.02943979576230049, -0.008037126623094082, 1.0950560569763184, 0.3420402407646179, 0.07640335708856583, 0.23257657885551453, -0.30687689781188965, -0.059006575495004654, -0.731040358543396, -0.43055564165115356, -0.24063952267169952, 0.8266565203666687, 0.4807676076889038, 0.6403262615203857, 0.7130703926086426, 0.051108185201883316, 0.22703388333320618, -0.13737405836582184, 0.049256641417741776, -0.4183655381202698, 0.2166682779788971, 0.25329703092575073, -0.09621093422174454, -0.48582980036735535, 0.2980773150920868, 0.48168742656707764, 0.3075129985809326, 0.14098651707172394, 0.27774786949157715, -0.03508946672081947, 0.3723289370536804, -0.5706702470779419, 0.11358992755413055, -0.5146673321723938, -0.11786531656980515, -0.554084062576294, 0.17991769313812256, -0.2594984769821167, -0.4489946663379669, -0.14801430702209473, -0.4855722188949585, -0.10204599052667618, 0.03129139915108681, 0.742141842842102, 0.0322553776204586, -0.3701952397823334, -0.5547772645950317, -0.25112009048461914, 0.7353811264038086, -0.804958164691925, 0.5409141182899475, 0.5339255928993225, 0.1313432902097702, -0.03197706118226051, -0.28243300318717957, -0.8729647994041443, -0.2701675593852997, -0.18442665040493011, 0.31996190547943115, -0.12091024965047836, -0.04562510550022125, 0.3185681104660034, 0.21826209127902985, -0.4318443536758423, 0.3217240273952484, -0.5014681220054626, -0.49992430210113525, 0.921593189239502, 0.08302906900644302, 0.347518652677536, -0.7318390607833862, -0.2947973608970642, -0.23944902420043945, -0.25113776326179504, -0.10634210705757141, 0.8135366439819336, 0.6600552201271057, -0.4761776030063629, 0.5275426506996155, -0.3057677447795868, 0.3951570987701416, -0.1078650951385498, -0.7639166116714478, 0.9834469556808472, -0.35351526737213135, -0.10267408937215805, 0.2364214062690735, 0.8703889846801758, 0.6362922787666321, 0.3876020312309265, -0.1045914813876152, 0.3000887334346771, 0.4376504123210907, 0.005463358014822006, -0.8878639936447144, -0.40613409876823425, 0.30395662784576416, -0.5543107390403748, -0.5549350380897522, -0.44983187317848206, -1.4224222898483276, -0.7335280776023865, -0.4187680780887604, 0.13144364953041077, -0.13466081023216248, -0.5591472387313843, -0.46595320105552673, -0.3328934609889984, 0.021962223574519157, -0.13405553996562958, -0.3915185034275055, -0.09972831606864929, 0.18384185433387756, 0.6498817205429077, -0.25050798058509827, -0.20645153522491455, -0.13893043994903564, 0.004321107640862465, -0.06921111047267914, 0.40500301122665405, -0.6156541109085083, -0.20266439020633698, -0.03889014199376106, 0.06630627065896988, -0.0017706792568787932, -0.49046432971954346, 1.0275871753692627, -0.44144541025161743, 0.139889657497406, -0.0345916822552681, -0.5417072176933289, -0.3762630224227905, 0.11905957013368607, -0.40168917179107666, 1.0321450233459473, 0.01637203060090542, -0.6102824211120605, 0.4936240613460541, -0.6569463610649109, -0.3528287410736084, 0.025709636509418488, -0.17009973526000977, -0.6900489926338196, -0.5133951902389526, 0.012643309310078621, 0.5055769085884094, -0.04083699733018875, 0.23684470355510712, -0.5566152334213257, 0.20234724879264832, 0.1299818903207779, -0.11898283660411835, 1.1052814722061157, 0.5178424715995789, -0.45856142044067383, 0.20579805970191956, -1.0736011266708374, 0.10856862366199493, 0.3278568685054779, -0.2708079516887665, -0.45818039774894714, -0.29313570261001587, 0.3659989535808563, 0.601405918598175, -0.08312437683343887, -0.8450753688812256, -0.1392430067062378, -0.1913192719221115, 0.0665610060095787, 0.9608588218688965, -0.14588573575019836, 0.17785975337028503, -0.35696035623550415, 0.4890511929988861, 0.14118166267871857, 0.06920232623815536, 0.08756361901760101, -0.6788704991340637, -0.43453162908554077, -0.49862220883369446, 0.09582029283046722, 0.6651148200035095, -0.5412155985832214, 0.3763042390346527, -0.11102493852376938, -0.9578404426574707, -0.6692838072776794, -0.1533539593219757, 0.625630259513855, 0.5061891674995422, 0.4410792589187622, 0.05677024647593498, -1.1554890871047974, -0.884233295917511, -0.254557341337204, -0.13479354977607727, 0.20896385610103607, 0.5797046422958374, 0.5792446732521057, -0.06392966955900192, 0.6019964814186096, -0.6112133264541626, -0.21099016070365906, -0.050528015941381454, 0.08655360341072083, 0.005190760362893343, 0.17042256891727448, 0.5374981164932251, -1.0192890167236328, -0.814892590045929, -0.24412210285663605, -0.5272629261016846, -0.5030514597892761, 0.24017533659934998, -0.09654148668050766, 0.30945664644241333, 0.48192310333251953, -0.03992651402950287, 0.5018309354782104, 0.6380794644355774, -0.5292237997055054, 0.8954337239265442, 0.6216199398040771, 0.46457141637802124, -1.0713236331939697, -0.1818854808807373, -0.046760525554418564, 0.22916579246520996, -1.0556086301803589, -0.2773576080799103, -0.2528766393661499, 0.042178090661764145, -0.4694945514202118, 0.47052517533302307, -0.030603600665926933, 0.34835004806518555, -0.31692469120025635, 0.3299556076526642, -0.4153755009174347, 0.7623981833457947, -0.09487245976924896, 0.5677761435508728, 0.4169747233390808, -0.9601843357086182, 0.39932486414909363, 0.25759702920913696, -0.33055445551872253, 0.7448084354400635, -0.25512662529945374, 0.17481845617294312, -0.2926492989063263, 0.06914904713630676, -1.1167168617248535, -0.3806663155555725, 0.9513349533081055, -0.6716783046722412, -0.07493375986814499, -0.2756578326225281, -0.48506543040275574, -0.41654130816459656, -0.5019254088401794, 0.26441383361816406, 0.23238664865493774, -0.29458269476890564, 0.39779332280158997, 0.9496192932128906, -0.19135437905788422, -0.615780234336853, -0.5567441582679749, -0.12807251513004303, -0.5781816244125366, -0.5289878845214844, 0.4187145531177521, -0.21388359367847443, -0.14566707611083984, -0.0544096976518631, 0.2132573276758194, 0.10565397888422012, -0.10903963446617126, 0.5575228929519653, 0.11614648997783661, 0.00905383750796318, 0.03336351737380028, -0.23130713403224945, 0.10142210870981216, -0.011600489728152752, 0.07731261849403381, 0.8297540545463562, 0.2396857738494873, 0.142225980758667, -0.30409401655197144, 0.2339654266834259, 0.654292643070221, 0.1570965051651001, 0.5865176320075989, 0.9237623810768127, -0.40021178126335144, 0.20992594957351685, -0.5256052613258362, 0.06835168600082397, -0.34835323691368103, 0.524243950843811, -0.3743574917316437, -0.8814317584037781, 0.5679129958152771, 0.28768810629844666, -0.11653748154640198, 0.6243029832839966, 0.9009633660316467, 0.19039544463157654, 0.7939625978469849, 0.005309188272804022, -0.3819810450077057, 0.4978925287723541, 0.11145072430372238, 0.2912701964378357, -0.7005946636199951, -0.5315800905227661, -0.7518057823181152, -0.3596653938293457, -0.8143835067749023, -0.42882469296455383, 0.3650214374065399, -0.12862400710582733, -0.4300615191459656, 0.2757571041584015, -0.4643298089504242, 0.3054562509059906, 0.4548599421977997, -0.1978692263364792, -0.026412103325128555, 0.23461832106113434, -0.07626403868198395, -0.4427435100078583, -0.39180678129196167, -0.34036028385162354, 1.0691415071487427, 0.43186718225479126, 0.36188894510269165, 0.15811999142169952, 0.46425846219062805, 0.3162129521369934, 0.3165699243545532, -0.734906017780304, 0.5496965050697327, -0.30089038610458374, -0.7331781387329102, -0.450145423412323, -0.4635085165500641, -0.8841685652732849, 0.44192495942115784, -0.04349846765398979, -0.8461431860923767, 0.16271844506263733, 0.02745177038013935, -0.17452403903007507, 0.4872719645500183, -0.564983069896698, 0.7276572585105896, 0.036830928176641464, 0.0005182027234695852, -0.09605428576469421, -0.564228892326355, 0.36561712622642517, 0.029298929497599602, 0.5503338575363159, -0.4519103467464447, 0.10783175379037857, 1.4024499654769897, -0.15740977227687836, 0.9636309146881104, -0.43276160955429077, -0.19675160944461823, 0.29134154319763184, -0.37447938323020935, 0.350277841091156, -0.546969473361969, -0.08242804557085037, 0.3440360724925995, -0.4109063744544983, -0.012436571530997753, -0.3462246060371399, 0.5133640170097351, -0.5857642292976379, -0.05597362294793129, -0.3063623905181885, -0.4905039668083191, -0.06518445163965225, 0.2944396138191223, 0.3103998005390167, 0.15765370428562164, 0.13263829052448273, 0.11145183444023132, 0.31626084446907043, -0.3944603502750397, 0.05076716095209122, 0.4418095052242279, -0.433361679315567, -0.9374504089355469, 1.043056607246399, 0.625032901763916, 0.2405204027891159, -0.17907336354255676, 0.3580705225467682, -0.5511147975921631, -0.14900527894496918, -0.48699724674224854, 0.13565878570079803, -0.7352624535560608, -0.20161987841129303, -0.9324328899383545, -0.26346370577812195, -0.7718020081520081, 0.09760839492082596, -0.05843107029795647, -0.37644457817077637, 0.03496042639017105, -0.08199751377105713, 0.5242603421211243, 0.5298646688461304, -0.4091588258743286, 0.4019555449485779, -0.09231092780828476, 0.7336115837097168, 0.060638632625341415, 0.3376351594924927, 0.25415152311325073, -0.8737266659736633, -0.12507280707359314, 0.1780124455690384, -0.3683930039405823, -1.1502867937088013, 0.28101661801338196, -0.09378571808338165, 0.5189332365989685, 0.11344225704669952, 0.21386560797691345, 0.7120294570922852, -0.30731359124183655, 0.8829295039176941, 0.13501262664794922, -0.5275130867958069, 0.5631228685379028, -0.27923500537872314, 0.022672034800052643, 0.33124181628227234, 0.7719876170158386, -0.8983777761459351, -0.691200315952301, -0.8472709655761719, -0.8749223947525024, 0.9271357655525208, 0.25732940435409546, -0.036343030631542206, -0.07172883301973343, -0.16344952583312988, -0.11670397222042084, 0.18119840323925018, -0.961706817150116, -1.3497581481933594, -0.2806262969970703, -0.10749839246273041, 0.046435967087745667, -0.48983895778656006, -0.06800038367509842, -0.39416471123695374, 1.1203795671463013, 0.3221668601036072, 0.19919012486934662, -0.09053082764148712, 0.035690151154994965, 0.17015081644058228, 0.49896717071533203, 0.6929830312728882, 0.30118414759635925, -0.1393761932849884, 0.19079655408859253, 0.04424915090203285, -0.8727957010269165, 0.3041301965713501, 0.01453915424644947, -0.43313661217689514, 0.17625023424625397, -0.11969833821058273, 0.832638144493103, 0.007636057212948799, -0.36355268955230713, 0.29477477073669434, 0.3622196614742279, -0.4213595986366272, -0.2675338387489319, -0.16696593165397644, -0.09778761863708496, 0.062063973397016525, 0.18200410902500153, -0.1904187649488449, 0.14824196696281433, -0.30886971950531006, 0.47615766525268555, 0.13180261850357056, -0.2520451545715332, -0.02837090753018856, 0.5179949402809143, -0.09325007349252701, -0.2731908857822418, 0.2213153839111328, -0.6814899444580078, -0.9286709427833557, 0.5279809236526489, 0.6265970468521118, 0.7161170244216919, -0.516435980796814, 0.574484646320343, 0.8324715495109558, 0.32616156339645386, 0.5857702493667603, 0.3816432058811188, 0.22525213658809662, -0.8121581077575684, -0.27688565850257874, -0.736234188079834, -0.019734229892492294, 0.7627717852592468, -0.3781717121601105, 0.10121466219425201, -0.3447786867618561, -0.04753560572862625, 0.419352650642395, 0.06396998465061188, -0.28166595101356506, 0.2227085530757904, 0.5350747108459473, 0.5218497514724731, -0.9902152419090271, 0.4694012701511383, 0.4442388117313385, -0.4067988395690918, -0.7137728929519653, -0.2171134054660797, 0.4263535141944885, -0.8044765591621399, 0.5955536365509033, 0.1260044127702713, -0.15002889931201935, -0.24056798219680786, -0.617902398109436, -0.7901325821876526, 0.6767081022262573, 0.006422070320695639, -0.2748960852622986, 0.5878644585609436, 0.3205133378505707, 0.4790036380290985, -0.3175400495529175, -0.105994813144207, 0.6381453275680542, 0.6597503423690796, -0.014128345064818859, -0.7733581066131592, 0.21749870479106903, -0.2280287891626358, -0.4296230375766754, 0.11185326427221298, -0.777233898639679, 0.8278101682662964, 0.14647404849529266, -0.27307558059692383, -0.2884904742240906, 0.5437310934066772, 0.4602663516998291, 0.7600286602973938, 0.7296314835548401, 0.663920521736145, 1.0677822828292847, 0.12195438891649246, 0.6608694195747375, -0.0269252248108387, 0.09176642447710037, 1.2937347888946533, 0.16403378546237946, 0.460401326417923, 0.005590594373643398, -0.46909987926483154, 0.3598892092704773, 0.30398428440093994, -0.17376048862934113, 0.53077632188797, 0.5344485640525818, -0.2818359434604645, 0.05892302468419075, -0.6484606862068176, -0.4389547109603882, 0.6329834461212158, 0.42876872420310974, -0.39175742864608765, -0.04578946530818939, 0.21764692664146423, 0.6981770992279053, 0.07326401770114899, -0.5578592419624329, 0.5988848805427551, -0.1171761229634285, -0.36609384417533875, 0.6514928936958313, 0.23937807977199554, 1.068402886390686, -0.4571063220500946, 0.14197620749473572, 0.1807015836238861, -0.16113372147083282, -0.4684242606163025, -0.7977131009101868, 0.321282297372818, 0.13145135343074799, -0.43669208884239197, 0.02711079828441143, 0.7619304656982422, -0.7073622345924377, -0.2361883819103241, 0.2897701859474182, 0.08181410282850266, 0.5214652419090271, -0.16987816989421844, -0.7901475429534912, 0.3642987608909607, 0.2992021441459656, -0.052864767611026764, 0.33494070172309875, 0.1742260754108429, -0.0922665074467659, 0.39948171377182007, 0.6419159173965454, 0.20669947564601898, 0.48604443669319153, 0.43532806634902954, 0.7146686315536499, -0.5557308197021484, -0.43833887577056885, -0.8985626101493835, 0.36665022373199463, -0.3438732624053955, -0.50634765625, 1.0458694696426392, 0.7968195676803589, 1.146964192390442, -0.009204507805407047, 1.0562050342559814, -0.5193829536437988, 0.9389632344245911, -0.24925389885902405, 0.7297535538673401, -0.44610193371772766, -0.40390369296073914, -0.7513550519943237, -0.472598135471344, -0.40173348784446716, 0.5747461915016174, -0.4305626153945923, 0.0658213421702385, 0.29881229996681213, 1.0940923690795898, 0.1410311758518219, 0.18778182566165924, 0.3349340856075287, 0.5667740106582642, 0.30555251240730286, 0.1334780901670456, 0.5266173481941223, -0.6440487504005432, 0.7018868327140808, -0.6082407832145691, -0.14061781764030457, -0.03676174581050873, -0.6448881030082703, -0.6378617882728577, -0.8092424273490906, -0.5966305136680603, -0.5973706841468811, -0.16232749819755554, 0.8622939586639404, 0.6178253293037415, -0.9279114603996277, -0.2688237428665161, 0.6875151991844177, 0.3641168475151062, -0.10839372128248215, -0.29591646790504456, 0.514797568321228, -0.07126525789499283, -0.6974415183067322, 0.20959347486495972, 0.05244943127036095, 0.038669466972351074, 0.17416605353355408, -0.3390011787414551, -0.5537151098251343, -0.2274736911058426, 0.8932828903198242, 0.2697891592979431, -0.8904803395271301, -0.17279718816280365, -0.286670058965683, -0.006320089101791382, 0.025372177362442017, 0.4981958866119385, -0.4136706590652466, 0.27911120653152466, 0.2822319567203522, 0.5967429280281067, 0.1634189337491989, -0.03857342526316643, -0.29531386494636536, -0.8963951468467712, 0.15939974784851074, 0.2082703560590744, 0.007165646180510521, 0.14797168970108032, -0.18353424966335297, 0.4715285003185272, 0.5351876020431519, -0.5912155508995056, -1.028401255607605, 0.3092036545276642, -0.9329974055290222, -0.0643535852432251, 1.405452847480774, 0.20944756269454956, -0.07311808317899704, -0.6175006031990051, -0.3881813585758209, 0.5123842358589172, -0.6187283396720886, 0.49360647797584534, 1.0220818519592285, -0.14071124792099, 0.0016307218465954065, -0.6779732704162598, 0.8701918721199036, 0.09585464745759964, -0.67256098985672, 0.43904411792755127, 0.6057639122009277, 0.0897723138332367, 0.47892019152641296, 0.9103739261627197, -0.17666827142238617, 0.08112630248069763, 0.11679928004741669, 0.16650454699993134, 0.08979614824056625, -0.362735778093338, -0.10931473225355148, 0.30641719698905945, -0.47688937187194824, -0.42840585112571716 ]
null
null
null
null
null
null
null
null
null
null
null
null
null
covid_qa_ucsd
null
2023-06-01T14:59:47Z
465
1
null
[ "task_categories:question-answering", "task_ids:closed-domain-qa", "annotations_creators:found", "language_creators:expert-generated", "language_creators:found", "multilinguality:monolingual", "size_categories:1K<n<10K", "size_categories:n<1K", "source_datasets:original", "language:en", "language:zh", "license:unknown", "arxiv:2005.05442", "region:us" ]
2023-06-01T14:59:47Z
2022-03-02T23:29:22.000Z
2022-03-02T23:29:22
--- annotations_creators: - found language_creators: - expert-generated - found language: - en - zh license: - unknown multilinguality: - monolingual size_categories: - 1K<n<10K - n<1K source_datasets: - original task_categories: - question-answering task_ids: - closed-domain-qa pretty_name: CovidQaUcsd dataset_info: - config_name: en features: - name: dialogue_id dtype: int32 - name: dialogue_url dtype: string - name: dialogue_turns sequence: - name: speaker dtype: class_label: names: '0': Patient '1': Doctor - name: utterance dtype: string splits: - name: train num_bytes: 484944 num_examples: 572 download_size: 0 dataset_size: 484944 - config_name: zh features: - name: dialogue_id dtype: int32 - name: dialogue_url dtype: string - name: dialogue_turns sequence: - name: speaker dtype: class_label: names: '0': 病人 '1': 医生 - name: utterance dtype: string splits: - name: train num_bytes: 1352377 num_examples: 1088 download_size: 0 dataset_size: 1352377 config_names: - en - zh --- # Dataset Card for [Dataset Name] ## Table of Contents - [Dataset Description](#dataset-description) - [Dataset Summary](#dataset-summary) - [Supported Tasks and Leaderboards](#supported-tasks-and-leaderboards) - [Languages](#languages) - [Dataset Structure](#dataset-structure) - [Data Instances](#data-instances) - [Data Fields](#data-fields) - [Data Splits](#data-splits) - [Dataset Creation](#dataset-creation) - [Curation Rationale](#curation-rationale) - [Source Data](#source-data) - [Annotations](#annotations) - [Personal and Sensitive Information](#personal-and-sensitive-information) - [Considerations for Using the Data](#considerations-for-using-the-data) - [Social Impact of Dataset](#social-impact-of-dataset) - [Discussion of Biases](#discussion-of-biases) - [Other Known Limitations](#other-known-limitations) - [Additional Information](#additional-information) - [Dataset Curators](#dataset-curators) - [Licensing Information](#licensing-information) - [Citation Information](#citation-information) - [Contributions](#contributions) ## Dataset Description - **Homepage:** https://github.com/UCSD-AI4H/COVID-Dialogue - **Repository:** The data is also present in the same [GIT](https://github.com/UCSD-AI4H/COVID-Dialogue) repository - **Paper:** https://pengtaoxie.github.io/coviddiag.pdf - **Leaderboard:** - **Point of Contact:** ### Dataset Summary COVID-Dialogue-Dataset-English is an English medical dialogue dataset about COVID-19 and other types of pneumonia. Patients who are concerned that they may be infected by COVID-19 or other pneumonia consult doctors and doctors provide advice. There are 603 consultations. COVID-Dialogue-Dataset-Chinese is a Chinese medical dialogue dataset about COVID-19 and other types of pneumonia. Patients who are concerned that they may be infected by COVID-19 or other pneumonia consult doctors and doctors provide advice. There are 1393 consultations. The dataset is present as a single text file. COVID-Dialogue-Dataset-Chinese.txt for Chinese and COVID-Dialogue-Dataset-English.txt for English. ### Supported Tasks and Leaderboards Used for QA tasks. There is also a COVID-19 dialogue generation model available for the Chinese Data. The pre-print and more information is available in [this arxiv pre-print](https://arxiv.org/abs/2005.05442). ### Languages Monolingual. The datasets are in English (EN) and Chinese (ZH) ## Dataset Structure ### Data Instances An example of dialogue is: ``` { 'dialogue_id': 602, 'dialogue_url': 'https://www.healthtap.com/member/fg?page=/search/covid', 'dialogue_turns': [{'speaker': 'Patient', 'utterance': 'Can coronavirus symptoms be mild for some people versus severe? For example, could it just involve being very fatigued, low grade fever for a few days and not the extreme symptoms? Or is it always a full blown cold and struggle to breathe?Can coronavirus symptoms be mild for some people versus severe? For example, could it just involve being very fatigued, low grade fever for a few days and not the extreme symptoms? Or is it always a full blown cold and struggle to breathe?'}, {'speaker': 'Doctor', 'utterance': 'In brief: Symptoms vary. Some may have no symptoms at all. Some can be life threatening. Would you like to video or text chat with me?'}] } ``` The dataset is built from [icliniq.com](https://www.icliniq.com/), [healthcaremagic.com](https://www.healthcaremagic.com/), [healthtap.com](https://www.healthtap.com/) and all copyrights of the data belong to these websites. _(for English)_ The dataset is built from [Haodf.com](https://www.haodf.com/) and all copyrights of the data belong to [Haodf.com](https://www.haodf.com/). _(for Chinese)_ ### Data Fields Each consultation consists of the below: - ID - URL - Description of patient’s medical condition - Dialogue - Diagnosis and suggestions (Optional, mostly for Chinese) For generating the QA only the below fields have been considered: - ID : Consultatation Identifier (restarts for each file) - URL: The url link of the extracted conversation - Dialogue : The conversation between the doctor and the patient. These are arranged as below in the prepared dataset. Each item will be represented with these parameters. - "file_name": string - signifies the file from which the conversation was extracted - "dialogue_id": int32 - the dialogue id - "dialogue_url": string - url of the conversation - "dialogue_turns": datasets.Sequence - sequence of dialogues between patient and the doctor.Consists ClassLabel(names=["病人", "医生"]), and "utterance"(string) for each turn. (ClassLable(names=["Patient", "Doctor"]) for english) ### Data Splits There are no data splits on the original data ## 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 @article{ju2020CovidDialog, title={CovidDialog: Medical Dialogue Datasets about COVID-19}, author={Ju, Zeqian and Chakravorty, Subrato and He, Xuehai and Chen, Shu and Yang, Xingyi and Xie, Pengtao}, journal={ https://github.com/UCSD-AI4H/COVID-Dialogue}, year={2020} } ### Contributions Thanks to [@vrindaprabhu](https://github.com/vrindaprabhu) for adding this dataset.
[ -0.19504109025001526, -0.6280271410942078, 0.15097156167030334, 0.355103999376297, -0.29011160135269165, -0.08877146244049072, -0.24177975952625275, -0.4177654981613159, 0.3714909851551056, 0.3452686667442322, -0.7817738652229309, -0.9861010313034058, -0.25669950246810913, 0.05747124180197716, -0.026230759918689728, 1.1738319396972656, 0.24520909786224365, 0.15403659641742706, -0.272466242313385, -0.04427914693951607, -0.22532227635383606, -0.5386648774147034, -0.9141091704368591, -0.29213058948516846, 0.11832484602928162, 0.6368753910064697, 0.710541307926178, 0.4544229209423065, 0.5381729602813721, 0.18789198994636536, 0.09926992654800415, 0.13820277154445648, -0.606995701789856, -0.0745927169919014, 0.10389948636293411, -0.1373877227306366, -0.5651652216911316, 0.08811648190021515, 0.3466099798679352, 0.3647356331348419, -0.1707027107477188, 0.3713343143463135, 0.09814678877592087, 0.3422228693962097, -0.12555667757987976, 0.37684473395347595, -0.11541423201560974, 0.1668165773153305, -0.21797750890254974, -0.12311525642871857, -0.15098801255226135, -0.25954851508140564, 0.3112536370754242, -0.7033937573432922, 0.10823999345302582, 0.04971766471862793, 0.9594812989234924, 0.025255482643842697, -0.23583467304706573, -0.08264084160327911, -0.4319910705089569, 0.5949665904045105, -0.9141825437545776, 0.01347676943987608, 0.6548437476158142, 0.24912601709365845, -0.1569625586271286, -0.8270060420036316, -0.5607709288597107, 0.02592022903263569, -0.22713324427604675, 0.4838305115699768, -0.23828895390033722, -0.06087051331996918, 0.20620931684970856, 0.5732079744338989, -0.6421051621437073, -0.13512174785137177, -0.5233250260353088, -0.4052460491657257, 1.0316832065582275, 0.47625744342803955, 0.6209490895271301, -0.7010255455970764, -0.34062981605529785, -0.2170179784297943, -0.34258732199668884, 0.39680856466293335, -0.07235125452280045, 0.2824954092502594, -0.875160813331604, 0.31825608015060425, -0.2177312970161438, 0.400921493768692, 0.12362133711576462, -0.45152634382247925, 0.5657622814178467, -0.8708246350288391, -0.35557690262794495, 0.07039313018321991, 1.1994274854660034, 0.5522497296333313, -0.23529890179634094, 0.16410471498966217, 0.29106104373931885, -0.3192598521709442, -0.03101630136370659, -0.8314767479896545, -0.526359498500824, 0.6042091250419617, -0.7276353240013123, -0.2636575698852539, 0.021947287023067474, -0.9649903774261475, -0.2508164644241333, -0.23377680778503418, 0.085150346159935, -0.370078444480896, -0.3204944431781769, -0.013748468831181526, -0.09513633698225021, 0.35385555028915405, 0.26002568006515503, -0.4814089238643646, 0.43854188919067383, 0.295754611492157, 0.6534884572029114, -0.19972382485866547, -0.01122709084302187, -0.3315407335758209, -0.05991421267390251, -0.2106637954711914, 0.5059481263160706, -0.3563729226589203, -0.5927180647850037, -0.03542279824614525, 0.2089727520942688, -0.15248526632785797, -0.4893687963485718, 0.7938194274902344, 0.17693139612674713, 0.6251060962677002, -0.45851680636405945, -0.19697882235050201, -0.06060819700360298, 0.3128756582736969, -0.5492998957633972, 1.097089409828186, 0.2002827376127243, -0.9025629162788391, 0.2136061191558838, -0.63489830493927, -0.4295700192451477, 0.2140481173992157, -0.45857948064804077, -0.6256306767463684, -0.6275628805160522, 0.45448896288871765, 0.5177719593048096, -0.7334410548210144, 0.39166879653930664, -0.172165185213089, -0.05865410342812538, 0.09653410315513611, -0.22639250755310059, 1.3563332557678223, 0.3537168800830841, -0.2363511174917221, 0.07462785392999649, -0.9040949940681458, -0.10470318794250488, 0.18471142649650574, -0.1776483803987503, -0.14763908088207245, -0.07462923228740692, 0.09682221710681915, 0.3656013011932373, 0.2836897075176239, -0.44126075506210327, 0.11046358942985535, -0.31182345747947693, 0.4350362718105316, 0.29385891556739807, 0.5170853137969971, 0.11506040394306183, -0.4642198979854584, 0.7083445191383362, 0.3678927421569824, 0.6158518195152283, -0.0745176151394844, -0.7602598667144775, -0.6087899208068848, -0.3841627836227417, -0.10514187812805176, 0.8508343696594238, -0.698168158531189, 0.5142372846603394, -0.22963035106658936, -0.7415747046470642, -0.6267618536949158, 0.008805664256215096, 0.4878588616847992, 0.6859445571899414, 0.3870682120323181, -0.2576046288013458, -0.6405546069145203, -0.6872533559799194, 0.307996541261673, -0.38894400000572205, 0.2322990447282791, 0.7058989405632019, 0.42027974128723145, -0.2822027802467346, 0.6987999677658081, -0.6500971913337708, -0.3316313326358795, -0.504475474357605, -0.02008238434791565, 0.25109434127807617, 0.6049439311027527, 0.4165622293949127, -0.7699624300003052, -0.47868612408638, -0.01917310804128647, -0.9509025812149048, -0.12368594110012054, -0.35975146293640137, -0.25632110238075256, -0.04213806986808777, 0.38606297969818115, -0.2907959818840027, 0.5664613842964172, 0.5347045660018921, -0.3346869945526123, 0.4812101125717163, -0.048066869378089905, 0.2504204511642456, -1.6488674879074097, 0.22242943942546844, 0.0951743870973587, 0.10293932259082794, -0.7680871486663818, -0.25750061869621277, -0.3851807713508606, -0.2936151325702667, -0.3409460186958313, 0.4108717739582062, -0.16718901693820953, 0.46227046847343445, 0.25720933079719543, 0.06805742532014847, 0.16070310771465302, 0.43810853362083435, -0.04643002152442932, 0.6391265988349915, 0.6525328159332275, -0.5296408534049988, 0.47280678153038025, 0.7011181712150574, -0.26884737610816956, 0.576848566532135, -0.8393910527229309, -0.07930805534124374, 0.03378264605998993, 0.3860680162906647, -0.8572224974632263, -0.42855304479599, 0.7394548654556274, -0.6066678762435913, -0.10214114189147949, 0.012988237664103508, -0.24675308167934418, -0.39979737997055054, -0.4505898952484131, 0.4191771149635315, 0.37558817863464355, -0.07827500253915787, 0.21568889915943146, 0.5073275566101074, -0.257295697927475, -0.498590350151062, -0.7253085374832153, 0.06301578879356384, -0.237201988697052, -0.7924447059631348, 0.5260378122329712, -0.260257363319397, -0.24473926424980164, -0.01222225558012724, 0.240218386054039, -0.21240468323230743, -0.02702070213854313, 0.3938294053077698, 0.3602597713470459, -0.08079636842012405, 0.08962175250053406, -0.12990857660770416, 0.17201507091522217, 0.048097215592861176, 0.1620262861251831, 0.5727152824401855, -0.012368897907435894, -0.1580708771944046, -0.7323226928710938, 0.48784950375556946, 0.46255743503570557, -0.2269754260778427, 0.7165570259094238, 0.7510592937469482, -0.5198169946670532, 0.29931581020355225, -0.29398542642593384, -0.09217095375061035, -0.3649398684501648, 0.21545864641666412, -0.07816429436206818, -0.43723705410957336, 0.8626031875610352, 0.22334590554237366, -0.07720707356929779, 0.6982793211936951, 0.599299967288971, 0.10307330638170242, 0.7614361047744751, 0.3856283128261566, -0.3866618573665619, 0.17913353443145752, -0.484163373708725, 0.2016827017068863, -0.7589318752288818, -0.6258041262626648, -0.5389722585678101, 0.07933017611503601, -0.8182485103607178, -0.39893707633018494, 0.5480308532714844, -0.10019940137863159, -0.25023216009140015, 0.27612340450286865, -0.5883378982543945, -0.2207479625940323, 0.5735130310058594, 0.4548059105873108, 0.06398892402648926, -0.1642233282327652, -0.07774461805820465, -0.07234977185726166, -0.875562846660614, -0.3035959303379059, 0.8763763308525085, 0.3306690752506256, 0.5711784958839417, 0.05505665764212608, 0.7582932710647583, 0.3253605365753174, -0.32877928018569946, -0.5282065868377686, 0.5029973983764648, -0.30204007029533386, -0.4473060965538025, -0.43301063776016235, -0.3033958673477173, -1.2090187072753906, -0.26960882544517517, -0.3441541790962219, -0.6756674647331238, 0.5262582302093506, -0.046622585505247116, -0.6505409479141235, -0.07665907591581345, -0.6067963242530823, 0.9207172393798828, -0.10757158696651459, -0.26810407638549805, -0.07848014682531357, -0.917411744594574, 0.32415077090263367, 0.13779275119304657, 0.27567145228385925, -0.08370739221572876, 0.3296453654766083, 0.9391879439353943, -0.7147579193115234, 1.0072941780090332, -0.1326173096895218, 0.16023677587509155, 0.503526508808136, -0.5230166912078857, 0.34120601415634155, 0.42119166254997253, -0.1536444127559662, 0.22049421072006226, 0.3475213050842285, -0.44075870513916016, -0.3064814805984497, 0.4387166500091553, -1.0130261182785034, -0.5616035461425781, -0.5924354791641235, -0.33101019263267517, 0.07039014995098114, 0.15309950709342957, 0.42069870233535767, 0.6990981101989746, -0.3551619052886963, 0.10256016999483109, 0.4334889054298401, -0.7395409345626831, 0.04472741484642029, 0.29334762692451477, -0.035263437777757645, -0.6211274266242981, 0.6879854798316956, 0.16341082751750946, 0.13974738121032715, 0.2964284420013428, 0.39445221424102783, -0.022881770506501198, -0.28732067346572876, -0.33938533067703247, 0.19439846277236938, -0.47957274317741394, -0.11501424014568329, -0.5412271618843079, -0.6381056308746338, -0.8495725393295288, 0.2125791311264038, 0.15297849476337433, -0.1160220354795456, -0.561467170715332, -0.07388380169868469, 0.6830682158470154, 0.4320627748966217, -0.170978844165802, 0.09322981536388397, -0.7499229907989502, 0.39054808020591736, 0.19445833563804626, -0.0008178806165233254, -0.06299196183681488, -0.38103604316711426, -0.5065552592277527, 0.281544953584671, -0.34618955850601196, -0.6911047101020813, 0.6096329092979431, 0.3184991776943207, 0.6484968662261963, 0.49791595339775085, 0.4205705225467682, 0.8727396726608276, -0.11505558341741562, 1.5183621644973755, 0.14963829517364502, -0.6612477898597717, 0.6589624881744385, -0.4581739604473114, 0.4286649525165558, 0.6086635589599609, 0.42725178599357605, -0.8391404747962952, -0.2180985063314438, -0.7916263341903687, -0.9475379586219788, 0.7808017134666443, 0.21898317337036133, 0.0025182191748172045, -0.10872574150562286, 0.22504867613315582, -0.048623885959386826, -0.0024921984877437353, -0.5377204418182373, -0.6909600496292114, -0.3929125666618347, -0.30924350023269653, -0.07489795982837677, -0.18380855023860931, -0.44153428077697754, -0.5954489707946777, 0.777070164680481, 0.13102173805236816, 0.6132440567016602, 0.6307570934295654, 0.2664014995098114, -0.014036862179636955, 0.36461159586906433, 0.5645728707313538, 0.49284544587135315, -0.23483799397945404, -0.11542032659053802, 0.008199525065720081, -0.7409428954124451, -0.11466937512159348, 0.2511049211025238, -0.106238953769207, 0.013811295852065086, 0.4280860722064972, 0.87037593126297, -0.07737076282501221, -0.6300033926963806, 0.5450088381767273, -0.15027004480361938, -0.15976768732070923, -0.5979727506637573, -0.0029401294887065887, -0.11144386231899261, 0.17106984555721283, 0.2632935047149658, -0.08393420279026031, 0.3196648061275482, -0.5429389476776123, 0.31537166237831116, 0.10902639478445053, -0.24733299016952515, -0.3623746931552887, 0.6133414506912231, 0.30676978826522827, -0.2499917447566986, 0.7274274230003357, -0.15548409521579742, -0.390156626701355, 0.5510713458061218, 0.3357987701892853, 0.6435603499412537, -0.15726609528064728, 0.6383920311927795, 0.6931811571121216, 0.15234684944152832, -0.04492487013339996, 0.5944082736968994, 0.10657305270433426, -0.6632359623908997, -0.2587380111217499, -0.20678573846817017, -0.36733129620552063, 0.41253942251205444, -0.943673312664032, 0.33483484387397766, -0.3858839273452759, -0.23142492771148682, -0.0008806121768429875, 0.32078850269317627, -0.6976883411407471, 0.36525070667266846, 0.128973126411438, 0.9042252898216248, -0.8608580231666565, 0.7158814072608948, 0.5598046779632568, -0.748331606388092, -0.9956719875335693, -0.008277648128569126, 0.2042073905467987, -0.8157464861869812, 0.2702196538448334, -0.05640823766589165, 0.34362807869911194, -0.34860071539878845, -0.6491987109184265, -0.6794517040252686, 1.3210726976394653, 0.25734832882881165, -0.2810605764389038, 0.15460412204265594, 0.36654144525527954, 0.7235185503959656, -0.4577403962612152, 0.14399407804012299, 0.5317564606666565, 0.3656018376350403, 0.13219676911830902, -0.9678153395652771, 0.21399526298046112, -0.7849676012992859, -0.3100743591785431, -0.29593557119369507, -0.962029218673706, 0.644385576248169, -0.10554473102092743, -0.26481980085372925, -0.03708067908883095, 0.4620758295059204, 0.22786803543567657, 0.6700745820999146, 0.17548072338104248, 0.7325500249862671, 0.9761508107185364, -0.048102203756570816, 1.0592299699783325, -0.45687437057495117, 0.04941206052899361, 1.0820626020431519, -0.0593683086335659, 0.7117658853530884, 0.07482203841209412, -0.29478272795677185, 0.5914427042007446, 0.8262635469436646, -0.17232279479503632, 0.4253535270690918, -0.017617715522646904, -0.27809545397758484, -0.09268374741077423, -0.505480170249939, -0.4954416751861572, 0.3910175561904907, 0.4592079222202301, -0.5024227499961853, 0.22054050862789154, 0.046583857387304306, 0.35604509711265564, -0.2089850753545761, -0.16151107847690582, 0.9475961923599243, 0.017267735674977303, -0.6673686504364014, 0.7364324331283569, -0.2604365944862366, 0.371666818857193, -0.5082818269729614, 0.005938454531133175, -0.14548180997371674, -0.12452101707458496, -0.5627545714378357, -0.6400389671325684, 0.10030705481767654, -0.09821542352437973, -0.40428265929222107, 0.01804289035499096, 0.40068504214286804, -0.6832755208015442, -0.5904465913772583, 0.04411283880472183, 0.4862726628780365, 0.47479355335235596, 0.3042871356010437, -1.072241187095642, 0.08454461395740509, 0.3158702850341797, 0.0010584922274574637, 0.13191761076450348, 0.35654568672180176, -0.10523694008588791, 0.48282480239868164, 0.49876537919044495, 0.27044233679771423, -0.15466143190860748, 0.16816090047359467, 0.7490246891975403, -0.5821112990379333, -0.42329472303390503, -0.6040261387825012, 0.62751704454422, -0.3827594518661499, -0.44420355558395386, 0.7868847250938416, 0.7281347513198853, 0.716905951499939, 0.13538698852062225, 1.1194097995758057, -0.3314558267593384, 0.4774845838546753, -0.22619140148162842, 0.716098427772522, -0.44810304045677185, 0.17402032017707825, -0.35940802097320557, -0.2193068265914917, -0.28088557720184326, 0.474254846572876, -0.28103193640708923, -0.11456497758626938, 0.5386102795600891, 0.8292713761329651, 0.3236757516860962, 0.04927431046962738, 0.07473437488079071, 0.4361078441143036, 0.4950830340385437, 0.49434471130371094, 0.23813684284687042, -0.7519432902336121, 0.5446494817733765, -0.5038324594497681, -0.27639174461364746, -0.055976565927267075, -0.627768337726593, -0.8115234375, -0.8336682319641113, -0.6349332928657532, -0.6019008755683899, 0.060237664729356766, 1.2760088443756104, 0.6169106364250183, -1.0110174417495728, -0.35190215706825256, 0.301085501909256, -0.160630002617836, -0.4728633463382721, -0.24126866459846497, 0.7348498106002808, 0.11340219527482986, -0.5022338032722473, 0.04358017444610596, 0.08054328709840775, 0.0863453596830368, -0.10789678245782852, -0.24457581341266632, -0.24879378080368042, -0.0040116808377206326, 0.5739787817001343, 0.44053229689598083, -0.5591906309127808, -0.022029582411050797, 0.16197606921195984, -0.24270939826965332, 0.28248271346092224, 0.37423282861709595, -0.4782423973083496, 0.5874427556991577, 0.5673120617866516, 0.34370774030685425, 0.42571568489074707, 0.09247053414583206, 0.46278589963912964, -0.43178993463516235, 0.05969490110874176, 0.07441140711307526, 0.28394678235054016, 0.46726247668266296, -0.6561803221702576, 0.4681195020675659, 0.3005737066268921, -0.6010903716087341, -0.5823308825492859, -0.1636708825826645, -1.3978644609451294, 0.011486797593533993, 1.3783923387527466, -0.27634069323539734, -0.07766659557819366, -0.36329033970832825, -0.5038169026374817, 0.46887722611427307, -0.7354701161384583, 0.7095154523849487, 0.6004654169082642, -0.28791746497154236, -0.15215514600276947, -0.3716276288032532, 0.7897037863731384, 0.02614568918943405, -1.0529406070709229, -0.039130184799432755, 0.2415531575679779, 0.055481649935245514, 0.03725533187389374, 0.8960490822792053, -0.22081340849399567, 0.32088974118232727, -0.22149096429347992, 0.05806118994951248, 0.08968410640954971, 0.10141126811504364, -0.20389436185359955, -0.10606706142425537, -0.11034604161977768, -0.22953161597251892 ]
null
null
null
null
null
null
null
null
null
null
null
null
null
silk-road/ChatHaruhi-from-RoleLLM
silk-road
2023-10-20T12:27:24Z
465
0
null
[ "license:cc-by-4.0", "region:us" ]
2023-10-20T12:27:24Z
2023-10-20T08:39:56.000Z
2023-10-20T08:39:56
--- license: cc-by-4.0 --- Adapt English Role in RoleBench into ChatHaruhi format only using profiles part in [ZenMoore/RoleBench](https://huggingface.co/datasets/ZenMoore/RoleBench) Great thanks to on authors of RoleLLM! usage: ```python # if you pip installed chatharuhi it should be # from chatharuhi import ChatHaruhi from ChatHaruhi import ChatHaruhi chatbot = ChatHaruhi( role_from_hf = 'silk-road/ChatHaruhi-from-RoleLLM/Sherlock Holmes', \ llm = 'openai', embedding = 'bge_en') response = chatbot.chat(role='Police Chief', text = 'Oh no, there has been another murder') print(response) ``` The output should like this: ``` Sherlock Holmes: "Ah, another murder case, you say? Fascinating. Pray, do provide me with the details, Constable." ``` if you chat with bot in English, embedding = 'bge_en' if in Chinese, embedding = 'luotuo_openai' ( or default ) More detail information see our github https://github.com/LC1332/Chat-Haruhi-Suzumiya 95 Roles contains in this dataset: Role | Movie | 中文 | How-to-call-in-ChatHaruhi ---|---|---|--- HAL 9000 | 2001-A-Space-Odyssey | 《2001太空漫游》中的HAL 9000电脑 | silk-road/ChatHaruhi-from-RoleLLM/HAL 9000 Colonel Nathan R. Jessep | A-Few-Good-Men | 《好汉两三个》中的内森·R·杰瑟普上校 | silk-road/ChatHaruhi-from-RoleLLM/Colonel Nathan R. Jessep Antonio Salieri | Amadeus | 《阿玛迪斯》中的安东尼奥·萨列里 | silk-road/ChatHaruhi-from-RoleLLM/Antonio Salieri Stifler | American-Pie | 《美国派》中的斯蒂夫勒 | silk-road/ChatHaruhi-from-RoleLLM/Stifler Paul Vitti | Analyze-That | 《心理分析那件事》中的保罗·维蒂 | silk-road/ChatHaruhi-from-RoleLLM/Paul Vitti Alvy Singer | Annie-Hall | 《安妮·霍尔》中的阿尔维·辛格 | silk-road/ChatHaruhi-from-RoleLLM/Alvy Singer Violet Weston | August-Osage-County | 《奥塞奇郡的八月》中的紫罗兰·韦斯顿 | silk-road/ChatHaruhi-from-RoleLLM/Violet Weston Willie Soke | Bad-Santa | 《坏圣诞老人》中的威利·索克 | silk-road/ChatHaruhi-from-RoleLLM/Willie Soke Gaston | Beauty-and-the-Beast | 《美女与野兽》中的加斯顿 | silk-road/ChatHaruhi-from-RoleLLM/Gaston The Dude | Big-Lebowski,-The | 《大勒布斯基》中的“大佬” | silk-road/ChatHaruhi-from-RoleLLM/The Dude Murphy MacManus | Boondock-Saints,-The | 《天使之城》中的墨菲·麦克马纳斯 | silk-road/ChatHaruhi-from-RoleLLM/Murphy MacManus Paul Conroy | Buried | 《活埋》中的保罗·康罗伊 | silk-road/ChatHaruhi-from-RoleLLM/Paul Conroy Truman Capote | Capote | 《卡波特》中的杜鲁门·卡波特 | silk-road/ChatHaruhi-from-RoleLLM/Truman Capote Mater | Cars-2 | 《赛车总动员2》中的玛特 | silk-road/ChatHaruhi-from-RoleLLM/Mater Andrew Detmer | Chronicle | 《编年史》中的安德鲁·德特默 | silk-road/ChatHaruhi-from-RoleLLM/Andrew Detmer Coriolanus | Coriolanus | 《科里奥兰纳斯》中的主角 | silk-road/ChatHaruhi-from-RoleLLM/Coriolanus Benjamin Button | Curious-Case-of-Benjamin-Button,-The | 《本杰明·巴顿奇事》中的本杰明·巴顿 | silk-road/ChatHaruhi-from-RoleLLM/Benjamin Button John Keating | Dead-Poets-Society | 《死亡诗社》中的约翰·基廷 | silk-road/ChatHaruhi-from-RoleLLM/John Keating Wade Wilson | Deadpool | 《死侍》中的韦德·威尔逊 | silk-road/ChatHaruhi-from-RoleLLM/Wade Wilson Jim Morrison | Doors,-The | 《门》中的吉姆·莫里森 | silk-road/ChatHaruhi-from-RoleLLM/Jim Morrison Queen Elizabeth I | Elizabeth-The-Golden-Age | 《伊丽莎白:黄金时代》中的伊丽莎白一世女王 | silk-road/ChatHaruhi-from-RoleLLM/Queen Elizabeth I Jeff Spicoli | Fast-Times-at-Ridgemont-High | 《瑞奇蒙特高中时光》中的杰夫·斯皮科利 | silk-road/ChatHaruhi-from-RoleLLM/Jeff Spicoli Fred Flintstone | Flintstones,-The | 《石头家族》中的弗雷德·弗林斯通 | silk-road/ChatHaruhi-from-RoleLLM/Fred Flintstone Freddy Krueger | Freddy-vs.-Jason | 《弗雷迪对杰森》中的弗雷迪·克鲁格 | silk-road/ChatHaruhi-from-RoleLLM/Freddy Krueger Tyrion Lannister | Game_of_Thrones | 《权力的游戏》中的提利昂·兰尼斯特 | silk-road/ChatHaruhi-from-RoleLLM/Tyrion Lannister James Brown | Get-on-Up | 《起身舞蹈》中的詹姆斯·布朗 | silk-road/ChatHaruhi-from-RoleLLM/James Brown Walt Kowalski | Gran-Torino | 《老无所依》中的沃尔特·科瓦尔斯基 | silk-road/ChatHaruhi-from-RoleLLM/Walt Kowalski John Coffey | Green-Mile,-The | 《绿里奇迹》中的约翰·科菲 | silk-road/ChatHaruhi-from-RoleLLM/John Coffey Theodore Twombly | Her | 《她》中的西奥多·特温布利 | silk-road/ChatHaruhi-from-RoleLLM/Theodore Twombly Gregory House | House-M.D. | 《豪斯医生》中的格雷戈里·豪斯 | silk-road/ChatHaruhi-from-RoleLLM/Gregory House Sonny | I,-Robot | 《我,机器人》中的桑尼 | silk-road/ChatHaruhi-from-RoleLLM/Sonny Colonel Hans Landa | Inglourious-Basterds | 《无耻混蛋》中的汉斯·兰达上校 | silk-road/ChatHaruhi-from-RoleLLM/Colonel Hans Landa Judge Dredd | Judge-Dredd | 《德莱德法官》中的法官德莱德 | silk-road/ChatHaruhi-from-RoleLLM/Judge Dredd Juno MacGuff | Juno | 《朱诺》中的朱诺·麦克夫 | silk-road/ChatHaruhi-from-RoleLLM/Juno MacGuff Po | Kung-Fu-Panda | 《功夫熊猫》中的阿宝 | silk-road/ChatHaruhi-from-RoleLLM/Po Professor G.H. Dorr | Ladykillers,-The | 《夫人杀手》中的G.H.多尔教授 | silk-road/ChatHaruhi-from-RoleLLM/Professor G.H. Dorr Fletcher Reede | Liar-Liar | 《撒谎的男人》中的弗莱彻·里德 | silk-road/ChatHaruhi-from-RoleLLM/Fletcher Reede Abraham Lincoln | Lincoln | 《林肯》中的亚伯拉罕·林肯 | silk-road/ChatHaruhi-from-RoleLLM/Abraham Lincoln Frank T.J. Mackey | Magnolia | 《木兰花》中的弗兰克 T.J. 麦凯 | silk-road/ChatHaruhi-from-RoleLLM/Frank T.J. Mackey Malcolm X | Malcolm-X | 《马尔科姆X》中的马尔科姆X | silk-road/ChatHaruhi-from-RoleLLM/Malcolm X Leonard Shelby | Memento | 《记忆碎片》中的伦纳德·谢尔比 | silk-road/ChatHaruhi-from-RoleLLM/Leonard Shelby Harvey Milk | Milk | 《牛奶》中的哈维·牛奶 | silk-road/ChatHaruhi-from-RoleLLM/Harvey Milk Randle McMurphy | One-Flew-Over-the-Cuckoo's-Nest | 《飞越疯人院》中的兰德尔·麦克默菲 | silk-road/ChatHaruhi-from-RoleLLM/Randle McMurphy Jack Sparrow | Pirates-of-the-Caribbean-Dead-Man's-Chest | 《加勒比海盗》中的杰克·斯派洛船长 | silk-road/ChatHaruhi-from-RoleLLM/Jack Sparrow John Dillinger | Public-Enemies | 《公敌》中的约翰·迪林格 | silk-road/ChatHaruhi-from-RoleLLM/John Dillinger Lestat de Lioncourt | Queen-of-the-Damned | 《诅咒女王》中的莱斯塔特·德·莱昂科特 | silk-road/ChatHaruhi-from-RoleLLM/Lestat de Lioncourt Tyler Hawkins | Remember-Me | 《记得我》中的泰勒·霍金斯 | silk-road/ChatHaruhi-from-RoleLLM/Tyler Hawkins Caesar | Rise-of-the-Planet-of-the-Apes | 《猩球崛起》中的凯撒 | silk-road/ChatHaruhi-from-RoleLLM/Caesar Jack | Room | 《房间》中的杰克 | silk-road/ChatHaruhi-from-RoleLLM/Jack James Carter | Rush-Hour-2 | 《尖峰时刻2》中的詹姆斯·卡特 | silk-road/ChatHaruhi-from-RoleLLM/James Carter Jigsaw | Saw | 《电锯惊魂》中的拼图杀手 | silk-road/ChatHaruhi-from-RoleLLM/Jigsaw John Doe | Se7en | 《七宗罪》中的约翰·多 | silk-road/ChatHaruhi-from-RoleLLM/John Doe Jackie Moon | Semi-Pro | 《半职业球员》中的杰基·月亮 | silk-road/ChatHaruhi-from-RoleLLM/Jackie Moon Sherlock Holmes | Sherlock-Holmes | 《夏洛克·福尔摩斯》中的夏洛克·福尔摩斯 | silk-road/ChatHaruhi-from-RoleLLM/Sherlock Holmes Shrek | Shrek | 《史莱克》中的史莱克 | silk-road/ChatHaruhi-from-RoleLLM/Shrek Pat Solitano | Silver-Linings-Playbook | 《乌云背后的幸福线》中的帕特·索利塔诺 | silk-road/ChatHaruhi-from-RoleLLM/Pat Solitano Karl Childers | Sling-Blade | 《刀锯》中的卡尔·柴尔德斯 | silk-road/ChatHaruhi-from-RoleLLM/Karl Childers Peter Parker | Spider-Man | 《蜘蛛侠》中的彼得·帕克 | silk-road/ChatHaruhi-from-RoleLLM/Peter Parker Bruno Antony | Strangers-on-a-Train | 《列车上的陌生人》中的布鲁诺·安东尼 | silk-road/ChatHaruhi-from-RoleLLM/Bruno Antony Seth | Superbad | 《超级糟糕》中的塞思 | silk-road/ChatHaruhi-from-RoleLLM/Seth Caden Cotard | Synecdoche,-New-York | 《纽约奇缘》中的卡登·科塔德 | silk-road/ChatHaruhi-from-RoleLLM/Caden Cotard Travis Bickle | Taxi-Driver | 《出租车司机》中的特拉维斯·比克尔 | silk-road/ChatHaruhi-from-RoleLLM/Travis Bickle Stanley Ipkiss | Mask,-The | 《面具》中的斯坦利·伊普基斯 | silk-road/ChatHaruhi-from-RoleLLM/Stanley Ipkiss Lyn Cassady | Men-Who-Stare-at-Goats,-The | 《盯羊的男人》中的林恩·卡萨迪 | silk-road/ChatHaruhi-from-RoleLLM/Lyn Cassady Michael Scott | The_Office | 《办公室》中的迈克尔·斯科特 | silk-road/ChatHaruhi-from-RoleLLM/Michael Scott Robert Angier | Prestige,-The | 《名望》中的罗伯特·安吉尔 | silk-road/ChatHaruhi-from-RoleLLM/Robert Angier Rachel Lang | The-Rage-Carrie-2 | 《瑞秋的愤怒:凯丽2》中的瑞秋·朗 | silk-road/ChatHaruhi-from-RoleLLM/Rachel Lang Dr. Frank-N-Furter | Rocky-Horror-Picture-Show,-The | 《洛奇恐怖秀》中的弗兰克·N·福特医生 | silk-road/ChatHaruhi-from-RoleLLM/Dr. Frank-N-Furter Jack Torrance | Shining,-The | 《闪灵》中的杰克·托兰斯 | silk-road/ChatHaruhi-from-RoleLLM/Jack Torrance Tom Ripley | Talented-Mr.-Ripley,-The | 《天才雷普利》中的汤姆·雷普利 | silk-road/ChatHaruhi-from-RoleLLM/Tom Ripley D_Artagnan | Three-Musketeers,-The | 《三剑客》中的达达尼昂 | silk-road/ChatHaruhi-from-RoleLLM/D_Artagnan Stephen Hawking | Theory-of-Everything,-The | 《万物理论》中的斯蒂芬·霍金 | silk-road/ChatHaruhi-from-RoleLLM/Stephen Hawking Thor | Thor-Ragnarok | 《雷神:诸神黄昏》中的雷神索尔 | silk-road/ChatHaruhi-from-RoleLLM/Thor James Bond | Tomorrow-Never-Dies | 《明日帝国》中的詹姆斯·邦德 | silk-road/ChatHaruhi-from-RoleLLM/James Bond Mark Renton | Trainspotting | 《迷幻列车》中的马克·伦顿 | silk-road/ChatHaruhi-from-RoleLLM/Mark Renton Tugg Speedman | Tropic-Thunder | 《热带惊雷》中的塔格·斯皮德曼 | silk-road/ChatHaruhi-from-RoleLLM/Tugg Speedman David Aames | Vanilla-Sky | 《香草天空》中的大卫·艾姆斯 | silk-road/ChatHaruhi-from-RoleLLM/David Aames Rorschach | Watchmen | 《守望者》中的罗夏克 | silk-road/ChatHaruhi-from-RoleLLM/Rorschach Jordan Belfort | Wolf-of-Wall-Street,-The | 《华尔街之狼》中的乔丹·贝尔福特 | silk-road/ChatHaruhi-from-RoleLLM/Jordan Belfort Logan | X-Men-Origins-Wolverine | 《X战警:金刚狼》中的洛根 | silk-road/ChatHaruhi-from-RoleLLM/Logan Judy Hoops | Zootopia | 《疯狂动物城》中的朱迪·胡普斯 | silk-road/ChatHaruhi-from-RoleLLM/Judy Hoops Doctor Who | Doctor_Who | 《神秘博士》中的博士 | silk-road/ChatHaruhi-from-RoleLLM/Doctor Who Blair Waldorf | Gossip_Girl | 《绯闻女孩》中的布莱尔·沃尔多夫 | silk-road/ChatHaruhi-from-RoleLLM/Blair Waldorf Raylan Givens | Justified | 《正当防卫》中的雷兰·吉文斯 | silk-road/ChatHaruhi-from-RoleLLM/Raylan Givens Mary Sibley | Salem | 《塞勒姆》中的玛丽·西布利 | silk-road/ChatHaruhi-from-RoleLLM/Mary Sibley Lucifer Morningstar | Lucifer | 《路西法》中的路西法·晨星 | silk-road/ChatHaruhi-from-RoleLLM/Lucifer Morningstar Sheldon Cooper | The_Big_Bang_Theory | 《生活大爆炸》中的谢尔顿·库珀 | silk-road/ChatHaruhi-from-RoleLLM/Sheldon Cooper Twilight Sparkle | My_Little_Pony__Friendship_is_Magic | 《我的小马驹:友谊之魔》中的暮光星辉 | silk-road/ChatHaruhi-from-RoleLLM/Twilight Sparkle Oliver Queen | Arrow | 《绿箭侠》中的奥利弗·皇后 | silk-road/ChatHaruhi-from-RoleLLM/Oliver Queen Leroy Jethro Gibbs | NCIS | 《海军罪案调查处》中的利洛伊·杰斯罗·吉布斯 | silk-road/ChatHaruhi-from-RoleLLM/Leroy Jethro Gibbs Angel | Angel | 《天使》中的天使 | silk-road/ChatHaruhi-from-RoleLLM/Angel Klaus Mikaelson | The_Originals | 《始祖家族》中的克劳斯·米卡尔森 | silk-road/ChatHaruhi-from-RoleLLM/Klaus Mikaelson Queen Catherine | Reign | 《王权》中的凯瑟琳女王 | silk-road/ChatHaruhi-from-RoleLLM/Queen Catherine Dr. Hannibal Lecter | Hannibal | 《汉尼拔》中的汉尼拔·莱克特医生 | silk-road/ChatHaruhi-from-RoleLLM/Dr. Hannibal Lecter Coach Eric Taylor | Friday_Night_Lights | 《星期五之光》中的教练埃里克·泰勒 | silk-road/ChatHaruhi-from-RoleLLM/Coach Eric Taylor
[ -0.362707257270813, -0.37731921672821045, 0.0203521940857172, 0.045024335384368896, -0.21658636629581451, -0.09961801767349243, 0.07744766771793365, -0.5389702320098877, 0.7759369015693665, 0.2043514996767044, -0.5826800465583801, 0.06467728316783905, -0.46115627884864807, 0.110281802713871, -0.3111669719219208, 1.0672506093978882, 0.061840325593948364, 0.10696704685688019, 0.1552221029996872, 0.1763107180595398, -0.2672617435455322, 0.06124962866306305, -0.33282575011253357, -0.2773047387599945, 0.31732094287872314, 0.43403834104537964, 0.8442139625549316, 0.5878070592880249, 0.640186607837677, 0.23500877618789673, 0.269282728433609, 0.290263295173645, -0.5557637810707092, -0.22870434820652008, -0.13358843326568604, -0.31599417328834534, -0.45349666476249695, 0.134912371635437, 0.6751220226287842, 0.5086726546287537, -0.0019360983278602362, 0.37160006165504456, 0.16278791427612305, 0.4853309094905853, -0.4999326467514038, 0.06315971910953522, -0.04512371867895126, 0.26490598917007446, -0.2519734501838684, -0.3294433653354645, -0.32071197032928467, -0.29050639271736145, -0.24509255588054657, -0.7854908108711243, -0.22407105565071106, -0.02551986649632454, 1.718137502670288, -0.40695878863334656, -0.7798153758049011, 0.1874573975801468, -0.7034417390823364, 1.2169784307479858, -0.4975214898586273, 0.03584656864404678, 0.2815402150154114, 0.44134753942489624, -0.35457491874694824, -0.9427400827407837, -0.7497841119766235, -0.07335121929645538, -0.4948699176311493, 0.8331706523895264, -0.028045570477843285, -0.2753280699253082, 0.1291865110397339, 0.7442101240158081, -0.6075252294540405, -0.5744115710258484, -0.8235628008842468, -0.08059432357549667, 0.6430511474609375, 0.257811963558197, 0.795399010181427, -0.595877468585968, -0.45713886618614197, -0.013949526473879814, -0.5749717354774475, 0.36428090929985046, -0.009697875939309597, -0.2701909840106964, -0.5394648313522339, 0.29980239272117615, 0.2650449275970459, 0.4966142773628235, 0.3761696219444275, -0.2525229752063751, 0.052641261368989944, -0.7490663528442383, -0.23710525035858154, -0.24642205238342285, 0.8058902025222778, 0.7306787967681885, 0.19064006209373474, 0.009139800444245338, 0.26366689801216125, 0.13966712355613708, -0.19402025640010834, -0.7795323729515076, -0.326026976108551, 0.3772105276584625, -0.7165185213088989, -0.18976128101348877, 0.41033098101615906, -0.8539378046989441, -0.3893589973449707, 0.3140248954296112, 0.3098387122154236, -0.45841336250305176, -0.4558713138103485, -0.19481244683265686, -0.5250470638275146, 0.6556342840194702, 0.3326144516468048, -0.6434168815612793, 0.12016608566045761, 0.287311851978302, 0.8491179347038269, 0.025041384622454643, -0.6048287153244019, -0.38395699858665466, 0.9649735689163208, -0.6910526752471924, 0.4180189371109009, -0.34902331233024597, -0.4307888150215149, -0.3190056383609772, 0.687532901763916, -0.36749255657196045, -0.0787215307354927, 0.5972667336463928, 0.023727456107735634, 0.14578795433044434, -0.23767468333244324, -0.017574982717633247, -0.18025752902030945, 0.23847226798534393, -0.78951096534729, 0.3083108961582184, 0.048457007855176926, -0.9241909980773926, 0.030041564255952835, -0.21208326518535614, -0.784690260887146, -0.423620343208313, -0.443811297416687, -0.23341131210327148, -0.475336492061615, 0.11888367682695389, 0.06344817578792572, -0.492338091135025, -0.1479816883802414, -0.02704714611172676, -0.8658896684646606, 0.3050422668457031, -0.16390974819660187, 1.3345651626586914, 0.4475094974040985, -0.3975059986114502, -0.04382537677884102, -0.6448407173156738, -0.250347375869751, 0.463459312915802, -0.1484142690896988, 0.17427949607372284, -0.043553054332733154, 0.17491543292999268, 0.11050384491682053, 0.5512717366218567, -0.30824410915374756, -0.20129069685935974, -0.5227293372154236, 0.5157033801078796, 1.198350429534912, 0.3907127380371094, 0.04409458488225937, -1.240883708000183, 0.6274121999740601, 0.4102886915206909, 0.4343196749687195, -0.1927337348461151, -0.6509755253791809, -1.3955423831939697, 0.25421130657196045, 0.06442761421203613, 0.8266952633857727, -0.5077189207077026, 0.43461960554122925, -0.1150311529636383, -0.9844115376472473, -0.5461891293525696, -0.22763638198375702, 0.1470814347267151, -0.0208810493350029, 0.22787322103977203, -0.4621315002441406, -0.6631673574447632, -0.6737985014915466, -0.364607572555542, -0.5471109747886658, 0.019621867686510086, 0.6407813429832458, 0.002693364629521966, -0.2763919234275818, 0.5116349458694458, -0.5581464767456055, -0.832175076007843, -0.18342992663383484, -0.3536876440048218, 0.7688159346580505, 0.5738785266876221, 0.5063326954841614, -0.5500897765159607, -0.516832172870636, 0.40422242879867554, -0.7054116129875183, 0.6303266286849976, -0.27150630950927734, -0.5039856433868408, 0.11924649775028229, -0.016649428755044937, -0.491432249546051, 0.2326463907957077, 0.4300421178340912, -0.24681708216667175, 0.6674547791481018, -0.3874891698360443, 0.6865794658660889, -1.3210488557815552, 0.05822480842471123, -0.08444846421480179, 0.16041319072246552, -0.6221563220024109, 0.3747503161430359, -0.368404358625412, 0.05182276666164398, -0.22457118332386017, 0.6332236528396606, -0.5042969584465027, 0.4508725702762604, 0.21366073191165924, 0.6400145888328552, 0.1351466178894043, 0.6698336005210876, -0.3653154969215393, 0.4162229001522064, 0.5115043520927429, -0.6450511813163757, 0.7217667698860168, 0.36678993701934814, -0.39060401916503906, 0.16767920553684235, -0.4464479684829712, -0.12359196692705154, -0.06669000536203384, 0.22261491417884827, -1.08280611038208, -0.31890735030174255, 0.47316068410873413, -0.6105800867080688, -0.0958077684044838, -0.252554327249527, -0.19147391617298126, -0.5544942021369934, -0.6154031753540039, 0.1923905611038208, 0.7798080444335938, -0.1237913966178894, 0.6613868474960327, 0.36767497658729553, 0.22823837399482727, -0.6017311811447144, -0.6332653760910034, -0.04874386638402939, -0.23458731174468994, -0.8859850168228149, 0.22043202817440033, -0.17046160995960236, -0.07810866832733154, -0.3431254029273987, -0.37696847319602966, -0.29004964232444763, 0.16548790037631989, 0.2667175233364105, 0.23288896679878235, -0.040735892951488495, -0.5113823413848877, 0.0656924769282341, 0.06203823909163475, -0.08724664151668549, 0.34069663286209106, 0.5586786270141602, -0.05282627046108246, -0.07740076631307602, -0.7570695877075195, 0.3175739645957947, 0.5783622860908508, -0.25386670231819153, 0.025576921179890633, 1.0599160194396973, -0.3045156002044678, 0.39844179153442383, -0.03217446058988571, -0.28724199533462524, -0.5005307793617249, 0.18270562589168549, -0.4222557544708252, -0.3799003064632416, 0.39405837655067444, 0.035247720777988434, 0.06344393640756607, 0.741498589515686, 0.20966197550296783, -0.11613242328166962, 1.0045652389526367, 0.5820431709289551, -0.4368206858634949, 0.49388983845710754, -0.7264090776443481, 0.2683040499687195, -0.6955733299255371, -0.22134585678577423, -0.17031404376029968, -0.5067509412765503, -1.111076831817627, -0.5464591979980469, 0.6844528317451477, 0.3523581326007843, -0.4994215965270996, 0.34025126695632935, -0.44488218426704407, 0.08963686972856522, 0.3727025091648102, 0.30847054719924927, 0.43319472670555115, -0.08690304309129715, 0.24754557013511658, 0.3747280240058899, -0.40068188309669495, -0.5458883047103882, 0.913700520992279, 0.32878050208091736, 0.8138954639434814, 0.6021845936775208, 0.3691692352294922, 0.10656294971704483, -0.31887781620025635, -0.16785025596618652, 0.799903392791748, -0.4436498284339905, -0.6694148778915405, -0.373788982629776, -0.15835990011692047, -1.188004970550537, -0.13770344853401184, 0.17128777503967285, -0.9341286420822144, 0.4858970046043396, -0.22453443706035614, -0.5760118961334229, 0.011828255839645863, -0.30946779251098633, 0.8999190330505371, -0.13071037828922272, -0.42189332842826843, -0.557680606842041, -0.8534538149833679, 0.5962058305740356, 0.12241470068693161, 0.3375791311264038, -0.19850163161754608, 0.09767504036426544, 0.9773070216178894, -0.46723031997680664, 0.4384958744049072, -0.018289972096681595, -0.07339177280664444, 0.5310544371604919, 0.2718823552131653, 0.712990939617157, 0.5095090270042419, -0.009392956271767616, 0.3501492738723755, 0.497249037027359, -0.44851410388946533, -0.26627519726753235, 0.9568000435829163, -1.009491205215454, -0.9417091012001038, -0.8998650312423706, -0.2843899428844452, 0.41965553164482117, 0.2679033577442169, 0.6546058654785156, 0.5062143206596375, 0.12437178939580917, -0.06396963447332382, -0.13469938933849335, -0.2684252858161926, 0.5695832967758179, 0.23761491477489471, -0.28757938742637634, -0.4929569959640503, 1.2061448097229004, 0.21258467435836792, 0.20731252431869507, 0.3009887933731079, 0.3304980397224426, 0.08397060632705688, -0.009928680025041103, -0.6618302464485168, 0.5034123659133911, -0.542978823184967, 0.19418954849243164, -0.6028321981430054, -0.5133750438690186, -0.5845491290092468, -0.08725456148386002, 0.24696782231330872, -0.3385617136955261, -0.3324519693851471, 0.114161916077137, 0.7525908350944519, 0.5839928388595581, -0.1332460194826126, -0.2129061073064804, -0.7105611562728882, 0.25915610790252686, 0.285793274641037, 0.07583275437355042, 0.2519814074039459, -0.6020404100418091, -0.7390567660331726, 0.11744528263807297, -0.6877698302268982, -0.8041740655899048, 0.21208123862743378, 0.39623382687568665, 0.4118185043334961, 0.7897936701774597, 0.2916319668292999, 1.0964608192443848, -0.34326261281967163, 1.4176020622253418, 0.2897757589817047, -0.746921181678772, 0.5888858437538147, -0.7112236618995667, -0.3206666111946106, 0.21326905488967896, 0.4128997027873993, -0.9889705181121826, -0.7122709155082703, -0.5216317772865295, -0.6343006491661072, 1.1571476459503174, 0.2523914873600006, 0.1323772668838501, 0.016904182732105255, -0.4084187150001526, -0.05100006237626076, 0.14542202651500702, -0.9824697375297546, -0.8636969327926636, -0.5013902187347412, 0.027578093111515045, -0.09035607427358627, 0.10534423589706421, -0.22813071310520172, -0.5244512557983398, 0.7636299729347229, 0.40429386496543884, 0.42796823382377625, 0.6357721090316772, 0.056956835091114044, -0.5053720474243164, 0.11363669484853745, 0.2464209944009781, 1.0253477096557617, -0.4138093590736389, 0.19771642982959747, 0.06962299346923828, -0.8646800518035889, 0.09803198277950287, -0.11612826585769653, -0.1577785760164261, 0.22560666501522064, 0.3346473276615143, 0.6459444165229797, -0.24411098659038544, -0.8681466579437256, 0.6566512584686279, 0.3166850507259369, 0.7594766616821289, -0.8020379543304443, 0.35147008299827576, -0.26942744851112366, 0.45257115364074707, 0.370990127325058, -0.2652306854724884, 0.25946253538131714, -1.065153956413269, 0.3798128068447113, 0.00735889608040452, -0.4926372170448303, -0.05883905291557312, 0.8134168386459351, -0.07313629239797592, -0.1542331427335739, 0.21267962455749512, -0.3105701506137848, -0.2853056788444519, 0.7517481446266174, 0.4937560558319092, 0.7828443646430969, -0.8343074321746826, 0.334943026304245, 0.7272132635116577, 0.4302452504634857, 0.45273298025131226, 0.37258729338645935, 0.2945605218410492, -0.47877201437950134, -0.21560873091220856, -0.3867974877357483, -0.1496390551328659, 0.38024038076400757, -0.2464408427476883, 0.5065536499023438, -0.7455968856811523, 0.09980503469705582, -0.3774349093437195, 0.3006459176540375, 0.0628405436873436, 0.08258992433547974, -0.37746918201446533, 0.6286633014678955, -0.7361748814582825, 0.9937463402748108, 0.4992479085922241, -0.8941584825515747, -0.9204527139663696, 0.4375453591346741, -0.22534002363681793, -0.5450135469436646, 0.35362958908081055, 0.04247787967324257, 0.21404549479484558, 0.25692498683929443, -0.08683419972658157, -0.8297910690307617, 1.442905068397522, -0.03071376495063305, -0.019739411771297455, 0.04128413274884224, -0.08704955875873566, 0.37275028228759766, -0.18756815791130066, 0.7333859205245972, 0.783225417137146, 0.7104166150093079, -0.020690977573394775, -1.0754483938217163, 0.2630983889102936, -0.8080411553382874, -0.2588939070701599, -0.10648536682128906, -1.2152880430221558, 1.320219874382019, -0.2625046968460083, -0.6237367987632751, 0.6453123688697815, 0.6743088960647583, 0.5440026521682739, 0.27485284209251404, 0.6892307996749878, -0.0049990080296993256, 0.5101635456085205, -0.15593355894088745, 0.9603176116943359, -0.4186965227127075, 0.1940900683403015, 0.3951687514781952, 0.001386115443892777, 0.5283078551292419, 0.1053120344877243, -0.5461817979812622, 0.7159212231636047, 1.0388538837432861, -0.36535564064979553, 0.4825683832168579, 0.18446604907512665, -0.11006023734807968, -0.04709095135331154, -0.30792930722236633, -0.6208327412605286, 0.22492443025112152, -0.146213561296463, -0.08576245605945587, 0.107968270778656, -0.24110767245292664, 0.23502057790756226, -0.0815720185637474, -0.25500181317329407, 0.6087648272514343, 0.23991738259792328, -0.4688887298107147, 1.0140081644058228, 0.053571902215480804, 0.5879235863685608, -0.63237464427948, -0.21341021358966827, -0.4498758614063263, 0.1318899691104889, -0.2744668424129486, -0.5620896220207214, -0.29940158128738403, -0.42248210310935974, -0.4545612931251526, 0.4129948318004608, 0.36634308099746704, -0.5276563167572021, -0.5347106456756592, 0.39904260635375977, -0.19481363892555237, 0.7643944621086121, 0.5824031233787537, -0.709137499332428, -0.17534279823303223, 0.39100590348243713, -0.18797600269317627, 0.2508124113082886, 0.4097144305706024, 0.15673625469207764, 0.5210193395614624, 0.39823296666145325, 0.23174096643924713, 0.0006685215048491955, -0.18949250876903534, 0.47111839056015015, -0.9806900024414062, -0.663124144077301, -0.6054461598396301, 0.5432142019271851, -0.29209643602371216, -0.19850000739097595, 1.1261178255081177, 0.6791085004806519, 0.8284040093421936, -0.4381314218044281, 0.8128851652145386, -0.18376915156841278, 0.3750525116920471, -0.4033762812614441, 1.1746951341629028, -0.9554068446159363, 0.04511011764407158, -0.8387783765792847, -0.4971076250076294, 0.29673412442207336, 0.6733702421188354, 0.12390951812267303, 0.23953816294670105, 0.6869377493858337, 0.8261377811431885, 0.10620845854282379, 0.0056247590109705925, 0.27000027894973755, 0.5105623602867126, 0.3558048605918884, 1.3170652389526367, 1.0055664777755737, -1.19389009475708, 0.746335506439209, -0.35728368163108826, -0.08398395776748657, -0.6070360541343689, -0.4828122854232788, -0.6481912732124329, -0.5959987640380859, -0.36143308877944946, -0.6251286268234253, -0.3653107285499573, 0.8153418898582458, 0.4633091986179352, -0.6823537349700928, -1.1566566228866577, 0.2722509205341339, 0.6595155596733093, -0.815123975276947, -0.29717177152633667, 0.70309978723526, 0.283159464597702, -1.0571435689926147, 0.636618435382843, 0.4196453094482422, 0.14212876558303833, -0.11873927712440491, -0.27392131090164185, -0.3354812264442444, 0.42293041944503784, 0.3924941122531891, 0.24646589159965515, -0.7006996273994446, -0.21283075213432312, -0.16475343704223633, -0.02987745963037014, -0.1548682451248169, 0.25239211320877075, -0.38118183612823486, 0.2058248519897461, 0.6488666534423828, -0.16404302418231964, 0.4720987379550934, -0.3399151563644409, 0.4970102608203888, -0.28640803694725037, 0.1832377016544342, -0.0741492435336113, 0.6135029792785645, -0.33378249406814575, -0.5535985231399536, 0.7787012457847595, 0.4789696931838989, -0.7302984595298767, -1.0449937582015991, 0.19376078248023987, -1.5256006717681885, -0.3610486090183258, 1.1380475759506226, 0.013563498854637146, -0.3759865164756775, -0.22832010686397552, -0.24674485623836517, 0.6342055797576904, -0.15450824797153473, 0.6039478778839111, 0.5298356413841248, -0.08948370069265366, -0.23193278908729553, -0.4445926249027252, 0.5856913924217224, 0.10649748891592026, -0.6078325510025024, 0.15409822762012482, 0.30209410190582275, 0.011520372703671455, 0.4998621344566345, 0.6254274845123291, -0.24427999556064606, 0.48143455386161804, -0.2788856625556946, -0.11591324955224991, 0.29073721170425415, -0.2591491639614105, 0.21396784484386444, -0.25884127616882324, 0.01854325644671917, -0.4199519753456116 ]
null
null
null
null
null
null
null
null
null
null
null
null
null
coarse_discourse
null
2023-04-05T10:01:55Z
464
3
coarse-discourse
[ "task_categories:text-classification", "task_ids:multi-class-classification", "annotations_creators:crowdsourced", "language_creators:found", "multilinguality:monolingual", "size_categories:100K<n<1M", "source_datasets:original", "language:en", "license:cc-by-4.0", "region:us" ]
2023-04-05T10:01:55Z
2022-03-02T23:29:22.000Z
2022-03-02T23:29:22
--- annotations_creators: - crowdsourced language: - en language_creators: - found license: - cc-by-4.0 multilinguality: - monolingual pretty_name: Coarse Discourse size_categories: - 100K<n<1M source_datasets: - original task_categories: - text-classification task_ids: - multi-class-classification paperswithcode_id: coarse-discourse dataset_info: features: - name: title dtype: string - name: is_self_post dtype: bool - name: subreddit dtype: string - name: url dtype: string - name: majority_link dtype: string - name: is_first_post dtype: bool - name: majority_type dtype: string - name: id_post dtype: string - name: post_depth dtype: int32 - name: in_reply_to dtype: string - name: annotations sequence: - name: annotator dtype: string - name: link_to_post dtype: string - name: main_type dtype: string splits: - name: train num_bytes: 45443464 num_examples: 116357 download_size: 4636201 dataset_size: 45443464 --- # Dataset Card for "coarse_discourse" ## 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/google-research-datasets/coarse-discourse - **Paper:** [Characterizing Online Discussion Using Coarse Discourse Sequences](https://research.google/pubs/pub46055/) - **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.63 MB - **Size of the generated dataset:** 45.45 MB - **Total amount of disk used:** 50.08 MB ### Dataset Summary A large corpus of discourse annotations and relations on ~10K forum threads. We collect and release a corpus of over 9,000 threads comprising over 100,000 comments manually annotated via paid crowdsourcing with discourse acts and randomly sampled from the site Reddit. ### 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.63 MB - **Size of the generated dataset:** 45.45 MB - **Total amount of disk used:** 50.08 MB An example of 'train' looks as follows. ``` { "annotations": { "annotator": ["fc96a15ab87f02dd1998ff55a64f6478", "e9e4b3ab355135fa954badcc06bfccc6", "31ac59c1734c1547d4d0723ff254c247"], "link_to_post": ["", "", ""], "main_type": ["elaboration", "elaboration", "elaboration"] }, "id_post": "t1_c9b30i1", "in_reply_to": "t1_c9b2nyd", "is_first_post": false, "is_self_post": true, "majority_link": "t1_c9b2nyd", "majority_type": "elaboration", "post_depth": 2, "subreddit": "100movies365days", "title": "DTX120: #87 - Nashville", "url": "https://www.reddit.com/r/100movies365days/comments/1bx6qw/dtx120_87_nashville/" } ``` ### Data Fields The data fields are the same among all splits. #### default - `title`: a `string` feature. - `is_self_post`: a `bool` feature. - `subreddit`: a `string` feature. - `url`: a `string` feature. - `majority_link`: a `string` feature. - `is_first_post`: a `bool` feature. - `majority_type`: a `string` feature. - `id_post`: a `string` feature. - `post_depth`: a `int32` feature. - `in_reply_to`: a `string` feature. - `annotations`: a dictionary feature containing: - `annotator`: a `string` feature. - `link_to_post`: a `string` feature. - `main_type`: a `string` feature. ### Data Splits | name |train | |-------|-----:| |default|116357| ## 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{coarsediscourse, title={Characterizing Online Discussion Using Coarse Discourse Sequences}, author={Zhang, Amy X. and Culbertson, Bryan and Paritosh, Praveen}, booktitle={Proceedings of the 11th International AAAI Conference on Weblogs and Social Media}, series={ICWSM '17}, year={2017}, location = {Montreal, Canada} } ``` ### Contributions Thanks to [@thomwolf](https://github.com/thomwolf), [@lewtun](https://github.com/lewtun), [@jplu](https://github.com/jplu) for adding this dataset.
[ -0.7293136119842529, -0.7922610640525818, 0.3212754726409912, 0.21890924870967865, -0.33643752336502075, 0.07814726233482361, -0.42517587542533875, -0.31364789605140686, 0.6418123841285706, 0.3789711892604828, -0.725779116153717, -0.8994220495223999, -0.655711829662323, 0.09764385968446732, -0.19737087190151215, 1.2185142040252686, -0.07065123319625854, -0.3419223129749298, -0.3237839639186859, -0.2532723546028137, -0.26564761996269226, -0.4318597912788391, -0.4731496274471283, -0.10002560168504715, 0.4095074534416199, 0.4103308320045471, 0.4860207140445709, 0.9021273255348206, 0.6278201341629028, 0.32305610179901123, -0.061490513384342194, 0.09327558428049088, -0.5133384466171265, -0.17197014391422272, -0.030507465824484825, -0.11462696641683578, -0.6048986911773682, -0.015148812904953957, 0.6991972327232361, 0.6530402898788452, -0.15214887261390686, 0.5398229956626892, 0.18173424899578094, 0.6746413707733154, -0.4267321825027466, 0.5577536821365356, -0.2919209897518158, -0.16409173607826233, -0.37286147475242615, -0.10864485055208206, -0.06967386603355408, -0.6579787135124207, -0.18020634353160858, -0.7328542470932007, 0.0070529659278690815, -0.06321730464696884, 1.0023715496063232, 0.08554296940565109, -0.045130323618650436, -0.21470904350280762, -0.46805134415626526, 0.617440938949585, -0.8978117108345032, -0.02230226621031761, 0.6101641058921814, 0.11214692145586014, 0.06825361400842667, -0.778475284576416, -0.5603170990943909, 0.3123345971107483, -0.3748292624950409, 0.18852438032627106, -0.20995356142520905, -0.22471736371517181, 0.48166412115097046, 0.5770795941352844, -0.5581973791122437, -0.21526674926280975, -0.5416809916496277, -0.1078464463353157, 0.9918400645256042, 0.2622934877872467, 0.10500552505254745, -0.5071654319763184, 0.007169009651988745, -0.15573197603225708, -0.3558399975299835, 0.11506461352109909, 0.5585473775863647, 0.6235572695732117, -0.8768365383148193, 0.5298606157302856, -0.10685111582279205, 0.612369179725647, 0.061430223286151886, -0.02728109620511532, 0.530160665512085, -0.7078381776809692, -0.05253616347908974, -0.3562450110912323, 1.1977556943893433, 0.6732389330863953, -0.08008749037981033, 0.24189160764217377, 0.14056968688964844, -0.08260485529899597, -0.04977143928408623, -0.7278481125831604, -0.36911970376968384, 0.4572714567184448, -0.5831294059753418, -0.45278123021125793, 0.15232932567596436, -1.1585248708724976, -0.25013601779937744, -0.34735825657844543, -0.017940187826752663, -0.24167144298553467, -0.5607681274414062, 0.018967801705002785, -0.0714847669005394, 0.3514433801174164, 0.1899634748697281, -0.6004853248596191, 0.5965257287025452, 0.7322799563407898, 0.894730269908905, -0.035891663283109665, -0.08046486228704453, -0.07787883281707764, -0.1398078352212906, 0.025736428797245026, 0.8189184069633484, -0.39132383465766907, -0.3640596866607666, 0.029445113614201546, 0.3120270073413849, -0.009592888876795769, -0.2775398790836334, 1.0054469108581543, -0.0934123694896698, 0.3626371920108795, -0.6394003629684448, -0.5916398763656616, -0.041696734726428986, 0.35486307740211487, -0.7295544147491455, 1.2539652585983276, 0.1713140308856964, -1.0372065305709839, 0.12527160346508026, -0.8714463114738464, -0.40633171796798706, 0.022151637822389603, -0.06468304991722107, -0.5220903754234314, -0.32038071751594543, 0.14331872761249542, 0.4885227382183075, -0.43262115120887756, 0.3257080316543579, -0.3903379738330841, -0.16824214160442352, 0.1967850625514984, 0.007135109510272741, 1.259959101676941, 0.10356038063764572, -0.20954154431819916, 0.07915771007537842, -0.906919002532959, -0.0883503258228302, 0.29514196515083313, -0.15371835231781006, -0.16949418187141418, -0.15512427687644958, 0.28347155451774597, 0.2627902626991272, 0.16651248931884766, -0.5293152928352356, 0.26550889015197754, -0.2522224485874176, 0.5861030220985413, 0.8152304291725159, 0.16083037853240967, 0.3266846239566803, -0.47684311866760254, 0.3835747539997101, 0.11056271195411682, 0.3692357540130615, -0.0716489776968956, -0.5403720140457153, -0.7561300992965698, -0.14661447703838348, 0.5144479274749756, 0.5541763305664062, -0.5283135175704956, 0.8269118070602417, -0.5122279524803162, -0.6379582285881042, -0.6597026586532593, 0.05504711717367172, 0.2826901376247406, 0.5693556070327759, 0.3675733804702759, -0.5087836384773254, -0.8653660416603088, -0.7586209774017334, 0.17308016121387482, -0.2717689275741577, 0.16402208805084229, 0.7411445379257202, 0.809116005897522, 0.02013753540813923, 0.7817904353141785, -0.7830554246902466, -0.23926062881946564, -0.1085052490234375, 0.10542142391204834, 0.26004403829574585, 0.6003122925758362, 0.46291226148605347, -0.7620180249214172, -0.5802888870239258, -0.258806437253952, -0.8576385378837585, -0.12977591156959534, -0.027648692950606346, -0.27968424558639526, 0.12730981409549713, 0.3761613070964813, -0.6701890230178833, 0.3112398087978363, 0.4893363416194916, -0.42966821789741516, 0.40948715806007385, 0.1567603349685669, 0.20613661408424377, -1.219625473022461, 0.32392388582229614, 0.15319228172302246, -0.08429193496704102, -0.3830048143863678, -0.19450834393501282, -0.2614428400993347, 0.0912727415561676, -0.35942575335502625, 0.6220003962516785, -0.24941694736480713, 0.09648588299751282, 0.23062406480312347, 0.18985506892204285, -0.01496792770922184, 0.6678224802017212, -0.13198690116405487, 0.55352783203125, 0.7300799489021301, -0.5144228935241699, 0.2733995020389557, 0.3861932158470154, -0.2998318374156952, 0.6122349500656128, -0.8457145094871521, 0.16375106573104858, -0.1620788723230362, 0.4175165295600891, -1.0016716718673706, -0.4883020222187042, 0.6841586828231812, -0.6266422271728516, 0.2519502341747284, -0.3173917829990387, -0.6197568774223328, -0.5770061612129211, -0.611693799495697, 0.2913481295108795, 0.35726654529571533, -0.010642634704709053, 0.4267590343952179, 0.845609724521637, -0.1791321486234665, -0.3152078092098236, -0.7481250762939453, 0.06674060970544815, -0.14091528952121735, -0.6684224605560303, 0.4319276213645935, -0.27791664004325867, -0.24797925353050232, 0.19232426583766937, 0.38120153546333313, -0.0782504677772522, -0.09768287092447281, 0.2699710428714752, 0.13155484199523926, 0.0016655763611197472, -0.047307681292295456, 0.005156739614903927, -0.0707862377166748, 0.14709024131298065, -0.1920856237411499, 0.4186527132987976, -0.15538962185382843, -0.17131690680980682, -0.5219665169715881, 0.2934492230415344, 0.2835862636566162, -0.10387648642063141, 0.6476098299026489, 0.8058527112007141, -0.23286496102809906, 0.2838767468929291, -0.47901374101638794, -0.28189051151275635, -0.4080890417098999, -0.01751270517706871, -0.0026389537379145622, -0.9361462593078613, 0.8850570917129517, 0.09616484493017197, 0.3802731931209564, 0.6895742416381836, 0.56849205493927, -0.21248093247413635, 0.6982823014259338, 0.2922222912311554, -0.08431985229253769, 0.46458885073661804, -0.5194671154022217, -0.15331514179706573, -0.8098434805870056, -0.12803149223327637, -0.5881574153900146, -0.4837062358856201, -1.0200635194778442, -0.5979175567626953, 0.03210381418466568, -0.32393303513526917, -0.254618376493454, 0.3653212785720825, -0.7422505021095276, 0.36576053500175476, 0.47940948605537415, 0.11551117151975632, 0.10978128761053085, -0.17335964739322662, 0.06539218127727509, -0.21138995885849, -0.6138657331466675, -0.4606165587902069, 1.2546498775482178, 0.35911816358566284, 0.45783060789108276, 0.05044039711356163, 0.6546475887298584, 0.3396300971508026, 0.10373421758413315, -0.48482760787010193, 0.6702689528465271, -0.056796446442604065, -0.5947774648666382, -0.15512624382972717, -0.5034446716308594, -0.9106255769729614, -0.1310073286294937, -0.2634963095188141, -0.4511345624923706, 0.4155437648296356, 0.07805823534727097, -0.28273385763168335, 0.4273442029953003, -0.5130415558815002, 0.9066206216812134, 0.03783537074923515, -0.49627023935317993, 0.13659889996051788, -1.1437504291534424, 0.35277852416038513, 0.3380534052848816, 0.5934233665466309, -0.24718497693538666, 0.03284421190619469, 0.9825656414031982, -0.582108736038208, 1.102679967880249, -0.346222847700119, 0.2143089473247528, 0.6292704343795776, -0.20847155153751373, 0.3881132900714874, 0.07227636873722076, -0.05079645663499832, 0.508732795715332, -0.1809428334236145, -0.37387457489967346, -0.4270946979522705, 0.7043380737304688, -0.7183092832565308, -0.14835579693317413, -0.3595278263092041, -0.3207203447818756, 0.11231941729784012, 0.2048744261264801, 0.1609969139099121, 0.32800206542015076, -0.2611634135246277, 0.290954053401947, 0.7318910360336304, -0.11015313118696213, 0.2967102527618408, 0.1642836630344391, -0.14826847612857819, -0.68551105260849, 0.8246840834617615, 0.16745612025260925, -0.025894856080412865, 0.19636812806129456, 0.20009435713291168, -0.1926015317440033, -0.3206614553928375, -0.5019106268882751, 0.3062242865562439, -0.497001051902771, -0.31376227736473083, -0.6881106495857239, -0.21958357095718384, -0.6048684120178223, 0.028985995799303055, -0.3543495535850525, -0.7170141935348511, -0.3810574412345886, -0.35313233733177185, 0.7254478931427002, 0.4610408544540405, -0.4934198260307312, 0.11264138668775558, -0.512880265712738, 0.13928712904453278, 0.0183560810983181, 0.46911609172821045, -0.07769931107759476, -0.6102266311645508, -0.344557523727417, 0.128797248005867, -0.30322176218032837, -0.4881593585014343, 0.272799551486969, 0.051929742097854614, 0.2145405113697052, -0.025226818397641182, 0.11680343002080917, 0.6630704402923584, -0.17185340821743011, 0.9650487899780273, -0.10379765927791595, -0.6133460998535156, 0.6996573209762573, -0.6988824605941772, 0.44077807664871216, 0.9120708703994751, 0.42918500304222107, -0.48022010922431946, -0.45096129179000854, -0.8834380507469177, -1.0141371488571167, 0.681584358215332, 0.4378325641155243, 0.335833340883255, -0.1253226399421692, 0.34374746680259705, -0.09227313101291656, 0.21960502862930298, -0.796819269657135, -0.8666616082191467, -0.2513678967952728, -0.22007159888744354, 0.22266946732997894, -0.2027233988046646, -0.40233713388442993, -0.7476300597190857, 0.7851675748825073, -0.05521169677376747, 0.4924040138721466, 0.1635870486497879, 0.17465296387672424, -0.19525638222694397, 0.16414982080459595, 0.5311325192451477, 0.5323570966720581, -0.2256411463022232, -0.06130048260092735, -0.08459966629743576, -0.5388046503067017, -0.1863759607076645, 0.40836048126220703, -0.47333112359046936, 0.07270053029060364, 0.2517654597759247, 0.7962639927864075, 0.4410835802555084, -0.2799546420574188, 0.5108374953269958, -0.290219247341156, -0.5176998972892761, -0.4155040383338928, -0.19765157997608185, 0.1811661571264267, 0.028659066185355186, 0.1540350466966629, -0.0423097088932991, 0.07119927555322647, -0.44043511152267456, 0.2452896237373352, 0.10821769386529922, -0.33591699600219727, -0.42516613006591797, 0.5631464123725891, 0.1959846466779709, -0.1748308688402176, 0.40322282910346985, -0.41469597816467285, -0.3592953681945801, 0.5129489302635193, 0.0471748486161232, 0.8050982356071472, 0.036036234349012375, 0.3197694718837738, 0.9397181868553162, 0.2795325219631195, 0.03894277289509773, 0.4174845814704895, -0.07834184914827347, -0.6108942627906799, -0.3484114408493042, -0.5832974314689636, -0.1864241659641266, 0.1257399171590805, -0.7140617370605469, 0.44185754656791687, -0.6480907797813416, -0.34728488326072693, 0.13228856027126312, 0.25075092911720276, -0.5577861666679382, -0.04817579314112663, -0.04661537706851959, 0.7705650329589844, -0.9315905570983887, 0.47556164860725403, 0.6074740290641785, -0.6503053307533264, -0.8049885630607605, -0.239619642496109, 0.34927958250045776, -0.3137541115283966, 0.11440768092870712, -0.15126581490039825, 0.42477312684059143, -0.004817446693778038, -0.9178393483161926, -0.7288713455200195, 1.1539535522460938, 0.19719646871089935, -0.3142780661582947, 0.1437532603740692, 0.19985203444957733, 0.6215155124664307, -0.31833288073539734, 0.34162038564682007, 0.5590805411338806, 0.7122635841369629, 0.32204368710517883, -0.7742911577224731, 0.3023524284362793, -0.5231727957725525, -0.2768513262271881, 0.18961185216903687, -0.942089855670929, 0.7467934489250183, 0.12369351089000702, -0.19431711733341217, -0.25426071882247925, 0.6843149662017822, 0.2151835411787033, 0.1554134637117386, 0.34509173035621643, 0.8322157859802246, 0.764569103717804, -0.3514059782028198, 1.1893606185913086, -0.3980090618133545, 0.5822553038597107, 1.2320040464401245, 0.07577458024024963, 0.6714394688606262, 0.2686272859573364, -0.46868857741355896, 0.7371140718460083, 0.7053974270820618, -0.2148839384317398, 0.299994558095932, 0.05226154625415802, -0.08680997788906097, -0.0421578511595726, -0.3579551577568054, -0.4906245768070221, 0.3220404386520386, 0.4020684063434601, -0.40217745304107666, -0.06295677274465561, -0.2484796792268753, 0.49512702226638794, 0.12306272238492966, -0.18802155554294586, 1.0434138774871826, 0.0629107654094696, -0.514655351638794, 0.5441376566886902, -0.1692783683538437, 0.7090576887130737, -0.5324463248252869, 0.012539995834231377, -0.22425808012485504, -0.0022126345429569483, -0.4564293622970581, -1.1245503425598145, 0.6756986975669861, 0.048130057752132416, -0.22436809539794922, -0.3460567891597748, 0.7552978992462158, -0.4080406129360199, -0.8000385761260986, 0.1790304034948349, 0.3680718243122101, 0.2380421757698059, 0.3515744209289551, -1.1741540431976318, 0.49687498807907104, 0.0167216956615448, -0.42778706550598145, 0.30767831206321716, 0.4730614423751831, 0.15076172351837158, 0.32083213329315186, 0.6391943693161011, 0.031068924814462662, -0.18833193182945251, 0.1757141649723053, 1.1004128456115723, -0.626522958278656, -0.272646427154541, -0.8191313743591309, 0.8125067949295044, -0.4059862494468689, -0.42139023542404175, 0.7767172455787659, 0.8076484203338623, 1.009652853012085, 0.15488100051879883, 0.8618277907371521, -0.7625986933708191, 0.71169114112854, -0.1509486734867096, 0.7039170861244202, -0.5546534061431885, 0.08784350007772446, -0.5919424295425415, -0.5298249125480652, -0.4469829201698303, 0.6133358478546143, -0.1964993178844452, 0.16472245752811432, 0.47639143466949463, 0.9209269881248474, 0.02957826294004917, 0.20926937460899353, -0.22959217429161072, 0.4732701778411865, 0.169673889875412, 0.3677620589733124, 0.27053800225257874, -0.7704538106918335, 0.5297884941101074, -0.6142628788948059, -0.13946688175201416, -0.0022412994876503944, -0.8884741067886353, -0.7223681211471558, -0.9392914175987244, -0.6439819931983948, -0.6435577869415283, -0.06862969696521759, 0.966877281665802, 0.6392673850059509, -0.811833381652832, -0.49280664324760437, -0.09869986772537231, 0.24626581370830536, -0.11977703869342804, -0.36000627279281616, 0.4369066059589386, 0.16900098323822021, -0.6311303973197937, -0.2427690029144287, 0.11392995715141296, -0.13484762609004974, -0.1869381070137024, 0.028618844226002693, -0.6197516322135925, -0.12701255083084106, 0.5653411746025085, 0.51058429479599, -0.40448397397994995, -0.10453569144010544, -0.04649002477526665, -0.06265877932310104, 0.3321807384490967, 0.5585870742797852, -0.43079856038093567, 0.21732936799526215, 0.5108546018600464, 0.3198661506175995, 0.6992400884628296, 0.17584608495235443, 0.2327565997838974, -0.8005426526069641, 0.12953704595565796, 0.27117326855659485, 0.23919089138507843, 0.5517862439155579, -0.3165897727012634, 0.8608390092849731, 0.4596901834011078, -0.6409505605697632, -0.7798540592193604, -0.19627344608306885, -1.2327708005905151, -0.00897252932190895, 1.274284839630127, -0.17181304097175598, -0.4142399728298187, -0.22824014723300934, -0.18927164375782013, 0.14694121479988098, -0.6986416578292847, 0.6156191229820251, 0.8816033601760864, 0.0027553807012736797, -0.1579158753156662, -0.6390300393104553, 0.613671600818634, -0.08454063534736633, -1.1019536256790161, 0.35146650671958923, 0.5272210836410522, 0.1493496149778366, 0.22504015266895294, 1.0274648666381836, -0.36729297041893005, 0.03587581589818001, -0.1095990315079689, 0.06307074427604675, 0.019061148166656494, 0.09266050159931183, -0.2535516023635864, -0.037796907126903534, -0.32055607438087463, 0.05655033513903618 ]
null
null
null
null
null
null
null
null
null
null
null
null
null
hansards
null
2023-04-05T10:07:00Z
462
0
null
[ "region:us" ]
2023-04-05T10:07:00Z
2022-03-02T23:29:22.000Z
2022-03-02T23:29:22
--- paperswithcode_id: null pretty_name: hansards dataset_info: - config_name: senate features: - name: fr dtype: string - name: en dtype: string splits: - name: test num_bytes: 5711686 num_examples: 25553 - name: train num_bytes: 40324278 num_examples: 182135 download_size: 15247360 dataset_size: 46035964 - config_name: house features: - name: fr dtype: string - name: en dtype: string splits: - name: test num_bytes: 22906629 num_examples: 122290 - name: train num_bytes: 191459584 num_examples: 947969 download_size: 67584000 dataset_size: 214366213 --- # Dataset Card for "hansards" ## 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.isi.edu/natural-language/download/hansard/](https://www.isi.edu/natural-language/download/hansard/) - **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:** 82.83 MB - **Size of the generated dataset:** 260.40 MB - **Total amount of disk used:** 343.23 MB ### Dataset Summary This release contains 1.3 million pairs of aligned text chunks (sentences or smaller fragments) from the official records (Hansards) of the 36th Canadian Parliament. The complete Hansards of the debates in the House and Senate of the 36th Canadian Parliament, as far as available, were aligned. The corpus was then split into 5 sets of sentence pairs: training (80% of the sentence pairs), two sets of sentence pairs for testing (5% each), and two sets of sentence pairs for final evaluation (5% each). The current release consists of the training and testing sets. The evaluation sets are reserved for future MT evaluation purposes and currently not available. Caveats 1. This release contains only sentence pairs. Even though the order of the sentences is the same as in the original, there may be gaps resulting from many-to-one, many-to-many, or one-to-many alignments that were filtered out. Therefore, this release may not be suitable for discourse-related research. 2. Neither the sentence splitting nor the alignments are perfect. In particular, watch out for pairs that differ considerably in length. You may want to filter these out before you do any statistical training. The alignment of the Hansards was performed as part of the ReWrite project under funding from the DARPA TIDES program. ### 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 #### house - **Size of downloaded dataset files:** 67.58 MB - **Size of the generated dataset:** 214.37 MB - **Total amount of disk used:** 281.95 MB An example of 'train' looks as follows. ``` { "en": "Mr. Walt Lastewka (Parliamentary Secretary to Minister of Industry, Lib.):", "fr": "M. Walt Lastewka (secrétaire parlementaire du ministre de l'Industrie, Lib.):" } ``` #### senate - **Size of downloaded dataset files:** 15.25 MB - **Size of the generated dataset:** 46.03 MB - **Total amount of disk used:** 61.28 MB An example of 'train' looks as follows. ``` { "en": "Mr. Walt Lastewka (Parliamentary Secretary to Minister of Industry, Lib.):", "fr": "M. Walt Lastewka (secrétaire parlementaire du ministre de l'Industrie, Lib.):" } ``` ### Data Fields The data fields are the same among all splits. #### house - `fr`: a `string` feature. - `en`: a `string` feature. #### senate - `fr`: a `string` feature. - `en`: a `string` feature. ### Data Splits | name |train | test | |------|-----:|-----:| |house |947969|122290| |senate|182135| 25553| ## 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 [@patrickvonplaten](https://github.com/patrickvonplaten), [@thomwolf](https://github.com/thomwolf), [@albertvillanova](https://github.com/albertvillanova) for adding this dataset.
[ -0.5630632042884827, -0.5782579183578491, 0.21254552900791168, 0.08546039462089539, -0.3039170205593109, -0.07911523431539536, -0.40315139293670654, -0.39319920539855957, 0.6362316608428955, 0.5780997276306152, -0.7076303362846375, -0.8894312381744385, -0.6000580787658691, 0.0816119834780693, -0.11600666493177414, 1.1674208641052246, -0.118361696600914, -0.21879611909389496, -0.4203214645385742, -0.27052274346351624, -0.38025161623954773, -0.4892544448375702, -0.22626830637454987, -0.23542021214962006, 0.45249927043914795, 0.6312417387962341, 0.679633378982544, 1.1140869855880737, 0.6251571774482727, 0.2626360058784485, -0.0778234526515007, -0.15512074530124664, -0.43148180842399597, -0.1795797497034073, 0.04924483224749565, -0.16937069594860077, -0.7316687107086182, 0.11609400063753128, 0.6867950558662415, 0.6930968761444092, -0.2872195839881897, 0.6107744574546814, 0.11419020593166351, 0.9951691627502441, -0.4172539710998535, 0.6854934096336365, -0.18391603231430054, -0.2179541289806366, -0.5547425150871277, 0.062159791588783264, -0.09538788348436356, -0.420205682516098, -0.10465647280216217, -0.7600140571594238, 0.07655324041843414, 0.10346204787492752, 0.8884080648422241, 0.19330133497714996, -0.038585517555475235, -0.1544661968946457, -0.2179744839668274, 0.5908303260803223, -0.8028631210327148, 0.18292845785617828, 0.6608603596687317, 0.2104305624961853, 0.12654677033424377, -0.606464684009552, -0.4388161599636078, 0.2223118394613266, -0.27684441208839417, 0.21129068732261658, -0.0397997610270977, -0.24134603142738342, 0.6420132517814636, 0.6421303749084473, -0.7334110140800476, -0.1788133680820465, -0.6554068922996521, -0.06423849612474442, 1.2814278602600098, 0.3201550543308258, 0.14219029247760773, -0.4059991240501404, -0.02156541869044304, -0.532683253288269, -0.47163814306259155, 0.0008211750537157059, 0.6315544247627258, 0.6497668623924255, -0.9706475138664246, 0.6571149826049805, -0.13296692073345184, 0.582829475402832, -0.21415287256240845, 0.15722617506980896, 0.7081044316291809, -0.4777221977710724, -0.2578270137310028, -0.0902651846408844, 0.8229326605796814, 0.519947350025177, 0.013335883617401123, 0.2322450578212738, 0.013883467763662338, -0.031685784459114075, -0.05986717343330383, -0.6487661004066467, -0.4717886447906494, 0.5646805167198181, -0.6696882843971252, -0.3644827902317047, 0.22326059639453888, -1.133601427078247, -0.17845484614372253, -0.5798654556274414, 0.06028607860207558, -0.2173779159784317, -0.5715955495834351, 0.1448461413383484, -0.2561914026737213, 0.4115074574947357, 0.14081309735774994, -0.6347991824150085, 0.33763980865478516, 0.5845791101455688, 0.5899125933647156, -0.06422270834445953, -0.37090879678726196, -0.24309635162353516, -0.09705378115177155, -0.09908090531826019, 0.5533329248428345, -0.3369987905025482, -0.46765217185020447, 0.008696049451828003, 0.3745879530906677, -0.061868008226156235, -0.4462002217769623, 0.8005256652832031, -0.1156817376613617, 0.408727765083313, -0.7527701258659363, -0.5264461636543274, -0.04032229259610176, 0.19493702054023743, -0.8431734442710876, 1.3048017024993896, 0.33451664447784424, -0.9149153232574463, 0.18696171045303345, -0.9282017946243286, -0.4239727258682251, 0.15325738489627838, 0.0376664474606514, -0.6163904070854187, -0.2884986400604248, 0.09884260594844818, 0.5439942479133606, -0.4758242070674896, 0.46942275762557983, -0.4138299524784088, -0.10506114363670349, 0.05541311204433441, 0.1413787305355072, 1.49290132522583, 0.17115041613578796, -0.08172732591629028, 0.13963302969932556, -0.926730751991272, -0.15476708114147186, 0.5131422281265259, -0.2570337951183319, 0.029127521440386772, -0.2884750962257385, 0.5235427021980286, 0.08888909965753555, 0.17293193936347961, -0.43654492497444153, 0.3699893653392792, -0.0841476246714592, 0.3171503245830536, 0.7256568670272827, -0.0216473750770092, 0.32444629073143005, -0.5636664032936096, 0.39828184247016907, 0.11525644361972809, 0.43158984184265137, -0.05065850913524628, -0.5794678926467896, -0.5950157046318054, -0.11323850601911545, 0.5504937767982483, 0.6284317374229431, -0.6296729445457458, 0.8226722478866577, -0.4540661871433258, -0.6893182992935181, -0.5363113284111023, 0.08529818803071976, 0.25888946652412415, 0.41348937153816223, 0.3749278783798218, -0.5182403922080994, -0.7278252840042114, -0.9235427379608154, 0.10053908824920654, -0.29602083563804626, 0.14102803170681, 0.48592880368232727, 0.8291392922401428, -0.07143688946962357, 0.8233979940414429, -0.771125078201294, -0.14826908707618713, -0.16909605264663696, -0.07126552611589432, 0.2080344259738922, 0.6213431358337402, 0.5694495439529419, -0.7544341087341309, -0.45965078473091125, -0.3265692889690399, -0.8411887884140015, -0.11987768113613129, 0.015502138994634151, -0.226454496383667, 0.12703609466552734, 0.21324364840984344, -0.5513782501220703, 0.37423744797706604, 0.5515061020851135, -0.4661954343318939, 0.4592592120170593, 0.1009988784790039, -0.0960320383310318, -1.2405275106430054, 0.41458413004875183, 0.1516561359167099, 0.014964237809181213, -0.41437026858329773, -0.1531410813331604, -0.14099788665771484, -0.13486182689666748, -0.310865193605423, 0.6651769280433655, -0.4428613483905792, 0.07280716300010681, 0.29520925879478455, 0.03627490624785423, 0.0060529159381985664, 0.6026167869567871, -0.07050089538097382, 0.5274734497070312, 0.9201595187187195, -0.44803905487060547, 0.30400463938713074, 0.7122810482978821, -0.24684154987335205, 0.61720871925354, -0.6633792519569397, 0.081651471555233, -0.28640952706336975, 0.28555792570114136, -0.6655478477478027, -0.5574740171432495, 0.6917740702629089, -0.4825664758682251, 0.49187740683555603, -0.1626768410205841, -0.6261040568351746, -0.5212389230728149, -0.5820139050483704, 0.11225822567939758, 0.47456976771354675, -0.23562128841876984, 0.4206230640411377, 0.8461849689483643, -0.12799853086471558, -0.3493449091911316, -0.8530967831611633, 0.1262083798646927, -0.21965345740318298, -0.6541717052459717, 0.30549192428588867, -0.37281107902526855, -0.24177736043930054, 0.12683551013469696, 0.36528053879737854, 0.0907970443367958, -0.11952753365039825, 0.2616448402404785, 0.2597207725048065, -0.03378169238567352, -0.10035613179206848, -0.079019695520401, -0.17037257552146912, 0.13084624707698822, 0.02428467757999897, 0.16604109108448029, -0.09324951469898224, -0.15612070262432098, -0.36950257420539856, 0.32950010895729065, 0.3668586313724518, -0.1507681906223297, 0.6087842583656311, 0.7284919619560242, -0.27024635672569275, 0.14019078016281128, -0.45027241110801697, -0.2808076739311218, -0.3925648331642151, 0.03090413473546505, -0.02620643749833107, -0.6947054862976074, 0.8116366267204285, 0.20811007916927338, 0.32222384214401245, 0.7784413695335388, 0.49579280614852905, 0.03653382509946823, 0.4758102595806122, 0.4089461863040924, -0.2697286009788513, 0.4414055049419403, -0.5310717225074768, -0.22290822863578796, -0.7898550629615784, -0.2567979395389557, -0.5873527526855469, -0.3271631896495819, -0.9108301401138306, -0.3548009395599365, 0.0026130061596632004, -0.1998661607503891, -0.34045031666755676, 0.5117307901382446, -0.7775182723999023, 0.24955308437347412, 0.6180831789970398, 0.10738171637058258, -0.09274482727050781, 0.006473194342106581, 0.18571946024894714, -0.0489116869866848, -0.6540066003799438, -0.39549508690834045, 1.2381550073623657, 0.49589309096336365, 0.3478524088859558, 0.020325537770986557, 0.7386317849159241, 0.4162142276763916, 0.12832753360271454, -0.345554381608963, 0.5989383459091187, -0.06006210297346115, -0.6884321570396423, -0.2857675850391388, -0.4501561224460602, -0.833565890789032, -0.16254647076129913, -0.27646151185035706, -0.4058777987957001, 0.5342992544174194, 0.03089805692434311, -0.07518213242292404, 0.345064640045166, -0.7319207787513733, 0.9870492219924927, -0.1262691169977188, -0.40486499667167664, 0.18408535420894623, -1.2168208360671997, 0.1968386471271515, 0.20240452885627747, 0.4012957215309143, -0.33347487449645996, 0.19199632108211517, 1.1460611820220947, -0.49264729022979736, 1.0806100368499756, -0.46520185470581055, 0.14439210295677185, 0.4983154237270355, -0.3010655343532562, 0.34831759333610535, -0.0973396897315979, -0.27577677369117737, 0.6636248826980591, -0.0030051185749471188, -0.4464073181152344, -0.21505309641361237, 0.42705538868904114, -0.663245677947998, -0.09209208935499191, -0.4617113769054413, -0.5719720721244812, 0.10918650776147842, 0.24206586182117462, 0.20241966843605042, 0.35757899284362793, -0.23524059355258942, 0.19360578060150146, 0.4901314079761505, -0.23044635355472565, 0.2386673092842102, 0.15515384078025818, -0.13011932373046875, -0.7167428135871887, 0.8980436325073242, 0.3245556652545929, -0.14119358360767365, 0.1256863921880722, 0.15894877910614014, -0.2838272154331207, -0.22386382520198822, -0.6921650767326355, 0.3935707211494446, -0.5042816996574402, -0.3562152683734894, -0.47190409898757935, -0.18133512139320374, -0.6295958161354065, 0.007342109922319651, -0.2026052325963974, -0.6205726265907288, -0.30873873829841614, -0.2750517427921295, 0.6936931014060974, 0.6287506818771362, -0.5920975208282471, 0.25761473178863525, -0.5615419745445251, 0.05018215253949165, -0.08776850998401642, 0.5616496205329895, -0.17130613327026367, -0.3664965033531189, -0.4456055164337158, 0.06982539594173431, -0.25089648365974426, -0.5721790194511414, 0.28652963042259216, -0.12097644060850143, 0.38054683804512024, -0.004484741948544979, 0.18481218814849854, 0.4195723533630371, -0.17612791061401367, 1.010008454322815, -0.07130637019872665, -0.7082480192184448, 0.5487135052680969, -0.6490194797515869, 0.2554778456687927, 0.8808578848838806, 0.3122415840625763, -0.4042148292064667, -0.0637885332107544, -1.0241981744766235, -0.9254346489906311, 0.9396527409553528, 0.35797396302223206, 0.08471901714801788, 0.12174397706985474, 0.36781907081604004, -0.06249149888753891, 0.3303029239177704, -0.5799614191055298, -0.8412943482398987, -0.11771942675113678, -0.2139444500207901, -0.066507987678051, -0.3917804956436157, -0.40235087275505066, -0.6232619285583496, 0.921798586845398, 0.09181191027164459, 0.3618900179862976, 0.08602084964513779, 0.1616310477256775, -0.25268012285232544, 0.10114371031522751, 0.5022563338279724, 0.5556904673576355, -0.46170517802238464, -0.18864983320236206, 0.013680458068847656, -0.602816641330719, -0.24696752429008484, 0.46518221497535706, -0.23254290223121643, 0.033521868288517, 0.36195698380470276, 0.8341689705848694, 0.03372509032487869, -0.3007800877094269, 0.4878038763999939, -0.016821637749671936, -0.5321707129478455, -0.4289294481277466, -0.18317072093486786, 0.19247238337993622, 0.043804652988910675, 0.02742893435060978, -0.11746440827846527, 0.06446351110935211, -0.3437998294830322, 0.3763073980808258, 0.042751245200634, -0.3054763972759247, -0.4462093412876129, 0.5717139840126038, 0.11308620870113373, -0.15592798590660095, 0.664726734161377, -0.24155063927173615, -0.44011977314949036, 0.6215266585350037, 0.09821659326553345, 0.757919192314148, -0.18950124084949493, 0.255660742521286, 0.764499843120575, 0.4143070578575134, -0.04681083932518959, 0.5488417148590088, -0.09616407752037048, -0.6033264994621277, -0.13489629328250885, -0.47618916630744934, -0.3664873540401459, 0.04178795963525772, -0.9863845109939575, 0.44684016704559326, -0.3628486692905426, -0.20189516246318817, 0.028809985145926476, 0.34181854128837585, -0.7544190287590027, 0.09368731081485748, 0.055401939898729324, 1.0180712938308716, -1.2357114553451538, 0.5497152805328369, 0.6681053042411804, -0.6851748824119568, -0.8474956750869751, -0.2510043978691101, 0.3260232210159302, -0.5070000290870667, 0.19238382577896118, -0.05422751605510712, 0.573997437953949, -0.08772296458482742, -0.9190739393234253, -0.6553811430931091, 1.185710072517395, 0.3686537742614746, -0.42864790558815, 0.30887508392333984, 0.2896048426628113, 0.4410988688468933, -0.21279273927211761, 0.15902595221996307, 0.6714370250701904, 0.8823342323303223, 0.11581989377737045, -0.7604809403419495, 0.20136581361293793, -0.5582152605056763, -0.2359144687652588, 0.1568169742822647, -0.8075916767120361, 0.7436436414718628, 0.12487354874610901, -0.17413382232189178, -0.3390067219734192, 0.5514565110206604, 0.2929551601409912, 0.361979603767395, 0.35845327377319336, 0.8971841335296631, 0.8653265833854675, -0.22714266180992126, 1.2285585403442383, -0.29936155676841736, 0.4984996020793915, 1.0013699531555176, -0.24227623641490936, 0.6668915748596191, 0.3149784207344055, -0.4824056923389435, 0.49301740527153015, 0.7317298650741577, -0.3081907033920288, 0.21463024616241455, 0.20887017250061035, 0.11872845888137817, -0.033907730132341385, -0.2939923107624054, -0.630683183670044, 0.2712356746196747, 0.32126373052597046, -0.28781214356422424, -0.16255097091197968, -0.15106558799743652, 0.30748024582862854, -0.09471487998962402, -0.006660608109086752, 0.795378565788269, 0.0634985864162445, -0.218258336186409, 0.42847391963005066, -0.1943144053220749, 0.4721825420856476, -0.5119445323944092, -0.041346315294504166, -0.14881287515163422, -0.02003491297364235, -0.4339616596698761, -1.1430258750915527, 0.6848142147064209, -0.10254289209842682, -0.3526492416858673, -0.4474885165691376, 0.5829339027404785, -0.44572940468788147, -0.6960026621818542, 0.22408506274223328, 0.47029781341552734, 0.4298945367336273, 0.20311440527439117, -1.196213722229004, 0.5907564759254456, 0.12620599567890167, -0.4507058560848236, 0.31082066893577576, 0.3491111993789673, 0.013903209939599037, 0.2297355681657791, 0.6652037501335144, 0.05463113635778427, -0.31728994846343994, 0.16099558770656586, 1.0210994482040405, -0.5915445685386658, -0.30155161023139954, -0.6185759902000427, 0.8614042401313782, -0.3369198143482208, -0.40457668900489807, 0.7362774610519409, 1.0051753520965576, 1.0472252368927002, -0.023002909496426582, 0.8618563413619995, -0.5925196409225464, 0.6931154131889343, -0.2830893397331238, 0.7506090402603149, -0.661187469959259, 0.0746162086725235, -0.4055805504322052, -0.819689154624939, -0.5372762680053711, 0.43402212858200073, -0.2962390184402466, 0.11748556792736053, 0.311805784702301, 0.873807966709137, -0.04379896819591522, 0.25721773505210876, -0.02707687020301819, 0.228766068816185, 0.16716240346431732, 0.29920974373817444, 0.22059854865074158, -0.8329609632492065, 0.2713777422904968, -0.6575954556465149, -0.13797800242900848, -0.030010420829057693, -0.9339849948883057, -0.7479923367500305, -1.0621124505996704, -0.6588963270187378, -0.6000328063964844, -0.07655632495880127, 1.030908226966858, 0.6849441528320312, -0.8658150434494019, -0.5993315577507019, 0.14143028855323792, 0.07703650742769241, -0.09629354625940323, -0.30222541093826294, 0.7580179572105408, 0.2752421796321869, -0.5224450826644897, -0.06112898886203766, 0.07871808856725693, -0.0996699258685112, -0.0797707661986351, -0.08598549664020538, -0.35367351770401, -0.25907453894615173, 0.5244609713554382, 0.4773629307746887, -0.27131539583206177, -0.00920345913618803, -0.0487927682697773, -0.045910052955150604, 0.23855891823768616, 0.5662859678268433, -0.33515703678131104, 0.19701597094535828, 0.6161017417907715, 0.3913002014160156, 0.6416689157485962, 0.10954690724611282, 0.22677819430828094, -0.7168256044387817, 0.16806679964065552, 0.10153862833976746, 0.331305593252182, 0.5882039666175842, -0.5054333209991455, 0.9597809314727783, 0.3945007026195526, -0.6258014440536499, -0.862442672252655, -0.15476945042610168, -1.3039995431900024, 0.0018344296840950847, 1.1317683458328247, 0.17165184020996094, -0.5107910633087158, -0.1731129139661789, -0.1432722955942154, 0.19257852435112, -0.6256687045097351, 0.3726690709590912, 0.79234379529953, 0.05440329387784004, -0.06335017830133438, -0.613740861415863, 0.5173248052597046, 0.0671769231557846, -1.0100939273834229, 0.5494983196258545, 0.5880971550941467, 0.15424585342407227, 0.17370562255382538, 0.8774546980857849, -0.32955920696258545, -0.07855957001447678, 0.057804182171821594, 0.4230572581291199, -0.25193116068840027, -0.10571835190057755, -0.4286220669746399, -0.2457224726676941, -0.28395795822143555, -0.11869367957115173 ]
null
null
null
null
null
null
null
null
null
null
null
null
null
numeric_fused_head
null
2023-06-01T14:59:47Z
462
1
numeric-fused-head
[ "task_categories:token-classification", "annotations_creators:crowdsourced", "annotations_creators:expert-generated", "annotations_creators:machine-generated", "language_creators:found", "multilinguality:monolingual", "size_categories:100K<n<1M", "size_categories:1K<n<10K", "source_datasets:original", "language:en", "license:mit", "fused-head-identification", "region:us" ]
2023-06-01T14:59:47Z
2022-03-02T23:29:22.000Z
2022-03-02T23:29:22
--- annotations_creators: - crowdsourced - expert-generated - machine-generated language_creators: - found language: - en license: - mit multilinguality: - monolingual size_categories: - 100K<n<1M - 1K<n<10K source_datasets: - original task_categories: - token-classification task_ids: [] paperswithcode_id: numeric-fused-head pretty_name: Numeric Fused Heads tags: - fused-head-identification dataset_info: - config_name: identification features: - name: tokens sequence: string - name: start_index dtype: int32 - name: end_index dtype: int32 - name: label dtype: class_label: names: '0': neg '1': pos splits: - name: train num_bytes: 22290345 num_examples: 165606 - name: test num_bytes: 68282 num_examples: 500 - name: validation num_bytes: 2474528 num_examples: 18401 download_size: 24407520 dataset_size: 24833155 - config_name: resolution features: - name: tokens sequence: string - name: line_indices sequence: int32 - name: head sequence: string - name: speakers sequence: string - name: anchors_indices sequence: int32 splits: - name: train num_bytes: 19766437 num_examples: 7412 - name: test num_bytes: 2743071 num_examples: 1000 - name: validation num_bytes: 2633549 num_examples: 1000 download_size: 24923403 dataset_size: 25143057 config_names: - identification - resolution --- # Dataset Card for Numeric Fused Heads ## 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:** [The Numeric Fused-Head demo](https://nlp.biu.ac.il/~lazary/fh/) - **Repository:** [Github Repo](https://github.com/yanaiela/num_fh) - **Paper:** [Where’s My Head? Definition, Dataset and Models for Numeric Fused-Heads Identification and Resolution](https://www.mitpressjournals.org/doi/full/10.1162/tacl_a_00280) - **Leaderboard:** [NLP Progress](http://nlpprogress.com/english/missing_elements.html) - **Point of Contact:** [Yanai Elazar](https://yanaiela.github.io), [Yoav Goldberg](https://www.cs.bgu.ac.il/~yoavg/uni/) ### Dataset Summary [More Information Needed] ### Supported Tasks and Leaderboards - Numeric Fused Head Identification - Numeric Fused Head Resolution ### Languages English ## Dataset Structure ### Data Instances ## Identification ``` { "tokens": ["It", "’s", "a", "curious", "thing", ",", "the", "death", "of", "a", "loved", "one", "."] "start_index": 11 "end_index": 12 "label": 1 } ``` ## Resolution ``` { "tokens": ["I", "'m", "eighty", "tomorrow", ".", "Are", "you", "sure", "?"], "line_indices": [0, 0, 0, 0, 0, 1, 1, 1, 1], "head": ["AGE"], "speakers": ["John Doe", "John Doe", "John Doe", "John Doe", "John Doe", "Joe Bloggs", "Joe Bloggs", "Joe Bloggs", "Joe Bloggs"], "anchors_indices": [2] } ``` ### Data Fields ## Identification - `tokens` - List of token strings as tokenized with [Spacy](spacy.io). - `start_index` - Start index of the anchor. - `end_index` - End index of the anchor. - `label` - "pos" or "neg" depending on whether this example contains a numeric fused head. ## Resolution - `tokens` - List of token strings as tokenized with [Spacy](spacy.io) - `line_indices` - List of indices indicating line number (one for each token) - `head` - Reference to the missing head. If the head exists elsewhere in the sentence this is given as a token index. - `speakers` - List of speaker names (one for each token) - `anchors_indices` - Index to indicate which token is the anchor (the visible number) ### Data Splits Train, Test, Dev [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 MIT License ### Citation Information ``` @article{doi:10.1162/tacl\_a\_00280, author = {Elazar, Yanai and Goldberg, Yoav}, title = {Where’s My Head? Definition, Data Set, and Models for Numeric Fused-Head Identification and Resolution}, journal = {Transactions of the Association for Computational Linguistics}, volume = {7}, number = {}, pages = {519-535}, year = {2019}, doi = {10.1162/tacl\_a\_00280}, } ``` ### Contributions Thanks to [@ghomasHudson](https://github.com/ghomasHudson) for adding this dataset.
[ -0.5778501629829407, -0.7633169293403625, 0.2737045884132385, 0.3627271354198456, -0.14477883279323578, 0.25812041759490967, -0.38574790954589844, -0.26943838596343994, 0.7523653507232666, 0.5193926692008972, -1.006088137626648, -1.0016953945159912, -0.5433575510978699, 0.3525920808315277, -0.1324053853750229, 1.1120086908340454, 0.3249674439430237, -0.23790907859802246, -0.14550139009952545, -0.17439311742782593, -0.5914342999458313, -0.3227393925189972, -0.3471153676509857, -0.2404671311378479, 0.5350233912467957, 0.6232584714889526, 0.8411074876785278, 1.076866626739502, 0.6257164478302002, 0.2689451277256012, -0.113877072930336, 0.1527809351682663, -0.43195322155952454, -0.15276698768138885, -0.32214146852493286, -0.00209017563611269, -0.6902094483375549, -0.014312868006527424, 0.8298367261886597, 1.0604002475738525, 0.18677613139152527, 0.3754921555519104, 0.010584060102701187, 0.5428804159164429, -0.39215391874313354, 0.5335942506790161, -0.6029999852180481, -0.159311905503273, -0.5433993339538574, -0.2887222170829773, -0.15664632618427277, -0.24823743104934692, 0.06664198637008667, -0.5568819642066956, 0.09028811007738113, -0.004979787394404411, 0.8831889629364014, 0.310723215341568, -0.3270316421985626, -0.07998239248991013, -0.3357532024383545, 0.9124897718429565, -0.8311925530433655, 0.19866374135017395, 0.5247898697853088, 0.16709044575691223, -0.13797414302825928, -0.7436302304267883, -0.7760909199714661, 0.336551696062088, -0.22413745522499084, 0.23531116545200348, -0.2640482485294342, -0.12619097530841827, 0.34057706594467163, 0.36687159538269043, -0.7569869160652161, -0.20278075337409973, -0.5801748037338257, -0.18146520853042603, 0.8912822604179382, 0.13803331553936005, 0.3805990517139435, -0.5361392498016357, -0.06362650543451309, -0.29727494716644287, -0.45147961378097534, -0.1885521113872528, 0.44302210211753845, 0.6822478771209717, -0.6824078559875488, 0.8261788487434387, -0.2694544792175293, 0.8960682153701782, 0.17390766739845276, -0.36133521795272827, 0.8734375834465027, -0.437195360660553, -0.056779827922582626, 0.0127634909003973, 1.0303668975830078, 0.47137945890426636, 0.07000523060560226, -0.025896066799759865, 0.18892942368984222, -0.10150017589330673, 0.13015161454677582, -0.4081786572933197, -0.059354882687330246, 0.5227896571159363, -0.46310296654701233, -0.3613184988498688, 0.1890946328639984, -0.8438608050346375, -0.15061770379543304, -0.25368016958236694, 0.25184932351112366, -0.5038432478904724, -0.4752771556377411, -0.022176750004291534, -0.12518440186977386, 0.42862212657928467, -0.19507244229316711, -0.8552847504615784, 0.15251712501049042, 0.8514887690544128, 0.9927244782447815, -0.25879037380218506, -0.4024152457714081, -0.11004029214382172, 0.08960650116205215, -0.06563568115234375, 0.7102171182632446, -0.35019370913505554, -0.4564959704875946, 0.05899631604552269, 0.4878362715244293, -0.37270042300224304, -0.3188537061214447, 0.8251134753227234, -0.1483081579208374, 0.36794695258140564, -0.5097026228904724, -0.3124649226665497, -0.41111868619918823, 0.1937878578901291, -0.7783933281898499, 1.0581223964691162, 0.3249811828136444, -1.107141137123108, 0.06470748037099838, -0.7061900496482849, -0.46851846575737, 0.35360485315322876, -0.44885265827178955, -0.5120255351066589, -0.416304349899292, 0.19012676179409027, 0.5237827897071838, -0.3408840000629425, 0.3056153357028961, -0.32265332341194153, -0.24205057322978973, -0.07863309234380722, 0.18584473431110382, 1.493037462234497, 0.060300275683403015, -0.41542696952819824, 0.2092863768339157, -0.9846893548965454, -0.08110841363668442, 0.31974104046821594, -0.10460606962442398, -0.2844584882259369, -0.07352499663829803, 0.24720622599124908, 0.17849166691303253, 0.23393557965755463, -0.39302265644073486, 0.2086784541606903, -0.46226465702056885, 0.3278869390487671, 0.4747803211212158, 0.3599018156528473, 0.18545356392860413, -0.4417284429073334, 0.4335823655128479, 0.1302068680524826, -0.05558525025844574, -0.07442988455295563, -0.8418295383453369, -0.6901028752326965, -0.2143334597349167, 0.20478522777557373, 0.7323373556137085, -0.794212281703949, 1.105665922164917, -0.5918118953704834, -0.6648362278938293, -0.6539298892021179, -0.0045686266385018826, 0.5015435218811035, 0.8050525784492493, 0.3765018582344055, -0.2925553619861603, -0.9736557602882385, -1.1272549629211426, -0.000285720539977774, -0.1289888322353363, 0.07964622974395752, 0.2937924563884735, 0.7601272463798523, -0.42920178174972534, 1.1408257484436035, -0.5603350400924683, -0.30054450035095215, -0.34810593724250793, 0.19202323257923126, 0.5798832178115845, 0.787962794303894, 0.5509862303733826, -0.9844521880149841, -0.428902804851532, -0.04155091196298599, -0.9697890877723694, -0.265524685382843, -0.024524087086319923, -0.282584011554718, -0.08747405558824539, 0.2665572166442871, -0.5296755433082581, 0.22793814539909363, 0.6078000068664551, -0.5209857821464539, 0.5627003908157349, 0.12187691777944565, 0.09732351452112198, -1.3475258350372314, 0.4057033360004425, 0.10272268950939178, 0.007268300745636225, -0.6693602800369263, -0.06407792866230011, -0.008442040532827377, 0.1382804661989212, -0.39636117219924927, 0.27998605370521545, -0.46820884943008423, 0.11409253627061844, -0.12162639945745468, 0.14323291182518005, -0.1517418622970581, 0.6870476007461548, -0.041071802377700806, 0.8478893041610718, 0.669696569442749, -0.4870266914367676, 0.2309143841266632, 0.6942437291145325, -0.19749592244625092, 0.7015653252601624, -0.741086483001709, 0.04397174343466759, -0.3809952139854431, 0.13972193002700806, -0.8870568871498108, -0.5467647910118103, 0.5944057106971741, -0.5872686505317688, 0.22933518886566162, -0.16953444480895996, -0.35049283504486084, -0.5958007574081421, -0.4416508376598358, 0.447785884141922, 0.25003382563591003, -0.12877324223518372, 0.42991048097610474, 0.9819269776344299, -0.1860121637582779, -0.5619315505027771, -0.7348378896713257, 0.06860508769750595, -0.2673909366130829, -0.8058643937110901, 0.7669352889060974, -0.19690413773059845, -0.29607298970222473, -0.007656050380319357, 0.27810025215148926, -0.09567099809646606, -0.114506796002388, 0.3146602213382721, 0.17658452689647675, -0.18774916231632233, -0.15906400978565216, -0.015624966472387314, -0.18254873156547546, -0.0866173729300499, -0.1316748857498169, 0.6198164224624634, -0.2544310986995697, -0.11572902649641037, -0.2628617584705353, 0.5241815447807312, 0.5524116158485413, -0.2706226408481598, 0.6949020028114319, 0.842406153678894, -0.6744939684867859, 0.2304602861404419, -0.6406797766685486, 0.01717553846538067, -0.43178579211235046, 0.2899618446826935, -0.22382424771785736, -0.6666094660758972, 0.8085479140281677, 0.3202410042285919, 0.06945028156042099, 0.9323658347129822, 0.8699178695678711, 0.19380910694599152, 0.8402546048164368, 0.5281667709350586, -0.20376825332641602, 0.30237025022506714, -0.5734252333641052, -0.0004957039491273463, -0.9086213111877441, -0.3728697597980499, -0.491178423166275, -0.28199338912963867, -0.8761471509933472, -0.5532511472702026, 0.3989640176296234, -0.2068265825510025, -0.0824444591999054, 0.6864315271377563, -0.7254661321640015, 0.4265477955341339, 0.8571345806121826, 0.11946313083171844, 0.09919113665819168, -0.24620676040649414, -0.02891537733376026, -0.16760700941085815, -0.5944965481758118, -0.45552322268486023, 0.9586194753646851, 0.2663380801677704, 0.22913426160812378, -0.052353981882333755, 0.6286052465438843, 0.3306448757648468, -0.25315216183662415, -0.5269348621368408, 0.6192042827606201, -0.002108484972268343, -0.5821730494499207, -0.2877905070781708, -0.3257114589214325, -1.1006555557250977, 0.22100503742694855, -0.36826208233833313, -0.7995136380195618, 0.48372843861579895, 0.06139502674341202, -0.49934911727905273, 0.1819389909505844, -0.44512635469436646, 1.1731195449829102, -0.08204436302185059, -0.2633328139781952, 0.03012852370738983, -1.0153942108154297, 0.43420684337615967, -0.005104387644678354, 0.37602153420448303, -0.3073273301124573, 0.13256563246250153, 1.2770237922668457, -0.3743378221988678, 0.8641112446784973, 0.0684925764799118, 0.22346192598342896, 0.4771941900253296, -0.3140585720539093, 0.3893049955368042, -0.05355439707636833, 0.053826071321964264, 0.5913551449775696, -0.005371459759771824, -0.22783289849758148, -0.24368910491466522, 0.8509624004364014, -0.6490808725357056, -0.3191947937011719, -0.5374765396118164, -0.6711254715919495, -0.1305665373802185, 0.5870515704154968, 0.3617576062679291, 0.13885830342769623, 0.11708273738622665, 0.47405916452407837, 0.466664582490921, -0.3042377233505249, 0.231148362159729, 0.2251056432723999, 0.04478439316153526, -0.7823953032493591, 0.9242742657661438, 0.3939572274684906, -0.19163531064987183, 0.3274324834346771, 0.17517518997192383, -0.15868404507637024, -0.27801594138145447, -0.27950751781463623, 0.5673583745956421, -0.49222898483276367, -0.28177720308303833, -0.7970268130302429, -0.27895811200141907, -0.845825731754303, 0.14223502576351166, -0.16511525213718414, -0.5717434883117676, -0.281858891248703, -0.36606404185295105, 0.5245676040649414, 0.35580912232398987, -0.2620035409927368, 0.38113245368003845, -0.44807878136634827, 0.403196781873703, -0.021767886355519295, 0.3297231197357178, -0.08344259113073349, -0.22223691642284393, -0.4575459957122803, 0.1768656224012375, -0.4458807706832886, -1.1487677097320557, 0.5521743893623352, 0.09863585233688354, 0.5870307683944702, 0.2995452880859375, 0.03958703577518463, 0.7938308119773865, -0.34658706188201904, 0.8592501878738403, 0.015405772253870964, -0.7329190373420715, 0.5453637838363647, -0.7457954287528992, 0.4336434602737427, 0.7479740977287292, 0.5088872909545898, -0.8141084313392639, -0.3596031069755554, -0.8875965476036072, -1.2643804550170898, 0.8302336931228638, 0.35069623589515686, -0.19636130332946777, -0.3632272481918335, 0.09388216584920883, 0.00014471181202679873, 0.23644296824932098, -0.8112677335739136, -0.8031027317047119, -0.15163864195346832, -0.49021416902542114, 0.06892058998346329, -0.24347637593746185, -0.18887485563755035, -0.46845707297325134, 0.8626518249511719, -0.09357468038797379, 0.4057775139808655, 0.1357056051492691, 0.027362242341041565, -0.0942060649394989, -0.11091006547212601, 0.5144742727279663, 0.5671839714050293, -0.454144686460495, 0.07749707996845245, 0.11984707415103912, -0.5740526914596558, -0.48877447843551636, 0.028784558176994324, -0.425099641084671, 0.19260595738887787, 0.5580112338066101, 0.7746931314468384, 0.48476430773735046, -0.644673228263855, 0.6468678116798401, 0.36125993728637695, -0.3644503653049469, -0.6541904807090759, -0.23255755007266998, -0.04452226310968399, 0.19471539556980133, 0.5910319685935974, -0.20253083109855652, 0.18309925496578217, -0.38404855132102966, 0.39114683866500854, 0.38094183802604675, -0.2865690588951111, -0.41339462995529175, 0.7215948104858398, -0.026333946734666824, -0.46612459421157837, 0.4220603108406067, -0.07774053514003754, -0.43619710206985474, 0.4534143805503845, 0.3632160425186157, 1.0987474918365479, 0.07031265646219254, 0.14488354325294495, 0.6637502908706665, 0.40439558029174805, 0.08656264841556549, 0.5290104746818542, 0.010623366571962833, -0.6548944711685181, -0.3163689076900482, -0.4636823236942291, -0.31886300444602966, 0.18702155351638794, -0.7147449851036072, 0.4375761151313782, -0.37643754482269287, -0.34276536107063293, 0.14559848606586456, 0.00980187114328146, -0.8120948076248169, 0.15969553589820862, 0.1727055013179779, 0.8182593584060669, -1.0227757692337036, 0.6444358825683594, 0.5335590243339539, -0.8773415684700012, -0.7142224907875061, -0.14721941947937012, 0.20229697227478027, -0.8240674734115601, 0.24826748669147491, 0.09739510715007782, 0.3345318138599396, 0.11172988265752792, -0.6198068261146545, -1.138690710067749, 1.2347221374511719, 0.1786704808473587, -0.22352619469165802, -0.24757486581802368, 0.2771347463130951, 0.4388033151626587, -0.3755352795124054, 0.2888895273208618, 0.796210765838623, 0.7265465259552002, 0.12085027247667313, -0.9095266461372375, 0.14913631975650787, -0.4661417305469513, -0.06989509612321854, -0.11041200160980225, -0.7182213068008423, 0.9681109189987183, 0.02143741585314274, -0.2827851474285126, -0.2467692345380783, 0.7565345764160156, 0.2645391523838043, 0.26956647634506226, 0.42575162649154663, 0.6349990367889404, 0.7247298359870911, -0.28918570280075073, 0.8744716644287109, -0.6685347557067871, 0.4904850721359253, 0.9079914689064026, 0.09220289438962936, 0.7871053218841553, 0.5513567924499512, -0.17578037083148956, 0.6383386254310608, 0.5117400288581848, -0.2248554527759552, 0.4970552325248718, -0.11790131032466888, 0.07937091588973999, -0.003962696995586157, -0.11153846234083176, -0.5838475823402405, 0.5929914116859436, 0.26498451828956604, -0.3910735845565796, -0.08967790752649307, -0.13373367488384247, 0.22208605706691742, 0.06519312411546707, -0.2261463850736618, 0.731082558631897, -0.0853939801454544, -0.6078417301177979, 0.5875263214111328, 0.0339072085916996, 0.7234989404678345, -0.6378813982009888, 0.005855935160070658, 0.01838984526693821, 0.02765491232275963, -0.5612022280693054, -0.8148397207260132, 0.6136250495910645, -0.12814001739025116, -0.4753740727901459, -0.154868021607399, 0.45046988129615784, -0.6018121838569641, -0.8388634920120239, 0.12657253444194794, 0.48176705837249756, 0.23085330426692963, 0.07933945208787918, -0.7789516448974609, 0.26741668581962585, 0.09793423861265182, -0.18806512653827667, 0.02051178552210331, 0.32928502559661865, -0.18916793167591095, 0.45292794704437256, 0.6671712398529053, 0.1931508481502533, 0.12228044122457504, 0.13327112793922424, 0.6964482069015503, -0.954599916934967, -0.5734387636184692, -0.8274881839752197, 0.6404089331626892, -0.33666151762008667, -0.4725414216518402, 1.0699365139007568, 0.7787366509437561, 0.98881995677948, -0.24369224905967712, 0.908696711063385, -0.48435232043266296, 1.0082297325134277, -0.10967698693275452, 0.7837478518486023, -0.5086051821708679, -0.04877369850873947, -0.7272605895996094, -0.735270619392395, -0.6099278330802917, 0.8061034679412842, -0.26880642771720886, -0.08142074197530746, 0.4732447862625122, 0.8788598775863647, -0.02103278785943985, -0.04920310154557228, 0.07260796427726746, 0.41732919216156006, 0.04677174985408783, 0.46743252873420715, 0.14040067791938782, -0.6416274309158325, 0.46501103043556213, -0.6873230934143066, -0.28857797384262085, -0.24215243756771088, -0.9369046688079834, -0.6058886647224426, -0.9218736886978149, -0.732704222202301, -0.5220431089401245, -0.12296687811613083, 1.2213482856750488, 0.525574266910553, -1.0677353143692017, -0.5152031183242798, 0.06876970082521439, 0.2848026156425476, -0.5379716157913208, -0.2904934585094452, 0.48601341247558594, 0.12551796436309814, -0.7926061749458313, 0.3575364649295807, 0.23439233005046844, -0.15608619153499603, -0.19144223630428314, -0.0892644003033638, -0.5273477435112, -0.18242570757865906, 0.46527421474456787, 0.6920710206031799, -0.6924698352813721, -0.3359726369380951, -0.11351791769266129, -0.043038371950387955, 0.09642750024795532, 0.3914947509765625, -0.6181389093399048, 0.32099732756614685, 0.5744031667709351, 0.41639330983161926, 0.29774200916290283, 0.1612207442522049, 0.41471007466316223, -0.8089904189109802, 0.2709517776966095, 0.3381642699241638, 0.5816038250923157, 0.4420129358768463, -0.24214030802249908, 0.6690673232078552, 0.5429553389549255, -0.43943944573402405, -0.9922435879707336, -0.14830876886844635, -1.5426013469696045, 0.12196044623851776, 1.3077404499053955, 0.17843639850616455, -0.5167261362075806, -0.1624630242586136, -0.292877733707428, 0.4290989339351654, -0.19008076190948486, 0.7405121326446533, 0.5918008685112, 0.08243218809366226, 0.015467124059796333, -0.2665700614452362, 0.3876943290233612, -0.050447288900613785, -0.54559326171875, -0.07436522841453552, 0.34875020384788513, 0.1288299411535263, 0.47415390610694885, 0.7592617273330688, -0.2538715898990631, 0.10478577762842178, -0.027669338509440422, 0.28435957431793213, -0.0687413215637207, -0.16210056841373444, -0.17412912845611572, 0.1211458072066307, -0.39593303203582764, -0.3009718954563141 ]
null
null
null
null
null
null
null
null
null
null
null
null
null
text2log
null
2022-11-03T16:15:15Z
462
3
null
[ "task_categories:translation", "annotations_creators:machine-generated", "language_creators:machine-generated", "multilinguality:monolingual", "size_categories:100K<n<1M", "source_datasets:original", "language:en", "license:unknown", "region:us" ]
2022-11-03T16:15:15Z
2022-03-02T23:29:22.000Z
2022-03-02T23:29:22
--- annotations_creators: - machine-generated language_creators: - machine-generated language: - en license: - unknown multilinguality: - monolingual pretty_name: text2log size_categories: - 100K<n<1M source_datasets: - original task_categories: - translation task_ids: [] dataset_info: features: - name: sentence dtype: string - name: fol_translation dtype: string splits: - name: train num_bytes: 10358134 num_examples: 101931 download_size: 9746473 dataset_size: 10358134 --- # Dataset Card for text2log ## 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:** - **Repository:** [GitHub](https://github.com/alevkov/text2log) - **Paper:** - **Leaderboard:** - **Point of Contact:** https://github.com/alevkov ### Dataset Summary The dataset contains 100,000 simple English sentences selected and filtered from `enTenTen15` and their translation into First Order Logic (FOL) using `ccg2lambda`. ### Supported Tasks and Leaderboards 'semantic-parsing': The data set is used to train models which can generate FOL statements from natural language text ### Languages en-US ## Dataset Structure ### Data Instances ``` { 'clean':'All things that are new are good.', 'trans':'all x1.(_thing(x1) -> (_new(x1) -> _good(x1)))' } ``` ### Data Fields - 'clean': a simple English sentence - 'trans': the corresponding translation into Lambda Dependency-based Compositional Semantics ### Data Splits No predefined train/test split is given. The authors used a 80/20 split ## Dataset Creation ### Curation Rationale The text2log data set is used to improve FOL statement generation from natural text ### Source Data #### Initial Data Collection and Normalization Short text samples selected from enTenTen15 #### Who are the source language producers? See https://www.sketchengine.eu/ententen-english-corpus/ ### Annotations #### Annotation process Machine generated using https://github.com/mynlp/ccg2lambda #### Who are the annotators? none ### Personal and Sensitive Information The dataset does not contain personal or sensitive 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 None given ### Citation Information ```bibtex @INPROCEEDINGS{9401852, author={Levkovskyi, Oleksii and Li, Wei}, booktitle={SoutheastCon 2021}, title={Generating Predicate Logic Expressions from Natural Language}, year={2021}, volume={}, number={}, pages={1-8}, doi={10.1109/SoutheastCon45413.2021.9401852} } ``` ### Contributions Thanks to [@apergo-ai](https://github.com/apergo-ai) for adding this dataset.
[ -0.1252610832452774, -0.652462899684906, 0.20143145322799683, 0.1952340006828308, -0.3562254011631012, -0.06485549360513687, -0.34169870615005493, -0.6063123345375061, 0.25861403346061707, 0.5700625777244568, -0.707358717918396, -0.807307779788971, -0.6025297045707703, 0.25118401646614075, -0.15612009167671204, 1.3255031108856201, -0.08452287316322327, -0.14120419323444366, -0.37239670753479004, -0.18508440256118774, -0.41563376784324646, -0.4772978723049164, -0.5201993584632874, -0.27124032378196716, 0.2641288936138153, 0.48782020807266235, 0.5792329907417297, 0.6411430239677429, 0.5005054473876953, 0.1511334776878357, -0.04948907718062401, 0.2352667897939682, -0.5257000923156738, -0.16449309885501862, -0.24305719137191772, -0.3855723440647125, -0.633205235004425, 0.045827385038137436, 0.5387945771217346, 0.5289716124534607, -0.00858460832387209, 0.5314258933067322, 0.20287615060806274, 0.6485521197319031, -0.3952716290950775, 0.6519140005111694, -0.5502466559410095, -0.11535541713237762, -0.37335205078125, 0.061880163848400116, -0.42983052134513855, -0.33431705832481384, 0.01822427473962307, -0.79486483335495, 0.08715913444757462, 0.11511974036693573, 0.9934820532798767, 0.16790224611759186, -0.4393554627895355, -0.41034018993377686, -0.4035828113555908, 0.8986728191375732, -0.8101293444633484, 0.1224358007311821, 0.7556872367858887, 0.11604788154363632, 0.06229211762547493, -1.0925254821777344, -0.5694767832756042, 0.2401318997144699, -0.5968226194381714, 0.27813732624053955, -0.17323237657546997, -0.20973141491413116, 0.34070706367492676, 0.32135066390037537, -0.6692501306533813, -0.20813904702663422, -0.47001832723617554, -0.2965167760848999, 0.9965011477470398, 0.26498326659202576, 0.2087273895740509, -0.39510929584503174, -0.27038395404815674, -0.07708150893449783, -0.38048315048217773, 0.138860821723938, 0.4358108341693878, 0.43400657176971436, -0.45518314838409424, 0.7243412733078003, -0.1913021057844162, 0.6475822925567627, -0.3038603961467743, -0.13353700935840607, 0.678417980670929, -0.8847696781158447, -0.017497051507234573, 0.02900467999279499, 0.8915537595748901, 0.6012000441551208, 0.22175943851470947, 0.0533965602517128, -0.14081528782844543, -0.01548053603619337, -0.04509122297167778, -0.9287692904472351, -0.2853187024593353, 0.4208807051181793, -0.7147343754768372, -0.28569331765174866, 0.35037368535995483, -1.0680944919586182, -0.06644584238529205, -0.3241278827190399, 0.14511223137378693, -0.2541528344154358, -0.3452221155166626, 0.12928971648216248, -0.15040463209152222, 0.3918289840221405, 0.009417730383574963, -0.824790358543396, 0.6004263162612915, 0.6828140616416931, 0.830509603023529, -0.0606638640165329, -0.15476353466510773, -0.4382753074169159, 0.26430031657218933, -0.06806822121143341, 0.6537789702415466, -0.3798433840274811, -0.3397667109966278, 0.18001843988895416, 0.30191758275032043, 0.013943186961114407, -0.4005092978477478, 0.8633461594581604, -0.09593283385038376, 0.6345073580741882, -0.4607087969779968, -0.6201801300048828, -0.10843441635370255, 0.13178780674934387, -0.6993855834007263, 1.4829809665679932, 0.18635834753513336, -0.8649532198905945, 0.31978699564933777, -0.7802176475524902, -0.6391488313674927, 0.07048943638801575, -0.15115077793598175, -0.4001070261001587, -0.15228363871574402, -0.04389212653040886, 0.39272254705429077, -0.576515793800354, 0.4039113521575928, -0.01250473689287901, 0.06805918365716934, 0.06939451396465302, -0.08231018483638763, 1.1117438077926636, 0.17958469688892365, -0.3355732560157776, 0.0022091211285442114, -1.0191560983657837, 0.038016702979803085, 0.29315829277038574, -0.21408331394195557, -0.3016307055950165, 0.15892525017261505, 0.34220463037490845, 0.29961109161376953, 0.4814700186252594, -0.4887758195400238, 0.13281095027923584, -0.6004849076271057, 0.36888599395751953, 0.4467557966709137, 0.038881368935108185, 0.29477474093437195, -0.23886850476264954, 0.32241472601890564, 0.002991768065840006, 0.21749287843704224, -0.12779074907302856, -0.8397530913352966, -0.683485746383667, -0.15040892362594604, 0.2395055741071701, 0.8591979146003723, -0.637442946434021, 0.8652935028076172, -0.39226603507995605, -0.530623733997345, -0.48506107926368713, 0.19149549305438995, 0.5405439138412476, 0.5545494556427002, 0.5941506624221802, -0.18417717516422272, -0.696989119052887, -0.9195602536201477, -0.18441951274871826, -0.26990726590156555, -0.008667428977787495, 0.3744770288467407, 0.8075229525566101, -0.17057602107524872, 0.9841828942298889, -0.9226285815238953, -0.4933578073978424, -0.39461004734039307, -0.04091668501496315, 0.253569632768631, 0.5698984861373901, 0.5355241894721985, -0.8787392973899841, -0.4583234190940857, -0.1635189801454544, -0.7724051475524902, -0.2545311152935028, 0.012254406698048115, -0.38967418670654297, 0.4233267903327942, 0.3655160963535309, -0.5230185985565186, 0.5580390691757202, 0.4634982943534851, -0.8675065040588379, 0.48084756731987, 0.049865949898958206, -0.1472901850938797, -1.4728928804397583, 0.3147968351840973, 0.016399066895246506, -0.06583775579929352, -0.6505468487739563, -0.3241548240184784, -0.10862217098474503, 0.13332884013652802, -0.24509139358997345, 0.8775420784950256, -0.2288714498281479, 0.15401075780391693, 0.1255923956632614, 0.21636584401130676, 0.2969524562358856, 0.4167030155658722, -0.09040074050426483, 0.5086675882339478, 0.4319084584712982, -0.5263978242874146, 0.23822197318077087, 0.6094877123832703, -0.43583494424819946, 0.38253092765808105, -0.8265119791030884, -0.06653320789337158, -0.11890600621700287, 0.3710654079914093, -1.1052963733673096, -0.38185614347457886, 0.6343440413475037, -0.6651253700256348, 0.17795290052890778, 0.08098842948675156, -0.8242048025131226, -0.16491343080997467, -0.41793137788772583, 0.25779929757118225, 0.4312405288219452, -0.22779500484466553, 0.5937958359718323, 0.43669551610946655, -0.06900641322135925, -0.3728610873222351, -1.1317219734191895, -0.05038805678486824, -0.051404356956481934, -0.6998767852783203, 0.6093271970748901, -0.17709331214427948, -0.3370516300201416, 0.25201624631881714, 0.11849762499332428, -0.023277660831809044, -0.024164684116840363, 0.03765412047505379, 0.27851200103759766, -0.02883703075349331, 0.22038698196411133, 0.0634138435125351, -0.1953430324792862, 0.10251668840646744, -0.4346576929092407, 0.45808443427085876, 0.053344059735536575, 0.041208330541849136, -0.37248358130455017, 0.35387077927589417, 0.10260586440563202, -0.3778984546661377, 0.9224146008491516, 0.864534318447113, -0.5663020014762878, -0.049144335091114044, -0.3219754099845886, -0.24696902930736542, -0.39714691042900085, 0.3998482823371887, -0.19281233847141266, -0.7499428987503052, 0.7341159582138062, 0.3582635521888733, 0.3503204584121704, 0.9213181734085083, 0.5189109444618225, 0.18507197499275208, 0.7432215213775635, 0.33704686164855957, 0.030890120193362236, 0.2929125726222992, -0.45932063460350037, 0.18277066946029663, -0.7348372340202332, -0.5765593647956848, -0.7468515634536743, -0.24046918749809265, -0.8767858147621155, -0.4244239330291748, -0.1559399962425232, 0.04958979785442352, -0.14040479063987732, 0.39449164271354675, -0.5276775360107422, 0.37668725848197937, 0.5738493204116821, -0.033909156918525696, 0.1763497143983841, 0.08892426639795303, -0.04940081015229225, -0.15100903809070587, -0.538047194480896, -0.6775636076927185, 1.0783976316452026, 0.28820255398750305, 0.3269122540950775, 0.29714855551719666, 0.5701442956924438, 0.2813107371330261, 0.050001271069049835, -0.6518785953521729, 0.590961754322052, -0.4513598084449768, -0.7261056303977966, -0.24736928939819336, -0.38090020418167114, -0.9767735600471497, -0.020669449120759964, -0.12690123915672302, -0.8237666487693787, 0.12692143023014069, 0.1356600522994995, -0.05482053756713867, 0.10871060937643051, -0.727249026298523, 1.141114354133606, -0.21674978733062744, -0.49031373858451843, 0.00437189033254981, -0.9921538233757019, 0.19016429781913757, 0.1743728220462799, 0.4084756076335907, -0.14359591901302338, -0.19105787575244904, 1.0387340784072876, -0.4796457886695862, 1.035743236541748, -0.2986251413822174, -0.08041296899318695, 0.5645341873168945, -0.2572917640209198, 0.6397823691368103, 0.21113833785057068, -0.15026380121707916, 0.32270967960357666, 0.04056495055556297, -0.486330509185791, -0.4760335087776184, 0.46424102783203125, -0.6653950214385986, -0.18172766268253326, -0.5374819040298462, -0.30752989649772644, 0.013381280936300755, 0.3073585033416748, 0.36439067125320435, 0.5731246471405029, -0.031402699649333954, 0.4235023260116577, 0.4793374836444855, -0.35596963763237, 0.3099997043609619, 0.2937611937522888, -0.314184308052063, -0.7970165014266968, 0.8662711977958679, 0.2758300006389618, 0.23782216012477875, 0.5156517624855042, 0.17153078317642212, -0.4693831205368042, -0.27137115597724915, -0.3094296157360077, 0.24543973803520203, -0.6885926127433777, -0.28349214792251587, -0.6273069381713867, -0.16174575686454773, -0.6624540090560913, 0.09696952998638153, -0.06325972825288773, -0.6822190284729004, -0.5720035433769226, -0.3849928379058838, 0.5069059133529663, 0.45261237025260925, -0.010585938580334187, 0.23038655519485474, -0.5974931120872498, 0.21483317017555237, 0.028486547991633415, 0.4090515375137329, -0.07165410369634628, -0.5638329386711121, -0.4741845726966858, 0.053433746099472046, -0.21469517052173615, -0.7582781314849854, 0.3015838861465454, 0.3070819079875946, 0.6100127696990967, 0.10326763242483139, 0.19734537601470947, 0.3846386969089508, -0.3174550533294678, 1.2210559844970703, 0.050369616597890854, -0.8437981009483337, 0.8121389150619507, -0.3435874879360199, 0.32050836086273193, 0.8766434788703918, 0.25821343064308167, -0.49242284893989563, -0.20695915818214417, -0.8411585092544556, -1.2450145483016968, 0.9510657787322998, 0.46911391615867615, 0.24623553454875946, -0.10828590393066406, 0.34383565187454224, 0.0009854655945673585, 0.336490660905838, -0.9434489607810974, -0.7484248876571655, -0.3401036262512207, -0.6445446014404297, -0.015663832426071167, -0.44985339045524597, -0.1376681923866272, -0.4034734070301056, 1.0175015926361084, -0.12960197031497955, 0.2982226312160492, 0.23183758556842804, -0.018791692331433296, 0.2035655826330185, 0.105242520570755, 0.5935075879096985, 0.5156679749488831, -0.2282058596611023, 0.041057538241147995, 0.03395913913846016, -0.660400927066803, -0.13591627776622772, 0.3367452919483185, -0.43509334325790405, 0.14458395540714264, 0.5572230219841003, 0.980366051197052, 0.1337113380432129, -0.6894353032112122, 0.5109764933586121, -0.008999345824122429, -0.4144125282764435, -0.5618808269500732, -0.10377242416143417, 0.004437347874045372, 0.057525843381881714, 0.3789858818054199, -0.244029238820076, 0.19625772535800934, -0.48218947649002075, 0.28636854887008667, 0.13767306506633759, -0.34825822710990906, -0.44328558444976807, 0.7102551460266113, 0.2443375587463379, -0.32342463731765747, 0.48282039165496826, -0.4919837415218353, -0.3769940435886383, 0.606501579284668, 0.5085023045539856, 0.9416218996047974, 0.10554268211126328, 0.29888540506362915, 0.8297448754310608, 0.577225387096405, -0.05331010743975639, 0.5163254737854004, 0.05219047889113426, -0.7784635424613953, -0.3874960243701935, -0.6684643030166626, -0.046706221997737885, 0.1510620266199112, -0.7536725997924805, 0.48317447304725647, -0.3543190062046051, -0.11605091392993927, -0.018579240888357162, 0.3643488585948944, -0.646255373954773, 0.22299358248710632, -0.06954701244831085, 0.9937908053398132, -0.8728978633880615, 0.77609783411026, 0.8338846564292908, -0.7179210782051086, -0.810322105884552, 0.01438049040734768, 0.19575567543506622, -0.500391960144043, 0.49605637788772583, 0.28701215982437134, 0.37132373452186584, 0.019069397822022438, -0.6073382496833801, -0.7945711612701416, 1.330014705657959, 0.1666572093963623, -0.29222556948661804, 0.11208212375640869, 0.28704705834388733, 0.6193981170654297, -0.5030907392501831, 0.19163089990615845, 0.6720395088195801, 0.789640486240387, -0.04342108964920044, -0.6861215829849243, 0.25664767622947693, -0.48975828289985657, -0.10140258818864822, 0.15939968824386597, -0.8426549434661865, 0.6780209541320801, 0.01906806044280529, -0.1991080641746521, -0.08611093461513519, 0.6168745160102844, 0.2520742416381836, 0.5997092723846436, 0.3043867349624634, 0.696688711643219, 0.8233349323272705, -0.2684725821018219, 1.076699137687683, -0.3840828835964203, 0.48404625058174133, 1.3826881647109985, -0.20489506423473358, 0.7970600128173828, 0.40877223014831543, -0.3166952133178711, 0.6593177914619446, 0.4895496666431427, -0.22877755761146545, 0.5043308138847351, 0.1064140796661377, -0.07860524952411652, 0.12869049608707428, -0.39350956678390503, -0.37439823150634766, 0.4389730393886566, 0.3736923635005951, -0.6154543161392212, 0.0017296687001362443, -0.2999204397201538, 0.41561251878738403, 0.13928717374801636, -0.07075341045856476, 1.024735927581787, 0.014941380359232426, -0.6191179752349854, 0.3340313732624054, 0.12223657220602036, 0.5546361804008484, -0.7674907445907593, 0.0411621555685997, -0.19799049198627472, 0.05939892306923866, -0.4987075626850128, -0.9134383201599121, 0.623483419418335, 0.12321791052818298, -0.48389294743537903, -0.28446704149246216, 0.8012878894805908, -0.6499556303024292, -0.822141706943512, 0.4310944080352783, 0.3500712811946869, 0.10378269106149673, 0.2733834385871887, -0.7423680424690247, 0.053304512053728104, 0.3353475332260132, -0.4392654597759247, 0.18568949401378632, 0.5471243858337402, 0.011382254771888256, 0.21592843532562256, 0.6268410682678223, 0.04060249403119087, -0.1619000881910324, 0.1744026392698288, 0.7570486664772034, -0.6792855262756348, -0.441910058259964, -0.8723220229148865, 0.8843138217926025, -0.4985075294971466, -0.5601897239685059, 0.7773829698562622, 0.9952248930931091, 1.1172845363616943, 0.11274833232164383, 1.0221290588378906, -0.5353211760520935, 0.5953498482704163, -0.5492847561836243, 0.5929234027862549, -0.6343564391136169, 0.1390320211648941, -0.3040350377559662, -0.8665192127227783, -0.38078680634498596, 0.643462598323822, -0.20983444154262543, -0.01839963160455227, 0.755715548992157, 0.8352656364440918, 0.1579984575510025, 0.09767437726259232, -0.08500674366950989, 0.3605392873287201, 0.31570568680763245, 0.3379121720790863, 0.1964177042245865, -0.8289838433265686, 0.6978192925453186, -0.3778248727321625, -0.1401420384645462, -0.023045528680086136, -0.9536827802658081, -0.8216958045959473, -0.8770008683204651, -0.5258502960205078, -0.666462242603302, -0.14709684252738953, 1.0758609771728516, 0.3757311999797821, -0.976005494594574, -0.3519532084465027, -0.12248235940933228, 0.04942541942000389, -0.15596161782741547, -0.3286241292953491, 0.469306617975235, -0.1894102841615677, -0.5942266583442688, -0.18110111355781555, 0.04155436530709267, -0.11303319782018661, -0.06827273964881897, -0.3088371753692627, -0.5196548104286194, -0.08781082928180695, 0.8207812309265137, 0.07044915854930878, -0.6933349967002869, -0.1677890568971634, 0.04948210343718529, -0.0379723496735096, -0.05847272649407387, 0.5102353692054749, -0.5012750625610352, 0.318093478679657, 0.6571035981178284, 0.5465503334999084, 0.406086266040802, 0.00812190119177103, 0.27047786116600037, -0.8823179006576538, 0.23866358399391174, 0.18429340422153473, 0.24332009255886078, 0.3444816470146179, -0.4045507609844208, 0.9054237604141235, 0.4932233393192291, -0.4761936068534851, -0.8171860575675964, 0.01322468277066946, -1.0395963191986084, -0.15851615369319916, 1.5477943420410156, -0.12540197372436523, -0.15403687953948975, -0.10335442423820496, -0.30812808871269226, 0.343042254447937, -0.582704484462738, 0.39177465438842773, 0.9791259765625, 0.09689615666866302, 0.10208965092897415, -0.7162079215049744, 0.6735765337944031, 0.17093415558338165, -1.2418285608291626, 0.13082380592823029, 0.5895103216171265, 0.07375840097665787, 0.185260608792305, 0.7321692705154419, -0.26471778750419617, -0.06957874447107315, -0.14534564316272736, 0.11736327409744263, 0.06834659725427628, -0.17796450853347778, -0.11114542186260223, -0.0807369127869606, -0.19682684540748596, -0.0564420111477375 ]
null
null
null
null
null
null
null
null
null
null
null
null
null
lewtun/github-issues
lewtun
2021-10-04T15:49:55Z
462
4
null
[ "arxiv:2005.00614", "region:us" ]
2021-10-04T15:49:55Z
2022-03-02T23:29:22.000Z
2022-03-02T23:29:22
# Dataset Card for GitHub Issues ## Dataset Description - **Point of Contact:** [Lewis Tunstall](lewis@huggingface.co) ### Dataset Summary GitHub Issues is a dataset consisting of GitHub issues and pull requests associated with the 🤗 Datasets [repository](https://github.com/huggingface/datasets). It is intended for educational purposes and can be used for semantic search or multilabel text classification. The contents of each GitHub issue are in English and concern the domain of datasets for NLP, computer vision, and beyond. ### Supported Tasks and Leaderboards For each of the tasks tagged for this dataset, give a brief description of the tag, metrics, and suggested models (with a link to their HuggingFace implementation if available). Give a similar description of tasks that were not covered by the structured tag set (repace the `task-category-tag` with an appropriate `other:other-task-name`). - `task-category-tag`: The dataset can be used to train a model for [TASK NAME], which consists in [TASK DESCRIPTION]. Success on this task is typically measured by achieving a *high/low* [metric name](https://huggingface.co/metrics/metric_name). The ([model name](https://huggingface.co/model_name) or [model class](https://huggingface.co/transformers/model_doc/model_class.html)) model currently achieves the following score. *[IF A LEADERBOARD IS AVAILABLE]:* This task has an active leaderboard which can be found at [leaderboard url]() and ranks models based on [metric name](https://huggingface.co/metrics/metric_name) while also reporting [other metric name](https://huggingface.co/metrics/other_metric_name). ### Languages Provide a brief overview of the languages represented in the dataset. Describe relevant details about specifics of the language such as whether it is social media text, African American English,... When relevant, please provide [BCP-47 codes](https://tools.ietf.org/html/bcp47), which consist of a [primary language subtag](https://tools.ietf.org/html/bcp47#section-2.2.1), with a [script subtag](https://tools.ietf.org/html/bcp47#section-2.2.3) and/or [region subtag](https://tools.ietf.org/html/bcp47#section-2.2.4) if available. ## Dataset Structure ### Data Instances Provide an JSON-formatted example and brief description of a typical instance in the dataset. If available, provide a link to further examples. ``` { 'example_field': ..., ... } ``` Provide any additional information that is not covered in the other sections about the data here. In particular describe any relationships between data points and if these relationships are made explicit. ### Data Fields List and describe the fields present in the dataset. Mention their data type, and whether they are used as input or output in any of the tasks the dataset currently supports. If the data has span indices, describe their attributes, such as whether they are at the character level or word level, whether they are contiguous or not, etc. If the datasets contains example IDs, state whether they have an inherent meaning, such as a mapping to other datasets or pointing to relationships between data points. - `example_field`: description of `example_field` Note that the descriptions can be initialized with the **Show Markdown Data Fields** output of the [tagging app](https://github.com/huggingface/datasets-tagging), you will then only need to refine the generated descriptions. ### Data Splits Describe and name the splits in the dataset if there are more than one. Describe any criteria for splitting the data, if used. If their 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. Provide the sizes of each split. As appropriate, provide any descriptive statistics for the features, such as average length. For example: | | Tain | Valid | Test | | ----- | ------ | ----- | ---- | | Input Sentences | | | | | Average Sentence Length | | | | ## Dataset Creation ### Curation Rationale What need motivated the creation of this dataset? What are some of the reasons underlying the major choices involved in putting it together? ### Source Data This section describes the source data (e.g. news text and headlines, social media posts, translated sentences,...) #### Initial Data Collection and Normalization Describe the data collection process. Describe any criteria for data selection or filtering. List any key words or search terms used. If possible, include runtime information for the collection process. If data was collected from other pre-existing datasets, link to source here and to their [Hugging Face version](https://huggingface.co/datasets/dataset_name). If the data was modified or normalized after being collected (e.g. if the data is word-tokenized), describe the process and the tools used. #### Who are the source language producers? State whether the data was produced by humans or machine generated. Describe the people or systems who originally created the data. If available, include self-reported demographic or identity information for the source data creators, but avoid inferring this information. Instead state that this information is unknown. See [Larson 2017](https://www.aclweb.org/anthology/W17-1601.pdf) for using identity categories as a variables, particularly gender. Describe the conditions under which the data was created (for example, if the producers were crowdworkers, state what platform was used, or if the data was found, what website the data was found on). If compensation was provided, include that information here. Describe other people represented or mentioned in the data. Where possible, link to references for the information. ### Annotations If the dataset contains annotations which are not part of the initial data collection, describe them in the following paragraphs. #### Annotation process If applicable, describe the annotation process and any tools used, or state otherwise. Describe the amount of data annotated, if not all. Describe or reference annotation guidelines provided to the annotators. If available, provide interannotator statistics. Describe any annotation validation processes. #### Who are the annotators? If annotations were collected for the source data (such as class labels or syntactic parses), state whether the annotations were produced by humans or machine generated. Describe the people or systems who originally created the annotations and their selection criteria if applicable. If available, include self-reported demographic or identity information for the annotators, but avoid inferring this information. Instead state that this information is unknown. See [Larson 2017](https://www.aclweb.org/anthology/W17-1601.pdf) for using identity categories as a variables, particularly gender. Describe the conditions under which the data was annotated (for example, if the annotators were crowdworkers, state what platform was used, or if the data was found, what website the data was found on). If compensation was provided, include that information here. ### Personal and Sensitive Information State whether the dataset uses identity categories and, if so, how the information is used. Describe where this information comes from (i.e. self-reporting, collecting from profiles, inferring, etc.). See [Larson 2017](https://www.aclweb.org/anthology/W17-1601.pdf) for using identity categories as a variables, particularly gender. State whether the data is linked to individuals and whether those individuals can be identified in the dataset, either directly or indirectly (i.e., in combination with other data). State whether the dataset contains other data that might be considered sensitive (e.g., data that reveals racial or ethnic origins, sexual orientations, religious beliefs, political opinions or union memberships, or locations; financial or health data; biometric or genetic data; forms of government identification, such as social security numbers; criminal history). If efforts were made to anonymize the data, describe the anonymization process. ## Considerations for Using the Data ### Social Impact of Dataset Please discuss some of the ways you believe the use of this dataset will impact society. The statement should include both positive outlooks, such as outlining how technologies developed through its use may improve people's lives, and discuss the accompanying risks. These risks may range from making important decisions more opaque to people who are affected by the technology, to reinforcing existing harmful biases (whose specifics should be discussed in the next section), among other considerations. Also describe in this section if the proposed dataset contains a low-resource or under-represented language. If this is the case or if this task has any impact on underserved communities, please elaborate here. ### Discussion of Biases Provide descriptions of specific biases that are likely to be reflected in the data, and state whether any steps were taken to reduce their impact. For Wikipedia text, see for example [Dinan et al 2020 on biases in Wikipedia (esp. Table 1)](https://arxiv.org/abs/2005.00614), or [Blodgett et al 2020](https://www.aclweb.org/anthology/2020.acl-main.485/) for a more general discussion of the topic. If analyses have been run quantifying these biases, please add brief summaries and links to the studies here. ### Other Known Limitations If studies of the datasets have outlined other limitations of the dataset, such as annotation artifacts, please outline and cite them here. ## 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 Provide the license and link to the license webpage if available. ### Citation Information Provide the [BibTex](http://www.bibtex.org/)-formatted reference for the dataset. For example: ``` @article{article_id, author = {Author List}, title = {Dataset Paper Title}, journal = {Publication Venue}, year = {2525} } ``` If the dataset has a [DOI](https://www.doi.org/), please provide it here. ### Contributions Thanks to [@lewtun](https://github.com/lewtun) for adding this dataset.
[ -0.4946437478065491, -0.5725975036621094, 0.08108445256948471, 0.23432067036628723, -0.01090589165687561, 0.05696745589375496, -0.2228546440601349, -0.6558136940002441, 0.4385577142238617, 0.5422443151473999, -0.6757498979568481, -0.8162795305252075, -0.5337700247764587, 0.20332317054271698, -0.30876457691192627, 1.4341042041778564, -0.3821547329425812, -0.3540040850639343, -0.390811949968338, -0.30149582028388977, -0.4473799765110016, -0.5988491177558899, -0.4711678922176361, -0.057660747319459915, 0.4396173357963562, 0.4660707712173462, 0.35460278391838074, 0.925851047039032, 0.6503814458847046, 0.32614201307296753, -0.16756659746170044, 0.042633142322301865, -0.46117669343948364, -0.12813816964626312, -0.14168575406074524, -0.18946783244609833, -0.5158534049987793, 0.26897767186164856, 0.6009365320205688, 0.7554814219474792, 0.033305298537015915, 0.45658594369888306, -0.03173518180847168, 0.4481174647808075, -0.3127567768096924, 0.517623245716095, -0.20794574916362762, -0.006862905342131853, -0.48415738344192505, 0.09010526537895203, -0.10880964249372482, -0.17933380603790283, 0.02476825751364231, -0.6900097131729126, 0.40584269165992737, 0.19983793795108795, 1.1336212158203125, 0.05507853999733925, -0.304823100566864, -0.3055243194103241, -0.36562418937683105, 0.6362271308898926, -0.4421354830265045, 0.20409902930259705, 0.835349977016449, 0.022915204986929893, 0.16350992023944855, -0.6787294745445251, -0.5283079743385315, -0.07114361226558685, -0.4515072703361511, 0.1569570153951645, -0.02971748448908329, -0.14531566202640533, 0.5578722953796387, 0.5846298933029175, -0.6753823757171631, -0.0948108658194542, -0.5829215049743652, -0.27931907773017883, 1.048143982887268, 0.1822473257780075, 0.39787980914115906, -0.4537420868873596, -0.29478687047958374, -0.0688350722193718, -0.33621060848236084, 0.09135309606790543, 0.5635329484939575, 0.5905638337135315, -0.5906562805175781, 0.8272086381912231, -0.44649913907051086, 0.5351523756980896, -0.03933895751833916, -0.08936701714992523, 0.6004711389541626, -0.5761978030204773, -0.014186720363795757, -0.12405237555503845, 0.6373019218444824, 0.47400951385498047, 0.23420092463493347, -0.130923330783844, -0.17844189703464508, 0.13323353230953217, 0.1754620373249054, -0.4965694546699524, -0.2952742874622345, 0.3799174726009369, -0.5830773711204529, -0.26606088876724243, 0.031213337555527687, -0.883243978023529, -0.2120271921157837, -0.4555126428604126, 0.24748533964157104, -0.19728797674179077, -0.4488760530948639, -0.14218097925186157, -0.34452080726623535, 0.18258796632289886, 0.011052262969315052, -0.8456006646156311, 0.5070114731788635, 0.5080591440200806, 0.6506889462471008, -0.0282684788107872, -0.30645376443862915, -0.18623755872249603, -0.013445023447275162, 0.11193078011274338, 0.538767397403717, -0.44155314564704895, -0.12998776137828827, 0.04290040582418442, 0.271375447511673, -0.0639486238360405, -0.29488056898117065, 0.4923184812068939, -0.17134667932987213, 0.3209807276725769, -0.4931063950061798, -0.5577446818351746, -0.13959401845932007, 0.3029901385307312, -0.7821332216262817, 1.2032297849655151, 0.48622050881385803, -1.0533515214920044, 0.3993243873119354, -0.9362918734550476, -0.3957516551017761, 0.24880897998809814, -0.15574175119400024, -0.3554205000400543, -0.28465479612350464, 0.04678671434521675, 0.6722842454910278, -0.14761531352996826, 0.1472533941268921, -0.2112148404121399, -0.07242890447378159, 0.05781817063689232, 0.3912951648235321, 1.0864737033843994, 0.06445112824440002, -0.2933816611766815, -0.14823022484779358, -0.7055188417434692, -0.25161537528038025, 0.4695127606391907, -0.3022969365119934, -0.12946800887584686, -0.06540435552597046, 0.395170122385025, 0.094331756234169, 0.1553937941789627, -0.6145467162132263, 0.2991333603858948, -0.13727590441703796, 0.2862229347229004, 0.4181973934173584, 0.08783029764890671, 0.31042906641960144, -0.4230186939239502, 0.513526976108551, 0.09601467102766037, 0.15671461820602417, -0.16867102682590485, -0.5550805926322937, -0.6907860040664673, -0.16379660367965698, 0.5437263250350952, 0.6665796041488647, -0.8211455941200256, 0.5676959753036499, -0.2301722913980484, -0.46179088950157166, -0.4649893045425415, 0.2743251919746399, 0.4721875786781311, 0.5837712287902832, 0.4024999439716339, -0.5003253817558289, -0.6649129986763, -1.009472370147705, 0.10720070451498032, -0.4579034745693207, 0.21802672743797302, 0.31300634145736694, 0.8241629004478455, -0.023632707074284554, 0.957055389881134, -0.6234433054924011, -0.2735542356967926, -0.36633628606796265, 0.2250916212797165, -0.06108756735920906, 0.7550797462463379, 0.6207197904586792, -0.9883725047111511, -0.14508487284183502, -0.21406462788581848, -0.8322058320045471, -0.1973673403263092, -0.030938033014535904, -0.23077993094921112, 0.20295102894306183, 0.25906574726104736, -0.6325963139533997, 0.6497438549995422, 0.3539816439151764, -0.5293883681297302, 0.46361520886421204, 0.2939368486404419, -0.043835315853357315, -1.1708791255950928, 0.29940739274024963, 0.5463387370109558, -0.021718120202422142, -0.567154049873352, 0.1530447155237198, -0.24579086899757385, 0.0016544109676033258, -0.2988446354866028, 0.608927845954895, -0.40396639704704285, 0.15568110346794128, 0.14339673519134521, 0.08471383154392242, -0.03724225237965584, 0.4086845815181732, 0.1662065088748932, 0.38469645380973816, 0.49010026454925537, -0.48206594586372375, 0.4376920759677887, 0.5949850082397461, -0.17093300819396973, 0.7148763537406921, -0.5553668141365051, -0.032117150723934174, -0.4825248718261719, 0.19046349823474884, -0.8430355191230774, -0.49168410897254944, 0.5080955624580383, -0.6066062450408936, 0.38220763206481934, -0.19713066518306732, -0.7410579919815063, -0.509711503982544, -0.16674724221229553, 0.13848215341567993, 0.24065931141376495, -0.1932240128517151, 0.5119309425354004, 0.7048516869544983, -0.20120292901992798, -0.4763968288898468, -0.7587655782699585, 0.08165300637483597, -0.5282067060470581, -0.5766305923461914, 0.4077255129814148, -0.21449775993824005, -0.18044301867485046, 0.02695232257246971, 0.2857743501663208, -0.34046420454978943, 0.28751617670059204, 0.2396494448184967, 0.19201163947582245, 0.1035793349146843, 0.248648002743721, -0.16482862830162048, -0.024273527786135674, 0.06808899343013763, 0.056515999138355255, 0.2751927077770233, -0.11894753575325012, 0.04069151356816292, -0.2902910113334656, 0.6959567666053772, -0.0981547087430954, -0.22442613542079926, 0.7497291564941406, 0.9618282318115234, -0.7145785093307495, 0.07113594561815262, -0.4776894450187683, -0.08646383136510849, -0.36602699756622314, 0.008936455473303795, -0.2686123847961426, -0.7798532843589783, 0.6943954229354858, 0.09282392263412476, 0.30620044469833374, 0.7132475972175598, 0.602130115032196, -0.23679333925247192, 0.6608991622924805, 0.8339422941207886, -0.0764450803399086, 0.3625965714454651, -0.48445236682891846, -0.046503547579050064, -0.6783180236816406, -0.41882359981536865, -0.5287513136863708, -0.4747089147567749, -0.7902677655220032, -0.1905355304479599, -0.030161602422595024, 0.15701468288898468, -0.1657019704580307, 0.7277219891548157, -0.64680415391922, 0.14712388813495636, 0.5952453017234802, -0.043513692915439606, -0.006997183430939913, -0.03158928081393242, 0.10422010719776154, -0.09226606041193008, -0.504360020160675, -0.6150000691413879, 0.894306480884552, 0.5797201991081238, 0.5371775031089783, 0.0404759906232357, 0.9120456576347351, 0.3897154629230499, 0.34187987446784973, -0.4054647386074066, 0.5050981640815735, -0.008801110088825226, -0.9282863736152649, -0.11886070668697357, -0.42029863595962524, -0.9687312841415405, -0.096433624625206, -0.42785176634788513, -0.9147414565086365, 0.20211531221866608, 0.0998225063085556, -0.15778610110282898, -0.0023996885865926743, -0.7875388264656067, 0.9167355298995972, -0.15413928031921387, -0.0303964763879776, 0.38841044902801514, -0.9695222973823547, 0.212457537651062, 0.008427375927567482, 0.1748141497373581, -0.27480509877204895, -0.03366963565349579, 1.1142544746398926, -0.30651938915252686, 1.0982967615127563, -0.21246260404586792, 0.3137013018131256, 0.4422980844974518, -0.3524274528026581, 0.14614588022232056, -0.029021982103586197, -0.010402532294392586, 0.269415020942688, 0.2568269968032837, -0.4396488070487976, -0.37967371940612793, 0.2435099482536316, -0.6274487376213074, -0.14460957050323486, -0.29066410660743713, -0.5302852988243103, -0.028172459453344345, 0.042303215712308884, 0.13693834841251373, 0.43058204650878906, -0.07385110855102539, 0.010826895013451576, 0.38837113976478577, -0.20352353155612946, 0.33294132351875305, 0.23509526252746582, -0.1282837688922882, -0.32635924220085144, 0.7614727020263672, 0.3413851857185364, -0.09744135290384293, 0.29763370752334595, 0.06917843222618103, -0.3433977961540222, -0.14988404512405396, -0.6422589421272278, 0.4095609784126282, -0.6807247400283813, -0.3907342851161957, -0.8093793392181396, -0.21617978811264038, -0.5110681653022766, 0.08898903429508209, -0.031429316848516464, -0.5557466745376587, -0.3694985806941986, -0.37247234582901, 0.7180955410003662, 0.6780804395675659, -0.19446662068367004, 0.4153061509132385, -0.5215646624565125, 0.29312682151794434, -0.03438323736190796, 0.32310155034065247, -0.20403450727462769, -0.3674367368221283, -0.4197058081626892, -0.017777347937226295, -0.21070459485054016, -0.7599478363990784, 0.26827290654182434, 0.0429060161113739, 0.6538978815078735, 0.09772252291440964, 0.1541205495595932, 0.5553818345069885, -0.2528819143772125, 0.9497336745262146, 0.05125804245471954, -0.8294463753700256, 0.8183000087738037, -0.34530746936798096, 0.05386855825781822, 0.7233951091766357, 0.7752392888069153, -0.5852676630020142, -0.1928718537092209, -0.8864316940307617, -0.8792129755020142, 0.6215766668319702, 0.4622819423675537, 0.20130589604377747, -0.09893293678760529, 0.6301872134208679, -0.008326970972120762, 0.32178544998168945, -0.9507721066474915, -0.630887508392334, -0.1451612114906311, -0.577233076095581, 0.013332902453839779, -0.037840232253074646, -0.3499951958656311, -0.5489765405654907, 0.5583291053771973, -0.15229402482509613, 0.38421952724456787, 0.09075292944908142, -0.0689876452088356, 0.10267997533082962, -0.1299334168434143, 0.3719787001609802, 0.610793948173523, -0.17618368566036224, 0.02442455291748047, 0.17657913267612457, -0.43666550517082214, -0.12529775500297546, 0.5062122344970703, -0.12032771110534668, -0.037352703511714935, 0.5199585556983948, 0.7092819213867188, -0.10357454419136047, -0.48428356647491455, 0.5174552798271179, -0.09172379225492477, -0.2820117771625519, -0.3551342785358429, -0.1819992959499359, 0.06629471480846405, 0.15234190225601196, 0.23011094331741333, -0.41784417629241943, 0.11018797755241394, -0.5123997926712036, 0.34182536602020264, 0.127554252743721, -0.22786393761634827, -0.35772180557250977, 0.46959155797958374, 0.18281185626983643, -0.19878479838371277, 0.5243195295333862, -0.40046489238739014, -0.5236884951591492, 0.6580711007118225, 0.3333585858345032, 0.6250941753387451, -0.15628691017627716, 0.3369586765766144, 0.4312642216682434, 0.5142110586166382, 0.18942418694496155, 0.5059300065040588, -0.06404047459363937, -0.6718607544898987, -0.2760356664657593, -0.7171503305435181, -0.17911885678768158, 0.07372454553842545, -0.8368434906005859, 0.2529732882976532, -0.44473713636398315, -0.18171043694019318, 0.4029267430305481, 0.3060895800590515, -1.128656029701233, 0.5405118465423584, 0.16876685619354248, 0.9164023995399475, -1.2143620252609253, 0.3318820893764496, 0.9746437072753906, -0.9332261681556702, -0.810895562171936, -0.2841090261936188, 0.19305478036403656, -0.6993589997291565, 0.6025972366333008, 0.13454511761665344, 0.6441745162010193, -0.15772615373134613, -0.9005700349807739, -0.8387838006019592, 1.082209587097168, 0.12845399975776672, -0.1334543526172638, 0.11644274741411209, 0.1546914428472519, 0.5554140210151672, -0.5448403358459473, 0.1966431587934494, 0.7027574181556702, 0.5997300744056702, 0.011038776487112045, -0.874406099319458, 0.1850382387638092, -0.4967946410179138, -0.03256538510322571, 0.020457642152905464, -0.6607191562652588, 0.7217195630073547, -0.03823694586753845, -0.26631635427474976, -0.14610381424427032, 0.6116291880607605, 0.060962364077568054, 0.3955034911632538, 0.5410376787185669, 0.823016881942749, 0.8130925297737122, -0.2670188844203949, 1.246390700340271, -0.018721923232078552, 0.4765840172767639, 0.9048898220062256, -0.16115617752075195, 0.6778351664543152, 0.22890760004520416, -0.18582655489444733, 0.4584384560585022, 0.9165123105049133, -0.2758048176765442, 0.16214844584465027, 0.37830397486686707, -0.11620082706212997, 0.009213224984705448, -0.43641746044158936, -0.41522324085235596, 0.7371298670768738, 0.18270212411880493, -0.5080122947692871, -0.07909201085567474, 0.08319241553544998, 0.37379899621009827, -0.04606867581605911, -0.20729826390743256, 0.9349910020828247, -0.0234683845192194, -0.34489905834198, 0.053940124809741974, 0.09392426908016205, 0.47916024923324585, -0.40335386991500854, -0.13556376099586487, -0.14842034876346588, -0.2396230250597, -0.5111052989959717, -1.0741913318634033, 0.5822339653968811, 0.08919871598482132, -0.461899995803833, -0.246111199259758, 0.7372855544090271, -0.593101978302002, -0.7969143390655518, 0.11713611334562302, 0.48285001516342163, 0.5205517411231995, 0.17216719686985016, -0.9059494137763977, 0.3496345281600952, -0.1055312380194664, -0.1903241127729416, 0.23701061308383942, 0.24277445673942566, -0.14845339953899384, 0.5426828265190125, 0.5022602677345276, 0.08917073160409927, -0.179163858294487, 0.09116809070110321, 1.0305229425430298, -0.8420333862304688, -0.40251123905181885, -0.46499404311180115, 0.7925624251365662, -0.4112643003463745, -0.38891297578811646, 0.6969695091247559, 0.5969542860984802, 1.0849449634552002, 0.25649508833885193, 0.8462716937065125, -0.6328757405281067, 0.7598019242286682, -0.3579149842262268, 0.6772352457046509, -0.5111900568008423, -0.18056899309158325, -0.49425509572029114, -0.86015784740448, -0.30576765537261963, 0.7374266982078552, -0.15607719123363495, 0.33117449283599854, 0.3589359521865845, 0.5485715866088867, 0.14741136133670807, 0.1319383978843689, -0.14752358198165894, 0.10216885060071945, 0.06937497854232788, 0.315669983625412, 0.5517188310623169, -0.6528369188308716, 0.34686222672462463, -0.5485064387321472, -0.3254997730255127, 0.08060693740844727, -0.945351779460907, -0.8501749634742737, -1.0299028158187866, -0.832168698310852, -0.5236334800720215, -0.12969137728214264, 0.9409888386726379, 0.9416521787643433, -0.7812355756759644, -0.26822832226753235, 0.376173734664917, 0.09894794970750809, -0.11444265395402908, -0.31858396530151367, 0.24388083815574646, -0.02792186290025711, -0.604082465171814, -0.10612311959266663, -0.0581245981156826, 0.17708583176136017, -0.1903410255908966, 0.1567125916481018, -0.42943522334098816, -0.22507311403751373, 0.6612050533294678, 0.4055740535259247, -0.5411680936813354, -0.44887351989746094, -0.34097400307655334, 0.01866355538368225, -0.03278171271085739, 0.531226396560669, -0.5296544432640076, 0.35534200072288513, 0.2265547513961792, 0.6348285675048828, 0.5936640501022339, 0.2795863151550293, 0.20677608251571655, -1.023993730545044, -0.06984531879425049, 0.23812738060951233, 0.3374751806259155, 0.5795543193817139, -0.6764901876449585, 0.9135087728500366, 0.4494416415691376, -0.461775541305542, -0.7333168983459473, -0.1171906590461731, -1.3180278539657593, 0.15608103573322296, 1.0820729732513428, -0.23098459839820862, -0.18564297258853912, -0.37592047452926636, -0.13391053676605225, 0.27706506848335266, -0.30926939845085144, 0.5063137412071228, 0.9465676546096802, -0.18053002655506134, -0.2864813506603241, -0.6616488099098206, 0.5172959566116333, -0.13704931735992432, -1.0190106630325317, -0.05384890362620354, 0.4075205624103546, 0.3791182041168213, 0.3103698492050171, 0.6565893888473511, -0.08122389018535614, -0.0659639835357666, 0.05036064609885216, 0.3484095335006714, 0.07674958556890488, -0.12849852442741394, -0.1351698935031891, 0.020116567611694336, -0.28062769770622253, -0.12089270353317261 ]
null
null
null
null
null
null
null
null
null
null
null
null
null
neulab/conala
neulab
2022-10-20T20:25:00Z
462
46
null
[ "task_categories:text2text-generation", "language_creators:crowdsourced", "language_creators:expert-generated", "multilinguality:monolingual", "size_categories:unknown", "source_datasets:original", "language:code", "license:mit", "code-generation", "arxiv:1805.08949", "region:us" ]
2022-10-20T20:25:00Z
2022-09-14T19:31:08.000Z
2022-09-14T19:31:08
--- annotations_creators: [] language_creators: - crowdsourced - expert-generated language: - code license: - mit multilinguality: - monolingual size_categories: - unknown source_datasets: - original task_categories: - text2text-generation task_ids: [] pretty_name: CoNaLa tags: - code-generation --- ## Dataset Description - **Repository:** https://conala-corpus.github.io/ - **Paper:** [Learning to Mine Aligned Code and Natural Language Pairs from Stack Overflow](https://arxiv.org/pdf/1805.08949.pdf) ### Dataset Summary [CoNaLa](https://conala-corpus.github.io/) is a benchmark of code and natural language pairs, for the evaluation of code generation tasks. The dataset was crawled from Stack Overflow, automatically filtered, then curated by annotators, split into 2,379 training and 500 test examples. The automatically mined dataset is also available with almost 600k examples. ### Supported Tasks and Leaderboards This dataset is used to evaluate code generations. ### Languages English - Python code. ## Dataset Structure ```python dataset_curated = load_dataset("neulab/conala") DatasetDict({ train: Dataset({ features: ['question_id', 'intent', 'rewritten_intent', 'snippet'], num_rows: 2379 }) test: Dataset({ features: ['question_id', 'intent', 'rewritten_intent', 'snippet'], num_rows: 500 }) }) dataset_mined = load_dataset("neulab/conala", "mined") DatasetDict({ train: Dataset({ features: ['question_id', 'parent_answer_post_id', 'prob', 'snippet', 'intent', 'id'], num_rows: 593891 }) }) ``` ### Data Instances #### CoNaLa - curated This is the curated dataset by annotators ``` { 'question_id': 41067960, 'intent': 'How to convert a list of multiple integers into a single integer?', 'rewritten_intent': "Concatenate elements of a list 'x' of multiple integers to a single integer", 'snippet': 'sum(d * 10 ** i for i, d in enumerate(x[::-1]))' } ``` #### CoNaLa - mined This is the automatically mined dataset before curation ``` { 'question_id': 34705205, 'parent_answer_post_id': 34705233, 'prob': 0.8690001442846342, 'snippet': 'sorted(l, key=lambda x: (-int(x[1]), x[0]))', 'intent': 'Sort a nested list by two elements', 'id': '34705205_34705233_0' } ``` ### Data Fields Curated: |Field|Type|Description| |---|---|---| |question_id|int64|Id of the Stack Overflow question| |intent|string|Natural Language intent (i.e., the title of a Stack Overflow question)| |rewritten_intent|string|Crowdsourced revised intents that try to better reflect the full meaning of the code| |snippet|string| Code snippet that implements the intent| Mined: |Field|Type|Description| |---|---|---| |question_id|int64|Id of the Stack Overflow question| |parent_answer_post_id|int64|Id of the answer post from which the candidate snippet is extracted| |intent|string|Natural Language intent (i.e., the title of a Stack Overflow question)| |snippet|string| Code snippet that implements the intent| |id|string|Unique id for this intent/snippet pair| |prob|float64|Probability given by the mining model| ### Data Splits There are two version of the dataset (curated and mined), mined only has a train split and curated has two splits: train and test. ## Dataset Creation The dataset was crawled from Stack Overflow, automatically filtered, then curated by annotators. For more details, please refer to the original [paper](https://arxiv.org/pdf/1805.08949.pdf) ### Citation Information ``` @inproceedings{yin2018learning, title={Learning to mine aligned code and natural language pairs from stack overflow}, author={Yin, Pengcheng and Deng, Bowen and Chen, Edgar and Vasilescu, Bogdan and Neubig, Graham}, booktitle={2018 IEEE/ACM 15th international conference on mining software repositories (MSR)}, pages={476--486}, year={2018}, organization={IEEE} } ```
[ -0.3779914081096649, -0.770713746547699, 0.11260253190994263, -0.06297684460878372, -0.08434145897626877, -0.018904492259025574, -0.2955557405948639, -0.2085072547197342, 0.17896117269992828, 0.4077446460723877, -0.6991948485374451, -0.7943037152290344, -0.5168052911758423, 0.14325527846813202, -0.35348594188690186, 1.4316976070404053, 0.07669500261545181, -0.30462002754211426, -0.717908501625061, -0.26572561264038086, -0.2656250596046448, -0.42672330141067505, -0.4774661660194397, -0.010898555628955364, 0.11711127310991287, 0.5478034019470215, 0.44484710693359375, 0.4787636995315552, 0.5629633069038391, 0.27503636479377747, -0.13000111281871796, 0.337639719247818, -0.4826129376888275, 0.05782490223646164, -0.03389275446534157, -0.4700410068035126, -0.1882455199956894, 0.1024523377418518, 0.523131251335144, 0.585654079914093, -0.020575223490595818, 0.7117011547088623, 0.06818709522485733, 0.5940508246421814, -0.620959460735321, 0.3094697594642639, -0.7391663193702698, -0.16447363793849945, -0.28255391120910645, -0.1727313995361328, -0.21708771586418152, -0.691519021987915, 0.05828704684972763, -0.6470784544944763, 0.15889477729797363, -0.045541904866695404, 0.9057236313819885, 0.5198723077774048, -0.23889662325382233, -0.6594138145446777, -0.22271770238876343, 1.0477901697158813, -0.7819926738739014, -0.10609126836061478, 0.3278866112232208, 0.04012754186987877, -0.19113391637802124, -0.7256351709365845, -0.6824691295623779, 0.17452484369277954, -0.4578547775745392, -0.014242289587855339, -0.007029564119875431, -0.23610925674438477, 0.40703973174095154, 0.6405538320541382, -0.79620361328125, -0.11080722510814667, -0.7722086906433105, -0.10466579347848892, 0.9713821411132812, 0.21906545758247375, 0.17104867100715637, -0.5315892696380615, -0.34992873668670654, -0.09803164750337601, -0.5240333080291748, 0.6569234728813171, 0.5277952551841736, 0.25787806510925293, -0.43887001276016235, 0.6143280267715454, -0.29967552423477173, 0.7252587676048279, 0.17410337924957275, -0.047830257564783096, 0.6560465693473816, -0.6431185007095337, -0.2373562753200531, 0.13687188923358917, 1.0412664413452148, 0.3369131088256836, 0.24324560165405273, 0.05974170193076134, 0.2501722276210785, 0.11693743616342545, 0.23591190576553345, -0.9824649095535278, -0.19694170355796814, 0.7281522154808044, -0.3945119380950928, -0.49784183502197266, 0.19046738743782043, -0.7343863844871521, -0.31619793176651, -0.09705835580825806, 0.1542244255542755, -0.3235377073287964, -0.1999729424715042, 0.18724368512630463, -0.1270415037870407, 0.22244009375572205, -0.19624873995780945, -0.8809873461723328, 0.17150099575519562, 0.9314978122711182, 0.6896094083786011, 0.011463116854429245, -0.34874269366264343, -0.6004813313484192, -0.34608474373817444, -0.0450579971075058, 0.6180878281593323, -0.6272357106208801, -0.1372009962797165, -0.04574402794241905, 0.10557762533426285, -0.21066609025001526, -0.47863927483558655, 0.678563117980957, -0.4296950101852417, 0.5372353792190552, -0.0734473466873169, -0.6373909115791321, -0.2962026298046112, 0.5677301287651062, -0.518139660358429, 1.2081735134124756, 0.2638983428478241, -0.874049723148346, 0.46021753549575806, -0.7091474533081055, -0.24490296840667725, 0.04742245003581047, -0.19170160591602325, -0.6351287961006165, -0.27836474776268005, 0.2838680148124695, 0.38543838262557983, -0.22877237200737, 0.35374435782432556, -0.2517317533493042, -0.482408344745636, 0.2614842653274536, -0.061928220093250275, 1.2917962074279785, 0.17925135791301727, -0.15978509187698364, 0.16175848245620728, -0.9652522206306458, 0.1698862910270691, -0.05702495202422142, -0.3565342426300049, -0.32211142778396606, -0.04886234924197197, -0.21452149748802185, 0.38909912109375, 0.4963065981864929, -0.7228682637214661, 0.47505655884742737, -0.44736340641975403, 0.5080511569976807, 0.5505490899085999, 0.2343069165945053, 0.5182635188102722, -0.36180630326271057, 0.44929128885269165, 0.06135518103837967, 0.4036748707294464, -0.01776169426739216, -0.5208101272583008, -0.5649474263191223, -0.16822972893714905, 0.17707796394824982, 0.6045851111412048, -0.36227840185165405, 0.7983713150024414, -0.5106035470962524, -0.7144948244094849, -1.0275728702545166, 0.4317541718482971, 0.4525039494037628, 0.5596412420272827, 0.5462696552276611, -0.2064133733510971, -0.7692039608955383, -0.5886086225509644, -0.07774249464273453, 0.09535297751426697, 0.1656259149312973, 0.35410550236701965, 0.5503726601600647, -0.3484683036804199, 1.092585802078247, -0.5715795755386353, -0.32028257846832275, -0.08862316608428955, 0.14817890524864197, 0.8212032318115234, 0.7303906083106995, 0.30493831634521484, -0.8400179147720337, -0.5618855953216553, -0.24792000651359558, -0.8526411056518555, 0.0442657507956028, -0.24258771538734436, -0.4333101511001587, 0.2097776085138321, 0.6322258710861206, -0.7512025833129883, 0.387122243642807, 0.5280581116676331, -0.37687259912490845, 0.41398152709007263, 0.04358426854014397, -0.007806438487023115, -1.3383221626281738, 0.12271296977996826, -0.09851045906543732, 0.2551424205303192, -0.3160511255264282, -0.03038172237575054, -0.023104263469576836, 0.07812477648258209, -0.4681560695171356, 0.34250009059906006, -0.5425785183906555, 0.13852907717227936, 0.02204381860792637, 0.131670281291008, 0.09851118177175522, 0.8115816116333008, -0.19551558792591095, 0.6050009727478027, 0.6783010363578796, -0.7162394523620605, 0.48188337683677673, 0.594626784324646, -0.6038592457771301, 0.5095330476760864, -0.6912063360214233, 0.13931995630264282, -0.03733358159661293, 0.23743805289268494, -1.0052214860916138, 0.002855974715203047, 0.22375984489917755, -0.6119492053985596, 0.11407971382141113, -0.49925294518470764, -0.44110703468322754, -0.2894940972328186, -0.5954488515853882, 0.5160788297653198, 0.4019511044025421, -0.36036497354507446, 0.19829215109348297, 0.414135605096817, -0.048052024096250534, -0.6833207011222839, -0.6818420886993408, -0.40249794721603394, -0.18339091539382935, -0.7740394473075867, 0.3591284453868866, -0.17881084978580475, -0.1181737557053566, 0.18331289291381836, 0.03562759980559349, 0.13794754445552826, -0.028010055422782898, 0.3882264196872711, 0.23867934942245483, -0.021312952041625977, 0.20235681533813477, -0.02178923226892948, -0.30711013078689575, 0.16372835636138916, -0.12547844648361206, 0.8568031191825867, -0.22866687178611755, -0.27098599076271057, -0.16901317238807678, 0.1629108041524887, 0.5295251607894897, -0.4968107342720032, 0.831790566444397, 0.6706706881523132, -0.37269970774650574, 0.0765799731016159, -0.20761467516422272, -0.01972080022096634, -0.44667863845825195, 0.2040032148361206, -0.1915998011827469, -0.6610888838768005, 0.6526809334754944, 0.290018767118454, 0.42932987213134766, 0.766603410243988, 0.45618054270744324, 0.0035317251458764076, 0.8456054329872131, 0.33665773272514343, -0.12928606569766998, 0.45809221267700195, -0.8945589661598206, 0.2607865035533905, -1.0670199394226074, -0.48194724321365356, -0.5043203234672546, -0.47347405552864075, -1.0610933303833008, -0.13785481452941895, 0.24875150620937347, -0.0413476824760437, -0.49709492921829224, 0.3389669954776764, -1.0388317108154297, 0.19734306633472443, 0.9739449620246887, 0.11417727917432785, 0.03854505717754364, -0.11039885133504868, 0.20037686824798584, 0.08776243031024933, -0.5837867856025696, -0.33765295147895813, 1.3193118572235107, 0.04116245359182358, 0.6402140259742737, 0.03686394914984703, 0.9199806451797485, 0.043324656784534454, 0.051823344081640244, -0.5297183394432068, 0.4481557011604309, -0.10145683586597443, -0.6756634712219238, -0.33570823073387146, -0.35246434807777405, -1.0891990661621094, -0.1614740788936615, -0.3330102860927582, -0.6399326920509338, 0.3234268128871918, -0.11190491169691086, -0.5466250777244568, 0.2546672523021698, -0.8630273938179016, 1.1969521045684814, -0.2905888259410858, -0.3697837293148041, 0.01412978209555149, -0.8051329255104065, 0.18889141082763672, 0.17671483755111694, 0.16448622941970825, 0.014185839332640171, 0.19285431504249573, 0.7784937024116516, -0.6805537939071655, 0.7215529680252075, -0.16343115270137787, 0.24183395504951477, 0.5723558664321899, -0.11546939611434937, 0.5387531518936157, 0.2731549143791199, -0.17834879457950592, 0.17133809626102448, 0.06936348229646683, -0.4788603186607361, -0.514967679977417, 0.884248673915863, -0.8489015102386475, -0.2738650143146515, -0.5567528605461121, -0.7200245261192322, 0.14213846623897552, 0.21958401799201965, 0.56520676612854, 0.5481230616569519, 0.23636120557785034, 0.5383757948875427, 0.5283456444740295, -0.2538258135318756, 0.40685728192329407, 0.11482618004083633, 0.038635801523923874, -0.3674977421760559, 0.7591861486434937, 0.2568613290786743, 0.01738433726131916, 0.3960239291191101, 0.03319674730300903, -0.5136641263961792, -0.5515417456626892, -0.3659534752368927, 0.0053966715931892395, -0.44221800565719604, -0.4186021089553833, -0.8187239766120911, -0.40207356214523315, -0.5648022890090942, -0.10971032828092575, -0.18056948482990265, -0.3213253617286682, -0.4139259159564972, -0.31692206859588623, 0.861265242099762, 0.3508755564689636, 0.0481298565864563, 0.02497723512351513, -0.6473010182380676, 0.13793468475341797, 0.2596662640571594, 0.4469582140445709, -0.3532007932662964, -0.4958430528640747, -0.30555209517478943, 0.3442213535308838, -0.24500614404678345, -0.5149285197257996, 0.3177255392074585, 0.08100439608097076, 0.5085386633872986, 0.19869990646839142, 0.29282379150390625, 0.8197959661483765, 0.04345351830124855, 0.8327552080154419, -0.20948286354541779, -0.6137359142303467, 0.6972846388816833, -0.10448341071605682, 0.30715712904930115, 0.9550800919532776, 0.29206401109695435, -0.5297898650169373, -0.3789313733577728, -1.143596887588501, -1.141311764717102, 0.7346963286399841, 0.19196559488773346, 0.11013118177652359, -0.01555647887289524, 0.10571588575839996, 0.23571348190307617, 0.30956733226776123, -0.7595508694648743, -0.37251001596450806, -0.16258062422275543, -0.5554881691932678, 0.07628369331359863, -0.16537724435329437, -0.14138032495975494, -0.3920457363128662, 0.7786704897880554, 0.0985943078994751, 0.19714847207069397, 0.12093878537416458, -0.3720313310623169, 0.09198987483978271, 0.3050357699394226, 0.3511597812175751, 0.5280829071998596, -0.5472926497459412, 0.02168928273022175, 0.083108089864254, -0.5128579139709473, -0.31718626618385315, 0.3952485918998718, -0.35021862387657166, -0.11685505509376526, 0.2578614354133606, 0.6074943542480469, 0.07725659757852554, -0.5598613023757935, 0.4555112421512604, 0.07341516762971878, -0.09009453654289246, -0.5731208324432373, 0.20124585926532745, -0.14068123698234558, 0.230520099401474, 0.4085412621498108, 0.22320492565631866, 0.11273699253797531, -0.5592452883720398, 0.3161385655403137, 0.4212777614593506, -0.24847783148288727, 0.006273446138948202, 0.434190571308136, -0.02949715033173561, -0.29562339186668396, 0.9470449686050415, -0.538867175579071, -0.39490607380867004, 0.769166111946106, 0.193792924284935, 0.7721588015556335, 0.526816189289093, 0.06212468445301056, 0.7656300067901611, 0.25726422667503357, 0.261821448802948, 0.3618556559085846, -0.1666726917028427, -0.745408833026886, -0.29328954219818115, -0.6058435440063477, -0.17512640357017517, 0.11705954372882843, -0.7319105267524719, 0.2341872602701187, -0.3641747236251831, 0.13766679167747498, -0.07332439720630646, 0.5561700463294983, -0.6909903883934021, 0.18634068965911865, -0.10201229900121689, 0.782909095287323, -0.7983203530311584, 0.4557696282863617, 0.8224312663078308, -0.8168064951896667, -0.8152404427528381, -0.32878977060317993, -0.17949847877025604, -0.6746394634246826, 0.17473658919334412, 0.34957000613212585, 0.34450238943099976, 0.02191907726228237, -0.9341518878936768, -0.8735511302947998, 1.2102077007293701, 0.04239354282617569, -0.18328030407428741, 0.20362207293510437, 0.04768988490104675, 0.5988818407058716, -0.3728843927383423, 0.48763519525527954, 0.6036269664764404, 0.36070045828819275, -0.10423220694065094, -0.5607646703720093, 0.1403989940881729, -0.8473916053771973, -0.42508405447006226, 0.3252282738685608, -0.714621365070343, 0.925782322883606, -0.21977980434894562, -0.12756164371967316, -0.11925745755434036, 0.5354430675506592, 0.6686186790466309, 0.5373916029930115, 0.3683520257472992, 0.8185088634490967, 0.8509018421173096, -0.2866598069667816, 1.0689893960952759, -0.4538789689540863, 0.6928482055664062, 0.9820380806922913, 0.13888590037822723, 0.7470154762268066, 0.5710856914520264, -0.12678295373916626, 0.908607006072998, 0.7088321447372437, -0.2499443143606186, 0.6331995725631714, 0.15142133831977844, 0.07479266822338104, 0.06947308778762817, -0.09862127900123596, -0.5529651045799255, 0.39701399207115173, 0.3642023205757141, -0.2854597270488739, -0.11822321265935898, -0.3859648108482361, 0.1747177094221115, 0.13696923851966858, -0.21056662499904633, 0.7729429006576538, -0.20544463396072388, -0.9249547123908997, 0.807531476020813, -0.32706159353256226, 1.0608309507369995, -0.4079638719558716, -0.03127229958772659, -0.3074999749660492, 0.2971358895301819, -0.7536001205444336, -1.058347225189209, 0.38723722100257874, 0.0964212641119957, -0.3093399405479431, -0.20908494293689728, 0.43422746658325195, -0.6504600644111633, -0.6890665888786316, -0.10527291148900986, 0.12107578665018082, 0.267801970243454, -0.01188512984663248, -0.826738715171814, -0.21436701714992523, 0.17153345048427582, -0.26874449849128723, 0.12379246950149536, 0.5909644961357117, -0.026913879439234734, 0.5530997514724731, 0.9837656021118164, -0.1686563342809677, 0.287501722574234, -0.09291335940361023, 0.8913866877555847, -0.6348589658737183, -0.4646364152431488, -0.9012666344642639, 0.9315747022628784, -0.3836177587509155, -0.7546409368515015, 0.7216675877571106, 1.0613420009613037, 1.0811700820922852, 0.024947967380285263, 0.7390080094337463, -0.5358503460884094, 0.5914775133132935, -0.3973943889141083, 0.5457341074943542, -0.47269731760025024, 0.24177886545658112, -0.09898718446493149, -0.6167182326316833, -0.06281314045190811, 0.6420225501060486, -0.504758894443512, -0.018407875671982765, 0.6058916449546814, 1.007460594177246, -0.00262626213952899, -0.10142531245946884, -0.4252912104129791, 0.09028688073158264, 0.27029603719711304, 0.9577789306640625, 0.513405978679657, -0.8538439273834229, 0.8790788650512695, -0.5866814255714417, -0.16285760700702667, -0.24817337095737457, -0.761680006980896, -0.6877328157424927, -0.6262980103492737, -0.4146021604537964, -0.5630123615264893, -0.3727836608886719, 0.9271712899208069, 0.5528157353401184, -1.0652464628219604, -0.07374235987663269, -0.37473347783088684, 0.4758606553077698, -0.3819708824157715, -0.33386802673339844, 0.6763947606086731, -0.2863968312740326, -0.8015792965888977, -0.033786073327064514, 0.025413256138563156, -0.29708683490753174, 0.022486472502350807, -0.14448583126068115, -0.6260663866996765, -0.353893518447876, 0.40773674845695496, 0.349546879529953, -0.2671544551849365, -0.06346897035837173, 0.27842384576797485, -0.28581568598747253, 0.18328489363193512, 0.28202810883522034, -0.7057197690010071, 0.4608856439590454, 0.8064159154891968, 0.4149166941642761, 0.6279014348983765, 0.21551106870174408, 0.19135534763336182, -0.951477587223053, 0.36782142519950867, 0.2041635513305664, 0.2885347008705139, 0.31256887316703796, -0.5516690015792847, 0.714009165763855, 0.07367901504039764, -0.63070148229599, -0.8271352052688599, -0.025104176253080368, -1.1955327987670898, 0.06635073572397232, 1.3987220525741577, 0.11540364474058151, -0.19855579733848572, -0.10955587029457092, -0.25850269198417664, 0.3513036072254181, -0.43545693159103394, 0.7327461242675781, 0.48361027240753174, -0.023441066965460777, -0.014208566397428513, -0.2785794138908386, 0.6466230154037476, 0.16014860570430756, -0.7542383074760437, -0.2318001091480255, 0.1695224642753601, 0.263908714056015, 0.4207296371459961, 0.5289309620857239, -0.2054440677165985, 0.3413553833961487, -0.1722113937139511, 0.20576877892017365, -0.2709517180919647, 0.1377311795949936, -0.14655114710330963, 0.24640913307666779, -0.3252192735671997, -0.6493450403213501 ]
null
null
null
null
null
null
null
null
null
null
null
null
null
SocialGrep/reddit-crypto-aug-2021
SocialGrep
2022-07-01T19:08:05Z
461
4
null
[ "annotations_creators:lexyr", "language_creators:crowdsourced", "multilinguality:monolingual", "size_categories:1M<n<10M", "source_datasets:original", "language:en", "license:cc-by-4.0", "region:us" ]
2022-07-01T19:08:05Z
2022-03-02T23:29:22.000Z
2022-03-02T23:29:22
--- annotations_creators: - lexyr language_creators: - crowdsourced language: - en license: - cc-by-4.0 multilinguality: - monolingual size_categories: - 1M<n<10M source_datasets: - original paperswithcode_id: null --- # Dataset Card for reddit-crypto-aug-2021 ## 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://socialgrep.com/datasets](https://socialgrep.com/datasets?utm_source=huggingface&utm_medium=link&utm_campaign=dataset&utm_term=crypto) - **Point of Contact:** [Website](https://socialgrep.com/contact?utm_source=huggingface&utm_medium=link&utm_campaign=dataset&utm_term=crypto) ### Dataset Summary This corpus contains the complete data for the activity on the following subreddits for the entire month of August 2021: - /r/cryptocurrency - /r/cryptocurrencyclassic - /r/cryptocurrencyico - /r/cryptomars - /r/cryptomoon - /r/cryptomoonshots - /r/satoshistreetbets ### Languages Mainly English. ## Dataset Structure ### Data Instances A data point is a post or a comment. Due to the separate nature of the two, those exist in two different files - even though many fields are shared. ### Data Fields - 'type': the type of the data point. Can be 'post' or 'comment'. - 'id': the base-36 Reddit ID of the data point. Unique when combined with type. - 'subreddit.id': the base-36 Reddit ID of the data point's host subreddit. Unique. - 'subreddit.name': the human-readable name of the data point's host subreddit. - 'subreddit.nsfw': a boolean marking the data point's host subreddit as NSFW or not. - 'created_utc': a UTC timestamp for the data point. - 'permalink': a reference link to the data point on Reddit. - 'score': score of the data point on Reddit. - 'domain': (Post only) the domain of the data point's link. - 'url': (Post only) the destination of the data point's link, if any. - 'selftext': (Post only) the self-text of the data point, if any. - 'title': (Post only) the title of the post data point. - 'body': (Comment only) the body of the comment data point. - 'sentiment': (Comment only) the result of an in-house sentiment analysis pipeline. Used for exploratory analysis. ## 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 CC-BY v4.0 ### Contributions [Needs More Information]
[ -0.5404424667358398, -0.7950488328933716, 0.2991160750389099, 0.31409454345703125, -0.5990647673606873, 0.0840258076786995, -0.18224987387657166, -0.49225112795829773, 0.862756073474884, 0.540741503238678, -0.8911030888557434, -1.1233999729156494, -0.7365579009056091, 0.2830563187599182, -0.40678152441978455, 1.265858769416809, 0.1300402134656906, -0.40585076808929443, -0.2609758675098419, -0.06268628686666489, -0.1891869604587555, -0.6231405735015869, -0.4423847794532776, -0.0686560869216919, 0.5016374588012695, 0.5651133060455322, 0.46177586913108826, 0.8339946866035461, 0.7964569330215454, 0.32382771372795105, 0.2326018065214157, -0.06302734464406967, -0.46597355604171753, -0.2776220738887787, -0.18334046006202698, -0.273022323846817, -0.7211397886276245, 0.12247451394796371, 0.32584625482559204, 0.5549502372741699, -0.14973759651184082, 0.5079866647720337, -0.26763394474983215, 0.610487699508667, -0.6287477016448975, 0.6267475485801697, -0.6739698052406311, -0.13933028280735016, -0.3044435977935791, -0.2653307020664215, -0.007671779952943325, -0.6119120121002197, -0.307811439037323, -0.7467506527900696, 0.19318071007728577, -0.05009693279862404, 0.7485446333885193, -0.08507078886032104, -0.09703049808740616, -0.27793219685554504, -0.4605553448200226, 0.7731305360794067, -0.6787660121917725, 0.17874272167682648, 0.7269999384880066, 0.15970918536186218, 0.09968207031488419, -0.8464751839637756, -0.4757234752178192, 0.3139243721961975, -0.21693313121795654, 0.11658184975385666, -0.20143671333789825, -0.40774646401405334, 0.39344877004623413, 0.5392272472381592, -0.3439888060092926, -0.6295807361602783, -0.8808643817901611, -0.13243621587753296, 1.0530827045440674, 0.21611057221889496, 0.16723555326461792, -0.45073387026786804, -0.13226065039634705, -0.09067822992801666, -0.4645859897136688, -0.08960742503404617, 0.5791749954223633, 0.5002335906028748, -0.742394745349884, 0.8419710397720337, -0.15784984827041626, 0.5095967054367065, 0.02292003110051155, -0.09708114713430405, 0.5317043662071228, -0.8661947250366211, 0.07192324846982956, -0.19587579369544983, 1.0500400066375732, 0.795318067073822, 0.12553352117538452, 0.16546811163425446, 0.035550303757190704, 0.02270505577325821, 0.06464294344186783, -0.679604172706604, -0.4281015694141388, 0.43699362874031067, -0.6785241961479187, -0.5557892322540283, 0.504298746585846, -1.0565118789672852, -0.37394100427627563, -0.1682441234588623, -0.0313546322286129, 0.001191412564367056, -0.37096574902534485, 0.13329307734966278, -0.2858137786388397, 0.10079653561115265, 0.0037530348636209965, -0.8197738528251648, 0.6085243225097656, 0.7648069858551025, 0.7005795836448669, -0.1768452376127243, -0.17978428304195404, -0.04833931475877762, 0.10022827237844467, 0.03711368516087532, 0.6355928778648376, -0.45775818824768066, -0.3971423804759979, 0.08875974267721176, 0.5167148113250732, 0.1297040432691574, -0.24238164722919464, 0.6708716750144958, -0.4444243013858795, 0.16430023312568665, -0.4745770990848541, -0.38632237911224365, 0.005205887835472822, 0.259769082069397, -0.8056097626686096, 0.9098296761512756, 0.13985008001327515, -1.1503649950027466, 0.3233613073825836, -0.928149402141571, -0.5084142088890076, 0.06764256209135056, -0.057316843420267105, -0.4162421226501465, -0.226545050740242, -0.022188527509570122, 0.4284527003765106, -0.23655012249946594, -0.1268264651298523, -0.3803609311580658, -0.24034641683101654, 0.36901670694351196, -0.020558658987283707, 0.9973781108856201, 0.04679350554943085, -0.08243017643690109, 0.08646882325410843, -1.0355985164642334, -0.13211184740066528, 0.3762582838535309, -0.1585264801979065, -0.28176507353782654, 0.03321721777319908, 0.1922033280134201, 0.029640015214681625, 0.6663498878479004, -0.6943953037261963, 0.22271348536014557, -0.25885576009750366, 0.8822128176689148, 0.591597855091095, 0.43598318099975586, 0.30663344264030457, -0.3681910037994385, 0.43265146017074585, 0.14363595843315125, 0.7087594270706177, 0.16232384741306305, -0.7254447340965271, -0.6810248494148254, -0.09117623418569565, 0.18427824974060059, 0.7780176997184753, -0.36077970266342163, 0.8940614461898804, -0.36125487089157104, -0.6868140697479248, -0.41790616512298584, 0.0661054328083992, -0.06436409801244736, 0.46685555577278137, 0.4781251847743988, -0.3519367575645447, -0.9337610006332397, -0.7534856200218201, 0.09848049283027649, -0.16662250459194183, 0.2172194868326187, 0.565192699432373, 0.966884970664978, -0.4320526719093323, 0.6316563487052917, -0.8645014762878418, -0.037778742611408234, -0.18681252002716064, 0.30088284611701965, 0.4806215167045593, 0.2723003625869751, 0.30471372604370117, -1.0195685625076294, -0.5513468384742737, -0.04160790890455246, -0.5793042778968811, -0.019927168264985085, -0.05165993422269821, -0.14197836816310883, 0.1129651814699173, 0.32451751828193665, -0.6294559240341187, 0.5853980183601379, 0.5376449823379517, -0.4359232187271118, 0.3576856553554535, -0.006464071571826935, 0.4765774607658386, -1.0938620567321777, 0.19598521292209625, 0.02373317815363407, 0.05449090152978897, -0.25903546810150146, -0.33718129992485046, -0.011643125675618649, 0.06288988143205643, -0.41449645161628723, 0.5432817339897156, -0.1919497400522232, 0.15467381477355957, 0.03971371054649353, 0.26262760162353516, -0.1015203669667244, 0.3665694296360016, -0.1416032463312149, 0.5840273499488831, 0.6400521993637085, -0.5053598284721375, 0.6378995180130005, 0.164865642786026, -0.20147934556007385, 0.3967515230178833, -0.971350371837616, 0.12874634563922882, -0.1015741229057312, -0.0025312488432973623, -0.9529708623886108, -0.5227275490760803, 0.7400000691413879, -0.7689709067344666, -0.06589468568563461, -0.14195221662521362, -0.46790751814842224, -0.44626402854919434, -0.7761210799217224, 0.448011577129364, 0.35703063011169434, 0.025247087702155113, 0.37473949790000916, 0.7646332383155823, -0.06955280900001526, -0.6882726550102234, -0.6904186010360718, 0.041600968688726425, -0.2624864876270294, -0.6326810121536255, 0.5326524376869202, -0.2692437469959259, -0.33712589740753174, 0.24151453375816345, 0.31303319334983826, -0.03920602798461914, -0.17528343200683594, 0.49102675914764404, 0.24438750743865967, 0.28457313776016235, -0.13269992172718048, -0.2983531355857849, -0.268123984336853, 0.2969647943973541, 0.059054870158433914, 0.5976765155792236, -0.0301654152572155, -0.3601185977458954, -0.544680118560791, 0.33449605107307434, 0.44060882925987244, -0.12004701048135757, 0.7014983892440796, 0.47052228450775146, -0.4486595690250397, 0.13145066797733307, -0.37563130259513855, -0.36975225806236267, -0.4339384436607361, 0.12409831583499908, 0.009913771413266659, -0.5869343280792236, 0.8989201784133911, 0.37173816561698914, 0.45820683240890503, 0.8034844398498535, 0.4797765910625458, -0.0432836078107357, 0.8838150501251221, 0.6599494814872742, -0.19528087973594666, 0.6067214012145996, -0.44061562418937683, 0.3312581479549408, -0.5331180691719055, -0.3788439631462097, -0.5333779454231262, -0.369447261095047, -0.9413931369781494, -0.44530558586120605, -0.1564762145280838, -0.0773150846362114, -0.13551443815231323, 0.6437551379203796, -0.5599014163017273, 0.3351520299911499, 0.6203001737594604, 0.1594083458185196, 0.22539091110229492, 0.08703001588582993, 0.4349078834056854, -0.23599785566329956, -0.42161455750465393, -0.41374024748802185, 1.415109395980835, 0.30518436431884766, 0.7401919960975647, -0.09483784437179565, 0.8269065618515015, 0.4972626566886902, 0.27349576354026794, -0.47948917746543884, 0.6286742091178894, -0.17001676559448242, -0.5638084411621094, -0.14614352583885193, -0.34110596776008606, -0.8455318212509155, -0.4726983606815338, -0.37419062852859497, -0.41571125388145447, 0.3423359990119934, -0.020267071202397346, -0.0833243578672409, 0.22382597625255585, -0.48404911160469055, 0.9002098441123962, -0.11448360979557037, -0.37715592980384827, -0.11667293310165405, -0.9277834296226501, 0.20455262064933777, 0.1983594447374344, 0.5135442018508911, -0.08784140646457672, -0.2163446545600891, 0.9322311878204346, -0.5372089147567749, 1.0414371490478516, -0.07233597338199615, 0.23302270472049713, 0.5281694531440735, -0.477865070104599, 0.5794649124145508, 0.22833579778671265, 0.06573987007141113, 0.46029582619667053, -0.0576113685965538, -0.31577590107917786, -0.3090696930885315, 0.8650566935539246, -0.8581382036209106, -0.08844435960054398, -0.34111377596855164, -0.2590859830379486, 0.1736825555562973, 0.15357385575771332, 0.33852413296699524, 0.10047093033790588, -0.16196270287036896, 0.37271013855934143, 0.6531050205230713, -0.007830677554011345, 0.1501365453004837, 0.19705703854560852, -0.10287002474069595, -0.9384901523590088, 0.8455424308776855, 0.1479232907295227, -0.075221948325634, 0.3995550572872162, 0.140494242310524, -0.5240563750267029, -0.34871190786361694, -0.09101133048534393, 0.5394011735916138, -0.7069107890129089, -0.28242945671081543, -0.6345778703689575, -0.26852279901504517, -0.7452269196510315, -0.2293231338262558, -0.266548216342926, -0.5819631218910217, -0.49902400374412537, -0.5052136778831482, 0.9010546803474426, 0.48828521370887756, -0.6130428910255432, 0.13659512996673584, -0.6473804116249084, 0.38996946811676025, 0.21091343462467194, 0.36294689774513245, -0.31685999035835266, -0.2525116801261902, -0.18836912512779236, 0.2522065043449402, -0.007362004369497299, -0.8020316362380981, 0.3374473452568054, -0.002021011197939515, 0.37462106347084045, 0.3002927601337433, 0.14518651366233826, 0.6283820867538452, 0.07061140239238739, 0.9116803407669067, 0.2186732441186905, -0.5651563405990601, 0.8549573421478271, -0.44927874207496643, 0.09857841581106186, 0.8348352313041687, 0.5066708326339722, -0.6136353611946106, -0.3947739899158478, -0.9916161298751831, -1.1003133058547974, 0.41337451338768005, 0.11930159479379654, 0.30678585171699524, -0.3493413031101227, 0.5242712497711182, -0.017835229635238647, 0.3154950439929962, -1.1772969961166382, -0.7571871876716614, -0.3415240943431854, -0.312202125787735, 0.2877059280872345, -0.21837587654590607, -0.4733574092388153, -0.5937591195106506, 0.7585049271583557, 0.10618626326322556, 0.3302614688873291, -0.046701811254024506, 0.19176717102527618, -0.26995202898979187, 0.17832428216934204, 0.5517814755439758, 0.9632323980331421, -0.32629236578941345, 0.06774432212114334, -0.02942619100213051, -0.7154867053031921, -0.34206417202949524, 0.290058970451355, -0.3275957405567169, -0.134240061044693, 0.4535880386829376, 0.3517574071884155, 0.25483235716819763, -0.4679262638092041, 0.6597349047660828, -0.3016418516635895, -0.33018237352371216, -0.6221049427986145, 0.05865294113755226, 0.1150522530078888, 0.1544133424758911, 0.3062472641468048, -0.044497713446617126, 0.01634853705763817, -0.7646817564964294, 0.38784801959991455, 0.20971402525901794, -0.42146995663642883, -0.47256550192832947, 0.6783451437950134, 0.21287457644939423, -0.3884456753730774, 0.5002501010894775, -0.19764208793640137, -0.22254422307014465, 0.7841812968254089, 0.18637824058532715, 0.7926615476608276, 0.20438481867313385, 0.2791055142879486, 0.808976948261261, 0.37995851039886475, 0.11343487352132797, 0.8936518430709839, -0.01112124603241682, -0.6151139140129089, -0.23214015364646912, -0.629040539264679, -0.08532039076089859, 0.28293657302856445, -0.6289041042327881, 0.6212432384490967, -0.6938424110412598, -0.442180335521698, 0.0654875785112381, 0.287361741065979, -0.54477858543396, 0.19533920288085938, -0.18349529802799225, 0.8610931038856506, -1.0137618780136108, 0.3606247901916504, 0.8484377264976501, -0.5888413786888123, -0.3503822684288025, -0.45370733737945557, -0.02520795725286007, -0.7011727690696716, 0.3221093714237213, -0.189999520778656, 0.09406891465187073, -0.2456704080104828, -1.0041532516479492, -0.7404999136924744, 1.174150824546814, -0.18025530874729156, -0.34649747610092163, 0.37779828906059265, 0.39229869842529297, 0.5459860563278198, -0.5260252356529236, 0.09369911253452301, 0.3606981635093689, 0.7493013143539429, 0.2725268304347992, -0.39228755235671997, 0.17836599051952362, -0.5018256902694702, -0.5098177194595337, 0.27974259853363037, -0.6341060996055603, 0.8740701675415039, -0.07524669915437698, -0.30257755517959595, -0.21171513199806213, 0.6217390298843384, 0.35450872778892517, 0.33592164516448975, 0.49633505940437317, 0.7235559225082397, 0.5702000260353088, -0.3242894113063812, 0.9029159545898438, -0.6934071779251099, 0.6446077823638916, 0.8617024421691895, 0.20260648429393768, 0.769296407699585, 0.5512102842330933, -0.37203189730644226, 0.47777390480041504, 0.7496276497840881, -0.3103771209716797, 0.6389777064323425, -0.05056357756257057, -0.14562974870204926, -0.17150090634822845, -0.2087106555700302, -0.6454892754554749, 0.219689279794693, 0.4079442620277405, -0.5959206819534302, 0.04795496538281441, -0.439688503742218, 0.23638342320919037, -0.08207526803016663, -0.414554238319397, 0.8084507584571838, -0.09652974456548691, -0.3472321629524231, 0.08574764430522919, 0.06585005670785904, 0.7182867527008057, -0.7098662853240967, -0.10325442254543304, -0.2132042497396469, 0.17395901679992676, -0.5416498780250549, -1.0358712673187256, 0.641975462436676, -0.05085817724466324, -0.39072373509407043, -0.27254775166511536, 0.8346481323242188, -0.3196712136268616, -0.9616063833236694, 0.20047426223754883, 0.14399272203445435, 0.1315581053495407, 0.17940840125083923, -0.987458348274231, 0.26715725660324097, 0.03151770681142807, -0.2950993478298187, 0.07619376480579376, 0.5208008885383606, 0.18102987110614777, 0.4000856876373291, 0.7722976207733154, 0.23381397128105164, 0.03410088270902634, 0.11231738328933716, 0.9302200675010681, -0.9829801321029663, -0.413441002368927, -0.7054166197776794, 0.6451461315155029, -0.524293065071106, -0.520982027053833, 0.7984729409217834, 0.7753728628158569, 0.9205963015556335, 0.07800744473934174, 0.9728305339813232, -0.6397459506988525, 0.6340586543083191, -0.1417543739080429, 0.7847259044647217, -0.7499489188194275, -0.051630716770887375, -0.33829861879348755, -0.6376295685768127, -0.3997364044189453, 0.7509754300117493, -0.31044086813926697, 0.007052839267998934, 0.5021663308143616, 0.9296894669532776, 0.024539431557059288, 0.26143938302993774, -0.15750300884246826, 0.34799709916114807, 0.1369142085313797, 0.22168081998825073, 0.6194109916687012, -0.659988522529602, 0.5037351250648499, -0.8644651770591736, -0.23714928328990936, -0.28599339723587036, -0.9444559216499329, -0.7654446959495544, -0.7491421699523926, -0.6634202003479004, -0.44283929467201233, -0.1650511771440506, 0.7511492371559143, 0.6052410006523132, -0.9541441202163696, -0.34641945362091064, -0.13640958070755005, 0.3486229479312897, -0.14707063138484955, -0.37063276767730713, 0.3360128104686737, 0.3387063443660736, -0.5940059423446655, -0.1300860196352005, 0.3216100037097931, -0.12878260016441345, -0.17995111644268036, 0.09566131979227066, -0.28474971652030945, 0.08359279483556747, 0.6863322854042053, 0.5242041349411011, -0.372769832611084, -0.34423744678497314, 0.20202386379241943, -0.07099581509828568, 0.08660348504781723, 0.7050564289093018, -0.13665743172168732, 0.14574813842773438, 0.9077461957931519, -0.07917439192533493, 0.5425599813461304, 0.33345022797584534, 0.040024593472480774, -0.583647608757019, 0.09818628430366516, 0.1560339480638504, 0.3497166335582733, 0.2623811960220337, -0.4042801856994629, 0.5531775951385498, 0.5764579176902771, -0.5719349980354309, -0.4875919818878174, -0.11702793091535568, -1.2553479671478271, -0.1091134324669838, 1.1372488737106323, 0.11213762313127518, -0.4576660692691803, -0.29535427689552307, -0.022375909611582756, 0.02460589073598385, -0.688660204410553, 0.9054855108261108, 0.8514729738235474, -0.255588173866272, -0.17171938717365265, -0.5795377492904663, 0.47711318731307983, -0.4276001453399658, -1.119207739830017, 0.2405596226453781, 0.4358414113521576, 0.3467295169830322, 0.308023065328598, 0.8953546285629272, -0.39237621426582336, 0.15744075179100037, -0.031208686530590057, 0.06318417191505432, 0.08405759185552597, -0.2963024377822876, 0.16743101179599762, 0.21894223988056183, -0.4234650135040283, -0.1893984079360962 ]
null
null
null
null
null
null
null
null
null
null
null
null
null
bigbio/medmentions
bigbio
2022-12-22T15:45:34Z
461
4
null
[ "multilinguality:monolingual", "language:en", "license:cc0-1.0", "arxiv:1902.09476", "region:us" ]
2022-12-22T15:45:34Z
2022-11-13T22:09:49.000Z
2022-11-13T22:09:49
--- language: - en bigbio_language: - English license: cc0-1.0 multilinguality: monolingual bigbio_license_shortname: CC0_1p0 pretty_name: MedMentions homepage: https://github.com/chanzuckerberg/MedMentions bigbio_pubmed: True bigbio_public: True bigbio_tasks: - NAMED_ENTITY_DISAMBIGUATION - NAMED_ENTITY_RECOGNITION --- # Dataset Card for MedMentions ## Dataset Description - **Homepage:** https://github.com/chanzuckerberg/MedMentions - **Pubmed:** True - **Public:** True - **Tasks:** NED,NER MedMentions is a new manually annotated resource for the recognition of biomedical concepts. What distinguishes MedMentions from other annotated biomedical corpora is its size (over 4,000 abstracts and over 350,000 linked mentions), as well as the size of the concept ontology (over 3 million concepts from UMLS 2017) and its broad coverage of biomedical disciplines. Corpus: The MedMentions corpus consists of 4,392 papers (Titles and Abstracts) randomly selected from among papers released on PubMed in 2016, that were in the biomedical field, published in the English language, and had both a Title and an Abstract. Annotators: We recruited a team of professional annotators with rich experience in biomedical content curation to exhaustively annotate all UMLS® (2017AA full version) entity mentions in these papers. Annotation quality: We did not collect stringent IAA (Inter-annotator agreement) data. To gain insight on the annotation quality of MedMentions, we randomly selected eight papers from the annotated corpus, containing a total of 469 concepts. Two biologists ('Reviewer') who did not participate in the annotation task then each reviewed four papers. The agreement between Reviewers and Annotators, an estimate of the Precision of the annotations, was 97.3%. ## Citation Information ``` @misc{mohan2019medmentions, title={MedMentions: A Large Biomedical Corpus Annotated with UMLS Concepts}, author={Sunil Mohan and Donghui Li}, year={2019}, eprint={1902.09476}, archivePrefix={arXiv}, primaryClass={cs.CL} } ```
[ -0.5133172869682312, -0.13426347076892853, 0.5997912287712097, -0.0678391307592392, -0.47287043929100037, 0.10998141765594482, -0.14126774668693542, -0.6587185263633728, 0.5203906893730164, 0.535267174243927, -0.2716090679168701, -0.82470703125, -0.5481091737747192, 0.6587660908699036, 0.0718657597899437, 1.4321961402893066, -0.007011148147284985, 0.2750665247440338, -0.34842538833618164, -0.6810821294784546, 0.01227894239127636, -0.3503628373146057, -0.35960638523101807, -0.29106688499450684, 0.8356549143791199, 0.0004976719501428306, 0.4689940810203552, 0.7429774403572083, 1.0047909021377563, 0.2847197353839874, -0.3817717134952545, 0.5066878199577332, -0.3509739339351654, -0.14615312218666077, -0.3356011211872101, -0.5427991151809692, -0.5540472269058228, 0.2460615336894989, 0.6705690026283264, 0.7749214768409729, -0.0030437686946243048, 0.3882560431957245, -0.02788807824254036, 0.7245986461639404, -0.429246723651886, 0.23307035863399506, -0.3511335253715515, 0.21102334558963776, -0.43566519021987915, -0.4334551692008972, -0.2943023443222046, -0.3174300789833069, 0.3439928889274597, -0.9080696702003479, 0.18483275175094604, 0.0682111531496048, 1.0313777923583984, 0.4884982705116272, -0.028482962399721146, -0.13915042579174042, -0.2362828105688095, 0.7198880314826965, -0.7379745244979858, 0.0796373039484024, 0.3574242889881134, 0.09163162857294083, -0.148991197347641, -0.7643424272537231, -0.28445500135421753, 0.016970928758382797, -0.4784946143627167, 0.3166307508945465, -0.1365003138780594, 0.18737785518169403, 0.5438055992126465, 0.40202006697654724, -0.6220044493675232, 0.03475187346339226, -0.7451185584068298, -0.44078290462493896, 0.5943812727928162, 0.16291576623916626, -0.0030369239393621683, -0.6054971218109131, -0.4229089617729187, -0.03640156611800194, -0.5482038855552673, -0.03901762515306473, -0.06907539814710617, 0.12562918663024902, -0.37010955810546875, 0.7720990180969238, 0.0325971357524395, 0.6494420766830444, -0.10660716891288757, -0.19188901782035828, 0.9196557998657227, -0.583025336265564, -0.2638818323612213, -0.10663110762834549, 0.954879879951477, 0.6544947028160095, -0.1944570690393448, -0.23848654329776764, 0.16906845569610596, 0.08272914588451385, 0.18566393852233887, -0.8116488456726074, -0.18281617760658264, 0.6352487802505493, -0.7566777467727661, -0.4295453131198883, 0.15068550407886505, -0.8691788911819458, -0.46113330125808716, -0.4008839726448059, 0.17368943989276886, -0.535097599029541, -0.07996214181184769, -0.042888008058071136, -0.23944400250911713, 0.02582673728466034, 0.07943130284547806, -0.36626940965652466, 0.13713763654232025, 0.3554297685623169, 1.021167516708374, -0.38959991931915283, -0.13494428992271423, 0.07040034979581833, 0.11500722914934158, -0.3925005793571472, 1.032518744468689, -0.3246762454509735, -0.4140913486480713, -0.16747459769248962, 0.41741037368774414, -0.07345953583717346, -0.5888959765434265, 0.8071510791778564, -0.2931022047996521, 0.13762380182743073, -0.5302063822746277, -0.8320411443710327, -0.11348386108875275, 0.0690251812338829, -0.6978752017021179, 0.639011025428772, 0.09931420534849167, -0.9696884751319885, 0.6577568650245667, -1.0047968626022339, -0.1494741290807724, 0.16840317845344543, -0.41570502519607544, -0.23545929789543152, 0.11592701822519302, 0.03086412139236927, 0.5490483641624451, -0.24432362616062164, 0.19060644507408142, -0.14311447739601135, 0.027536405250430107, 0.6469324231147766, 0.05682055652141571, 0.7606801986694336, 0.5161307454109192, 0.046896424144506454, 0.1546696126461029, -1.1200954914093018, -0.01987151801586151, -0.06542173027992249, -0.26505541801452637, -0.5129314064979553, -0.13370908796787262, 0.185877725481987, 0.4265017509460449, -0.00047798914602026343, -0.9004660844802856, 0.1652965247631073, -0.6853697299957275, 0.5599523782730103, 0.5269657969474792, 0.41450440883636475, 0.2902945876121521, -0.46117082238197327, 0.12054833769798279, 0.21871313452720642, 0.34512972831726074, -0.014692801050841808, -0.5039228796958923, -0.3665609061717987, -0.6963911652565002, 0.5951687097549438, 0.26766258478164673, -0.476925253868103, 0.7062253355979919, -0.2939736545085907, -0.6303767561912537, -0.8701145648956299, -0.27806857228279114, 0.5427656769752502, 0.4603343605995178, 0.5849449038505554, -0.28283876180648804, -0.6021584272384644, -0.8819799423217773, 0.2592619061470032, -0.11805100739002228, -0.10469233244657516, 0.17243805527687073, 0.7897757887840271, -0.49649038910865784, 0.7477473616600037, -0.43288373947143555, -0.448115736246109, 0.5225821733474731, 0.10654696822166443, 0.21765980124473572, 0.5599400401115417, 0.6488460302352905, -0.6487381458282471, 0.05601204186677933, -0.18054530024528503, -0.8347635269165039, -0.22774158418178558, -0.16453850269317627, -0.4435913860797882, 0.29405316710472107, 0.49184370040893555, -0.5233005881309509, 0.22640058398246765, 0.553244948387146, -0.45126932859420776, 0.3778427243232727, -0.2799595296382904, 0.18643489480018616, -1.1924829483032227, 0.5501855611801147, -0.09459986537694931, 0.15039214491844177, -0.03954673558473587, -0.19614441692829132, -0.01746339537203312, 0.23539553582668304, -0.16233815252780914, 0.42667868733406067, -0.43630874156951904, 0.1657085418701172, 0.026216864585876465, 0.26227736473083496, 0.23732486367225647, 0.16703005135059357, -0.07824426144361496, 0.6295284032821655, 0.45141592621803284, -0.5748148560523987, 0.2852354347705841, 0.7508866190910339, 0.07304894179105759, 0.9087145924568176, -0.7253608703613281, -0.5373979806900024, -0.2388688176870346, 0.29702743887901306, -1.0391263961791992, -0.3026731610298157, 0.24931040406227112, -0.5928878784179688, 0.3309815227985382, -0.09706742316484451, -0.4389053285121918, -0.49696114659309387, -0.416243314743042, 0.08228597044944763, 0.25742194056510925, -0.3103635013103485, 0.3715173900127411, 0.5780156850814819, -0.016441674903035164, -0.3889312148094177, -0.8178510665893555, 0.017191048711538315, 0.00470635574311018, -0.2685863971710205, 0.49529600143432617, -0.17470099031925201, -0.21116581559181213, 0.37064459919929504, -0.08609362691640854, 0.16540409624576569, -0.34009453654289246, 0.5470457673072815, 0.5466083288192749, -0.0636942982673645, 0.5105535387992859, 0.049272362142801285, -0.3605037331581116, 0.10137530416250229, -0.3273549973964691, 0.16900679469108582, 0.07432857900857925, -0.40235793590545654, -0.28768420219421387, 0.1353495717048645, 0.6439454555511475, -0.47083303332328796, 0.6071879863739014, 0.7053446173667908, -0.39669710397720337, 0.42718788981437683, -0.7347732782363892, -0.12158116698265076, -0.30413347482681274, 0.302600234746933, -0.07242310792207718, -0.7145654559135437, 0.775170087814331, 0.010307962074875832, 0.3521944284439087, 0.9862405061721802, 0.3597000241279602, -0.24704104661941528, 0.7007322907447815, 0.19350503385066986, -0.007353401277214289, 0.039473384618759155, -0.5490351319313049, -0.25679364800453186, -1.0184502601623535, -0.5477355718612671, -0.6330151557922363, -0.28560391068458557, -0.9251171946525574, -0.6935245990753174, 0.2207598239183426, -0.33309486508369446, -0.13166141510009766, 0.158504456281662, -0.9824870824813843, 0.15645213425159454, 0.40753066539764404, 0.3079149127006531, 0.15835794806480408, 0.2178984433412552, -0.3862585723400116, -0.24280191957950592, -0.5970405340194702, -0.9114676713943481, 1.3172310590744019, 0.47405651211738586, 0.45964160561561584, -0.0707269012928009, 0.802460253238678, 0.05679747834801674, 0.5307736992835999, -0.6090626120567322, 0.33616092801094055, -0.1974438577890396, -0.8488604426383972, -0.1388084441423416, -0.569057047367096, -1.2077970504760742, -0.1407574862241745, -0.505950391292572, -0.5939270257949829, 0.56386798620224, -0.1817888468503952, -0.6460044384002686, 0.3667278587818146, -0.3614889979362488, 0.6557670831680298, 0.07393016666173935, -0.25350111722946167, -0.006795922294259071, -1.007597804069519, -0.006807432509958744, -0.12042921036481857, 0.2700668275356293, -0.2569761872291565, -0.5474632382392883, 1.0927866697311401, -0.423845499753952, 0.7837355732917786, -0.07928178459405899, 0.09463761001825333, 0.400905042886734, -0.38989168405532837, 0.017128150910139084, 0.15427306294441223, 0.038233671337366104, 0.36442917585372925, 0.5292360186576843, -0.5951701998710632, -0.13713659346103668, 0.45297935605049133, -0.6416741013526917, 0.2272467464208603, -0.7879590392112732, -0.4795241057872772, -0.147031769156456, 0.1902834177017212, 0.734696626663208, 0.6562665700912476, -0.13898824155330658, 0.12955208122730255, 0.8367140293121338, -0.2691902220249176, 0.1963655799627304, 0.4596048593521118, 0.052507515996694565, -0.8845667839050293, 0.7360186576843262, 0.25843682885169983, 0.006099116988480091, 0.2451687604188919, -0.17505308985710144, -0.33665379881858826, -0.6675257086753845, -0.4300459325313568, 0.6194415092468262, -0.4426175653934479, -0.5874171853065491, -0.7955830097198486, -0.16063648462295532, -0.13919129967689514, -0.03423655405640602, -0.28031471371650696, -0.2763347625732422, -0.32337287068367004, -0.33922964334487915, 0.6805525422096252, 0.5736269354820251, -0.4666195809841156, 0.05655433610081673, -0.8964118361473083, 0.3110262453556061, -0.17349129915237427, 0.6030779480934143, -0.5440382957458496, -0.5369759202003479, -0.1984361857175827, -0.011685118079185486, -0.035730671137571335, -0.7791562676429749, 0.15277384221553802, 0.10764440894126892, 0.7496557831764221, 0.6774556040763855, -0.07437681406736374, 0.6350699663162231, -0.2826646566390991, 0.6795735359191895, 0.17577533423900604, -0.25176647305488586, 0.4504009485244751, -0.3289945721626282, 0.06096627563238144, 0.9679981470108032, 0.436602920293808, -0.3361209034919739, -0.32304927706718445, -1.0083223581314087, -0.891191840171814, 0.4045296609401703, 0.37384894490242004, -0.1731739193201065, -0.231293186545372, 0.5552361011505127, 0.03979746252298355, 0.15273787081241608, -0.32629919052124023, -0.710705578327179, 0.1573546826839447, -0.39879268407821655, -0.1871507167816162, -0.3924250900745392, -0.5143662691116333, -0.32143449783325195, 0.8748855590820312, -0.017606571316719055, 0.49673891067504883, 0.5844436883926392, 0.16192083060741425, -0.11752188950777054, 0.13726435601711273, 0.6521050333976746, 0.6429843306541443, -0.31408169865608215, 0.15953943133354187, 0.05633557587862015, -0.8930659890174866, 0.090861976146698, 0.5578060746192932, -0.21622934937477112, 0.2967357039451599, 0.49973157048225403, 0.41386330127716064, 0.144166961312294, -0.7289324402809143, 0.2292497158050537, 0.06960123032331467, -0.35730451345443726, -0.13605967164039612, -0.13291020691394806, -0.09033986181020737, 0.23010246455669403, 0.2286241203546524, 0.44507455825805664, 0.29906830191612244, 0.0028988767880946398, 0.34199759364128113, 0.02373945526778698, -0.578541100025177, -0.2653598487377167, 0.3642804026603699, 0.09071202576160431, 0.5312420725822449, 0.038527961820364, -0.5419145226478577, -0.09101317822933197, 0.34281671047210693, 0.07917241007089615, 0.3284314274787903, -0.10135781019926071, 0.2771148979663849, 0.8084941506385803, 0.26882633566856384, -0.1576385796070099, 0.5077484846115112, 0.45338526368141174, -0.47292569279670715, -0.672195315361023, -0.835879385471344, -0.2524118721485138, 0.04782354086637497, -0.6718233227729797, -0.052889954298734665, -0.28594619035720825, -0.5931494832038879, 0.5426768064498901, 0.2075285166501999, -0.5698075294494629, 0.2485520839691162, -0.06604008376598358, 0.9371020197868347, -0.9283812046051025, 0.299278199672699, 1.0825127363204956, -1.0202430486679077, -0.6944902539253235, -0.6063036918640137, 0.0693143829703331, -0.5055703520774841, 0.4713827967643738, -0.1669084131717682, 0.42653656005859375, -0.08943713456392288, -0.5575124621391296, -0.7989747524261475, 1.247144341468811, 0.0646488294005394, -0.5386766195297241, 0.06619234383106232, 0.049004361033439636, 0.9006314277648926, -0.2944386601448059, 0.08458380401134491, 0.588278591632843, 0.5945467948913574, -0.0052871485240757465, -0.7253733277320862, 0.05109221115708351, -0.531063973903656, -0.17959542572498322, 0.08752996474504471, -0.3734554052352905, 0.6161777973175049, -0.15911273658275604, -0.04615425691008568, 0.2691385746002197, 0.36949560046195984, 0.40025725960731506, 0.42926910519599915, 0.04367094114422798, 0.7352505326271057, 0.980794370174408, -0.327000230550766, 0.9414653182029724, -0.21432466804981232, 0.2542980909347534, 0.7650522589683533, 0.06944816559553146, 0.6620613932609558, 0.8233635425567627, -0.49322059750556946, 0.39442262053489685, 0.8254132270812988, -0.4223281741142273, 0.39557188749313354, 0.33215615153312683, -0.04334289953112602, 0.0572798028588295, -0.46661368012428284, -0.6159099340438843, 0.2179275006055832, 0.5555627346038818, -0.8234075307846069, 0.06223094090819359, 0.24545840919017792, 0.14126838743686676, 0.09153842180967331, -0.28155702352523804, 0.935965895652771, 0.00393153540790081, -0.27530646324157715, 0.4793742895126343, -0.2620304226875305, 0.6893221735954285, -0.5234250426292419, -0.10285685956478119, -0.06668689846992493, 0.05131633207201958, -0.5551882386207581, -0.7391815185546875, 0.27867838740348816, -0.009621494449675083, -0.430569589138031, 0.4124324917793274, 0.5714191794395447, -0.18835514783859253, -0.7301651835441589, 0.11431334912776947, 0.762711763381958, 0.487026572227478, 0.21289600431919098, -0.7193453907966614, -0.005125378258526325, -0.19701480865478516, -0.07633594423532486, 0.044671375304460526, 0.7717751264572144, 0.17637953162193298, 0.40514060854911804, 0.6268781423568726, 0.6107574701309204, -0.2824866473674774, 0.08598032593727112, 0.8575902581214905, -0.4763875901699066, -0.14643138647079468, -0.794196367263794, 0.445762038230896, -0.47851577401161194, -0.5340132117271423, 0.7852232456207275, 0.8527882695198059, 0.8402061462402344, -0.1557108461856842, 0.7594002485275269, -0.11498794704675674, 0.8941789865493774, -0.31247496604919434, 0.788849413394928, -0.3545043170452118, 0.08415324240922928, -0.5486708283424377, -0.5997862815856934, -0.5727067589759827, 0.845260500907898, -0.29442763328552246, 0.00011029568850062788, 0.6903518438339233, 0.5982049703598022, 0.05170648917555809, -0.037160724401474, 0.0791412889957428, 0.26020270586013794, 0.07572834938764572, 0.2719566524028778, 0.5107723474502563, -0.4441261887550354, 0.2664586007595062, -0.36563700437545776, -0.24901780486106873, -0.21646541357040405, -0.7637086510658264, -0.9046271443367004, -0.6595863103866577, -0.5941970944404602, -0.6197236776351929, -0.038264982402324677, 1.3051199913024902, 0.743537425994873, -1.2007920742034912, 0.20014996826648712, 0.056349340826272964, -0.3474140465259552, -0.1947832554578781, -0.13475191593170166, 0.812838613986969, -0.47074323892593384, -0.16979405283927917, -0.2175188809633255, 0.3035050928592682, 0.2537528872489929, 0.018756035715341568, -0.10560819506645203, -0.2532873749732971, -0.0446631982922554, 0.582373321056366, 0.2789428234100342, -0.597658097743988, 0.033012755215168, -0.019546525552868843, -0.5460053086280823, 0.1890677660703659, 0.40334388613700867, -0.43039634823799133, 0.4004374146461487, 0.30662813782691956, 0.5384100675582886, 0.051598649471998215, -0.12209194898605347, 0.034486323595047, -0.5635172128677368, 0.21658110618591309, 0.361465185880661, 0.5543885231018066, 0.4430609345436096, -0.06459316611289978, 0.9467865824699402, 0.4380454421043396, -0.5491016507148743, -0.7006348967552185, -0.19787554442882538, -1.1267818212509155, -0.21063953638076782, 1.0373948812484741, -0.045880869030952454, -0.20051360130310059, -0.1450042426586151, -0.6505751013755798, 0.39613133668899536, -0.40518972277641296, 0.628130316734314, 0.3514673411846161, -0.06049422174692154, 0.31135010719299316, -0.8371443748474121, 0.8539007902145386, 0.1006101444363594, -1.1244760751724243, -0.02623920887708664, 0.700411319732666, -0.02275552786886692, 0.7093763947486877, 0.5223784446716309, -0.649871826171875, 0.2564142346382141, -0.20274589955806732, 0.43059447407722473, -0.10064656287431717, 0.08699800074100494, -0.2935900390148163, -0.10982269048690796, 0.05995165929198265, -0.31600138545036316 ]
null
null
null
null
null
null
null
null
null
null
null
null
null
Muennighoff/babi
Muennighoff
2023-02-12T13:34:24Z
461
0
null
[ "region:us" ]
2023-02-12T13:34:24Z
2023-02-12T09:19:00.000Z
2023-02-12T09:19:00
Creation (Copied & adapted from https://github.com/stanford-crfm/helm/blob/0eaaa62a2263ddb94e9850ee629423b010f57e4a/src/helm/benchmark/scenarios/babi_qa_scenario.py): ```python !wget http://www.thespermwhale.com/jaseweston/babi/tasks_1-20_v1-2.tar.gz !tar -xf tasks_1-20_v1-2.tar.gz import json from typing import List tasks = list(range(1, 20)) splits = ["train", "valid", "test"] def process_path(path: str) -> str: """Turn a path string (task 19) from the original format 's,w' to a verbal model-friendly format 'south west'""" steps: List[str] = path.split(",") directions = {"s": "south", "n": "north", "e": "east", "w": "west"} path = " ".join([directions[step] for step in steps]) return path for split in splits: with open(f"babi_{split}.jsonl", "w") as f_base: for task in tasks: split_path: str = f"./tasks_1-20_v1-2/en-valid/qa{task}_{split}.txt" with open(split_path, "r") as f: facts = list(f) story: List[str] = [] for fact in facts: fid = int(fact.split(" ")[0]) if fid == 1: story = [] fact = " ".join(fact.split(" ")[1:]) is_question = "?" in fact if is_question: question, answer = fact.split("\t")[:2] question, answer = question.strip(), answer.strip() # All tasks except task 19 have a verbal single-word answer (e.g. kitchen, apple, yes). # Task 19 (path finding) has a non verbal answer format ( if task == 19: answer = process_path(answer) f_base.write(json.dumps({ "passage": "".join(story), "question": question, "answer": answer, "task": task, }) + "\n") if "?" in story: print("STORY", "".join(story)) else: story.append(fact) ```
[ -0.1407541185617447, -0.8787550330162048, 0.6422998905181885, 0.5139806270599365, -0.1334141492843628, 0.054949287325143814, -0.30635181069374084, -0.27072426676750183, -0.002364696469157934, 0.3826025128364563, -0.642985463142395, -0.6246413588523865, -0.6322703957557678, 0.29581519961357117, -0.2761824429035187, 1.2294001579284668, -0.12692847847938538, -0.43472763895988464, -0.08845987915992737, -0.28947675228118896, -0.32007911801338196, -0.4809669256210327, -0.7795517444610596, -0.2660936415195465, 0.3157643973827362, 0.3452814817428589, 0.6668846011161804, 0.585152268409729, 0.4454728662967682, 0.4545760154724121, -0.19133219122886658, 0.3393672704696655, -0.04273844510316849, 0.38747385144233704, -0.21521547436714172, -0.37335073947906494, -0.48454928398132324, 0.027413303032517433, 0.6433418393135071, 0.8538830876350403, -0.20597417652606964, 0.6178920269012451, -0.23046816885471344, 0.6329543590545654, -0.45872464776039124, 0.49473297595977783, -0.4298849403858185, -0.2147960513830185, -0.07246612757444382, -0.23394833505153656, -0.03190610930323601, -0.028435779735445976, 0.3189728856086731, -0.8319260478019714, 0.36878669261932373, 0.24361376464366913, 1.134260654449463, 0.16864916682243347, -0.5042049288749695, -0.4295245110988617, -0.3161279559135437, 0.9680382013320923, -0.991077184677124, 0.319722056388855, 0.4788314402103424, 0.045864131301641464, -0.3981718122959137, -0.7719103693962097, -0.8804906010627747, -0.0705377459526062, -0.19791197776794434, 0.18621306121349335, -0.09942605346441269, -0.08956321328878403, 0.40137627720832825, 0.1600792109966278, -0.7910897731781006, -0.4563407599925995, -0.6266981959342957, -0.07990948855876923, 0.9184378385543823, 0.5835254788398743, 0.08419855684041977, -0.48896318674087524, -0.11389382183551788, -0.4620974659919739, -0.019294295459985733, 0.7156538367271423, 0.28984272480010986, 0.555482029914856, -0.5220288038253784, 0.5962664484977722, -0.5185878872871399, 0.6583036184310913, 0.22905384004116058, -0.5693572163581848, 0.7427094578742981, -0.5905411243438721, -0.036619845777750015, -0.07536140829324722, 1.0522128343582153, 0.5696540474891663, -0.04848650097846985, 0.002954204799607396, 0.006836904678493738, -0.03435548394918442, 0.3279329240322113, -0.7531176805496216, -0.36592018604278564, 0.6301319599151611, -0.37601158022880554, -0.0907144621014595, -0.22896599769592285, -0.6688769459724426, -0.4441847801208496, 0.14850731194019318, 0.417575478553772, -0.7544525265693665, -0.33413341641426086, 0.020377418026328087, -0.4731765389442444, 0.2108144462108612, -0.0654551088809967, -0.7983852624893188, 0.2567247152328491, 0.6087211966514587, 1.0250904560089111, 0.17589037120342255, -0.4759131968021393, -0.4126748740673065, -0.11366551369428635, -0.4916701316833496, 0.6416637301445007, -0.17400632798671722, -0.4456329941749573, -0.31221333146095276, 0.22775709629058838, -0.26770123839378357, -0.5383393168449402, 0.41914382576942444, -0.16126741468906403, 0.2931065559387207, -0.4827311635017395, -0.1993296593427658, -0.5645155310630798, 0.6550217866897583, -0.3805667757987976, 1.3749233484268188, 0.4983986020088196, -1.0395426750183105, 0.19186647236347198, -0.6511071920394897, -0.8223690986633301, -0.2418915331363678, -0.08156085759401321, -0.5170407891273499, -0.2638320326805115, 0.33015769720077515, 0.42104098200798035, -0.45415300130844116, 0.21230590343475342, -0.22378617525100708, -0.395928293466568, 0.24433498084545135, 0.02115301787853241, 1.0467270612716675, 0.04134977608919144, -0.5825645327568054, 0.2295352816581726, -0.9785209894180298, -0.008921044878661633, 0.17196577787399292, -0.5844140648841858, -0.33636099100112915, 0.28968513011932373, -0.12286446243524551, 0.27482959628105164, 0.3051093816757202, -0.674102783203125, 0.1382070630788803, -0.5943953990936279, 0.30885377526283264, 0.6018797159194946, 0.24650220572948456, 0.1824193000793457, -0.6488705277442932, 0.42758485674858093, 0.29388004541397095, 0.11183694005012512, 0.11378415673971176, -0.5841763019561768, -0.7736456394195557, -0.36755892634391785, 0.016714321449398994, 0.843032956123352, -0.6585807800292969, 0.5237210392951965, -0.33622464537620544, -0.8582955598831177, -0.6370636224746704, -0.05524642392992973, 0.3687032163143158, 0.8343446254730225, 0.48514100909233093, -0.16403891146183014, -0.8083705306053162, -0.9207965135574341, -0.22282646596431732, -0.4803333878517151, 0.09394804388284683, 0.15417274832725525, 0.6220234632492065, -0.3090662360191345, 0.923715353012085, -0.5243104696273804, -0.18459950387477875, -0.33562472462654114, 0.3484560549259186, 0.9761220812797546, 0.5590577721595764, 0.3347313404083252, -0.6246969699859619, -0.4142904281616211, -0.14764007925987244, -0.7797071933746338, 0.0016810661181807518, -0.2699004113674164, -0.1569196581840515, 0.30493807792663574, 0.2278590202331543, -0.7378018498420715, 0.37562042474746704, 0.3321876525878906, -0.5975349545478821, 0.7459250688552856, -0.18789079785346985, 0.5104526281356812, -1.156463861465454, 0.27117130160331726, -0.10741361975669861, 0.011288972571492195, -0.5221556425094604, -0.0896662250161171, -0.04103509336709976, 0.28696003556251526, -0.23155954480171204, 0.5203391909599304, -0.5198114514350891, 0.13377675414085388, 0.11458052694797516, 0.030366340652108192, -0.1893945187330246, 0.7417399883270264, 0.11376876384019852, 0.6410004496574402, 0.7509207129478455, -0.7496583461761475, 0.3792390823364258, 0.5706675052642822, -0.2579119801521301, 0.5798822045326233, -0.6294252276420593, 0.07607098668813705, 0.10291768610477448, 0.1353215128183365, -0.8989045023918152, 0.16274338960647583, 0.39864373207092285, -0.7010718584060669, 0.00003981571353506297, -0.1763358861207962, -0.6297094225883484, -0.42759549617767334, -0.46124526858329773, 0.3098193109035492, 0.5443578362464905, -0.12702031433582306, 0.6811721324920654, 0.28985580801963806, -0.08406828343868256, -0.6532703638076782, -0.6743201613426208, -0.18881794810295105, -0.15328502655029297, -0.7507968544960022, 0.15542598068714142, -0.2204340100288391, -0.16669641435146332, 0.2030341476202011, -0.4816288948059082, -0.043169062584638596, 0.15501579642295837, 0.44431236386299133, 0.24716489017009735, -0.08102301508188248, -0.4431738555431366, -0.0377475768327713, 0.11442600935697556, 0.30568253993988037, 0.06580517441034317, 0.5252748131752014, -0.20912818610668182, -0.005214561242610216, -0.05429285764694214, 0.5465945601463318, 0.46472829580307007, -0.2669961452484131, 0.9353835582733154, 0.7046771049499512, -0.3281862735748291, -0.3059792220592499, -0.18606865406036377, 0.08535446226596832, -0.5215736627578735, 0.5558578372001648, -0.46371057629585266, -0.5224201083183289, 0.7029907703399658, 0.11500632017850876, 0.3286251425743103, 0.5417212247848511, 0.5572447180747986, -0.24788151681423187, 1.021562099456787, 0.2754913866519928, 0.17440246045589447, 0.09361567348241806, -0.7696468830108643, 0.43617939949035645, -0.9077230095863342, -0.2768881022930145, -0.35401397943496704, -0.26315584778785706, -0.6465913653373718, -0.4072563946247101, 0.7547153830528259, 0.295375257730484, -0.39738744497299194, 0.43927279114723206, -0.5403231978416443, -0.12971524894237518, 0.739828884601593, -0.028201358392834663, -0.0029796743765473366, -0.3561142683029175, -0.3542958199977875, 0.3489171266555786, -0.7460487484931946, -0.3945598602294922, 1.2848498821258545, 0.008922804147005081, 0.23829863965511322, 0.028355976566672325, 0.8611072301864624, 0.07354813069105148, 0.08223442733287811, -0.5320815443992615, 0.8537614941596985, 0.07181670516729355, -0.828474223613739, -0.41018906235694885, -0.35891464352607727, -1.1554304361343384, 0.29906055331230164, -0.2922191023826599, -0.9272965788841248, -0.1642618328332901, -0.04711819440126419, -0.4581942856311798, 0.2108205109834671, -0.5507643818855286, 0.9979904294013977, 0.04223142936825752, -0.06959713995456696, -0.07640324532985687, -0.8709585070610046, 0.3077811598777771, -0.01546188723295927, 0.5806246399879456, -0.2573927342891693, 0.06992542743682861, 1.2367807626724243, -0.683085560798645, 0.5852305293083191, -0.1659613996744156, 0.25998377799987793, 0.3945944011211395, 0.09929339587688446, 0.47076597809791565, 0.022443940863013268, -0.18063803017139435, 0.2854272723197937, 0.5923857092857361, -0.36946138739585876, -0.5734849572181702, 0.24881547689437866, -0.7076213359832764, -0.46080803871154785, -0.9236777424812317, -1.0206555128097534, -0.46583008766174316, 0.24935103952884674, 0.27936407923698425, 0.48074790835380554, 0.24428807199001312, -0.025651337578892708, 0.09413287043571472, -0.29697462916374207, 0.5154539942741394, 0.6711437106132507, 0.0787818506360054, -0.6031899452209473, 0.5555092096328735, 0.14782214164733887, -0.07830853760242462, 0.2318066954612732, 0.21801301836967468, -0.47883155941963196, -0.7232642769813538, -0.3176720440387726, 0.34546512365341187, -0.5483884215354919, -0.2223823070526123, -0.7268813848495483, -0.32487496733665466, -0.7305170297622681, -0.03974180668592453, -0.2194667011499405, -0.2625603973865509, -0.06354095041751862, 0.0718025490641594, 0.7041800618171692, 0.5097234845161438, -0.4131150543689728, 0.14041298627853394, -0.7793986201286316, 0.675514280796051, 0.03554711118340492, 0.0863422304391861, -0.0643528401851654, -0.4849133789539337, -0.39731261134147644, 0.0840492695569992, -0.46487197279930115, -1.021618366241455, 0.4405154883861542, -0.03927198052406311, 0.6810261011123657, -0.013757046312093735, 0.5226038098335266, 0.9024531245231628, -0.45939669013023376, 1.1008864641189575, 0.134049192070961, -1.05630624294281, 0.5501794815063477, -0.45537859201431274, 0.19371944665908813, 0.47837814688682556, 0.3742219805717468, -0.9540420770645142, -0.6930509209632874, -0.6775068640708923, -1.459377646446228, 0.9658997654914856, 0.2828305661678314, -0.3973933756351471, -0.2788044214248657, -0.06012018024921417, -0.00714809400960803, 0.2704612612724304, -0.4367288649082184, -0.6228299736976624, -0.21618840098381042, -0.49675312638282776, -0.14059311151504517, 0.026832997798919678, -0.2646336257457733, -0.5909277200698853, 1.0136648416519165, 0.03493731468915939, 0.378275066614151, 0.7305412292480469, -0.10358833521604538, 0.10249695926904678, 0.26458683609962463, 0.40047940611839294, 0.6942126750946045, -0.528009831905365, 0.1546734869480133, 0.4054921567440033, -0.5637152791023254, 0.1345123052597046, 0.2308184951543808, -0.022846227511763573, -0.005808357615023851, 0.9305130243301392, 0.6573359370231628, -0.0032625761814415455, -0.8063469529151917, 0.43678975105285645, 0.10644058883190155, -0.4694826006889343, -0.36286789178848267, 0.02913418971002102, 0.23274293541908264, 0.652324914932251, 0.5370277762413025, -0.03233640268445015, 0.17523768544197083, -0.5853304862976074, 0.05340141803026199, 0.2732190787792206, 0.03622845560312271, -0.2353900671005249, 0.49221351742744446, -0.23282445967197418, -0.5149185061454773, 0.7002967596054077, -0.7022674679756165, -0.8843940496444702, 0.5342612862586975, 0.46345165371894836, 0.6908050179481506, 0.2622917890548706, 0.16123126447200775, 0.6254962086677551, 0.5843786597251892, 0.05289021506905556, 0.8724973797798157, -0.1369272768497467, -0.6449289321899414, -0.25840720534324646, -0.7143301963806152, -0.3347119092941284, 0.28503212332725525, -0.5441691279411316, -0.09715311229228973, -0.4539385139942169, -0.24539317190647125, -0.09364397078752518, 0.37965843081474304, -0.8459030985832214, 0.409063458442688, -0.19721049070358276, 0.7627781629562378, -0.7279747724533081, 0.5206294655799866, 0.8677575588226318, -0.44382989406585693, -1.4742769002914429, -0.05684204399585724, -0.1909146010875702, -0.4528908431529999, 0.4592542350292206, 0.057955555617809296, 0.12733674049377441, -0.3350510597229004, -0.26199617981910706, -0.9417620897293091, 1.1146833896636963, 0.20391356945037842, -0.30152082443237305, -0.08184768259525299, 0.08234962075948715, 0.5098630785942078, 0.10034574568271637, 0.3801046311855316, 0.7087888717651367, 0.7781993746757507, -0.43580684065818787, -1.1488012075424194, 0.5320345163345337, -0.5986525416374207, -0.24429969489574432, 0.09109704196453094, -0.4937973916530609, 1.145873785018921, -0.41650381684303284, -0.2739943861961365, 0.09086544066667557, 0.6923529505729675, 0.731630265712738, 0.5966497659683228, 0.8609965443611145, 0.5243382453918457, 0.7887887358665466, -0.12666495144367218, 0.9137846827507019, -0.24650324881076813, 0.43446412682533264, 0.8992651104927063, -0.1468832939863205, 0.7246848344802856, 0.43598994612693787, -0.39934200048446655, 0.8983253240585327, 0.7348535656929016, -0.09351347386837006, 0.6206743121147156, 0.3544383645057678, 0.09826726466417313, -0.004112524911761284, 0.26324430108070374, -0.3577345907688141, 0.644664466381073, -0.0886906236410141, 0.04540505260229111, -0.18025517463684082, -0.3224962651729584, 0.1919364333152771, 0.04462781175971031, -0.10501100867986679, 0.44885560870170593, -0.2157372534275055, -0.8647639155387878, 0.919387698173523, 0.07252217829227448, 0.8454244136810303, -0.748201847076416, 0.012205814011394978, -0.07719843834638596, 0.13736000657081604, -0.2068750560283661, -0.8822343945503235, 0.3750600218772888, -0.0025740377604961395, -0.3507412075996399, 0.05460158362984657, 0.16459126770496368, -0.4643266201019287, -0.6340762972831726, 0.4377852976322174, 0.4576415419578552, 0.25298136472702026, -0.08207972347736359, -0.8020650744438171, -0.15688902139663696, -0.14450253546237946, -0.6419509649276733, 0.06204073131084442, 0.6046786308288574, 0.06172836944460869, 0.5738361477851868, 0.9040859341621399, 0.2937549948692322, 0.20815439522266388, -0.35494235157966614, 0.5544081330299377, -1.048403263092041, -0.7232396602630615, -0.6948954463005066, 0.6354609131813049, -0.21291811764240265, -0.6343106627464294, 0.8396558165550232, 0.8284674882888794, 0.7276083827018738, -0.01918334700167179, 0.7736278772354126, -0.433403342962265, 0.6836400032043457, -0.31550779938697815, 0.816733717918396, -0.6634637713432312, -0.14268839359283447, -0.3504238724708557, -0.41357555985450745, 0.17162252962589264, 0.7455772161483765, -0.12238099426031113, -0.12366263568401337, 1.2081272602081299, 0.9211844205856323, 0.08534888178110123, -0.13178233802318573, -0.1458047777414322, 0.25133591890335083, 0.26014095544815063, 0.8050656318664551, 0.5836532711982727, -0.6263009905815125, 0.6402754187583923, -0.6421917676925659, -0.20436158776283264, 0.2777382433414459, -0.9205838441848755, -0.8860408663749695, -1.1004823446273804, -0.4622250497341156, -0.5653137564659119, -0.04996819794178009, 0.9128323793411255, 0.8362336754798889, -0.8111981749534607, -0.45923927426338196, 0.13638699054718018, 0.25392815470695496, -0.8684272170066833, -0.2903693914413452, 0.468824565410614, -0.15616780519485474, -0.4231151342391968, 0.5555455684661865, -0.06992776691913605, -0.328836590051651, 0.3926408886909485, -0.08359161764383316, -0.5780914425849915, 0.2702634334564209, 0.4868411123752594, 0.19540105760097504, -0.6134689450263977, -0.5117559432983398, -0.06385265290737152, 0.006380952429026365, -0.012417257763445377, 0.46085670590400696, -0.7452806234359741, 0.05623855069279671, 0.5344016551971436, 0.4175254702568054, 0.6878092885017395, -0.1956103891134262, 0.32712358236312866, -0.7639349699020386, 0.02105049602687359, 0.14332237839698792, 0.45199260115623474, 0.34888747334480286, -0.2656441032886505, 0.7577283382415771, 0.45692428946495056, -0.5180434584617615, -1.1845064163208008, -0.22593441605567932, -1.5057719945907593, -0.342121422290802, 1.3422013521194458, -0.13389962911605835, -0.4051763117313385, -0.13668368756771088, -0.21053899824619293, 0.7885087728500366, -0.4040929973125458, 0.6453414559364319, 0.6339375376701355, -0.2746341824531555, 0.32182157039642334, -0.2741680145263672, 0.3209938406944275, 0.25800585746765137, -0.6792171001434326, 0.04313097894191742, 0.1737997829914093, 0.6980095505714417, 0.40647849440574646, 0.9500452876091003, 0.1251853108406067, 0.2415187954902649, 0.2765926718711853, 0.12543608248233795, -0.4256507456302643, -0.0006888072239235044, 0.02637000009417534, 0.1879528909921646, -0.2507648169994354, -0.5202100872993469 ]
null
null
null
null
null
null
null
null
null
null
null
null
null
HuggingFaceM4/FairFace
HuggingFaceM4
2022-12-09T00:14:46Z
460
5
null
[ "license:cc-by-4.0", "region:us" ]
2022-12-09T00:14:46Z
2022-12-08T23:00:45.000Z
2022-12-08T23:00:45
--- 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://github.com/joojs/fairface](https://github.com/joojs/fairface) - **Repository:** [https://github.com/joojs/fairface](https://github.com/joojs/fairface) - **Paper:** [https://openaccess.thecvf.com/content/WACV2021/papers/Karkkainen_FairFace_Face_Attribute_Dataset_for_Balanced_Race_Gender_and_Age_WACV_2021_paper.pdf](https://openaccess.thecvf.com/content/WACV2021/papers/Karkkainen_FairFace_Face_Attribute_Dataset_for_Balanced_Race_Gender_and_Age_WACV_2021_paper.pdf) - **Leaderboard:** - **Point of Contact:** ### Dataset Summary FairFace is a face image dataset which is race balanced. It contains 108,501 images from 7 different race groups: White, Black, Indian, East Asian, Southeast Asian, Middle Eastern, and Latino. Images were collected from the YFCC-100M Flickr dataset and labeled with race, gender, and age groups. ### 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=448x448 at 0x7FCABA221FA0>, 'age': 6, 'gender': 0, 'race': 0, 'service_test': True } ``` ### Data Fields - `image`: The image - `age`: Age class among `["0-2", "3-9", "10-19", "20-29", "30-39", "40-49", "50-59", "60-69", "more than 70"]` - `gender`: Gender class among `["Male", "Female"]` - `race`: Race class among `["East Asian", "Indian", "Black", "White", "Middle Eastern", "Latino_Hispanic", "Southeast Asian"]` - `service_test`: Not sure what this is. See [issue](https://github.com/joojs/fairface/issues/9). ### 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.6204062700271606, -0.6244702339172363, 0.14534582197666168, 0.23109886050224304, 0.06708111613988876, 0.013653031550347805, -0.004030238371342421, -0.5429854393005371, 0.2325054556131363, 0.46506255865097046, -0.8573904633522034, -0.903619110584259, -0.6120272874832153, 0.027446981519460678, 0.012779325246810913, 1.103203296661377, -0.0732114315032959, -0.07533129304647446, -0.12656207382678986, -0.6076764464378357, -0.5241494178771973, -0.06688076257705688, -0.5767037272453308, -0.09384471923112869, 0.3197576403617859, 0.6304888129234314, 0.806144118309021, 0.7657926678657532, 0.5334301590919495, 0.34562352299690247, -0.11614175140857697, -0.06442150473594666, -0.6190793514251709, -0.24227404594421387, -0.20469039678573608, -0.44362956285476685, -0.6074274182319641, 0.29081061482429504, 0.5335893630981445, 0.9252373576164246, -0.05516060069203377, 0.6335904002189636, -0.1041095182299614, 0.9998383522033691, -0.7378702163696289, 0.4935796558856964, -0.2666597068309784, 0.1755361407995224, -0.7562513947486877, 0.2805142402648926, -0.09306155890226364, -0.4724734127521515, -0.26076123118400574, -0.8066079020500183, 0.11174643039703369, 0.0476217083632946, 0.927783727645874, -0.014841821976006031, -0.28767848014831543, 0.08052568882703781, -0.3884929120540619, 0.7441155910491943, -0.6291276812553406, 0.11732703447341919, 0.4876382052898407, 0.6427848935127258, -0.1574290245771408, -0.7904239296913147, -0.9009522199630737, 0.44388559460639954, -0.20169773697853088, 0.26337653398513794, -0.2965662479400635, -0.28708264231681824, 0.6004328727722168, 0.5069912672042847, -0.4422931969165802, -0.18562009930610657, -0.5395680069923401, -0.3992736339569092, 0.9620891809463501, 0.36734122037887573, 0.4477497935295105, -0.44003698229789734, -0.10784629732370377, -0.2453799545764923, -0.3672378659248352, 0.5265634059906006, 0.4622301459312439, 0.5718463659286499, -1.0109622478485107, 0.6866252422332764, -0.5715835094451904, 0.6725928783416748, 0.005965224001556635, -0.24557402729988098, 0.9074493646621704, -0.38364100456237793, -0.10078935325145721, -0.25190162658691406, 0.8052470088005066, 0.7848382592201233, 0.09958868473768234, 0.2313893884420395, -0.16502706706523895, -0.056919556111097336, -0.2719355523586273, -0.9430020451545715, -0.2623397707939148, 0.34725627303123474, -0.8376542925834656, -0.38473623991012573, 0.28170087933540344, -1.0303939580917358, -0.2247723788022995, -0.4033654034137726, 0.34100341796875, -0.036812085658311844, -0.3874039947986603, -0.15427324175834656, -0.15509220957756042, 0.31695836782455444, 0.4359675347805023, -0.5838187336921692, 0.5489559769630432, 0.29518723487854004, 0.7021521925926208, -0.13425606489181519, -0.06999237090349197, -0.3594141900539398, 0.06625211238861084, 0.07355795055627823, 0.5199114084243774, -0.30973607301712036, -0.16189178824424744, 0.07456056028604507, 0.5103644728660583, -0.019173866137862206, -0.43533623218536377, 0.676226794719696, -0.2669251263141632, 0.5312349200248718, -0.5889655947685242, -0.3281760513782501, -0.130483016371727, 0.13893692195415497, -0.9094246625900269, 1.0292495489120483, 0.506732702255249, -1.0952569246292114, 0.41185104846954346, -0.8927524089813232, -0.345077782869339, 0.18342900276184082, -0.39976179599761963, -0.6386733651161194, -0.26282161474227905, 0.2547720670700073, 0.643976628780365, -0.21600529551506042, 0.2553086578845978, -0.5737801790237427, -0.2659240663051605, 0.003638823516666889, 0.03265964984893799, 1.52241849899292, 0.38810858130455017, -0.4959953725337982, 0.0515679195523262, -0.8644416332244873, -0.16711093485355377, 0.6377657651901245, 0.011411117389798164, -0.022370195016264915, -0.3615778684616089, 0.46752750873565674, 0.36450088024139404, 0.14981107413768768, -0.5802898406982422, -0.013424956239759922, -0.04219366982579231, 0.1527196168899536, 0.7973047494888306, -0.16152550280094147, 0.47402551770210266, -0.5762680768966675, 0.33486270904541016, 0.1575760841369629, 0.5937095284461975, 0.07864124327898026, -0.6730416417121887, -0.642380952835083, -0.3178943693637848, 0.18709275126457214, 0.6645814776420593, -0.672688364982605, 0.5399906635284424, -0.3376142382621765, -0.5464051961898804, -0.4849933087825775, -0.017632272094488144, 0.3295350670814514, 0.7248028516769409, 0.3715079724788666, -0.5929292440414429, -0.5174953937530518, -1.0846562385559082, -0.020487936213612556, 0.007888849824666977, 0.2770097851753235, 0.6344780325889587, 0.7702942490577698, -0.18108482658863068, 0.9896169304847717, -0.5525406002998352, -0.3320181965827942, -0.22062206268310547, -0.1695510894060135, 0.3816621005535126, 0.6206570863723755, 0.8542460203170776, -1.079710602760315, -0.5650585889816284, -0.3441712260246277, -0.7583000659942627, -0.2953185737133026, 0.1183006763458252, -0.3604466915130615, 0.24428880214691162, 0.2703816294670105, -0.4246867597103119, 0.7185001969337463, 0.5807710886001587, -0.6577202081680298, 0.4729490280151367, 0.42671799659729004, 0.3722958266735077, -0.9562751650810242, 0.42716532945632935, 0.13696712255477905, -0.18997925519943237, -0.6023197174072266, -0.2381812334060669, -0.12803512811660767, -0.10172438621520996, -0.5500799417495728, 0.9681952595710754, -0.09769201278686523, -0.05338527262210846, 0.12935854494571686, -0.05556470900774002, 0.02840990014374256, 0.5214536786079407, -0.3217231333255768, 0.5397723317146301, 0.5133745074272156, -0.39594435691833496, 0.2153722494840622, 0.4695374369621277, -0.39674556255340576, 0.7461206912994385, -0.570545494556427, -0.13621361553668976, -0.33568084239959717, 0.3093404173851013, -0.9989315271377563, -0.6506450176239014, 0.5566694736480713, -0.478162556886673, 0.12405221164226532, -0.21862755715847015, -0.5141993165016174, -0.45259445905685425, -0.427562415599823, 0.4163092374801636, 0.3854788839817047, -0.35655373334884644, 0.464746356010437, 0.7759776711463928, -0.1686517745256424, -0.545435905456543, -0.7687644362449646, -0.21119213104248047, -0.15685990452766418, -1.0002977848052979, 0.6363910436630249, -0.11370299756526947, -0.2616577446460724, 0.058795589953660965, 0.0898808017373085, -0.005549995694309473, 0.055040016770362854, 0.4331835210323334, 0.3168911039829254, 0.06656631827354431, -0.311933696269989, -0.02198716253042221, -0.009331329725682735, -0.16125309467315674, 0.23966273665428162, 0.5092883706092834, -0.14712414145469666, -0.28120195865631104, -0.6835416555404663, 0.3700276017189026, 0.34317806363105774, -0.10784514248371124, 0.790565550327301, 1.0115493535995483, -0.5305488109588623, 0.17389412224292755, -0.5643563866615295, 0.002829792909324169, -0.4469698369503021, 0.14156977832317352, -0.32604923844337463, -0.8930472135543823, 1.2813743352890015, 0.2002309411764145, 0.10225294530391693, 0.9295129776000977, 0.5071086883544922, -0.11770796030759811, 0.9106442928314209, 0.6086387634277344, -0.08557908236980438, 0.6566441059112549, -0.5019115209579468, -0.2649051249027252, -0.5420368313789368, -0.6319155097007751, -0.5459064245223999, -0.6076194643974304, -1.0533920526504517, -0.26970526576042175, -0.0024907065089792013, 0.0862027108669281, -0.7020848989486694, 0.1567460298538208, -0.5456457734107971, 0.3531239330768585, 0.6285108923912048, 0.15544873476028442, -0.005627189297229052, 0.05871107801795006, -0.00344736292026937, -0.23617635667324066, -0.5281751155853271, -0.38306185603141785, 1.0193324089050293, 0.3888782858848572, 0.42423179745674133, 0.1652568280696869, 0.7904926538467407, 0.3069794178009033, 0.34806376695632935, -0.20193533599376678, 0.5518103837966919, -0.44286519289016724, -0.8935396075248718, -0.2599262595176697, -0.6151634454727173, -0.8850115537643433, -0.07961436361074448, -0.40475043654441833, -0.6853646636009216, 0.5607746839523315, 0.1640358865261078, -0.18147391080856323, 0.24870960414409637, -0.5514617562294006, 1.2156485319137573, -0.060579098761081696, -0.39705315232276917, 0.22261101007461548, -1.0968331098556519, 0.41163867712020874, 0.23394902050495148, 0.6768713593482971, -0.4962131679058075, 0.23798620700836182, 1.128741979598999, -0.5833500623703003, 0.90702885389328, -0.6789617538452148, 0.42750242352485657, 0.3155183494091034, -0.24033460021018982, 0.38502803444862366, 0.029945485293865204, 0.0465705543756485, 0.439472496509552, -0.11447685956954956, -0.5437387824058533, -0.4168380796909332, 0.4731085002422333, -0.8992397785186768, -0.16932784020900726, -0.3424801230430603, -0.3831199109554291, -0.01648952253162861, 0.40232497453689575, 0.20887333154678345, 0.2148503214120865, -0.0246333796530962, 0.21836408972740173, 0.44532284140586853, -0.4334090054035187, 0.2206491082906723, 0.0955871045589447, -0.3940841555595398, -0.7008572816848755, 0.6273072361946106, 0.1934184730052948, 0.21560949087142944, 0.1145869791507721, 0.11179050803184509, -0.1304389089345932, -0.2537427246570587, -0.39878925681114197, 0.060509130358695984, -0.7348156571388245, -0.3827441930770874, -0.5981470346450806, -0.2669377028942108, -0.5796821117401123, -0.07106992602348328, -0.35735616087913513, -0.7276893854141235, -0.18179495632648468, -0.005120590794831514, 0.52230304479599, 0.23528210818767548, -0.4093252718448639, 0.37327536940574646, -0.41291460394859314, 0.5785013437271118, 0.20012108981609344, 0.5995039939880371, -0.12815581262111664, -0.4403844475746155, -0.21569040417671204, 0.16517865657806396, -0.44132697582244873, -0.5811381340026855, 0.20142780244350433, -0.026549993082880974, 0.7516239285469055, 0.08036739379167557, 0.06625308096408844, 0.6589666604995728, -0.23363250494003296, 0.7966068983078003, 0.3474927246570587, -0.6866365671157837, 0.6975232362747192, -0.5896177291870117, 0.3664761781692505, 1.0180472135543823, 0.2851649522781372, -0.5850285291671753, -0.2831786572933197, -0.8515154719352722, -0.9925999045372009, 0.8695385456085205, 0.38209623098373413, 0.18919764459133148, 0.05197325348854065, 0.26675060391426086, 0.08945535123348236, 0.07509457319974899, -1.0657027959823608, -0.9704087376594543, -0.39836761355400085, -0.49722957611083984, 0.3235046863555908, 0.04762457683682442, -0.46544480323791504, -0.4354315400123596, 0.5110214948654175, -0.012273491360247135, 0.22945921123027802, -0.022703103721141815, 0.021888969466090202, -0.14018374681472778, 0.006023116875439882, 0.3805265426635742, 0.4656051993370056, -0.40820565819740295, -0.220737487077713, -0.08206290006637573, -0.6045023202896118, -0.19629515707492828, 0.446560800075531, -0.38829728960990906, -0.13921280205249786, 0.40815070271492004, 0.8311530947685242, -0.11178585141897202, -0.3209422826766968, 0.8866510391235352, -0.17310333251953125, -0.3208974599838257, -0.35298043489456177, 0.1218113973736763, -0.1830778270959854, 0.3768220841884613, 0.5647582411766052, 0.1466357707977295, 0.2177494913339615, -0.5302149653434753, 0.3214716613292694, 0.2087426483631134, -0.30457404255867004, -0.11693700402975082, 0.6467710137367249, 0.29990729689598083, -0.08868543058633804, 0.6426597237586975, -0.3368750512599945, -0.314456969499588, 0.7818163633346558, 0.18117281794548035, 0.6071678400039673, 0.037902820855379105, 0.2610320746898651, 0.6396151781082153, 0.22395141422748566, 0.0037834560498595238, 0.6476366519927979, 0.21967583894729614, -0.8071612119674683, -0.3724145293235779, -0.5917881727218628, 0.038281768560409546, 0.2499881237745285, -0.7462257146835327, 0.3895204961299896, -0.5121238827705383, -0.444409042596817, 0.19970251619815826, 0.29773831367492676, -1.2181720733642578, 0.38372310996055603, 0.142979234457016, 0.9084583520889282, -1.1530323028564453, 0.24914146959781647, 0.5338438749313354, -0.6832343935966492, -0.9293403625488281, -0.3640947937965393, 0.4213067591190338, -0.6510077118873596, 0.7542581558227539, 0.33135026693344116, 0.4654190242290497, -0.311771035194397, -0.9289547801017761, -0.8069428205490112, 1.4459892511367798, 0.45278695225715637, -0.3669934868812561, 0.37176334857940674, 0.26350638270378113, 0.13917705416679382, -0.5068199038505554, 0.17449899017810822, 0.4033344089984894, 0.6776014566421509, 0.15168079733848572, -0.827134907245636, 0.29882216453552246, -0.5355644226074219, 0.054775334894657135, -0.06418121606111526, -0.7501595616340637, 0.8703197836875916, -0.2173157036304474, -0.2899256646633148, -0.13442927598953247, 0.5661777257919312, 0.5620952844619751, 0.5714075565338135, 0.611794650554657, 0.8231369256973267, 0.6217244267463684, -0.33359619975090027, 1.1491684913635254, 0.04499305039644241, 0.3859623670578003, 1.0660313367843628, 0.034691374748945236, 0.422157347202301, 0.3193846344947815, -0.43984031677246094, 0.4790460169315338, 0.7191920876502991, -0.2442905455827713, 0.6442194581031799, 0.1224822849035263, 0.03311624005436897, 0.012649336829781532, -0.28995317220687866, -0.5625991821289062, 0.5806317925453186, 0.0938064232468605, -0.32470327615737915, 0.052831392735242844, -0.05717809870839119, 0.23128795623779297, 0.06783567368984222, -0.4412510395050049, 0.669912576675415, -0.1421981155872345, -0.09784944355487823, 0.20836511254310608, 0.08467645198106766, 0.6798548102378845, -0.24198102951049805, -0.1154785305261612, -0.3657311499118805, -0.023270826786756516, -0.6202062964439392, -1.1365370750427246, 0.3759949207305908, -0.1741543561220169, -0.490805059671402, 0.02821355126798153, 0.7119970917701721, -0.298828661441803, -0.6990571022033691, 0.1871887892484665, 0.4477749466896057, 0.024309884756803513, 0.39701056480407715, -1.1329139471054077, 0.3973827660083771, 0.1617918759584427, -0.480410099029541, 0.251861035823822, 0.4441429674625397, -0.23040787875652313, 0.39840084314346313, 0.6794887185096741, 0.09728661179542542, -0.07642548531293869, 0.46426525712013245, 0.8144229650497437, -0.632007360458374, -0.30284789204597473, -0.5926467776298523, 1.1335021257400513, -0.5846907496452332, -0.3563816547393799, 0.6184359788894653, 0.6953837275505066, 1.3573185205459595, 0.1189287006855011, 0.8471646904945374, -0.6347144246101379, 0.5902724266052246, -0.3128875195980072, 0.9634819030761719, -0.6732869148254395, -0.12993857264518738, -0.6659469604492188, -0.9048030972480774, -0.5373179316520691, 0.8306872248649597, -0.23434144258499146, 0.45867255330085754, 0.11464714258909225, 0.7944169640541077, -0.07266084104776382, 0.06790462881326675, -0.07443126291036606, 0.07060462236404419, 0.2696778476238251, 0.3093527555465698, 0.3025767505168915, -0.6645470857620239, 0.32195845246315, -0.6887827515602112, -0.3693283200263977, -0.15328319370746613, -0.9083864688873291, -0.6252875328063965, -0.7037588953971863, -0.594163179397583, -0.5241281390190125, -0.09066568315029144, 0.7193534970283508, 0.7552122473716736, -1.0611546039581299, -0.21576540172100067, 0.18283216655254364, 0.15092788636684418, -0.024406075477600098, -0.29231804609298706, 0.516732931137085, 0.12493555247783661, -0.5829064249992371, -0.5013641119003296, 0.02272721752524376, 0.23291456699371338, 0.08279626816511154, -0.26871296763420105, -0.1546202450990677, -0.4276670515537262, 0.4785802960395813, 0.4109329283237457, -0.48988068103790283, -0.2602008879184723, -0.2437383383512497, -0.16085714101791382, 0.0444822795689106, 0.30540069937705994, -0.37087154388427734, 0.32440677285194397, 0.5058437585830688, 0.3530047535896301, 0.6416289210319519, -0.14162473380565643, 0.2191765010356903, -0.7304226756095886, 0.36693164706230164, 0.13430891931056976, 0.45713138580322266, 0.518629789352417, -0.29186150431632996, 0.748656153678894, 0.45143890380859375, -0.35694772005081177, -0.8807729482650757, -0.011494363658130169, -1.2228535413742065, -0.009554378688335419, 0.9940019845962524, 0.007629535626620054, -0.20063459873199463, -0.09174098074436188, 0.057289596647024155, 0.4252736568450928, -0.5793539881706238, 0.5892223715782166, 0.6041712164878845, -0.06353489309549332, -0.20647399127483368, -0.7945441007614136, 0.5835192203521729, -0.06354961544275284, -1.1098986864089966, -0.08710584789514542, 0.5945534110069275, 0.3191220164299011, 0.2782556414604187, 0.9199196696281433, -0.5906794667243958, 0.35501936078071594, -0.17196428775787354, 0.3290908932685852, -0.03239051252603531, -0.10305411368608475, -0.02711034193634987, -0.07213255763053894, -0.3322843015193939, -0.009020866826176643 ]
null
null
null
null
null
null
null
null
null
null
null
null
null
c-s-ale/alpaca-gpt4-data-zh
c-s-ale
2023-05-03T17:56:55Z
460
22
null
[ "task_categories:text-generation", "size_categories:10K<n<100K", "language:zh", "license:cc-by-4.0", "gpt", "alpaca", "fine-tune", "instruct-tune", "instruction", "arxiv:2304.03277", "region:us" ]
2023-05-03T17:56:55Z
2023-04-07T19:22:10.000Z
2023-04-07T19:22:10
--- dataset_info: features: - name: instruction dtype: string - name: input dtype: string - name: output dtype: string splits: - name: train num_bytes: 32150579 num_examples: 48818 download_size: 35100559 dataset_size: 32150579 license: cc-by-4.0 language: - zh pretty_name: Instruction Tuning with GPT-4 size_categories: - 10K<n<100K task_categories: - text-generation tags: - gpt - alpaca - fine-tune - instruct-tune - instruction --- # Dataset Description - **Project Page:** https://instruction-tuning-with-gpt-4.github.io - **Repo:** https://github.com/Instruction-Tuning-with-GPT-4/GPT-4-LLM - **Paper:** https://arxiv.org/abs/2304.03277 # Dataset Card for "alpaca-gpt4-data-zh" All of the work is done by [this team](https://github.com/Instruction-Tuning-with-GPT-4/GPT-4-LLM). # Usage and License Notices The data is intended and licensed for research use only. The dataset is CC BY NC 4.0 (allowing only non-commercial use) and models trained using the dataset should not be used outside of research purposes. # English Dataset [Found here](https://huggingface.co/datasets/c-s-ale/alpaca-gpt4-data) # Citation ``` @article{peng2023gpt4llm, title={Instruction Tuning with GPT-4}, author={Baolin Peng, Chunyuan Li, Pengcheng He, Michel Galley, Jianfeng Gao}, journal={arXiv preprint arXiv:2304.03277}, year={2023} } ```
[ -0.34443798661231995, -0.6864554286003113, 0.4526781439781189, 0.25845661759376526, -0.6154248714447021, -0.34144026041030884, -0.16392850875854492, -0.45017701387405396, 0.04393940046429634, 0.34224873781204224, -0.8066083192825317, -0.9107503890991211, -0.6631730794906616, 0.09064275771379471, 0.07193957269191742, 1.3537590503692627, -0.2394619584083557, -0.012118932791054249, 0.10314378887414932, -0.2569715976715088, -0.2612316906452179, -0.21509209275245667, -0.8154884576797485, -0.07796038687229156, 0.31487154960632324, 0.34052154421806335, 0.5852776169776917, 1.1822788715362549, 0.49703994393348694, 0.2827037274837494, 0.3132787048816681, 0.11625207215547562, -0.24543192982673645, -0.503558337688446, 0.1971215307712555, -0.1117982342839241, -0.9467430710792542, 0.3564295768737793, 0.6566575765609741, 0.1625288724899292, -0.4072979986667633, 0.2928693890571594, 0.2200331687927246, 0.7477288842201233, -0.43806466460227966, 0.8586384654045105, -0.6886911988258362, -0.16520415246486664, -0.4190654158592224, -0.47553324699401855, -0.014966013841331005, -0.6730496287345886, -0.06289953738451004, -1.007622480392456, 0.6812880635261536, -0.0734277069568634, 1.1594020128250122, 0.2733744978904724, -0.301066130399704, -0.4527301490306854, -0.279501736164093, 0.6403799057006836, -0.8936223387718201, 0.15834146738052368, 0.7774189114570618, 0.0016474381554871798, -0.03389105945825577, -0.522434413433075, -0.5488982200622559, 0.15426568686962128, 0.034028444439172745, 0.30182698369026184, -0.058906640857458115, 0.04399188980460167, 0.42706382274627686, 0.3447135388851166, -0.5305017232894897, 0.01588590070605278, -0.6496005058288574, -0.40291473269462585, 0.5871636867523193, 0.1246146485209465, -0.12157512456178665, 0.1655610054731369, -0.5685222148895264, -0.18526627123355865, -0.8062740564346313, 0.05993403121829033, 0.9257545471191406, 0.436057448387146, -0.8262510299682617, 0.41558459401130676, -0.13982157409191132, 0.8697947263717651, -0.028947850689291954, -0.12140138447284698, 0.9823951721191406, -0.6364439129829407, -0.3064972758293152, -0.12553225457668304, 0.959323525428772, 0.4811111092567444, -0.2624087333679199, 0.12734460830688477, -0.10392002016305923, -0.284611314535141, 0.05696804076433182, -0.9584594368934631, -0.4144357144832611, -0.0892607644200325, -0.16702231764793396, -0.11407332122325897, 0.30399176478385925, -0.9056932330131531, 0.1935461014509201, -0.20205970108509064, 0.3768968880176544, -0.12117951363325119, -0.1312071830034256, 0.15593525767326355, 0.149685800075531, 0.8712533116340637, -0.07412626594305038, -1.105324625968933, 0.29864057898521423, 0.633630633354187, 0.8362303376197815, -0.0429958738386631, -0.27907681465148926, -0.35460686683654785, 0.31634190678596497, -0.2616313695907593, 0.6171512007713318, -0.20885194838047028, -0.5977697968482971, -0.20341750979423523, 0.6499831676483154, -0.4108618497848511, -0.30347222089767456, 1.2500861883163452, -0.5601199865341187, 0.18201035261154175, -0.6488998532295227, -0.3081800043582916, -0.12152103334665298, 0.1403398960828781, -0.8421670198440552, 1.0188798904418945, 0.24724984169006348, -0.7117535471916199, 0.42562124133110046, -0.6619089841842651, -0.28558194637298584, -0.01378907822072506, -0.37671780586242676, -1.1614514589309692, -0.4230518043041229, 0.42657214403152466, 0.2635062336921692, -0.2815927267074585, -0.0656185895204544, -0.2107211947441101, -0.5404061079025269, -0.27908262610435486, -0.5209794640541077, 0.5054123401641846, 0.06987236440181732, -0.4795825779438019, 0.09327781945466995, -0.7806903719902039, 0.14334344863891602, 0.22365567088127136, -0.5345365405082703, 0.03724491596221924, -0.3387080729007721, -0.39989450573921204, 0.027557775378227234, 0.5739670395851135, -0.6019895672798157, 0.3647972345352173, -0.16494284570217133, 0.34083330631256104, 0.9889231324195862, -0.02870231866836548, 0.1975710391998291, -0.4344649016857147, 0.6677876710891724, -0.10657355189323425, 0.3779456913471222, 0.18710660934448242, -0.8811617493629456, -0.6291380524635315, -0.333234041929245, 0.03581419959664345, 0.553248405456543, -0.7039227485656738, 0.6113886833190918, -0.14654570817947388, -0.4425341486930847, -0.5041782259941101, -0.015997782349586487, 0.44625088572502136, 0.9016706943511963, 0.6725167036056519, -0.07736492156982422, -0.2580221891403198, -0.9574058651924133, 0.0969059020280838, 0.1123330369591713, 0.07152318954467773, 0.5512936115264893, 0.42938485741615295, -0.12668976187705994, 0.5511967539787292, -0.6858989000320435, -0.2667994201183319, 0.15869376063346863, 0.2002139836549759, 0.5298388004302979, 0.61116623878479, 0.6262776255607605, -0.41915521025657654, -0.49937906861305237, -0.1849851757287979, -0.5024113655090332, -0.27349433302879333, 0.17339332401752472, -0.37611621618270874, 0.39825862646102905, 0.044062696397304535, -0.5715087652206421, 0.6203945279121399, 0.7757582664489746, -0.5190126299858093, 0.6946412324905396, -0.4750695526599884, 0.43436047434806824, -0.9220835566520691, -0.0009937344584614038, 0.03282018005847931, 0.23175916075706482, -0.04494820907711983, -0.14922387897968292, 0.158882275223732, 0.017566772177815437, -0.35031408071517944, 0.2611648738384247, -0.5770549774169922, -0.12600064277648926, -0.20301134884357452, -0.4402600824832916, 0.0914606899023056, 0.7511324882507324, -0.11628174781799316, 1.2406971454620361, 0.6795793771743774, -0.4769347906112671, 0.19500064849853516, 0.46334242820739746, -0.22841529548168182, 0.0409732386469841, -1.050180196762085, 0.31205078959465027, 0.47459298372268677, 0.24808531999588013, -0.3199240565299988, -0.1978297084569931, 0.8779507875442505, -0.2474004477262497, 0.43407586216926575, -0.23434658348560333, -0.474848210811615, -0.2710661292076111, -0.6010356545448303, 0.5296576023101807, 0.3053814470767975, -0.5496902465820312, 0.421509712934494, 0.05816156417131424, 0.0004883220535703003, -0.6549357771873474, -0.49129077792167664, -0.6622592806816101, -0.33907362818717957, -0.36462461948394775, 0.5576155781745911, -0.4120387136936188, 0.4285675883293152, 0.03540057688951492, -0.19870518147945404, -0.03334086388349533, -0.38501834869384766, 0.24689418077468872, 0.5208998918533325, -0.11622674763202667, -0.04127299413084984, 0.2261759489774704, -0.2375943958759308, 0.2350592166185379, -0.057552020996809006, 0.4870395362377167, -0.358344167470932, -0.42281946539878845, -0.7124411463737488, 0.06701817363500595, 0.0890895426273346, -0.17851264774799347, 0.9339602589607239, 0.8174321055412292, 0.015246443450450897, 0.09459716826677322, -0.2824777364730835, -0.17893435060977936, -0.5660507082939148, 0.3028807044029236, -0.37338122725486755, -0.5808524489402771, 0.7009803652763367, 0.14768345654010773, -0.009833632037043571, 0.7488324046134949, 0.3665439188480377, 0.011752808466553688, 0.5944827198982239, 0.4087553322315216, -0.14736834168434143, 0.35592201352119446, -0.5583793520927429, -0.15091677010059357, -1.1388776302337646, -0.31741395592689514, -0.7060294151306152, -0.13930697739124298, -0.9754686951637268, -0.5415774583816528, 0.3609362840652466, -0.08917068690061569, -0.7785540223121643, 0.3140278458595276, -0.7498137354850769, 0.5302002429962158, 0.5891492962837219, 0.27057015895843506, 0.10361919552087784, 0.03669849783182144, -0.12211454659700394, 0.16765156388282776, -0.5373911261558533, -0.5492870211601257, 1.3897448778152466, 0.2782878577709198, 0.5983071327209473, -0.07064865529537201, 0.617926299571991, 0.037785544991493225, 0.13955119252204895, -0.4691566824913025, 0.459504097700119, -0.03554372489452362, -0.40398022532463074, -0.25364068150520325, -0.7021328806877136, -1.246219515800476, -0.0899045541882515, -0.05192772299051285, -0.3562684953212738, 0.05625594034790993, 0.31698065996170044, -0.29004716873168945, 0.3875174820423126, -0.6853801012039185, 0.997680127620697, -0.19966261088848114, -0.37301936745643616, 0.1488465666770935, -0.6217383742332458, 0.18308964371681213, -0.07419947534799576, 0.267433762550354, -0.2789669334888458, -0.37881314754486084, 0.9693648219108582, -0.5571984648704529, 0.7852395176887512, -0.4751918315887451, -0.40343353152275085, 0.46711134910583496, -0.6784384250640869, 0.8558911681175232, 0.10925810784101486, -0.4516824185848236, 0.7416700720787048, -0.14893849194049835, -0.5848559141159058, -0.10746584087610245, 1.0874725580215454, -1.308076024055481, -0.4243060052394867, -0.696483850479126, -0.6278781890869141, -0.1108928844332695, 0.07230700552463531, 0.5689310431480408, 0.5313001275062561, 0.23996420204639435, -0.053815003484487534, 0.46372365951538086, -0.09106212854385376, 0.4865155816078186, 0.7194575071334839, 0.3544563055038452, -0.5414756536483765, 0.9907733201980591, 0.155732661485672, 0.227918341755867, -0.06258083134889603, 0.18185089528560638, -0.39857983589172363, -0.7841514945030212, -0.7758666276931763, 0.5298278331756592, -0.5925753712654114, -0.28250640630722046, -0.19391903281211853, -0.1937706619501114, -0.2153470814228058, 0.05101773142814636, -0.31739363074302673, -0.2734076678752899, -0.7861225605010986, -0.3589808940887451, 0.7285906076431274, 0.3634289503097534, -0.10882309079170227, 0.6073979139328003, -0.8072227835655212, 0.2685673236846924, 0.26118481159210205, 0.6813656687736511, -0.36002495884895325, -0.7623031735420227, -0.5709339380264282, 0.26616019010543823, -0.617489218711853, -0.7002617120742798, 0.4497034251689911, 0.40955886244773865, 0.7475054860115051, 0.11741015315055847, -0.13015994429588318, 0.6566336750984192, -0.41313642263412476, 0.6998249292373657, -0.0808178260922432, -0.7357990741729736, 0.5708261132240295, -0.7564827799797058, 0.5017397999763489, 0.6551995873451233, 0.5863754153251648, 0.3441983759403229, -0.1181168183684349, -0.6828137636184692, -1.1132556200027466, 0.8119333386421204, 0.22358572483062744, 0.05285975709557533, 0.05356265977025032, 0.745032787322998, 0.28248703479766846, 0.08914019167423248, -0.8987853527069092, -0.34178584814071655, -0.38624072074890137, -0.2789168655872345, 0.10693667083978653, -0.023988569155335426, -0.38030144572257996, -0.37967371940612793, 1.2194865942001343, -0.3445277810096741, 0.6456950306892395, -0.10904716700315475, 0.3709508776664734, -0.3873075842857361, 0.02567012421786785, 0.7725783586502075, 0.8359643816947937, -0.39672884345054626, -0.4094751179218292, 0.01400515902787447, -0.9308109283447266, 0.029760263860225677, 0.5108885169029236, -0.16304312646389008, -0.45060962438583374, 0.4322543442249298, 0.9811859726905823, 0.019930988550186157, -0.039025675505399704, 0.3826659917831421, -0.19906355440616608, -0.5822718739509583, -0.4037664532661438, 0.321413516998291, 0.11231616884469986, 0.17709629237651825, 0.37093260884284973, 0.07690511643886566, 0.08756434172391891, -0.07326439768075943, 0.06116163730621338, 0.27476969361305237, -0.06860021501779556, -0.580644428730011, 0.5809654593467712, 0.24949464201927185, 0.09936036914587021, 0.7417150139808655, -0.4395469129085541, -0.1285381019115448, 0.9190576672554016, 0.6089383363723755, 0.5813629627227783, -0.1355421096086502, -0.11764542758464813, 0.8275147676467896, 0.36230409145355225, 0.05561532452702522, 0.5716906189918518, 0.001529148779809475, -0.869523286819458, -0.3066715598106384, -0.7184844613075256, -0.30490437150001526, 0.5604180693626404, -0.998638391494751, 0.4671840965747833, -0.36263802647590637, -0.12077490240335464, -0.28733915090560913, 0.3817138969898224, -0.781212568283081, 0.18089322745800018, -0.222154438495636, 0.677024781703949, -1.0257854461669922, 1.137190580368042, 0.2903469502925873, -0.3907923698425293, -1.3312032222747803, 0.004931737668812275, -0.06611944735050201, -0.9286192655563354, 0.14056190848350525, 0.2663125693798065, -0.2688542306423187, 0.13284392654895782, -0.5669988393783569, -0.916444718837738, 1.682905912399292, 0.4457145035266876, -0.8091714382171631, 0.26734715700149536, 0.0784963071346283, 0.19170495867729187, -0.2764289677143097, 0.25057902932167053, 0.7027446031570435, 0.5714309811592102, 0.33217138051986694, -0.9672513008117676, -0.04247960448265076, -0.34545689821243286, -0.2961283028125763, 0.33228564262390137, -1.0629997253417969, 0.9687252044677734, -0.1652056723833084, 0.045690037310123444, 0.0442534014582634, 0.8009267449378967, 0.6710453033447266, 0.4652998447418213, 0.33121469616889954, 0.8900429010391235, 0.6387993693351746, -0.37545326352119446, 0.8421957492828369, -0.5160752534866333, 0.4456203281879425, 1.3355541229248047, -0.08195756375789642, 0.48991888761520386, 0.21443001925945282, -0.2298666536808014, 0.6098791360855103, 0.8599523901939392, -0.3803499937057495, 0.9339368939399719, -0.010599412955343723, -0.3087136149406433, 0.311244398355484, 0.4972694218158722, -0.9795235395431519, 0.4056200385093689, 0.492534339427948, -0.49903520941734314, -0.04862595722079277, -0.273764431476593, 0.18968172371387482, -0.2791362404823303, -0.4404489994049072, 0.6210213899612427, -0.2209334820508957, -0.39415812492370605, 0.7790383100509644, -0.041376885026693344, 0.7695843577384949, -0.8882789015769958, -0.28008273243904114, -0.13170519471168518, -0.08609415590763092, -0.24454869329929352, -0.6544864773750305, 0.4077412188053131, -0.036166299134492874, -0.26772454380989075, 0.05159364640712738, 0.3065634071826935, -0.33783867955207825, -0.7013672590255737, 0.16607168316841125, 0.17158450186252594, 0.35736721754074097, 0.5685199499130249, -0.9604523777961731, 0.32934173941612244, 0.1756885051727295, -0.566432774066925, 0.3366532325744629, 0.3949892520904541, 0.044817935675382614, 0.492514967918396, 0.7080779075622559, 0.1668880730867386, 0.07198993861675262, 0.11033174395561218, 1.164766788482666, -0.5761586427688599, -0.4930495619773865, -0.8088523745536804, 0.15194521844387054, 0.0975523442029953, -0.6101967096328735, 0.8819177150726318, 0.944835901260376, 0.9404798746109009, -0.010659041814506054, 0.8441712856292725, 0.027762025594711304, 0.3890221416950226, -0.7171217203140259, 0.5466698408126831, -0.20527182519435883, 0.43928974866867065, -0.21222460269927979, -0.8458735346794128, 0.027444174513220787, 0.7825917601585388, -0.3656911253929138, 0.5044714212417603, 0.5633212924003601, 1.025050401687622, -0.07949196547269821, 0.36559730768203735, -0.07906262576580048, 0.016898496076464653, 0.42658764123916626, 0.44443798065185547, 0.19786125421524048, -0.5998037457466125, 0.4644016623497009, -0.360219806432724, -0.39646655321121216, 0.05542802810668945, -1.0423181056976318, -0.48216989636421204, -0.3898860812187195, -0.4278673529624939, -0.04000274837017059, -0.04481936991214752, 0.7731938362121582, 0.7555586695671082, -0.6966130137443542, -0.11450867354869843, -0.18916888535022736, -0.231974795460701, -0.4578689932823181, -0.16974669694900513, 0.9770171642303467, 0.006247712764889002, -0.7547389268875122, 0.39938241243362427, -0.1846545785665512, 0.20772825181484222, 0.13136659562587738, -0.3848543167114258, -0.1583489328622818, -0.053297992795705795, 0.12382487207651138, 0.3264451324939728, -0.41073548793792725, -0.17810194194316864, -0.2799486815929413, 0.02936996892094612, 0.2572598159313202, 0.4489690959453583, -0.3978550136089325, 0.19826850295066833, 0.03683324530720711, 0.16518686711788177, 0.7285196185112, 0.05283540114760399, 0.30140212178230286, -0.8467179536819458, 0.3528546988964081, -0.0032719243317842484, 0.3913012444972992, 0.3292524516582489, -0.7165936827659607, 0.7753502130508423, 0.2758956253528595, -1.041203260421753, -0.26426970958709717, -0.12633608281612396, -1.303174376487732, 0.2917022109031677, 1.082600474357605, -0.43751025199890137, -0.2761691212654114, 0.1555524319410324, 0.013696307316422462, 0.5730531215667725, -0.8131314516067505, 0.7203373908996582, 0.47257062792778015, -0.43021106719970703, -0.22392216324806213, -0.8913331627845764, 0.6338528990745544, -0.12121876329183578, -1.2028870582580566, -0.16236278414726257, 0.41684800386428833, 0.47936689853668213, -0.15139742195606232, 0.6850112080574036, -0.20818771421909332, 0.18556790053844452, -0.2936334013938904, 0.2514890134334564, -0.590632438659668, 0.04375515133142471, -0.24456556141376495, -0.053051240742206573, -0.07827600836753845, -0.6005491614341736 ]
null
null
null
null
null
null
null
null
null
null
null
null
null
electricity_load_diagrams
null
2022-11-18T20:00:21Z
459
5
null
[ "task_categories:time-series-forecasting", "task_ids:univariate-time-series-forecasting", "annotations_creators:no-annotation", "language_creators:found", "multilinguality:monolingual", "size_categories:1K<n<10K", "source_datasets:original", "license:unknown", "region:us" ]
2022-11-18T20:00:21Z
2022-03-02T23:29:22.000Z
2022-03-02T23:29:22
--- annotations_creators: - no-annotation language_creators: - found language: [] license: - unknown multilinguality: - monolingual pretty_name: Electricity Load Diagrams size_categories: - 1K<n<10K source_datasets: - original task_categories: - time-series-forecasting task_ids: - univariate-time-series-forecasting dataset_info: - config_name: uci features: - name: start dtype: timestamp[s] - name: target sequence: float32 - name: feat_static_cat sequence: uint64 - name: item_id dtype: string splits: - name: train num_bytes: 42968147 num_examples: 370 - name: test num_bytes: 302059069 num_examples: 2590 - name: validation num_bytes: 43004777 num_examples: 370 download_size: 261335609 dataset_size: 388031993 - config_name: lstnet features: - name: start dtype: timestamp[s] - name: target sequence: float32 - name: feat_static_cat sequence: uint64 - name: item_id dtype: string splits: - name: train num_bytes: 20843200 num_examples: 320 - name: test num_bytes: 195401080 num_examples: 2240 - name: validation num_bytes: 27787720 num_examples: 320 download_size: 261335609 dataset_size: 244032000 --- # Dataset Card for Electricity Load Diagrams ## 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:** [Electricity Load Diagrams 2011-2014](https://archive.ics.uci.edu/ml/datasets/ElectricityLoadDiagrams20112014) - **Paper:** [Modeling Long- and Short-Term Temporal Patterns with Deep Neural Networks ](https://dl.acm.org/doi/10.1145/3209978.3210006) - **Point of Contact:** [Artur Trindade](mailto:artur.trindade@elergone.pt) ### Dataset Summary This dataset contains hourly kW electricity consumption time series of 370 Portuguese clients from 2011 to 2014. ### Dataset Usage The dataset has the following configuration parameters: - `freq` is the time series frequency at which we resample (default: `"1H"`) - `prediction_length` is the forecast horizon for this task which is used to make the validation and test splits (default: `24`) - `rolling_evaluations` is the number of rolling window time series in the test split for evaluation purposes (default: `7`) For example, you can specify your own configuration different from those used in the papers as follows: ```python load_dataset("electricity_load_diagrams", "uci", rolling_evaluations=10) ``` > Notes: > - Data set has no missing values. > - Values are in kW of each 15 min rescaled to hourly. To convert values in kWh values must be divided by 4. > - All time labels report to Portuguese hour, however all days present 96 measures (24*4). > - Every year in March time change day (which has only 23 hours) the values between 1:00 am and 2:00 am are zero for all points. > - Every year in October time change day (which has 25 hours) the values between 1:00 am and 2:00 am aggregate the consumption of two hours. ### Supported Tasks and Leaderboards - `univariate-time-series-forecasting`: The time series forecasting tasks involves learning the future `target` values of time series in a dataset for the `prediction_length` time steps. The results of the forecasts can then be validated via the ground truth in the `validation` split and tested via the `test` split. ### Languages ## Dataset Structure Data set has no missing values. The raw values are in kW of each 15 min interval and are resampled to hourly frequency. Each time series represent one client. Some clients were created after 2011. In these cases consumption were considered zero. All time labels report to Portuguese hour, however all days contain 96 measurements (24*4). Every year in March time change day (which has only 23 hours) the values between 1:00 am and 2:00 am are zero for all points. Every year in October time change day (which has 25 hours) the values between 1:00 am and 2:00 am aggregate the consumption of two hours. ### Data Instances A sample from the training set is provided below: ``` { 'start': datetime.datetime(2012, 1, 1, 0, 0), 'target': [14.0, 18.0, 21.0, 20.0, 22.0, 20.0, 20.0, 20.0, 13.0, 11.0], # <= this target array is a concatenated sample 'feat_static_cat': [0], 'item_id': '0' } ``` We have two configurations `uci` and `lstnet`, which are specified as follows. The time series are resampled to hourly frequency. We test on 7 rolling windows of prediction length of 24. The `uci` validation therefore ends 24*7 time steps before the end of each time series. The training split ends 24 time steps before the end of the validation split. For the `lsnet` configuration we split the training window so that it is 0.6-th of the full time series and the validation is 0.8-th of the full time series and the last 0.2-th length time windows is used as the test set of 7 rolling windows of the 24 time steps each. Finally, as in the LSTNet paper, we only consider time series that are active in the year 2012--2014, which leaves us with 320 time series. ### Data Fields For this univariate regular time series we have: - `start`: a `datetime` of the first entry of each time series in the dataset - `target`: an `array[float32]` of the actual target values - `feat_static_cat`: an `array[uint64]` which contains a categorical identifier of each time series in the dataset - `item_id`: a string identifier of each time series in a dataset for reference Given the `freq` and the `start` datetime, we can assign a datetime to each entry in the target array. ### Data Splits | name |train|unsupervised|test | |----------|----:|-----------:|----:| |uci|370| 2590|370| |lstnet|320| 2240|320| ## Dataset Creation The Electricity Load Diagrams 2011–2014 Dataset was developed by Artur Trindade and shared in UCI Machine Learning Repository. This dataset covers the electricity load of 370 substations in Portugal from the start of 2011 to the end of 2014 with a sampling period of 15 min. We will resample this to hourly time series. ### Curation Rationale Research and development of load forecasting methods. In particular short-term electricity forecasting. ### Source Data This dataset covers the electricity load of 370 sub-stations in Portugal from the start of 2011 to the end of 2014 with a sampling period of 15 min. #### Initial Data Collection and Normalization [More Information Needed] #### Who are the source language producers? [More Information Needed] ### Annotations #### Annotation process [More Information Needed] #### Who are the annotators? [More Information Needed] ### Personal and Sensitive Information [More Information Needed] ## Considerations for Using the Data ### Social Impact of Dataset [More Information Needed] ### Discussion of Biases [More Information Needed] ### Other Known Limitations [More Information Needed] ## Additional Information ### Dataset Curators [More Information Needed] ### Licensing Information [More Information Needed] ### Citation Information ```bibtex @inproceedings{10.1145/3209978.3210006, author = {Lai, Guokun and Chang, Wei-Cheng and Yang, Yiming and Liu, Hanxiao}, title = {Modeling Long- and Short-Term Temporal Patterns with Deep Neural Networks}, year = {2018}, isbn = {9781450356572}, publisher = {Association for Computing Machinery}, address = {New York, NY, USA}, url = {https://doi.org/10.1145/3209978.3210006}, doi = {10.1145/3209978.3210006}, booktitle = {The 41st International ACM SIGIR Conference on Research & Development in Information Retrieval}, pages = {95--104}, numpages = {10}, location = {Ann Arbor, MI, USA}, series = {SIGIR '18} } ``` ### Contributions Thanks to [@kashif](https://github.com/kashif) for adding this dataset.
[ -0.34141838550567627, -0.36506009101867676, 0.1417056918144226, 0.36293497681617737, -0.3798878788948059, -0.16488589346408844, -0.142905130982399, -0.47324666380882263, 0.1266927868127823, 0.43506553769111633, -0.6071853041648865, -0.5004799962043762, -0.30386587977409363, 0.13869157433509827, -0.22752530872821808, 0.7214401364326477, -0.3221762180328369, 0.05426900461316109, -0.012676597572863102, -0.08868028223514557, -0.33789464831352234, -0.1506749540567398, -0.485212504863739, -0.8443806171417236, 0.2632187604904175, 0.12548691034317017, 0.31460827589035034, 0.57621830701828, 0.27362900972366333, 0.27951711416244507, 0.1941007822751999, 0.3705889582633972, -0.3948173224925995, -0.2371874451637268, 0.27579987049102783, -0.22025537490844727, -0.46681830286979675, 0.18109096586704254, 0.6195815801620483, 0.575527012348175, -0.34491899609565735, 0.5599026083946228, 0.257320374250412, 0.6854315400123596, -0.29307496547698975, 0.53548663854599, -0.539263904094696, 0.16338498890399933, -0.12731720507144928, -0.28968220949172974, -0.37672773003578186, -0.10684239864349365, -0.024983303621411324, -0.49677735567092896, 0.25203800201416016, 0.1906735897064209, 1.192945957183838, 0.3208375573158264, -0.5453378558158875, 0.20610596239566803, -0.6408482789993286, 0.9174376726150513, -0.7850089073181152, 0.15821202099323273, 0.4099346101284027, 0.41632044315338135, 0.15158087015151978, -0.7455781102180481, -0.31178081035614014, -0.0687260553240776, -0.33514147996902466, 0.25889500975608826, -0.07975444197654724, -0.167619526386261, 0.44447532296180725, 0.10124152898788452, -0.5313005447387695, 0.2606552839279175, -0.6180912256240845, -0.0405862033367157, 0.9802478551864624, 0.43312883377075195, -0.23708751797676086, -0.4891135096549988, -0.6750248670578003, 0.07252977043390274, -0.28713512420654297, 0.223908469080925, 0.6385834813117981, 0.4783262312412262, -0.6150150299072266, 0.3831885755062103, 0.06437426805496216, 0.34670159220695496, -0.1263412982225418, -0.11615505069494247, 0.7161331176757812, -0.2649482488632202, -0.5436607003211975, 0.4059065282344818, 0.8270783424377441, 0.6041231155395508, 0.2612195312976837, 0.26268795132637024, -0.00723423482850194, -0.33702000975608826, -0.03992369398474693, -0.933306097984314, -0.44105374813079834, 0.22135072946548462, -0.686224639415741, -0.3860391080379486, 0.0057593355886638165, -0.8554968237876892, -0.18826794624328613, -0.5685327649116516, 0.16468285024166107, -0.1881551891565323, -0.20527608692646027, 0.10638792812824249, -0.046323198825120926, 0.22954191267490387, 0.16139335930347443, -0.4656880497932434, 0.38292255997657776, 0.1993045210838318, 0.8053808808326721, -0.026851871982216835, -0.18403857946395874, -0.09842471778392792, -0.16325700283050537, -0.13245058059692383, 0.48863381147384644, -0.00593453086912632, -0.4617858827114105, -0.3072604537010193, 0.4343721270561218, -0.15906541049480438, 0.009107380174100399, 0.45119524002075195, -0.46154916286468506, 0.28462597727775574, -0.12452901154756546, -0.32110172510147095, -0.21783007681369781, 0.08663597702980042, -0.5890387296676636, 1.2499430179595947, 0.17553465068340302, -1.0623457431793213, 0.2898515462875366, -0.6830483078956604, -0.3354628086090088, -0.15007643401622772, 0.21212589740753174, -0.7146724462509155, -0.3936682641506195, 0.15568311512470245, 0.6255198121070862, -0.40907591581344604, 0.215965136885643, -0.2803603410720825, -0.019900010898709297, -0.03183892369270325, -0.7760025858879089, 1.010225772857666, 0.5102983713150024, -0.2890823781490326, 0.12044991552829742, -1.186758041381836, 0.043519098311662674, 0.4118475019931793, -0.008312130346894264, -0.23052027821540833, 0.03713240474462509, 0.27716687321662903, 0.16834187507629395, 0.2645341753959656, -0.5315861701965332, 0.2657850980758667, -0.4568614959716797, 0.5711250305175781, 0.9244459271430969, 0.12175842374563217, 0.08012578636407852, -0.4094456434249878, 0.5415520071983337, 0.2523615062236786, 0.430145800113678, -0.030110513791441917, -0.3589077889919281, -0.7001785635948181, 0.07997796684503555, 0.17461831867694855, 0.736519455909729, -0.7786259055137634, 0.7619763016700745, -0.3874674439430237, -0.9649693369865417, -0.0922352746129036, -0.09831896424293518, 0.15129977464675903, 0.7418491840362549, 0.6105493307113647, 0.012402490712702274, -0.8153131008148193, -0.7356753945350647, 0.15924841165542603, 0.2774217426776886, 0.000055893284297781065, 0.44292840361595154, 0.6670277714729309, -0.09486616402864456, 0.7301937937736511, -0.7105087637901306, -0.138914093375206, -0.28254395723342896, 0.16283364593982697, 0.7333277463912964, 0.47329196333885193, 0.7844185829162598, -0.778728723526001, -0.7484292984008789, -0.2227969765663147, -0.6422415971755981, -0.12202109396457672, -0.3138759434223175, 0.21056263148784637, 0.08651282638311386, 0.41074338555336, -0.18036048114299774, 0.5591028928756714, 0.4824974536895752, -0.4584905207157135, 0.775295615196228, -0.1880178600549698, 0.02521633170545101, -1.343738317489624, 0.2162095308303833, 0.19474829733371735, -0.05159759148955345, -0.33263087272644043, -0.5727062821388245, -0.20780907571315765, -0.28597360849380493, -0.6929088234901428, 0.46588337421417236, -0.3460926413536072, 0.15628677606582642, 0.25863027572631836, -0.43790411949157715, 0.1630365252494812, 0.6300337314605713, -0.561455488204956, 0.6879439353942871, 0.6154309511184692, -0.7184177041053772, 0.37954115867614746, 0.012041944079101086, -0.6289917826652527, -0.003327897284179926, -0.7406682968139648, 0.11244330555200577, -0.04961422085762024, 0.35615378618240356, -0.791508674621582, 0.011488229967653751, 0.31029772758483887, -0.15422530472278595, 0.4559313654899597, -0.12132248282432556, -0.366714209318161, -0.4790531396865845, -0.1947712004184723, 0.4841006100177765, 0.4085831046104431, -0.37952709197998047, 0.6749017834663391, 0.09880787879228592, 0.2860146462917328, -0.6290578842163086, -0.7830191254615784, -0.23589414358139038, -0.3774018883705139, -0.5486540794372559, 0.5296561121940613, -0.09271003305912018, -0.2717316150665283, -0.05528423562645912, -0.02761024981737137, 0.1978200078010559, 0.18030790984630585, 0.40431034564971924, 0.2848101556301117, 0.03821207582950592, 0.004255428444594145, -0.266260027885437, -0.2578861117362976, 0.15146714448928833, -0.3768850862979889, 0.781792402267456, -0.02371036447584629, -0.1553732305765152, -0.6357331871986389, 0.23530882596969604, 0.3254290819168091, 0.017233548685908318, 0.6531373858451843, 0.6086448431015015, -0.28429126739501953, -0.1147511675953865, -0.3121379315853119, 0.29091960191726685, -0.4847988784313202, 0.3006598949432373, -0.1913137435913086, -0.37482312321662903, 0.6030165553092957, 0.2827424705028534, 0.2615990936756134, 1.018229603767395, 0.19532367587089539, -0.0565786249935627, 0.8644543886184692, 0.4311583936214447, -0.12957240641117096, 0.6824654936790466, -0.9250809550285339, -0.005125498864799738, -0.7934963703155518, -0.354822039604187, -0.5948033332824707, -0.5710325837135315, -0.9031193852424622, -0.2557624876499176, 0.4028071165084839, -0.13248585164546967, -0.6257109045982361, 0.422329843044281, -0.6313568949699402, 0.16120432317256927, 0.3188712000846863, 0.3052711486816406, -0.11950374394655228, 0.11715558916330338, -0.20048147439956665, -0.012024784460663795, -0.5121300220489502, -0.10250133275985718, 1.0259920358657837, 0.39136195182800293, 0.5684666037559509, -0.37377670407295227, 0.6321995854377747, 0.49078598618507385, 0.14942488074302673, -0.6046262383460999, 0.4794090986251831, -0.27997809648513794, -0.19446724653244019, -0.30650195479393005, -0.6391804218292236, -1.1802538633346558, 0.02223397232592106, 0.07875709235668182, -0.6999459266662598, 0.4903225302696228, 0.11709819734096527, -0.30745989084243774, 0.6092672944068909, -0.6290544867515564, 0.7763296961784363, -0.6013616919517517, -0.2482164353132248, -0.11821984499692917, -0.5814242362976074, 0.08199311047792435, 0.3228457570075989, 0.20748616755008698, -0.3743867576122284, 0.11218780279159546, 0.8681612014770508, -0.7179393768310547, 0.7906874418258667, -0.3840102553367615, 0.019138870760798454, 0.5122918486595154, -0.4535360038280487, 0.5696179866790771, -0.23645295202732086, -0.36701124906539917, 0.5235848426818848, -0.08769278973340988, -0.5563338398933411, -0.22417885065078735, 0.6105671525001526, -0.9177456498146057, -0.17445437610149384, -0.712334156036377, -0.31062033772468567, -0.0059766946360468864, 0.2667708098888397, 0.5982003211975098, 0.5203437209129333, 0.007419478613883257, 0.3469933271408081, 0.4237585961818695, -0.030658544972538948, 0.7015905976295471, 0.09672294557094574, -0.16137555241584778, -0.6009708046913147, 0.7951129078865051, 0.37868428230285645, 0.10516788065433502, 0.4363713562488556, 0.3075465261936188, -0.41261759400367737, -0.35040706396102905, -0.11493606865406036, 0.09463770687580109, -0.6570793390274048, -0.25199225544929504, -0.44233477115631104, -0.2308870255947113, -0.6006466746330261, -0.03322216495871544, -0.14641834795475006, -0.2696351408958435, -0.633618950843811, -0.3222962021827698, 0.49391910433769226, 0.24580736458301544, -0.08733952790498734, 0.3688358664512634, -0.7364380955696106, 0.26115739345550537, 0.18782496452331543, 0.3226061463356018, 0.18582215905189514, -0.31361377239227295, -0.4389801323413849, 0.03856641799211502, -0.5633294582366943, -0.662287175655365, 0.7499615550041199, 0.10973462462425232, 0.3855428993701935, 0.44503122568130493, 0.07041861861944199, 0.6879103779792786, -0.47855886816978455, 1.095271110534668, 0.5259683728218079, -0.541952908039093, 0.4153970777988434, -0.25865381956100464, 0.264468252658844, 0.21027861535549164, 0.4500235915184021, -0.2983630895614624, 0.3025290369987488, -0.9675391316413879, -1.1739026308059692, 0.7073034048080444, 0.1391073316335678, -0.1719578057527542, 0.22508956491947174, 0.15495720505714417, -0.1332244575023651, 0.2967045307159424, -0.6822647452354431, -0.6640652418136597, -0.6419135928153992, 0.10961396992206573, -0.49672189354896545, -0.0571877621114254, -0.061876777559518814, -0.43437907099723816, 0.9533710479736328, -0.1065015196800232, 0.42784592509269714, 0.2658074200153351, 0.2985003888607025, -0.1758556067943573, 0.1867953985929489, 0.4640934467315674, 0.6425553560256958, -0.42439284920692444, -0.14782901108264923, 0.4418085813522339, -0.5489768385887146, 0.060930799692869186, 0.5241789221763611, -0.18668119609355927, 0.190008744597435, 0.22296035289764404, 0.8687689900398254, 0.21198926866054535, -0.1183895543217659, -0.03625909611582756, -0.10472054034471512, -0.26966986060142517, -0.7813349366188049, 0.02689405344426632, -0.2925248444080353, 0.11879660934209824, 0.4581877291202545, 0.27013012766838074, 0.00010884121002163738, -0.19291600584983826, -0.01859835535287857, -0.01614294946193695, -0.29635119438171387, -0.3066014051437378, 0.7710714340209961, 0.13296005129814148, -0.10673275589942932, 0.5632407069206238, -0.04137091711163521, -0.3912588357925415, 1.1341582536697388, 0.15623293817043304, 1.1201540231704712, 0.011538317427039146, -0.14891904592514038, 0.5234383940696716, 0.28667134046554565, -0.005285009741783142, 0.4786410927772522, -0.09363946318626404, -0.4438910484313965, -0.24189473688602448, -0.7567753195762634, 0.03659232705831528, 0.4426238536834717, -0.811107873916626, 0.4498964846134186, -0.2983768880367279, -0.19539977610111237, -0.08409397304058075, 0.6883631944656372, -1.121282935142517, 0.32457005977630615, 0.068721704185009, 1.1777920722961426, -1.0500504970550537, 0.7556483745574951, 0.35878148674964905, -0.39366769790649414, -1.0292490720748901, -0.2822665870189667, -0.2372521460056305, -0.7968075275421143, 0.4645672142505646, 0.26195770502090454, 0.19225189089775085, 0.07277140766382217, -0.6400300860404968, -0.8440045714378357, 1.5663377046585083, 0.011399795301258564, -0.5966207385063171, -0.09255818277597427, 0.08093585073947906, 0.42385807633399963, -0.3349824547767639, 0.25478243827819824, 0.43580225110054016, 0.7032355666160583, 0.01882365718483925, -0.7587132453918457, -0.016558196395635605, -0.4551021158695221, 0.00712734367698431, 0.5354877710342407, -0.9017531871795654, 0.9791766405105591, -0.0979999527335167, -0.11747308820486069, 0.021712711080908775, 0.8105005025863647, 0.09685683250427246, 0.7967907786369324, 0.6976482272148132, 0.6454153060913086, 0.6610538363456726, -0.17141088843345642, 1.0251696109771729, -0.36037078499794006, 0.6463658809661865, 1.2044299840927124, -0.18270254135131836, 0.4653013348579407, 0.2973337471485138, -0.6395366191864014, 0.594584584236145, 0.8677932024002075, -0.5889491438865662, 0.5646600723266602, 0.04381634667515755, 0.2353287786245346, -0.3191123902797699, -0.2752218544483185, -0.7720179557800293, 0.27288076281547546, 0.3950166702270508, -0.4595308303833008, -0.3061622977256775, -0.04640909656882286, -0.00513111986219883, -0.32783958315849304, -0.3940235376358032, 0.3042246103286743, 0.27720844745635986, -0.4110918939113617, 0.6342082023620605, -0.08080612868070602, 0.4958985447883606, -0.7807506918907166, 0.07139687985181808, 0.14994721114635468, 0.0640278086066246, -0.43120092153549194, -0.5083551406860352, 0.05329650267958641, -0.08859191089868546, -0.27764084935188293, -0.7306973338127136, 0.5479673743247986, -0.09956341981887817, -0.822698175907135, 0.2302020639181137, 0.08203762024641037, 0.0770745575428009, 0.30116769671440125, -0.8450110554695129, -0.2844557464122772, 0.20100128650665283, -0.5313119292259216, 0.29219505190849304, 0.4493344724178314, 0.17802713811397552, 0.48674139380455017, 0.7114144563674927, 0.1570102721452713, -0.04638710990548134, 0.2857816219329834, 0.776084840297699, -0.5252808928489685, -0.6368072628974915, -0.536927342414856, 0.6571611762046814, -0.1737256646156311, -0.5089168548583984, 0.6733042597770691, 0.6513351798057556, 0.7562520503997803, 0.13302923738956451, 0.6839402318000793, -0.08542397618293762, 0.38563621044158936, -0.6168532967567444, 0.5248826742172241, -0.6353317499160767, 0.3235265910625458, -0.11318868398666382, -0.6026765704154968, 0.22959323227405548, 0.06015968322753906, -0.4271965026855469, 0.1484726369380951, 0.4126800000667572, 0.36961230635643005, -0.052916865795850754, 0.10981139540672302, 0.1073257103562355, 0.45497751235961914, 0.49789875745773315, 0.36193686723709106, 0.4210069179534912, -0.7293452620506287, 0.5588327050209045, -0.9318649768829346, -0.0012824374716728926, -0.2785686254501343, -1.1228057146072388, -0.6154284477233887, -0.45564931631088257, -0.29152989387512207, -0.5700815916061401, -0.2606234848499298, 1.2159661054611206, 0.4923801124095917, -0.9317746758460999, -0.3853846788406372, -0.032878577709198, -0.008492409251630306, -0.6023276448249817, -0.3429614007472992, 0.8131307363510132, -0.09126497805118561, -0.6152275204658508, 0.1872914731502533, -0.20196287333965302, 0.17948760092258453, -0.26306283473968506, 0.01417530793696642, -0.26331692934036255, -0.16238972544670105, 0.5086623430252075, 0.14677996933460236, -0.3454427421092987, -0.14160767197608948, 0.011794851161539555, 0.21616387367248535, 0.20458456873893738, 0.589768648147583, -0.7408807873725891, 0.1945222169160843, 0.7093634605407715, 0.07498256117105484, 0.61666339635849, -0.005713621154427528, 0.007338610012084246, -0.7972604036331177, 0.19569739699363708, 0.28949686884880066, 0.8708208799362183, 0.2566297948360443, -0.6229174137115479, 0.43332600593566895, 0.5179378986358643, -0.6977457404136658, -0.7014611959457397, -0.04274991899728775, -1.1605100631713867, -0.19079817831516266, 0.9336968660354614, -0.0832337811589241, -0.2016090303659439, -0.09212316572666168, 0.06764580309391022, 0.4428739547729492, -0.5765496492385864, 0.7464539408683777, 0.44180744886398315, -0.3045317530632019, 0.1491665095090866, -0.6708030700683594, 0.2846177816390991, -0.10887698084115982, -0.635627269744873, -0.10556712001562119, 0.26189836859703064, 0.2674017548561096, 0.2062569558620453, 0.32369357347488403, 0.26618820428848267, 0.07578586041927338, -0.12402524054050446, -0.12778536975383759, -0.41775059700012207, -0.35882335901260376, -0.1956881731748581, 0.09851036220788956, -0.6316359639167786, -0.3559023141860962 ]
null
null
null
null
null
null
null
null
null
null
null
null
null
irc_disentangle
null
2022-11-18T20:10:09Z
459
4
irc-disentanglement
[ "task_categories:token-classification", "annotations_creators:expert-generated", "language_creators:found", "multilinguality:monolingual", "size_categories:10K<n<100K", "source_datasets:original", "language:en", "license:cc-by-4.0", "conversation-disentanglement", "arxiv:1810.11118", "region:us" ]
2022-11-18T20:10:09Z
2022-03-02T23:29:22.000Z
2022-03-02T23:29:22
--- annotations_creators: - expert-generated language_creators: - found language: - en license: - cc-by-4.0 multilinguality: - monolingual size_categories: - 10K<n<100K source_datasets: - original task_categories: - token-classification task_ids: [] paperswithcode_id: irc-disentanglement pretty_name: IRC Disentanglement tags: - conversation-disentanglement dataset_info: - config_name: ubuntu features: - name: id dtype: int32 - name: raw dtype: string - name: ascii dtype: string - name: tokenized dtype: string - name: date dtype: string - name: connections sequence: int32 splits: - name: train num_bytes: 56012854 num_examples: 220616 - name: validation num_bytes: 3081479 num_examples: 12510 - name: test num_bytes: 3919900 num_examples: 15010 download_size: 118470210 dataset_size: 63014233 - config_name: channel_two features: - name: id dtype: int32 - name: raw dtype: string - name: ascii dtype: string - name: tokenized dtype: string - name: connections sequence: int32 splits: - name: dev num_bytes: 197505 num_examples: 1001 - name: pilot num_bytes: 92663 num_examples: 501 - name: test num_bytes: 186823 num_examples: 1001 - name: pilot_dev num_bytes: 290175 num_examples: 1501 - name: all_ num_bytes: 496524 num_examples: 2602 download_size: 118470210 dataset_size: 1263690 --- # Dataset Card for IRC Disentanglement ## 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) - [Acknowledgments](#acknowledgments) ## Dataset Description - **Homepage:** https://jkk.name/irc-disentanglement/ - **Repository:** https://github.com/jkkummerfeld/irc-disentanglement/tree/master/data - **Paper:** https://aclanthology.org/P19-1374/ - **Leaderboard:** NA - **Point of Contact:** jkummerf@umich.edu ### Dataset Summary Disentangling conversations mixed together in a single stream of messages is a difficult task, made harder by the lack of large manually annotated datasets. This new dataset of 77,563 messages manually annotated with reply-structure graphs that both disentangle conversations and define internal conversation structure. The dataset is 16 times larger than all previously released datasets combined, the first to include adjudication of annotation disagreements, and the first to include context. Note, the Github repository for the dataset also contains several useful tools for: - Conversion (e.g. extracting conversations from graphs) - Evaluation - Preprocessing - Word embeddings trained on the full Ubuntu logs in 2018 ### Supported Tasks and Leaderboards Conversational Disentanglement ### Languages English (en) ## Dataset Structure ### Data Instances For Ubuntu: data["train"][1050] ``` { 'ascii': "[03:57] <Xophe> (also, I'm guessing that this isn't a good place to report minor but annoying bugs... what is?)", 'connections': [1048, 1054, 1055, 1072, 1073], 'date': '2004-12-25', 'id': 1050, 'raw': "[03:57] <Xophe> (also, I'm guessing that this isn't a good place to report minor but annoying bugs... what is?)", 'tokenized': "<s> ( also , i 'm guessing that this is n't a good place to report minor but annoying bugs ... what is ?) </s>" } ``` For Channel_two: data["train"][50] ``` { 'ascii': "[01:04] <Felicia> Chanel: i don't know off hand sorry", 'connections': [49, 53], 'id': 50, 'raw': "[01:04] <Felicia> Chanel: i don't know off hand sorry", 'tokenized': "<s> <user> : i do n't know off hand sorry </s>" } ``` ### Data Fields 'id' : The id of the message, this is the value that would be in the 'connections' of associated messages. 'raw' : The original message from the IRC log, as downloaded. 'ascii' : The raw message converted to ascii (unconvertable characters are replaced with a special word). 'tokenized' : The same message with automatic tokenisation and replacement of rare words with placeholder symbols. 'connections' : The indices of linked messages. (only ubuntu) 'date' : The date the messages are from. The labelling for each date only start after the first 1000 messages of that date. ### Data Splits The dataset has 4 parts: | Part | Number of Annotated Messages | | ------------- | ------------------------------------------- | | Train | 67,463 | | Dev | 2,500 | | Test | 5,000 | | Channel 2 | 2,600 | ## Dataset Creation ### Curation Rationale IRC is a synchronous chat setting with a long history of use. Several channels log all messages and make them publicly available. The Ubuntu channel is particularly heavily used and has been the subject of several academic studies. Data was selected from the channel in order to capture the diversity of situations in the channel (e.g. when there are many users or very few users). For full details, see the [annotation information page](https://github.com/jkkummerfeld/irc-disentanglement/blob/master/data/READ.history.md). ### Source Data #### Initial Data Collection and Normalization Data was collected from the Ubuntu IRC channel logs, which are publicly available at [https://irclogs.ubuntu.com/](https://irclogs.ubuntu.com/). The raw files are included, as well as two other versions: - ASCII, converted using the script [make_txt.py](https://github.com/jkkummerfeld/irc-disentanglement/blob/master/tools/preprocessing/make-txt.py) - Tok, tokenised text with rare words replaced by UNK using the script [dstc8-tokenise.py](https://github.com/jkkummerfeld/irc-disentanglement/blob/master/tools/preprocessing/dstc8-tokenise.py) The raw channel two data is from prior work [(Elsner and Charniak, 2008)](https://www.aclweb.org/anthology/P08-1095.pdf)]. #### Who are the source language producers? The text is from a large group of internet users asking questions and providing answers related to Ubuntu. ### Annotations #### Annotation process The data is expert annotated with: - Training, one annotation per line in general, a small portion is double-annotated and adjudicated - Dev, Channel 2, double annotated and adjudicated - Test, triple annotated and adjudicated | Part | Annotators | Adjudication? | | ------------- | --------------- | ------------------------------------- | | Train | 1 or 2 per file | For files with 2 annotators (only 10) | | Dev | 2 | Yes | | Test | 3 | Yes | | Channel 2 | 2 | Yes | #### Who are the annotators? Students and a postdoc at the University of Michigan. Everyone involved went through a training process with feedback to learn the annotation guidelines. ### Personal and Sensitive Information No content is removed or obfuscated. There is probably personal information in the dataset from users. ## Considerations for Using the Data ### Social Impact of Dataset The raw data is already available online and the annotations do not significantly provide additional information that could have a direct social impact. ### Discussion of Biases The data is mainly from a single technical domain (Ubuntu tech support) that probably has a demographic skew of some sort. Given that users are only identified by their self-selected usernames, it is difficult to know more about the authors. ### Other Known Limitations Being focused on a single language and a single channel means that the data is likely capturing a particular set of conventions in communication. Those conventions may not apply to other channels, or beyond IRC. ## Additional Information ### Dataset Curators Jonathan K. Kummerfeld ### Licensing Information Creative Commons Attribution 4.0 ### Citation Information ``` @inproceedings{kummerfeld-etal-2019-large, title = "A Large-Scale Corpus for Conversation Disentanglement", author = "Kummerfeld, Jonathan K. and Gouravajhala, Sai R. and Peper, Joseph J. and Athreya, Vignesh and Gunasekara, Chulaka and Ganhotra, Jatin and Patel, Siva Sankalp and Polymenakos, Lazaros C and Lasecki, Walter", booktitle = "Proceedings of the 57th Annual Meeting of the Association for Computational Linguistics", month = jul, year = "2019", address = "Florence, Italy", publisher = "Association for Computational Linguistics", url = "https://aclanthology.org/P19-1374", doi = "10.18653/v1/P19-1374", pages = "3846--3856", arxiv = "https://arxiv.org/abs/1810.11118", software = "https://jkk.name/irc-disentanglement", data = "https://jkk.name/irc-disentanglement", abstract = "Disentangling conversations mixed together in a single stream of messages is a difficult task, made harder by the lack of large manually annotated datasets. We created a new dataset of 77,563 messages manually annotated with reply-structure graphs that both disentangle conversations and define internal conversation structure. Our data is 16 times larger than all previously released datasets combined, the first to include adjudication of annotation disagreements, and the first to include context. We use our data to re-examine prior work, in particular, finding that 89{\%} of conversations in a widely used dialogue corpus are either missing messages or contain extra messages. Our manually-annotated data presents an opportunity to develop robust data-driven methods for conversation disentanglement, which will help advance dialogue research.", } ``` ### Contributions Thanks to [@dhruvjoshi1998](https://github.com/dhruvjoshi1998) for adding this dataset. Thanks to [@jkkummerfeld](https://github.com/jkkummerfeld) for improvements to the documentation. ### Acknowledgments This material is based in part upon work supported by IBM under contract 4915012629. Any opinions, findings, conclusions or recommendations expressed are those of the authors and do not necessarily reflect the views of IBM.
[ -0.6448639631271362, -0.7001053690910339, 0.09851779788732529, 0.2745199501514435, -0.44833874702453613, 0.272544801235199, -0.25910529494285583, -0.5114647746086121, 0.7273696660995483, 0.20555180311203003, -0.5837492346763611, -0.5447761416435242, -0.7974883317947388, 0.078949473798275, -0.3866046965122223, 1.2522724866867065, 0.1515684723854065, -0.17910055816173553, -0.00413795281201601, -0.30479884147644043, -0.5429040789604187, -0.6094410419464111, -0.30731430649757385, -0.3484458327293396, 0.5100007653236389, 0.5700065493583679, 0.5024701952934265, 0.6216268539428711, 0.7182347178459167, 0.3295225203037262, -0.24332760274410248, 0.009527397342026234, -0.6447470188140869, -0.1750515103340149, 0.035271137952804565, -0.1577892005443573, -0.3975360691547394, 0.09528578072786331, 0.6293026208877563, 0.5510697364807129, -0.04495871812105179, 0.36459821462631226, 0.17108061909675598, 0.7591338157653809, -0.364657998085022, 0.13177438080310822, -0.4425533711910248, -0.05937504023313522, -0.3606027066707611, -0.07537771016359329, -0.4201313257217407, -0.037959326058626175, 0.027702797204256058, -0.4997178912162781, -0.1371379792690277, -0.07529324293136597, 1.0437370538711548, 0.02862902358174324, -0.480267733335495, -0.25341030955314636, -0.677864134311676, 0.5101848244667053, -0.7262907028198242, 0.28874471783638, 0.520265519618988, 0.1796099841594696, -0.34547075629234314, -0.8243352174758911, -0.47073420882225037, 0.17667968571186066, -0.5822135806083679, 0.13291297852993011, -0.34115681052207947, 0.02079843543469906, 0.346903532743454, 0.3837462067604065, -0.41039255261421204, 0.09527351707220078, -0.6581650376319885, -0.27590212225914, 0.855187714099884, 0.10164137184619904, 0.22027578949928284, -0.4721788167953491, -0.310800701379776, -0.2777371406555176, -0.23605187237262726, -0.0053029353730380535, 0.4674292206764221, 0.08197767287492752, -0.5225125551223755, 0.5328323841094971, -0.2365296632051468, 0.24736656248569489, -0.00473645469173789, 0.007974197156727314, 0.4729580581188202, -0.46604108810424805, 0.048348236829042435, 0.0980616956949234, 1.1062597036361694, 0.6389462351799011, -0.22457250952720642, 0.09021633863449097, 0.04437810555100441, -0.10529980808496475, -0.21907083690166473, -0.7304049730300903, -0.6710622310638428, 0.2860143482685089, -0.6867843270301819, -0.2024749368429184, 0.3371813893318176, -0.8857534527778625, -0.10359659790992737, -0.2654383182525635, 0.19746914505958557, -0.2677784264087677, -0.6816843748092651, 0.0067142825573682785, -0.29026827216148376, 0.10529990494251251, 0.1956188827753067, -0.778896689414978, 0.37247297167778015, 0.41778260469436646, 0.7953876256942749, -0.0288293045014143, -0.2658330202102661, -0.19228975474834442, -0.2685651481151581, 0.09500417113304138, 0.5596155524253845, -0.2485375702381134, -0.1023249551653862, -0.3617364168167114, 0.240207701921463, 0.21093298494815826, -0.08880680054426193, 0.1733984649181366, -0.5043924450874329, 0.367133766412735, -0.3035789132118225, -0.34053897857666016, -0.13481073081493378, 0.053630080074071884, -0.5770911574363708, 1.0858194828033447, 0.06705401092767715, -1.0490080118179321, 0.03694533184170723, -0.8444945812225342, -0.2934388518333435, 0.014700851403176785, -0.13164812326431274, -0.30661943554878235, -0.25777047872543335, -0.0384577251970768, 0.40871864557266235, -0.21880514919757843, 0.3871632516384125, -0.2564848065376282, -0.20243437588214874, 0.5316964983940125, -0.478085458278656, 1.1582289934158325, 0.46313902735710144, -0.46155643463134766, -0.31096771359443665, -0.7059336304664612, 0.01274513266980648, 0.04203851521015167, -0.25650960206985474, -0.34026747941970825, -0.015687553212046623, 0.11664313822984695, 0.1516890525817871, 0.2323181927204132, -0.6437826156616211, 0.2160085290670395, -0.03099551796913147, 0.617723822593689, 0.7993908524513245, 0.11663147062063217, 0.24466274678707123, -0.11819358170032501, 0.08248409628868103, 0.38150671124458313, 0.3901479244232178, -0.10795994848012924, -0.5527673959732056, -0.7667871713638306, -0.4196561574935913, 0.48063918948173523, 0.49458765983581543, -0.5405587553977966, 0.7667542099952698, -0.2732560634613037, -0.5492339134216309, -0.5061492323875427, 0.0690833330154419, 0.48850032687187195, 0.15559592843055725, 0.3176441788673401, -0.5197265148162842, -0.7143037915229797, -0.80298912525177, 0.18409688770771027, -0.2860969603061676, -0.02295868471264839, 0.18627174198627472, 0.7650976777076721, -0.49692872166633606, 0.8192179203033447, -0.6629678010940552, -0.36809638142585754, 0.015906140208244324, 0.3482578992843628, 0.10695011913776398, 0.6190666556358337, 0.3441507816314697, -0.8226582407951355, -0.5860241651535034, -0.2061816155910492, -0.7771115303039551, 0.006608523894101381, -0.20938728749752045, -0.32677608728408813, 0.16898058354854584, 0.5649585127830505, -0.3864474296569824, 0.43192198872566223, 0.7011657357215881, -0.7067835330963135, 0.22433575987815857, -0.1375606805086136, 0.3028271198272705, -1.2737571001052856, 0.09428436309099197, 0.10746142268180847, -0.055997516959905624, -0.6234415769577026, -0.3750862181186676, -0.1372220367193222, 0.2679443955421448, -0.20633526146411896, 0.22861751914024353, -0.5755487680435181, 0.12551043927669525, 0.11493967473506927, 0.2831656336784363, -0.040248118340969086, 0.6705024838447571, -0.20958048105239868, 0.255161315202713, 0.5571161508560181, -0.35456201434135437, 0.4726686179637909, 0.5105204582214355, -0.09814519435167313, 0.33648842573165894, -0.7178319692611694, 0.29056230187416077, -0.26491910219192505, 0.20048654079437256, -1.2452824115753174, -0.41036078333854675, 0.6251897811889648, -0.9210843443870544, 0.25942525267601013, -0.25319668650627136, -0.4811461865901947, -0.21038572490215302, -0.5458506345748901, 0.26808321475982666, 0.45782387256622314, -0.4817942976951599, 0.38846302032470703, 0.6586067080497742, 0.28392669558525085, -0.5858156085014343, -1.031073808670044, 0.06804532557725906, -0.26946821808815, -0.552169919013977, 0.15856334567070007, -0.2544918358325958, -0.2469102144241333, 0.2034900039434433, 0.0819859728217125, -0.09091401100158691, 0.1399465948343277, 0.46065592765808105, 0.21855458617210388, -0.0875939428806305, 0.0881754606962204, -0.061520010232925415, -0.12463310360908508, 0.10495124757289886, 0.02710605226457119, 0.3850894868373871, -0.22704657912254333, -0.43998807668685913, -0.5873634219169617, 0.4073598086833954, 0.4831327795982361, -0.191789910197258, 0.7398838400840759, 0.6180225014686584, -0.22228460013866425, 0.14793537557125092, -0.6185232996940613, -0.461933434009552, -0.47177988290786743, 0.36079561710357666, -0.032157573848962784, -1.024231195449829, 0.7637569904327393, 0.17361615598201752, 0.209874227643013, 0.5448614954948425, 0.21457521617412567, -0.2246720939874649, 0.9870827794075012, 0.5270874500274658, -0.2432251274585724, 0.603465735912323, -0.42506924271583557, 0.2771397531032562, -0.8947484493255615, -0.4100545346736908, -0.4450542628765106, -0.6174076795578003, -0.8873778581619263, -0.2657989263534546, 0.09205256402492523, 0.29841020703315735, -0.05775028467178345, 0.4903651475906372, -0.9256790280342102, 0.42854809761047363, 0.6044221520423889, 0.05285961925983429, 0.31385350227355957, 0.18123646080493927, 0.17678643763065338, -0.15103265643119812, -0.6547368168830872, -0.4212176501750946, 1.1560407876968384, 0.5994189381599426, 0.7293233275413513, 0.23416833579540253, 0.6841621398925781, 0.3708933889865875, 0.1732541024684906, -0.3354242146015167, 0.5230118036270142, 0.01377126295119524, -0.7702684998512268, -0.3447677493095398, -0.6063829064369202, -1.0531847476959229, 0.07268941402435303, -0.3065198063850403, -1.1857633590698242, 0.25840073823928833, 0.0665416345000267, -0.04895571991801262, 0.4119476079940796, -0.9144311547279358, 0.8666377067565918, -0.2466132938861847, 0.016625866293907166, -0.08636786043643951, -0.9838763475418091, 0.3754040598869324, 0.09221967309713364, 0.22619272768497467, -0.21042479574680328, 0.3046700954437256, 1.1184020042419434, -0.3655899167060852, 0.9827063679695129, -0.09040319919586182, 0.3791894316673279, 0.5014729499816895, -0.04340853542089462, 0.3977472484111786, 0.4266616702079773, 0.4548130929470062, 0.6352541446685791, 0.2578537166118622, -0.10002465546131134, -0.35263094305992126, 0.7322894930839539, -1.0983097553253174, -0.2908339202404022, -0.5405613780021667, -0.27330291271209717, 0.31740912795066833, 0.21828734874725342, 0.2982102036476135, 0.5364174842834473, 0.10153090208768845, 0.5182570219039917, 0.7796211242675781, -0.14402611553668976, 0.2874452769756317, 0.6717243194580078, -0.10180776566267014, -0.6735148429870605, 0.9023251533508301, 0.13699202239513397, 0.22212806344032288, 0.33727675676345825, -0.029160859063267708, -0.19615472853183746, -0.3295964300632477, -0.268932044506073, 0.37910786271095276, -0.7537765502929688, -0.39507773518562317, -0.7488956451416016, -0.4903457760810852, -0.3798464834690094, 0.178024023771286, -0.4461107552051544, -0.4436737596988678, -0.5031884908676147, -0.21969841420650482, 0.7920019030570984, 0.7069035172462463, -0.5686454176902771, 0.3685140907764435, -0.8647737503051758, 0.22051697969436646, 0.12380271404981613, 0.5386006832122803, -0.14951704442501068, -0.4841277003288269, -0.26969802379608154, 0.5383852124214172, -0.33607980608940125, -0.7734076380729675, 0.08619941771030426, 0.06656119227409363, 0.6023073792457581, 0.2832663357257843, 0.33279475569725037, 0.6747545003890991, 0.02555486001074314, 0.9248639941215515, 0.37064239382743835, -0.7116543650627136, 0.5446380376815796, -0.15215393900871277, 0.18172618746757507, 0.6797678470611572, 0.4581948518753052, -0.8987430930137634, -0.488384872674942, -0.798759937286377, -0.9898538589477539, 1.0885231494903564, 0.48183509707450867, 0.13454517722129822, -0.17747697234153748, 0.2416381537914276, -0.3011234402656555, -0.03683951497077942, -0.9342435598373413, -0.9463632702827454, -0.21000497043132782, -0.20750439167022705, 0.01847262494266033, -0.4590352475643158, -0.3286696672439575, -0.5470044612884521, 0.72083979845047, 0.09367580711841583, 0.5838001370429993, 0.34246063232421875, -0.03928212448954582, -0.20192377269268036, 0.02656124345958233, 0.44356563687324524, 0.5787237882614136, -0.2656437158584595, 0.2662651836872101, 0.11994834989309311, -0.6839598417282104, 0.02014787308871746, 0.2489931285381317, 0.029946690425276756, 0.1562686264514923, 0.35632261633872986, 0.7454513907432556, -0.046594880521297455, -0.46086496114730835, 0.5781853795051575, -0.4426044821739197, -0.518457293510437, -0.4035446047782898, -0.19086600840091705, 0.15446124970912933, 0.40606147050857544, 0.3889077603816986, -0.09881636500358582, 0.014272917062044144, -0.36277687549591064, 0.30279502272605896, 0.2918284237384796, -0.3743317723274231, -0.42334240674972534, 0.5897066593170166, 0.2704470753669739, -0.29316556453704834, 0.8643906116485596, -0.4280175268650055, -0.3107416033744812, 0.4393419027328491, 0.2048538625240326, 0.7768210172653198, 0.07953844219446182, 0.3930053412914276, 0.5917267203330994, 0.5041941404342651, -0.042186807841062546, 0.00916828028857708, -0.0931001678109169, -0.720762312412262, -0.32550275325775146, -0.3692534565925598, 0.05965778976678848, 0.3603028357028961, -0.7378179430961609, 0.30838391184806824, -0.3548887073993683, -0.21466754376888275, 0.17631763219833374, 0.09769286215305328, -0.3875180184841156, -0.11933206021785736, 0.1856520175933838, 0.7294548749923706, -1.0521587133407593, 0.717607855796814, 0.8316219449043274, -0.4830434322357178, -0.8911237716674805, -0.35239964723587036, 0.21971887350082397, -0.28850051760673523, 0.4349440038204193, 0.09781789779663086, 0.18408508598804474, -0.1677967756986618, -0.676131010055542, -0.963712751865387, 1.387196660041809, 0.21229152381420135, -0.5348545908927917, 0.23212246596813202, 0.3927013576030731, 0.6341841220855713, -0.14767539501190186, 0.5355728268623352, 0.5450155735015869, 0.368022084236145, 0.16913601756095886, -0.937350869178772, 0.11108079552650452, -0.5544075965881348, 0.05145825818181038, 0.44468286633491516, -0.8620138764381409, 0.6810176372528076, 0.13526932895183563, -0.42566022276878357, -0.4262830317020416, 0.5985972285270691, 0.043448008596897125, 0.24277158081531525, 0.5390906929969788, 0.5999637246131897, 0.6098534464836121, -0.2389325350522995, 0.4486004412174225, -0.2906340956687927, 0.5618579387664795, 1.0110201835632324, 0.3736046552658081, 0.5412313938140869, 0.6488142609596252, -0.20477987825870514, 0.46059295535087585, 0.555861234664917, -0.015865115448832512, 0.5705977082252502, 0.006122341379523277, 0.035387732088565826, -0.011016643606126308, 0.039266739040613174, -0.4289429783821106, 0.40739405155181885, 0.38223206996917725, -0.3668345510959625, -0.17812630534172058, -0.01616182178258896, 0.31237027049064636, -0.1036122739315033, 0.078255794942379, 0.9854824542999268, 0.01616525836288929, -0.5197806358337402, 0.6369346976280212, -0.04672187566757202, 0.8062452077865601, -0.7142193913459778, -0.22409291565418243, -0.3406147062778473, 0.2608831226825714, -0.441608726978302, -1.015790581703186, 0.4109705686569214, -0.07112050801515579, -0.033227719366550446, -0.23301340639591217, 0.6241487264633179, -0.5144028067588806, -0.3030008375644684, 0.45170632004737854, 0.1540168821811676, 0.48434391617774963, 0.27513664960861206, -0.8339448571205139, 0.4519139230251312, 0.46333256363868713, -0.42567846179008484, 0.4362320601940155, 0.6071540117263794, 0.09200720489025116, 0.5034090876579285, 0.5721994042396545, -0.16281825304031372, -0.11089889705181122, -0.2876034677028656, 1.2137243747711182, -0.587817907333374, -0.23646026849746704, -0.8217014670372009, 0.9383268356323242, -0.37860891222953796, -0.5640333294868469, 0.8364381194114685, 0.5180501937866211, 1.147252082824707, 0.2625490725040436, 0.614464282989502, -0.6989604830741882, 0.3105526864528656, -0.19536517560482025, 0.7450644373893738, -0.4107135832309723, 0.39199671149253845, -0.3419325053691864, -0.7306053042411804, -0.24025264382362366, 0.5738123655319214, -0.031617421656847, -0.1791953593492508, 0.5082449913024902, 1.0374096632003784, -0.1820848435163498, 0.03877018764615059, -0.030241353437304497, 0.327543169260025, 0.3628324270248413, 0.5260526537895203, 0.8118179440498352, -0.7594290971755981, 0.7320305705070496, -0.5809635519981384, -0.40095242857933044, -0.25762930512428284, -0.7564958333969116, -1.0994713306427002, -0.9520731568336487, -0.6192842721939087, -0.5357838273048401, -0.0346660315990448, 0.9897056221961975, 0.6176591515541077, -0.7644101977348328, -0.34783780574798584, 0.0007127493154257536, 0.22437450289726257, -0.020195506513118744, -0.2629198133945465, 0.1780170351266861, 0.04914624243974686, -0.28300225734710693, -0.18384362757205963, -0.02634463459253311, 0.1261812299489975, -0.23487427830696106, -0.21405638754367828, -0.5561278462409973, -0.3093761205673218, 0.42381319403648376, 0.39884617924690247, -0.3632720708847046, -0.4318408966064453, -0.07587932050228119, -0.18605069816112518, 0.0984494537115097, 0.3566637337207794, -0.3236479163169861, 0.4520397186279297, 0.49108269810676575, 0.11372065544128418, 0.5901418924331665, 0.010749640874564648, 0.08244191110134125, -0.7966926693916321, 0.3157251477241516, 0.04983951896429062, 0.13320401310920715, 0.2653798460960388, -0.4847816526889801, 0.4695967137813568, 0.27329808473587036, -0.7100793123245239, -0.9751585125923157, -0.22415299713611603, -0.9000662565231323, -0.2180793732404709, 1.3474962711334229, -0.2258186787366867, -0.17655934393405914, -0.1671670377254486, -0.35907691717147827, 0.18593207001686096, -0.5721402168273926, 0.7321314215660095, 0.7352527976036072, 0.05601935461163521, -0.15835747122764587, -0.4207034409046173, 0.510153591632843, 0.066071517765522, -0.6674046516418457, 0.17068037390708923, 0.5872653126716614, 0.37503015995025635, 0.36748090386390686, 0.8542841672897339, -0.18267595767974854, -0.021768365055322647, -0.0029392768628895283, 0.17723125219345093, -0.01936604082584381, -0.32124820351600647, -0.27161911129951477, -0.4151076078414917, 0.12171709537506104, -0.3761942684650421 ]
null
null
null
null
null
null
null
null
null
null
null
null
null
allenai/peer_read
allenai
2022-11-18T21:37:46Z
459
4
peerread
[ "task_categories:text-classification", "annotations_creators:expert-generated", "language_creators:found", "multilinguality:monolingual", "size_categories:10K<n<100K", "source_datasets:original", "language:en", "license:unknown", "acceptability-classification", "arxiv:1804.09635", "region:us" ]
2022-11-18T21:37:46Z
2022-03-02T23:29:22.000Z
2022-03-02T23:29:22
--- annotations_creators: - expert-generated language_creators: - found language: - en license: - unknown multilinguality: - monolingual size_categories: - 10K<n<100K source_datasets: - original task_categories: - text-classification task_ids: [] paperswithcode_id: peerread pretty_name: PeerRead tags: - acceptability-classification dataset_info: - config_name: parsed_pdfs features: - name: name dtype: string - name: metadata struct: - name: source dtype: string - name: title dtype: string - name: authors sequence: string - name: emails sequence: string - name: sections sequence: - name: heading dtype: string - name: text dtype: string - name: references sequence: - name: title dtype: string - name: author sequence: string - name: venue dtype: string - name: citeRegEx dtype: string - name: shortCiteRegEx dtype: string - name: year dtype: int32 - name: referenceMentions sequence: - name: referenceID dtype: int32 - name: context dtype: string - name: startOffset dtype: int32 - name: endOffset dtype: int32 - name: year dtype: int32 - name: abstractText dtype: string - name: creator dtype: string splits: - name: train num_bytes: 571263679 num_examples: 11090 - name: test num_bytes: 34284777 num_examples: 637 - name: validation num_bytes: 32488519 num_examples: 637 download_size: 1246688292 dataset_size: 638036975 - config_name: reviews features: - name: id dtype: string - name: conference dtype: string - name: comments dtype: string - name: subjects dtype: string - name: version dtype: string - name: date_of_submission dtype: string - name: title dtype: string - name: authors sequence: string - name: accepted dtype: bool - name: abstract dtype: string - name: histories sequence: sequence: string - name: reviews sequence: - name: date dtype: string - name: title dtype: string - name: other_keys dtype: string - name: originality dtype: string - name: comments dtype: string - name: is_meta_review dtype: bool - name: is_annotated dtype: bool - name: recommendation dtype: string - name: replicability dtype: string - name: presentation_format dtype: string - name: clarity dtype: string - name: meaningful_comparison dtype: string - name: substance dtype: string - name: reviewer_confidence dtype: string - name: soundness_correctness dtype: string - name: appropriateness dtype: string - name: impact dtype: string splits: - name: train num_bytes: 15234922 num_examples: 11090 - name: test num_bytes: 878906 num_examples: 637 - name: validation num_bytes: 864799 num_examples: 637 download_size: 1246688292 dataset_size: 16978627 --- # Dataset Card for peer_read ## 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://arxiv.org/abs/1804.09635 - **Repository:** https://github.com/allenai/PeerRead - **Paper:** https://arxiv.org/pdf/1804.09635.pdf - **Leaderboard:** [Needs More Information] - **Point of Contact:** [Needs More Information] ### Dataset Summary PearRead is a dataset of scientific peer reviews available to help researchers study this important artifact. The dataset consists of over 14K paper drafts and the corresponding accept/reject decisions in top-tier venues including ACL, NIPS and ICLR, as well as over 10K textual peer reviews written by experts for a subset of the papers. ### Supported Tasks and Leaderboards [More Information Needed] ### Languages en-English ## Dataset Structure ### Data Instances [More Information Needed] ### Data Fields #### parsed_pdfs - `name`: `string` Filename in the dataset - `metadata`: `dict` Paper metadata - `source`: `string` Paper source - `authors`: `list<string>` List of paper authors - `title`: `string` Paper title - `sections`: `list<dict>` List of section heading and corresponding description - `heading`: `string` Section heading - `text`: `string` Section description - `references`: `string` List of references - `title`: `string` Title of reference paper - `author`: `list<string>` List of reference paper authors - `venue`: `string` Reference venue - `citeRegEx`: `string` Reference citeRegEx - `shortCiteRegEx`: `string` Reference shortCiteRegEx - `year`: `int` Reference publish year - `referenceMentions`: `list<string>` List of reference mentions - `referenceID`: `int` Reference mention ID - `context`: `string` Reference mention context - `startOffset`: `int` Reference startOffset - `endOffset`: `int` Reference endOffset - `year`: `int` Paper publish year - `abstractText`: `string` Paper abstract - `creator`: `string` Paper creator #### reviews - `id`: `int` Review ID - `conference`: `string` Conference name - `comments`: `string` Review comments - `subjects`: `string` Review subjects - `version`: `string` Review version - `date_of_submission`: `string` Submission date - `title`: `string` Paper title - `authors`: `list<string>` List of paper authors - `accepted`: `bool` Paper accepted flag - `abstract`: `string` Paper abstract - `histories`: `list<string>` Paper details with link - `reviews`: `dict` Paper reviews - `date`: `string` Date of review - `title`: `string` Paper title - `other_keys`: `string` Reviewer other details - `originality`: `string` Originality score - `comments`: `string` Reviewer comments - `is_meta_review`: `bool` Review type flag - `recommendation`: `string` Reviewer recommendation - `replicability`: `string` Replicability score - `presentation_format`: `string` Presentation type - `clarity`: `string` Clarity score - `meaningful_comparison`: `string` Meaningful comparison score - `substance`: `string` Substance score - `reviewer_confidence`: `string` Reviewer confidence score - `soundness_correctness`: `string` Soundness correctness score - `appropriateness`: `string` Appropriateness score - `impact`: `string` Impact score ### 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 Dongyeop Kang, Waleed Ammar, Bhavana Dalvi Mishra, Madeleine van Zuylen, Sebastian Kohlmeier, Eduard Hovy, Roy Schwartz ### Licensing Information [More Information Needed] ### Citation Information @inproceedings{kang18naacl, title = {A Dataset of Peer Reviews (PeerRead): Collection, Insights and NLP Applications}, author = {Dongyeop Kang and Waleed Ammar and Bhavana Dalvi and Madeleine van Zuylen and Sebastian Kohlmeier and Eduard Hovy and Roy Schwartz}, booktitle = {Meeting of the North American Chapter of the Association for Computational Linguistics (NAACL)}, address = {New Orleans, USA}, month = {June}, url = {https://arxiv.org/abs/1804.09635}, year = {2018} } ### Contributions Thanks to [@vinaykudari](https://github.com/vinaykudari) for adding this dataset.
[ -0.6042142510414124, -0.3977525532245636, 0.40267622470855713, 0.2421889454126358, -0.2560577988624573, -0.01572578400373459, -0.17745254933834076, -0.3344120979309082, 0.52677983045578, 0.436844140291214, -0.6119811534881592, -0.7978463172912598, -0.6610428690910339, 0.5154981017112732, -0.21318453550338745, 1.2333111763000488, -0.09174076467752457, -0.11134520918130875, -0.04098039120435715, -0.21847034990787506, 0.09085919708013535, -0.25957736372947693, -0.2897525429725647, -0.24023845791816711, 0.38692089915275574, 0.4474636912345886, 0.6999178528785706, 0.6316453218460083, 0.6492170095443726, 0.2705467641353607, -0.3304038643836975, 0.04278025031089783, -0.3273920714855194, -0.13964416086673737, -0.22412116825580597, -0.32929372787475586, -0.7420280575752258, 0.15288768708705902, 0.7748967409133911, 0.7102540135383606, 0.026239663362503052, 0.5327687859535217, 0.3389708399772644, 1.0671025514602661, -0.5019870400428772, 0.4203363060951233, -0.1256353110074997, 0.07597482204437256, -0.4596245586872101, 0.07062744349241257, -0.11712794750928879, -0.5821163058280945, -0.0028966479003429413, -0.684181809425354, 0.2591466009616852, 0.18144899606704712, 1.038399338722229, -0.051122814416885376, -0.1528467983007431, -0.2211589515209198, -0.4523903429508209, 0.7364745140075684, -0.7748563885688782, 0.30118852853775024, 0.6000310182571411, 0.00663139671087265, -0.006459523923695087, -0.9181980490684509, -0.9041851162910461, 0.21465946733951569, -0.35905125737190247, 0.3868066072463989, -0.15789633989334106, -0.16616420447826385, 0.3880327343940735, 0.7096514105796814, -0.49511292576789856, -0.453294575214386, -0.5341076254844666, -0.12070607393980026, 0.8830338716506958, 0.26622307300567627, 0.05091226473450661, -0.758708119392395, -0.08806850016117096, -0.2700287103652954, -0.3017916977405548, 0.3522443175315857, 0.5301834940910339, 0.20186664164066315, -0.42432543635368347, 0.6093060970306396, -0.28559091687202454, 0.4389229416847229, 0.16409409046173096, -0.045541033148765564, 0.7783774137496948, -0.9444946050643921, -0.05097329616546631, -0.10719939321279526, 1.250096321105957, 0.5529927611351013, -0.13190393149852753, 0.26428601145744324, -0.031622160226106644, -0.29129934310913086, 0.018340161070227623, -0.7664251327514648, -0.3472278416156769, 0.5839287638664246, -0.9022004008293152, -0.5691854357719421, 0.3372945785522461, -1.1969653367996216, -0.24504166841506958, 0.004209364764392376, 0.11887457966804504, 0.1226484626531601, -0.37114137411117554, 0.08930850774049759, -0.057396065443754196, 0.1654912531375885, 0.30409467220306396, -0.6400178670883179, 0.5830617547035217, 0.46094226837158203, 1.0864663124084473, -0.17824791371822357, -0.4419412314891815, -0.15718187391757965, 0.06804746389389038, -0.20491324365139008, 0.7247112989425659, -0.43295618891716003, -0.6016705632209778, -0.03882155567407608, 0.5095956921577454, 0.14226028323173523, -0.1498267650604248, 1.069912075996399, -0.040673598647117615, 0.5266185402870178, -0.6062337756156921, -0.12931916117668152, -0.1618873029947281, 0.43881428241729736, -0.7925306558609009, 1.2843527793884277, 0.2691665291786194, -1.1437146663665771, 0.39416614174842834, -0.6968544721603394, -0.3148391544818878, -0.044367652386426926, 0.02243989147245884, -0.74397873878479, -0.37932589650154114, 0.5058222413063049, 0.46266329288482666, -0.5870687961578369, 0.2819908559322357, -0.36791160702705383, -0.13506607711315155, -0.06838500499725342, -0.055087488144636154, 1.2302294969558716, 0.2607003152370453, -0.31734856963157654, 0.19727589190006256, -0.7511634826660156, -0.0775023028254509, 0.31316787004470825, -0.2730298340320587, -0.048027023673057556, -0.03816821053624153, 0.23413404822349548, 0.13004115223884583, 0.09895268827676773, -0.6980441212654114, 0.26076802611351013, -0.33408549427986145, 0.5612649917602539, 0.5824897885322571, 0.42385783791542053, 0.41578876972198486, -0.682263195514679, 0.45856794714927673, -0.07728945463895798, 0.5387645959854126, -0.07933546602725983, -0.7543867230415344, -0.632725179195404, 0.0489669069647789, 0.3553280532360077, 0.523358941078186, -0.4585210084915161, 0.7254524230957031, -0.34456944465637207, -0.8289684653282166, -0.6444857716560364, 0.12473750114440918, 0.3810749351978302, 0.5622008442878723, 0.35377269983291626, -0.4347606599330902, -0.4194268584251404, -0.6546515226364136, -0.06815285980701447, -0.42940467596054077, 0.23274818062782288, 0.7683822512626648, 0.7510151267051697, -0.24436818063259125, 0.7700345516204834, -0.7128159999847412, -0.6494559645652771, -0.2735554575920105, -0.18009112775325775, 0.5364041924476624, 0.485322505235672, 0.4472649097442627, -0.783056914806366, -0.6836804151535034, -0.3001658320426941, -0.7133023738861084, -0.1510964334011078, -0.023737162351608276, -0.14374303817749023, 0.12696103751659393, 0.4339863061904907, -0.4075273275375366, 0.16460402309894562, 0.5375879406929016, -0.5157271027565002, 0.6895851492881775, -0.08553372323513031, 0.4526126980781555, -1.2155681848526, 0.20833346247673035, 0.0019424754427745938, 0.10271887481212616, -0.42795106768608093, -0.09642991423606873, -0.009901204146444798, -0.17541247606277466, -0.42185553908348083, 0.6842140555381775, -0.5018571019172668, 0.27501100301742554, 0.19549505412578583, 0.0795833095908165, 0.16158661246299744, 0.5658483505249023, 0.13263611495494843, 0.7346328496932983, 0.6471912264823914, -0.35394227504730225, 0.052743587642908096, 0.6980251669883728, -0.44069987535476685, 0.47529566287994385, -0.8611424565315247, -0.019360993057489395, -0.03593919798731804, 0.5837891697883606, -0.990288496017456, -0.23533689975738525, 0.728632926940918, -0.6552245616912842, 0.06878498941659927, -0.2998943030834198, -0.6223573684692383, -0.49538084864616394, -0.6813719272613525, 0.30786147713661194, 0.1694643497467041, -0.2621447443962097, 0.5812667012214661, 0.6344846487045288, -0.3306131660938263, -0.5075350999832153, -0.661124050617218, -0.031770601868629456, 0.15071254968643188, -0.5944849252700806, 0.47929513454437256, -0.24124479293823242, -0.13352318108081818, 0.24111562967300415, 0.13508780300617218, 0.12531180679798126, -0.224647656083107, 0.38964128494262695, 0.0009004292078316212, 0.05128256976604462, -0.07878639549016953, 0.03816434368491173, -0.16030193865299225, 0.03393365442752838, -0.10793105512857437, 0.43270355463027954, -0.4501623809337616, -0.1592344045639038, -0.3304344117641449, 0.21013419330120087, 0.40661221742630005, -0.335990846157074, 0.586348831653595, 0.7531728148460388, -0.32367610931396484, 0.01708345301449299, -0.3624165952205658, -0.1427595615386963, -0.4225645661354065, 0.24475400149822235, -0.15237098932266235, -0.7049595713615417, 0.755195677280426, 0.19406478106975555, 0.1179448664188385, 0.8874143362045288, 0.5448709726333618, -0.10133124142885208, 0.7737155556678772, 0.3268485963344574, -0.25210320949554443, 0.5172956585884094, -0.6266151666641235, -0.029235556721687317, -1.0527570247650146, -0.4134353697299957, -0.8666161894798279, -0.320292204618454, -0.7597788572311401, -0.49596965312957764, 0.2171730399131775, 0.03839592635631561, -0.35129326581954956, 0.2836737632751465, -0.9062901139259338, 0.3669072687625885, 0.6121905446052551, 0.06117430329322815, 0.3500652015209198, -0.2110498547554016, -0.1759302169084549, 0.032275959849357605, -0.594906210899353, -0.5192204713821411, 1.3957815170288086, 0.3392038345336914, 0.4975927174091339, 0.02490808442234993, 0.8248538970947266, 0.31338661909103394, 0.01183351967483759, -0.5240890383720398, 0.5916608572006226, -0.06721526384353638, -0.8168939352035522, -0.3366613984107971, -0.30686137080192566, -0.9401472210884094, 0.14503130316734314, -0.5107001662254333, -0.616435170173645, 0.7391856908798218, -0.07893925905227661, -0.24367432296276093, 0.40867021679878235, -0.3887620270252228, 0.8267858028411865, -0.0939909964799881, -0.49849793314933777, -0.02700251154601574, -0.8375381231307983, 0.28870654106140137, 0.07263729721307755, 0.4423307776451111, -0.10401000827550888, -0.09715229272842407, 1.052150011062622, -0.5347735285758972, 0.6515966057777405, -0.24268274009227753, 0.28120020031929016, 0.46671149134635925, 0.021066512912511826, 0.6299978494644165, 0.5109575390815735, -0.17823249101638794, 0.6439223289489746, 0.2854733169078827, -0.26950106024742126, -0.26481038331985474, 0.7827993035316467, -0.9091363549232483, -0.43183034658432007, -0.9659616351127625, -0.265336275100708, 0.02451840601861477, 0.581972062587738, 0.3071553409099579, 0.2611284852027893, 0.046066831797361374, 0.40180525183677673, 0.5604408979415894, -0.20358189940452576, 0.3143766522407532, 0.3905900716781616, -0.23820097744464874, -0.9929208755493164, 0.7381662726402283, 0.19022272527217865, -0.0216226689517498, 0.26669007539749146, 0.2813567817211151, -0.26427507400512695, -0.649650514125824, -0.4593521058559418, 0.40998873114585876, -0.5026129484176636, -0.10791243612766266, -0.9213382601737976, -0.1740354299545288, -0.5219212174415588, -0.06316497921943665, -0.2309376746416092, -0.39459872245788574, -0.3063262104988098, -0.10615583509206772, 0.4032962918281555, 0.5542832016944885, -0.25146621465682983, 0.13278281688690186, -0.8594958186149597, 0.2764852046966553, -0.12847983837127686, 0.5535064935684204, 0.1201719269156456, -0.3489571213722229, -0.23693308234214783, -0.22248385846614838, -0.38829749822616577, -0.8780702948570251, 0.3550778925418854, 0.308478444814682, 0.5501957535743713, 0.14797177910804749, 0.3334357738494873, 0.43567192554473877, -0.24806638062000275, 1.176584005355835, 0.00281936745159328, -0.6837271451950073, 0.6709420680999756, -0.672762393951416, 0.4784826636314392, 1.0522408485412598, 0.5613697171211243, -0.5739552974700928, -0.35877856612205505, -0.8580875396728516, -1.0815834999084473, 0.8244263529777527, 0.3179960250854492, 0.09771904349327087, 0.0523679181933403, 0.29429763555526733, 0.012361557222902775, 0.31443384289741516, -0.9693299531936646, -0.6599541902542114, -0.3123658001422882, -0.10183492302894592, -0.16818007826805115, -0.28759267926216125, -0.28796595335006714, -0.5366734862327576, 0.910599410533905, -0.06066645681858063, 0.4069274365901947, 0.5984758138656616, 0.09452412277460098, -0.28432315587997437, 0.2670615315437317, 0.421058714389801, 0.5547676086425781, -0.4982999265193939, -0.07434537261724472, -0.1498529016971588, -0.9220023155212402, -0.12929534912109375, 0.24359463155269623, -0.46151790022850037, 0.0013665608130395412, 0.46830272674560547, 0.49676889181137085, 0.017489250749349594, -0.2536318898200989, 0.6756604313850403, -0.12961186468601227, -0.6002870798110962, -0.41293850541114807, -0.19611628353595734, -0.12871479988098145, 0.1940777599811554, 0.45774465799331665, 0.20275956392288208, 0.26483747363090515, -0.5681567788124084, 0.24962706863880157, 0.09607907384634018, -0.5362553000450134, -0.24065884947776794, 0.6819925904273987, 0.18632154166698456, -0.15098288655281067, 0.4313725531101227, -0.3217869699001312, -0.4446113109588623, 0.4197710156440735, 0.14914439618587494, 0.9901131391525269, 0.2386346310377121, 0.3389311134815216, 0.8979341387748718, 0.6354798078536987, -0.14637309312820435, 0.4697668254375458, -0.21188117563724518, -0.6162431836128235, -0.019742310047149658, -0.8488012552261353, -0.38800787925720215, 0.0861743614077568, -0.6062525510787964, 0.2578294575214386, -0.6858941912651062, -0.27881357073783875, -0.05056128278374672, 0.5704014897346497, -0.5146981477737427, 0.0714694932103157, -0.34766414761543274, 0.9856910109519958, -1.0103408098220825, 0.598939061164856, 0.6277506947517395, -0.8288924694061279, -0.8551562428474426, 0.05988357588648796, 0.1950906664133072, -0.2715179920196533, 0.27272453904151917, -0.18535016477108002, 0.28523701429367065, -0.11765363067388535, -0.484448105096817, -0.8363553881645203, 1.187893033027649, -0.06986257433891296, -0.4377230405807495, 0.2712674140930176, -0.15141956508159637, 0.5856847167015076, -0.3112073838710785, 0.4320406913757324, 0.4169911742210388, 0.6959341764450073, -0.036553461104631424, -0.8713970184326172, 0.24843481183052063, -0.7638980150222778, -0.270709365606308, 0.10378234833478928, -0.9532582759857178, 0.9280258417129517, -0.07094962149858475, -0.008048714138567448, -0.20912952721118927, 0.5278705954551697, 0.4063045382499695, 0.46251240372657776, 0.3856634795665741, 0.6813717484474182, 0.6679213047027588, -0.21678107976913452, 1.2258538007736206, -0.3893815279006958, 0.47798725962638855, 1.065444827079773, -0.058044470846652985, 0.8515914082527161, 0.24376726150512695, -0.5557892918586731, 0.6070020794868469, 0.8435923457145691, -0.3882675766944885, 0.5943083763122559, -0.1729467362165451, 0.11523623019456863, 0.03131804242730141, -0.18391552567481995, -0.6406816244125366, 0.09031453728675842, 0.159512460231781, -0.6164413094520569, 0.008120263926684856, -0.17693157494068146, 0.051817137748003006, 0.13974671065807343, -0.41965851187705994, 0.8390493988990784, 0.10510655492544174, -0.450842022895813, 0.45560190081596375, -0.10672502219676971, 0.6627881526947021, -0.5917069911956787, 0.009942089207470417, -0.022230949252843857, 0.028612790629267693, -0.6661965250968933, -1.1946340799331665, 0.263559490442276, -0.0685029849410057, -0.6470021605491638, -0.3099585175514221, 0.5639862418174744, -0.1689256876707077, -0.7853390574455261, 0.1117536872625351, 0.32472267746925354, 0.28081783652305603, 0.27251067757606506, -1.0291194915771484, 0.21066203713417053, 0.09775472432374954, -0.5197303295135498, 0.20260176062583923, 0.33791694045066833, -0.10503987967967987, 0.44417116045951843, 0.7895384430885315, 0.4507570266723633, -0.24190226197242737, 0.01194318663328886, 0.8550373315811157, -0.566954493522644, -0.6264548897743225, -0.517045259475708, 0.39803260564804077, -0.23180906474590302, -0.6505352854728699, 0.8842326402664185, 0.8872922658920288, 0.9527654647827148, 0.020577145740389824, 0.9561359286308289, -0.4364728331565857, 0.7125281095504761, -0.21358387172222137, 0.9959026575088501, -0.6503204703330994, 0.03091157041490078, -0.7605277895927429, -1.1072314977645874, -0.3716784417629242, 0.6392219066619873, -0.45726436376571655, 0.1779886782169342, 0.7734942436218262, 0.7662701606750488, 0.14557039737701416, 0.19405657052993774, -0.15163055062294006, 0.30993154644966125, 0.224864661693573, 0.21802812814712524, 0.317547470331192, -0.6937192678451538, 0.5773949027061462, -0.5328999161720276, -0.18915586173534393, -0.07089246064424515, -0.9815659523010254, -0.6830172538757324, -1.0238770246505737, -0.4108334481716156, -0.6897588968276978, -0.13230854272842407, 0.8737295866012573, 0.5022692084312439, -1.0269240140914917, -0.2566588521003723, -0.024734659120440483, 0.12778832018375397, -0.34315595030784607, -0.2713993191719055, 0.7911702394485474, 0.08162137120962143, -0.6572125554084778, -0.11332570761442184, 0.10080050677061081, -0.19977904856204987, -0.1874060481786728, -0.4023256003856659, -0.3766763210296631, -0.11874951422214508, 0.3197984993457794, 0.38658541440963745, -0.6401175856590271, 0.09949835389852524, -0.03880208730697632, -0.026139000430703163, 0.10164948552846909, 0.4779430329799652, -0.455779492855072, 0.6159874200820923, 0.903899610042572, 0.2691849172115326, 0.7566063404083252, 0.005290609784424305, 0.1591210514307022, -0.2974594533443451, -0.044155046343803406, 0.284454345703125, 0.41946104168891907, 0.2589263319969177, -0.5012790560722351, 0.8809970021247864, 0.3987155258655548, -0.7747234106063843, -1.0243061780929565, -0.23352845013141632, -1.4102513790130615, -0.09752793610095978, 1.2287260293960571, -0.030565829947590828, -0.32815879583358765, -0.12370625883340836, -0.39331382513046265, 0.06930868327617645, -0.7654936909675598, 0.5951289534568787, 0.9176363945007324, 0.0032938311342149973, -0.3070580065250397, -0.5196877121925354, 0.6692861318588257, -0.03716554865241051, -0.8830757141113281, 0.11027577519416809, 0.27207088470458984, 0.17814014852046967, 0.3131752610206604, 1.0048867464065552, -0.5181490778923035, 0.2777813673019409, -0.03258833661675453, 0.0912223607301712, -0.25491517782211304, -0.1806163638830185, -0.40570417046546936, 0.1003556028008461, -0.006933814845979214, 0.09990888088941574 ]
null
null
null
null
null
null
null
null
null
null
null
null
null
Fraser/short-jokes
Fraser
2021-02-24T08:31:31Z
459
5
null
[ "region:us" ]
2021-02-24T08:31:31Z
2022-03-02T23:29:22.000Z
2022-03-02T23:29:22
Copy of [Kaggle dataset](https://www.kaggle.com/abhinavmoudgil95/short-jokes), adding to Huggingface for ease of use. Description from Kaggle: Context Generating humor is a complex task in the domain of machine learning, and it requires the models to understand the deep semantic meaning of a joke in order to generate new ones. Such problems, however, are difficult to solve due to a number of reasons, one of which is the lack of a database that gives an elaborate list of jokes. Thus, a large corpus of over 0.2 million jokes has been collected by scraping several websites containing funny and short jokes. Visit my Github repository for more information regarding collection of data and the scripts used. Content This dataset is in the form of a csv file containing 231,657 jokes. Length of jokes ranges from 10 to 200 characters. Each line in the file contains a unique ID and joke. Disclaimer It has been attempted to keep the jokes as clean as possible. Since the data has been collected by scraping websites, it is possible that there may be a few jokes that are inappropriate or offensive to some people.
[ -0.3556652069091797, -0.9576656222343445, 0.4054318368434906, 0.7030568718910217, -0.6516573429107666, -0.33929112553596497, -0.296177476644516, -0.453147292137146, 0.5323734879493713, 0.5544389486312866, -0.6840094923973083, -0.36704930663108826, -0.4959435760974884, 0.38562318682670593, -0.47220128774642944, 1.4848945140838623, 0.47224628925323486, -0.20741914212703705, -0.44241955876350403, -0.1712999939918518, -0.41931799054145813, -0.1058584600687027, -0.30085238814353943, -0.09240186959505081, 0.6833089590072632, 0.9263551831245422, 0.8315308690071106, 0.24140751361846924, 0.3982129693031311, 0.24899089336395264, 0.07733110338449478, -0.06566939502954483, -0.6688873767852783, -0.1015414297580719, -0.3077389597892761, -0.39675140380859375, -0.2703140079975128, 0.025537896901369095, 0.4962086081504822, 0.8056041598320007, -0.16846813261508942, 0.2549065053462982, 0.030187644064426422, 0.7033735513687134, -0.3406427800655365, 0.03925181180238724, -0.3484293222427368, -0.06125139445066452, -0.1550239473581314, -0.014509041793644428, -0.279899924993515, -0.5965474247932434, 0.23399168252944946, -0.6873917579650879, 0.009138988330960274, 0.000298673112411052, 0.9514159560203552, -0.09681887924671173, -0.514775812625885, -0.6576399803161621, -0.25027287006378174, 0.7528674006462097, -0.635570764541626, -0.166655495762825, 0.44447240233421326, 0.6044819951057434, -0.5166662931442261, -0.49125149846076965, -0.7862424254417419, -0.1383943408727646, -0.2850697338581085, -0.34491077065467834, -0.29030337929725647, -0.6681866645812988, 0.2615269720554352, 0.40410616993904114, -0.6058109402656555, -0.3646714985370636, -0.7282534241676331, -0.22978945076465607, 0.8719774484634399, 0.19219481945037842, 0.37996411323547363, -0.6642594933509827, -0.3010864853858948, -0.35617712140083313, -0.334401935338974, 0.0642886832356453, 0.876512348651886, 0.39906322956085205, -0.47392478585243225, 0.6163734793663025, -0.4244076907634735, 0.3931014835834503, 0.037114519625902176, -0.37391093373298645, 0.6340415477752686, -0.13744720816612244, -0.21927449107170105, -0.06342075765132904, 0.8532909154891968, 0.5990867614746094, 0.48509591817855835, -0.10586174577474594, 0.15778322517871857, 0.037664204835891724, 0.11472885310649872, -0.505011796951294, -0.6700922846794128, 0.08709479868412018, -0.5996280312538147, -0.7624367475509644, -0.09876963496208191, -1.0241007804870605, -0.39043712615966797, -0.22732777893543243, 0.22668254375457764, -0.5805519819259644, 0.02322983741760254, 0.20221933722496033, -0.5192538499832153, 0.22713062167167664, 0.37214452028274536, -0.262090265750885, 0.15010689198970795, 0.5501200556755066, 0.6579540371894836, 0.17983224987983704, -0.0653475672006607, -0.6379241943359375, -0.07361601293087006, -0.02839720994234085, 0.8638865351676941, -0.5809975862503052, -0.2598308324813843, -0.29898059368133545, 0.7037106156349182, 0.2392861247062683, -0.4706328213214874, 0.6544898748397827, -0.3464491367340088, 0.26906684041023254, -0.3833114802837372, -0.4420289397239685, -0.04990056902170181, 0.09782414138317108, -0.7317690849304199, 0.7915655970573425, 0.3474227488040924, -0.831084132194519, 0.43128424882888794, -0.60393887758255, -0.8326439261436462, 0.2008829265832901, 0.10180765390396118, -0.506829559803009, -0.09333691000938416, 0.07849997282028198, 0.4273853302001953, -0.0322999432682991, -0.10303586721420288, -0.5742385983467102, -0.1877361387014389, 0.32052648067474365, 0.26480191946029663, 1.0307775735855103, 0.5751201510429382, -0.293265163898468, -0.32167765498161316, -0.832746684551239, -0.0035428155679255724, 0.6877827644348145, -0.37948209047317505, -0.41492959856987, -0.33131635189056396, 0.049688879400491714, 0.36543387174606323, 0.02168876864016056, -0.6879421472549438, 0.32004016637802124, -0.23391634225845337, 0.2362016886472702, 0.5389862060546875, 0.10550977289676666, 0.18318335711956024, -0.46360552310943604, 0.8114162683486938, 0.27935218811035156, 0.19106155633926392, 0.07635670155286789, -0.7829157710075378, -0.4800364673137665, -0.04773101583123207, 0.19354158639907837, 0.6533119678497314, -0.8300216794013977, 0.3135269582271576, -0.26957038044929504, -0.6934238076210022, -0.5566398501396179, 0.43915867805480957, 0.3384494483470917, 0.3052951395511627, 0.28906363248825073, -0.4027159512042999, -0.038048021495342255, -0.9896978735923767, -0.5247318148612976, 0.30591699481010437, -0.2246895581483841, 0.6397963762283325, 0.6382949352264404, -0.016047706827521324, 0.8671894669532776, -0.610410749912262, -0.2608409821987152, -0.09271818399429321, -0.031003139913082123, 0.4108594059944153, 0.4993169605731964, 1.1476489305496216, -0.7646932005882263, -0.6580346822738647, -0.168538436293602, -0.7859035134315491, -0.12819400429725647, 0.0008838215144351125, -0.4183960556983948, -0.057406701147556305, 0.07175582647323608, -0.8778958320617676, 0.4270770847797394, 0.37205639481544495, -0.44085776805877686, 0.834103524684906, 0.059155769646167755, 0.24031078815460205, -0.936342179775238, 0.1598241627216339, 0.08022429794073105, -0.313071072101593, -0.1960224062204361, 0.04719802737236023, -0.14718806743621826, -0.27137887477874756, -0.5269325971603394, 0.4932205379009247, -0.34671667218208313, 0.011605306528508663, -0.20257079601287842, 0.47904103994369507, 0.08497508615255356, 0.3040526509284973, -0.584537923336029, 0.3037366569042206, 0.5763686299324036, -0.7243087887763977, 0.7577032446861267, 0.5960026979446411, -0.36802414059638977, 0.7862192988395691, -0.4877776503562927, 0.28925779461860657, -0.17025651037693024, 0.4256541132926941, -0.5096849203109741, -0.882712721824646, 0.4933018088340759, -0.5957056879997253, 0.018250847235322, -0.2722959816455841, -0.8758888244628906, -0.39064595103263855, -0.3749610483646393, 0.38345572352409363, 0.865962564945221, -0.6280086636543274, -0.05634020268917084, 0.6343689560890198, -0.2770566940307617, -0.532569169998169, -0.7086568474769592, 0.16384685039520264, -0.6715534925460815, -0.8571091890335083, -0.08353972434997559, 0.024059733375906944, -0.17617754638195038, 0.3619457185268402, 0.36101850867271423, 0.20928746461868286, -0.21123425662517548, -0.033954113721847534, -0.3714735805988312, -0.11467449367046356, 0.1344238966703415, 0.0701431930065155, 0.1272428035736084, 0.11136270314455032, 0.13641950488090515, 0.25876718759536743, -0.2863798439502716, -0.18420061469078064, -0.3601914942264557, 0.4909321963787079, 0.11932899802923203, 0.4446716904640198, 0.6360749006271362, 0.7760282754898071, -0.23045609891414642, -0.40438345074653625, -0.16441147029399872, -0.1618911623954773, -0.5190382599830627, -0.20126935839653015, -0.24060748517513275, -0.6856521964073181, 0.5952931046485901, -0.09087180346250534, -0.3644118905067444, 0.6550787091255188, 0.26353707909584045, -0.17921586334705353, 0.7957700490951538, 0.47833818197250366, -0.20965476334095, 0.08053509891033173, 0.08181201666593552, 0.2940012514591217, -0.2622355818748474, -0.2601749897003174, -0.3700590431690216, -0.46165159344673157, -0.7285676002502441, -0.26186665892601013, 0.08252216130495071, 0.20298261940479279, 0.20575878024101257, 0.6069910526275635, -0.5113832950592041, 0.5987707376480103, 0.6403430700302124, 0.3135269284248352, 0.10056912153959274, 0.21262341737747192, -0.03375520929694176, 0.3568418323993683, -0.5033068060874939, -0.5557922124862671, 0.833251416683197, 0.11424710601568222, 0.9076487421989441, 0.2967793345451355, 0.49682584404945374, 0.6024264693260193, -0.1656160056591034, -0.6708313822746277, 0.6584680080413818, -0.2888428568840027, -0.5622420907020569, -0.16406472027301788, -0.7278517484664917, -1.1468781232833862, -0.5507991909980774, -0.1670052856206894, -0.9415262341499329, -0.24106675386428833, 0.3131135404109955, -0.0830593928694725, 0.2005486935377121, -0.7553409337997437, 0.6888927221298218, 0.21189957857131958, -0.28570830821990967, -0.23849834501743317, -1.1686817407608032, 0.5889484882354736, 0.06923161447048187, 0.2657683193683624, -0.40399593114852905, 0.6589351296424866, 0.8488758206367493, -0.7136424779891968, 0.8442122936248779, -0.34444624185562134, 0.12345442920923233, 0.8710299134254456, 0.07021145522594452, 0.22362810373306274, 0.008693712763488293, 0.0018102930625900626, -0.10876736789941788, 0.17027977108955383, -0.8962289690971375, -0.3800846338272095, 0.846038281917572, -0.5062605142593384, -0.43153882026672363, -0.09081676602363586, -0.4939120411872864, 0.07186970859766006, 0.09358478337526321, 0.1358911544084549, 0.27953872084617615, -0.047911934554576874, 0.6489672660827637, 0.24307093024253845, -0.5133893489837646, 0.08827858418226242, -0.45216017961502075, -0.07041943818330765, -0.15046919882297516, 0.7938666939735413, -0.34787070751190186, 0.12029734253883362, -0.1363770216703415, 0.5234963297843933, -0.036842700093984604, 0.2847033441066742, -0.31268271803855896, 0.43098184466362, -1.0642611980438232, -0.3239554166793823, -0.6822699904441833, -0.1153859943151474, -0.5608007311820984, -0.4332212507724762, 0.012345518916845322, -0.6572402715682983, -0.12629717588424683, 0.10130475461483002, 1.181413173675537, 0.8510147333145142, -0.3450135886669159, 0.5653965473175049, -1.0114706754684448, 0.4202570617198944, 0.28610703349113464, 0.43085992336273193, 0.014191573485732079, -0.29109248518943787, -0.19599659740924835, 0.049093883484601974, -0.38528361916542053, -0.9177919626235962, 0.41081660985946655, 0.40375611186027527, 0.44138577580451965, 0.38712427020072937, 0.22539691627025604, 0.5175222754478455, -0.23214282095432281, 0.897386372089386, 0.2189723700284958, -0.5086532235145569, 0.8152424693107605, -0.6625019311904907, 0.29793208837509155, 0.4347178637981415, 0.5768724679946899, -0.3158207833766937, -0.40271198749542236, -0.9888023734092712, -0.6066697239875793, 0.6890851855278015, 0.5223846435546875, 0.4192652404308319, -0.31460484862327576, 0.5139819979667664, 0.5205380916595459, 0.14467504620552063, -0.4532735347747803, -0.23927174508571625, -0.21874305605888367, -0.3849770426750183, 0.1302693635225296, -0.03804955258965492, -0.32396575808525085, -0.28559568524360657, 0.8074871301651001, -0.3172703981399536, 0.31641265749931335, -0.10131148248910904, -0.2920425832271576, -0.17909766733646393, 0.13233676552772522, 0.6900686621665955, 0.524411141872406, -0.2763722240924835, -0.14408157765865326, 0.14893759787082672, -0.6776235103607178, -0.33259931206703186, -0.07279714941978455, 0.19825899600982666, 0.1799476593732834, 0.04698418080806732, 0.6951766610145569, -0.00624452019110322, -0.7927946448326111, 0.8010151386260986, -0.05506933853030205, -0.19997872412204742, -0.39464446902275085, 0.11575549095869064, 0.2752172350883484, 0.29918238520622253, 0.13700968027114868, -0.02457464300096035, 0.3285706341266632, -0.718158483505249, 0.6833697557449341, 0.17976827919483185, -0.13077710568904877, -0.4240453243255615, 0.48629865050315857, 0.13212355971336365, -0.17437709867954254, 0.9616097807884216, -0.4381796717643738, -0.5165896415710449, 0.8645750284194946, 0.47242480516433716, 0.5352115631103516, 0.20392033457756042, 0.3272857069969177, 0.5439386963844299, -0.10012833029031754, 0.3559685945510864, 0.42702367901802063, 0.06319628655910492, -0.35954922437667847, -0.023495690897107124, -0.7505843639373779, -0.35836002230644226, 0.38845640420913696, -0.7246614098548889, 0.8493896126747131, -0.3411227762699127, -0.11625522375106812, 0.05698786675930023, -0.029704269021749496, -0.9218213558197021, 0.47405606508255005, 0.037481408566236496, 0.8684317469596863, -1.021920919418335, 0.4889654815196991, 0.48014670610427856, -0.2217542827129364, -0.48693904280662537, -0.12264504283666611, 0.16729386150836945, -0.8632956147193909, 0.19973821938037872, 0.3502825200557709, 0.09368721395730972, -0.48287808895111084, -0.8778150081634521, -0.3748239576816559, 0.7806759476661682, 0.24109062552452087, -0.3167538046836853, -0.09330455958843231, 0.11279565095901489, 0.40858206152915955, -0.6110624670982361, -0.3273658752441406, 0.6981699466705322, 0.43384769558906555, 0.16940838098526, -0.969791054725647, 0.32126593589782715, -0.5388420820236206, -0.5738388299942017, 0.1372455507516861, -0.6221680045127869, 0.6327645182609558, -0.44908997416496277, 0.029019977897405624, 0.1368875652551651, 0.40602266788482666, 0.7601513266563416, 0.7194880843162537, 0.8059197664260864, 0.638874888420105, 0.43916523456573486, 0.0645417720079422, 1.181067705154419, -0.0826597660779953, 0.5759618282318115, 1.1844854354858398, -0.010762505233287811, 0.40147724747657776, 0.5000273585319519, -0.08401089161634445, 0.7526374459266663, 0.7711973786354065, -0.45627361536026, 0.6266388893127441, 0.3650440573692322, -0.005754598882049322, -0.27389442920684814, 0.06194029375910759, -0.4236372113227844, 0.47155341506004333, 0.38481849431991577, -0.39838907122612, -0.4415045380592346, 0.1632646918296814, 0.5840116143226624, -0.1724715381860733, -0.05189192667603493, 0.6528651118278503, 0.46074455976486206, -0.3950687050819397, 0.08892282843589783, -0.370743066072464, 0.43797141313552856, -0.3132232427597046, -0.24986790120601654, -0.013732909224927425, 0.0761864110827446, -0.3311693072319031, -1.114963412284851, 0.37138327956199646, 0.06795581430196762, 0.0896553173661232, 0.22175170481204987, 1.1100599765777588, -0.3334023952484131, -0.5603048205375671, 0.2199307084083557, 0.4596632122993469, 0.847793698310852, 0.2628225088119507, -0.8020787835121155, -0.28564122319221497, -0.1588653326034546, -0.518743097782135, 0.4038156569004059, 0.9071389436721802, -0.06746736913919449, 0.6166864037513733, 0.7116486430168152, -0.1561419516801834, 0.08349589258432388, -0.04071395471692085, 1.0726357698440552, -0.7878687977790833, -0.8134647607803345, -0.48331716656684875, 0.5567734837532043, -0.4458659291267395, -0.42923033237457275, 0.7504096627235413, 0.3985363245010376, 0.7366726994514465, -0.49552643299102783, 0.8182274699211121, -0.44906991720199585, 0.5230290293693542, -0.39184245467185974, 0.9543195962905884, -0.9467303156852722, -0.31981709599494934, -0.5654353499412537, -0.7370819449424744, -0.14035184681415558, 0.4919435381889343, -0.12137501686811447, 0.26123714447021484, 0.4793471395969391, 0.4633435904979706, -0.40672388672828674, 0.05339862406253815, 0.05562235787510872, -0.020545093342661858, 0.09962818771600723, 0.4455118775367737, 0.5318962931632996, -0.439079225063324, 0.8130660057067871, -0.8231443762779236, -0.047652069479227066, -0.702497661113739, -1.1899943351745605, -0.8196103572845459, -0.5520700216293335, -0.6641732454299927, -0.6283203959465027, -0.27583879232406616, 0.6626912951469421, 0.774581253528595, -0.6818328499794006, 0.18774358928203583, 0.28230947256088257, 0.0055685387924313545, 0.16501106321811676, -0.44114887714385986, 0.4098861515522003, -0.1546652466058731, -0.4298858046531677, 0.2704317569732666, -0.3026513159275055, -0.12602078914642334, 0.2307184338569641, -0.055323563516139984, -0.3184601664543152, 0.3527030050754547, 0.6146184206008911, 0.46197018027305603, -0.399319589138031, -0.8027357459068298, -0.1605750322341919, 0.05405889078974724, 0.02791605517268181, 0.4764253497123718, -0.6097705960273743, 0.2529246211051941, 0.6010785102844238, 0.3410987854003906, 0.34964144229888916, 0.2440653294324875, 0.27201592922210693, -1.1143614053726196, 0.20758278667926788, 0.04297339543700218, 0.3763594925403595, 0.5822538733482361, -0.8518138527870178, 0.47965216636657715, 0.4562898278236389, -0.5227694511413574, -0.8563963174819946, 0.17961369454860687, -1.4203985929489136, -0.2152053713798523, 1.1156278848648071, -0.3092826008796692, -0.5743387341499329, 0.1440543830394745, -0.04852624982595444, 0.3079083263874054, -0.49221333861351013, 0.7556805610656738, 0.7661502957344055, -0.40608423948287964, -0.08138056844472885, -0.6809918880462646, 0.6821914911270142, 0.18763168156147003, -0.7383669018745422, -0.2534680664539337, 0.43017253279685974, 0.7997586727142334, 0.2889025807380676, 0.4024682939052582, -0.1971791535615921, 0.5282502174377441, 0.28203895688056946, 0.07567629218101501, 0.3979581892490387, -0.27712568640708923, -0.031458571553230286, 0.2581827938556671, -0.36132413148880005, -0.13557006418704987 ]
null
null
null
null
null
null
null
null
null
null
null
null
null
philschmid/guanaco-oai-style
philschmid
2023-11-08T14:37:18Z
459
0
null
[ "license:apache-2.0", "region:us" ]
2023-11-08T14:37:18Z
2023-11-08T14:31:00.000Z
2023-11-08T14:31:00
--- 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
polemo2
null
2023-01-25T14:42:43Z
458
0
null
[ "task_categories:text-classification", "task_ids:sentiment-classification", "annotations_creators:expert-generated", "language_creators:other", "multilinguality:monolingual", "size_categories:1K<n<10K", "source_datasets:original", "language:pl", "license:bsd-3-clause", "region:us" ]
2023-01-25T14:42:43Z
2022-03-02T23:29:22.000Z
2022-03-02T23:29:22
--- annotations_creators: - expert-generated language_creators: - other language: - pl license: - bsd-3-clause multilinguality: - monolingual size_categories: - 1K<n<10K source_datasets: - original task_categories: - text-classification task_ids: - sentiment-classification pretty_name: polemo2 dataset_info: - config_name: in features: - name: sentence dtype: string - name: target dtype: class_label: names: '0': __label__meta_amb '1': __label__meta_minus_m '2': __label__meta_plus_m '3': __label__meta_zero splits: - name: train num_bytes: 4810215 num_examples: 5783 - name: test num_bytes: 582052 num_examples: 722 - name: validation num_bytes: 593530 num_examples: 723 download_size: 2350339 dataset_size: 5985797 - config_name: out features: - name: sentence dtype: string - name: target dtype: class_label: names: '0': __label__meta_amb '1': __label__meta_minus_m '2': __label__meta_plus_m '3': __label__meta_zero splits: - name: train num_bytes: 4810215 num_examples: 5783 - name: test num_bytes: 309790 num_examples: 494 - name: validation num_bytes: 310977 num_examples: 494 download_size: 2139891 dataset_size: 5430982 --- # 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://clarin-pl.eu/dspace/handle/11321/710 - **Repository:** - **Paper:** - **Leaderboard:** - **Point of Contact:** ### Dataset Summary The PolEmo2.0 is a set of online reviews from medicine and hotels domains. The task is to predict the sentiment of a review. There are two separate test sets, to allow for in-domain (medicine and hotels) as well as out-of-domain (products and university) validation. ### Supported Tasks and Leaderboards [More Information Needed] ### Languages Polish ## Dataset Structure ### Data Instances [More Information Needed] ### Data Fields - sentence: string, the review - target: sentiment of the sentence class The same tag system is used in plWordNet Emo for lexical units: [+m] (strong positive), [+s] (weak positive), [-m] (strong negative), [-s] (weak negative), [amb] (ambiguous) and [0] (neutral). Note that the test set doesn't have targets so -1 is used instead ### 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 Dataset provided for research purposes only. Please check dataset license for additional information. ## Additional Information ### Dataset Curators [More Information Needed] ### Licensing Information CC BY-NC-SA 4.0 ### Citation Information [More Information Needed] ### Contributions Thanks to [@abecadel](https://github.com/abecadel) for adding this dataset.
[ -0.5729498863220215, -0.6276988387107849, 0.2281307578086853, 0.3078421950340271, -0.2982994019985199, 0.06347017735242844, -0.38519108295440674, -0.4381217956542969, 0.6274019479751587, 0.6158549785614014, -0.8897091150283813, -1.0813264846801758, -0.682824969291687, 0.24826878309249878, 0.08653583377599716, 1.2981234788894653, -0.09895889461040497, 0.1363273561000824, -0.29848814010620117, -0.17944985628128052, -0.39113378524780273, -0.5997485518455505, -0.32054635882377625, -0.26303258538246155, 0.44889774918556213, 0.7269005179405212, 0.5130241513252258, 0.5316979289054871, 0.6924101710319519, 0.19019357860088348, -0.0203887727111578, 0.15696704387664795, -0.5772828459739685, -0.10102219134569168, -0.09089307487010956, -0.3425529897212982, -0.8506271243095398, 0.13019979000091553, 0.32973986864089966, 0.6556514501571655, -0.0020796069875359535, 0.596416711807251, 0.15515385568141937, 0.7230342626571655, -0.5213016271591187, 0.7324610352516174, -0.3092624843120575, 0.11513462662696838, -0.25272729992866516, 0.020773302763700485, -0.06808224320411682, -0.5953819751739502, -0.15032455325126648, -0.695358395576477, 0.11819812655448914, 0.07596275210380554, 0.8058369159698486, -0.055096812546253204, -0.17053702473640442, -0.39818742871284485, -0.5019196271896362, 0.7718831300735474, -0.7671294212341309, -0.029512781649827957, 0.8051469326019287, 0.18221011757850647, 0.19780555367469788, -0.6888203620910645, -0.5778452754020691, 0.30274781584739685, -0.17504800856113434, 0.45775219798088074, -0.05211247503757477, -0.14469166100025177, 0.4507621228694916, 0.4509485065937042, -0.45497000217437744, -0.29188114404678345, -0.6678792238235474, -0.22293519973754883, 0.9420672059059143, 0.35228094458580017, 0.04009215906262398, -0.5007899403572083, -0.23763777315616608, -0.14339345693588257, -0.4450928270816803, 0.09784197062253952, 0.3900989592075348, 0.4870898723602295, -0.5265955328941345, 0.8440746665000916, -0.3113207221031189, 0.36518970131874084, -0.09368209540843964, -0.06647910922765732, 0.8882566690444946, -0.6685454845428467, 0.04645765200257301, 0.0652717873454094, 0.8840354681015015, 0.8942403197288513, 0.158805713057518, 0.31308457255363464, -0.1835063397884369, 0.15706172585487366, 0.0015056468546390533, -0.6740441918373108, -0.30303481221199036, 0.556318461894989, -0.5914710164070129, -0.5369430780410767, 0.37041646242141724, -1.1376086473464966, -0.26756736636161804, -0.28323495388031006, 0.2040676474571228, -0.08802298456430435, -0.35514289140701294, -0.05066336691379547, -0.20233088731765747, 0.29880833625793457, 0.05658537894487381, -0.5492247343063354, 0.45282840728759766, 0.5872791409492493, 0.8039674758911133, -0.20953591167926788, -0.1742185801267624, -0.04797019064426422, 0.037422940135002136, -0.15349742770195007, 0.6298162341117859, -0.27852529287338257, -0.6381951570510864, 0.32896891236305237, 0.2824835181236267, 0.09688752144575119, -0.3183659613132477, 0.8935199975967407, -0.2006014585494995, 0.5297374129295349, -0.7270832061767578, -0.5427464246749878, -0.19864420592784882, 0.4532596468925476, -0.7997111678123474, 1.2240169048309326, 0.2735319435596466, -0.9928615689277649, 0.3367207944393158, -0.9831165075302124, -0.4805793762207031, -0.03633730858564377, -0.06493419408798218, -0.6318606734275818, -0.24971722066402435, 0.09865304827690125, 0.48777252435684204, -0.35974323749542236, 0.13706354796886444, -0.45165175199508667, -0.13563811779022217, 0.07625581324100494, 0.10469155758619308, 1.1596258878707886, 0.16978231072425842, -0.27650439739227295, 0.11198287457227707, -0.8716274499893188, -0.04148771986365318, 0.28297358751296997, -0.19093765318393707, -0.1612771451473236, -0.10735800862312317, 0.4370233714580536, 0.416076123714447, 0.4807097017765045, -0.5981713533401489, 0.16834814846515656, -0.28812289237976074, 0.3953039348125458, 0.6281062960624695, 0.2810889780521393, 0.32047879695892334, -0.3578915596008301, 0.6002311110496521, 0.1859816610813141, 0.575890064239502, 0.23748824000358582, -0.8188844323158264, -0.6316514611244202, -0.047347746789455414, 0.21365030109882355, 0.7656273245811462, -0.6262459754943848, 0.9011918306350708, -0.4275878071784973, -0.5316259264945984, -0.4775013327598572, 0.1653607040643692, 0.3750075697898865, 0.47604626417160034, 0.4265229105949402, -0.3785835802555084, -0.7389075756072998, -0.8519771099090576, 0.08229576796293259, -0.26977887749671936, 0.15822598338127136, 0.6169018745422363, 0.8155322074890137, -0.18002158403396606, 0.81102454662323, -0.8075933456420898, -0.5620478987693787, -0.5350310206413269, -0.005963046103715897, 0.3865150213241577, 0.37007012963294983, 0.3520011901855469, -0.8439291715621948, -0.49090802669525146, -0.34541505575180054, -0.7890666723251343, -0.26120516657829285, 0.16364724934101105, -0.14920875430107117, 0.026732854545116425, 0.16888396441936493, -0.3645654618740082, 0.38612282276153564, 0.6183789372444153, -0.5920315384864807, 0.4957441985607147, 0.13706398010253906, 0.06200529262423515, -1.3607065677642822, 0.11586697399616241, 0.01587825082242489, 0.15795914828777313, -0.5194269418716431, -0.4371205270290375, 0.000003255128603996127, 0.020576152950525284, -0.3194887042045593, 0.6151748895645142, -0.18479682505130768, 0.07537170499563217, 0.05378812924027443, 0.17409494519233704, 0.27066949009895325, 0.5360963940620422, -0.1028183251619339, 0.5022355914115906, 0.6531270742416382, -0.40132370591163635, 0.32618361711502075, 0.6285066604614258, -0.3257724940776825, 0.5844369530677795, -0.7734067440032959, -0.03319955989718437, -0.1555486023426056, 0.2906351387500763, -0.9426184296607971, -0.4654310643672943, 0.664488673210144, -0.7125607132911682, -0.022070201113820076, 0.026185255497694016, -0.6674957275390625, -0.4265531301498413, -0.7292113900184631, 0.21040338277816772, 0.3850969970226288, -0.19150081276893616, 0.4237181544303894, 0.7157808542251587, -0.08720412105321884, -0.5117632150650024, -0.8497375845909119, -0.10207552462816238, -0.16151030361652374, -0.5482780337333679, 0.3860982656478882, -0.1580958068370819, -0.2276211977005005, 0.06805269420146942, 0.36290785670280457, 0.005295004229992628, -0.0481046661734581, 0.5092291235923767, 0.42348358035087585, 0.006724361330270767, 0.10746380686759949, -0.04086875542998314, -0.00901834573596716, 0.22486178576946259, 0.09000666439533234, 0.5834459066390991, -0.0842452123761177, -0.09192231297492981, -0.331535279750824, 0.45028820633888245, 0.3229195177555084, -0.24667489528656006, 0.6802010536193848, 0.837774395942688, -0.3691590130329132, -0.11626644432544708, -0.4432216286659241, -0.3060659170150757, -0.3783195912837982, 0.32743051648139954, -0.15535980463027954, -0.5666152834892273, 0.9583473801612854, 0.20344793796539307, 0.06839565187692642, 0.755759060382843, 0.6386651992797852, -0.043771784752607346, 0.8908791542053223, 0.43314412236213684, -0.16077280044555664, 0.4302821755409241, -0.6390472054481506, 0.11425623297691345, -0.9419045448303223, -0.5068728923797607, -0.4753994345664978, -0.3836570084095001, -0.9096822142601013, -0.3828670382499695, 0.14454226195812225, 0.07762540131807327, -0.20353657007217407, 0.40261754393577576, -0.5502452850341797, 0.2225845754146576, 0.7217427492141724, 0.16885492205619812, 0.125741109251976, -0.019173098728060722, -0.11482924222946167, 0.00523053202778101, -0.56522136926651, -0.5659654140472412, 1.2773224115371704, 0.4174180030822754, 0.4266062378883362, -0.05232159420847893, 0.7157108187675476, 0.3709335923194885, 0.24833421409130096, -0.6852133870124817, 0.5744587182998657, -0.25782322883605957, -0.8507011532783508, -0.19285598397254944, -0.2376364916563034, -0.8147728443145752, -0.11315641552209854, -0.3835202753543854, -0.39607977867126465, 0.541761577129364, 0.0623825304210186, -0.3037361800670624, 0.20412279665470123, -0.5631120204925537, 0.880005955696106, -0.09458701312541962, -0.39346906542778015, -0.007723352871835232, -0.8633565306663513, 0.11411133408546448, 0.14494216442108154, 0.49991992115974426, -0.3345663249492645, -0.0473475307226181, 1.038091778755188, -0.2976669371128082, 1.117979884147644, -0.27408164739608765, 0.29550981521606445, 0.5186915397644043, -0.2904576361179352, 0.42965975403785706, 0.07848941534757614, -0.16911545395851135, 0.5260500907897949, -0.15258081257343292, -0.3064548075199127, -0.31844577193260193, 0.6751040816307068, -0.9103570580482483, -0.1246831864118576, -0.4849318861961365, -0.3078046441078186, -0.15352709591388702, 0.2515439987182617, 0.38000860810279846, 0.2640789747238159, -0.19310152530670166, 0.21686020493507385, 0.4409281313419342, -0.21485088765621185, 0.12810440361499786, 0.2865864038467407, -0.2165795862674713, -0.9619595408439636, 0.7143188714981079, 0.3217923641204834, 0.08881183713674545, 0.1164308711886406, 0.1629951298236847, -0.45164743065834045, -0.2860284745693207, -0.26491084694862366, 0.2537243366241455, -0.7624717950820923, -0.20139098167419434, -0.5188750624656677, -0.19994023442268372, -0.6482337713241577, -0.04476064816117287, -0.08116458356380463, -0.6202366948127747, -0.38454535603523254, -0.4695005714893341, 0.5768076181411743, 0.6778018474578857, -0.34006544947624207, 0.2057432383298874, -0.5273805856704712, 0.15480971336364746, 0.0020500337705016136, 0.5380125045776367, -0.21927544474601746, -0.28073009848594666, -0.343657523393631, 0.024765511974692345, -0.3480566442012787, -0.9471545815467834, 0.4124211370944977, 0.14486190676689148, 0.5591214895248413, 0.30134114623069763, 0.23689298331737518, 0.26040157675743103, -0.1587546467781067, 1.2125523090362549, 0.07789544016122818, -0.5995514988899231, 0.7959796190261841, -0.4748733937740326, 0.1744922250509262, 0.9615688920021057, 0.5043059587478638, -0.4845271706581116, -0.13210350275039673, -0.8491082191467285, -1.1793667078018188, 0.6382452845573425, 0.24420948326587677, 0.2005605399608612, -0.22105298936367035, 0.27023059129714966, -0.015875989571213722, 0.39708635210990906, -0.934699535369873, -0.7182767391204834, -0.3492181599140167, -0.3659047484397888, -0.11238875985145569, -0.3402934968471527, -0.4289363920688629, -0.41068291664123535, 0.823531448841095, 0.09938785433769226, 0.3773636221885681, 0.2709059715270996, 0.1843377947807312, -0.15434178709983826, 0.1286420375108719, 0.3815322518348694, 0.5148940086364746, -0.4363779127597809, -0.026683850213885307, 0.07545091211795807, -0.6641215085983276, -0.2771022915840149, -0.010084682144224644, -0.3867083191871643, -0.0033749868161976337, 0.38248103857040405, 0.8714911937713623, 0.0035104320850223303, -0.3776948153972626, 0.7259160876274109, 0.11985208839178085, -0.3901892304420471, -0.7528005838394165, -0.1490498185157776, -0.08599527925252914, 0.046466607600450516, 0.17849835753440857, 0.00028772366931661963, 0.2264174222946167, -0.5427190661430359, 0.2413906306028366, 0.10908593982458115, -0.5905004739761353, -0.36585456132888794, 0.5341911911964417, 0.2790326178073883, -0.3513253927230835, 0.4955328404903412, -0.25595125555992126, -0.5729764103889465, 0.7071508765220642, 0.23260954022407532, 0.9088507294654846, -0.02207302860915661, 0.42783641815185547, 0.8634613156318665, 0.319884717464447, -0.12239354848861694, 0.9014440774917603, 0.10315340757369995, -0.8427101373672485, -0.1414719521999359, -0.6276561617851257, -0.2969488501548767, 0.07487668097019196, -0.9514791369438171, 0.4761367738246918, -0.576034665107727, -0.5183103680610657, -0.09656127542257309, 0.24074722826480865, -0.8254557847976685, 0.274875670671463, 0.11486178636550903, 0.8298913836479187, -1.1733044385910034, 0.6781531572341919, 0.7478634715080261, -0.7956717610359192, -0.7969776391983032, -0.23307813704013824, 0.2556373178958893, -0.6277865767478943, 0.413623571395874, 0.12819474935531616, 0.249636709690094, -0.24684835970401764, -0.6152884364128113, -0.6610608696937561, 1.296180248260498, -0.21006537973880768, -0.3034061789512634, 0.21046586334705353, 0.2994866967201233, 0.6192198991775513, -0.6102213859558105, 0.13808369636535645, 0.46643197536468506, 0.6731270551681519, 0.0626923069357872, -0.717168390750885, 0.12564904987812042, -0.5440982580184937, -0.1363445520401001, -0.08122770488262177, -0.6605634689331055, 0.8852205872535706, -0.07380223274230957, 0.019637010991573334, -0.3409922122955322, 0.39280226826667786, 0.33958131074905396, 0.5225874781608582, 0.4245259165763855, 0.6369112133979797, 0.6268426179885864, -0.24800530076026917, 1.1395411491394043, -0.5008617639541626, 0.5645699501037598, 1.206998348236084, -0.18845415115356445, 1.001624584197998, 0.3870617151260376, -0.3690173327922821, 0.6056079864501953, 0.7035375237464905, -0.3914732038974762, 0.5638476014137268, 0.10684782266616821, 0.02463832125067711, -0.011551604606211185, -0.31636103987693787, -0.4947226345539093, 0.4463919997215271, 0.42906391620635986, -0.700474739074707, 0.10171103477478027, -0.11078131198883057, 0.17747753858566284, -0.07088620960712433, -0.45290252566337585, 0.9189229011535645, -0.05261844024062157, -0.48038968443870544, 0.134109765291214, -0.09643244743347168, 0.6036068201065063, -0.539516806602478, -0.053804535418748856, -0.18561559915542603, 0.10795046389102936, -0.49560168385505676, -1.1345195770263672, 0.3454802632331848, -0.1606966257095337, -0.45689550042152405, -0.20749466121196747, 0.6791333556175232, -0.4481619596481323, -0.9117650985717773, 0.3677827715873718, 0.47482597827911377, 0.13695977628231049, 0.1537662148475647, -0.9453237652778625, 0.19045911729335785, 0.11923137307167053, -0.370637446641922, 0.12244648486375809, 0.33735647797584534, -0.04536725580692291, 0.32711660861968994, 0.5037180185317993, 0.4000343382358551, -0.11950001865625381, 0.3155965805053711, 0.9117389917373657, -0.588208794593811, -0.5566437840461731, -0.5629675984382629, 0.6800177097320557, -0.4566996395587921, -0.6093534231185913, 0.9032810926437378, 0.826200544834137, 0.9903669953346252, -0.12052340060472488, 1.0215981006622314, -0.4642147123813629, 0.7729807496070862, -0.17672176659107208, 0.7728595733642578, -0.4842587113380432, 0.14120109379291534, -0.3678872883319855, -0.8477054238319397, -0.43905383348464966, 0.7729704976081848, -0.607634961605072, 0.12249911576509476, 0.48736175894737244, 0.9551264047622681, 0.2413923293352127, 0.21278803050518036, 0.07685527950525284, 0.45094478130340576, 0.048814088106155396, 0.21586793661117554, 0.40041035413742065, -0.662708044052124, 0.4405916631221771, -0.7146424055099487, -0.2108955830335617, -0.18222539126873016, -0.7889986038208008, -0.8114823698997498, -0.8156968951225281, -0.5919756293296814, -0.7723833918571472, -0.06686031073331833, 1.1216093301773071, 0.5043321251869202, -1.2218438386917114, -0.356965035200119, 0.1507774442434311, 0.06070735305547714, -0.26009219884872437, -0.28965842723846436, 0.5744657516479492, 0.047360118478536606, -0.5377393960952759, -0.28368696570396423, 0.02414354495704174, -0.241722971200943, -0.27731072902679443, -0.1629839688539505, -0.2001943588256836, -0.08647406101226807, 0.6810626983642578, 0.1565118134021759, -0.6722772121429443, -0.21029119193553925, 0.14992442727088928, -0.04781261086463928, 0.15430937707424164, 0.48640894889831543, -0.2613644599914551, 0.4202251732349396, 0.7654241919517517, 0.007704243529587984, 0.36958515644073486, 0.07940962165594101, 0.2353128343820572, -0.6203458905220032, -0.09965313225984573, 0.3728780448436737, 0.4008943736553192, 0.3835482895374298, -0.5215892791748047, 0.6459750533103943, 0.28364479541778564, -0.5224303603172302, -0.6470118165016174, -0.06923814862966537, -1.3453974723815918, -0.07487799972295761, 1.4467566013336182, -0.039333973079919815, -0.24185822904109955, -0.3282499611377716, -0.2883082926273346, 0.2753520905971527, -0.6222137808799744, 0.835719645023346, 0.9119002223014832, -0.1121116429567337, 0.004120343364775181, -0.6450245380401611, 0.6352854371070862, -0.09650211781263351, -0.9379273056983948, 0.08201916515827179, 0.5104954838752747, 0.31152400374412537, 0.3804783821105957, 0.6985673308372498, -0.4944148063659668, 0.054658450186252594, -0.06047918647527695, 0.39418116211891174, -0.09063414484262466, -0.12418077141046524, -0.22028829157352448, 0.23109032213687897, -0.11110039055347443, -0.19464953243732452 ]
null
null
null
null
null
null
null
null
null
null
null
null
null
SocialGrep/one-year-of-r-india
SocialGrep
2022-07-01T18:48:19Z
458
1
null
[ "annotations_creators:lexyr", "language_creators:crowdsourced", "multilinguality:monolingual", "size_categories:1M<n<10M", "source_datasets:original", "language:en", "license:cc-by-4.0", "region:us" ]
2022-07-01T18:48:19Z
2022-03-02T23:29:22.000Z
2022-03-02T23:29:22
--- annotations_creators: - lexyr language_creators: - crowdsourced language: - en license: - cc-by-4.0 multilinguality: - monolingual size_categories: - 1M<n<10M source_datasets: - original paperswithcode_id: null --- # Dataset Card for one-year-of-r-india ## 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://socialgrep.com/datasets](https://socialgrep.com/datasets?utm_source=huggingface&utm_medium=link&utm_campaign=oneyearofrindia) - **Point of Contact:** [Website](https://socialgrep.com/contact?utm_source=huggingface&utm_medium=link&utm_campaign=oneyearofrindia) ### Dataset Summary This corpus contains the complete data for the activity of the subreddit /r/India from Sep 30, 2020 to Sep 30, 2021. ### Languages Mainly English. ## Dataset Structure ### Data Instances A data point is a post or a comment. Due to the separate nature of the two, those exist in two different files - even though many fields are shared. ### Data Fields - 'type': the type of the data point. Can be 'post' or 'comment'. - 'id': the base-36 Reddit ID of the data point. Unique when combined with type. - 'subreddit.id': the base-36 Reddit ID of the data point's host subreddit. Unique. - 'subreddit.name': the human-readable name of the data point's host subreddit. - 'subreddit.nsfw': a boolean marking the data point's host subreddit as NSFW or not. - 'created_utc': a UTC timestamp for the data point. - 'permalink': a reference link to the data point on Reddit. - 'score': score of the data point on Reddit. - 'domain': (Post only) the domain of the data point's link. - 'url': (Post only) the destination of the data point's link, if any. - 'selftext': (Post only) the self-text of the data point, if any. - 'title': (Post only) the title of the post data point. - 'body': (Comment only) the body of the comment data point. - 'sentiment': (Comment only) the result of an in-house sentiment analysis pipeline. Used for exploratory analysis. ## 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 CC-BY v4.0 ### Contributions [Needs More Information]
[ -0.565960168838501, -0.6816117167472839, 0.07636731117963791, 0.4535091817378998, -0.513900637626648, 0.09063318371772766, -0.12937206029891968, -0.3739262819290161, 0.6816241145133972, 0.36012202501296997, -0.944258987903595, -0.8227830529212952, -0.7212845087051392, 0.25964802503585815, -0.2045498639345169, 1.127380609512329, 0.09756757318973541, -0.3627815842628479, -0.3648316264152527, -0.2644878923892975, -0.4188216030597687, -0.5424452424049377, -0.42202067375183105, -0.10894229263067245, 0.5048470497131348, 0.601293683052063, 0.3798534870147705, 0.7376839518547058, 0.8016647696495056, 0.23046422004699707, 0.09717269986867905, 0.11250977963209152, -0.4778861403465271, -0.17120446264743805, -0.2812792658805847, -0.12512917816638947, -0.6780228018760681, 0.12184418737888336, 0.5649439692497253, 0.5120156407356262, -0.06049377843737602, 0.6186925172805786, 0.051292382180690765, 0.6939679384231567, -0.5325465798377991, 0.6763607263565063, -0.32879120111465454, -0.09829224646091461, -0.274527370929718, -0.23535311222076416, -0.09643582254648209, -0.7738323211669922, -0.46220293641090393, -0.580145001411438, 0.06521034240722656, 0.024424752220511436, 0.7843986749649048, 0.16875384747982025, -0.04860265180468559, -0.1722901165485382, -0.6282294392585754, 0.8556700944900513, -0.6081834435462952, 0.11756031960248947, 0.6664742827415466, 0.37843048572540283, 0.1680980771780014, -0.7150010466575623, -0.5155423879623413, 0.35877180099487305, -0.3864883482456207, 0.0982876643538475, -0.08520273119211197, -0.5933594703674316, 0.38105928897857666, 0.5354580879211426, -0.48680293560028076, -0.7014502882957458, -0.8758796453475952, 0.008208222687244415, 1.0094563961029053, 0.2539235055446625, 0.32998818159103394, -0.496003657579422, -0.3179447650909424, -0.24163036048412323, -0.4478963613510132, -0.020101819187402725, 0.3042362928390503, 0.6560554504394531, -0.7946782112121582, 0.7801964282989502, -0.22474907338619232, 0.4778132736682892, -0.015443539246916771, 0.035125020891427994, 0.5099419355392456, -0.9003947377204895, 0.1214311271905899, -0.177298441529274, 0.8915153741836548, 0.6214079260826111, 0.25919029116630554, 0.1755494773387909, 0.18531754612922668, 0.05930696427822113, -0.041707154363393784, -0.6727949976921082, -0.19196507334709167, 0.3437669575214386, -0.687225878238678, -0.285042941570282, 0.2956680953502655, -1.206450343132019, -0.4108964204788208, -0.2698118984699249, -0.11505553871393204, -0.1328810602426529, -0.6911880970001221, -0.10566620528697968, -0.19337314367294312, 0.654947817325592, -0.0809016153216362, -0.7452543377876282, 0.5138996243476868, 0.5906607508659363, 0.7278098464012146, -0.2585979104042053, -0.25731685757637024, 0.023111116141080856, 0.0367923304438591, -0.01795860193669796, 0.8306118845939636, -0.6400127410888672, -0.6144154667854309, 0.06905760616064072, 0.32201918959617615, 0.006753073539584875, -0.27583447098731995, 0.7409061789512634, -0.26559028029441833, 0.11224312335252762, -0.5506531596183777, -0.321247398853302, -0.01322895847260952, 0.3613823354244232, -0.5368843674659729, 1.0079962015151978, 0.20553666353225708, -1.1087749004364014, 0.4390241801738739, -0.9217209815979004, -0.4159717559814453, 0.015150967985391617, -0.2599697709083557, -0.35451167821884155, -0.33496373891830444, 0.13838578760623932, 0.4014604091644287, -0.36647769808769226, -0.018475377932190895, -0.28592827916145325, -0.1397169679403305, -0.04333559423685074, -0.031698208302259445, 1.1495364904403687, 0.27828091382980347, 0.1368534415960312, 0.10073940455913544, -1.0415549278259277, 0.013870210386812687, 0.3225369453430176, -0.1391480565071106, -0.16782107949256897, -0.14633746445178986, 0.216165229678154, 0.12776729464530945, 0.46646279096603394, -0.7218925356864929, 0.30083826184272766, -0.1472460776567459, 0.614630937576294, 0.4216488003730774, 0.5323400497436523, 0.3659106492996216, -0.4583239257335663, 0.6856358051300049, 0.15568026900291443, 0.6415412425994873, 0.050641804933547974, -0.7079166173934937, -0.5224406123161316, -0.07558498531579971, 0.19411274790763855, 0.8135809302330017, -0.36144131422042847, 0.5046969056129456, -0.49753904342651367, -0.6942262053489685, -0.385884165763855, 0.04814917594194412, 0.23291699588298798, 0.5290315747261047, 0.4578651189804077, -0.4300268590450287, -1.021941065788269, -0.8368062973022461, -0.06199536472558975, -0.11389093846082687, 0.4034672677516937, 0.4322983920574188, 0.8297834396362305, -0.25855785608291626, 0.9374141097068787, -0.8702190518379211, -0.20896531641483307, -0.3362746238708496, 0.2182208150625229, 0.2677309811115265, 0.5508377552032471, 0.24730992317199707, -1.1436190605163574, -0.6843586564064026, -0.27653953433036804, -0.7728008031845093, -0.03045547939836979, 0.10825520753860474, -0.2145160436630249, 0.06856781244277954, 0.3730255961418152, -0.5908328890800476, 0.7693285942077637, 0.45155271887779236, -0.3732519745826721, 0.39958417415618896, 0.05041058361530304, 0.4570136070251465, -1.2017543315887451, 0.14454025030136108, 0.14246198534965515, 0.17134882509708405, -0.2357008308172226, -0.23839260637760162, 0.0009889299981296062, -0.11956246942281723, -0.45322054624557495, 0.7961798310279846, -0.29546016454696655, 0.27404218912124634, 0.2057240605354309, 0.10511123389005661, -0.13079439103603363, 0.505427360534668, -0.23536613583564758, 0.7148554921150208, 0.6294762492179871, -0.5084376335144043, 0.22946859896183014, 0.5073431134223938, -0.24264614284038544, 0.5223290324211121, -0.8645137548446655, 0.06963431090116501, -0.30994853377342224, 0.07117480784654617, -1.124713659286499, -0.5803799033164978, 0.6283498406410217, -0.9268152713775635, 0.14423544704914093, -0.07279408723115921, -0.41913193464279175, -0.24805179238319397, -0.5406193733215332, 0.5228760242462158, 0.5327895283699036, -0.0038921476807445288, 0.6332787871360779, 0.7186827063560486, -0.12878775596618652, -0.5313106179237366, -0.9898425936698914, -0.04383394867181778, -0.14556489884853363, -0.6091678738594055, 0.2625516355037689, -0.23327504098415375, -0.3099882900714874, 0.34804534912109375, 0.2706975042819977, -0.1949136108160019, -0.33469411730766296, 0.5854677557945251, 0.11106041073799133, 0.1557624489068985, -0.19793157279491425, -0.3509867787361145, -0.1732776015996933, 0.09492470324039459, 0.39537423849105835, 0.5368425846099854, 0.00941519159823656, -0.3680066466331482, -0.39616528153419495, 0.4029913544654846, 0.3688359558582306, -0.3689824640750885, 0.6041518449783325, 0.6295812129974365, -0.4459350109100342, -0.00904203299432993, -0.3789484202861786, -0.23486395180225372, -0.39890268445014954, 0.05678020417690277, -0.04533988982439041, -0.43785175681114197, 0.8238052129745483, 0.20001976191997528, 0.2653960883617401, 0.847484827041626, 0.3337709903717041, 0.23391321301460266, 0.9288231134414673, 0.6835407614707947, -0.20189429819583893, 0.4479556083679199, -0.38534802198410034, 0.427250474691391, -0.6790751814842224, -0.4338187277317047, -0.6414941549301147, -0.16083186864852905, -0.826698899269104, -0.4539359211921692, -0.003289163112640381, -0.08420196175575256, -0.32264822721481323, 0.4605850577354431, -0.7551459670066833, 0.47922849655151367, 0.5691781044006348, 0.16175168752670288, 0.13522332906723022, 0.07402167469263077, 0.28680214285850525, -0.19694578647613525, -0.5500699877738953, -0.5084469318389893, 1.1550929546356201, 0.29107022285461426, 0.8237193822860718, 0.03899887204170227, 0.8242102265357971, 0.49118104577064514, 0.3174731135368347, -0.31368422508239746, 0.741984486579895, -0.2662345767021179, -0.7406201958656311, -0.15144796669483185, -0.14486844837665558, -0.6694598197937012, -0.4287501275539398, -0.3288027346134186, -0.48345068097114563, 0.42168912291526794, 0.10991108417510986, -0.2528749704360962, 0.24072210490703583, -0.6714330315589905, 0.7573813199996948, 0.01582876592874527, -0.531486988067627, -0.04670301079750061, -0.8860054016113281, 0.33076542615890503, 0.35796284675598145, 0.5543283224105835, -0.08257060497999191, 0.08436553180217743, 0.8125380277633667, -0.35216692090034485, 1.0677862167358398, -0.2964463531970978, 0.4456925094127655, 0.532699465751648, -0.33650538325309753, 0.3057071566581726, 0.04943349212408066, -0.054651398211717606, 0.3331838548183441, 0.018309378996491432, -0.41252419352531433, -0.2808842957019806, 0.804884672164917, -0.7608791589736938, -0.16994746029376984, -0.5614098310470581, -0.40811142325401306, -0.05437464639544487, 0.1669214367866516, 0.13455696403980255, 0.4263705611228943, -0.16940443217754364, 0.37391868233680725, 0.616622269153595, -0.28024694323539734, 0.24010945856571198, 0.06372641772031784, -0.24352915585041046, -0.6415371894836426, 0.7699412107467651, 0.2055332511663437, -0.013316227123141289, 0.31648677587509155, 0.10857436060905457, -0.5748834609985352, -0.1738136112689972, -0.3327488601207733, 0.3141913115978241, -0.8228029608726501, -0.13851937651634216, -0.6128954291343689, -0.3608957529067993, -0.8296142816543579, -0.08226693421602249, -0.0481824167072773, -0.5030856728553772, -0.21447427570819855, -0.18926231563091278, 0.7347908616065979, 0.712809145450592, -0.625302255153656, 0.04254504665732384, -0.6193402409553528, 0.33132296800613403, 0.2776452302932739, 0.5505576133728027, -0.0679667741060257, -0.4595685303211212, -0.1148276999592781, 0.11952859908342361, -0.07016544789075851, -0.6685358881950378, 0.4700538218021393, 0.11300946772098541, 0.46745565533638, 0.019266514107584953, 0.03441464900970459, 0.6404063701629639, -0.04486255347728729, 1.121083378791809, -0.004207508638501167, -0.3528444766998291, 0.8648581504821777, -0.5547064542770386, 0.4656713306903839, 0.8426570296287537, 0.5898607969284058, -0.4596458375453949, -0.146703839302063, -0.7070510387420654, -1.0545878410339355, 0.4696909785270691, -0.05842593312263489, 0.30947938561439514, -0.2872234582901001, 0.4882122874259949, -0.15968333184719086, 0.05520985275506973, -0.9063348174095154, -0.7874234318733215, -0.19592984020709991, -0.3364675045013428, 0.1289343684911728, -0.2987726032733917, -0.36896324157714844, -0.6738876700401306, 0.7695742249488831, 0.3769491910934448, 0.25586676597595215, 0.1969425529241562, 0.12137557566165924, -0.2201387733221054, 0.34634315967559814, 0.6419900059700012, 1.1251990795135498, -0.39721861481666565, -0.10026881843805313, 0.026723338291049004, -0.6586337089538574, -0.21138155460357666, 0.19352878630161285, -0.17164213955402374, -0.17321979999542236, 0.3336261510848999, 0.406206876039505, 0.1152971014380455, -0.33951592445373535, 0.4852667450904846, -0.2669123113155365, -0.18694475293159485, -0.678340494632721, 0.01815454103052616, 0.0926869660615921, 0.14010755717754364, 0.41498899459838867, 0.022885069251060486, -0.16771726310253143, -0.6776571869850159, 0.3314330577850342, 0.10514816641807556, -0.35580384731292725, -0.24164371192455292, 0.8060928583145142, 0.11624345928430557, -0.5382732152938843, 0.3392331004142761, -0.36692848801612854, -0.20343931019306183, 0.7481305599212646, 0.16780439019203186, 0.7982956171035767, 0.0012540488969534636, 0.18713989853858948, 1.001548171043396, 0.36678969860076904, 0.02797151915729046, 0.7784817218780518, 0.016831889748573303, -0.5156235694885254, -0.31734293699264526, -0.8042994141578674, -0.28503522276878357, 0.1262318342924118, -0.7078005075454712, 0.583710253238678, -0.6819643378257751, -0.15652965009212494, 0.15199513733386993, 0.14661362767219543, -0.8058486580848694, 0.3054801821708679, -0.14245931804180145, 0.9518524408340454, -1.0959500074386597, 0.45622920989990234, 0.896493673324585, -0.9744907021522522, -0.7759403586387634, -0.33573395013809204, 0.10288737714290619, -0.7455018162727356, 0.606391429901123, -0.23935505747795105, -0.012713930569589138, -0.1013193354010582, -0.9987501502037048, -0.8483755588531494, 1.0769445896148682, -0.34455153346061707, -0.27417823672294617, 0.41024938225746155, 0.4118221700191498, 0.5141791105270386, -0.5223919153213501, 0.16578836739063263, 0.45245060324668884, 0.7037469148635864, 0.21922016143798828, -0.49168524146080017, 0.1578604131937027, -0.5595330595970154, -0.3155050277709961, 0.17661723494529724, -0.7640427947044373, 0.9959920048713684, -0.019940320402383804, -0.3694969117641449, -0.3313197195529938, 0.5787217020988464, 0.32518425583839417, 0.2958214282989502, 0.5341088771820068, 0.7756193280220032, 0.3152463734149933, -0.24244897067546844, 1.1092642545700073, -0.6596084833145142, 0.5369459390640259, 1.077530860900879, 0.03696007654070854, 0.8569232821464539, 0.45017939805984497, -0.4839596152305603, 0.425997257232666, 0.6326398849487305, -0.1825287789106369, 0.5945120453834534, -0.05991101264953613, -0.06007383018732071, -0.11462458223104477, -0.31541767716407776, -0.6613677740097046, 0.3806990385055542, 0.358519971370697, -0.35040953755378723, -0.24803486466407776, -0.21548911929130554, 0.14112180471420288, 0.16324229538440704, -0.44974809885025024, 0.7541297674179077, -0.0684850811958313, -0.581845760345459, 0.3451578617095947, -0.2768506705760956, 0.7819187641143799, -0.7042116522789001, -0.31582435965538025, -0.3915247917175293, 0.18643614649772644, -0.5660210251808167, -1.084779977798462, 0.8365771174430847, 0.08546208590269089, -0.5249198079109192, -0.3777623474597931, 0.966891884803772, -0.4216884970664978, -0.960669219493866, 0.06121448799967766, 0.340043842792511, 0.26540982723236084, 0.3025289475917816, -0.8156831860542297, 0.38058599829673767, 0.04664531722664833, -0.2450089156627655, 0.1954207420349121, 0.3527691662311554, 0.08835652470588684, 0.5186867713928223, 0.3924160301685333, 0.2905963957309723, 0.1142769455909729, 0.055666234344244, 0.8676519393920898, -0.948151707649231, -0.30561646819114685, -0.6324324011802673, 0.6497908234596252, -0.4353318214416504, -0.5540886521339417, 0.8796736598014832, 0.6502241492271423, 0.8844049572944641, 0.031807102262973785, 1.1250348091125488, -0.8319210410118103, 1.0328699350357056, 0.0300045907497406, 0.8473432064056396, -0.8566810488700867, -0.06638403236865997, -0.18118292093276978, -0.6080156564712524, -0.3934761583805084, 0.6278107166290283, -0.4344925284385681, 0.15135233104228973, 0.4144937992095947, 1.1137468814849854, -0.07419006526470184, 0.24707245826721191, -0.10612594336271286, 0.3726132810115814, 0.04615848883986473, 0.04035170003771782, 0.5241705775260925, -0.5526532530784607, 0.543230414390564, -0.7520444393157959, -0.22578223049640656, 0.005867350846529007, -0.9967184066772461, -0.6287190318107605, -0.9184885025024414, -0.6621735095977783, -0.47805336117744446, -0.059699974954128265, 0.9521616101264954, 0.6556834578514099, -0.9758080244064331, -0.324542760848999, 0.03176533058285713, 0.18234728276729584, 0.050377409905195236, -0.35130709409713745, 0.41959309577941895, 0.1749001443386078, -0.6137554049491882, -0.18082328140735626, 0.24592852592468262, -0.3184885084629059, -0.26868152618408203, 0.12608841061592102, -0.6267083883285522, 0.07967415452003479, 0.7092828154563904, 0.7191430330276489, -0.38426220417022705, -0.40821951627731323, 0.012851536273956299, -0.012566701509058475, 0.13383136689662933, 0.4626784324645996, -0.23158156871795654, 0.26251667737960815, 0.8004385828971863, 0.14384962618350983, 0.4019137918949127, 0.43976688385009766, -0.039731889963150024, -0.6958417892456055, 0.19232188165187836, 0.21555469930171967, 0.15701952576637268, 0.463515967130661, -0.3055160641670227, 0.7261989116668701, 0.2491205483675003, -0.8008965849876404, -0.6649830341339111, -0.12539222836494446, -1.25648832321167, -0.06119740009307861, 1.3989012241363525, 0.11504147201776505, -0.4670941233634949, -0.2502124607563019, -0.19931988418102264, 0.24292027950286865, -0.5572283267974854, 0.7088239789009094, 0.8666715025901794, -0.26098185777664185, -0.20862635970115662, -0.7161709070205688, 0.6033973097801208, -0.1754891574382782, -1.081494688987732, 0.09346431493759155, 0.3745816946029663, 0.40787646174430847, 0.2510274648666382, 1.0481288433074951, -0.46172866225242615, -0.024235783144831657, 0.0843893438577652, 0.255938857793808, 0.14511671662330627, -0.17407414317131042, -0.05481604114174843, 0.2304665893316269, -0.23375950753688812, -0.26477447152137756 ]
null
null
null
null
null
null
null
null
null
null
null
null
null
ghadeermobasher/CRAFT-Chem
ghadeermobasher
2022-01-20T22:09:10Z
458
0
null
[ "region:us" ]
2022-01-20T22:09:10Z
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
mteb/stackexchange-clustering
mteb
2022-09-27T19:11:56Z
458
0
null
[ "language:en", "region:us" ]
2022-09-27T19:11:56Z
2022-04-07T13:42:09.000Z
2022-04-07T13:42:09
--- 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
GATE-engine/COCOStuff164K
GATE-engine
2023-06-26T06:29:49Z
458
0
null
[ "region:us" ]
2023-06-26T06:29:49Z
2023-06-26T04:56:48.000Z
2023-06-26T04:56:48
--- dataset_info: features: - name: image dtype: image - name: mask dtype: image splits: - name: val num_bytes: 2431424833.0 num_examples: 5000 - name: train num_bytes: 57790292141.76 num_examples: 118287 download_size: 39862772718 dataset_size: 60221716974.76 --- # Dataset Card for "COCOStuff164K" [More Information needed](https://github.com/huggingface/datasets/blob/main/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
[ -0.7545538544654846, -0.26502034068107605, 0.10267440229654312, 0.5730505585670471, -0.32861262559890747, 0.2491813600063324, 0.2548964321613312, -0.33700764179229736, 0.8641897439956665, 0.5088919401168823, -0.9908143281936646, -0.802064836025238, -0.504723072052002, -0.10782767087221146, -0.291253924369812, 1.3108863830566406, 0.07147866487503052, -0.08179426193237305, -0.6053338050842285, -0.047807857394218445, -0.5285323858261108, -0.5404073596000671, -0.46689438819885254, -0.497434139251709, 0.9191945195198059, 0.9427934885025024, 0.3298485279083252, 0.384224534034729, 0.7765487432479858, 0.25024017691612244, 0.12651482224464417, -0.2690086364746094, -0.4884781539440155, -0.2504027783870697, -0.09262080490589142, -0.3760821223258972, -1.0185225009918213, 0.058562636375427246, 0.44063422083854675, 0.39757901430130005, -0.13371555507183075, 0.7245638370513916, -0.09355473518371582, 0.6437724232673645, -0.5185961723327637, 0.7315415143966675, -0.2190665751695633, 0.07137435674667358, -0.5990558862686157, -0.19092443585395813, 0.16627824306488037, -0.44510477781295776, -0.29514721035957336, -1.043452501296997, 0.4241343140602112, 0.11065827310085297, 0.7680249214172363, 0.10551910102367401, 0.01721153035759926, -0.09582465142011642, -0.3663938641548157, 0.2440929114818573, -0.2800373136997223, 0.28421708941459656, 0.9080785512924194, 0.3498731851577759, 0.10914918780326843, -0.7112290263175964, -0.2223697006702423, 0.1382930725812912, 0.09066654741764069, 0.20039218664169312, 0.28798753023147583, 0.116173654794693, 0.6287280917167664, 0.7263898849487305, -0.40640804171562195, -0.2769133448600769, -0.6932744979858398, -0.5340670347213745, 0.7098835706710815, 0.2393820881843567, 0.3318004012107849, -0.10310180485248566, -0.2500613331794739, -0.15583744645118713, -0.5115575790405273, -0.026467081159353256, 0.6277549266815186, 0.17286811769008636, -1.1645599603652954, 0.6078491806983948, 0.05132899060845375, 0.5188652276992798, 0.1739085614681244, 0.5414991974830627, 0.6583927869796753, -0.5329994559288025, -0.18353843688964844, 0.2964015007019043, 0.4125717282295227, 0.3486764430999756, -0.06413767486810684, 0.048821765929460526, 0.1540115922689438, 0.08304779976606369, 0.2718017101287842, -1.149567723274231, -0.866034984588623, 0.14345869421958923, -0.3285762369632721, -0.4394347667694092, 0.4693544805049896, -1.105208396911621, -0.29306063055992126, -0.23771706223487854, -0.2325993776321411, 0.03143904358148575, -0.5878868103027344, -0.25581613183021545, -0.47883495688438416, 0.5771077871322632, 0.1562187671661377, -0.9930856823921204, 0.5639538168907166, 0.8346912860870361, 0.6268734335899353, 0.05495521426200867, -0.13167905807495117, -0.5611473917961121, 0.2231675535440445, -0.45356833934783936, 0.8660900592803955, -0.6420314311981201, -0.27583932876586914, -0.016978036612272263, 0.5558169484138489, 0.06793899834156036, -0.2584518492221832, 0.974088728427887, -0.4363240599632263, -0.4395673871040344, -0.9258688688278198, -0.4139631390571594, -0.06820669025182724, 0.4732472598552704, -1.1842466592788696, 1.172109603881836, 0.4491577744483948, -0.870837926864624, 0.4703488349914551, -1.1129769086837769, -0.3509601354598999, 0.7820879220962524, -0.101229727268219, -0.570798397064209, 0.12631098926067352, -0.00528779998421669, 0.4751482605934143, -0.09221257269382477, 0.3274163007736206, -0.890696108341217, -0.235732764005661, 0.14215315878391266, 0.07528010755777359, 0.8753938674926758, 0.2950601875782013, 0.3620186448097229, 0.10072694718837738, -0.8033807277679443, -0.26079821586608887, 0.2755383253097534, -0.18912222981452942, -0.05596727877855301, -0.7479804754257202, 0.3937431573867798, -0.12077963352203369, 0.4201667010784149, -0.610447883605957, 0.41195493936538696, 0.13554909825325012, 0.2572004795074463, 0.6915530562400818, 0.23554955422878265, 0.2716216742992401, -0.4149336814880371, 0.8225129246711731, 0.038426805287599564, 0.46921274065971375, 0.06470248848199844, -0.672302782535553, -0.7049997448921204, 0.06365780532360077, 0.6120985746383667, 0.3249497711658478, -0.6298489570617676, 0.5296447277069092, 0.24484315514564514, -0.579735279083252, -0.21810457110404968, 0.19018113613128662, 0.11194389313459396, 0.18762224912643433, 0.3396950662136078, -0.674512505531311, -0.868102490901947, -0.727014422416687, 0.4522170126438141, 0.0259888656437397, 0.24602508544921875, 0.48032939434051514, 0.8008065819740295, -0.5538948774337769, 0.6450958847999573, -0.7911391258239746, -0.26710349321365356, -0.0936829149723053, -0.2703927755355835, 0.13161158561706543, 0.8310311436653137, 0.990154504776001, -0.732343852519989, -0.18773096799850464, -0.44896331429481506, -0.3817541301250458, 0.09417074918746948, 0.44643789529800415, -0.6810683608055115, -0.19177737832069397, 0.19084611535072327, -0.3783855438232422, 0.7404626607894897, 1.0414514541625977, -0.5798447132110596, 0.3619336187839508, -0.12017524242401123, 0.38170135021209717, -1.1537679433822632, 0.3780864477157593, -0.20413213968276978, -0.2620813250541687, -0.3027913570404053, 0.06627427041530609, 0.18017710745334625, -0.20629170536994934, -0.15143126249313354, 0.32364362478256226, -0.44867342710494995, -0.1438504159450531, 0.08753340691328049, -0.15112170577049255, 0.030495477840304375, 0.4059576392173767, 0.0339936763048172, 0.34184208512306213, 0.9660517573356628, -0.3922230303287506, 1.1246726512908936, 0.5637394785881042, -0.01520279049873352, 0.7516523003578186, -0.6268409490585327, 0.38455212116241455, 0.03624210134148598, 0.44572708010673523, -0.7088461518287659, -0.8368870615959167, 0.6830002665519714, -0.3966292142868042, 0.3498156666755676, -0.6717506051063538, -0.4673435091972351, -0.849419116973877, -0.48862701654434204, 1.0668894052505493, 0.29734304547309875, -0.6848753690719604, 0.40147972106933594, 0.6754227876663208, 0.03266652673482895, -0.1276121586561203, -1.0879995822906494, 0.12852051854133606, -0.2753933072090149, -0.22086189687252045, 0.40734755992889404, -0.7916162014007568, 0.3514079451560974, -0.2839413583278656, 0.23808835446834564, -0.24899962544441223, -0.30588507652282715, 0.6445975303649902, 0.262807697057724, -0.12598372995853424, 0.17902089655399323, -0.007421732880175114, -0.634445309638977, 0.20862796902656555, -0.07877667248249054, 0.38900065422058105, -0.19611530005931854, -0.1617915779352188, -0.31911665201187134, 0.1965271532535553, 0.19840958714485168, -0.3116565942764282, 0.49079224467277527, 1.0975966453552246, -0.748191237449646, -0.025145210325717926, -0.6058857440948486, -0.2669513523578644, -0.5105655789375305, -0.10939338803291321, -0.3140494227409363, -0.7021944522857666, 0.6740174293518066, 0.08805237710475922, -0.1354321837425232, 0.6310555934906006, 0.7877289652824402, 0.20492905378341675, 0.5853811502456665, 0.5889830589294434, -0.3136478662490845, 0.4476791024208069, -0.5058228373527527, -0.14352431893348694, -0.8486155271530151, -0.6530036926269531, -0.6036540865898132, -0.3471558690071106, -0.7500180602073669, -0.6381190419197083, -0.32658764719963074, -0.013220138847827911, -0.10143035650253296, 0.8239187598228455, -0.7590545415878296, 0.3276523947715759, 0.5164291858673096, 0.24506136775016785, -0.002274173777550459, -0.23735347390174866, 0.0610230378806591, 0.3037974238395691, -0.9741511344909668, -0.055191684514284134, 0.9513386487960815, 0.434170663356781, 0.950752854347229, 0.09601198136806488, 0.8666138052940369, 0.2477518767118454, 0.2700725793838501, -0.29861384630203247, 0.28661173582077026, 0.2891136407852173, -0.8270449638366699, 0.11744072288274765, -0.1691420078277588, -0.8382817506790161, -0.6783581972122192, -0.34071028232574463, -0.2714114785194397, 0.4694581627845764, 0.6790384650230408, -0.15319252014160156, 0.23115402460098267, -0.6587706208229065, 1.1991528272628784, -0.1128690242767334, -0.28815457224845886, -0.06805701553821564, -0.5676654577255249, 0.4281212091445923, 0.1512899547815323, 0.3019760251045227, -0.3247424066066742, -0.0011123735457658768, 1.144932746887207, -0.3461931347846985, 1.0882384777069092, -0.47220179438591003, 0.0158737450838089, 0.5659308433532715, -0.150555819272995, 0.25599730014801025, 0.6826074123382568, 0.1278294324874878, 0.18064606189727783, 0.39419499039649963, -0.6239101886749268, -0.2713793218135834, 1.189070463180542, -0.658546507358551, 0.24464669823646545, -0.48685136437416077, -0.5150349140167236, -0.0018725935369729996, 0.25814568996429443, 0.28593921661376953, 0.6855100393295288, -0.4215628504753113, 0.13566160202026367, 0.6198358535766602, 0.12679871916770935, 0.31297263503074646, -0.010343700647354126, -0.18954172730445862, -0.47756919264793396, 1.1021316051483154, 0.03467680141329765, -0.37704911828041077, 0.1826241910457611, 0.4540649652481079, -0.265973299741745, -0.38374608755111694, -0.4910427927970886, 0.25934842228889465, -0.4203888773918152, -0.6564440131187439, -0.43780648708343506, -0.3384021520614624, -0.6272932291030884, -0.3094271719455719, -0.38762855529785156, -0.5539246797561646, -0.7846084833145142, -0.7880760431289673, 1.164083480834961, 0.7228329181671143, -0.5616487264633179, 0.33728986978530884, -0.756757915019989, 0.4937116205692291, 0.09181801229715347, 1.1458063125610352, -0.24410876631736755, -0.3525810241699219, -0.4541614055633545, -0.026710618287324905, -0.15493261814117432, -0.48241132497787476, -0.12181022018194199, 0.17407526075839996, 0.5985048413276672, 0.5025612115859985, 0.17079582810401917, 0.7278332710266113, -0.055694468319416046, 0.7308415174484253, 0.394352525472641, -0.6546615362167358, 0.5192562341690063, -0.25720614194869995, 0.36461982131004333, 0.8117685914039612, 0.46014535427093506, -0.377013236284256, 0.009169231168925762, -1.265770435333252, -0.6408382058143616, 0.6511693000793457, 0.2043473869562149, 0.2515984773635864, 0.13042481243610382, 0.5159039497375488, 0.009272146038711071, 0.2832929491996765, -0.6766029596328735, -0.42319241166114807, -0.43551844358444214, -0.46944326162338257, -0.02999306470155716, -0.5852558612823486, -0.2669095993041992, -0.6657828092575073, 0.6605156064033508, -0.22516442835330963, 0.47686171531677246, -0.19229581952095032, 0.17989422380924225, -0.2641375660896301, -0.3438287675380707, 0.494590163230896, 0.6064766049385071, -0.4243617653846741, 0.1354191154241562, 0.05849327892065048, -0.5760613679885864, -0.41321665048599243, 0.443691611289978, 0.13773778080940247, -0.5343286395072937, 0.7380451560020447, 0.7837426662445068, 0.11057501286268234, -0.1845277100801468, 0.40801292657852173, -0.23841044306755066, -0.31651678681373596, -0.491231232881546, 0.31306642293930054, 0.42632758617401123, 0.0648277997970581, -0.26523950695991516, -0.04190925508737564, 0.2897453308105469, -0.37664613127708435, 0.48603352904319763, 0.06388917565345764, -0.8679505586624146, -0.6824097633361816, 0.5052614212036133, 0.514774739742279, -0.441588819026947, 0.8565998077392578, -0.0011947937309741974, -0.45256394147872925, 0.8284751772880554, 0.34254777431488037, 0.5631234645843506, -0.4996700584888458, 0.4242858290672302, 0.7108864784240723, 0.17832137644290924, 0.2886340916156769, 0.4036555588245392, -0.6137076616287231, -0.7094870805740356, 0.016549456864595413, -0.47335830330848694, -0.28141212463378906, -0.18030257523059845, -1.1207118034362793, 0.3959466814994812, -0.7552337646484375, -0.2505762279033661, -0.0508604571223259, 0.3269461989402771, -1.1108430624008179, 0.1599949151277542, 0.13959768414497375, 1.3477766513824463, -0.9131006598472595, 0.7792866230010986, 0.6564030051231384, -0.5046497583389282, -0.7081151008605957, -0.559389591217041, 0.03767680004239082, -0.8966444730758667, -0.2173149138689041, 0.22680015861988068, 0.2973710894584656, -0.16397055983543396, -1.0198192596435547, -0.7151925563812256, 1.1916530132293701, 0.33292579650878906, -0.799472451210022, 0.3552902340888977, -0.1128690242767334, 0.2622831463813782, -0.4701159596443176, 0.25705790519714355, 0.8122024536132812, 0.9051682353019714, 0.6572167873382568, -0.40951114892959595, -0.02822570502758026, -0.4171205163002014, -0.15312762558460236, 0.1310817301273346, -0.8096495866775513, -0.11589846014976501, -0.2557750344276428, 0.31059059500694275, 0.023892652243375778, 0.7319442629814148, 0.2283898890018463, 0.3559223711490631, 0.375043123960495, 0.5713214874267578, 0.7610597014427185, -0.26512381434440613, 0.9134780764579773, -0.11114778369665146, 0.645834743976593, 1.0170363187789917, 0.023775514215230942, 0.022026866674423218, 0.44563794136047363, 0.0001605115830898285, 0.42360609769821167, 0.9861482381820679, -0.5610159635543823, 0.31828829646110535, 0.33472511172294617, -0.18640273809432983, -0.29818063974380493, -0.03357145935297012, -0.5606303811073303, 0.12972071766853333, 0.4926934838294983, -0.24627447128295898, 0.011313386261463165, 0.11885024607181549, 0.08100923150777817, -0.39325278997421265, -0.42269080877304077, 0.8146034479141235, 0.19732649624347687, -0.28137218952178955, 0.019504517316818237, -0.06577412784099579, 0.1718539595603943, -0.7919599413871765, -0.5403780937194824, -0.10376075655221939, 0.1149391159415245, -0.7281869053840637, -1.0335450172424316, 0.7006813883781433, -0.257615864276886, -0.18467430770397186, 0.1031598299741745, 0.7192513942718506, -0.5251493453979492, -1.1072349548339844, 0.4227108061313629, -0.3112097382545471, 0.2215866893529892, 0.25090667605400085, -1.3936645984649658, 0.7568968534469604, -0.1588570922613144, -0.06072678416967392, 0.07730293273925781, 0.11115190386772156, 0.07228635996580124, 0.5167696475982666, 0.5749250650405884, -0.10561174899339676, -0.1931004375219345, 0.3386709988117218, 1.0865116119384766, -0.5694639682769775, -0.6299088597297668, -0.49957194924354553, 0.5424211621284485, -0.2839658856391907, -0.43444007635116577, 0.6651014089584351, 1.0991791486740112, 0.9400670528411865, -0.13059589266777039, 0.6776742339134216, -0.5018165707588196, 0.3137394189834595, -0.27787715196609497, 0.4254287779331207, -0.11128757894039154, -0.25025472044944763, -0.5345023274421692, -0.8538495898246765, -0.7462294101715088, 0.6414097547531128, 0.1627633273601532, 0.23950529098510742, 0.48838627338409424, 1.036556601524353, -0.4469614624977112, 0.295377254486084, 0.10257939994335175, 0.22107651829719543, 0.3966251313686371, 0.3453747630119324, 0.34581705927848816, -0.4052250385284424, 0.2129884660243988, -0.4829851984977722, -0.6631889939308167, -0.1614500731229782, -1.170767903327942, -0.9907787442207336, -0.7071714997291565, -0.692376434803009, -0.43500471115112305, -0.1598326861858368, 0.8573366403579712, 1.203101634979248, -1.0711390972137451, -0.2519876956939697, -0.11040767282247543, 0.2839857339859009, -0.06424432247877121, -0.1472059041261673, 0.6667311191558838, 0.3174230456352234, -0.43747377395629883, -0.20002195239067078, -0.04050768166780472, 0.08440881967544556, -0.12522462010383606, -0.2196616232395172, -0.08878998458385468, -0.013028405606746674, 0.33219507336616516, 0.4223381280899048, -0.029481064528226852, -0.38216155767440796, -0.6387852430343628, 0.34891456365585327, 0.28712987899780273, 1.347437858581543, -0.41308391094207764, 0.27084988355636597, 0.4511009156703949, 0.34979531168937683, 1.1080048084259033, 0.2067175656557083, 0.36759647727012634, -0.6948935985565186, 0.1853579878807068, 0.034820668399333954, 0.42380207777023315, 0.30721980333328247, -0.5913735628128052, 0.6441042423248291, 0.5161620378494263, -0.559779942035675, -0.39198291301727295, 0.011566735804080963, -1.544333577156067, 0.42751532793045044, 0.7312965393066406, 0.0645517110824585, -0.5541505217552185, -0.187813401222229, -0.5239758491516113, 0.20734769105911255, -0.7949738502502441, 0.16612088680267334, 0.5852086544036865, 0.0045448727905750275, -0.6175665855407715, -0.2271277904510498, 0.6866079568862915, -0.6974826455116272, -1.1867241859436035, 0.30052173137664795, 0.44105246663093567, 0.4589540958404541, 0.09423878788948059, 0.7438608407974243, -0.3223782181739807, 0.09819898009300232, 0.21595999598503113, 0.366799533367157, -0.46221691370010376, -0.7318582534790039, -0.12083247303962708, -0.051050908863544464, -0.03373493254184723, -0.4181155562400818 ]
null
null
null
null
null
null
null
null
null
null
null
null
null
nielsr/CelebA-faces
nielsr
2022-03-21T14:48:37Z
457
4
null
[ "region:us" ]
2022-03-21T14:48:37Z
2022-03-21T14:45:41.000Z
2022-03-21T14:45:41
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
Dahoas/instruct-synthetic-prompt-responses
Dahoas
2022-12-19T16:18:50Z
456
9
null
[ "region:us" ]
2022-12-19T16:18:50Z
2022-12-19T16:18:47.000Z
2022-12-19T16:18:47
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
igbo_ner
null
2022-11-03T16:16:30Z
455
0
null
[ "task_categories:token-classification", "task_ids:named-entity-recognition", "annotations_creators:found", "language_creators:found", "multilinguality:monolingual", "size_categories:10K<n<100K", "source_datasets:original", "language:ig", "license:unknown", "arxiv:2004.00648", "region:us" ]
2022-11-03T16:16:30Z
2022-03-02T23:29:22.000Z
2022-03-02T23:29:22
--- annotations_creators: - found language_creators: - found language: - ig license: - unknown multilinguality: - monolingual size_categories: - 10K<n<100K source_datasets: - original task_categories: - token-classification task_ids: - named-entity-recognition paperswithcode_id: null pretty_name: Igbo NER dataset dataset_info: - config_name: ner_data features: - name: content_n dtype: string - name: named_entity dtype: string - name: sentences sequence: string splits: - name: train num_bytes: 60315228 num_examples: 30715 download_size: 3311204 dataset_size: 60315228 - config_name: free_text features: - name: sentences dtype: string splits: - name: train num_bytes: 1172152 num_examples: 10000 download_size: 1132151 dataset_size: 1172152 --- # Dataset Card for Igbo NER 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:** https://github.com/IgnatiusEzeani/IGBONLP/tree/master/ig_ner - **Repository:** https://github.com/IgnatiusEzeani/IGBONLP/tree/master/ig_ner - **Paper:** https://arxiv.org/abs/2004.00648 ### Dataset Summary [More Information Needed] ### Supported Tasks and Leaderboards [More Information Needed] ### Languages [More Information Needed] ## Dataset Structure ### Data Instances Here is an example from the dataset: ``` {'content_n': 'content_0', 'named_entity': 'Ike Ekweremmadụ', 'sentences': ['Ike Ekweremmadụ', "Ike ịda jụụ otụ nkeji banyere oke ogbugbu na-eme n'ala Naijiria agwụla Ekweremmadụ"]} ``` ### Data Fields - content_n : ID - named_entity : Name of the entity - sentences : List of sentences for the entity ### 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 @misc{ezeani2020igboenglish, title={Igbo-English Machine Translation: An Evaluation Benchmark}, author={Ignatius Ezeani and Paul Rayson and Ikechukwu Onyenwe and Chinedu Uchechukwu and Mark Hepple}, year={2020}, eprint={2004.00648}, archivePrefix={arXiv}, primaryClass={cs.CL} } ### Contributions Thanks to [@purvimisal](https://github.com/purvimisal) for adding this dataset.
[ -0.5572567582130432, -0.6057425737380981, -0.0851050466299057, 0.43828603625297546, -0.2315063774585724, -0.03412102907896042, -0.38328734040260315, -0.38889065384864807, 0.6318337917327881, 0.5492575168609619, -0.9054269194602966, -0.9163563251495361, -0.7619384527206421, 0.36146044731140137, -0.2739229202270508, 1.3240187168121338, 0.06095391511917114, -0.25360891222953796, -0.10880101472139359, -0.30252766609191895, -0.34787827730178833, -0.5040653347969055, -0.5943584442138672, -0.22730617225170135, 0.3534349501132965, 0.8308128118515015, 0.5403313040733337, 0.5934934616088867, 0.40026167035102844, 0.23786182701587677, -0.0435788556933403, 0.08906093239784241, -0.5141321420669556, -0.2676542103290558, -0.15421715378761292, -0.281912624835968, -0.7306020259857178, 0.024169420823454857, 0.6299917697906494, 0.40267252922058105, -0.12162468582391739, 0.527400553226471, 0.1587388515472412, 0.6215459108352661, -0.3068087100982666, 0.5634129643440247, -0.617821455001831, -0.04646461084485054, -0.48803725838661194, 0.008574135601520538, -0.07887161523103714, -0.5911718606948853, -0.18513642251491547, -0.7564839124679565, 0.06472724676132202, -0.005312477238476276, 1.2513666152954102, 0.10673792660236359, -0.20332153141498566, -0.2639883756637573, -0.2256627380847931, 0.5846783518791199, -1.0199270248413086, -0.011555544100701809, 0.7484827041625977, 0.34992265701293945, -0.10243143886327744, -0.6553016901016235, -0.7214517593383789, 0.03513316437602043, -0.32442519068717957, 0.32213324308395386, -0.13658849895000458, -0.27710315585136414, 0.5875304341316223, 0.43818333745002747, -0.43485262989997864, -0.03294594585895538, -0.5481444597244263, -0.15251471102237701, 0.9594487547874451, 0.21580210328102112, 0.3073056936264038, -0.6012287735939026, -0.1922055333852768, -0.25087931752204895, -0.5092161893844604, -0.08937618881464005, 0.8204765319824219, 0.40746983885765076, -0.551915168762207, 0.65614914894104, -0.44790545105934143, 0.608618438243866, -0.09508877247571945, -0.27314621210098267, 0.7998772263526917, -0.5763571858406067, 0.06611093878746033, 0.09843866527080536, 1.1769535541534424, 0.5326492190361023, 0.09258237481117249, 0.13327325880527496, -0.118536576628685, -0.14557188749313354, 0.06306386739015579, -0.9875628352165222, -0.12897972762584686, 0.2341432422399521, -0.5917401313781738, -0.33004143834114075, 0.1444162130355835, -1.2993106842041016, -0.004882114939391613, -0.14003585278987885, 0.1905934363603592, -0.28756266832351685, -0.2540605366230011, -0.3380831182003021, 0.13645775616168976, 0.3927712142467499, 0.03779520094394684, -0.8716880679130554, 0.548532247543335, 0.5678356289863586, 0.7803098559379578, 0.07839903235435486, -0.26456981897354126, -0.19623921811580658, 0.08261875063180923, 0.07601197063922882, 0.5514600276947021, -0.22906416654586792, -0.4797613024711609, -0.045391906052827835, 0.5022549033164978, -0.1026926189661026, -0.4443987011909485, 1.0932999849319458, -0.08096065372228622, 0.2837899327278137, -0.4214233458042145, -0.38875219225883484, -0.36945176124572754, 0.44532641768455505, -0.7515936493873596, 1.374443769454956, 0.27422666549682617, -0.7476063370704651, 0.35804665088653564, -0.9310991764068604, -0.5689492225646973, 0.2518799304962158, -0.25257954001426697, -0.6408661603927612, -0.30462977290153503, 0.2508900761604309, 0.679150402545929, -0.6795044541358948, 0.47626835107803345, -0.25720325112342834, -0.042856499552726746, -0.005790837109088898, -0.224971741437912, 1.1358529329299927, 0.3161267340183258, -0.3635258674621582, -0.036511585116386414, -1.0834755897521973, 0.07383327931165695, 0.3687209188938141, -0.29957544803619385, -0.06729984283447266, -0.12546075880527496, 0.3765091001987457, 0.24727334082126617, 0.3281680941581726, -0.4536339044570923, 0.29968053102493286, -0.0767819881439209, 0.5774418115615845, 0.6482544541358948, 0.09940457344055176, 0.22200369834899902, -0.20649980008602142, 0.5128269195556641, 0.06864814460277557, 0.3402606248855591, -0.0020653707906603813, -0.7303686738014221, -0.5932565331459045, -0.04012369364500046, 0.47907817363739014, 0.8023492693901062, -0.633364737033844, 0.9044128060340881, -0.6983377933502197, -0.670170247554779, -0.6880651712417603, 0.11422774195671082, 0.32198086380958557, 0.7490121722221375, 0.4920520782470703, -0.22363373637199402, -0.6740455031394958, -1.0123989582061768, 0.058081354945898056, -0.058406420052051544, 0.30644968152046204, 0.6380077600479126, 1.0177078247070312, -0.32838815450668335, 0.648266613483429, -0.6063586473464966, -0.5574572682380676, -0.3958350419998169, 0.022500833496451378, 0.7376579642295837, 0.649013102054596, 0.6303059458732605, -0.8837791681289673, -0.6587209701538086, 0.013023309409618378, -0.7577128410339355, -0.289494127035141, -0.05861455574631691, -0.22986982762813568, 0.1878206431865692, 0.4001990854740143, -0.19425874948501587, 0.6141528487205505, 0.7279627323150635, -0.5256813764572144, 0.3440527617931366, -0.09479954838752747, 0.22864562273025513, -1.4409159421920776, 0.31228235363960266, 0.000044401444029062986, 0.10217800736427307, -0.5025520324707031, -0.21537403762340546, -0.0027165391948074102, 0.10406770557165146, -0.12610885500907898, 0.6453683376312256, -0.47548651695251465, 0.15017876029014587, 0.06190682202577591, 0.12980185449123383, -0.06973850727081299, 0.48681026697158813, -0.12372780591249466, 0.7015019655227661, 0.5406239628791809, -0.5592541694641113, 0.1941230297088623, 0.6485877633094788, -0.5962079763412476, 0.8192415237426758, -0.8600960969924927, -0.037545546889305115, -0.19986197352409363, 0.0903012752532959, -0.7920815944671631, -0.4223152697086334, 0.7697724103927612, -0.577303409576416, 0.3428417444229126, -0.31474852561950684, -0.7847864031791687, -0.38990211486816406, -0.11669915914535522, 0.06625283509492874, 0.3114655911922455, -0.4043818414211273, 0.5051878094673157, 0.565291166305542, -0.0023951998446136713, -0.6282362937927246, -0.9817690253257751, 0.2531229555606842, -0.1516568660736084, -0.5739418268203735, 0.6482343673706055, -0.21628768742084503, -0.0062951864674687386, 0.28935495018959045, 0.22117213904857635, -0.06828518956899643, 0.12738916277885437, 0.31610822677612305, 0.1951528638601303, -0.10303036868572235, -0.09739188849925995, 0.09058679640293121, -0.17721186578273773, -0.14871560037136078, -0.0027294012252241373, 0.5942426919937134, -0.04375011846423149, -0.10240975767374039, -0.25029924511909485, 0.37899520993232727, 0.12021564692258835, -0.1959700733423233, 1.0479333400726318, 0.8852986693382263, -0.5138960480690002, 0.22482530772686005, -0.555874764919281, -0.026878956705331802, -0.38674718141555786, 0.38123637437820435, -0.3481665253639221, -0.584843635559082, 0.8376955986022949, 0.1525922268629074, 0.058933354914188385, 0.8244242668151855, 0.3377489745616913, 0.12132536619901657, 0.5432156324386597, 0.31820815801620483, -0.3495335578918457, 0.5576057434082031, -0.812865138053894, 0.07136060297489166, -1.1918855905532837, -0.5583521723747253, -0.8173459768295288, -0.5560474991798401, -0.9179970622062683, -0.2711016833782196, 0.10389754176139832, 0.2170059084892273, -0.05735760182142258, 0.6939209699630737, -0.605597972869873, 0.37103328108787537, 0.6588476896286011, 0.144182488322258, -0.016702810302376747, -0.031902942806482315, 0.10677435249090195, -0.032863885164260864, -0.7572973966598511, -0.6133142709732056, 1.1201248168945312, 0.07916063070297241, 0.38656073808670044, 0.17546820640563965, 0.8577844500541687, -0.05248494818806648, 0.42449724674224854, -0.559917151927948, 0.6584129333496094, -0.23645822703838348, -0.7365752458572388, -0.3352776765823364, -0.4786315858364105, -1.0735224485397339, 0.03350863978266716, -0.4426574409008026, -0.7256466150283813, 0.5008178949356079, 0.010982896201312542, -0.07842779904603958, 0.3065691292285919, -0.5956215262413025, 1.1551762819290161, -0.2521059513092041, -0.37155765295028687, -0.013114776462316513, -0.949419379234314, 0.0816798284649849, 0.27043479681015015, 0.4322166442871094, -0.25299254059791565, -0.037791620939970016, 0.9755558371543884, -0.6251177787780762, 0.8342109322547913, -0.1961771696805954, 0.24411891400814056, 0.4832701086997986, -0.40867534279823303, 0.6524530053138733, 0.22065609693527222, -0.35362011194229126, 0.60732102394104, -0.37150052189826965, -0.33268794417381287, -0.33862966299057007, 0.8762653470039368, -0.7438313961029053, -0.27289092540740967, -0.49940770864486694, -0.34743499755859375, 0.19632484018802643, 0.41568616032600403, 0.5092520713806152, 0.3336392045021057, -0.24806147813796997, 0.45238256454467773, 0.49822476506233215, -0.23543858528137207, 0.45266690850257874, 0.1975298523902893, -0.00013790499360766262, -0.9896130561828613, 0.8208875060081482, 0.5607761740684509, 0.1404843032360077, 0.39193809032440186, 0.06447054445743561, -0.3021732568740845, -0.4160861670970917, -0.551959753036499, 0.20862635970115662, -0.6461942195892334, -0.25947093963623047, -0.7774026989936829, -0.2132900506258011, -0.5857516527175903, 0.03931058570742607, 0.0351618267595768, -0.4800984859466553, -0.5798344612121582, -0.4522557258605957, 0.6657690405845642, 0.41554924845695496, -0.3392680585384369, 0.4531484842300415, -0.6237024068832397, 0.35431548953056335, -0.004101789090782404, 0.41112709045410156, 0.025141632184386253, -0.4766943156719208, -0.33750876784324646, 0.05320826172828674, -0.257469117641449, -1.0797454118728638, 0.6219788789749146, 0.3023219704627991, 0.8290634751319885, 0.11225683987140656, -0.15408872067928314, 0.7211477756500244, -0.1916748285293579, 0.8254149556159973, 0.03468590974807739, -0.708159327507019, 0.7288832664489746, -0.3611500859260559, 0.2845920920372009, 1.0035629272460938, 0.48252546787261963, -0.6561546325683594, 0.1609104871749878, -0.9592171907424927, -1.2327382564544678, 0.9201167225837708, 0.27598440647125244, 0.22461876273155212, -0.21373772621154785, 0.37566035985946655, 0.029977796599268913, 0.26804226636886597, -1.0592854022979736, -0.8657055497169495, -0.34370559453964233, -0.2751934230327606, -0.06732513010501862, -0.34641948342323303, -0.06090696528553963, -0.42298030853271484, 1.0966222286224365, -0.12386969476938248, 0.20771341025829315, 0.23637767136096954, -0.039760176092386246, 0.13335254788398743, 0.29141199588775635, 0.36306458711624146, 0.2333642542362213, -0.23457683622837067, -0.22286640107631683, 0.10438546538352966, -0.7026119232177734, -0.1627543866634369, 0.23656326532363892, -0.6869082450866699, -0.03376057371497154, 0.18182283639907837, 1.0817716121673584, 0.0820840373635292, -0.2611539661884308, 0.5686249732971191, 0.08941996842622757, -0.4077893793582916, -0.4884696900844574, -0.21117189526557922, 0.0153279984369874, 0.047413844615221024, 0.22012044489383698, 0.017972541972994804, 0.19658531248569489, -0.7204845547676086, 0.09105226397514343, 0.1365906298160553, -0.481187641620636, -0.30472514033317566, 0.7188827395439148, 0.04991142451763153, -0.2695945203304291, 0.8108581900596619, -0.3878227472305298, -0.4502432346343994, 0.8013894557952881, 0.5597141981124878, 1.0983339548110962, -0.04413607344031334, 0.3824554979801178, 1.10923171043396, 0.6874433755874634, -0.11787138134241104, 0.7812448740005493, 0.019176196306943893, -0.691085159778595, -0.23046159744262695, -0.5281821489334106, -0.002137482399120927, 0.14160749316215515, -0.8247572779655457, 0.4614686667919159, -0.4481412172317505, -0.21525585651397705, -0.19398625195026398, 0.14444246888160706, -0.8095023036003113, 0.3235035538673401, -0.17366242408752441, 0.7969251871109009, -0.8680467009544373, 0.806349515914917, 0.6173771619796753, -0.840388834476471, -0.7480213642120361, -0.1557513028383255, -0.12637725472450256, -0.6639259457588196, 0.48505645990371704, 0.12203819304704666, 0.5805871486663818, -0.11085282266139984, -0.6836888194084167, -0.9563406705856323, 1.3949556350708008, 0.26624181866645813, -0.5496549010276794, 0.2995341122150421, 0.1939389407634735, 0.5391008853912354, -0.3939531445503235, 0.39222392439842224, 0.46759432554244995, 0.8959602117538452, 0.14762967824935913, -0.6480638980865479, 0.2671976387500763, -0.6365180611610413, -0.05178435519337654, 0.2581338584423065, -0.9036182761192322, 0.7812593579292297, -0.1541786789894104, -0.2012208104133606, -0.12196477502584457, 0.659815788269043, 0.13770949840545654, 0.2910866439342499, 0.20131872594356537, 0.8640796542167664, 0.7688465714454651, -0.4760352373123169, 1.0961966514587402, -0.3730146288871765, 0.27485135197639465, 1.4169607162475586, 0.10177838057279587, 0.6927112340927124, 0.39986470341682434, -0.32036834955215454, 0.5726191401481628, 0.4810103178024292, -0.37997904419898987, 0.5485392808914185, 0.17841067910194397, 0.05113512650132179, 0.12227029353380203, -0.37722066044807434, -0.49848586320877075, 0.1895800530910492, 0.4687145948410034, -0.46263453364372253, 0.06297752261161804, -0.3633459210395813, 0.364872545003891, 0.08969598263502121, -0.3917596936225891, 0.8582789897918701, 0.00011744842049665749, -0.5110411047935486, 0.27349036931991577, -0.1137499138712883, 0.7188022136688232, -0.6046769022941589, -0.2032133787870407, -0.07178661972284317, -0.06181269511580467, -0.6396724581718445, -0.9978331327438354, 0.5368283987045288, -0.11671809107065201, -0.28542324900627136, -0.20583979785442352, 0.5810213685035706, -0.4768000543117523, -0.7727754712104797, 0.2555578351020813, 0.17416587471961975, 0.18745550513267517, 0.16264034807682037, -0.917756199836731, -0.010735254734754562, 0.19678889214992523, -0.23795226216316223, 0.23063695430755615, 0.4980555772781372, -0.17725802958011627, 0.33363109827041626, 0.7169049382209778, 0.07944227755069733, 0.1152401939034462, 0.18828515708446503, 0.6649441719055176, -0.6912793517112732, -0.3442409038543701, -0.8627392649650574, 0.6371598243713379, -0.5667897462844849, -0.7225258350372314, 0.8837302327156067, 0.8804845213890076, 1.165913701057434, -0.02721000462770462, 0.925406813621521, -0.7522055506706238, 0.4476145803928375, -0.3032757639884949, 0.7563522458076477, -0.5349014401435852, -0.03496430441737175, -0.5360682010650635, -0.957817018032074, -0.3389989733695984, 0.7715563774108887, -0.3420076370239258, -0.007485365029424429, 0.45482322573661804, 0.8579537868499756, 0.08667101711034775, 0.08606179803609848, -0.003621625015512109, 0.5802329778671265, 0.14186279475688934, 0.3725074529647827, 0.3319990038871765, -1.0889339447021484, 0.5337538719177246, -0.6140119433403015, -0.08502024412155151, -0.16578085720539093, -1.1688460111618042, -0.7236531972885132, -0.7202219367027283, -0.6332350373268127, -0.49633917212486267, -0.21649181842803955, 1.0101205110549927, 0.3884733021259308, -1.0463653802871704, -0.4311297535896301, -0.037328269332647324, 0.2171129435300827, -0.3263154625892639, -0.25812095403671265, 0.410726398229599, 0.2781082093715668, -0.6943647265434265, -0.0020429810974746943, 0.09487301111221313, 0.06850259006023407, 0.11451706290245056, -0.1819090098142624, -0.5566843748092651, -0.27566638588905334, 0.5495871901512146, 0.37250345945358276, -0.5300022959709167, 0.013543311506509781, -0.02094907872378826, 0.016413981094956398, 0.2355097085237503, 0.12251751869916916, -0.41674861311912537, 0.2705651819705963, 0.6779043078422546, 0.25983959436416626, 0.6653663516044617, -0.1646757572889328, 0.14036129415035248, -0.5336212515830994, 0.15810313820838928, 0.12434867769479752, 0.5688287615776062, 0.38866710662841797, -0.5075704455375671, 1.1217910051345825, 0.1804679036140442, -0.4782072901725769, -0.7776974439620972, -0.14998014271259308, -1.2011562585830688, 0.20904529094696045, 1.212369441986084, -0.07432753592729568, -0.3887445032596588, 0.03428817167878151, -0.33624452352523804, 0.29834577441215515, -0.6787526607513428, 0.5088792443275452, 0.7318089604377747, 0.3524695634841919, 0.06410420686006546, -0.6251171231269836, 0.2980963885784149, -0.024872686713933945, -1.226434588432312, -0.2040673792362213, 0.344307541847229, 0.27879709005355835, 0.16819660365581512, 0.8121860027313232, -0.470611035823822, -0.05478467047214508, -0.09355238080024719, 0.4087400436401367, 0.07169756293296814, -0.08707281947135925, -0.21366456151008606, -0.14069941639900208, -0.3722001314163208, -0.033418457955121994 ]
null
null
null
null
null
null
null
null
null
null
null
null
null
xsum_factuality
null
2023-01-25T15:03:16Z
455
4
null
[ "task_categories:summarization", "annotations_creators:crowdsourced", "language_creators:crowdsourced", "multilinguality:monolingual", "size_categories:1K<n<10K", "source_datasets:extended|other-xsum", "language:en", "license:cc-by-4.0", "hallucinations", "region:us" ]
2023-01-25T15:03:16Z
2022-03-02T23:29:22.000Z
2022-03-02T23:29:22
--- annotations_creators: - crowdsourced language_creators: - crowdsourced language: - en license: - cc-by-4.0 multilinguality: - monolingual size_categories: - 1K<n<10K source_datasets: - extended|other-xsum task_categories: - summarization task_ids: [] pretty_name: XSum Hallucination Annotations tags: - hallucinations dataset_info: - config_name: xsum_factuality features: - name: bbcid dtype: int32 - name: system dtype: string - name: summary dtype: string - name: is_factual dtype: class_label: names: '0': 'no' '1': 'yes' - name: worker_id dtype: string splits: - name: train num_bytes: 800027 num_examples: 5597 download_size: 2864759 dataset_size: 800027 - config_name: xsum_faithfulness features: - name: bbcid dtype: int32 - name: system dtype: string - name: summary dtype: string - name: hallucination_type dtype: class_label: names: '0': intrinsic '1': extrinsic - name: hallucinated_span_start dtype: int32 - name: hallucinated_span_end dtype: int32 - name: worker_id dtype: string splits: - name: train num_bytes: 1750325 num_examples: 11185 download_size: 2864759 dataset_size: 1750325 --- # Dataset Card for XSum Hallucination Annotations ## 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:** [XSUM Hallucination Annotations Homepage](https://research.google/tools/datasets/xsum-hallucination-annotations/) - **Repository:** [XSUM Hallucination Annotations Homepage](https://github.com/google-research-datasets/xsum_hallucination_annotations) - **Paper:** [ACL Web](https://www.aclweb.org/anthology/2020.acl-main.173.pdf) - **Point of Contact:** [xsum-hallucinations-acl20@google.com](mailto:xsum-hallucinations-acl20@google.com) ### Dataset Summary Neural abstractive summarization models are highly prone to hallucinate content that is unfaithful to the input document. The popular metric such as ROUGE fails to show the severity of the problem. This dataset contains a large scale human evaluation of several neural abstractive summarization systems to better understand the types of hallucinations they produce. The dataset consists of faithfulness and factuality annotations of abstractive summaries for the XSum dataset. The dataset has crowdsourced 3 judgements for each of 500 x 5 document-system pairs. This will be a valuable resource to the abstractive summarization community. ### Supported Tasks and Leaderboards * `summarization`: : The dataset can be used to train a model for Summarization,, which consists in summarizing a given document. Success on this task is typically measured by achieving a *high/low* [ROUGE Score](https://huggingface.co/metrics/rouge). ### Languages The text in the dataset is in English which are abstractive summaries for the [XSum dataset](https://www.aclweb.org/anthology/D18-1206.pdf). The associated BCP-47 code is `en`. ## Dataset Structure ### Data Instances ##### Faithfulness annotations dataset A typical data point consists of an ID referring to the news article(complete document), summary, and the hallucination span information. An example from the XSum Faithfulness dataset looks as follows: ``` { 'bbcid': 34687720, 'hallucinated_span_end': 114, 'hallucinated_span_start': 1, 'hallucination_type': 1, 'summary': 'rory mcilroy will take a one-shot lead into the final round of the wgc-hsbc champions after carding a three-under', 'system': 'BERTS2S', 'worker_id': 'wid_0' } ``` ##### Factuality annotations dataset A typical data point consists of an ID referring to the news article(complete document), summary, and whether the summary is factual or not. An example from the XSum Factuality dataset looks as follows: ``` { 'bbcid': 29911712, 'is_factual': 0, 'summary': 'more than 50 pupils at a bristol academy have been sent home from school because of a lack of uniform.', 'system': 'BERTS2S', 'worker_id': 'wid_0' } ``` ### Data Fields ##### Faithfulness annotations dataset Raters are shown the news article and the system summary, and are tasked with identifying and annotating the spans that aren't supported by the input article. The file contains the following columns: - `bbcid`: Document id in the XSum corpus. - `system`: Name of neural summarizer. - `summary`: Summary generated by ‘system’. - `hallucination_type`: Type of hallucination: intrinsic (0) or extrinsic (1) - `hallucinated_span`: Hallucinated span in the ‘summary’. - `hallucinated_span_start`: Index of the start of the hallucinated span. - `hallucinated_span_end`: Index of the end of the hallucinated span. - `worker_id`: Worker ID (one of 'wid_0', 'wid_1', 'wid_2') The `hallucination_type` column has NULL value for some entries which have been replaced iwth `-1`. ##### Factuality annotations dataset Raters are shown the news article and the hallucinated system summary, and are tasked with assessing the summary whether it is factual or not. The file contains the following columns: - `bbcid1: Document id in the XSum corpus. - `system`: Name of neural summarizer. - `summary`: Summary generated by ‘system’. - `is_factual`: Yes (1) or No (0) - `worker_id`: Worker ID (one of 'wid_0', 'wid_1', 'wid_2') The `is_factual` column has NULL value for some entries which have been replaced iwth `-1`. ### Data Splits There is only a single split for both the Faithfulness annotations dataset and Factuality annotations dataset. | | train | |--------------------------|------:| | Faithfulness annotations | 11185 | | Factuality annotations | 5597 | ## 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 4.0 International](https://creativecommons.org/licenses/by/4.0/legalcode) ### Citation Information ``` @InProceedings{maynez_acl20, author = "Joshua Maynez and Shashi Narayan and Bernd Bohnet and Ryan Thomas Mcdonald", title = "On Faithfulness and Factuality in Abstractive Summarization", booktitle = "Proceedings of the 58th Annual Meeting of the Association for Computational Linguistics", year = "2020", pages = "1906--1919", address = "Online", } ``` ### Contributions Thanks to [@vineeths96](https://github.com/vineeths96) for adding this dataset.
[ -0.43596765398979187, -0.4013635814189911, 0.30163198709487915, 0.14802759885787964, -0.2233491837978363, -0.04718508943915367, -0.29451313614845276, -0.4547599256038666, 0.8496254086494446, 0.5059146285057068, -0.6328401565551758, -0.8416076302528381, -0.6912037134170532, 0.32817989587783813, -0.41220954060554504, 1.2734004259109497, 0.05912315845489502, -0.050459541380405426, -0.16883578896522522, -0.30277591943740845, -0.06937815994024277, -0.7377237677574158, -0.4436408579349518, -0.1695810705423355, 0.51212477684021, 0.4033186137676239, 0.672431468963623, 0.6837184429168701, 0.34538739919662476, 0.2634240984916687, -0.12267118692398071, 0.22482851147651672, -0.5803163051605225, -0.13843683898448944, 0.02658204361796379, -0.3983295261859894, -0.5899181962013245, 0.08090835809707642, 0.597559928894043, 0.8285635709762573, -0.008139190264046192, 0.27126064896583557, -0.11973858624696732, 0.5341557264328003, -0.4796985983848572, 0.42028725147247314, -0.4188207983970642, 0.009075182490050793, -0.10514036566019058, -0.21616433560848236, -0.21238160133361816, -0.5630531907081604, -0.028762582689523697, -0.6357493996620178, 0.3302727937698364, 0.13239513337612152, 1.0272564888000488, 0.3082386255264282, -0.034108467400074005, -0.4071662127971649, -0.15369512140750885, 0.5377163887023926, -0.8557754158973694, 0.13429421186447144, 0.6849542856216431, -0.055213820189237595, -0.03672529011964798, -0.7545441389083862, -0.7294725179672241, -0.17007355391979218, -0.5766835808753967, 0.2295575886964798, 0.09525317698717117, -0.1253909468650818, 0.41321060061454773, 0.6159258484840393, -0.6657907962799072, -0.3302949368953705, -0.5726750493049622, -0.28139087557792664, 0.8226930499076843, 0.19265753030776978, 0.18379148840904236, -0.6565675735473633, 0.001720634289085865, -0.1655648797750473, -0.360090434551239, -0.20056875050067902, 0.3722749650478363, 0.3797658681869507, -0.45643264055252075, 0.6925675868988037, -0.23017598688602448, 0.3958447277545929, -0.1973063200712204, -0.2593386769294739, 0.7760564088821411, -0.5401726365089417, -0.10409049689769745, 0.44151461124420166, 0.770080029964447, 0.5254780054092407, 0.11487065255641937, -0.11162783950567245, -0.07824700325727463, 0.18850183486938477, 0.0659441351890564, -0.6890118718147278, -0.492747962474823, 0.5081397891044617, -0.4437013566493988, -0.5253950953483582, 0.23548415303230286, -0.7627617120742798, -0.2660273015499115, -0.2348732352256775, 0.3434363007545471, -0.4287359118461609, -0.22019429504871368, 0.11847611516714096, -0.4311419725418091, 0.07756124436855316, 0.028187675401568413, -0.9513198733329773, 0.5988501906394958, 0.5118127465248108, 1.0516176223754883, -0.2185126394033432, -0.22172154486179352, -0.2806450426578522, 0.04407549649477005, -0.26992878317832947, 0.4698510766029358, -0.04919645935297012, -0.32429835200309753, -0.1426139920949936, 0.2685174345970154, -0.05747683718800545, -0.42794445157051086, 0.8948283791542053, -0.27051740884780884, 0.34576088190078735, -0.6757882237434387, -0.4667259156703949, -0.44547614455223083, 0.26934951543807983, -0.7269881963729858, 0.9537920951843262, 0.27588918805122375, -1.053586721420288, 0.4488579332828522, -0.6327612996101379, -0.5064712166786194, -0.16615326702594757, -0.34522634744644165, -0.4591103196144104, -0.05358203127980232, 0.06157424673438072, 0.4734949767589569, 0.06954201310873032, 0.11578352004289627, -0.11105586588382721, -0.33199650049209595, 0.119111068546772, -0.09866942465305328, 1.243883728981018, -0.14787326753139496, -0.5498650670051575, 0.09222248196601868, -1.0026565790176392, -0.21834300458431244, 0.3149854838848114, 0.0013326278422027826, -0.4351198375225067, -0.07265730947256088, 0.1236918568611145, 0.4293954074382782, -0.007159463129937649, -0.47373610734939575, 0.2022973895072937, -0.30130207538604736, 0.14750580489635468, 0.6066536903381348, 0.1540510505437851, -0.03275531902909279, -0.563954770565033, 0.04910152405500412, -0.05206890031695366, -0.15378685295581818, -0.20408450067043304, -0.5436447262763977, -0.7242303490638733, -0.36746224761009216, 0.24350164830684662, 0.6089709997177124, -0.395713746547699, 0.8938820362091064, -0.574184000492096, -0.41870617866516113, -0.4980393350124359, -0.13262790441513062, 0.4071952700614929, 0.7076483368873596, 0.581091582775116, -0.2850340008735657, -0.850703775882721, -0.6550033092498779, 0.4181370437145233, -0.25815126299858093, 0.08113598823547363, 0.40900325775146484, 0.9659861922264099, -0.14392134547233582, 0.6778773069381714, -0.7882382273674011, -0.6836017370223999, -0.20334076881408691, 0.17372675240039825, 0.2747708857059479, 0.461076945066452, 0.4191702604293823, -0.8261616826057434, -0.17595288157463074, -0.12744303047657013, -1.1702172756195068, -0.1801195591688156, -0.2785811424255371, 0.006087515503168106, 0.4994044005870819, 0.34469282627105713, -0.5126944780349731, 0.5224090814590454, 0.3944845497608185, -0.5041098594665527, 0.7724050283432007, -0.07483088225126266, 0.3378446400165558, -1.042502999305725, 0.25891679525375366, -0.12676367163658142, -0.18341130018234253, -0.42310693860054016, -0.24117694795131683, -0.13048209249973297, 0.3887040615081787, -0.2651635408401489, 0.42494577169418335, -0.45822733640670776, -0.004005156923085451, 0.007996432483196259, 0.4314784109592438, 0.033932045102119446, 0.7122333645820618, 0.14861008524894714, 0.5219188332557678, 0.4001891016960144, -0.5361140370368958, 0.10705864429473877, 0.7721184492111206, -0.35472869873046875, 0.2835330069065094, -0.690360426902771, -0.3009333610534668, -0.07754551619291306, 0.22099857032299042, -1.0103633403778076, -0.48753076791763306, 0.5087844729423523, -0.7476303577423096, 0.19471056759357452, 0.1436948925256729, -0.591245174407959, -0.10652399063110352, -0.566236138343811, 0.20773622393608093, 0.32328441739082336, -0.24383790791034698, 0.35333502292633057, 0.5088849067687988, -0.15014056861400604, -0.5683659315109253, -0.8620001673698425, 0.31484419107437134, 0.09683796763420105, -0.7578160762786865, 0.6037096977233887, -0.045676883310079575, -0.37047815322875977, 0.16355423629283905, -0.048472970724105835, 0.3081887364387512, -0.05879092589020729, 0.4168156385421753, 0.3527880311012268, -0.07147486507892609, -0.15735362470149994, 0.17748107016086578, -0.29054009914398193, 0.3436926603317261, -0.03843076154589653, 0.5849170684814453, 0.07902640104293823, -0.12083913385868073, -0.359880656003952, 0.3820589482784271, 0.43568941950798035, 0.05813941732048988, 0.729051947593689, 0.5069330930709839, -0.6367110013961792, 0.28453195095062256, -0.4353525638580322, -0.36505264043807983, -0.3461119532585144, 0.4334034323692322, -0.26286131143569946, -0.5366780757904053, 0.7684658169746399, 0.6120052337646484, 0.16006647050380707, 0.7449983954429626, 0.7102516293525696, 0.09277966618537903, 0.9146180152893066, 0.347702294588089, -0.09920889139175415, 0.06903818249702454, -0.7180758118629456, -0.23264080286026, -0.7676366567611694, -0.39705878496170044, -0.4593397378921509, -0.20936264097690582, -0.5437095165252686, -0.07718146592378616, 0.1073891818523407, -0.4421909749507904, 0.09479418396949768, 0.3996143043041229, -0.4311555027961731, 0.26035141944885254, 0.489135205745697, 0.1597939431667328, 0.41773512959480286, -0.09545356035232544, -0.10488544404506683, -0.06569723784923553, -0.535888135433197, -0.5545464754104614, 0.9300163388252258, 0.14476077258586884, 0.3677290380001068, 0.0899953842163086, 0.7308509349822998, 0.42474526166915894, 0.12050687521696091, -0.5157613158226013, 0.6094495058059692, -0.12990133464336395, -0.7707556486129761, -0.35314974188804626, -0.5542832612991333, -0.8183119297027588, 0.20955131947994232, -0.37793970108032227, -0.8763097524642944, 0.5451220273971558, -0.22550122439861298, -0.5108717679977417, 0.3999457061290741, -0.5205705165863037, 0.7439587712287903, -0.04144293814897537, -0.27148932218551636, -0.09681659936904907, -1.1469571590423584, 0.6230455040931702, -0.12303227931261063, 0.17072103917598724, -0.0705670490860939, -0.0764591172337532, 1.1187454462051392, -0.6089378595352173, 0.9152621030807495, -0.09933897852897644, 0.04214780405163765, 0.02625386416912079, -0.23698993027210236, 0.29490554332733154, 0.2334567755460739, -0.11581334471702576, 0.4730444550514221, 0.07325250655412674, -0.2977650463581085, -0.5180020332336426, 0.6263378858566284, -0.8640214800834656, -0.3906795084476471, -0.7303774356842041, -0.5927306413650513, 0.15511584281921387, 0.3342702388763428, 0.5794910192489624, 0.4295201003551483, -0.061548396944999695, 0.08313105255365372, 0.8015094995498657, -0.03254246711730957, 0.24702145159244537, -0.04844941943883896, -0.28276875615119934, -0.7908452749252319, 0.8236872553825378, 0.5635021924972534, 0.13440197706222534, 0.30201634764671326, -0.05905086547136307, -0.3212237060070038, -0.4187452793121338, -0.3394570052623749, 0.47949594259262085, -0.7326437830924988, -0.06094597280025482, -1.1157026290893555, -0.36000654101371765, -0.6292288303375244, -0.16054408252239227, 0.014738080091774464, -0.7921519875526428, -0.39538732171058655, -0.4459739625453949, 0.3004166781902313, 0.37996160984039307, -0.34669584035873413, 0.1533535122871399, -0.6528605818748474, 0.6474645137786865, -0.0497971810400486, 0.1086820513010025, -0.08401890099048615, -0.6772331595420837, -0.3232745826244354, 0.09250815957784653, -0.010175485163927078, -0.902249276638031, 0.48122963309288025, 0.09868848323822021, 0.5729385614395142, 0.4908367395401001, 0.2966645359992981, 0.6248294115066528, -0.09940934181213379, 0.8723912835121155, -0.13153937458992004, -0.7259486317634583, 0.32191988825798035, -0.1288236528635025, 0.04323912411928177, 0.9092354774475098, 0.6738716959953308, -0.636924147605896, -0.26742327213287354, -0.8386799693107605, -1.1007732152938843, 0.8237191438674927, 0.5251082181930542, 0.04002119600772858, -0.17608420550823212, 0.3708084225654602, 0.23940905928611755, 0.2623668611049652, -0.689367949962616, -0.8714406490325928, -0.233772873878479, -0.05715528503060341, 0.023736607283353806, -0.2796795070171356, -0.3369848430156708, -0.46828892827033997, 1.1401673555374146, 0.04930086061358452, 0.30535992980003357, 0.5216224789619446, -0.2218652069568634, 0.12347330152988434, -0.2674488425254822, 0.8011445999145508, 0.555535614490509, -0.5696068406105042, 0.2233295738697052, 0.2301027923822403, -0.895759105682373, 0.08519575744867325, 0.24665088951587677, -0.37679803371429443, 0.23569123446941376, 0.5039795637130737, 0.6190136671066284, 0.10168930143117905, -0.4529147148132324, 0.5433711409568787, -0.23631493747234344, -0.46982452273368835, -0.6393457055091858, 0.1120036169886589, -0.2549757957458496, -0.06267300993204117, 0.5161145925521851, 0.14297790825366974, 0.2277344912290573, -0.35524582862854004, 0.5169910192489624, 0.09380897134542465, -0.49115681648254395, -0.3239312171936035, 0.6321653723716736, -0.19651642441749573, -0.04494582116603851, 0.6087260842323303, -0.618261992931366, -0.4997011125087738, 0.49176129698753357, 0.42297348380088806, 1.0540263652801514, 0.21905772387981415, 0.1705845147371292, 0.6372491121292114, 0.5400149822235107, 0.02561366930603981, 0.4438306987285614, -0.05831092968583107, -0.681362509727478, -0.3918628990650177, -0.34910041093826294, -0.24249038100242615, -0.05401056632399559, -0.5368526577949524, 0.4876261353492737, -0.2561078369617462, -0.07326242327690125, 0.10583975911140442, 0.2706584930419922, -0.10414943099021912, 0.371428519487381, 0.1267952173948288, 1.0183547735214233, -1.04087233543396, 0.5288329720497131, 0.37263011932373047, -0.8696529269218445, -0.5175498723983765, -0.08682536333799362, 0.20053280889987946, -0.5514756441116333, 0.1859930455684662, 0.16897159814834595, 0.1481236070394516, -0.11190113425254822, -0.4913727641105652, -0.802444577217102, 1.2204294204711914, 0.16799785196781158, -0.17678891122341156, -0.08476554602384567, 0.08337701857089996, 0.3652839660644531, -0.25759997963905334, 0.2685151696205139, 0.6933364272117615, 0.686447024345398, 0.2932787239551544, -0.309100866317749, 0.4546780586242676, -0.49229899048805237, -0.4014952778816223, 0.07260192185640335, -0.545214056968689, 0.6951442360877991, -0.4071272015571594, -0.12728674709796906, -0.04588635265827179, 0.8808569312095642, 0.4192046821117401, 0.44814592599868774, 0.4481423795223236, 0.7685285806655884, 1.0672675371170044, -0.2491011619567871, 1.043386697769165, -0.3438316881656647, 0.2002854347229004, 1.1947585344314575, -0.020442748442292213, 0.5393149852752686, 0.4054892957210541, -0.11226151883602142, 0.5868985652923584, 0.6984090805053711, -0.19998732209205627, 0.45548930764198303, 0.0864606574177742, -0.042200490832328796, 0.11012735962867737, -0.0072189392521977425, -0.5356747508049011, 0.2741644084453583, 0.3945762515068054, -0.48623743653297424, -0.11828059703111649, -0.19861584901809692, 0.5797339081764221, -0.24553579092025757, -0.18195007741451263, 0.7296088337898254, 0.055353157222270966, -0.44490793347358704, 0.6781892776489258, -0.07760690897703171, 0.59834223985672, -0.729627251625061, -0.09333689510822296, -0.30736029148101807, -0.05905329808592796, -0.7776592969894409, -0.6501429080963135, 0.6768954992294312, -0.26896339654922485, -0.40495428442955017, 0.2569577097892761, 0.4602183401584625, -0.3109702169895172, -0.6701819896697998, 0.10092823207378387, 0.25554853677749634, 0.46448221802711487, -0.11006361991167068, -0.5029561519622803, 0.094251848757267, 0.18108953535556793, -0.23020507395267487, 0.13499417901039124, 0.5101286172866821, -0.29877835512161255, 0.44834351539611816, 0.7906694412231445, 0.27698859572410583, -0.07749449461698532, -0.02481515146791935, 0.8962969779968262, -0.7468546032905579, -0.49158775806427, -0.9118708968162537, 0.6593818068504333, -0.4803003966808319, -0.504009485244751, 0.8917475342750549, 0.9465120434761047, 0.8134779930114746, 0.03634500876069069, 0.8918822407722473, -0.45778509974479675, 0.2899238169193268, -0.30255910754203796, 1.0323724746704102, -0.5461562275886536, 0.11376311630010605, -0.5763543844223022, -0.792994499206543, -0.741104781627655, 0.6785925030708313, -0.2270956188440323, 0.1343771517276764, 0.7294871211051941, 0.9912915825843811, 0.061759769916534424, 0.18912163376808167, 0.31740522384643555, 0.4567876160144806, 0.07732003927230835, 0.15735751390457153, 0.3041762411594391, -0.6901816725730896, 0.4523315131664276, -0.5233860015869141, -0.473348468542099, -0.28502964973449707, -0.8289370536804199, -0.7515871524810791, -0.8674952983856201, -0.5796979069709778, -0.6588050723075867, 0.019512051716446877, 1.1729872226715088, 0.527703583240509, -0.9784037470817566, -0.24989229440689087, 0.19859188795089722, 0.2498215138912201, -0.4507391154766083, -0.23320655524730682, 0.7299795746803284, -0.2626712918281555, -0.5096900463104248, -0.21314463019371033, 0.22637441754341125, 0.003425713861361146, -0.3140988349914551, -0.15100064873695374, -0.445371150970459, 0.02149823121726513, 0.6509004831314087, 0.2148604840040207, -0.3975449502468109, -0.12610971927642822, 0.22637209296226501, -0.193462073802948, 0.32232600450515747, 0.3998276889324188, -0.625089168548584, 0.14460985362529755, 0.6004781126976013, 0.3654071092605591, 0.5977418422698975, -0.05712570250034332, 0.030750788748264313, -0.6893591284751892, -0.08631588518619537, 0.13570313155651093, 0.5698549747467041, 0.4069099426269531, -0.4157332479953766, 0.7807876467704773, 0.48628392815589905, -0.5067781805992126, -0.8818826675415039, -0.3408471643924713, -1.3285064697265625, -0.05251666530966759, 1.2882909774780273, 0.04391421005129814, -0.44075849652290344, -0.4539373517036438, -0.47689640522003174, 0.3241676390171051, -0.45169198513031006, 1.0573019981384277, 0.6231054663658142, 0.0044942195527255535, 0.08503326773643494, -0.38115012645721436, 0.5164818167686462, 0.03330691531300545, -0.8796989321708679, 0.19206586480140686, 0.4988635182380676, -0.002752474509179592, 0.6085191369056702, 0.7593697905540466, -0.3798271715641022, 0.1872776448726654, 0.18419165909290314, 0.3039247989654541, -0.07826236635446548, -0.18816393613815308, -0.2655089199542999, 0.17651724815368652, -0.3495478332042694, -0.21822766959667206 ]
null
null
null
null
null
null
null
null
null
null
null
null
null
GEM/conversational_weather
GEM
2022-10-24T15:30:13Z
455
2
null
[ "task_categories:table-to-text", "annotations_creators:none", "language_creators:unknown", "multilinguality:unknown", "size_categories:unknown", "source_datasets:original", "language:en", "license:cc-by-nc-4.0", "data-to-text", "region:us" ]
2022-10-24T15:30:13Z
2022-03-02T23:29:22.000Z
2022-03-02T23:29:22
--- annotations_creators: - none language_creators: - unknown language: - en license: - cc-by-nc-4.0 multilinguality: - unknown size_categories: - unknown source_datasets: - original task_categories: - table-to-text task_ids: [] pretty_name: conversational_weather tags: - data-to-text --- # Dataset Card for GEM/conversational_weather ## Dataset Description - **Homepage:** [Needs More Information] - **Repository:** https://github.com/facebookresearch/TreeNLG - **Paper:** https://aclanthology.org/P19-1080 - **Leaderboard:** N/A - **Point of Contact:** Kartikeya Upasani ### Link to Main Data Card You can find the main data card on the [GEM Website](https://gem-benchmark.com/data_cards/conversational_weather). ### Dataset Summary The purpose of this dataset is to assess how well a model can learn a template-like structure in a very low data setting. The task here is to produce a response to a weather-related query. The reply is further specified through the data attributes and discourse structure in the input. The output contains both the lexicalized text and discourse markers for attributes (e.g., `_ARG_TEMP_ 34`). You can load the dataset via: ``` import datasets data = datasets.load_dataset('GEM/conversational_weather') ``` The data loader can be found [here](https://huggingface.co/datasets/GEM/conversational_weather). #### paper [ACL Anthology](https://aclanthology.org/P19-1080) #### authors Anusha Balakrishnan, Jinfeng Rao, Kartikeya Upasani, Michael White, Rajen Subba (Facebook Conversational AI) ## Dataset Overview ### Where to find the Data and its Documentation #### Download <!-- info: What is the link to where the original dataset is hosted? --> <!-- scope: telescope --> [Github](https://github.com/facebookresearch/TreeNLG) #### Paper <!-- info: What is the link to the paper describing the dataset (open access preferred)? --> <!-- scope: telescope --> [ACL Anthology](https://aclanthology.org/P19-1080) #### 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{balakrishnan-etal-2019-constrained, title = "Constrained Decoding for Neural {NLG} from Compositional Representations in Task-Oriented Dialogue", author = "Balakrishnan, Anusha and Rao, Jinfeng and Upasani, Kartikeya and White, Michael and Subba, Rajen", booktitle = "Proceedings of the 57th Annual Meeting of the Association for Computational Linguistics", month = jul, year = "2019", address = "Florence, Italy", publisher = "Association for Computational Linguistics", url = "https://www.aclweb.org/anthology/P19-1080", doi = "10.18653/v1/P19-1080", pages = "831--844" } ``` #### 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 --> Kartikeya Upasani #### Contact Email <!-- info: If known, provide the email of at least one person the reader can contact for questions about the dataset. --> <!-- scope: periscope --> kart@fb.com #### 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 --> no #### Covered Languages <!-- quick --> <!-- info: What languages/dialects are covered in the dataset? --> <!-- scope: telescope --> `English` #### 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 --> This dataset is intended to help develop conversational agents that exhibit human-like properties such as matching the framing of the response with the query or contrasting relevant data attributes. #### Primary Task <!-- info: What primary task does the dataset support? --> <!-- scope: telescope --> Data-to-Text #### Communicative Goal <!-- quick --> <!-- info: Provide a short description of the communicative goal of a model trained for this task on this dataset. --> <!-- scope: periscope --> Producing a text that is a response to a weather query as per the discourse structure and data attributes specified in the input meaning representation. ### Credit #### Curation Organization Type(s) <!-- info: In what kind of organization did the dataset curation happen? --> <!-- scope: telescope --> `industry` #### Curation Organization(s) <!-- info: Name the organization(s). --> <!-- scope: periscope --> Facebook #### Dataset Creators <!-- info: Who created the original dataset? List the people involved in collecting the dataset and their affiliation(s). --> <!-- scope: microscope --> Anusha Balakrishnan, Jinfeng Rao, Kartikeya Upasani, Michael White, Rajen Subba (Facebook Conversational AI) #### Funding <!-- info: Who funded the data creation? --> <!-- scope: microscope --> Facebook #### 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 --> Vipul Raheja (Grammarly) ### Dataset Structure #### Data Fields <!-- info: List and describe the fields present in the dataset. --> <!-- scope: telescope --> - `gem_id`: (string): GEM-formatted row id - `id`: (string): Row id in the original data - `user_query`: (string): Natural language weather query from humans - `tree_str_mr`: (string): Synthetically-added user context (datetime and location) in the form of a tree-structured MR - `response`: (string): A tree-structured annotation of the response. #### Example Instance <!-- info: Provide a JSON formatted example of a typical instance in the dataset. --> <!-- scope: periscope --> ``` {'gem_id': 'weather-train-11', 'id': '1108963', 'synthetic_user_context': '[__DG_INFORM__ [__ARG_TASK__ get_forecast ] ' '[__ARG_TEMP__ 37 ] [__ARG_TEMP_UNIT__ fahrenheit ] ' '[__ARG_CLOUD_COVERAGE__ partly cloudy ] ' '[__ARG_DATE_TIME__ [__ARG_COLLOQUIAL__ currently ] ' '] [__ARG_LOCATION__ [__ARG_CITY__ Oakland ] ' '[__ARG_COUNTRY__ United States ] [__ARG_REGION__ ' 'California ] ] ] [__DG_INFORM__ [__ARG_TASK__ ' 'get_forecast ] [__ARG_TEMP_SUMMARY__ mid 40s ] ' '[__ARG_DATE_TIME_RANGE__ [__ARG_COLLOQUIAL__ This ' 'afternoon ] ] [__ARG_LOCATION__ [__ARG_CITY__ ' 'Oakland ] [__ARG_COUNTRY__ United States ] ' '[__ARG_REGION__ California ] ] ] [__DG_INFORM__ ' '[__ARG_TASK__ get_forecast ] ' '[__ARG_CLOUD_COVERAGE__ mostly sunny ] ' '[__ARG_DATE_TIME_RANGE__ [__ARG_COLLOQUIAL__ This ' 'afternoon ] ] [__ARG_LOCATION__ [__ARG_CITY__ ' 'Oakland ] [__ARG_COUNTRY__ United States ] ' '[__ARG_REGION__ California ] ] ]', 'tree_str_mr': "[__DG_INFORM__ It's [__ARG_DATE_TIME__ [__ARG_COLLOQUIAL__ " 'currently ] ] [__ARG_CLOUD_COVERAGE__ partly cloudy ] and ' '[__ARG_TEMP__ __ARG_TEMP__ ] [__ARG_TEMP_UNIT__ ' '__ARG_TEMP_UNIT__ ] [__ARG_LOCATION__ in [__ARG_CITY__ ' '__ARG_CITY__ ] , [__ARG_REGION__ __ARG_REGION__ ] , ' '[__ARG_COUNTRY__ __ARG_COUNTRY__ ] ] . ] [__DG_INFORM__ ' '[__ARG_DATE_TIME_RANGE__ [__ARG_COLLOQUIAL__ This afternoon ] ' "] , it'll be [__ARG_CLOUD_COVERAGE__ mostly sunny ] ] " '[__DG_INFORM__ with temperatures in the [__ARG_TEMP_SUMMARY__ ' 'mid <number> ] ]', 'user_query': 'Show weather forecast for Oakland, CA. '} ``` #### Data Splits <!-- info: Describe and name the splits in the dataset if there are more than one. --> <!-- scope: periscope --> - Standard Splits: Train/Validation/Test - Additional Split: Disc_Test (a more challenging subset of the test set that contains discourse relations) #### 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 test set contains 3,121 examples, of which 1.1K (35%) have unique MRs that have never been seen in the training set. #### <!-- info: What does an outlier of the dataset in terms of length/perplexity/embedding look like? --> <!-- scope: microscope --> ``` {'gem_id': 'weather-train-13333', 'data_id': '1260610', 'user_query': 'Sundown', 'tree_str_mr': '[__DG_INFORM__ [__ARG_TASK__ get_weather_attribute ] [__ARG_SUNSET_TIME_DATE_TIME__ [__ARG_TIME__ 05:04 PM ] ] ]', 'response': '[__DG_INFORM__ The sun will go down at [__ARG_SUNSET_TIME_DATE_TIME__ [__ARG_TIME__ __ARG_TIME__ ] ] ]'} ``` ## 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 --> The dataset was curated to develop a weather bot that exhibits human-like properties such as matching the framing of the response with the query or contrasting relevant data attributes. The dataset offers rich tree-based meaning representations that offer fine-grained control over the response, e.g. by specifying which two attributes are to be contrasted. The natural language input queries are also provided to model the coherence of the response based on the input. The output response is annotated with the input meaning components using special bracketing tokens, which enables developing new techniques such as constrained decoding to improve quality of output responses #### Similar Datasets <!-- info: Do other datasets for the high level task exist? --> <!-- scope: telescope --> no #### Ability that the Dataset measures <!-- info: What aspect of model ability can be measured with this dataset? --> <!-- scope: periscope --> Adequately expressing CONTRAST and JUSTIFY discourse relations with appropriate grouping of arguments; adequately generalizing to many combinations of arguments. ### 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 --> `data points removed` #### Modification Details <!-- info: For each of these changes, described them in more details and provided the intended purpose of the modification --> <!-- scope: microscope --> The original repo contained a challenge set disc_test.tsv, which is a subset of the test set consisting of discourse relations (CONTRAST and JUSTIFY) , but also contained JOIN relations. This discrepancy has been rectified in the GEM version. The rectified version has been added in the `challenge_sets` #### Additional Splits? <!-- info: Does GEM provide additional splits to the dataset? --> <!-- scope: telescope --> no ### Getting Started with the Task ## Previous Results ### Previous Results #### Measured Model Abilities <!-- info: What aspect of model ability can be measured with this dataset? --> <!-- scope: telescope --> Adequately expressing CONTRAST and JUSTIFY discourse relations with appropriate grouping of arguments; adequately generalizing to many combinations of arguments. #### Metrics <!-- info: What metrics are typically used for this task? --> <!-- scope: periscope --> `BLEU`, `Other: Other Metrics` #### Other Metrics <!-- info: Definitions of other metrics --> <!-- scope: periscope --> Tree accuracy: It measures whether the tree structure in the prediction matches that of the input MR exactly (modulo repeated arguments that need only appear once). #### 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 --> Automatic metrics are evaluated on the raw model predictions (which have de-lexicalized fields): * Tree accuracy: Measures whether the tree structure in the prediction matches that of the input MR exactly. * BLEU-4: A word overlap metric commonly used for evaluating NLG systems. Authors also performed human evaluation studies by asking annotators to evaluate the quality of responses produced by different models. Annotators provided binary ratings on the following dimensions: • Grammaticality: Measures fluency of the responses. • Correctness: Measures semantic correctness of the responses. #### Previous results available? <!-- info: Are previous results available? --> <!-- scope: telescope --> no ## Dataset Curation ### Original Curation #### Original Curation Rationale <!-- info: Original curation rationale --> <!-- scope: telescope --> The dataset was curated to develop a weather bot that exhibits human-like properties such as matching the framing of the response with the query or contrasting relevant data attributes. To achieve this, the dataset contains rich tree-structured meaning representations that are specified using several data arguments and discourse acts, the input natural language queries, and annotations for the responses. #### Communicative Goal <!-- info: What was the communicative goal? --> <!-- scope: periscope --> Producing a text that is a response to a weather query as per the discourse structure and data attributes specified in the input meaning representation. #### 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`, `Machine-generated` #### Where was it crowdsourced? <!-- info: If crowdsourced, where from? --> <!-- scope: periscope --> `Other crowdworker platform` #### Topics Covered <!-- info: Does the language in the dataset focus on specific topics? How would you describe them? --> <!-- scope: periscope --> The dataset is focused on the weather domain: Weather was the first successful case of NLG put into production back in the 80s (Reiter & Dale, 1997). This domain offers significant complexity for NLG. Weather forecast summaries in particular can be very long, and require reasoning over several disjoint pieces of information. #### Data Validation <!-- info: Was the text validated by a different worker or a data curator? --> <!-- scope: telescope --> validated by crowdworker #### Data Preprocessing <!-- info: How was the text data pre-processed? (Enter N/A if the text was not pre-processed) --> <!-- scope: microscope --> Please refer to Appendix D of the original paper for details. #### Was Data Filtered? <!-- info: Were text instances selected or filtered? --> <!-- scope: telescope --> hybrid #### Filter Criteria <!-- info: What were the selection criteria? --> <!-- scope: microscope --> Please refer to Appendix C of the original paper for details. ### Structured Annotations #### Additional Annotations? <!-- quick --> <!-- info: Does the dataset have additional annotations for each instance? --> <!-- scope: telescope --> none #### Annotation Service? <!-- info: Was an annotation service used? --> <!-- scope: telescope --> no ### Consent #### Any Consent Policy? <!-- info: Was there a consent policy involved when gathering the data? --> <!-- scope: telescope --> no #### Justification for Using the Data <!-- info: If not, what is the justification for reusing the data? --> <!-- scope: microscope --> Annotation was done as work for hire and contains no PII. ### 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 --> no PII #### Justification for no PII <!-- info: Provide a justification for selecting `no PII` above. --> <!-- scope: periscope --> Data is simulated and not specific to annotator. ### 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 --> unsure #### 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 --> Grammatical evaluations performed with the data to date have used norms from informal Standard American English. These prescriptive notions of grammaticality potentially serve to perpetuate systemic power imbalances as they’re conveyed by language. Since the data only contains informal Standard American English, its use to train a model may not be appropriate depending on the potential use case. ## 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 --> Annotation was done as work for hire and contains no PII. Annotated data is simulated and not specific to annotator. ### Licenses ### Known Technical Limitations #### 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 --> An imperfect model used to convey actual weather data could mislead users about weather conditions?
[ -0.341244101524353, -0.850821852684021, 0.3503863215446472, 0.2378670573234558, -0.18043629825115204, -0.0052305422723293304, -0.28668150305747986, -0.36510607600212097, 0.3964105546474457, 0.32464733719825745, -0.8311231136322021, -0.875147819519043, -0.37508535385131836, -0.1300613284111023, -0.447102427482605, 0.8130348920822144, 0.3214676082134247, -0.407418429851532, -0.1613062620162964, 0.09835483878850937, -0.15053364634513855, -0.5809550285339355, -0.5455545783042908, -0.11553031206130981, 0.3369239866733551, 0.46183207631111145, 0.9154987931251526, 0.8291031122207642, 0.580493152141571, 0.31189239025115967, -0.14584754407405853, 0.2973182499408722, -0.3380286693572998, -0.1182781383395195, 0.2088257372379303, -0.19133540987968445, -0.5142354369163513, -0.007999573834240437, 0.7327290773391724, 0.790422260761261, -0.38436874747276306, 0.342237651348114, 0.050540320575237274, 0.5244394540786743, -0.4298614263534546, 0.5825532674789429, -0.717815637588501, -0.04143652692437172, -0.2865963280200958, -0.1289510428905487, -0.21344998478889465, -0.09007774293422699, 0.1424713134765625, -0.8355403542518616, 0.35876259207725525, 0.08985743671655655, 1.0553182363510132, 0.22328852117061615, -0.35360032320022583, -0.19857434928417206, -0.40504226088523865, 0.7934255599975586, -0.8501902222633362, 0.22303052246570587, 0.7353838682174683, 0.20525039732456207, -0.1678442358970642, -0.621149480342865, -0.7151802778244019, 0.06935330480337143, -0.2670292556285858, 0.5372253060340881, -0.30766090750694275, -0.25509780645370483, 0.03398698568344116, 0.27927547693252563, -0.661639392375946, -0.3152211606502533, -0.2925584018230438, -0.068819060921669, 0.8512340784072876, 0.36199572682380676, 0.06450802087783813, -0.6121756434440613, -0.1797175407409668, -0.41033297777175903, -0.1892622858285904, 0.2024887353181839, 0.1774008423089981, 0.6364304423332214, -0.8038892149925232, 0.3582620322704315, -0.2268763780593872, 0.6378498077392578, -0.13559295237064362, -0.1935989260673523, 0.6593781113624573, -0.6101936101913452, -0.3904140591621399, -0.11340410262346268, 1.0604342222213745, 0.3674534857273102, -0.1506049484014511, -0.04660041630268097, 0.12304576486349106, -0.08340322971343994, -0.0748998299241066, -0.5308981537818909, -0.4186013340950012, 0.28746500611305237, -0.2922239601612091, -0.2516223192214966, 0.14004912972450256, -1.0134893655776978, -0.13450199365615845, -0.26307108998298645, 0.030281925573945045, -0.20999953150749207, -0.2502247393131256, 0.01837725006043911, -0.0593908429145813, 0.139177143573761, 0.06891526281833649, -0.7379181981086731, 0.41828426718711853, 0.4866112768650055, 0.7705650925636292, 0.262417197227478, -0.32839617133140564, -0.01184567715972662, 0.027472758665680885, -0.3524720072746277, 0.6216492056846619, -0.40306058526039124, -0.6271255016326904, -0.32874900102615356, 0.295730322599411, -0.24393510818481445, -0.14433428645133972, 0.5510919094085693, -0.2810930013656616, 0.6194188594818115, -0.30435436964035034, -0.05201992020010948, -0.2637327015399933, 0.2931085526943207, -0.5610294938087463, 1.2806200981140137, 0.2871338427066803, -0.8288768529891968, 0.05981193482875824, -0.6678593158721924, -0.30417314171791077, -0.03259602561593056, -0.1995621621608734, -0.46558335423469543, -0.36269107460975647, 0.47896504402160645, 0.43982169032096863, -0.6933163404464722, 0.22221679985523224, -0.17629769444465637, 0.15419702231884003, 0.1658310741186142, -0.3386794626712799, 0.9424800872802734, 0.2855222523212433, -0.3119000196456909, -0.02939579077064991, -0.9588539600372314, 0.177838534116745, 0.32014745473861694, -0.22583119571208954, -0.02530212141573429, 0.09963633865118027, 0.13589692115783691, -0.06969944387674332, 0.3098921477794647, -0.4959447979927063, -0.0052307480946183205, -0.5200058221817017, 0.44075116515159607, 0.6765983700752258, 0.01161796785891056, 0.3589361310005188, -0.422299325466156, 0.45036524534225464, 0.24836258590221405, 0.3205292522907257, 0.0034995232708752155, -0.6147144436836243, -0.7321393489837646, -0.19285978376865387, -0.1500280797481537, 0.7260255813598633, -0.6225578784942627, 0.5510215759277344, -0.5534309148788452, -0.9075942039489746, -0.44698959589004517, 0.09008324891328812, 0.5769416093826294, 0.7385554313659668, 0.5782548189163208, -0.02951669692993164, -0.7314453125, -0.8570165038108826, 0.2250119298696518, -0.2578144669532776, 0.3113638758659363, 0.7786875367164612, 0.395303338766098, -0.3853147625923157, 1.062382698059082, -0.9423776268959045, -0.15494783222675323, -0.14446593821048737, -0.03158777207136154, 0.6810694932937622, 0.4470180571079254, 0.619871973991394, -0.955406665802002, -0.6153838634490967, -0.11416960507631302, -0.6746392846107483, -0.0003710593155119568, 0.08604594320058823, -0.1525181531906128, 0.2791915833950043, 0.2686554789543152, -0.6811591982841492, 0.48451438546180725, 0.7735877633094788, -0.6478509902954102, 0.5291256904602051, -0.11645659059286118, 0.25789082050323486, -1.5340157747268677, 0.20286180078983307, 0.0887407511472702, -0.13529576361179352, -0.6258813142776489, -0.0946517363190651, -0.2522313594818115, 0.013232297264039516, -0.35617297887802124, 0.5398744940757751, -0.45626357197761536, 0.26347553730010986, 0.14109604060649872, -0.0466613806784153, -0.1408635675907135, 0.42949068546295166, 0.11905886232852936, 0.6567615270614624, 0.7758890390396118, -0.5118569135665894, 0.45829737186431885, 0.6347230076789856, -0.24673235416412354, 0.2688799500465393, -0.7121859788894653, 0.1162465289235115, -0.15610536932945251, 0.25660473108291626, -0.7741796374320984, -0.5325511693954468, 0.41667070984840393, -0.6977704763412476, -0.09469150751829147, -0.1596093326807022, -0.5216445326805115, -0.33942967653274536, -0.08298458158969879, 0.1369602233171463, 0.38785624504089355, -0.40275028347969055, 0.5396485924720764, 0.4176158905029297, -0.03841642290353775, -0.49578195810317993, -1.0372364521026611, 0.24568013846874237, -0.17856694757938385, -0.6413368582725525, 0.5245335102081299, -0.14804872870445251, -0.27269119024276733, 0.09742100536823273, 0.08085807412862778, -0.1980806142091751, 0.11639688163995743, 0.4461590349674225, 0.27972283959388733, -0.06172402575612068, -0.0783471018075943, -0.48769015073776245, -0.09812116622924805, -0.0043133278377354145, -0.017943182960152626, 0.6115929484367371, -0.24014613032341003, -0.1953120231628418, -0.2458365559577942, 0.34253615140914917, 0.4098875820636749, -0.08235485106706619, 0.8192405700683594, 0.4790988862514496, -0.4782668948173523, -0.01257233414798975, -0.3085351586341858, -0.2934078574180603, -0.47734782099723816, 0.27308106422424316, -0.3206216096878052, -0.516685962677002, 0.7516109943389893, 0.6200262308120728, -0.037044771015644073, 0.6953125, 0.2409515380859375, -0.14744833111763, 0.8105958700180054, 0.31454193592071533, -0.29830649495124817, 0.40307989716529846, -0.5874388813972473, 0.04402575641870499, -0.7065137624740601, -0.37601348757743835, -0.5507442951202393, -0.11097433418035507, -0.7210296392440796, -0.4650382101535797, 0.3800571858882904, -0.13565462827682495, -0.49256157875061035, 0.4594805836677551, -0.7210609316825867, 0.18287624418735504, 0.7736771702766418, 0.38224735856056213, 0.006380980834364891, -0.06915642321109772, 0.0283309668302536, 0.06660382449626923, -0.6606216430664062, -0.3517066240310669, 0.9768921732902527, 0.165382519364357, 0.5501739382743835, 0.22092664241790771, 0.5270251035690308, 0.07357698678970337, -0.13340522348880768, -0.3431778848171234, 0.7893359661102295, -0.21235345304012299, -0.7199249267578125, -0.16627736389636993, -0.5885545015335083, -1.2054389715194702, 0.10321938246488571, -0.20317289233207703, -0.9611804485321045, 0.3772207796573639, 0.14646999537944794, -0.16998310387134552, 0.1368265450000763, -0.7690340280532837, 0.8694832921028137, -0.30239391326904297, -0.10923872888088226, 0.05857871100306511, -0.9288671016693115, 0.08310852944850922, 0.2097720354795456, 0.6376901268959045, -0.24610567092895508, -0.031895652413368225, 0.7235903143882751, -0.42912235856056213, 1.0514460802078247, -0.18793919682502747, 0.33591267466545105, 0.41376039385795593, -0.12048706412315369, 0.5191114544868469, 0.11784293502569199, -0.14228203892707825, 0.22560539841651917, 0.19438327848911285, -0.45920315384864807, -0.37240609526634216, 0.7597292065620422, -0.9937688708305359, -0.562152087688446, -0.6165474057197571, -0.6334535479545593, -0.11782553046941757, 0.1062588095664978, 0.2741905152797699, 0.64284747838974, 0.07757233083248138, 0.4242883324623108, 0.2773909866809845, -0.15800689160823822, 0.3605779707431793, 0.5682855844497681, -0.10645880550146103, -0.7118045687675476, 0.8216399550437927, 0.1412990540266037, 0.22209769487380981, 0.3627766966819763, 0.30195870995521545, -0.2681754231452942, -0.33557993173599243, -0.15233956277370453, 0.11251959204673767, -0.6614264249801636, -0.2789002060890198, -0.559356153011322, -0.2690284550189972, -0.6755125522613525, -0.14162059128284454, -0.23418350517749786, -0.3629226088523865, -0.7024938464164734, -0.2192683219909668, 0.6867229342460632, 0.32009002566337585, -0.02008528634905815, 0.5254534482955933, -0.6799113750457764, 0.09046955406665802, -0.0031981247011572123, 0.06443709135055542, -0.21731814742088318, -0.4042524993419647, -0.3525383174419403, 0.4329322576522827, -0.4506033658981323, -0.7745601534843445, 0.7857796549797058, 0.42967069149017334, 0.5237216353416443, 0.12591637670993805, 0.088289275765419, 0.8891616463661194, 0.0066956933587789536, 1.1199573278427124, 0.12764380872249603, -0.8544616103172302, 0.786714494228363, -0.49320414662361145, 0.5795661807060242, 0.5487006306648254, 0.21166351437568665, -0.5700463652610779, -0.4355659782886505, -1.0045093297958374, -1.1649681329727173, 0.856206476688385, 0.29934823513031006, 0.27403387427330017, -0.07255194336175919, 0.24757064878940582, -0.30999884009361267, 0.16872820258140564, -0.7783126831054688, -0.6063063740730286, -0.40923580527305603, -0.3603611886501312, -0.5252373218536377, 0.012029601261019707, -0.33455538749694824, -0.40116173028945923, 0.7501148581504822, -0.1795712262392044, 0.496582955121994, 0.5148769617080688, 0.17679691314697266, 0.0738915503025055, 0.3282339572906494, 0.3366409242153168, 0.4524025619029999, -0.4610293507575989, 0.2816151976585388, 0.2843281626701355, -0.5552351474761963, -0.21569909155368805, 0.4542181193828583, -0.2597045302391052, -0.06044469028711319, 0.6023411750793457, 0.7153810262680054, 0.20433728396892548, -0.39133167266845703, 0.34803664684295654, 0.08487541973590851, -0.29119494557380676, -0.4347984194755554, 0.03865247592329979, 0.10275766998529434, 0.18305231630802155, 0.5606851577758789, 0.01261716615408659, 0.04759547859430313, -0.6476626396179199, -0.05325969308614731, 0.45836034417152405, -0.25923943519592285, -0.3298921585083008, 0.7412970662117004, -0.029007095843553543, -0.14957568049430847, 0.6020354628562927, -0.2755233645439148, -0.5663609504699707, 0.8500799536705017, 0.42333388328552246, 0.779715359210968, 0.20556983351707458, 0.10022114217281342, 0.5640772581100464, 0.4699510633945465, 0.2466113567352295, 0.6080408692359924, -0.13068003952503204, -0.8582727909088135, -0.06934937834739685, -0.5728910565376282, -0.3308519423007965, 0.13052061200141907, -0.5297056436538696, 0.10989578813314438, -0.4128899574279785, -0.3501615524291992, 0.15966399013996124, 0.15978866815567017, -0.8827309608459473, 0.46657541394233704, 0.1192709356546402, 1.0062246322631836, -0.7414266467094421, 0.6998255252838135, 0.8244264125823975, -0.4038088917732239, -1.071983814239502, -0.2064547836780548, 0.22114403545856476, -0.5756810307502747, 0.36940521001815796, -0.03663692995905876, -0.0024008576292544603, 0.1739373654127121, -0.7114131450653076, -1.0179959535598755, 1.35490882396698, 0.20566056668758392, -0.444201797246933, -0.035582661628723145, 0.154802605509758, 0.5054035782814026, -0.2923247516155243, 0.44441458582878113, 0.5775418877601624, 0.644398033618927, 0.2832943797111511, -1.0254513025283813, 0.15117664635181427, -0.5327699780464172, -0.10665463656187057, -0.02857496775686741, -0.7312100529670715, 0.7619754672050476, -0.08921104669570923, -0.303449422121048, 0.0010555456392467022, 0.5587955713272095, 0.08623425662517548, 0.5089916586875916, 0.47977572679519653, 0.8340292572975159, 0.662350594997406, -0.52153480052948, 1.0729597806930542, -0.3917827904224396, 0.5611293315887451, 1.0762754678726196, 0.13389968872070312, 0.8896521329879761, 0.3008745610713959, -0.5164875388145447, 0.5449355840682983, 0.6757954955101013, -0.08101993799209595, 0.6891677975654602, -0.174620121717453, -0.18367116153240204, -0.1582687348127365, -0.07740641385316849, -0.5078911781311035, 0.4978957176208496, 0.36726972460746765, -0.326030969619751, -0.10245665162801743, -0.16327784955501556, 0.16871215403079987, 0.0352335125207901, -0.16189412772655487, 0.8232818841934204, -0.01620336063206196, -0.6532339453697205, 0.6160799264907837, -0.1917744129896164, 0.539548933506012, -0.7081621289253235, 0.31522244215011597, -0.03159958869218826, 0.19584248960018158, -0.5916905999183655, -1.0509440898895264, 0.497892290353775, -0.10671553760766983, -0.3564419150352478, -0.1454491764307022, 0.29470059275627136, -0.381500244140625, -0.6731664538383484, 0.22379134595394135, 0.260183721780777, 0.12086468935012817, 0.11925895512104034, -0.8347841501235962, -0.0755942314863205, 0.09414208680391312, -0.48046523332595825, -0.1124044805765152, 0.1382705718278885, 0.2502756714820862, 0.7396902441978455, 0.8779433965682983, 0.10665208101272583, 0.02340099774301052, -0.08559490740299225, 1.0015387535095215, -0.9256693720817566, -0.47112736105918884, -0.6582276225090027, 0.6221719980239868, -0.1697063148021698, -0.4497070908546448, 0.9442448019981384, 0.8454557657241821, 0.5990365147590637, 0.13264374434947968, 0.8077529668807983, -0.49003520607948303, 0.6703372001647949, -0.3575313687324524, 0.34348878264427185, -0.613396406173706, 0.14375095069408417, -0.29965776205062866, -0.7697134017944336, -0.3246624171733856, 0.4594671428203583, -0.43393674492836, 0.08631463348865509, 0.4683534801006317, 1.228335976600647, -0.023686058819293976, 0.21925121545791626, -0.003478300292044878, 0.3914525508880615, 0.31069865822792053, 0.5639033317565918, 0.5810790061950684, -0.4976353347301483, 0.6469757556915283, -0.6788848042488098, -0.21161580085754395, 0.0409156009554863, -0.8395501375198364, -0.608492910861969, -0.9848339557647705, -0.4137450158596039, -0.5208216905593872, -0.0627216100692749, 1.0487375259399414, 0.8363988995552063, -0.8281627297401428, -0.36055701971054077, -0.23029525578022003, -0.12129098176956177, -0.10827521979808807, -0.3383163511753082, 0.5590592622756958, 0.03671679273247719, -0.6089435815811157, 0.4118730425834656, -0.11753802001476288, 0.19442963600158691, 0.12196099013090134, -0.08879654854536057, -0.12818145751953125, 0.14467903971672058, 0.43114256858825684, 0.28773167729377747, -0.578974187374115, -0.13195793330669403, 0.18322277069091797, -0.2283516377210617, 0.12703797221183777, 0.051013775169849396, -0.5829547047615051, 0.47646278142929077, 0.5315194725990295, 0.19637775421142578, 0.7469383478164673, 0.09253443032503128, 0.16975823044776917, -0.9004823565483093, 0.16626136004924774, 0.17448629438877106, 0.3376332223415375, 0.45256030559539795, -0.5349805355072021, 0.5358352065086365, 0.3540849983692169, -0.6049357652664185, -0.7133485674858093, -0.09691658616065979, -1.487579584121704, -0.15998345613479614, 1.3691343069076538, 0.051532067358493805, -0.3773020803928375, 0.062305767089128494, -0.21492445468902588, -0.002837603213265538, -0.6037963628768921, 0.6180116534233093, 0.6912848353385925, -0.011425304226577282, -0.3347565531730652, -0.34232258796691895, 0.34593504667282104, -0.03403863683342934, -1.0252642631530762, 0.030296005308628082, 0.492967426776886, 0.2917148470878601, 0.31094858050346375, 0.5216513872146606, 0.06586844474077225, 0.21198135614395142, -0.05008178949356079, 0.0829625129699707, -0.06203465908765793, -0.055540964007377625, 0.01331836823374033, -0.06150863692164421, -0.13567091524600983, -0.3126818537712097 ]
null
null
null
null
null
null
null
null
null
null
null
null
null
smilegate-ai/kor_unsmile
smilegate-ai
2022-03-27T12:29:28Z
454
0
null
[ "region:us" ]
2022-03-27T12:29:28Z
2022-03-27T12:24:17.000Z
2022-03-27T12:24:17
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
id_clickbait
null
2023-01-25T14:32:36Z
453
0
null
[ "task_categories:text-classification", "task_ids:fact-checking", "annotations_creators:expert-generated", "language_creators:expert-generated", "multilinguality:monolingual", "size_categories:10K<n<100K", "source_datasets:original", "language:id", "license:cc-by-4.0", "region:us" ]
2023-01-25T14:32:36Z
2022-03-02T23:29:22.000Z
2022-03-02T23:29:22
--- annotations_creators: - expert-generated language_creators: - expert-generated language: - id license: - cc-by-4.0 multilinguality: - monolingual size_categories: - 10K<n<100K source_datasets: - original task_categories: - text-classification task_ids: - fact-checking pretty_name: Indonesian Clickbait Headlines dataset_info: - config_name: annotated features: - name: id dtype: string - name: title dtype: string - name: label dtype: class_label: names: '0': non-clickbait '1': clickbait splits: - name: train num_bytes: 1268698 num_examples: 15000 download_size: 150769127 dataset_size: 1268698 - config_name: raw features: - name: id dtype: string - name: title dtype: string - name: source dtype: string - name: date dtype: string - name: category dtype: string - name: sub-category dtype: string - name: content dtype: string - name: url dtype: string splits: - name: train num_bytes: 81669386 num_examples: 38655 download_size: 150769127 dataset_size: 81669386 --- # Dataset Card for Indonesian Clickbait Headlines ## Table of Contents - [Dataset Description](#dataset-description) - [Dataset Summary](#dataset-summary) - [Supported Tasks and Leaderboards](#supported-tasks-and-leaderboards) - [Languages](#languages) - [Dataset Structure](#dataset-structure) - [Data Instances](#data-instances) - [Data Fields](#data-fields) - [Data Splits](#data-splits) - [Dataset Creation](#dataset-creation) - [Curation Rationale](#curation-rationale) - [Source Data](#source-data) - [Annotations](#annotations) - [Personal and Sensitive Information](#personal-and-sensitive-information) - [Considerations for Using the Data](#considerations-for-using-the-data) - [Social Impact of Dataset](#social-impact-of-dataset) - [Discussion of Biases](#discussion-of-biases) - [Other Known Limitations](#other-known-limitations) - [Additional Information](#additional-information) - [Dataset Curators](#dataset-curators) - [Licensing Information](#licensing-information) - [Citation Information](#citation-information) - [Contributions](#contributions) ## Dataset Description - **Homepage:** https://data.mendeley.com/datasets/k42j7x2kpn/1 - **Repository:** - **Paper:** [CLICK-ID: A Novel Dataset for Indonesian Clickbait Headlines](https://www.sciencedirect.com/science/article/pii/S2352340920311252#!) - **Leaderboard:** - **Point of Contact:** [Andika William](mailto:andika.william@mail.ugm.ac.id), [Yunita Sari](mailto:yunita.sari@ugm.ac.id) ### Dataset Summary The CLICK-ID dataset is a collection of Indonesian news headlines that was collected from 12 local online news publishers; detikNews, Fimela, Kapanlagi, Kompas, Liputan6, Okezone, Posmetro-Medan, Republika, Sindonews, Tempo, Tribunnews, and Wowkeren. This dataset is comprised of mainly two parts; (i) 46,119 raw article data, and (ii) 15,000 clickbait annotated sample headlines. Annotation was conducted with 3 annotator examining each headline. Judgment were based only on the headline. The majority then is considered as the ground truth. In the annotated sample, our annotation shows 6,290 clickbait and 8,710 non-clickbait. ### Supported Tasks and Leaderboards [More Information Needed] ### Languages Indonesian ## Dataset Structure ### Data Instances An example of the annotated article: ``` { 'id': '100', 'label': 1, 'title': "SAH! Ini Daftar Nama Menteri Kabinet Jokowi - Ma'ruf Amin" } > ``` ### Data Fields #### Annotated - `id`: id of the sample - `title`: the title of the news article - `label`: the label of the article, either non-clickbait or clickbait #### Raw - `id`: id of the sample - `title`: the title of the news article - `source`: the name of the publisher/newspaper - `date`: date - `category`: the category of the article - `sub-category`: the sub category of the article - `content`: the content of the article - `url`: the url of the article ### Data Splits The dataset contains train set. ## 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 4.0 International license ### Citation Information ``` @article{WILLIAM2020106231, title = "CLICK-ID: A novel dataset for Indonesian clickbait headlines", journal = "Data in Brief", volume = "32", pages = "106231", year = "2020", issn = "2352-3409", doi = "https://doi.org/10.1016/j.dib.2020.106231", url = "http://www.sciencedirect.com/science/article/pii/S2352340920311252", author = "Andika William and Yunita Sari", keywords = "Indonesian, Natural Language Processing, News articles, Clickbait, Text-classification", abstract = "News analysis is a popular task in Natural Language Processing (NLP). In particular, the problem of clickbait in news analysis has gained attention in recent years [1, 2]. However, the majority of the tasks has been focused on English news, in which there is already a rich representative resource. For other languages, such as Indonesian, there is still a lack of resource for clickbait tasks. Therefore, we introduce the CLICK-ID dataset of Indonesian news headlines extracted from 12 Indonesian online news publishers. It is comprised of 15,000 annotated headlines with clickbait and non-clickbait labels. Using the CLICK-ID dataset, we then developed an Indonesian clickbait classification model achieving favourable performance. We believe that this corpus will be useful for replicable experiments in clickbait detection or other experiments in NLP areas." } ``` ### Contributions Thanks to [@cahya-wirawan](https://github.com/cahya-wirawan) for adding this dataset.
[ -0.4077136516571045, -0.7049071788787842, 0.055135276168584824, 0.4602377414703369, -0.39461106061935425, -0.21103893220424652, -0.1683112382888794, -0.3601994812488556, 0.6343332529067993, 0.6844922304153442, -0.27492907643318176, -0.9535112380981445, -0.7413015961647034, 0.6450978517532349, -0.2263445109128952, 1.324395775794983, 0.061719972640275955, -0.43902090191841125, -0.28815096616744995, -0.3055668771266937, 0.014759408310055733, -0.20119734108448029, -0.5890898108482361, 0.22874709963798523, 0.5798295736312866, 0.2874909043312073, 0.7097210884094238, 0.5959309935569763, 0.5120866298675537, 0.22264336049556732, -0.2343856692314148, 0.1787055879831314, -0.19496546685695648, -0.4873819649219513, -0.3603645861148834, -0.6243020296096802, -0.33126580715179443, 0.4097025990486145, 0.4290699064731598, 0.9122698307037354, 0.3072075843811035, 0.45797979831695557, 0.12669716775417328, 1.020198106765747, -0.5506157279014587, 0.3591817319393158, -0.261539489030838, -0.229159876704216, -0.3920753300189972, -0.2906787097454071, -0.31945857405662537, -0.7387441992759705, 0.17528733611106873, -0.6835044026374817, -0.009409302845597267, 0.17234256863594055, 1.1040725708007812, 0.34163835644721985, -0.7944949269294739, -0.2678053677082062, -0.2708650827407837, 0.6708039045333862, -0.675927996635437, -0.12748456001281738, 0.616873562335968, -0.06690630316734314, -0.02679995261132717, -0.2562373876571655, -0.44330930709838867, -0.018241094425320625, -0.45047277212142944, 0.1673937886953354, -0.07004985958337784, -0.05889153853058815, 0.44634392857551575, 0.31737563014030457, -0.6966628432273865, -0.2501061260700226, -0.7030300498008728, 0.08325736224651337, 0.842803955078125, -0.07559412717819214, 0.23128391802310944, -0.9690597653388977, -0.38831743597984314, 0.04673092067241669, -0.36442670226097107, 0.08203548192977905, 0.9313510656356812, 0.3830938935279846, -0.35109269618988037, 0.7838886976242065, -0.47098100185394287, 0.6655069589614868, 0.2606784999370575, -0.5895491242408752, 0.8558321595191956, -0.6891834139823914, -0.11025382578372955, 0.1987302452325821, 0.9637782573699951, 0.6967193484306335, 0.18441735208034515, 0.31932294368743896, 0.3968406915664673, -0.08744997531175613, 0.09978071600198746, -0.5404906868934631, -0.21731477975845337, 0.5491476655006409, -0.8207737803459167, -0.8315868973731995, 0.30644768476486206, -0.9820420145988464, -0.09239355474710464, -0.24517710506916046, 0.32638925313949585, -0.32627737522125244, -0.6725728511810303, 0.06467561423778534, -0.2618441879749298, 0.19538696110248566, 0.03908952325582504, -0.544312596321106, -0.07281851768493652, 0.4025440514087677, 0.6439799666404724, -0.41736626625061035, -0.3167053461074829, -0.08681663125753403, 0.2458982765674591, -0.31258776783943176, 0.6679888963699341, -0.5120033621788025, -0.2677789628505707, -0.0016305752797052264, 0.32506322860717773, -0.3794310688972473, -0.5102349519729614, 0.9287450909614563, -0.4113861620426178, 0.42662301659584045, -0.5568585991859436, -0.3785596787929535, -0.5735243558883667, 0.3792538642883301, -1.0365959405899048, 1.2297250032424927, -0.1920934021472931, -1.3215361833572388, 0.7289720773696899, -0.9848808646202087, -0.6740679144859314, -0.16443638503551483, -0.09228768199682236, -0.5681525468826294, -0.10148879885673523, 0.4665432572364807, 0.40853825211524963, -0.06780216842889786, 0.34470757842063904, -0.021837033331394196, -0.24149863421916962, 0.21844147145748138, -0.2902694344520569, 1.2771788835525513, 0.2725008726119995, -0.3220224678516388, -0.11936771124601364, -1.0384413003921509, -0.5242588520050049, 0.1634703129529953, -0.8312408328056335, -0.8010504245758057, -0.386631578207016, 0.2024012804031372, 0.07099834084510803, 0.15990838408470154, -0.44180387258529663, 0.3026209771633148, -0.3539121747016907, -0.22629378736019135, 0.3051527738571167, 0.42984944581985474, 0.12117878347635269, -0.5408099293708801, 0.4619762599468231, 0.43683362007141113, 0.10821705311536789, -0.49085190892219543, -0.561626136302948, -0.6036536693572998, -0.2068444937467575, 0.5862857103347778, 0.6776199340820312, -0.8528823256492615, 0.7527614831924438, -0.42806488275527954, -0.5006946325302124, -0.6104381084442139, 0.0525476299226284, 0.2099934220314026, 0.4359019100666046, 0.24388156831264496, -0.10565384477376938, -0.7872721552848816, -0.8510692715644836, -0.6402755975723267, 0.01667250134050846, 0.020111609250307083, 0.46323397755622864, 0.8155394196510315, 0.17134925723075867, 1.0693572759628296, -0.4165407717227936, -0.5273405313491821, -0.42049169540405273, 0.4476158022880554, 0.6099132299423218, 0.49431726336479187, 0.6530165076255798, -1.349704384803772, -0.6516945958137512, -0.4001154899597168, -0.9034459590911865, -0.0790276825428009, -0.2509828209877014, 0.19134856760501862, 0.5151535272598267, 0.3714635372161865, -0.654293954372406, 0.6710119843482971, 0.3933916687965393, -0.36077210307121277, 0.6789158582687378, -0.009731422178447247, 0.6055008172988892, -1.3304623365402222, 0.5020692944526672, 0.26193031668663025, 0.1774749904870987, -0.31643080711364746, -0.37055301666259766, -0.1857578605413437, -0.04963056370615959, -0.669832170009613, 0.3341626822948456, -0.38583147525787354, -0.008040559478104115, -0.16594061255455017, -0.0526924729347229, -0.08640880882740021, 0.5610954165458679, 0.20611917972564697, 0.8089196681976318, 0.29290735721588135, -0.6667380928993225, 0.3102821707725525, 0.36735472083091736, -0.5488315224647522, 0.814116358757019, -0.589556872844696, -0.6051682233810425, -0.3216448426246643, 0.5988922119140625, -1.0663210153579712, -0.43539103865623474, 0.6084762811660767, -0.5862789750099182, -0.09541599452495575, -0.4227728247642517, -0.8284226655960083, -0.4372900724411011, -0.6158477663993835, 0.3374113440513611, 0.23153968155384064, -0.44775107502937317, 0.43575793504714966, 0.24199038743972778, -0.0718122199177742, -0.5601411461830139, -0.6550622582435608, 0.15077431499958038, -0.3497619926929474, -0.25437796115875244, 0.178117573261261, 0.029245225712656975, -0.00549772335216403, 0.4094649851322174, 0.2441975623369217, 0.19691261649131775, -0.1269637495279312, 0.23301216959953308, 0.05214346572756767, -0.014445396140217781, 0.06158901005983353, 0.16728036105632782, -0.5160506963729858, 0.11480870097875595, -0.16668596863746643, 0.29447585344314575, 0.235756978392601, -0.22253039479255676, -0.7389894723892212, 0.2592982351779938, 0.5375259518623352, -0.3363727033138275, 0.9138376712799072, 0.9238884449005127, -0.18465997278690338, 0.48351389169692993, -0.5539343357086182, 0.19104517996311188, -0.35333824157714844, 0.19829235970973969, -0.25161314010620117, -0.2057998925447464, 0.30883780121803284, -0.32109180092811584, 0.019158661365509033, 1.038926601409912, 0.3325277864933014, 0.008030588738620281, 0.8061972856521606, 0.6742070317268372, -0.32098662853240967, 0.24930982291698456, -0.4872918426990509, 0.009056725539267063, -0.6170010566711426, -0.30976614356040955, -0.4789026379585266, -0.5890443921089172, -0.8784105181694031, -0.27419936656951904, 0.42812976241111755, -0.29320865869522095, 0.03573596850037575, 0.3401874899864197, -0.6044582724571228, 0.46045783162117004, 0.7683252692222595, 0.0910247340798378, 0.5592671036720276, 0.18654035031795502, 0.05296716094017029, -0.2047516107559204, -0.5454917550086975, -0.4135821759700775, 1.4322893619537354, 0.12862610816955566, 0.629808247089386, -0.1867334395647049, 0.7197329998016357, 0.2617681920528412, -0.006035583093762398, -0.2927663326263428, 0.49083197116851807, -0.15594011545181274, -0.9152371287345886, -0.08246468007564545, -0.20770764350891113, -1.0706921815872192, 0.08306623250246048, -0.20936334133148193, -0.6539976000785828, 0.46951618790626526, -0.2542217969894409, -0.535115659236908, 0.5425991415977478, -0.3558619022369385, 0.7834005951881409, -0.05927039310336113, -0.09897177666425705, -0.21537692844867706, -0.7774813175201416, 0.3519498407840729, 0.27878159284591675, 0.2860963046550751, -0.1844397485256195, -0.409628301858902, 1.263114333152771, -0.2377859652042389, 1.1255594491958618, -0.14524292945861816, -0.018584437668323517, 0.5065767765045166, -0.47202974557876587, 0.3395940065383911, 0.0644073337316513, 0.023490402847528458, 0.2826795279979706, -0.06708124279975891, -0.40897050499916077, -0.13111025094985962, 0.6562321186065674, -0.6144564747810364, -0.2598218321800232, -0.7179725170135498, -0.4383847415447235, 0.25567325949668884, 0.28090351819992065, 0.343834787607193, 0.2766585946083069, 0.1906757801771164, 0.46878761053085327, 0.8016862869262695, -0.3055915832519531, 0.43568155169487, 0.44143202900886536, -0.1352439820766449, -0.6387885212898254, 0.943049430847168, 0.5023461580276489, -0.28243234753608704, 0.4083363115787506, -0.04938598722219467, -0.1988951712846756, -0.23394016921520233, -0.31078580021858215, 0.5015555620193481, -0.3097310960292816, -0.0721542239189148, -0.9797131419181824, -0.2052777260541916, -0.24059347808361053, -0.08587450534105301, -0.27248361706733704, -0.27932360768318176, -0.4907546043395996, -0.31442540884017944, 0.5306532979011536, 0.4276707172393799, -0.34929123520851135, 0.13799694180488586, -0.5879852771759033, 0.41619163751602173, 0.0822901502251625, 0.3979468047618866, -0.18618859350681305, -0.26566705107688904, -0.31572410464286804, -0.10768785327672958, -0.06556978076696396, -0.951230525970459, 0.2158370167016983, -0.12908609211444855, 0.3727678060531616, 0.49961498379707336, 0.3896717131137848, 0.34178900718688965, 0.2039685994386673, 0.9791221022605896, -0.12335735559463501, -0.27487698197364807, 0.896260142326355, -0.6394853591918945, 0.31124627590179443, 0.9174020886421204, 1.0905542373657227, -0.2524544298648834, -0.17100930213928223, -1.026537537574768, -1.0306307077407837, 0.675962507724762, 0.20759005844593048, -0.005533297546207905, -0.14957812428474426, 0.3962307572364807, 0.3283783793449402, 0.5859285593032837, -0.8999055027961731, -0.7121456265449524, 0.26100680232048035, -0.3049623370170593, 0.18859423696994781, -0.54458087682724, -0.08186756074428558, -0.3543771505355835, 0.7886390089988708, 0.06437043100595474, 0.04455650970339775, 0.1754850298166275, -0.2216285616159439, -0.10810981690883636, 0.015253863297402859, 0.2947717010974884, 0.6700273156166077, -0.34485551714897156, -0.03608975559473038, -0.0027815280482172966, -0.6521305441856384, -0.06204259768128395, 0.28798067569732666, -0.6599339246749878, 0.42216575145721436, 0.3215101659297943, 0.6530154943466187, 0.571243166923523, -0.491073876619339, 0.7631855607032776, 0.24873057007789612, -0.3738820552825928, -0.5240058302879333, -0.18136149644851685, -0.19051645696163177, 0.05751612037420273, 0.7353962063789368, 0.09660918265581131, 0.21622970700263977, -0.2521844208240509, 0.3091765344142914, 0.005655428394675255, 0.022394221276044846, -0.30361971259117126, 0.8407152891159058, 0.3669258654117584, 0.12583279609680176, 0.32102301716804504, -0.2650394141674042, -0.16393855214118958, 0.6350808143615723, 0.18156570196151733, 0.8535268902778625, -0.024714846163988113, 0.4860460162162781, 0.8364436030387878, 0.4835750460624695, 0.06123238056898117, 0.3564984202384949, 0.040770500898361206, -0.2654817998409271, -0.4649255573749542, -0.605730414390564, -0.1499181091785431, 0.4042341411113739, -0.6243659257888794, 0.35390084981918335, -0.3028223514556885, -0.03252920135855675, -0.030187126249074936, 0.5368876457214355, -0.6375408172607422, 0.15125149488449097, -0.07081160694360733, 1.0810822248458862, -1.3698394298553467, 0.4520930051803589, 0.9967313408851624, -1.0160324573516846, -0.30934029817581177, 0.21611911058425903, 0.25323286652565, -0.3481474816799164, 0.49598485231399536, 0.44369882345199585, 0.6963992118835449, -0.0767965093255043, -0.6627925038337708, -1.1083195209503174, 0.9690961837768555, -0.03844592347741127, -0.04359392449259758, -0.026352327316999435, 0.4042889177799225, 0.3798781633377075, -0.2861335873603821, 0.2172897309064865, 0.8720255494117737, 0.9346908926963806, 0.0500737689435482, -0.8874503374099731, 0.024087755009531975, -0.2802990972995758, -0.11670038849115372, -0.06873492151498795, -0.9245915412902832, 0.6477556228637695, -0.16925305128097534, 0.08201221376657486, -0.1659345030784607, 0.6727259159088135, 0.1703793853521347, 0.5012521743774414, 0.516952633857727, 0.8722327351570129, 0.4125826060771942, -0.04385135695338249, 1.0566962957382202, -0.20101487636566162, 0.35330426692962646, 0.65497225522995, 0.4028771221637726, 0.7020494937896729, 0.3398422598838806, -0.5634069442749023, 0.4785579442977905, 0.7124241590499878, -0.15595553815364838, 0.6307425498962402, -0.41177043318748474, 0.18104949593544006, -0.022285008803009987, -0.4164234697818756, -0.3979431688785553, 0.5917041897773743, 0.18437780439853668, -0.46416330337524414, -0.222800150513649, 0.21468472480773926, 0.6906318068504333, -0.008776132017374039, -0.2460569143295288, 0.9296548366546631, -0.257213294506073, -0.43257737159729004, 0.4032299816608429, -0.12438730895519257, 0.963660478591919, -0.4756239354610443, 0.14169031381607056, -0.13649335503578186, -0.1503111869096756, -0.5736094117164612, -0.7349981069564819, 0.4454626739025116, -0.07884247601032257, -0.4482380449771881, 0.05724244937300682, 0.7442386746406555, -0.7028933167457581, -0.7981005907058716, -0.1789436638355255, 0.30632805824279785, 0.30480650067329407, -0.22301429510116577, -0.9531447887420654, 0.5276466608047485, 0.1931128352880478, -0.645799994468689, 0.23675599694252014, 0.24931398034095764, 0.050556935369968414, 0.2933489680290222, 0.8317092061042786, 0.1428278237581253, -0.13872960209846497, -0.2522604465484619, 0.689022958278656, -0.8548405766487122, -0.8648203611373901, -0.546049177646637, 0.6451798677444458, -0.5849947333335876, -0.45815780758857727, 0.9336300492286682, 0.951290488243103, 0.8619478344917297, -0.08184793591499329, 1.0497792959213257, -0.3993262052536011, 0.9484689235687256, -0.2303178608417511, 0.7884977459907532, -0.6276212930679321, -0.13380922377109528, -0.4811021387577057, -0.884885847568512, -0.43367719650268555, 0.4003008306026459, -0.594087541103363, 0.170115664601326, 0.5063577890396118, 0.5901831388473511, -0.1483156830072403, -0.019718656316399574, -0.08243746310472488, 0.5637738704681396, 0.09531788527965546, 0.22405317425727844, 0.08014627546072006, -0.7986168265342712, 0.8346006274223328, -0.5705702900886536, -0.3609105348587036, -0.7289990782737732, -1.069958209991455, -1.0715128183364868, -0.8001600503921509, -0.7882266640663147, -0.03854319453239441, -0.013395758345723152, 0.8405430316925049, 0.3197954297065735, -0.8386554718017578, -0.05562060698866844, 0.44103768467903137, 0.3009582757949829, -0.45646539330482483, -0.29957178235054016, 0.9148887395858765, -0.15970078110694885, -0.9030396938323975, -0.09931236505508423, 0.26110759377479553, -0.12366577982902527, -0.10041511803865433, 0.23998260498046875, -0.6939011216163635, 0.12226632237434387, 0.5404199361801147, 0.47362998127937317, -0.6334626078605652, 0.06050347536802292, -0.45260941982269287, -0.05934428423643112, -0.012827555648982525, 0.3898222744464874, -0.9902723431587219, 0.29353708028793335, 0.4627290368080139, 0.5835748910903931, 0.3467942774295807, 0.3894970417022705, -0.11070174723863602, -0.7083855271339417, 0.49309292435646057, -0.30446678400039673, 0.0056213741190731525, 0.3223985731601715, -0.4757867455482483, 0.6829891204833984, 0.6203784942626953, -0.22183473408222198, -0.6749452948570251, -0.33927470445632935, -1.1097559928894043, -0.020153630524873734, 1.3515934944152832, 0.2533182203769684, -0.5194149017333984, -0.19196581840515137, -0.49759575724601746, 0.1302562803030014, -0.5234633088111877, 0.6837410926818848, 0.541519820690155, 0.10224881768226624, -0.1192001923918724, -0.633266806602478, 0.6844527125358582, 0.06189556419849396, -0.8088765144348145, -0.13920427858829498, 0.12975157797336578, 0.3540603518486023, 0.28300514817237854, 0.6981195211410522, -0.20834290981292725, 0.24917030334472656, 0.05295713618397713, -0.2126285284757614, -0.2434970885515213, -0.27203822135925293, -0.04156787693500519, 0.29066622257232666, -0.5565640330314636, -0.5958177447319031 ]
null
null
null
null
null
null
null
null
null
null
null
null
null
GroNLP/ik-nlp-22_slp
GroNLP
2023-02-01T18:25:21Z
453
0
null
[ "task_categories:question-answering", "task_categories:summarization", "task_categories:text-retrieval", "annotations_creators:expert-generated", "language_creators:expert-generated", "multilinguality:monolingual", "size_categories:1K<n<10K", "source_datasets:original", "language:en", "license:unknown", "question-generation", "region:us" ]
2023-02-01T18:25:21Z
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: - 1K<n<10K source_datasets: - original task_categories: - question-answering - summarization - text-retrieval pretty_name: slp3ed-iknlp2022 tags: - question-generation --- # Dataset Card for IK-NLP-22 Speech and Language Processing ## Table of Contents - [Dataset Card for IK-NLP-22 Speech and Language Processing](#dataset-card-for-ik-nlp-22-speech-and-language-processing) - [Table of Contents](#table-of-contents) - [Dataset Description](#dataset-description) - [Dataset Summary](#dataset-summary) - [Projects](#projects) - [Languages](#languages) - [Dataset Structure](#dataset-structure) - [Data Instances](#data-instances) - [Paragraphs Configuration](#paragraphs-configuration) - [Questions Configuration](#questions-configuration) - [Data Splits](#data-splits) - [Dataset Creation](#dataset-creation) - [Additional Information](#additional-information) - [Dataset Curators](#dataset-curators) - [Licensing Information](#licensing-information) - [Citation Information](#citation-information) ## Dataset Description - **Source:** [Stanford](https://web.stanford.edu/~jurafsky/slp3/) - **Point of Contact:** [Gabriele Sarti](mmailto:ik-nlp-course@rug.nl) ### Dataset Summary This dataset contains chapters extracted from the Speech and Language Processing book (3ed draft of January 2022) by Jurafsky and Martin via a semi-automatic procedure (see below for additional details). Moreover, a small set of conceptual questions associated with each chapter is provided alongside possible answers. Only the content of chapters 2 to 11 of the book draft are provided, since these are the ones relevant to the contents of the 2022 edition of the Natural Language Processing course at the Information Science Master's Degree (IK) at the University of Groningen, taught by [Arianna Bisazza](https://research.rug.nl/en/persons/arianna-bisazza) with the assistance of [Gabriele Sarti](https://research.rug.nl/en/persons/gabriele-sarti). *The Speech and Language Processing book was made freely available by the authors [Dan Jurafsky](http://web.stanford.edu/people/jurafsky/) and [James H. Martin](http://www.cs.colorado.edu/~martin/) on the [Stanford University website](https://web.stanford.edu/~jurafsky/slp3/). The present dataset was created for educational purposes, and is based on the draft of the 3rd edition of the book accessed on December 29th, 2021. All rights of the present contents are attributed to the original authors.* ### Projects See the course page for a description of possible research directions. ### Languages The language data of Speech and Language Processing is in English (BCP-47 `en`) ## Dataset Structure ### Data Instances The dataset contains two configurations: `paragraphs` (default), containing the full set of parsed paragraphs associated to the respective chapter and sections, and `questions`, containing a small subset of example questions matched with the relevant paragraph, and with the answer span extracted. #### Paragraphs Configuration The `paragraphs` configuration contains all the paragraphs of the selected book chapters, each associated with the respective chapter, section and subsection. An example from the `train` split of the `paragraphs` config is provided below. The example belongs to section 2.3 but not to a subsection, so the `n_subsection` and `subsection` fields are empty strings. ```json { "n_chapter": "2", "chapter": "Regular Expressions", "n_section": "2.3", "section": "Corpora", "n_subsection": "", "subsection": "", "text": "It's also quite common for speakers or writers to use multiple languages in a single communicative act, a phenomenon called code switching. Code switching (2.2) Por primera vez veo a @username actually being hateful! it was beautiful:)" } ``` The text is provided as-is, without further preprocessing or tokenization. #### Questions Configuration The `questions` configuration contains a small subset of questions, the top retrieved paragraph relevant to the question and the answer spans. An example from the `test` split of the `questions` config is provided below. ```json { "chapter": "Regular Expressions", "section": "Regular Expressions", "subsection": "Basic Regular Expressions", "question": "What is the meaning of the Kleene star in Regex?", "paragraph": "This language consists of strings with a b, followed by at least two a's, followed by an exclamation point. The set of operators that allows us to say things like \"some number of as\" are based on the asterisk or *, commonly called the Kleene * (gen-Kleene * erally pronounced \"cleany star\"). The Kleene star means \"zero or more occurrences of the immediately previous character or regular expression\". So /a*/ means \"any string of zero or more as\". This will match a or aaaaaa, but it will also match Off Minor since the string Off Minor has zero a's. So the regular expression for matching one or more a is /aa*/, meaning one a followed by zero or more as. More complex patterns can also be repeated. So /[ab]*/ means \"zero or more a's or b's\" (not \"zero or more right square braces\"). This will match strings like aaaa or ababab or bbbb.", "answer": "The Kleene star means \"zero or more occurrences of the immediately previous character or regular expression\"" } ``` ### Data Splits | config| train| test| |------------:|-----:|----:| |`paragraphs` | 1697 | - | |`questions` | - | 59 | ### Dataset Creation The contents of the Speech and Language Processing book PDF were extracted using the [PDF to S2ORC JSON Converter](https://github.com/allenai/s2orc-doc2json) by AllenAI. The texts extracted by the converter were then manually cleaned to remove end-of-chapter exercises and other irrelevant content (e.g. tables, TikZ figures, etc.). Some issues in the parsed content were preserved in the final version to maintain a naturalistic setting for the associated projects, promoting the use of data filtering heuristics for students. The question-answer pairs were created manually by Gabriele Sarti. ## Additional Information ### Dataset Curators For problems on this 🤗 Datasets version, please contact us at [ik-nlp-course@rug.nl](mailto:ik-nlp-course@rug.nl). ### Licensing Information Please refer to the authors' websites for licensing information. ### Citation Information Please cite the authors if you use these corpora in your work: ```bibtex @book{slp3ed-iknlp2022, author = {Jurafsky, Daniel and Martin, James}, year = {2021}, month = {12}, pages = {1--235, 1--19}, title = {Speech and Language Processing: An Introduction to Natural Language Processing, Computational Linguistics, and Speech Recognition}, volume = {3} } ```
[ -0.4900966286659241, -0.7784777283668518, 0.11288665980100632, 0.13575106859207153, -0.2029629796743393, -0.025183793157339096, -0.2576530873775482, -0.5793017745018005, 0.14372725784778595, 0.5698897242546082, -0.5681890845298767, -0.5890908241271973, -0.44411665201187134, 0.38559818267822266, -0.2238711416721344, 0.9541654586791992, 0.07436547428369522, 0.13425536453723907, -0.01482308004051447, -0.05346677824854851, -0.2803138196468353, -0.2130856066942215, -0.7146241664886475, -0.24481944739818573, 0.3902040123939514, 0.49361780285835266, 0.5807759165763855, 0.9210408926010132, 0.3610009253025055, 0.24269971251487732, -0.21742379665374756, -0.10643012076616287, -0.010785835795104504, 0.16324372589588165, -0.1713622808456421, -0.2800525724887848, -0.28681856393814087, 0.09892051666975021, 0.7633919715881348, 0.8888792991638184, -0.008991284295916557, 0.21595953404903412, 0.1389751136302948, 0.7638559341430664, -0.29014110565185547, 0.37715160846710205, -0.5209877490997314, -0.0152953015640378, -0.29807421565055847, -0.08718054741621017, -0.34114667773246765, -0.26323962211608887, 0.05689486488699913, -0.5822970867156982, 0.29444342851638794, 0.0812118649482727, 1.1034398078918457, 0.12238127738237381, -0.2704385817050934, -0.472945898771286, -0.42143088579177856, 0.8656852841377258, -0.7381686568260193, 0.4809727072715759, 0.710161566734314, 0.2122868150472641, -0.2449260652065277, -0.7720822095870972, -0.911476731300354, -0.07428454607725143, -0.2356335073709488, 0.2245805263519287, -0.1839606761932373, -0.03650679439306259, 0.3942547142505646, 0.3747957646846771, -0.8479953408241272, 0.08694344013929367, -0.6445911526679993, -0.19127410650253296, 0.7958316802978516, 0.0008373181335628033, 0.3810690641403198, -0.5397366285324097, -0.19093069434165955, -0.3046318292617798, -0.315569132566452, 0.19215190410614014, 0.41464659571647644, 0.41996026039123535, -0.30340439081192017, 0.723808765411377, -0.21483901143074036, 0.709408700466156, -0.16128221154212952, -0.303654283285141, 0.4195469915866852, -0.6321837306022644, -0.13199549913406372, -0.10738997161388397, 0.8906843662261963, 0.3372745215892792, 0.28156495094299316, 0.08271726220846176, 0.15433402359485626, -0.03719494119286537, 0.010728539898991585, -0.48544740676879883, -0.19976705312728882, 0.453872412443161, -0.602184534072876, -0.04804977402091026, -0.17789703607559204, -0.9571760892868042, -0.26813653111457825, -0.45641347765922546, 0.0208857711404562, -0.48508667945861816, -0.17039114236831665, 0.3195844888687134, -0.3477504551410675, 0.43800830841064453, 0.03955166041851044, -0.8118619322776794, 0.44466084241867065, 0.47268393635749817, 0.48532333970069885, 0.10803087800741196, -0.386877179145813, -0.18827803432941437, -0.03908584266901016, -0.18165992200374603, 0.7533758878707886, -0.406684011220932, -0.2613631784915924, 0.0648198202252388, 0.24176256358623505, -0.32158127427101135, -0.5448873043060303, 0.9727054238319397, -0.3823898732662201, 0.5659120082855225, -0.28362587094306946, -0.678745687007904, -0.3286449611186981, -0.11351469904184341, -0.5063209533691406, 1.2255562543869019, 0.007553808391094208, -0.8025367259979248, 0.17926082015037537, -0.6216481924057007, -0.3981507122516632, 0.07965579628944397, -0.04648128151893616, -0.2411666363477707, -0.29551902413368225, 0.17179982364177704, 0.4218023121356964, -0.3598048686981201, 0.04013250768184662, -0.0896625891327858, -0.14112763106822968, 0.05306094512343407, -0.028823241591453552, 1.1630040407180786, 0.29535794258117676, -0.25396108627319336, -0.1303679645061493, -1.0082184076309204, 0.12034130096435547, 0.21444515883922577, -0.4828207790851593, -0.18604950606822968, 0.16994838416576385, 0.13749763369560242, 0.23746156692504883, 0.287203848361969, -0.5382263660430908, 0.1274382770061493, -0.513467013835907, 0.3522074520587921, 0.4658479392528534, 0.1519199162721634, 0.5537828803062439, -0.3829715847969055, 0.4598769545555115, 0.019084108993411064, 0.12983167171478271, -0.19593052566051483, -0.7897713780403137, -1.1133140325546265, -0.28488582372665405, 0.2833523750305176, 0.8391916155815125, -0.732367753982544, 0.8572637438774109, -0.05820314958691597, -0.756672203540802, -0.7582508325576782, -0.0338788777589798, 0.3741826117038727, 0.5390529632568359, 0.6601563692092896, 0.06770794093608856, -0.7610147595405579, -0.9715496897697449, -0.2751302421092987, -0.3105788826942444, -0.03294216841459274, 0.2863903045654297, 0.6297057867050171, -0.12025265395641327, 0.8283326029777527, -0.6588466167449951, -0.3468741774559021, -0.3764609098434448, -0.07265031337738037, 0.35887929797172546, 0.6244128346443176, 0.2802084684371948, -0.7484375238418579, -0.6953213214874268, -0.06607810407876968, -0.6040908694267273, -0.3163146376609802, -0.1252245008945465, -0.031892016530036926, 0.31283804774284363, 0.5656604766845703, -0.4825102686882019, 0.21151916682720184, 0.3622271716594696, -0.5288717746734619, 0.6102573871612549, 0.03414859250187874, -0.04803219810128212, -1.3277397155761719, 0.14450731873512268, 0.126412495970726, 0.07739033550024033, -0.8266620635986328, 0.026099009439349174, -0.17132000625133514, -0.04045531153678894, -0.324558824300766, 0.6883568167686462, -0.3295225501060486, 0.08028817921876907, 0.06301315873861313, 0.3593938946723938, 0.1428547203540802, 0.5409662127494812, -0.03331584483385086, 0.5670555830001831, 0.6045200824737549, -0.5453197956085205, 0.07863927632570267, 0.38975825905799866, -0.28502193093299866, 0.4079943895339966, -0.6072685122489929, 0.09130964428186417, -0.21387979388237, 0.20545083284378052, -0.9528872966766357, -0.1279376596212387, 0.6402289271354675, -0.643358588218689, 0.24103039503097534, -0.06600185483694077, -0.6105029582977295, -0.1519528180360794, -0.27268534898757935, 0.08811325579881668, 0.46244996786117554, -0.12196461856365204, 0.48528456687927246, 0.46340611577033997, -0.36740678548812866, -0.5952475666999817, -0.5860458612442017, 0.04145290330052376, -0.14905807375907898, -0.582863986492157, 0.3861352801322937, -0.2984952926635742, -0.21435953676700592, 0.014235877431929111, 0.0016969647258520126, -0.2616289258003235, 0.02324126474559307, -0.027448460459709167, 0.1334989219903946, -0.15654149651527405, 0.016829121857881546, 0.052592746913433075, -0.0845896378159523, -0.1214560940861702, -0.1495039016008377, 0.7064208984375, -0.014747744426131248, -0.0785289779305458, -0.5865010619163513, 0.6517868638038635, 0.3770116865634918, -0.20447081327438354, 0.5337722301483154, 0.7421822547912598, -0.5062283873558044, 0.018930090591311455, -0.5512470602989197, -0.06748905777931213, -0.45236578583717346, 0.40742582082748413, -0.30428504943847656, -0.8162201642990112, 0.768518328666687, 0.5233076810836792, 0.14806398749351501, 0.8179736137390137, 0.3863711655139923, -0.30725032091140747, 0.848101019859314, 0.41318055987358093, 0.018296409398317337, 0.37660038471221924, -0.3208959102630615, 0.32736802101135254, -0.9726793766021729, -0.4533880352973938, -1.088593602180481, -0.08185339719057083, -0.8314040303230286, -0.47569021582603455, 0.06866215169429779, 0.3805605471134186, -0.18616990745067596, 0.6161050200462341, -0.5515486598014832, 0.4362109899520874, 0.6618894934654236, -0.20307613909244537, 0.20136597752571106, 0.02906254306435585, -0.11193521320819855, -0.12246222794055939, -0.6777247190475464, -0.6780954003334045, 0.7404554486274719, 0.4460966885089874, 0.2320476770401001, -0.003931013867259026, 0.5770335793495178, 0.12823115289211273, -0.2200532704591751, -0.7994621992111206, 0.7902107834815979, -0.26281359791755676, -0.6608901619911194, -0.38432303071022034, -0.3493516147136688, -1.1328120231628418, 0.3472130596637726, -0.13716252148151398, -0.9028077721595764, 0.4176303744316101, -0.15598922967910767, -0.10710269212722778, -0.03089713305234909, -0.7843092083930969, 0.832484781742096, 0.18994402885437012, 0.08901721239089966, -0.08737294375896454, -0.7510010600090027, 0.09374311566352844, 0.08399864286184311, 0.28352347016334534, -0.21680870652198792, -0.04555101320147514, 1.0853132009506226, -0.11975552886724472, 0.8241935968399048, -0.20530366897583008, 0.0539800189435482, 0.36522176861763, -0.13026297092437744, 0.25436484813690186, 0.051898352801799774, -0.14426299929618835, 0.518948495388031, 0.21652741730213165, -0.38948869705200195, -0.3905177712440491, 0.4267672598361969, -0.6681516766548157, -0.3350648581981659, -0.6087753772735596, -0.5028193593025208, 0.024106260389089584, 0.5285010933876038, 0.22321519255638123, 0.3209286034107208, 0.20475877821445465, 0.2724269926548004, 0.5300205945968628, -0.47313737869262695, 0.4415745139122009, 0.7611392736434937, -0.09698643535375595, -0.6551720499992371, 0.7171742916107178, 0.41339460015296936, 0.07634466886520386, 0.36932608485221863, 0.24363146722316742, -0.43272432684898376, -0.594602644443512, -0.3671729266643524, 0.4161585867404938, -0.7873402833938599, -0.03828645125031471, -0.7704644203186035, -0.31997150182724, -0.6462463736534119, -0.036241449415683746, -0.009187274612486362, -0.49501359462738037, -0.4620267450809479, 0.03661193326115608, 0.17537681758403778, 0.3822203576564789, -0.052983686327934265, 0.25998714566230774, -0.6887298822402954, 0.4074384570121765, 0.02850395068526268, 0.22840318083763123, -0.1456148475408554, -0.5027518272399902, -0.4257349967956543, 0.09407360106706619, -0.2415512651205063, -0.789556086063385, 0.28698253631591797, 0.3606381416320801, 0.5629139542579651, 0.12305577844381332, 0.129708394408226, 0.628825306892395, -0.574333906173706, 1.1907905340194702, 0.05279511958360672, -0.8278400301933289, 0.6201054453849792, -0.39115822315216064, 0.3617991507053375, 0.6434504985809326, 0.4333192706108093, -0.8951601386070251, -0.5161082148551941, -0.8074487447738647, -0.9797080159187317, 0.8689918518066406, 0.34017452597618103, 0.04737270995974541, -0.22359296679496765, 0.2336648851633072, -0.03645682707428932, 0.08092916756868362, -0.7221066951751709, -0.5779711604118347, -0.1177545115351677, -0.32742682099342346, -0.013045922853052616, -0.30142998695373535, -0.03278390318155289, -0.3847736120223999, 0.8858270645141602, -0.03698212280869484, 0.3791065514087677, 0.26311740279197693, 0.03886616602540016, 0.09826604276895523, 0.35184067487716675, 0.635654628276825, 0.3674408197402954, -0.1920386254787445, 0.04008889198303223, 0.08807528764009476, -0.7001741528511047, -0.07417667657136917, 0.353019654750824, -0.19288676977157593, 0.06712774932384491, 0.5747470259666443, 0.6576279401779175, 0.021795818582177162, -0.5792956352233887, 0.29754504561424255, -0.157523512840271, -0.2663341760635376, -0.43602409958839417, 0.041663289070129395, -0.030266521498560905, 0.14411841332912445, 0.40906888246536255, 0.14931198954582214, 0.14836306869983673, -0.40851911902427673, 0.20161399245262146, 0.048114899545907974, -0.1976862996816635, -0.24108606576919556, 0.415035218000412, -0.03936329111456871, -0.49718180298805237, 0.5073080658912659, -0.3414216935634613, -0.4660516381263733, 0.4673117399215698, 0.4852677285671234, 0.8816604018211365, -0.1144261285662651, 0.23084226250648499, 0.6084960699081421, 0.391120970249176, 0.11610884219408035, 0.6097907423973083, -0.15489491820335388, -0.9229691028594971, -0.4234950542449951, -0.8706532120704651, -0.13090266287326813, 0.34352314472198486, -0.7032290101051331, 0.2978093922138214, -0.2894771695137024, 0.07729093730449677, 0.24927684664726257, 0.18525654077529907, -0.5424796342849731, 0.24861504137516022, -0.07898423820734024, 1.038673758506775, -0.8689970374107361, 0.6616017818450928, 0.7588057518005371, -0.6303025484085083, -0.8811649084091187, 0.10984085500240326, -0.21471981704235077, -0.6008279919624329, 0.4542216360569, -0.05106831341981888, 0.25905027985572815, 0.04978920519351959, -0.26377931237220764, -0.9612200260162354, 0.754464864730835, 0.22589901089668274, -0.24862104654312134, 0.021005725488066673, 0.37799739837646484, 0.654463529586792, -0.060852985829114914, 0.16968131065368652, 0.6801541447639465, 0.5192707180976868, -0.10673569142818451, -0.9852602481842041, -0.03341496363282204, -0.5510032176971436, -0.13130630552768707, -0.10660425573587418, -0.4853609502315521, 0.6770519614219666, 0.1745176464319229, -0.2819976806640625, 0.02763327956199646, 0.46433788537979126, 0.2984847128391266, 0.2571519911289215, 0.4983632564544678, 0.6627548336982727, 0.7915990948677063, -0.23748832941055298, 0.9117679595947266, -0.31277334690093994, 0.3063279986381531, 1.0831984281539917, -0.09889908134937286, 0.912522554397583, 0.48094722628593445, -0.39095231890678406, 0.47039568424224854, 0.7557663917541504, -0.07611652463674545, 0.4468216896057129, 0.144077867269516, -0.10745242983102798, 0.0742444172501564, -0.2828165292739868, -0.5112019777297974, 0.699529230594635, 0.26407673954963684, -0.38797059655189514, -0.0998261496424675, -0.09941856563091278, 0.3677864968776703, 0.007982205599546432, -0.023294270038604736, 0.8868550658226013, 0.16927899420261383, -0.710633397102356, 0.7498536109924316, 0.08648963272571564, 0.3503665626049042, -0.6569233536720276, -0.12106272578239441, -0.15664814412593842, -0.03675975278019905, -0.3351278007030487, -0.8918918967247009, 0.4339703321456909, 0.04714884236454964, -0.5189019441604614, -0.40662047266960144, 0.6024389863014221, -0.4809247553348541, -0.541797399520874, 0.251570463180542, 0.4207347631454468, 0.3581516146659851, 0.3342065215110779, -0.8064916729927063, -0.0005010779132135212, 0.21169552206993103, -0.3581627607345581, 0.20462758839130402, 0.2380419373512268, 0.12273068726062775, 0.5054914355278015, 0.7476295232772827, 0.285564661026001, 0.17899253964424133, 0.16643190383911133, 0.6787925958633423, -0.5411087870597839, -0.5819518566131592, -0.5636714100837708, 0.7741313576698303, -0.3025306463241577, -0.44814014434814453, 0.8480133414268494, 0.7444759011268616, 1.1519886255264282, -0.06944364309310913, 0.7999998927116394, -0.41176775097846985, 0.7880976796150208, -0.5021039247512817, 0.7015833854675293, -0.4402812421321869, 0.28434890508651733, -0.3708500266075134, -0.9364790320396423, -0.4578443169593811, 0.8645654320716858, -0.14146415889263153, -0.05912478268146515, 0.9229387640953064, 0.8343030214309692, 0.2807055711746216, 0.18067236244678497, 0.03497620299458504, 0.23791269958019257, 0.31878146529197693, 0.21478460729122162, 0.5202248096466064, -0.7522077560424805, 0.4119546413421631, -0.4588896930217743, -0.1472775936126709, 0.11707800626754761, -0.610799252986908, -0.6782498359680176, -1.045663595199585, -0.5067692399024963, -0.4429022967815399, -0.14382591843605042, 0.8994685411453247, 0.4313110113143921, -0.8537677526473999, -0.3619670569896698, -0.025792477652430534, 0.1250365823507309, -0.3773317337036133, -0.27286234498023987, 0.6006342172622681, -0.3160721957683563, -0.8388403654098511, 0.5281842947006226, -0.03400179743766785, -0.004895873833447695, -0.07040433585643768, -0.041193295270204544, -0.4227461516857147, -0.02790127322077751, 0.41428184509277344, 0.2502272427082062, -0.6246830821037292, -0.23502254486083984, 0.12431574612855911, 0.002146235667169094, -0.0025595654733479023, 0.3961716592311859, -0.4800807535648346, 0.34637919068336487, 0.6286661624908447, 0.2581734359264374, 0.24309830367565155, -0.28593572974205017, 0.24114111065864563, -0.7257433533668518, 0.13115808367729187, 0.4711987376213074, 0.43559426069259644, 0.23885995149612427, -0.18223394453525543, 0.5163344740867615, 0.3854196071624756, -0.57748943567276, -0.9633112549781799, 0.21044600009918213, -1.097537636756897, -0.06309303641319275, 1.363004207611084, -0.07934845238924026, -0.13263243436813354, -0.3993132412433624, -0.35339170694351196, 0.49907782673835754, -0.35352906584739685, 0.6194564700126648, 0.794529378414154, -0.14002294838428497, -0.170187309384346, -0.6499284505844116, 0.6701631546020508, 0.31725814938545227, -0.7491170167922974, 0.005970653612166643, 0.22216208279132843, 0.18475531041622162, 0.35985589027404785, 0.6641325354576111, -0.1482948213815689, 0.03425262123346329, -0.060490332543849945, 0.1979052573442459, 0.13420720398426056, -0.17477534711360931, -0.38692086935043335, 0.15379416942596436, -0.20364972949028015, -0.15871891379356384 ]
null
null
null
null
null
null
null
null
null
null
null
null
null
mocha
null
2022-11-18T21:29:45Z
452
2
mocha
[ "task_categories:question-answering", "annotations_creators:crowdsourced", "language_creators:found", "multilinguality:monolingual", "size_categories:10K<n<100K", "source_datasets:original", "language:en", "license:cc-by-sa-4.0", "generative-reading-comprehension-metric", "region:us" ]
2022-11-18T21:29:45Z
2022-03-02T23:29:22.000Z
2022-03-02T23:29:22
--- pretty_name: MOCHA annotations_creators: - crowdsourced language_creators: - found language: - en license: - cc-by-sa-4.0 multilinguality: - monolingual size_categories: - 10K<n<100K source_datasets: - original task_categories: - question-answering task_ids: [] paperswithcode_id: mocha tags: - generative-reading-comprehension-metric dataset_info: features: - name: constituent_dataset dtype: string - name: id dtype: string - name: context dtype: string - name: question dtype: string - name: reference dtype: string - name: candidate dtype: string - name: score dtype: float32 - name: metadata struct: - name: scores sequence: int32 - name: source dtype: string - name: candidate2 dtype: string - name: score2 dtype: float32 splits: - name: train num_bytes: 33292592 num_examples: 31069 - name: validation num_bytes: 4236883 num_examples: 4009 - name: test num_bytes: 6767409 num_examples: 6321 - name: minimal_pairs num_bytes: 193560 num_examples: 200 download_size: 14452311 dataset_size: 44490444 --- # Dataset Card for Mocha ## 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:** [Mocha](https://allennlp.org/mocha) - **Repository:** [https://github.com/anthonywchen/MOCHA](https://github.com/anthonywchen/MOCHA) - **Paper:** [MOCHA: A Dataset for Training and Evaluating Generative Reading Comprehension Metrics](https://www.aclweb.org/anthology/2020.emnlp-main.528/) - **Leaderboard:** - **Point of Contact:** ### Dataset Summary Posing reading comprehension as a generation problem provides a great deal of flexibility, allowing for open-ended questions with few restrictions on possible answers. However, progress is impeded by existing generation metrics, which rely on token overlap and are agnostic to the nuances of reading comprehension. To address this, we introduce a benchmark for training and evaluating generative reading comprehension metrics: MOdeling Correctness with Human Annotations. MOCHA contains 40K human judgement scores on model outputs from 6 diverse question answering datasets and an additional set of minimal pairs for evaluation. Using MOCHA, we train a Learned Evaluation metric for Reading Comprehension, LERC, to mimic human judgement scores. LERC outperforms baseline metrics by 10 to 36 absolute Pearson points on held-out annotations. When we evaluate robustness on minimal pairs, LERC achieves 80% accuracy, outperforming baselines by 14 to 26 absolute percentage points while leaving significant room for improvement. MOCHA presents a challenging problem for developing accurate and robust generative reading comprehension metrics. ### Supported Tasks and Leaderboards [More Information Needed] ### Languages English ## Dataset Structure ### Data Instances MOCHA contains 40K human judgement scores on model outputs from 6 diverse question answering datasets and an additional set of minimal pairs for evaluation. MOCHA pairs reading comprehension instances, which consists of a passage, question, and reference, with candidates and human judgement scores. ### Data Fields - `constituent_dataset`: the original QA dataset which the data instance came from. - `id` - `context`: the passage content. - `question`: the question related to the passage content. - `reference`: the correct answer for the question. - `candidate`: the answer generated from the `reference` by `source` - `score`: the human judgement score for the `candidate`. Not included in test split, defaults to `-1` - `metadata`: Not included in minimal pairs split. - `scores`: list of scores from difference judges, averaged out to get final `score`. defaults to `[]` - `source`: the generative model to generate the `candidate` In minimal pairs, we'll have an additional candidate for robust evaluation. - `candidate2` - `score2` ### Data Splits Dataset Split | Number of Instances in Split --------------|-------------------------------------------- Train | 31,069 Validation | 4,009 Test | 6,321 Minimal Pairs | 200 ## 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 [CC BY-SA 4.0](https://creativecommons.org/licenses/by-sa/4.0/legalcode) ### Citation Information ```bitex @inproceedings{Chen2020MOCHAAD, author={Anthony Chen and Gabriel Stanovsky and Sameer Singh and Matt Gardner}, title={MOCHA: A Dataset for Training and Evaluating Generative Reading Comprehension Metrics}, booktitle={EMNLP}, year={2020} } ``` ### Contributions Thanks to [@mattbui](https://github.com/mattbui) for adding this dataset.
[ -0.25893694162368774, -0.8135215640068054, 0.08094210922718048, 0.11407797038555145, -0.17982721328735352, 0.06788492947816849, -0.009843367151916027, -0.13384556770324707, 0.15033213794231415, 0.4970565438270569, -0.7766362428665161, -0.7955172061920166, -0.3587161898612976, 0.23553209006786346, -0.1925361454486847, 0.854091465473175, 0.19478079676628113, 0.031380459666252136, -0.7364398837089539, -0.21223381161689758, -0.46334177255630493, -0.42923253774642944, -0.5003343224525452, -0.34614208340644836, 0.3816201090812683, 0.6547971963882446, 0.45789629220962524, 0.7146667838096619, 0.60871821641922, 0.2154686152935028, -0.07942207902669907, 0.18681499361991882, -0.3998546302318573, 0.12929202616214752, -0.07788615673780441, -0.6914827823638916, -0.6456844806671143, -0.031541842967271805, 0.44738489389419556, 0.6366079449653625, -0.2088668793439865, 0.46016818284988403, 0.12199223786592484, 0.7553728818893433, -0.6183989644050598, 0.45527857542037964, -0.5195131301879883, 0.026786182075738907, -0.30083969235420227, -0.30865728855133057, -0.42119741439819336, -0.31404516100883484, -0.1794460117816925, -0.7457242012023926, 0.4543704688549042, 0.04677833616733551, 0.9570662975311279, 0.31607094407081604, -0.4926207363605499, -0.23643524944782257, -0.14621305465698242, 0.6446959972381592, -0.6751541495323181, 0.2643967568874359, 0.917320191860199, 0.29394611716270447, 0.24719391763210297, -0.6294499039649963, -0.710934042930603, -0.015524739399552345, -0.13836243748664856, 0.4860770106315613, -0.022620556876063347, -0.21155020594596863, 0.4188906252384186, 0.5693419575691223, -0.5641655921936035, -0.08366456627845764, -0.3683363199234009, -0.3788949251174927, 0.7407317757606506, 0.45193037390708923, 0.25877782702445984, -0.5484244227409363, -0.1330227106809616, -0.40484288334846497, -0.5482950210571289, 0.2321976125240326, 0.6027808785438538, 0.2935030460357666, -0.3764364421367645, 0.7052487134933472, -0.47970128059387207, 0.5646580457687378, -0.4154528081417084, -0.17879526317119598, 0.707662045955658, -0.786965012550354, -0.07625582069158554, -0.5261584520339966, 1.0216835737228394, 0.5434192419052124, 0.2707711160182953, 0.07890348136425018, -0.12188860028982162, 0.12600694596767426, 0.13138553500175476, -0.7361607551574707, -0.2539100646972656, 0.32887884974479675, -0.38597893714904785, -0.4089590907096863, 0.039452098309993744, -1.236622929573059, -0.3731250464916229, -0.17981237173080444, -0.026608821004629135, -0.5580229759216309, -0.17476443946361542, -0.03788368031382561, -0.28913840651512146, 0.358256071805954, 0.029045699164271355, -1.1079483032226562, 0.2146877646446228, 0.5110245943069458, 0.8935645818710327, -0.0925159603357315, -0.30735623836517334, -0.3735465705394745, -0.07043618708848953, -0.16304124891757965, 0.613105833530426, -0.4119928777217865, -0.615954577922821, 0.24088633060455322, 0.24438978731632233, -0.2239500731229782, -0.44240984320640564, 0.8875728845596313, -0.28713005781173706, 0.24343045055866241, -0.44403889775276184, -0.5704300403594971, 0.02636154182255268, 0.39967650175094604, -0.7848320603370667, 1.1832515001296997, 0.2389921247959137, -0.5696834921836853, 0.28322309255599976, -0.9438076019287109, -0.6568191647529602, 0.06010843440890312, 0.002209819620475173, -0.32899779081344604, -0.292958527803421, 0.4135441482067108, 0.5040204524993896, -0.5831654071807861, 0.014401158317923546, -0.08855772018432617, -0.059782009571790695, 0.15907061100006104, -0.3537501096725464, 1.2857675552368164, 0.19844938814640045, -0.05342882126569748, -0.08411610871553421, -0.994163453578949, 0.10866966843605042, 0.48065248131752014, -0.2007267028093338, -0.16971039772033691, -0.15333862602710724, 0.03705214336514473, -0.15889191627502441, 0.21611951291561127, -0.39287126064300537, 0.014477302320301533, -0.2897879481315613, 0.8897748589515686, 0.5741700530052185, 0.09358132630586624, 0.33226028084754944, -0.44807153940200806, 0.8440099954605103, -0.09830524772405624, 0.2254549264907837, -0.5362037420272827, -0.6484993696212769, -0.9785862565040588, -0.027987731620669365, 0.5774447321891785, 0.7540483474731445, -0.8386896252632141, 0.848111093044281, -0.5540654063224792, -0.7361900210380554, -0.7763463854789734, 0.17458972334861755, 0.5992881655693054, 0.6556647419929504, 0.39164793491363525, -0.17893950641155243, -0.3538901209831238, -0.760516881942749, 0.16601422429084778, -0.32720738649368286, 0.012198612093925476, 0.3363467752933502, 0.8939927816390991, -0.07406250387430191, 0.8572673797607422, -0.672474205493927, -0.29787325859069824, -0.1697012335062027, -0.04945480078458786, -0.11592566221952438, 0.5667549967765808, 0.478811651468277, -0.8870647549629211, -0.42500635981559753, -0.044742826372385025, -0.7412833571434021, -0.16717922687530518, 0.12532587349414825, -0.2803402841091156, 0.026278702542185783, 0.40740829706192017, -0.4252478778362274, 0.25822946429252625, 0.5911014676094055, -0.4044122099876404, 0.6412248015403748, 0.27558469772338867, 0.19902239739894867, -1.3864922523498535, 0.10416509956121445, 0.07312636077404022, 0.007606300991028547, -0.30281826853752136, 0.2109520137310028, 0.20699366927146912, -0.0390080027282238, -0.27105972170829773, 0.7861033082008362, -0.25520315766334534, 0.2471754103899002, 0.32029402256011963, 0.1556282639503479, 0.3989277780056, 0.6767565608024597, -0.24577148258686066, 0.844318687915802, 0.44794389605522156, -0.5229854583740234, 0.514951229095459, 0.5316600203514099, -0.6855630874633789, 0.716049075126648, -0.7879608869552612, 0.18391557037830353, 0.1515514999628067, 0.14989405870437622, -1.064102292060852, -0.44442811608314514, 0.4360691010951996, -0.7885843515396118, -0.12511460483074188, -0.12220261245965958, -0.9069920182228088, -0.4825240671634674, -0.16194474697113037, 0.3940293490886688, 0.618023157119751, -0.2949003577232361, 0.4487084746360779, 0.38403549790382385, -0.034067340195178986, -0.3858378231525421, -1.092088222503662, -0.28605929017066956, -0.09378746151924133, -0.6794822812080383, 0.3965531885623932, -0.31602731347084045, -0.015725020319223404, -0.013029485009610653, 0.1955808848142624, -0.1121990978717804, 0.01566172018647194, 0.25498589873313904, 0.19897213578224182, -0.20181792974472046, 0.2592936158180237, 0.02336787059903145, -0.12292010337114334, -0.030872713774442673, 0.23265956342220306, 0.704953670501709, -0.1215629130601883, -0.42633727192878723, -0.5856202244758606, 0.14372844994068146, 0.48559361696243286, -0.4747035503387451, 0.6322793960571289, 0.5451380014419556, -0.3706817030906677, -0.12782663106918335, -0.38903284072875977, -0.08516087383031845, -0.4462108612060547, 0.43268826603889465, -0.5085868239402771, -0.5339621901512146, 0.8250980377197266, 0.4844309687614441, 0.23677107691764832, 0.683091402053833, 0.547307550907135, -0.20084168016910553, 0.7483129501342773, 0.2061314731836319, 0.04826310649514198, 0.6270328760147095, -0.5771191716194153, -0.16603803634643555, -0.903961718082428, -0.4818228483200073, -0.7420583367347717, -0.1750176101922989, -0.3280884623527527, -0.479131817817688, -0.030288293957710266, 0.050692103803157806, -0.07575573027133942, 0.45147785544395447, -0.395734578371048, 0.5357183218002319, 0.8214226961135864, 0.06738986074924469, 0.3557034432888031, 0.003512352705001831, -0.2883986830711365, 0.0008164071477949619, -0.5873985290527344, -0.5884314775466919, 1.1656224727630615, 0.29927560687065125, 0.3585343658924103, 0.07930886745452881, 0.4703110158443451, 0.42900994420051575, 0.16042208671569824, -0.8570185303688049, 0.6969262361526489, 0.032946012914180756, -0.6447169780731201, -0.46556606888771057, -0.5081934928894043, -1.0757757425308228, 0.3386555016040802, -0.024882467463612556, -0.49383866786956787, 0.1657252162694931, 0.10053586214780807, -0.27474886178970337, 0.001352931372821331, -1.017332911491394, 1.0893616676330566, -0.05591997131705284, -0.07050972431898117, 0.0632564052939415, -0.6501211524009705, 0.2227105349302292, 0.25174298882484436, 0.1951526701450348, -0.2071048766374588, -0.07506152242422104, 0.9507077932357788, -0.4683658480644226, 1.0831435918807983, -0.03280049189925194, 0.13590271770954132, 0.4977019429206848, -0.1903230994939804, 0.31647789478302, -0.0038271474186331034, -0.3752393126487732, 0.2625066041946411, 0.25677016377449036, -0.6814219355583191, -0.6918008327484131, 0.2944282591342926, -0.6884820461273193, -0.43584156036376953, -0.39404532313346863, -0.5268533229827881, -0.4153099060058594, 0.33150556683540344, 0.4360505938529968, 0.3474246859550476, -0.31648752093315125, 0.5782079100608826, 0.40814951062202454, -0.011919536627829075, 0.0785488411784172, 0.3795797526836395, -0.07009105384349823, -0.6832432746887207, 0.9120851159095764, 0.1530991941690445, 0.4212665557861328, 0.6186152696609497, 0.21903973817825317, -0.3972057104110718, -0.4144431948661804, -0.46393853425979614, 0.07063867896795273, -0.8330327868461609, -0.20123666524887085, -0.5873481631278992, -0.45505285263061523, -0.7419759631156921, 0.04062914475798607, 0.013394024223089218, -0.2909891903400421, -0.39455896615982056, -0.4548319876194, 0.24386665225028992, 0.0882481262087822, 0.279744029045105, 0.47210684418678284, -0.5985813140869141, 0.10603225231170654, 0.21616050601005554, 0.15262630581855774, 0.21514353156089783, -0.5575829744338989, -0.24301482737064362, 0.31357577443122864, -0.5131593346595764, -0.7416927814483643, 0.23353318870067596, 0.11733143031597137, 0.6938928961753845, 0.3823494017124176, 0.14356344938278198, 0.5008460283279419, -0.16371029615402222, 1.0134716033935547, 0.23227477073669434, -0.7722856998443604, 0.8079549670219421, -0.403818279504776, 0.32067903876304626, 0.8893693685531616, 0.17117942869663239, -0.6179085969924927, -0.14071255922317505, -0.7101575136184692, -0.6516643762588501, 0.5968101620674133, 0.35754334926605225, 0.4209185540676117, -0.24027888476848602, 0.10710544884204865, 0.1742260605096817, 0.2137482464313507, -0.8393811583518982, -0.4330928921699524, -0.29782184958457947, -0.4284824728965759, -0.00453329598531127, -0.2429010570049286, -0.3051601052284241, -0.560551106929779, 0.6847110986709595, -0.11218597739934921, 0.13488687574863434, 0.015415262430906296, -0.11608300358057022, 0.21668130159378052, 0.16961833834648132, 0.2322656214237213, 0.536857545375824, -0.01522047258913517, -0.1663769632577896, -0.10546426475048065, -0.6188044548034668, -0.06787155568599701, -0.0017174652311950922, -0.463441401720047, -0.21834582090377808, 0.7554171681404114, 0.9049701690673828, -0.10669135302305222, -0.9462780952453613, 0.59705650806427, 0.200709268450737, -0.42060765624046326, -0.21966946125030518, 0.2923485338687897, 0.12035230547189713, 0.011908836662769318, 0.14320074021816254, -0.039278168231248856, -0.08689867705106735, -0.5993540287017822, 0.08828380703926086, 0.12148158252239227, -0.3230530023574829, -0.3416004478931427, 0.508571982383728, 0.6045516729354858, -0.6538069844245911, 0.701371967792511, -0.37664639949798584, -0.3159675598144531, 0.9742266535758972, 0.4490523636341095, 0.7997427582740784, -0.09862516820430756, 0.6081656813621521, 0.667968213558197, 0.4325098693370819, 0.09287475049495697, 0.38795891404151917, -0.259443074464798, -0.9559440016746521, 0.08585468679666519, -0.6423500180244446, -0.37871161103248596, 0.10594039410352707, -0.9015645980834961, 0.22190840542316437, -0.3257679343223572, -0.16917306184768677, 0.14161677658557892, 0.09854155778884888, -0.8412553668022156, 0.1723518967628479, -0.3934462070465088, 0.9781737923622131, -0.842922031879425, 0.737589418888092, 0.6426870822906494, -0.9928921461105347, -0.4224739372730255, 0.09652850031852722, 0.009799101389944553, -1.1071934700012207, 0.057337407022714615, 0.14043933153152466, 0.3690362274646759, 0.05181123688817024, -0.4297349452972412, -0.5283387899398804, 1.4465806484222412, 0.2671617865562439, -0.42657583951950073, 0.05550507828593254, 0.214373379945755, 0.7154310345649719, -0.3466852605342865, 0.1498517394065857, 0.6047958731651306, 0.4385260045528412, 0.2592930495738983, -0.46118417382240295, 0.02129867486655712, -0.6683799028396606, -0.10356451570987701, -0.1460646241903305, -0.9917532801628113, 0.6225327253341675, -0.16299642622470856, -0.3384556174278259, 0.2243364304304123, 0.5424010753631592, 0.3105335235595703, 0.49954739212989807, 0.6072035431861877, 0.7142848372459412, 1.1289788484573364, -0.18203695118427277, 1.240680456161499, -0.11237278580665588, 0.289875864982605, 1.1661964654922485, -0.01906304992735386, 0.887085497379303, 0.3266414701938629, -0.6092655062675476, 0.5764116048812866, 0.9449781775474548, -0.362291157245636, 0.49934545159339905, -0.018538782373070717, 0.17287805676460266, -0.15775258839130402, -0.33853521943092346, -0.48098456859588623, 0.2636297047138214, 0.2740202248096466, -0.5138645768165588, 0.18631233274936676, -0.060762397944927216, -0.08548259735107422, 0.21667562425136566, -0.049585726112127304, 0.5461862087249756, 0.021061604842543602, -0.6638967394828796, 0.40224602818489075, -0.145510733127594, 0.5108407735824585, -0.5794055461883545, 0.10414066910743713, -0.3823302090167999, -0.13974155485630035, -0.2263062745332718, -0.971137523651123, 0.16590560972690582, -0.04228305071592331, -0.5374818444252014, -0.1333979368209839, 0.28564783930778503, -0.30611562728881836, -0.7631586790084839, 0.18855617940425873, 0.5837646126747131, 0.002466240432113409, 0.14470142126083374, -0.84184730052948, -0.06604902446269989, 0.17496153712272644, -0.29832273721694946, 0.18538862466812134, 0.5425399541854858, 0.13500630855560303, 0.7406117916107178, 0.8168289661407471, -0.0872100293636322, 0.08577807247638702, 0.5782352685928345, 0.5197538137435913, -0.6299093961715698, -0.6653147339820862, -0.7033319473266602, 0.6791477799415588, -0.30438119173049927, -0.8036792278289795, 0.6973803043365479, 0.6567556262016296, 0.921993613243103, 0.016401812434196472, 0.9397146701812744, -0.36700308322906494, 0.4509861469268799, -0.6332798600196838, 0.60230952501297, -0.8839366436004639, 0.1839570701122284, -0.15749181807041168, -0.7995100021362305, -0.15603594481945038, 0.36528801918029785, -0.32101932168006897, 0.1936369091272354, 0.7513821125030518, 0.9624110460281372, 0.09691401571035385, 0.260763019323349, 0.29031211137771606, 0.12167955935001373, 0.1855127364397049, 0.3967556953430176, 0.614087700843811, -0.6419578194618225, 0.8560119867324829, -0.4356708526611328, -0.15400627255439758, -0.15433236956596375, -0.5664182305335999, -0.9759254455566406, -1.1370298862457275, -0.3901667892932892, -0.473449170589447, -0.08825317025184631, 0.5187389850616455, 0.6423029899597168, -0.8398553133010864, -0.10767851024866104, -0.133746936917305, 0.34865128993988037, -0.49650415778160095, -0.35350167751312256, 0.45316728949546814, -0.199240580201149, -0.9785701632499695, -0.007887975312769413, -0.15418989956378937, -0.05175001174211502, -0.2848004400730133, -0.16500027477741241, -0.16352589428424835, -0.067550428211689, 0.543293297290802, 0.2368016391992569, -0.7762191891670227, 0.04771406203508377, 0.10778222233057022, -0.28853291273117065, 0.18827131390571594, 0.5180532932281494, -0.33311691880226135, 0.6448327302932739, 0.6944620609283447, 0.771868884563446, 0.3548375070095062, 0.09808546304702759, 0.2566814124584198, -0.7610151171684265, 0.0153238195925951, 0.43003636598587036, 0.45718201994895935, 0.44333934783935547, -0.26550355553627014, 1.0164989233016968, 0.5029392838478088, -0.406004399061203, -1.0073835849761963, 0.0031313656363636255, -1.1882907152175903, 0.046167489141225815, 1.4531503915786743, -0.10024279356002808, -0.2523895502090454, -0.05519990250468254, -0.060465481132268906, 0.09602996706962585, -0.4790191650390625, 0.5690736770629883, 1.1590008735656738, 0.1729125678539276, -0.16325443983078003, -0.6864107847213745, 0.1818520575761795, 0.3782774806022644, -1.0970699787139893, 0.08583347499370575, 0.36872050166130066, 0.2331814467906952, 0.28596189618110657, 0.8639861345291138, -0.18417756259441376, 0.19667433202266693, 0.41994568705558777, 0.14637474715709686, -0.1417321115732193, -0.14867308735847473, 0.04232100024819374, 0.1320977360010147, -0.3911192715167999, -0.5101349353790283 ]
null
null
null
null
null
null
null
null
null
null
null
null
null
wiki_summary
null
2022-11-18T22:00:55Z
452
6
null
[ "task_categories:text2text-generation", "task_categories:translation", "task_categories:question-answering", "task_categories:summarization", "task_ids:abstractive-qa", "task_ids:explanation-generation", "task_ids:extractive-qa", "task_ids:open-domain-qa", "task_ids:open-domain-abstractive-qa", "task_ids:text-simplification", "annotations_creators:no-annotation", "language_creators:crowdsourced", "multilinguality:monolingual", "size_categories:10K<n<100K", "source_datasets:original", "language:fa", "license:apache-2.0", "region:us" ]
2022-11-18T22:00:55Z
2022-03-02T23:29:22.000Z
2022-03-02T23:29:22
--- annotations_creators: - no-annotation language_creators: - crowdsourced language: - fa license: - apache-2.0 multilinguality: - monolingual size_categories: - 10K<n<100K source_datasets: - original task_categories: - text2text-generation - translation - question-answering - summarization task_ids: - abstractive-qa - explanation-generation - extractive-qa - open-domain-qa - open-domain-abstractive-qa - text-simplification pretty_name: WikiSummary dataset_info: features: - name: id dtype: string - name: link dtype: string - name: title dtype: string - name: article dtype: string - name: highlights dtype: string splits: - name: train num_bytes: 207186608 num_examples: 45654 - name: test num_bytes: 25693509 num_examples: 5638 - name: validation num_bytes: 23130954 num_examples: 5074 download_size: 255168504 dataset_size: 256011071 --- # Dataset Card for [Needs More Information] ## 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/m3hrdadfi/wiki-summary - **Repository:** https://github.com/m3hrdadfi/wiki-summary - **Paper:** [More Information Needed] - **Leaderboard:** [More Information Needed] - **Point of Contact:** [Mehrdad Farahani](mailto:m3hrdadphi@gmail.com) ### Dataset Summary The dataset extracted from Persian Wikipedia into the form of articles and highlights and cleaned the dataset into pairs of articles and highlights and reduced the articles' length (only version 1.0.0) and highlights' length to a maximum of 512 and 128, respectively, suitable for parsBERT. This dataset is created to achieve state-of-the-art results on some interesting NLP tasks like Text Summarization. ### Supported Tasks and Leaderboards [More Information Needed] ### Languages The text in the dataset is in Percy. ## Dataset Structure ### Data Instances ``` { 'id' :'0598cfd2ac491a928615945054ab7602034a8f4f', 'link': 'https://fa.wikipedia.org/wiki/انقلاب_1917_روسیه', 'title': 'انقلاب 1917 روسیه', 'article': 'نخست انقلاب فوریه ۱۹۱۷ رخ داد . در این انقلاب پس از یک‌سری اعتصابات ، تظاهرات و درگیری‌ها ، نیکولای دوم ، آخرین تزار روسیه از سلطنت خلع شد و یک دولت موقت به قدرت رسید . دولت موقت زیر نظر گئورگی لووف و الکساندر کرنسکی تشکیل شد . اکثر اعضای دولت موقت ، از شاخه منشویک حزب سوسیال دموکرات کارگری روسیه بودند . دومین مرحله ، انقلاب اکتبر ۱۹۱۷ بود . انقلاب اکتبر ، تحت نظارت حزب بلشویک (شاخه رادیکال از حزب سوسیال دموکرات کارگری روسیه) و به رهبری ولادیمیر لنین به پیش رفت و طی یک یورش نظامی همه‌جانبه به کاخ زمستانی سن پترزبورگ و سایر اماکن مهم ، قدرت را از دولت موقت گرفت . در این انقلاب افراد بسیار کمی کشته شدند . از زمان شکست روسیه در جنگ ۱۹۰۵ با ژاپن ، اوضاع بد اقتصادی ، گرسنگی ، عقب‌ماندگی و سرمایه‌داری و نارضایتی‌های گوناگون در بین مردم ، سربازان ، کارگران ، کشاورزان و نخبگان روسیه به‌وجود آمده‌بود . سرکوبهای تزار و ایجاد مجلس دوما نظام مشروطه حاصل آن دوران است . حزب سوسیال دموکرات ، اصلی‌ترین معترض به سیاست‌های نیکلای دوم بود که به‌طور گسترده بین دهقانان کشاورزان و کارگران کارخانجات صنعتی علیه سیاست‌های سیستم تزار فعالیت داشت . در اوت ۱۹۱۴ میلادی ، امپراتوری روسیه به دستور تزار وقت و به منظور حمایت از اسلاوهای صربستان وارد جنگ جهانی اول در برابر امپراتوری آلمان و امپراتوری اتریش-مجارستان شد . نخست فقط بلشویک‌ها ، مخالف ورود روسیه به این جنگ بودند و می‌گفتند که این جنگ ، سبب بدتر شدن اوضاع نابسامان اقتصادی و اجتماعی روسیه خواهد شد . در سال ۱۹۱۴ میلادی ، یعنی در آغاز جنگ جهانی اول ، روسیه بزرگترین ارتش جهان را داشت ، حدود ۱۲ میلیون سرباز و ۶ میلیون سرباز ذخیره ؛ ولی در پایان سال ۱۹۱۶ میلادی ، پنج میلیون نفر از سربازان روسیه کشته ، زخمی یا اسیر شده بودند . حدود دو میلیون سرباز نیز محل خدمت خود را ترک کرده و غالبا با اسلحه به شهر و دیار خود بازگشته بودند . در میان ۱۰ یا ۱۱ میلیون سرباز باقی‌مانده نیز ، اعتبار تزار و سلسله مراتب ارتش و اتوریته افسران بالا دست از بین رفته بود . عوامل نابسامان داخلی اعم از اجتماعی کشاورزی و فرماندهی نظامی در شکستهای روسیه بسیار مؤثر بود . شکست‌های روسیه در جنگ جهانی اول ، حامیان نیکلای دوم در روسیه را به حداقل خود رساند . در اوایل فوریه ۱۹۱۷ میلادی اکثر کارگران صنعتی در پتروگراد و مسکو دست به اعتصاب زدند . سپس شورش به پادگان‌ها و سربازان رسید . اعتراضات دهقانان نیز گسترش یافت . سوسیال دموکرات‌ها هدایت اعتراضات را در دست گرفتند . در ۱۱ مارس ۱۹۱۷ میلادی ، تزار وقت روسیه ، نیکلای دوم ، فرمان انحلال مجلس روسیه را صادر کرد ، اما اکثر نمایندگان مجلس متفرق نشدند و با تصمیمات نیکلای دوم مخالفت کردند . سرانجام در پی تظاهرات گسترده کارگران و سپس نافرمانی سربازان در سرکوب تظاهرکنندگان در پتروگراد ، نیکلای دوم از مقام خود استعفا داد . بدین ترتیب حکم‌رانی دودمان رومانوف‌ها بر روسیه پس از حدود سیصد سال پایان یافت .', 'highlights': 'انقلاب ۱۹۱۷ روسیه ، جنبشی اعتراضی ، ضد امپراتوری روسیه بود که در سال ۱۹۱۷ رخ داد و به سرنگونی حکومت تزارها و برپایی اتحاد جماهیر شوروی انجامید . مبانی انقلاب بر پایه صلح-نان-زمین استوار بود . این انقلاب در دو مرحله صورت گرفت : در طول این انقلاب در شهرهای اصلی روسیه همانند مسکو و سن پترزبورگ رویدادهای تاریخی برجسته‌ای رخ داد . انقلاب در مناطق روستایی و رعیتی نیز پا به پای مناطق شهری در حال پیشروی بود و دهقانان زمین‌ها را تصرف کرده و در حال بازتوزیع آن در میان خود بودند .' } ``` ### Data Fields - `id`: Article id - `link`: Article link - `title`: Title of the article - `article`: Full text content in the article - `highlights`: Summary of the article ### Data Splits | Train | Test | Validation | |-------------|-------------|-------------| | 45,654 | 5,638 | 5,074 | ## 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 No annotations. #### 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 dataset was created by Mehrdad Farahani. ### Licensing Information [Apache License 2.0](https://github.com/m3hrdadfi/wiki-summary/blob/master/LICENSE) ### Citation Information ``` @misc{Bert2BertWikiSummaryPersian, author = {Mehrdad Farahani}, title = {Summarization using Bert2Bert model on WikiSummary dataset}, year = {2020}, publisher = {GitHub}, journal = {GitHub repository}, howpublished = {https://github.com/m3hrdadfi/wiki-summary}, } ``` ### Contributions Thanks to [@tanmoyio](https://github.com/tanmoyio) for adding this dataset.
[ -0.7701467871665955, -0.5892154574394226, 0.35167816281318665, 0.3934038281440735, -0.4365355968475342, -0.3030347526073456, 0.06282460689544678, -0.5161383748054504, 0.8186075687408447, 0.4352724850177765, -0.43056026101112366, -0.7710993885993958, -0.8104478716850281, 0.37892547249794006, -0.41813698410987854, 0.8381491303443909, -0.18886913359165192, -0.026968399062752724, 0.19281399250030518, -0.03627168387174606, -0.11205106228590012, -0.5901302099227905, -0.44574257731437683, -0.07557828724384308, 0.1704593449831009, 0.2668202221393585, 0.5900445580482483, 0.06809544563293457, 0.5392370223999023, 0.43436333537101746, 0.07300737500190735, 0.036563385277986526, -0.2509525418281555, 0.0037771486677229404, 0.04935072362422943, -0.449127197265625, -0.21437062323093414, -0.09718524664640427, 0.6660857200622559, 0.5877402424812317, -0.2884047031402588, 0.43737122416496277, 0.3816547691822052, 1.084931492805481, -0.5230159163475037, 0.010073695331811905, 0.22375190258026123, 0.10351380705833435, -0.23090922832489014, -0.34378165006637573, 0.10857919603586197, -0.8857213854789734, -0.3956042528152466, -0.4138224720954895, 0.03909844160079956, 0.12860220670700073, 1.019426941871643, -0.4165940582752228, -0.2809890806674957, -0.37033745646476746, -0.852157711982727, 1.1114866733551025, -0.7590259313583374, 0.2672330141067505, 0.38637810945510864, 0.11301667243242264, -0.21966660022735596, -0.6026785969734192, -0.8455719947814941, 0.14299878478050232, -0.5614706873893738, 0.3663925528526306, 0.017270047217607498, -0.591596245765686, 0.34018656611442566, 0.4698980152606964, -0.42866119742393494, -0.5831704139709473, -0.33766183257102966, -0.0697958916425705, 0.9089565277099609, 0.4225323796272278, 0.48017868399620056, -0.3455386161804199, -0.4487372636795044, -0.18399584293365479, -0.25078055262565613, 0.5666926503181458, 0.6366376280784607, -0.16127529740333557, -0.5483483672142029, 0.8691256642341614, -0.19989044964313507, 0.558311939239502, 0.17255732417106628, -0.39340636134147644, 0.5390076041221619, -0.6143910884857178, -0.21952997148036957, -0.11312895268201828, 0.8193668723106384, 0.7286932468414307, 0.16701917350292206, 0.18752960860729218, 0.025991229340434074, -0.2605728209018707, 0.09378001093864441, -0.6594871878623962, 0.06267159432172775, 0.24630464613437653, -1.0752209424972534, -0.49533119797706604, 0.31176990270614624, -1.2906363010406494, -0.10151094198226929, -0.08493258059024811, 0.13120751082897186, -0.29839271306991577, -0.3933364152908325, 0.00466006388887763, -0.27245309948921204, 0.2196972370147705, 0.5789350867271423, -0.8251689076423645, 0.48646944761276245, 0.3493477404117584, 0.6658878922462463, 0.08533062040805817, -0.2523570656776428, 0.5992948412895203, 0.654158353805542, -0.3510377109050751, 0.7025569677352905, -0.17544573545455933, -0.5860625505447388, 0.10631637275218964, 0.2458200603723526, -0.391520619392395, -0.14700330793857574, 0.7188330888748169, -0.40011510252952576, 0.4056558310985565, -0.35012125968933105, -0.527641236782074, -0.25552207231521606, 0.1891872137784958, -0.7065736651420593, 1.1625041961669922, -0.07237254083156586, -1.3950295448303223, -0.17729634046554565, -0.5239359140396118, -0.36345258355140686, -0.16422738134860992, -0.03694075718522072, -0.3582642078399658, 0.16165179014205933, 0.27711448073387146, 0.36308446526527405, -0.24937576055526733, -0.2555237412452698, -0.08400484174489975, -0.04889244586229324, 0.35908856987953186, 0.01751134917140007, 0.9447224736213684, 0.298229455947876, -0.36828866600990295, -0.033853914588689804, -0.6668464541435242, 0.1898900717496872, 0.3296950161457062, -0.21602869033813477, -0.23778918385505676, -0.2417917400598526, 0.24853108823299408, 0.4486791789531708, 0.490020751953125, -0.335191547870636, 0.2791158854961395, -0.8219789266586304, 0.03975752368569374, 0.8820502161979675, 0.4352034628391266, 0.4096473455429077, -0.9257268309593201, 0.4738732576370239, 0.03359847888350487, 0.18945062160491943, 0.29275768995285034, -0.5106824040412903, -1.138975977897644, 0.057360339909791946, 0.3738604784011841, 0.5931801199913025, -0.7768966555595398, 0.6763203144073486, -0.0040129139088094234, -0.875952422618866, -0.5465031862258911, 0.07756244391202927, 0.3585928976535797, 0.40069228410720825, 0.3993075489997864, -0.1323467642068863, -0.7220116853713989, -0.6208472847938538, -0.4152200520038605, -0.2145756036043167, 0.001195681979879737, 0.6382459402084351, 0.8727245330810547, -0.35157424211502075, 0.7072878479957581, -0.77190101146698, -0.3077601492404938, -0.4776543080806732, -0.26124337315559387, 0.35455718636512756, 0.6542643904685974, 0.81587153673172, -1.019852876663208, -0.7236311435699463, 0.017980527132749557, -0.9514141082763672, 0.2616935074329376, -0.061386093497276306, -0.36945730447769165, 0.2082930952310562, 0.24501359462738037, -0.5374560952186584, 0.7698721885681152, 0.345244437456131, -0.6180089116096497, 0.7526447772979736, -0.19704575836658478, 0.46671193838119507, -1.445763349533081, 0.538945198059082, -0.1897101253271103, 0.35088416934013367, -0.5799524784088135, -0.10263148695230484, -0.23390710353851318, 0.2266170233488083, -0.2965441644191742, 0.8304689526557922, -0.4486706852912903, 0.4591613709926605, 0.33041825890541077, -0.06527721136808395, 0.1039060577750206, 0.5251239538192749, -0.09477965533733368, 0.5768333673477173, 0.25194239616394043, -0.5652114748954773, 0.12056922167539597, 0.5273255705833435, -0.3372182250022888, 0.4066995084285736, -0.7720651626586914, -0.20627522468566895, -0.29520219564437866, 0.0966821238398552, -1.1293078660964966, -0.19261972606182098, 0.7401764392852783, -0.7880699634552002, 0.42897921800613403, 0.08765017986297607, -0.5884208679199219, -0.4036279320716858, -0.7830358147621155, -0.05488509312272072, 0.18733830749988556, -0.15625721216201782, 0.5726142525672913, 0.501806378364563, -0.17289608716964722, -0.45892179012298584, -0.6010951399803162, 0.23006296157836914, -0.1862560510635376, -0.6321454644203186, 0.386008620262146, -0.38682231307029724, -0.29951193928718567, -0.15647216141223907, 0.1288517862558365, -0.07166275382041931, -0.009259081445634365, 0.5413820743560791, 0.13683046400547028, -0.10008276253938675, -0.0935775637626648, 0.02974286861717701, -0.3026227355003357, 0.06364496797323227, 0.1309310793876648, 0.3264943063259125, -0.12342710047960281, -0.3460642695426941, -0.5451563596725464, 0.9701950550079346, 0.5426329970359802, 0.11964777857065201, 0.9167298078536987, 0.6492700576782227, -0.0968509316444397, 0.1481226533651352, -0.6743156909942627, 0.008552699349820614, -0.49754056334495544, -0.032364461570978165, -0.308957040309906, -0.4925740957260132, 0.46920305490493774, -0.29917991161346436, -0.29278266429901123, 1.0831713676452637, 0.8579965829849243, -0.4333323538303375, 0.8244129419326782, 0.8638404011726379, -0.2975078523159027, 0.11748252063989639, -0.7120414972305298, 0.45465171337127686, -1.2154653072357178, -0.6665266752243042, -0.7389227747917175, -0.628630518913269, -0.75396329164505, -0.29662564396858215, 0.4157814383506775, 0.22795572876930237, 0.008809665217995644, 0.30122464895248413, -0.6594557166099548, 0.04018886387348175, 0.4434993863105774, 0.3276251554489136, 0.1437748670578003, -0.0845884382724762, -0.3768994212150574, -0.17873762547969818, -0.5679837465286255, -0.7232972979545593, 1.0293853282928467, 0.08472252637147903, 0.5794591307640076, 0.6111804246902466, 0.7235374450683594, 0.40714651346206665, 0.014218654483556747, -0.35874447226524353, 0.5187903642654419, 0.26776984333992004, -0.8151413202285767, -0.5136402249336243, -0.005954682361334562, -1.1805291175842285, 0.25682172179222107, -0.1974789947271347, -0.953339159488678, 0.7617875933647156, -0.1915624737739563, -0.2845798432826996, 0.3935398757457733, -0.5388724207878113, 0.7572808265686035, -0.18138451874256134, -0.42386606335639954, -0.22769682109355927, -1.0781701803207397, 0.13591694831848145, 0.2828511595726013, 0.5494574904441833, -0.04736442118883133, -0.2318550944328308, 1.0287162065505981, -0.916642963886261, 0.6566091179847717, -0.04607300087809563, 0.1571909785270691, 0.5485067367553711, 0.12165159732103348, 0.35923293232917786, 0.19769661128520966, -0.3886201083660126, 0.21357214450836182, 0.23217670619487762, -0.43928655982017517, -0.09835734963417053, 0.9929307103157043, -1.0924038887023926, -0.5658496618270874, -0.8092333674430847, -0.3075770139694214, -0.054680485278367996, 0.5013179779052734, 0.3784533143043518, 0.4379364252090454, -0.11646169424057007, 0.20661094784736633, 0.3998892605304718, -0.43216854333877563, 0.6824819445610046, 0.20923767983913422, 0.01842820830643177, -0.3073747456073761, 0.5878726840019226, 0.40305039286613464, -0.16406705975532532, 0.39934226870536804, -0.07176628708839417, -0.2561907470226288, -0.3712158203125, -0.4875621795654297, 0.4933984875679016, -0.7268958687782288, -0.11752896010875702, -0.8004516959190369, -0.10229793190956116, -0.7145669460296631, -0.3642008304595947, 0.15017662942409515, -0.6433930397033691, -0.3312336504459381, -0.25551649928092957, 0.8611686825752258, 0.7365072965621948, -0.30398252606391907, 0.17893221974372864, -0.5931669473648071, 0.35418614745140076, 0.05047167092561722, 0.32295599579811096, 0.6398450136184692, -0.33261632919311523, -0.6195622086524963, 0.030746009200811386, -0.4496572017669678, -1.4047280550003052, 0.8206451535224915, -0.16847442090511322, 0.41769692301750183, 0.5393695831298828, 0.31777822971343994, 0.781400740146637, -0.21210481226444244, 1.0154470205307007, 0.13863664865493774, -0.7111047506332397, 0.7975240349769592, -0.5282288193702698, -0.015641583129763603, 0.6535658836364746, 0.8230791091918945, -0.61726975440979, -0.23194557428359985, -0.8606966733932495, -1.0384587049484253, 0.7287254333496094, 0.3301316201686859, 0.08351407945156097, 0.021718017756938934, -0.024930482730269432, -0.39271655678749084, 0.51537024974823, -0.40114906430244446, -0.9612768292427063, -0.07805880904197693, -0.06752052903175354, 0.04372451826930046, -0.7653370499610901, -0.46258142590522766, -0.6183751821517944, 0.7347189784049988, 0.6084021329879761, 0.6220466494560242, 0.5867348909378052, -0.0914984717965126, -0.10132521390914917, 0.6095903515815735, 0.5483726859092712, 0.605014979839325, -0.15543575584888458, -0.04249480366706848, 0.3694194257259369, -0.9393234848976135, 0.08161746710538864, -0.22703583538532257, -0.43355265259742737, 0.13285484910011292, 0.5345922112464905, 0.5288583636283875, 0.33999043703079224, -0.23330911993980408, 0.7501815557479858, -0.18779604136943817, -0.08342577517032623, -0.7383177876472473, -0.1482178121805191, 0.259122371673584, 0.05325444042682648, 0.4115229845046997, 0.0635092556476593, 0.25864753127098083, -0.486853688955307, 0.17685271799564362, 0.22247572243213654, -0.11788985133171082, -0.02735227905213833, 0.4959561228752136, 0.19526085257530212, -0.145295187830925, 0.5676414966583252, 0.0035586622543632984, -0.7729755640029907, 0.6120066046714783, 0.5335105657577515, 0.6779322028160095, -0.42716357111930847, 0.15973502397537231, 1.0194233655929565, 0.3607657551765442, 0.25348591804504395, 0.5338411331176758, -0.18043899536132812, -0.2816152274608612, 0.0734960064291954, -0.984571635723114, -0.2314148247241974, -0.1870945394039154, -0.844352662563324, 0.12618008255958557, -0.7864223718643188, -0.34481093287467957, 0.0001276724215131253, 0.5273218750953674, -0.5634425282478333, 0.21789731085300446, -0.13834339380264282, 0.8764077425003052, -0.8869352340698242, 0.9404417276382446, 0.5463404059410095, -0.7580962181091309, -1.0872291326522827, 0.1766243278980255, 0.07408808171749115, -0.5936302542686462, 0.7514336109161377, -0.19354413449764252, -0.06697909533977509, -0.09622669965028763, -0.26408520340919495, -1.1774404048919678, 1.1183744668960571, -0.46345844864845276, -0.2574119567871094, 0.3885546028614044, 0.2527666389942169, 0.544374942779541, -0.2241848260164261, 0.5572198033332825, 0.1855946034193039, 0.7384127378463745, 0.18413491547107697, -0.9396240711212158, 0.5953599214553833, -0.9719530940055847, 0.2578533887863159, -0.008491432294249535, -0.8916170597076416, 1.1334630250930786, -0.24966931343078613, -0.05392548814415932, 0.11109200119972229, 0.48823243379592896, -0.02695527859032154, 0.4706483483314514, 0.2093360871076584, 0.8821697235107422, 0.4445320665836334, -0.09362898021936417, 1.0165847539901733, -0.5624435544013977, 0.4977743327617645, 0.6461791396141052, 0.19910873472690582, 0.8214902281761169, 0.584275484085083, -0.7555066347122192, 0.9317587614059448, 0.34434276819229126, -0.637362539768219, 0.7252131104469299, -0.20098435878753662, -0.22662100195884705, 0.02560552954673767, -0.011736411601305008, -0.8835358619689941, -0.025463256984949112, 0.2053481787443161, -0.4728030860424042, -0.21348372101783752, 0.03871055319905281, 0.0720842182636261, -0.05803712084889412, -0.30761104822158813, 0.9254195094108582, 0.22692103683948517, -0.39674484729766846, 0.5526708960533142, 0.25962984561920166, 0.5369925498962402, -0.6846902370452881, 0.008274826221168041, -0.1618250161409378, 0.2580835223197937, -0.7721012830734253, -1.0142582654953003, 0.6185122728347778, -0.03184882178902626, -0.38452211022377014, -0.1870516985654831, 0.9828817248344421, 0.0012449491769075394, -0.751220166683197, 0.20302380621433258, 0.41061931848526, 0.19505509734153748, 0.2702326774597168, -0.9058877825737, 0.10400731861591339, 0.23174525797367096, -0.7706124782562256, 0.5271278619766235, 0.48363935947418213, -0.03158900514245033, 0.49149996042251587, 0.9524199962615967, 0.3351444602012634, -0.19467872381210327, -0.49352380633354187, 1.0294384956359863, -1.0149013996124268, -0.599242627620697, -0.7928208112716675, 0.9560139775276184, -0.3594006896018982, -0.11719534546136856, 1.4629254341125488, 0.8629586100578308, 0.6574786901473999, -0.45076993107795715, 0.9482163786888123, -0.4232380986213684, 1.0478774309158325, -0.08728063851594925, 0.7795128226280212, -0.6403294801712036, -0.01584623195230961, -0.6599823236465454, -0.19282212853431702, -0.16141901910305023, 0.8154107332229614, -0.5107808709144592, 0.14094138145446777, 0.6267948150634766, 0.9402011632919312, 0.3929963707923889, 0.14158768951892853, -0.08532252162694931, 0.7253959774971008, -0.20012231171131134, 0.3672321140766144, 0.6318322420120239, -0.7372338175773621, 0.34037259221076965, -0.5486713647842407, -0.07366989552974701, -0.5791531801223755, -0.5534052848815918, -0.9163596034049988, -0.8505488634109497, -0.08003830909729004, -0.5586263537406921, -0.20644095540046692, 0.5659192204475403, 0.14970238506793976, -1.090489149093628, -0.4817619323730469, 0.4320415258407593, 0.543813169002533, -0.34274792671203613, -0.2992783784866333, 0.6933978199958801, 0.20244239270687103, -0.7987998723983765, -0.22982999682426453, -0.022407855838537216, 0.12990275025367737, 0.0999167412519455, -0.07439913600683212, -0.5668424367904663, 0.1072731614112854, 0.4798963665962219, 0.29646408557891846, -0.6092042922973633, 0.21946023404598236, 0.011143277399241924, -0.327156126499176, 0.009972603060305119, 0.5866673588752747, -0.5600841641426086, 0.1318751573562622, 0.5766379237174988, -0.20520178973674774, 0.6400516629219055, -0.022025009617209435, 0.11155711114406586, -0.08919312804937363, 0.09364907443523407, 0.24379278719425201, 0.1489182859659195, -0.10570040345191956, -0.7713702321052551, 0.4795374870300293, 0.3203197121620178, -0.6546810865402222, -0.5946451425552368, 0.025450948625802994, -1.0520200729370117, -0.46108686923980713, 1.1654036045074463, -0.046822912991046906, -0.24678082764148712, -0.14023059606552124, -0.39010655879974365, 0.29626157879829407, -0.5206644535064697, 0.7357110381126404, 0.7693160176277161, -0.19329676032066345, 0.14699557423591614, -0.9231269955635071, 0.5810469388961792, 0.14864195883274078, -0.6739628314971924, -0.2752934992313385, 0.14741134643554688, 0.29106831550598145, 0.25738146901130676, 0.8364657759666443, -0.08634526282548904, 0.2238050252199173, 0.013944779522716999, 0.05287482216954231, 0.03838999196887016, 0.03818618133664131, -0.039137691259384155, 0.20718997716903687, -0.29537099599838257, -0.045307304710149765 ]
null
null
null
null
null
null
null
null
null
null
null
null
null
xor_tydi_qa
null
2023-01-25T15:03:13Z
452
1
xor-tydi-qa
[ "task_categories:question-answering", "task_ids:open-domain-qa", "annotations_creators:crowdsourced", "language_creators:expert-generated", "language_creators:found", "multilinguality:multilingual", "size_categories:10K<n<100K", "source_datasets:original", "source_datasets:extended|tydiqa", "language:ar", "language:bn", "language:fi", "language:ja", "language:ko", "language:ru", "language:te", "license:mit", "arxiv:2010.11856", "region:us" ]
2023-01-25T15:03:13Z
2022-03-02T23:29:22.000Z
2022-03-02T23:29:22
--- annotations_creators: - crowdsourced language_creators: - expert-generated - found language: - ar - bn - fi - ja - ko - ru - te license: - mit multilinguality: - multilingual size_categories: - 10K<n<100K source_datasets: - original - extended|tydiqa task_categories: - question-answering task_ids: - open-domain-qa paperswithcode_id: xor-tydi-qa pretty_name: XOR QA dataset_info: - config_name: xor-retrieve features: - name: question dtype: string - name: lang dtype: class_label: names: '0': ar '1': bn '2': fi '3': ja '4': ko '5': ru '6': te - name: answers dtype: string splits: - name: train num_bytes: 1698662 num_examples: 15250 - name: validation num_bytes: 259533 num_examples: 2110 - name: test num_bytes: 219046 num_examples: 2499 download_size: 3702288 dataset_size: 2177241 - config_name: xor-full features: - name: question dtype: string - name: lang dtype: class_label: names: '0': ar '1': bn '2': fi '3': ja '4': ko '5': ru '6': te - name: answers dtype: string splits: - name: train num_bytes: 7250913 num_examples: 61360 - name: validation num_bytes: 444672 num_examples: 3473 - name: test num_bytes: 706664 num_examples: 8176 download_size: 14018298 dataset_size: 8402249 --- # Dataset Card for XOR QA ## 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:** [XOR QA Homepage](https://nlp.cs.washington.edu/xorqa/) - **Repository:** [XOR QA Repository](https://github.com/AkariAsai/XORQA) - **Paper:** [XOR QA Paper](https://arxiv.org/abs/2010.11856) - **Leaderboard:** [XOR QA Leaderboard](https://nlp.cs.washington.edu/xorqa/) - **Point of Contact:** [Akari Asai](akari@cs.washington.edu) ### Dataset Summary XOR-TyDi QA brings together for the first time information-seeking questions, open-retrieval QA, and multilingual QA to create a multilingual open-retrieval QA dataset that enables cross-lingual answer retrieval. It consists of questions written by information-seeking native speakers in 7 typologically diverse languages and answer annotations that are retrieved from multilingual document collections. ### Supported Tasks and Leaderboards There are three sub-tasks: XOR-Retrieve, XOR-EnglishSpan, and XOR-Full. - `XOR-retrieve`: XOR-Retrieve is a cross-lingual retrieval task where a question is written in a target language (e.g., Japanese) and a system is required to retrieve English paragraphs that answer the question. The dataset can be used to train a model for cross-lingual retrieval. Success on this task is typically measured by R@5kt, R@2kt (the recall by computing the fraction of the questions for which the minimal answer is contained in the top 5,000 / 2,000 tokens selected). This task has an active leaderboard which can be found at [leaderboard url](https://nlp.cs.washington.edu/xorqa/) - `XOR-English Span`: XOR-English Span is a cross-lingual retrieval task where a question is written in a target language (e.g., Japanese) and a system is required to output a short answer in English. The dataset can be used to train a model for cross-lingual retrieval. Success on this task is typically measured by F1, EM. This task has an active leaderboard which can be found at [leaderboard url](https://nlp.cs.washington.edu/xorqa/) - `XOR-Full`: XOR-Full is a cross-lingual retrieval task where a question is written in the target language (e.g., Japanese) and a system is required to output a short answer in a target language. Success on this task is typically measured by F1, EM, BLEU This task has an active leaderboard which can be found at [leaderboard url](https://nlp.cs.washington.edu/xorqa/) ### Languages The text in the dataset is available in 7 languages: Arabic `ar`, Bengali `bn`, Finnish `fi`, Japanese `ja`, Korean `ko`, Russian `ru`, Telugu `te` ## Dataset Structure ### Data Instances A typical data point comprises a `question`, it's `answer` the `language` of the question text and the split to which it belongs. ``` { "id": "-3979399588609321314", "question": "Сколько детей было у Наполео́на I Бонапа́рта?", "answers": ["сын"], "lang": "ru", "split": "train" } ``` ### Data Fields - `id`: An identifier for each example in the dataset - `question`: Open domain question - `answers`: The corresponding answer to the question posed - `lang`: BCP-47 language tag - `split`: identifier to differentiate train, validation and test splits ### Data Splits The data is split into a training, validation and test set for each of the two configurations. | | train | validation | test | |--------------|------:|-----------:|-----:| | XOR Retrieve | 15250 | 2113 | 2501 | | XOR Full | 61360 | 3179 | 8177 | ## Dataset Creation ### Curation Rationale This task framework reflects well real-world scenarios where a QA system uses multilingual document collections and answers questions asked by users with diverse linguistic and cultural backgrounds. Despite the common assumption that we can find answers in the target language, web re- sources in non-English languages are largely lim- ited compared to English (information scarcity), or the contents are biased towards their own cul- tures (information asymmetry). To solve these issues, XOR-TYDI QA (Asai et al., 2020) provides a benchmark for developing a multilingual QA system that finds answers in multiple languages. ### Source Data annotation pipeline consists of four steps: 1) collection of realistic questions that require cross-lingual ref- erences by annotating questions from TYDI QA without a same-language answer; 2) question translation from a target language to the pivot language of English where the missing informa- tion may exist; 3) answer span selection in the pivot language given a set of candidate documents; 4) answer verification and translation from the pivot language back to the original language. #### Initial Data Collection and Normalization [More Information Needed] #### Who are the source language producers? The Dataset is created by extending TyDiQA dataset and translating the questions into other languages. The answers are obtained by crowdsourcing the questions to Mechanical Turk workders ### Annotations #### Annotation process The English questions from TyDiQA are translated into other languages. The languages are chosen based on the availability of wikipedia data and the availability of tranlators. #### Who are the annotators? The translations are carried out using the professionla tranlation service (Gengo)[https://gengo.com] and the answers are annotated by MechanicalTurk workers ### Personal and Sensitive Information The dataset is created from wikipedia content and the QA task requires preserving the named entities, there by all the Wikipedia Named Entities are preserved in the data. Not much information has been provided about masking sensitive information. ## Considerations for Using the Data ### Social Impact of Dataset [More Information Needed] ### Discussion of Biases [More Information Needed] ### Other Known Limitations [More Information Needed] ## Additional Information ### Dataset Curators The people associated with the creation of the dataset are Akari Asai, Jungo Kasai, Jonathan H. Clark, Kenton Lee, Eunsol Choi, Hannaneh Hajishirzi ### Licensing Information XOR-TyDi QA is distributed under the [CC BY-SA 4.0](https://creativecommons.org/licenses/by-sa/4.0/legalcode) license ### Citation Information ``` @article{xorqa, title = {XOR QA: Cross-lingual Open-Retrieval Question Answering}, author = {Akari Asai and Jungo Kasai and Jonathan H. Clark and Kenton Lee and Eunsol Choi and Hannaneh Hajishirzi} year = {2020} } ``` ### Contributions Thanks to [@sumanthd17](https://github.com/sumanthd17) for adding this dataset.
[ -0.5323500633239746, -0.4895331859588623, 0.0481746606528759, 0.01915040984749794, -0.12881594896316528, 0.19097435474395752, -0.1302659809589386, -0.4699130952358246, 0.56647127866745, 0.32670363783836365, -0.5736023187637329, -0.7261496186256409, -0.3888363540172577, 0.3104126751422882, -0.3822823762893677, 1.0917948484420776, -0.24989104270935059, 0.05722063034772873, -0.05611386150121689, -0.42737698554992676, -0.26856327056884766, -0.581248939037323, -0.7658756375312805, 0.006797546986490488, 0.6117165684700012, 0.627831220626831, 0.6958096623420715, 0.5826231837272644, 0.26459306478500366, 0.18198661506175995, 0.03670429810881615, 0.09091760218143463, -0.4802037477493286, -0.06060894951224327, -0.35590851306915283, -0.6662706732749939, -0.28712767362594604, -0.06000598147511482, 0.7400892972946167, 0.5524449348449707, 0.009713023900985718, 0.5592091083526611, -0.08206221461296082, 0.6327331066131592, -0.6194373369216919, 0.22264836728572845, -0.22585013508796692, 0.05853069946169853, -0.3869551718235016, -0.06493120640516281, -0.004591240081936121, -0.5051891803741455, -0.022450624033808708, -0.7354445457458496, 0.01952538453042507, 0.19963419437408447, 1.1016085147857666, -0.009019175544381142, -0.4821033775806427, -0.34012168645858765, -0.45693960785865784, 0.7887083888053894, -0.402418315410614, 0.6673409342765808, 0.6236260533332825, 0.2756025195121765, 0.23867934942245483, -0.571994423866272, -0.7848278880119324, 0.05545145645737648, -0.1816718876361847, 0.273792028427124, -0.04519548639655113, -0.37474992871284485, 0.21356715261936188, 0.4197691082954407, -0.7911977767944336, -0.11820842325687408, -0.4785855710506439, -0.09862188994884491, 0.8184027075767517, 0.08330761641263962, 0.44074416160583496, -0.4837275743484497, -0.22106528282165527, -0.5329927802085876, -0.5519278645515442, 0.3834991753101349, 0.41293105483055115, 0.33338797092437744, -0.30915841460227966, 0.7342265844345093, -0.3670145273208618, 0.3945057690143585, -0.02633018232882023, -0.15854670107364655, 0.5907524228096008, -0.876984715461731, 0.017641590908169746, -0.07012977451086044, 0.9102954864501953, 0.24415622651576996, 0.19592949748039246, -0.04768853634595871, 0.030626283958554268, -0.17263738811016083, -0.1888340413570404, -0.5896613597869873, -0.029697533696889877, 0.4262704849243164, -0.38291797041893005, -0.05128426477313042, 0.1777489185333252, -0.9144988059997559, -0.005004907492548227, -0.0966041088104248, 0.25872257351875305, -0.2737487852573395, -0.4363284409046173, 0.03693379834294319, -0.08493538200855255, 0.40279620885849, -0.1337960660457611, -0.5236525535583496, 0.265045702457428, 0.2710327208042145, 0.5495745539665222, -0.2562437653541565, -0.36567917466163635, -0.46904242038726807, 0.0340614877641201, -0.21055977046489716, 0.502859890460968, -0.3887384831905365, -0.41097718477249146, 0.06900512427091599, 0.2551521360874176, -0.16323834657669067, -0.3715013265609741, 0.750586748123169, -0.7347356081008911, 0.6933768391609192, -0.740127682685852, -0.3248010575771332, -0.23248474299907684, 0.5791022777557373, -0.7944943308830261, 1.2861180305480957, 0.24303510785102844, -0.9745965600013733, 0.4039513170719147, -0.6598430871963501, -0.24986428022384644, -0.12263356149196625, -0.18306531012058258, -0.2412157952785492, -0.4166680574417114, 0.3239467442035675, 0.22357937693595886, -0.47584617137908936, 0.006839163601398468, 0.0785878524184227, -0.171067014336586, 0.18562525510787964, -0.11597541719675064, 1.1722952127456665, 0.12013963609933853, -0.35410431027412415, -0.04750077426433563, -0.9098832607269287, 0.2918688952922821, 0.21075721085071564, -0.44242677092552185, -0.4456460475921631, -0.32842159271240234, 0.15999969840049744, 0.6357144117355347, 0.3034897744655609, -0.673608124256134, -0.010238501243293285, -0.3600693941116333, -0.06279876828193665, 0.37230274081230164, 0.03576787933707237, 0.2652736008167267, -0.46574103832244873, 0.8963200449943542, -0.03287966549396515, 0.08291025459766388, 0.08589257299900055, -0.5611522197723389, -0.7206341624259949, -0.07218766957521439, 0.49382686614990234, 0.9220549464225769, -1.0584125518798828, 0.3551788628101349, -0.48758023977279663, -0.5955820679664612, -0.7469774484634399, 0.21701736748218536, 0.709497332572937, 0.43366700410842896, 0.4513591229915619, -0.15903259813785553, -0.597942054271698, -0.6444443464279175, 0.08465468138456345, -0.4158695340156555, 0.0645742118358612, 0.24830679595470428, 0.593114972114563, -0.10037591308355331, 0.7906574010848999, -0.46613526344299316, -0.4377105236053467, -0.37220826745033264, -0.11467287689447403, 0.07156142592430115, 0.3365372121334076, 0.4777812957763672, -1.0320221185684204, -0.8145735263824463, 0.13850188255310059, -0.8140424489974976, -0.14290732145309448, 0.08885713666677475, -0.35224705934524536, 0.40403178334236145, 0.4133465886116028, -0.5358733534812927, 0.37182989716529846, 0.5734531283378601, -0.4852708876132965, 0.5851556062698364, 0.10387148708105087, 0.4958283305168152, -1.3027147054672241, 0.412841796875, -0.07946829497814178, 0.025404861196875572, -0.3978540897369385, 0.1769234538078308, -0.011104016564786434, 0.03654392436146736, -0.4029477536678314, 0.9329106211662292, -0.440093457698822, 0.15761850774288177, 0.1349586397409439, 0.3725389540195465, 0.22723086178302765, 0.6082267761230469, 0.08981548994779587, 0.8031003475189209, 0.409523606300354, -0.4349633455276489, 0.20158115029335022, 0.5863944888114929, -0.26892897486686707, 0.5322962999343872, -0.7289716005325317, -0.1577247530221939, -0.18120130896568298, -0.10432513058185577, -0.8284682631492615, -0.025279615074396133, 0.5466492176055908, -0.6131668090820312, 0.17923682928085327, 0.01862334832549095, -0.6791276335716248, -0.300367146730423, -0.4806306064128876, 0.5695156455039978, 0.32377737760543823, -0.2761443853378296, 0.4596826732158661, 0.3956921696662903, -0.15008777379989624, -0.8589250445365906, -0.5568798780441284, -0.13475678861141205, -0.0906362384557724, -0.7384051084518433, 0.399773508310318, -0.1837845742702484, -0.22961772978305817, 0.10382344573736191, 0.16423270106315613, -0.10170742869377136, -0.19306311011314392, 0.09444413334131241, 0.17336736619472504, -0.1722186952829361, 0.11990392208099365, 0.057777054607868195, -0.0648612529039383, 0.05541069805622101, -0.0010795611888170242, 0.5113946795463562, 0.13525541126728058, -0.3383577764034271, -0.32858967781066895, 0.718745768070221, 0.4525620639324188, -0.5506414771080017, 0.6961348056793213, 0.6852499842643738, -0.2959068715572357, 0.2638990581035614, -0.44396156072616577, -0.043692633509635925, -0.38151291012763977, 0.5177614688873291, -0.5342776775360107, -0.6761162877082825, 0.8604431748390198, 0.7065536379814148, 0.1942347139120102, 0.5658292174339294, 0.5533809065818787, 0.13062626123428345, 1.1083210706710815, 0.569561243057251, -0.13296036422252655, 0.3640429675579071, -0.5178872346878052, 0.10877682268619537, -0.5722218751907349, -0.4877762198448181, -0.7464490532875061, -0.1573375165462494, -0.7932004332542419, -0.4758662283420563, 0.3963645398616791, -0.0214297566562891, -0.13658441603183746, 0.24967506527900696, -0.27063480019569397, 0.16184577345848083, 0.8341121673583984, -0.11126390099525452, 0.41025158762931824, 0.012486573308706284, -0.1117161437869072, -0.0800507664680481, -0.7857703566551208, -0.35075733065605164, 1.0970027446746826, 0.21870742738246918, 0.5995413661003113, 0.11651585251092911, 0.7332714796066284, 0.07092999666929245, 0.04691503942012787, -0.4629470407962799, 0.5148018002510071, -0.022420313209295273, -0.8358818292617798, -0.49134892225265503, -0.4908856153488159, -1.236466646194458, 0.18908099830150604, -0.1531343311071396, -0.6091671586036682, 0.43886855244636536, -0.20990532636642456, -0.3251361846923828, 0.2343214452266693, -0.5812884569168091, 0.896216630935669, -0.29983195662498474, -0.2626391351222992, 0.008375422097742558, -0.8448644876480103, 0.23491020500659943, -0.1636214554309845, 0.19239568710327148, 0.011116734705865383, -0.09248540550470352, 1.1339534521102905, -0.3130423128604889, 0.7006230354309082, -0.1841241419315338, -0.10107189416885376, 0.3383110761642456, -0.2260603904724121, 0.2865765392780304, 0.24416998028755188, -0.11606365442276001, 0.17669785022735596, 0.5659739375114441, -0.5266894698143005, -0.582292377948761, 0.4860762059688568, -1.0266398191452026, -0.4368255138397217, -0.4809354841709137, -0.6504862308502197, -0.12483568489551544, 0.2982906103134155, 0.41783225536346436, 0.1296769082546234, -0.04106036573648453, -0.0014570477651432157, 0.6106289029121399, -0.34451255202293396, 0.05430486798286438, 0.63083815574646, -0.48975011706352234, -0.44116270542144775, 0.9276233315467834, 0.5379443168640137, 0.11423531174659729, 0.654143750667572, -0.04402849078178406, -0.5319152474403381, -0.2131630927324295, -0.5140825510025024, 0.4750202000141144, -0.7024534344673157, -0.17737409472465515, -0.717278242111206, -0.27514147758483887, -0.5810108184814453, 0.16282084584236145, -0.17462995648384094, -0.5380195379257202, -0.2427799105644226, -0.1683334857225418, 0.23792719841003418, 0.31315407156944275, -0.0702022835612297, 0.0806485116481781, -0.8461439609527588, 0.41828489303588867, 0.15235228836536407, 0.1354598104953766, -0.10501457750797272, -0.48656123876571655, -0.4906046986579895, 0.3292335569858551, -0.14029939472675323, -0.8583150506019592, 0.33864107728004456, 0.19155380129814148, 0.6751989722251892, 0.21803970634937286, 0.2683482766151428, 0.4762318730354309, -0.03282058611512184, 0.7694777846336365, -0.05691542476415634, -0.7038025856018066, 0.6053420305252075, -0.09077955037355423, 0.3489683270454407, 0.7600113153457642, 0.9196217656135559, -0.9039092063903809, -0.33483079075813293, -0.5336286425590515, -0.9350737929344177, 0.5848940014839172, 0.1560034304857254, 0.09648523479700089, -0.1256609708070755, 0.26234257221221924, 0.13825222849845886, 0.1107151061296463, -0.7778216004371643, -0.6235148906707764, -0.1480930745601654, -0.21874868869781494, 0.07002104073762894, -0.2804613411426544, -0.15711644291877747, -0.2775903344154358, 0.9560078382492065, -0.14211605489253998, 0.1421276032924652, 0.2942380905151367, -0.12620601058006287, -0.020390773192048073, 0.30577024817466736, 0.26310819387435913, 0.6665167212486267, -0.2036234438419342, -0.19298313558101654, 0.09818989038467407, -0.5092777013778687, 0.24818767607212067, 0.42010459303855896, -0.35833555459976196, 0.07629825919866562, 0.24278584122657776, 0.5467262864112854, -0.13452184200286865, -0.8391782641410828, 0.5240891575813293, -0.16507934033870697, -0.10122509300708771, -0.3906054198741913, -0.10722161084413528, -0.2366352677345276, 0.23540590703487396, 0.5321131944656372, -0.4431524872779846, 0.0352744422852993, -0.5100652575492859, 0.25552433729171753, 0.2045634537935257, -0.35252645611763, -0.42978590726852417, 0.6800014972686768, -0.06519342958927155, -0.03885692358016968, 0.6298472285270691, -0.5233569741249084, -0.4933876693248749, 0.43257784843444824, 0.24838624894618988, 0.5981058478355408, -0.14818115532398224, 0.5087107419967651, 0.5521852374076843, 0.34010937809944153, 0.16020233929157257, 0.911310076713562, 0.05432671308517456, -0.8653267025947571, -0.5252722501754761, -0.43238022923469543, -0.30625447630882263, -0.1185220330953598, -0.9177238941192627, 0.365978479385376, -0.17016802728176117, -0.10878677666187286, -0.1931757926940918, 0.4966250956058502, -0.7014234662055969, 0.3895595669746399, -0.02387840673327446, 1.180360198020935, -0.9365875124931335, 0.8375471234321594, 0.9199029803276062, -0.9548105001449585, -0.8522930145263672, -0.20184001326560974, -0.1783614605665207, -0.8519949316978455, 0.7310609817504883, -0.1395125538110733, 0.25292542576789856, -0.1136474534869194, -0.23256215453147888, -1.1293219327926636, 1.1094810962677002, 0.2310388833284378, -0.18349923193454742, -0.2901659309864044, 0.43572595715522766, 0.5940216779708862, -0.14347194135189056, 0.19758212566375732, 0.5603204965591431, 0.5758035182952881, -0.06625521928071976, -0.9397320747375488, 0.18133482336997986, -0.6403635740280151, -0.25059816241264343, 0.11692900955677032, -0.7467694878578186, 0.7392899394035339, -0.24295391142368317, -0.26551222801208496, 0.044624026864767075, 0.6743056178092957, 0.4505971670150757, 0.30704039335250854, 0.38857293128967285, 0.6108987927436829, 0.8219907879829407, -0.0668933093547821, 1.0669704675674438, -0.4796190857887268, 0.17980371415615082, 1.0103837251663208, -0.20109155774116516, 0.8261905312538147, 0.5505455732345581, -0.2237037718296051, 0.5761265754699707, 0.5900129079818726, 0.0655781701207161, 0.41885778307914734, -0.03308373689651489, 0.04225854203104973, 0.05603596195578575, -0.42811521887779236, -0.4933406412601471, 0.5529772043228149, 0.2046179324388504, -0.33506712317466736, -0.16129250824451447, 0.22942207753658295, 0.23938988149166107, 0.016974717378616333, -0.22222062945365906, 0.46734726428985596, -0.15446458756923676, -0.660302996635437, 0.645002007484436, 0.07631972432136536, 0.5495153069496155, -0.6761847138404846, 0.03595224395394325, -0.4284569025039673, -0.09128299355506897, -0.34018704295158386, -0.963306188583374, 0.3401356339454651, -0.17251238226890564, -0.5502647757530212, -0.05525243654847145, 0.3136247396469116, -0.7118557095527649, -0.6412725448608398, 0.4012620151042938, 0.8773915767669678, 0.17792277038097382, -0.027936778962612152, -0.8944423198699951, 0.04119056835770607, 0.2235019952058792, -0.2427958846092224, 0.31130164861679077, 0.4478181302547455, -0.47858503460884094, 0.7077019214630127, 0.45545151829719543, 0.1677311360836029, 0.28479745984077454, 0.08794861286878586, 0.8557542562484741, -0.5724892616271973, -0.5041062831878662, -0.28454291820526123, 0.5774124264717102, -0.06945760548114777, -0.5258122086524963, 0.9569200873374939, 0.7649431228637695, 1.2807531356811523, 0.20117585361003876, 0.8378381729125977, -0.3951575458049774, 0.8604450225830078, -0.33769509196281433, 0.6556240916252136, -0.8100749850273132, 0.09165023267269135, -0.2117076963186264, -0.7307146191596985, -0.25683408975601196, 0.3284803032875061, -0.28345805406570435, 0.21547122299671173, 0.6873833537101746, 0.9572601914405823, 0.07868454605340958, -0.1793351024389267, 0.313043475151062, 0.07472030818462372, 0.200656458735466, 0.6221110224723816, 0.5311511754989624, -0.9216716289520264, 0.9752801060676575, -0.5305236577987671, -0.0870153158903122, 0.10709724575281143, -0.38063985109329224, -0.7912132143974304, -0.9114553928375244, -0.5862977504730225, -0.4865746796131134, -0.051360808312892914, 0.9328488111495972, 0.53821861743927, -1.0575517416000366, -0.4402962028980255, 0.5614756345748901, 0.3854421377182007, -0.31584393978118896, -0.30633753538131714, 0.6187698245048523, -0.07320255786180496, -0.9047508835792542, -0.0714155063033104, -0.0839388519525528, -0.042423613369464874, -0.3356272280216217, -0.12138278037309647, -0.5834743976593018, -0.17057617008686066, 0.5361253023147583, 0.5769555568695068, -0.44208869338035583, -0.18812720477581024, 0.5186100602149963, -0.2017534226179123, 0.15880843997001648, 0.3974311053752899, -0.6639219522476196, 0.37339019775390625, 0.7310672998428345, 0.6183229088783264, 0.35149896144866943, -0.0780545324087143, 0.432576447725296, -0.856856107711792, -0.11263702809810638, 0.1545463353395462, 0.3378598988056183, 0.31624212861061096, -0.28137996792793274, 0.6733837127685547, 0.1359938383102417, -0.47592005133628845, -0.7945736050605774, -0.0945979580283165, -0.9034114480018616, 0.004295457620173693, 1.2664681673049927, -0.24934685230255127, -0.21443547308444977, -0.4102115333080292, -0.33344969153404236, 0.30726906657218933, -0.3496692478656769, 0.7369478344917297, 0.6577536463737488, 0.08453207463026047, -0.36758625507354736, -0.41938185691833496, 0.39419126510620117, 0.34800130128860474, -0.9043486714363098, -0.18263399600982666, 0.21592150628566742, 0.22978554666042328, 0.442129522562027, 0.7198041677474976, -0.25556233525276184, 0.3991149365901947, -0.25468680262565613, 0.25235703587532043, 0.1856340914964676, -0.07115176320075989, -0.0715356171131134, 0.28283458948135376, 0.017917152494192123, -0.35231590270996094 ]
null
null
null
null
null
null
null
null
null
null
null
null
null
kilt_wikipedia
null
2023-04-05T10:08:59Z
451
10
null
[ "region:us" ]
2023-04-05T10:08:59Z
2022-03-02T23:29:22.000Z
2022-03-02T23:29:22
--- paperswithcode_id: null pretty_name: KiltWikipedia dataset_info: features: - name: kilt_id dtype: string - name: wikipedia_id dtype: string - name: wikipedia_title dtype: string - name: text sequence: - name: paragraph dtype: string - name: anchors sequence: - name: paragraph_id dtype: int32 - name: start dtype: int32 - name: end dtype: int32 - name: text dtype: string - name: href dtype: string - name: wikipedia_title dtype: string - name: wikipedia_id dtype: string - name: categories dtype: string - name: wikidata_info struct: - name: description dtype: string - name: enwikiquote_title dtype: string - name: wikidata_id dtype: string - name: wikidata_label dtype: string - name: wikipedia_title dtype: string - name: aliases sequence: - name: alias dtype: string - name: history struct: - name: pageid dtype: int32 - name: parentid dtype: int32 - name: revid dtype: int32 - name: pre_dump dtype: bool - name: timestamp dtype: string - name: url dtype: string config_name: '2019-08-01' splits: - name: full num_bytes: 29372535718 num_examples: 5903530 download_size: 37318876722 dataset_size: 29372535718 --- # Dataset Card for "kilt_wikipedia" ## 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/KILT](https://github.com/facebookresearch/KILT) - **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:** 37.32 GB - **Size of the generated dataset:** 29.37 GB - **Total amount of disk used:** 66.69 GB ### Dataset Summary KILT-Wikipedia: Wikipedia pre-processed for KILT. ### 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 #### 2019-08-01 - **Size of downloaded dataset files:** 37.32 GB - **Size of the generated dataset:** 29.37 GB - **Total amount of disk used:** 66.69 GB An example of 'full' looks as follows. ``` { "anchors": { "end": [], "href": [], "paragraph_id": [], "start": [], "text": [], "wikipedia_id": [], "wikipedia_title": [] }, "categories": "", "history": { "pageid": 0, "parentid": 0, "pre_dump": true, "revid": 0, "timestamp": "", "url": "" }, "kilt_id": "", "text": { "paragraph": [] }, "wikidata_info": { "aliases": { "alias": [] }, "description": "", "enwikiquote_title": "", "wikidata_id": "", "wikidata_label": "", "wikipedia_title": "" }, "wikipedia_id": "", "wikipedia_title": "" } ``` ### Data Fields The data fields are the same among all splits. #### 2019-08-01 - `kilt_id`: a `string` feature. - `wikipedia_id`: a `string` feature. - `wikipedia_title`: a `string` feature. - `text`: a dictionary feature containing: - `paragraph`: a `string` feature. - `anchors`: a dictionary feature containing: - `paragraph_id`: a `int32` feature. - `start`: a `int32` feature. - `end`: a `int32` feature. - `text`: a `string` feature. - `href`: a `string` feature. - `wikipedia_title`: a `string` feature. - `wikipedia_id`: a `string` feature. - `categories`: a `string` feature. - `description`: a `string` feature. - `enwikiquote_title`: a `string` feature. - `wikidata_id`: a `string` feature. - `wikidata_label`: a `string` feature. - `wikipedia_title`: a `string` feature. - `aliases`: a dictionary feature containing: - `alias`: a `string` feature. - `pageid`: a `int32` feature. - `parentid`: a `int32` feature. - `revid`: a `int32` feature. - `pre_dump`: a `bool` feature. - `timestamp`: a `string` feature. - `url`: a `string` feature. ### Data Splits | name | full | |----------|------:| |2019-08-01|5903530| ## 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{fb_kilt, author = {Fabio Petroni and Aleksandra Piktus and Angela Fan and Patrick Lewis and Majid Yazdani and Nicola De Cao and James Thorne and Yacine Jernite and Vassilis Plachouras and Tim Rockt"aschel and Sebastian Riedel}, title = {{KILT:} a {B}enchmark for {K}nowledge {I}ntensive {L}anguage {T}asks}, journal = {CoRR}, archivePrefix = {arXiv}, year = {2020}, ``` ### Contributions Thanks to [@thomwolf](https://github.com/thomwolf), [@yjernite](https://github.com/yjernite) for adding this dataset.
[ -0.7939088940620422, -0.5157172679901123, 0.13425827026367188, 0.06939168274402618, -0.21439194679260254, -0.036161456257104874, -0.3869341015815735, -0.3351287543773651, 0.6747515201568604, 0.432885080575943, -0.7236498594284058, -0.9372109770774841, -0.5523097515106201, 0.1702301800251007, -0.336909681558609, 1.2252867221832275, -0.10747716575860977, -0.2929936647415161, -0.2741355001926422, -0.22801004350185394, -0.2754411995410919, -0.25819525122642517, -0.3419404625892639, -0.2012277990579605, 0.5577819347381592, 0.6297091841697693, 0.6864839792251587, 1.0014065504074097, 0.5289201140403748, 0.24902445077896118, -0.0654599517583847, 0.0255841426551342, -0.46096524596214294, -0.13147573173046112, -0.07711489498615265, -0.2346021682024002, -0.3666439950466156, 0.0675668716430664, 0.6008501052856445, 0.5861688852310181, 0.020922549068927765, 0.6419791579246521, -0.03167831152677536, 0.8539042472839355, -0.46510031819343567, 0.4810546338558197, -0.3252963125705719, -0.22953465580940247, -0.5060014128684998, -0.04810214415192604, 0.08017661422491074, -0.28380897641181946, -0.16416239738464355, -0.8974738121032715, 0.28306108713150024, -0.013420207425951958, 0.8907335996627808, 0.18607331812381744, -0.0672200471162796, -0.4350075423717499, -0.393257200717926, 0.5109179019927979, -0.7828596830368042, 0.2626226544380188, 0.6925458312034607, 0.09474793821573257, -0.12068668752908707, -0.7702054977416992, -0.7727479338645935, 0.08014970272779465, -0.2926028072834015, 0.15738438069820404, 0.15477074682712555, -0.5269524455070496, 0.4621584117412567, 0.5843059420585632, -0.6217191219329834, -0.11580701917409897, -0.6373929977416992, -0.04509318992495537, 1.1387052536010742, 0.25676074624061584, 0.19195878505706787, -0.5946559906005859, 0.03390363231301308, -0.5334205627441406, -0.4170916676521301, 0.1416061967611313, 0.6310731172561646, 0.5431410074234009, -0.7821784615516663, 0.7617829442024231, -0.3627287447452545, 0.5244911313056946, 0.04508468136191368, -0.05052197724580765, 0.637339174747467, -0.6157764196395874, -0.04972907528281212, -0.20160064101219177, 1.071929931640625, 0.6821610331535339, -0.08213130384683609, 0.02456502616405487, 0.17546740174293518, -0.16397210955619812, -0.060445405542850494, -0.6407427787780762, -0.5512149333953857, 0.6847454905509949, -0.6220889687538147, -0.6288030743598938, 0.21155402064323425, -1.286743402481079, -0.3928739130496979, -0.2554842233657837, 0.25919559597969055, -0.21158351004123688, -0.5320378541946411, 0.0277003962546587, -0.3975834250450134, 0.2830052673816681, 0.0721234381198883, -0.6401432156562805, 0.29067346453666687, 0.5456674098968506, 0.7054382562637329, 0.08056069910526276, -0.4009288251399994, -0.040399447083473206, 0.053665343672037125, -0.09282063692808151, 0.5904024243354797, -0.34622761607170105, -0.48801159858703613, -0.24101398885250092, 0.47485432028770447, 0.07476776838302612, -0.12135685235261917, 0.9072041511535645, -0.09306509792804718, 0.29648563265800476, -0.7512712478637695, -0.46985548734664917, -0.03525692969560623, 0.306674599647522, -0.983305037021637, 1.3681796789169312, 0.3116116225719452, -1.1284058094024658, 0.3107284903526306, -0.9782194495201111, -0.39788955450057983, 0.1034858301281929, 0.013743842020630836, -0.4915361702442169, -0.31075039505958557, 0.15975196659564972, 0.5213414430618286, -0.45396101474761963, 0.16987019777297974, -0.40122726559638977, -0.0788772702217102, 0.15115858614444733, 0.17466135323047638, 1.3204855918884277, 0.14899305999279022, -0.2366654872894287, -0.14952638745307922, -1.0805608034133911, -0.04716506972908974, 0.46587109565734863, -0.3501260578632355, -0.0728994607925415, -0.038603685796260834, 0.45722272992134094, 0.07065708190202713, 0.27309712767601013, -0.46461138129234314, 0.40364035964012146, -0.17880387604236603, 0.4165516793727875, 0.6484488844871521, 0.040003642439842224, 0.39500758051872253, -0.3789605498313904, 0.11881741136312485, -0.0332927405834198, 0.4979383647441864, 0.04593730345368385, -0.5236161947250366, -0.6518566608428955, -0.12337863445281982, 0.43043914437294006, 0.541721761226654, -0.6349506378173828, 0.917853832244873, -0.6341190934181213, -0.9692575931549072, -0.4289442002773285, 0.2107873558998108, 0.039039429277181625, 0.6128059029579163, 0.362330824136734, -0.41144976019859314, -0.682023286819458, -0.7799172401428223, 0.2361394762992859, -0.25661349296569824, 0.16226497292518616, 0.6435046792030334, 0.98663729429245, -0.17139172554016113, 0.7903735041618347, -0.6858552694320679, -0.1736544668674469, -0.053240105509757996, -0.06269370764493942, 0.4386492073535919, 0.681217610836029, 0.704257607460022, -1.058019995689392, -0.5612882375717163, -0.0720914676785469, -0.7408048510551453, -0.03906098008155823, 0.14894285798072815, -0.28068140149116516, 0.09648323804140091, 0.2624172568321228, -0.8614353537559509, 0.45417317748069763, 0.336620032787323, -0.619976818561554, 0.5040518045425415, -0.006267629563808441, 0.2869694232940674, -1.2976030111312866, 0.45589014887809753, -0.07010181993246078, 0.16106782853603363, -0.4703632593154907, 0.01085306704044342, 0.0028109971899539232, -0.0047632078640162945, -0.22383540868759155, 0.616008996963501, -0.38309577107429504, 0.14627327024936676, 0.23877494037151337, -0.0694376528263092, 0.06063978001475334, 0.39136889576911926, -0.16910073161125183, 0.47660118341445923, 0.8299148678779602, -0.5054949522018433, 0.7065216898918152, 0.467262864112854, -0.24374699592590332, 0.5974991917610168, -0.5974592566490173, 0.10482972860336304, -0.22921918332576752, 0.40569448471069336, -0.8157363533973694, -0.7060092091560364, 0.6701070666313171, -0.7059749960899353, 0.45907512307167053, -0.4023394286632538, -0.7490074634552002, -0.7677126526832581, -0.7133320569992065, 0.07528369128704071, 0.3236870765686035, -0.3303305208683014, 0.5528221726417542, 0.533626914024353, 0.06870480626821518, -0.49029287695884705, -0.6859520077705383, 0.05502050369977951, -0.21969062089920044, -0.7721705436706543, 0.44468265771865845, -0.37903115153312683, -0.093894362449646, 0.354790061712265, 0.07929983735084534, -0.019384875893592834, 0.008596774190664291, 0.22979570925235748, 0.20373192429542542, 0.09260653704404831, -0.06770312041044235, -0.27498286962509155, -0.017046602442860603, -0.07206748425960541, -0.241564080119133, 0.5230063199996948, 0.030347494408488274, -0.18507926166057587, -0.21063287556171417, 0.2267719805240631, 0.49030154943466187, -0.2091132402420044, 0.7517843842506409, 0.9614495635032654, -0.32055285573005676, 0.14330333471298218, -0.5373867750167847, 0.008244694210588932, -0.3842334747314453, 0.0840233713388443, -0.1281273514032364, -0.5507141351699829, 0.9561891555786133, 0.3353501558303833, 0.27907106280326843, 0.9272668957710266, 0.5483495593070984, -0.3030385673046112, 0.5089868903160095, 0.16139985620975494, -0.26227954030036926, 0.5237444043159485, -0.7276189923286438, -0.23169690370559692, -0.6731104850769043, -0.42942678928375244, -0.8070542216300964, -0.5027804970741272, -1.0849214792251587, -0.4809004068374634, 0.0584329329431057, 0.1003749892115593, -0.2876925766468048, 0.4741098880767822, -0.8580716848373413, 0.4449065029621124, 0.62647944688797, 0.19532917439937592, -0.14183111488819122, -0.013751945458352566, 0.16612902283668518, 0.2013973444700241, -0.4701210558414459, -0.21246159076690674, 1.5046318769454956, 0.188313826918602, 0.5436040759086609, -0.004001770168542862, 0.8367790579795837, 0.37007853388786316, -0.11666127294301987, -0.3616149425506592, 0.43980008363723755, -0.18383745849132538, -0.794062614440918, -0.4112642705440521, -0.42408624291419983, -0.8725345134735107, -0.2152756154537201, -0.3237379789352417, -0.5842845439910889, 0.5056982636451721, 0.004276888910681009, 0.10367599874734879, 0.3964381515979767, -0.7534252405166626, 0.8433533906936646, -0.11778239905834198, -0.39206382632255554, 0.0855294018983841, -1.081821322441101, 0.15294241905212402, 0.1036907210946083, 0.5405762791633606, -0.2649069130420685, -0.002569266129285097, 1.1102937459945679, -0.715204119682312, 0.7888769507408142, -0.4515450894832611, 0.3043050169944763, 0.4917871654033661, -0.2341415137052536, 0.6098291873931885, 0.12887726724147797, -0.10297974199056625, 0.4627302587032318, 0.1240440085530281, -0.4114719331264496, -0.4696587026119232, 0.8074619770050049, -0.7573172450065613, -0.06897122412919998, -0.23320014774799347, -0.47404566407203674, 0.10908379405736923, 0.377078652381897, 0.3957352042198181, 0.28821924328804016, -0.05273229628801346, 0.322112500667572, 0.6534140110015869, -0.1886010766029358, 0.2654978334903717, 0.21523042023181915, -0.07159288227558136, -0.8157175183296204, 0.959930419921875, 0.39420685172080994, -0.17276562750339508, 0.24544769525527954, 0.20249560475349426, -0.27160781621932983, -0.37149766087532043, -0.6923971772193909, 0.22811082005500793, -0.6510220766067505, -0.41564875841140747, -0.634039580821991, -0.16058294475078583, -0.6930080652236938, -0.07408319413661957, -0.24088971316814423, -0.6839167475700378, -0.308529794216156, -0.225556418299675, 0.8891833424568176, 0.517151951789856, -0.5349799394607544, 0.0643816590309143, -0.4953714907169342, 0.33473700284957886, -0.0784328430891037, 0.5592580437660217, -0.12426222115755081, -0.23552240431308746, -0.399659126996994, 0.08614098280668259, -0.06858863681554794, -0.6227342486381531, 0.1445162296295166, -0.06502056121826172, 0.4720988869667053, -0.0886121317744255, 0.08274076879024506, 0.5363138318061829, -0.0691002681851387, 1.018494963645935, 0.005495232064276934, -0.5503606796264648, 0.6506984233856201, -0.5359734296798706, 0.24420088529586792, 0.8356398940086365, 0.42539355158805847, -0.5134454965591431, -0.12593217194080353, -0.8851202130317688, -0.9908102750778198, 0.8013680577278137, 0.39526602625846863, 0.08978333324193954, -0.0016945077804848552, 0.30248716473579407, 0.026419326663017273, 0.11991669982671738, -0.6289025545120239, -0.8900719285011292, -0.3992578387260437, -0.37642085552215576, -0.0028489036485552788, -0.17464756965637207, -0.31243956089019775, -0.6370381712913513, 0.9142491221427917, 0.029638078063726425, 0.2650475800037384, 0.21246638894081116, 0.023221302777528763, -0.08747382462024689, 0.0022881431505084038, 0.3202206492424011, 0.45970287919044495, -0.34843000769615173, -0.10349152237176895, 0.009036744944751263, -0.7493405342102051, -0.24912430346012115, 0.5106015205383301, -0.31365156173706055, 0.030871067196130753, 0.43711745738983154, 0.6415109634399414, 0.12121150642633438, -0.23499150574207306, 0.4941999614238739, -0.015678973868489265, -0.4448016881942749, -0.3552439212799072, -0.0711846649646759, 0.21124941110610962, 0.18070268630981445, 0.36130696535110474, -0.10240156948566437, 0.07592263072729111, -0.33142876625061035, 0.12261857092380524, 0.18781599402427673, 0.038309961557388306, -0.311636745929718, 0.5038825273513794, 0.060820046812295914, -0.16702762246131897, 0.5371578931808472, -0.19376660883426666, -0.41465944051742554, 0.7424278259277344, -0.043867357075214386, 0.6911962628364563, 0.06466216593980789, 0.10877412557601929, 0.7724504470825195, 0.35545027256011963, 0.06112820282578468, 0.46455836296081543, -0.32528406381607056, -0.6565650701522827, -0.018995117396116257, -0.6832866668701172, -0.03826979920268059, 0.19482219219207764, -0.6736037731170654, 0.47340357303619385, -0.42499077320098877, -0.09110552817583084, 0.23023264110088348, 0.49659961462020874, -1.0156540870666504, 0.21058346331119537, -0.10911301523447037, 1.1746689081192017, -0.9920548796653748, 0.5185571312904358, 0.649097204208374, -0.7814615964889526, -0.8858214616775513, -0.29218432307243347, 0.16665329039096832, -0.4190884232521057, 0.28570473194122314, -0.10588836669921875, 0.5863576531410217, -0.029764708131551743, -0.9788355827331543, -0.8964912295341492, 1.3862881660461426, 0.12219192832708359, -0.226170152425766, 0.05883859470486641, 0.19714732468128204, 0.44978758692741394, -0.13657857477664948, 0.21547698974609375, 0.6266875863075256, 0.9077622890472412, 0.2333373725414276, -0.8448768258094788, 0.08878234028816223, -0.618522584438324, -0.35486292839050293, 0.174687460064888, -0.8247432112693787, 0.712970495223999, 0.13116249442100525, -0.08555738627910614, -0.1495063453912735, 0.39391228556632996, 0.106612928211689, 0.2602456212043762, 0.39154964685440063, 0.941715657711029, 0.8677688837051392, -0.32890626788139343, 1.1819342374801636, -0.29470518231391907, 0.6274948716163635, 0.9745182991027832, 0.09001491963863373, 0.6139922738075256, 0.3319126069545746, -0.44650882482528687, 0.4263139069080353, 0.6846174597740173, -0.45950940251350403, 0.4421860873699188, -0.0020240433514118195, -0.029578302055597305, 0.09206104278564453, -0.16573742032051086, -0.6660385727882385, 0.4158322215080261, 0.3662486970424652, -0.4137168526649475, -0.10452336072921753, -0.16729068756103516, 0.24487072229385376, -0.3017466068267822, -0.25236308574676514, 0.8248938322067261, -0.27248460054397583, -0.170149564743042, 0.46157392859458923, -0.11406823992729187, 0.6709458827972412, -0.6062780618667603, 0.06421977281570435, -0.18311694264411926, -0.06826506555080414, -0.6540932059288025, -1.2137049436569214, 0.43228113651275635, -0.014156866818666458, -0.5469605922698975, -0.14558327198028564, 0.8259868025779724, -0.303632527589798, -0.8506073355674744, 0.17404581606388092, 0.22828993201255798, 0.3033560812473297, 0.36947351694107056, -0.9770068526268005, 0.480983167886734, 0.08138708770275116, -0.6035518050193787, 0.20529556274414062, 0.42950552701950073, 0.0570368655025959, 0.41997724771499634, 0.8716543316841125, 0.07469670474529266, 0.01377167645841837, 0.06561005115509033, 1.0251750946044922, -0.6543163061141968, -0.26795223355293274, -0.6940457820892334, 0.7961632013320923, -0.40710198879241943, -0.293256014585495, 0.6811848282814026, 0.9571343064308167, 1.2096998691558838, -0.03683244064450264, 0.9030236005783081, -0.9512730240821838, 0.572200357913971, -0.24644720554351807, 0.9359942078590393, -0.6781788468360901, -0.13151608407497406, -0.4235783517360687, -0.6544587016105652, -0.2958054840564728, 0.44246169924736023, -0.04847586899995804, 0.08119496703147888, 0.275025337934494, 1.00102961063385, -0.01905008964240551, 0.12327205389738083, -0.19793641567230225, 0.248680979013443, 0.2562900185585022, 0.2837962806224823, 0.24982474744319916, -0.7046946287155151, 0.5416520833969116, -0.7322897911071777, -0.08918395638465881, -0.013944029808044434, -0.9005142450332642, -0.6728138327598572, -1.090369701385498, -0.3956069052219391, -0.6273118853569031, -0.12299862504005432, 0.9559551477432251, 0.6958995461463928, -0.8258269429206848, -0.23939011991024017, -0.03927913308143616, 0.17505723237991333, 0.031171170994639397, -0.3333107829093933, 0.6685385704040527, 0.2591298818588257, -0.5610988140106201, -0.027354415506124496, -0.00425485335290432, -0.05540408194065094, -0.10374496877193451, -0.15581147372722626, -0.364702433347702, -0.305010050535202, 0.3883298635482788, 0.44100451469421387, -0.400634765625, -0.1343754231929779, -0.20744721591472626, 0.08707891404628754, 0.10459989309310913, 0.3614083230495453, -0.47635841369628906, 0.3395088315010071, 0.7413628697395325, 0.3235158324241638, 0.8503634333610535, -0.09948421269655228, 0.0705924779176712, -0.638098955154419, 0.07399426400661469, -0.06818067282438278, 0.3086901605129242, 0.4467562139034271, -0.5610443949699402, 0.9059468507766724, 0.42595094442367554, -0.4376312792301178, -0.8853389024734497, -0.23983971774578094, -1.1642030477523804, -0.06319606304168701, 1.0739129781723022, 0.07157376408576965, -0.44390609860420227, 0.020317187532782555, -0.09162558615207672, 0.25403517484664917, -0.3871525824069977, 0.4488462209701538, 0.9000536203384399, 0.14846132695674896, 0.027760624885559082, -0.4965258836746216, 0.48304080963134766, -0.345294713973999, -0.9323223829269409, 0.2395622432231903, 0.47766655683517456, 0.5456150770187378, 0.39485663175582886, 0.6627102494239807, -0.32693973183631897, 0.1473539024591446, 0.15997347235679626, 0.23535707592964172, -0.35092177987098694, -0.07803075760602951, -0.07245969772338867, -0.1313551813364029, -0.28232115507125854, -0.07110606878995895 ]
null
null
null
null
null
null
null
null
null
null
null
null
null
ChristophSchuhmann/MS_COCO_2017_URL_TEXT
ChristophSchuhmann
2021-11-27T15:39:29Z
451
12
null
[ "region:us" ]
2021-11-27T15:39:29Z
2022-03-02T23:29:22.000Z
2022-03-02T23:29:22
Entry not found
[ -0.32276472449302673, -0.22568407654762268, 0.8622258901596069, 0.4346148371696472, -0.5282984972000122, 0.7012965679168701, 0.7915717363357544, 0.07618629932403564, 0.7746022939682007, 0.2563222646713257, -0.785281777381897, -0.22573848068714142, -0.9104482531547546, 0.5715669393539429, -0.3992331624031067, 0.5791243314743042, -0.14494486153125763, -0.10751184076070786, 0.28233760595321655, -0.27689510583877563, -0.5409225225448608, -0.36855223774909973, -1.1902780532836914, 0.061491094529628754, 0.5316579341888428, 0.7435142397880554, 0.7584059834480286, 0.3652164936065674, 0.6432580947875977, 0.3932291567325592, -0.2313893735408783, 0.4827055037021637, -0.04171811789274216, 0.002603769302368164, -0.3524438738822937, -0.5516899824142456, -0.28596606850624084, 0.07584748417139053, 1.096130132675171, 0.9666875600814819, -0.2846639156341553, 0.05330846458673477, -0.3063625693321228, 0.33088910579681396, -0.4973434805870056, 0.3054102659225464, -0.022506307810544968, 0.16318818926811218, -0.7041515707969666, -0.5535354614257812, 0.012794638983905315, -0.7361210584640503, 0.17926540970802307, -0.690081000328064, 0.8269097208976746, 0.1858314424753189, 1.153375267982483, 0.1481940746307373, -0.4624869227409363, -0.8161762356758118, -0.6538985371589661, 0.5711170434951782, -0.3270367681980133, 0.39680251479148865, 0.7028236985206604, -0.048573367297649384, -0.9820335507392883, -0.6745744943618774, -0.46466144919395447, 0.2923961281776428, 0.3540281355381012, -0.3411676287651062, -0.1752210557460785, -0.30589887499809265, 0.15792015194892883, 0.12811514735221863, -0.4841992259025574, -0.5543918013572693, -0.5475160479545593, -0.39602550864219666, 0.6206660270690918, 0.3482949137687683, 0.2429179698228836, -0.18884186446666718, -0.3228585124015808, 0.08801652491092682, -0.4160858988761902, 0.3402571380138397, 0.6335514783859253, 0.711401641368866, -0.5811445713043213, 0.5602161288261414, -0.04927612096071243, 0.7439702749252319, 0.11445526778697968, -0.2747807800769806, 0.4146057963371277, -0.14724718034267426, 0.05517200380563736, 0.42263442277908325, 0.315244197845459, 0.28413110971450806, -0.3273695409297943, 0.20322325825691223, -0.32151469588279724, -0.3049620985984802, -0.2233220636844635, -0.29490748047828674, -0.35921812057495117, 0.5492290258407593, -0.33140188455581665, -0.42855483293533325, 1.143175721168518, -0.42007699608802795, -0.7302223443984985, 0.3315642774105072, 0.40652066469192505, -0.09944798052310944, -0.3714655041694641, -0.05226077511906624, -0.8458787798881531, -0.007907616905868053, 0.7491171956062317, -0.7198969721794128, 0.33717361092567444, 0.4728066325187683, 0.7417216300964355, 0.1965055614709854, -0.1403450071811676, -0.4294942021369934, 0.29719701409339905, -0.8659994006156921, 0.6320171356201172, -0.20135235786437988, -1.0051977634429932, 0.1115049496293068, 0.8971706628799438, -0.37896397709846497, -1.2094879150390625, 1.060516119003296, -0.6887933015823364, 0.16017858684062958, -0.676761269569397, -0.1466120183467865, -0.07118489593267441, -0.005096477456390858, -0.6088160276412964, 0.7567108869552612, 0.587267279624939, -0.49952763319015503, 0.2142949402332306, -0.2602987289428711, -0.3915135860443115, 0.3882487416267395, -0.07935424149036407, -0.21858899295330048, 0.713833212852478, -0.6647079586982727, -0.26932841539382935, 0.29427704215049744, 0.23689396679401398, -0.35706067085266113, -0.7931919097900391, 0.08478138595819473, -0.05786247178912163, 1.550750494003296, -0.038688354194164276, -0.35861048102378845, -0.6793831586837769, -1.1506237983703613, -0.07070822268724442, 0.6886888742446899, -0.91949862241745, -0.2783950865268707, -0.04641031473875046, -0.26169344782829285, 0.08994942903518677, 0.7390592098236084, -1.1194050312042236, 0.2832726538181305, -0.05092623084783554, -0.22794684767723083, 0.8271058797836304, 0.15387234091758728, 0.24758955836296082, 0.14913421869277954, 0.42958736419677734, 0.5277256965637207, 0.11115224659442902, 0.6835876703262329, -0.3472035527229309, -0.9694350361824036, 0.615463137626648, 0.252663791179657, 0.8121445775032043, -0.499453067779541, 0.2685090899467468, 0.27025526762008667, -0.3409680724143982, -0.5682372450828552, -0.3102838397026062, 0.09025733917951584, 0.14930537343025208, 0.11142478138208389, -0.5721713304519653, -0.6576123237609863, -0.9689142107963562, -0.13590645790100098, -0.43143749237060547, -0.3571569323539734, 0.2100692242383957, 0.579290509223938, -1.1975524425506592, 0.41288718581199646, -0.7705629467964172, -0.7038741111755371, -0.010655385442078114, -0.19338127970695496, 0.7540653347969055, 0.43240171670913696, 0.5033965110778809, -0.6397148370742798, -0.566198468208313, -0.2247016429901123, -1.0333747863769531, -0.1328047662973404, 0.24819645285606384, 0.30657368898391724, -0.13423338532447815, -0.2744963765144348, -0.4874034523963928, 0.8100384473800659, 0.1478918045759201, -0.5391896963119507, 0.5220763087272644, -0.3020314574241638, 0.17224827408790588, -0.6369147300720215, -0.06916819512844086, -0.6616761088371277, -0.0009071171516552567, -0.3608308434486389, -0.5737441182136536, 0.147722989320755, 0.07017489522695541, -0.16065482795238495, 0.2880844175815582, -0.9092768430709839, -0.00108518754132092, -0.7442208528518677, 0.3790720999240875, 0.06394755840301514, -0.3145078718662262, -0.01751749776303768, 1.000038743019104, 0.7784460783004761, -0.3848043978214264, 0.7217440605163574, 0.4440038204193115, 0.19036145508289337, 0.7630521059036255, -0.18725094199180603, 0.16478231549263, -0.5245417952537537, -0.12161092460155487, -0.888759970664978, -1.0982941389083862, 0.7320570945739746, -0.6114252209663391, 0.3654291033744812, -0.42778706550598145, 0.25891587138175964, -0.6919257640838623, -0.03885354846715927, 0.4808601438999176, -0.05936328321695328, -0.6863945126533508, 0.5232570171356201, 0.45317578315734863, -0.20192423462867737, -0.6609035134315491, -0.530157208442688, 0.3936580419540405, 0.615411639213562, -0.16390354931354523, 0.06878522783517838, 0.14941099286079407, -0.5441924929618835, -0.04080290347337723, -0.3869200646877289, -0.4576675295829773, 0.05422424152493477, 0.130534365773201, -0.005750787444412708, -0.40481987595558167, -0.08680295944213867, -0.3584199547767639, -0.4656123220920563, 0.21876534819602966, 0.3011946678161621, -0.040963124483823776, -0.4259975552558899, -0.3619818687438965, -0.8881809115409851, 0.6719611883163452, 0.5370279550552368, 0.052815359085798264, 0.755554735660553, 0.16819341480731964, -0.8014991879463196, -0.13532225787639618, -0.17607052624225616, 0.26968297362327576, -0.5588056445121765, 0.1384984701871872, -0.013484853319823742, -0.06374941021203995, 0.2629789412021637, 0.25386226177215576, -0.4300557076931, 0.927625298500061, -0.2615275979042053, -0.359252005815506, 0.7960182428359985, 0.5974744558334351, 0.4958311915397644, 0.165032297372818, -0.04454191401600838, 0.900708794593811, -1.1966516971588135, -0.6563180088996887, -0.7409547567367554, -0.15945665538311005, -0.4351082742214203, -0.03210575133562088, 0.6254408955574036, 0.29009902477264404, -0.13333889842033386, 0.4756394922733307, -0.5243489146232605, 0.35560333728790283, 1.01198410987854, 0.35748666524887085, 0.34356993436813354, -0.7570229768753052, -0.2515779137611389, -0.1402425616979599, -0.9998161196708679, -0.26313742995262146, 0.8871029019355774, 0.2275262326002121, 0.8444607853889465, 0.5992540121078491, 0.6784541010856628, 0.136723130941391, 0.25238245725631714, -0.305902898311615, 0.39202943444252014, 0.4376083016395569, -1.0401140451431274, -0.4275839328765869, 0.021418366581201553, -0.9703342318534851, -0.14227499067783356, -0.034950122237205505, -0.4261711537837982, 0.7681735754013062, 0.0001656308741075918, -0.40767034888267517, 0.7732732892036438, -0.45558327436447144, 0.7562877535820007, -0.4473649859428406, -0.026638764888048172, 0.46990957856178284, -0.7070638537406921, 0.4677431583404541, 0.1287880688905716, 0.6205843687057495, -0.015572493895888329, -0.04078594967722893, 0.710493803024292, -0.9129161834716797, 0.2543860375881195, -0.6348399519920349, 0.2242128551006317, 0.24246926605701447, 0.5160627365112305, 0.59699547290802, 0.4371240735054016, 0.10119893401861191, -0.23920860886573792, 0.041157983243465424, -0.8241125345230103, -0.2105061262845993, 0.6975153684616089, -0.7186892032623291, -0.6864198446273804, -1.2355339527130127, 0.14438650012016296, 0.27347075939178467, 0.3893052935600281, 0.7959296107292175, 0.5714086294174194, 0.12895460426807404, 0.6805253028869629, 0.9888585805892944, -0.06885646283626556, 0.9166921377182007, 0.32244759798049927, 0.09175185859203339, -0.21944837272167206, 0.7036821246147156, 0.2662787139415741, -0.24707922339439392, -0.11939706653356552, 0.20913486182689667, -0.11069419234991074, -0.5917614698410034, -0.4999066889286041, 0.37017586827278137, -0.6731789708137512, -0.1830388903617859, -0.6243735551834106, -0.6043767929077148, -0.5117591619491577, 0.06927362829446793, -0.714768648147583, 0.23979046940803528, -0.7753567695617676, -0.10574917495250702, 0.043234020471572876, 0.979200541973114, -0.5893118977546692, 0.580522358417511, -1.1218582391738892, 0.19345781207084656, -0.07949893176555634, 0.7921057939529419, 0.2139577567577362, -0.7344393134117126, -0.39754214882850647, -0.11592614650726318, -0.372991144657135, -1.3576762676239014, 0.21404938399791718, -0.24541446566581726, 0.2309402972459793, 0.6145400404930115, 0.1397707313299179, 0.5258243680000305, -0.3432627320289612, 0.7029105424880981, -0.05701683834195137, -0.7069284319877625, 0.7934494018554688, -0.502689778804779, 0.4963536262512207, 0.9765998721122742, 0.5333833694458008, -0.7984006404876709, 0.03574132174253464, -1.041123390197754, -0.6008695363998413, 0.3842642307281494, 0.11928961426019669, -0.036011070013046265, -0.6659555435180664, -0.05401993542909622, -0.16143807768821716, 0.6043745875358582, -1.0390697717666626, -0.7858359813690186, 0.2576696276664734, 0.5277299284934998, 0.0816856250166893, -0.5653399229049683, 0.2088066041469574, -0.5444162487983704, 1.06577730178833, 0.45109423995018005, 0.32744982838630676, 0.8406060338020325, 0.46492424607276917, -0.3823164403438568, 0.09252481162548065, 0.766269326210022, 0.6666231155395508, -0.5239794254302979, -0.29080286622047424, -0.08827538043260574, -0.914340615272522, 0.059274692088365555, 0.11168905347585678, -0.013455855660140514, 0.9082112312316895, 0.5793076753616333, 0.25397080183029175, 0.4514279365539551, -0.7264606356620789, 0.8859450221061707, -0.14954161643981934, -0.12472894042730331, -1.0677241086959839, 0.19486203789710999, -0.23984971642494202, 0.5006402134895325, 1.0061326026916504, 0.5250049829483032, -0.04763036221265793, -0.8143383264541626, -0.014736054465174675, 0.6939169764518738, -0.709112286567688, -0.17449811100959778, 0.9448537826538086, 0.3847096860408783, -1.2953052520751953, 1.1067763566970825, -0.5381773114204407, -0.5603321194648743, 0.9121301770210266, 0.5229569673538208, 1.1221847534179688, -0.44204115867614746, 0.000867673777975142, 0.2662237286567688, 0.4137844443321228, 0.542316734790802, 1.0869632959365845, 0.4314131736755371, -0.793106198310852, 0.8826586008071899, -0.24776001274585724, -0.4036117196083069, -0.053475599735975266, -0.42859917879104614, 0.1689220666885376, -0.4406189024448395, -0.10713016986846924, -0.3444187641143799, 0.28543174266815186, -0.7072038650512695, 0.4280761778354645, -0.08385655283927917, 0.8653066754341125, -0.8553726077079773, 0.47207650542259216, 0.6354702711105347, -0.33373579382896423, -0.8508188128471375, -0.2619844377040863, -0.11448466777801514, -0.6389464139938354, 0.3021481931209564, -0.4554104208946228, 0.04439902305603027, 0.09623464196920395, -0.6491515040397644, -1.1778271198272705, 0.90936279296875, -0.6396118402481079, -0.2784457802772522, 0.20464053750038147, -0.11514759063720703, 0.2881166338920593, -0.25246450304985046, 0.010661316104233265, 0.4187658727169037, 0.7489398121833801, 0.2844657301902771, -0.7727051973342896, -0.3694884181022644, 0.0015030235517770052, -0.4447476863861084, 0.7582977414131165, -0.6002104878425598, 1.184078335762024, -0.5563539266586304, -0.059654295444488525, 0.4438447952270508, 0.2469092160463333, 0.21076229214668274, 0.6629219651222229, 0.14420786499977112, 0.7282264828681946, 1.070121169090271, -0.4083523750305176, 0.8811809420585632, 0.26432865858078003, 0.474308580160141, 0.7238502502441406, -0.6487724184989929, 0.7513746619224548, 0.3181045651435852, -0.5682923793792725, 0.9228013753890991, 1.2906066179275513, -0.1569923460483551, 0.8079376220703125, 0.051364921033382416, -1.0816001892089844, 0.32583338022232056, -0.20724764466285706, -0.7530066967010498, 0.3150254487991333, 0.19055874645709991, -0.6920984983444214, -0.5770307779312134, -0.24046500027179718, -0.35662785172462463, -0.11552879959344864, -0.7631730437278748, 0.6720568537712097, -0.01696902886033058, -0.5103684663772583, 0.18857550621032715, 0.2877497375011444, 0.1736842691898346, -0.5235732793807983, -0.029394347220659256, -0.22823579609394073, 0.2660658359527588, -0.5670852661132812, -0.523452877998352, 0.5724428296089172, -0.32430219650268555, -0.5343255996704102, 0.18147483468055725, 0.763587236404419, -0.16923828423023224, -0.451541006565094, 0.32472726702690125, 0.6959522366523743, 0.16658523678779602, 0.4250282347202301, -0.23511271178722382, 0.24480605125427246, -0.08044805377721786, -0.06651528179645538, 0.27714768052101135, 0.3449169099330902, 0.22435645759105682, 0.4450145661830902, 0.4328567385673523, -0.018087238073349, -0.10736498981714249, -0.3828195333480835, 0.41249412298202515, -0.9542785882949829, -0.5713286399841309, -0.6307113766670227, 0.2740660011768341, -0.023154232650995255, -1.0836423635482788, 0.41451674699783325, 1.4406683444976807, 1.0359985828399658, -0.4756380617618561, 1.0672266483306885, -0.21818478405475616, 0.9594789743423462, 0.41483086347579956, 0.5420441627502441, -0.6030413508415222, 0.03835355490446091, -0.4364401698112488, -1.0769627094268799, -0.35716333985328674, 0.4539388120174408, -0.022899528965353966, -0.34298649430274963, 0.8725717663764954, 0.5887163281440735, -0.3347361087799072, -0.11727993190288544, 0.04848712682723999, -0.029941773042082787, -0.12433848530054092, 0.514537513256073, 0.7648398876190186, -0.9344307780265808, -0.10680420696735382, -0.2157774418592453, -0.6382726430892944, -0.5047280788421631, -0.9632006883621216, -0.12959416210651398, -0.16037806868553162, 0.03534342721104622, -0.5662806034088135, 0.002557134721428156, 1.2083250284194946, 0.5684956312179565, -1.1113994121551514, -0.5303786993026733, 0.3371853232383728, 0.3920420706272125, -0.1874793916940689, -0.2420240342617035, 0.29845699667930603, 0.15382221341133118, -0.5908879041671753, 0.6875661611557007, 0.8089622259140015, 0.20888903737068176, 0.19554772973060608, 0.1589304357767105, -0.8229473829269409, -0.1491345763206482, 0.17440465092658997, 0.9450567364692688, -0.9398533701896667, -0.7114842534065247, -0.03168461471796036, -0.2709485590457916, -0.057657390832901, 0.17102092504501343, -0.4046342372894287, 0.5180677175521851, 0.34591469168663025, 0.4993346333503723, 0.05616121366620064, -0.054746728390455246, 0.540955662727356, -0.9069057703018188, 0.0942598432302475, 0.41343602538108826, 0.41541171073913574, -0.4000867009162903, -0.5910195112228394, 0.6713421940803528, 1.0073970556259155, -0.659486711025238, -0.8743268847465515, -0.1984672248363495, -1.0016001462936401, 0.04189668968319893, 0.6762763261795044, 0.5009525418281555, -0.48065152764320374, -0.4174496531486511, -0.5617401003837585, -0.1254674196243286, -0.1369975507259369, 0.7621601819992065, 1.1796807050704956, -0.7432090640068054, 0.07975694537162781, -1.038639783859253, 0.6594985723495483, -0.24194566905498505, -0.34575849771499634, -0.4864429533481598, 0.38328030705451965, 0.3523696959018707, 0.44048061966896057, 0.6148121953010559, 0.14084652066230774, 0.8338427543640137, 0.3126052916049957, -0.1702684909105301, 0.26989835500717163, -0.4559202194213867, -0.028933102265000343, -0.05796218663454056, 0.3101596236228943, -1.0262160301208496 ]
null
null
null
null
null
null
null
null
null
null
null
null
null
5cp/imdb_review_prompts
5cp
2023-11-19T22:44:31Z
451
0
null
[ "region:us" ]
2023-11-19T22:44:31Z
2023-11-19T22:44:29.000Z
2023-11-19T22:44:29
--- configs: - config_name: default data_files: - split: train path: data/train-* - split: test path: data/test-* dataset_info: features: - name: text dtype: string - name: label dtype: class_label: names: '0': neg '1': pos splits: - name: train num_bytes: 290977 num_examples: 782 - name: test num_bytes: 304788 num_examples: 858 download_size: 286770 dataset_size: 595765 --- # Dataset Card for "imdb_review_prompts" [More Information needed](https://github.com/huggingface/datasets/blob/main/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
[ -0.8544278144836426, -0.17280718684196472, 0.28378868103027344, 0.2247268259525299, -0.3309575319290161, 0.08739235252141953, 0.36197760701179504, 0.10275392234325409, 0.9197238087654114, 0.5716648101806641, -1.1905970573425293, -0.6099303960800171, -0.5341324210166931, 0.11426333338022232, -0.345045804977417, 1.448656439781189, 0.0546732023358345, 0.33889251947402954, -0.26599830389022827, -0.14623868465423584, -0.4835702180862427, -0.41747355461120605, -0.5147428512573242, -0.3121679425239563, 0.9679917097091675, 0.836750864982605, 0.3609214425086975, 0.20582151412963867, 0.8296337127685547, 0.05882174149155617, 0.2409707009792328, 0.12581010162830353, -0.228558748960495, 0.2315056324005127, -0.36763179302215576, -0.34769272804260254, -0.5846381187438965, 0.12616372108459473, 0.6476863622665405, 0.4325823187828064, 0.07642632722854614, 0.8284233212471008, -0.19598570466041565, 0.7737456560134888, -0.3718879520893097, 0.40577229857444763, -0.17331285774707794, 0.05411326512694359, -0.4413520097732544, -0.26547837257385254, 0.20276550948619843, -0.5498839616775513, -0.21543613076210022, -0.7013955116271973, 0.14947594702243805, 0.22530525922775269, 0.8143200278282166, 0.12723591923713684, -0.011562037281692028, -0.1164560467004776, -0.3706783652305603, -0.0003259405493736267, -0.16956867277622223, -0.04573843628168106, 0.6764665842056274, 0.49698206782341003, 0.20755362510681152, -0.42418110370635986, -0.6253806352615356, -0.1890385001897812, -0.09896169602870941, 0.15489402413368225, -0.02249312400817871, 0.0020392434671521187, 0.8273993134498596, 0.6186806559562683, -0.426364928483963, -0.03982582688331604, -0.7324389815330505, -0.40095415711402893, 0.4883953332901001, 0.3141914904117584, 0.04732067883014679, -0.44141680002212524, 0.03540810942649841, -0.44602274894714355, -0.5873122811317444, 0.17538197338581085, 0.5159028172492981, 0.03206252306699753, -0.8530042171478271, 1.0252553224563599, -0.19835816323757172, 0.26337674260139465, 0.14922131597995758, 0.9019932746887207, 0.5436004400253296, -0.5488390922546387, 0.028986990451812744, 0.13683336973190308, 0.45551609992980957, 0.9214948415756226, 0.37404322624206543, 0.4072886109352112, -0.15280400216579437, 0.1415383666753769, 0.1677761971950531, -1.0677835941314697, -0.539155900478363, 0.5451730489730835, -0.5643985271453857, -0.22140689194202423, 0.3864760398864746, -1.0018179416656494, -0.7948738932609558, -0.3091464638710022, 0.17135685682296753, -0.0040804557502269745, -0.43522414565086365, -0.43926793336868286, -0.7976541519165039, 0.5004769563674927, 0.22662366926670074, -0.7393598556518555, -0.012028356082737446, 0.45844411849975586, 0.6859979033470154, 0.19068221747875214, -0.25567692518234253, -0.9213680624961853, 0.03910096362233162, -0.030325116589665413, 1.2402598857879639, -0.6372714042663574, -0.6150611042976379, 0.1072714626789093, 0.2983497977256775, 0.17850278317928314, -0.3624354302883148, 0.8787408471107483, -0.18998512625694275, -0.12461268901824951, -0.7682115435600281, -0.1974220871925354, 0.020141221582889557, 0.6389560699462891, -1.0344080924987793, 0.9760042428970337, 0.3780217468738556, -0.7027758359909058, 0.45748111605644226, -1.3255882263183594, -0.06949368119239807, 0.28331226110458374, -0.21487155556678772, -0.38531509041786194, 0.18445785343647003, 0.35530561208724976, 0.4908987283706665, -0.2963860034942627, 0.41714808344841003, -0.740251362323761, -0.2980782091617584, 0.33701974153518677, 0.09013281017541885, 0.752991259098053, 0.5304524898529053, 0.3149154782295227, 0.277189701795578, -0.8433806896209717, -0.17413917183876038, 0.10583298653364182, -0.11737556755542755, -0.05912002548575401, -0.6425527334213257, 0.2990579903125763, -0.021437006071209908, 0.006429195404052734, -0.362626314163208, 0.3909587562084198, 0.2454809844493866, -0.17053449153900146, 0.6891180276870728, 0.4732988774776459, 0.19756484031677246, -0.5387152433395386, 0.7737499475479126, 0.26212847232818604, 0.19720254838466644, -0.3826509118080139, -0.22954852879047394, -0.549522876739502, 0.17753644287586212, 0.3570955693721771, 0.8675132393836975, -0.573711633682251, 0.5402534604072571, 0.1993522346019745, -0.54256272315979, -0.49869757890701294, 0.09206002950668335, 0.2382298707962036, 0.24022111296653748, 0.25531715154647827, -0.7700226306915283, -0.844670295715332, -0.7361644506454468, 0.15232135355472565, -0.2398841381072998, -0.09227907657623291, 0.4983251690864563, 0.8136497735977173, -0.6068875789642334, 0.6327625513076782, -0.48617157340049744, -0.33812448382377625, 0.10021993517875671, -0.1350317746400833, 0.6612980365753174, 0.8060685396194458, 0.6284908652305603, -0.5344305038452148, -0.3680756688117981, -0.6071063280105591, -0.6501379013061523, -0.2955936789512634, 0.22239555418491364, -0.5052953362464905, -0.48230278491973877, 0.4087527096271515, -0.4614314138889313, 0.3685441315174103, 0.7275524139404297, -0.6706881523132324, 0.38789093494415283, 0.07388024032115936, 0.5456229448318481, -1.2828149795532227, 0.36098945140838623, 0.04201124608516693, 0.002433106303215027, -0.03154224902391434, -0.2621104121208191, -0.03280579671263695, -0.36346685886383057, 0.08362868428230286, 0.5605359077453613, -0.33171820640563965, -0.10618087649345398, 0.13752996921539307, 0.12096302211284637, 0.1903494894504547, 0.319399356842041, -0.018642382696270943, 0.6107545495033264, 1.1025084257125854, -0.5684439539909363, 1.0076828002929688, 0.7223942279815674, -0.3376178443431854, 1.3093161582946777, -0.8237961530685425, 0.043981850147247314, -0.4973299205303192, 0.33723384141921997, -1.0576601028442383, -0.7657746076583862, 0.6133217215538025, -0.42349791526794434, 0.2704940438270569, -0.5550535321235657, -0.5183988213539124, -0.5844893455505371, -0.7055101990699768, 0.5020277500152588, 0.4327927529811859, -0.6565574407577515, 0.19307589530944824, 0.7030777931213379, -0.3197833299636841, -0.2298816591501236, -0.7728258371353149, 0.19271250069141388, -0.26257020235061646, -0.02067202888429165, 0.20024189352989197, -0.5819941759109497, -0.26825517416000366, -0.35272714495658875, 0.5002455115318298, -0.08282310515642166, -0.23354405164718628, 0.4449228048324585, 0.28190603852272034, -0.186092346906662, 0.3522297143936157, 0.2912259101867676, -0.6184746623039246, 0.19506630301475525, -0.06094953417778015, 0.3499211072921753, 0.006227999925613403, -0.14708608388900757, -0.2677387595176697, 0.7493511438369751, 0.18899402022361755, -0.3600420653820038, 0.2813302278518677, 1.0938854217529297, -0.41113749146461487, -0.003757237456738949, -0.5820567011833191, -0.31087857484817505, -0.3690074682235718, 0.06512545794248581, -0.2684354782104492, -0.5562157034873962, 0.5750348567962646, -0.13905248045921326, -0.00905529037117958, 0.8210901021957397, 0.8060053586959839, -0.3479163646697998, 0.6928181648254395, 0.4304097890853882, -0.11181902140378952, 0.7238996028900146, -0.35329434275627136, -0.44482558965682983, -0.9672507643699646, -0.27684375643730164, -0.714716911315918, -0.4322549104690552, -0.5647650957107544, -0.3560633659362793, 0.3168298602104187, -0.06446231156587601, -0.15491865575313568, 0.3758741617202759, -0.6756210327148438, 0.5848742723464966, 0.8086291551589966, 0.15653201937675476, -0.10369392484426498, -0.04077206924557686, -0.07482320815324783, 0.32412898540496826, -0.49427875876426697, -0.5135678052902222, 1.0890880823135376, 0.3110182583332062, 1.1196848154067993, 0.16530565917491913, 0.6721774339675903, 0.5982092618942261, 0.20033104717731476, -0.2720549404621124, 0.34358611702919006, 0.18542799353599548, -0.7493249177932739, -0.12130831927061081, 0.11054582893848419, -0.6753113865852356, -0.4453028738498688, -0.4921802282333374, -0.186520516872406, 0.7494248747825623, 0.3255634903907776, -0.3046543300151825, 0.12140471488237381, -0.804407000541687, 0.804745078086853, -0.05208972096443176, -0.037210188806056976, -0.25590530037879944, -0.7513140439987183, -0.006507467478513718, 0.1257084310054779, 0.02029169723391533, -0.3296559154987335, 0.021820908412337303, 0.9442893862724304, -0.40946269035339355, 0.9845155477523804, -0.7610771656036377, 0.1631712168455124, 0.3361944258213043, -0.09449845552444458, 0.29254239797592163, 0.776850163936615, -0.33298975229263306, 0.06178339570760727, 0.1895231008529663, -0.20020082592964172, -0.1703926920890808, 0.8017176985740662, -0.5715645551681519, 0.08651884645223618, -0.5362379550933838, -0.45811599493026733, -0.052682772278785706, 0.33098486065864563, 0.37410128116607666, 0.8358325958251953, -0.2803114652633667, -0.05003269761800766, 0.717512309551239, 0.14000412821769714, 0.3579848110675812, 0.11810337007045746, -0.18170037865638733, -0.737690269947052, 0.5867879986763, 0.10174751281738281, -0.4813477098941803, 0.40498247742652893, 0.2597791254520416, -0.4871809482574463, -0.5500919818878174, -0.7545883655548096, 0.22640149295330048, -0.8119320869445801, -0.46584832668304443, -0.451437771320343, -0.08845439553260803, -0.4197324216365814, -0.0914105474948883, 0.10936248302459717, -0.6023520827293396, -0.5146060585975647, -0.8531703948974609, 1.1228201389312744, 0.6723260879516602, -0.6451515555381775, 0.4471563696861267, -0.9091765880584717, 0.6034667491912842, 0.022504907101392746, 0.9503911137580872, -0.4084349274635315, -0.41883450746536255, -0.46041566133499146, -0.20171791315078735, -0.015570892952382565, -0.572096586227417, -0.11756505817174911, 0.2507334053516388, 0.6658686995506287, 0.09845574200153351, 0.08119688928127289, 0.5705110430717468, -0.08567102998495102, 0.8829808235168457, 0.09170481562614441, -0.5586665868759155, 0.8486862182617188, -0.27567386627197266, 0.5630586743354797, 1.1685190200805664, 0.5438588261604309, -0.3932161033153534, 0.027809660881757736, -0.6963154673576355, -0.427459180355072, 0.6479150056838989, -0.010610963217914104, 0.30183854699134827, 0.10501062124967575, 0.43491989374160767, 0.19238930940628052, 0.49155357480049133, -0.7536219358444214, -0.561566948890686, -0.18833404779434204, -0.18140631914138794, -0.04947529733181, -0.7047309875488281, -0.36485233902931213, -0.5359565615653992, 0.7069827914237976, -0.22287319600582123, 0.47861579060554504, 0.3300170302391052, 0.1641864776611328, -0.35444673895835876, 0.06789867579936981, 0.25625699758529663, 0.5091978311538696, -0.6230259537696838, -0.11424395442008972, -0.21979613602161407, -0.3066839277744293, -0.2030744105577469, 0.4707190692424774, -0.004390133544802666, -0.0004928344860672951, 0.4981153607368469, 0.9421418309211731, -0.5439562797546387, -0.4263300597667694, 0.24037982523441315, -0.31653228402137756, -0.24913817644119263, -0.6664763689041138, 0.22076842188835144, -0.18108749389648438, 0.2559613585472107, 0.08579065650701523, 0.029495038092136383, 0.43169546127319336, -0.6424967646598816, 0.45624881982803345, 0.027311772108078003, -0.862635612487793, -0.2375127077102661, 0.46250081062316895, 0.4750507175922394, -0.3579246997833252, 0.9721167087554932, -0.09019733965396881, -0.33148056268692017, 0.5735944509506226, 0.071493960916996, 1.0112719535827637, -0.2483116239309311, 0.34372568130493164, 0.8050241470336914, 0.1609199047088623, 0.40111690759658813, 0.7911487817764282, -0.5252975225448608, -0.5138450264930725, 0.12323622405529022, -0.3493242561817169, -0.7141051292419434, -0.5142131447792053, -0.8333289623260498, 0.620081901550293, -0.9374669790267944, -0.33056798577308655, -0.017297005280852318, -0.03636373206973076, -0.641735315322876, 0.274465948343277, 0.2303358018398285, 1.1983954906463623, -0.6430067420005798, 0.7706822752952576, 0.6718430519104004, -0.8991793394088745, -0.5420063138008118, -0.32253313064575195, 0.024538731202483177, -0.7193197011947632, 0.007971236482262611, 0.46921467781066895, 0.2937729060649872, -0.12204612046480179, -0.9622750282287598, -0.4662128686904907, 1.1574928760528564, 0.2580503225326538, -0.5940007567405701, 0.2601940333843231, -0.36782413721084595, 0.29055511951446533, -0.571199357509613, 0.6939382553100586, 0.6410820484161377, 0.8005194664001465, 0.18339179456233978, -0.6308432221412659, -0.10612014681100845, -0.8359400629997253, -0.5001503229141235, 0.2021186500787735, -0.38024061918258667, 0.3389626145362854, -0.40234848856925964, 0.09513144195079803, 0.07998540252447128, 0.4498494863510132, 0.3876718580722809, 0.6056821942329407, 0.5268239974975586, 0.2390519678592682, 0.9269205927848816, -0.34802013635635376, 1.2415552139282227, 0.026382258161902428, 0.25617358088493347, 1.0242429971694946, -0.22244581580162048, 0.22384195029735565, 0.7379741668701172, -0.1605582982301712, 0.6798129081726074, 0.8612433671951294, -0.7886900305747986, 0.47175344824790955, 0.3132151961326599, -0.08118578791618347, -0.14260342717170715, -0.6298704147338867, -0.5488696694374084, -0.16358716785907745, 0.627813458442688, -0.5744138956069946, -0.07273121178150177, 0.037916190922260284, -0.07627357542514801, -0.13425186276435852, -0.5848678350448608, 0.9289534091949463, 0.12658461928367615, -0.6677855253219604, 0.02578118070960045, -0.20653513073921204, 0.4158005118370056, -1.0800162553787231, -0.5587172508239746, -0.1690744310617447, -0.08699923753738403, -0.6153215765953064, -1.2934296131134033, 0.5598658323287964, -0.052784040570259094, -0.5460110902786255, 0.027197077870368958, 0.37327006459236145, -0.47143861651420593, -0.6882261037826538, 0.1070064976811409, 0.06790978461503983, 0.20428046584129333, 0.06935416907072067, -1.3310577869415283, 0.18655210733413696, -0.02856053225696087, 0.05365901440382004, -0.06260986626148224, 0.10197557508945465, -0.031369082629680634, 0.5222491025924683, 0.7922924757003784, -0.08711222559213638, -0.4157140552997589, 0.5231043100357056, 0.8044329881668091, -0.925607442855835, -0.7251029014587402, -0.6631579995155334, 0.8072069883346558, -0.36263495683670044, -0.6400433778762817, 0.5566238164901733, 0.7287168502807617, 0.8352370262145996, -0.45035046339035034, 0.7471863627433777, -0.4639934301376343, 0.6701550483703613, -0.6520471572875977, 0.4237138032913208, -0.2027556449174881, 0.15542814135551453, -0.37909066677093506, -1.0158926248550415, -0.6760685443878174, 0.5443286299705505, 0.07967066019773483, 0.19608202576637268, 0.6475865244865417, 1.1929941177368164, -0.09969466179609299, -0.030046850442886353, -0.07697506248950958, 0.21261107921600342, 0.39839857816696167, 0.21210163831710815, 0.7702114582061768, -0.3353717625141144, 0.13495425879955292, -0.1967071294784546, -0.3425692915916443, -0.12736235558986664, -1.160369634628296, -0.8957148790359497, -0.7158787846565247, -0.6058717966079712, -0.7580568790435791, -0.30362433195114136, 1.3565537929534912, 0.686479926109314, -1.2406632900238037, -0.46252909302711487, 0.20957475900650024, 0.30298471450805664, -0.026231909170746803, -0.09924869239330292, 0.6302245855331421, 0.39489486813545227, -0.7245305776596069, -0.023601796478033066, 0.08718535304069519, 0.23935140669345856, -0.29178541898727417, 0.021676622331142426, -0.16099533438682556, 0.00532621331512928, 0.254768431186676, 0.24777041375637054, -0.09411713480949402, -0.09531886130571365, -0.6423240303993225, 0.057636864483356476, 0.019192203879356384, 1.0703089237213135, -0.6261463761329651, 0.5182464718818665, 0.6515886187553406, 0.285455584526062, 0.5090442299842834, 0.06133405864238739, 0.7686809301376343, -0.5732654333114624, 0.003916211426258087, -0.014252305962145329, 0.7433936595916748, 0.36278727650642395, -0.6566656827926636, 0.8904623985290527, 0.2860373258590698, -0.4185250997543335, -0.6256334781646729, 0.0339469239115715, -1.4899928569793701, 0.5210623741149902, 0.8840063214302063, 0.2485923320055008, -0.22958023846149445, -0.13217920064926147, -0.8996745347976685, -0.10813062638044357, -0.9852285385131836, 0.21033596992492676, 0.6609039902687073, 0.10386376827955246, -0.45100903511047363, -0.009759481996297836, 0.586289644241333, -0.2685747742652893, -1.0332502126693726, 0.033581893891096115, 0.662375271320343, 0.024726305156946182, 0.13931715488433838, 0.7834706902503967, -0.38872265815734863, 0.447224497795105, 0.1233161985874176, 0.1287027895450592, -0.37982943654060364, -0.4858796298503876, -0.7579543590545654, -0.061533793807029724, 0.12535536289215088, -0.28867071866989136 ]
null
null
null
null
null
null
null
null
null
null
null
null
null
RIW/small-coco
RIW
2023-02-06T01:06:04Z
450
1
null
[ "region:us" ]
2023-02-06T01:06:04Z
2023-02-06T00:57:39.000Z
2023-02-06T00:57:39
--- dataset_info: features: - name: image dtype: image - name: caption dtype: string - name: url dtype: string - name: key dtype: string - name: status dtype: string - name: error_message dtype: 'null' - name: width dtype: int64 - name: height dtype: int64 - name: original_width dtype: int64 - name: original_height dtype: int64 - name: exif dtype: string - name: sha256 dtype: string splits: - name: train num_bytes: 1946738057.45 num_examples: 9890 - name: validation num_bytes: 1953823510.0 num_examples: 9893 download_size: 1313384992 dataset_size: 3900561567.45 --- # Dataset Card for "small-coco" [More Information needed](https://github.com/huggingface/datasets/blob/main/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
[ -0.6670436859130859, -0.40729331970214844, 0.179003044962883, 0.29944613575935364, -0.2380066215991974, 0.01828431524336338, -0.023421572521328926, -0.35262566804885864, 1.077393889427185, 0.4290302097797394, -0.8179346919059753, -0.6441222429275513, -0.5977055430412292, -0.1450626701116562, -0.27016374468803406, 1.3249009847640991, 0.13909457623958588, -0.04283030331134796, -0.5003448724746704, -0.10012996941804886, -0.5569617748260498, -0.43646323680877686, -0.7501433491706848, -0.37493768334388733, 1.092992901802063, 1.1561001539230347, 0.5471327304840088, 0.5755970478057861, 0.8134376406669617, 0.09957992285490036, 0.0204897690564394, -0.21590954065322876, -0.6132867336273193, -0.3937573730945587, -0.16680081188678741, -0.7490369081497192, -1.106810450553894, 0.015012350864708424, 0.47788017988204956, 0.6778780221939087, -0.08439373970031738, 0.9826186895370483, -0.034960854798555374, 0.8038807511329651, -0.5535058975219727, 0.6251681447029114, -0.1846272200345993, -0.002496437169611454, -0.6500635743141174, -0.009004463441669941, -0.024287564679980278, -0.4804437458515167, -0.27520549297332764, -0.9678875207901001, 0.3791813254356384, 0.39343026280403137, 0.6581833958625793, 0.15513524413108826, 0.09573566913604736, -0.2896229326725006, -0.4005560576915741, 0.15789274871349335, -0.0017604574095457792, -0.010050066746771336, 0.7781883478164673, 0.5429746508598328, 0.037788327783346176, -0.7072508335113525, -0.401847243309021, 0.01928318664431572, -0.22530856728553772, -0.018195144832134247, 0.060708921402692795, -0.05985018238425255, 0.6175981163978577, 0.7462388873100281, -0.41730067133903503, -0.21504124999046326, -0.6962830424308777, -0.2855726480484009, 0.7513677477836609, 0.2684447169303894, 0.3042386472225189, -0.07561184465885162, 0.1428057998418808, -0.23114913702011108, -0.7339052557945251, 0.01980690471827984, 0.3639181852340698, 0.43791669607162476, -1.3468133211135864, 0.8969560265541077, -0.09271351993083954, 0.4894203841686249, 0.1657334417104721, 0.4439515471458435, 0.42534980177879333, -0.3359939754009247, -0.39379945397377014, 0.1935437172651291, 0.4742984175682068, 0.1626415252685547, 0.10983458906412125, 0.20568062365055084, 0.17748895287513733, 0.1630961149930954, -0.008173199370503426, -1.1305580139160156, -1.0361785888671875, 0.15985611081123352, -0.6636852025985718, -0.4414503872394562, 0.3362235426902771, -1.0786503553390503, -0.4697280526161194, -0.2444010078907013, -0.07519380003213882, 0.27082791924476624, -0.4098318815231323, -0.47383296489715576, -0.5419090986251831, 0.38256701827049255, 0.17859849333763123, -0.9411202073097229, 0.6366186738014221, 0.5848444104194641, 0.6839067935943604, 0.198714941740036, -0.051705777645111084, -0.7742089033126831, 0.1815607100725174, -0.20931759476661682, 0.8880672454833984, -0.6628197431564331, -0.47557881474494934, -0.19246233999729156, 0.5869931578636169, 0.08343293517827988, -0.29934197664260864, 0.7706361413002014, -0.1590421348810196, -0.4082666039466858, -0.8981547951698303, -0.21305592358112335, 0.08739260584115982, 0.34511798620224, -1.155280351638794, 0.9421501159667969, 0.3983718156814575, -0.8421967625617981, 0.4047592282295227, -1.0775835514068604, -0.5031480193138123, 0.3784686326980591, -0.16217714548110962, -0.4675128757953644, 0.3961208462715149, 0.09222020953893661, 0.3921235501766205, -0.4868503510951996, -0.027001412585377693, -0.9091649651527405, -0.3379470109939575, 0.11798573285341263, 0.10787096619606018, 0.9405652284622192, 0.3430587649345398, 0.5222823023796082, 0.05974547192454338, -0.9398488402366638, -0.291534423828125, 0.4957064688205719, 0.02278606966137886, -0.2903153598308563, -0.5041040182113647, 0.290792852640152, -0.11313840746879578, 0.35873210430145264, -0.32624542713165283, 0.650991678237915, 0.16425345838069916, 0.15867440402507782, 0.5138372778892517, 0.21087811887264252, 0.4635447859764099, -0.5456714630126953, 0.6442892551422119, -0.03254382684826851, 0.543843686580658, 0.17155300080776215, -0.6764026880264282, -0.9303857088088989, -0.09705301374197006, 0.7170206308364868, 0.350475013256073, -0.5818150639533997, 0.5086661577224731, 0.07492268830537796, -0.6681594252586365, -0.34312716126441956, 0.22098588943481445, 0.022818919271230698, 0.19531278312206268, 0.2512291669845581, -0.6676900386810303, -0.7358421087265015, -0.6745308041572571, 0.6245096921920776, 0.02780909650027752, 0.13631242513656616, 0.5543913245201111, 1.0110722780227661, -0.5027206540107727, 0.9838296175003052, -0.9654977917671204, -0.5163072347640991, -0.047276243567466736, -0.26482152938842773, 0.2312454730272293, 0.7876529693603516, 1.0447423458099365, -0.7311525940895081, -0.5341971516609192, -0.3979302644729614, -0.35790830850601196, 0.0809507817029953, 0.516741931438446, -0.49325719475746155, -0.40764421224594116, 0.0006479680305346847, -0.48013389110565186, 0.8059329390525818, 0.9736692309379578, -0.2911519706249237, 0.18488319218158722, -0.00925477035343647, 0.1841697096824646, -1.1117327213287354, 0.4109484851360321, -0.21522852778434753, -0.20805956423282623, -0.22520612180233002, 0.042917754501104355, 0.09603874385356903, -0.3640672266483307, -0.2089649885892868, 0.49379128217697144, -0.4328751564025879, -0.16707314550876617, -0.082033671438694, 0.08332493901252747, 0.013104419223964214, 0.42399507761001587, 0.17745348811149597, 0.48374176025390625, 1.0166938304901123, -0.5429349541664124, 0.8954580426216125, 0.4451768100261688, 0.0470200851559639, 0.8345049023628235, -0.7968668341636658, 0.3387361168861389, -0.028551585972309113, 0.4763198792934418, -0.7814550995826721, -0.8314908742904663, 0.8222586512565613, -0.30107632279396057, 0.4055514633655548, -0.8078211545944214, -0.6527470350265503, -0.9159577488899231, -0.5137134194374084, 1.080607533454895, 0.49883028864860535, -0.7333558201789856, 0.21152253448963165, 0.7694553732872009, -0.08445240557193756, 0.040795568376779556, -1.0860440731048584, -0.06287454813718796, -0.23708197474479675, -0.11150136590003967, 0.11838268488645554, -0.6329084038734436, 0.09917978942394257, -0.18275931477546692, 0.3659120798110962, -0.2541559934616089, -0.3169925808906555, 0.5238381028175354, 0.11553672701120377, -0.2182541936635971, 0.2427685409784317, 0.16933606564998627, -0.5426889061927795, -0.04149458557367325, -0.11345623433589935, 0.4317121207714081, -0.19144654273986816, -0.0702294334769249, -0.3576931059360504, 0.3246532380580902, 0.20591332018375397, -0.1364319771528244, 0.6474961638450623, 0.9776418209075928, -0.8632412552833557, -0.04466922953724861, -0.297402560710907, -0.17225855588912964, -0.45059528946876526, -0.28190627694129944, -0.3378864824771881, -0.596354603767395, 0.6689615845680237, 0.08411642163991928, -0.3502952456474304, 0.8755329251289368, 0.8715734481811523, -0.05934467539191246, 0.6565178036689758, 0.8607441782951355, -0.458858847618103, 0.4062269330024719, -0.5658711791038513, -0.1498079001903534, -0.838531494140625, -0.3172537684440613, -0.7650905847549438, -0.3265523910522461, -0.7834653258323669, -0.6426576972007751, -0.18016234040260315, 0.23600783944129944, -0.09057337790727615, 0.9002586007118225, -0.7898056507110596, 0.36082062125205994, 0.4025861322879791, 0.1391640603542328, 0.07943937182426453, -0.23741362988948822, 0.21403342485427856, 0.3762393891811371, -1.019059419631958, -0.12258853018283844, 1.076714038848877, 0.5459251999855042, 1.0917750597000122, 0.1824038028717041, 0.8062995672225952, 0.41942813992500305, 0.6559301018714905, -0.46257132291793823, 0.2089398354291916, 0.10202644765377045, -0.6549742817878723, -0.0067119719460606575, -0.2089633047580719, -0.8096184134483337, -0.4833775758743286, -0.4199768304824829, -0.4992523193359375, 0.6423823833465576, 0.7847796082496643, -0.3328697085380554, 0.0613146647810936, -0.8124144077301025, 1.0525107383728027, -0.08346972614526749, -0.15817902982234955, -0.08792510628700256, -0.5238937735557556, 0.3334323763847351, 0.15713007748126984, 0.2613496780395508, -0.23340663313865662, -0.009642471559345722, 0.9935179352760315, -0.6673219799995422, 1.2687819004058838, -0.4324275851249695, -0.00027403136482462287, 0.6535366773605347, -0.20254065096378326, 0.430961549282074, 0.7379747629165649, 0.2018694281578064, 0.16338855028152466, 0.21416284143924713, -0.5809115767478943, -0.23073813319206238, 0.9797752499580383, -0.5721893310546875, 0.2637217938899994, -0.450493186712265, -0.37968483567237854, 0.06914142519235611, 0.3285701870918274, 0.38908201456069946, 0.38411325216293335, -0.45510080456733704, 0.10056516528129578, 0.602803647518158, 0.1957315057516098, 0.18359674513339996, -0.03178955614566803, -0.22598513960838318, -0.38633570075035095, 1.0454871654510498, 0.08947202563285828, -0.37174007296562195, 0.466788113117218, 0.5596528649330139, -0.12149488180875778, -0.3332602381706238, -0.5466928482055664, 0.3677683472633362, -0.3961854577064514, -0.602935791015625, -0.2624189555644989, -0.18066756427288055, -0.6149771809577942, -0.3525386452674866, -0.5073617100715637, -0.596781313419342, -0.8079386353492737, -0.45956841111183167, 0.8782067894935608, 0.62032151222229, -0.5758538842201233, 0.5737927556037903, -0.6411809325218201, 0.6025516390800476, 0.20712856948375702, 0.8018184900283813, -0.0588974803686142, -0.2253289520740509, -0.49135729670524597, 0.1561630517244339, 0.008145434781908989, -0.47825607657432556, -0.1326562464237213, 0.09121774137020111, 0.31353309750556946, 0.46121299266815186, 0.07429634779691696, 0.762252688407898, -0.04061353951692581, 0.6888943910598755, 0.47164207696914673, -0.6591106057167053, 0.8298543095588684, -0.17089469730854034, 0.2119206041097641, 0.9857609868049622, 0.3434300124645233, -0.2960890829563141, 0.0929647907614708, -1.0712850093841553, -0.5433988571166992, 0.6237192749977112, 0.20716622471809387, 0.03849794343113899, 0.09170494228601456, 0.36879488825798035, 0.000884153472725302, 0.4827507734298706, -0.8585957288742065, -0.7071572542190552, -0.033536411821842194, -0.3418912887573242, -0.054843030869960785, -0.5391770601272583, -0.39524808526039124, -0.7648775577545166, 0.515093207359314, -0.2210422158241272, 0.5643948912620544, -0.09992863237857819, 0.035128358751535416, -0.31748563051223755, -0.24041537940502167, 0.49936166405677795, 0.5643702149391174, -0.42875683307647705, -0.04496804624795914, 0.1732155978679657, -0.4303973913192749, -0.38931795954704285, 0.36308202147483826, -0.04300285875797272, -0.44191107153892517, 0.5347832441329956, 0.6218237280845642, -0.12062952667474747, -0.1502908170223236, 0.5047196745872498, -0.2695619463920593, -0.05091022700071335, -0.5125240683555603, 0.353092223405838, 0.12507234513759613, 0.004201180767267942, -0.2364446073770523, 0.060094814747571945, 0.19085216522216797, -0.7039956450462341, 0.3185848593711853, -0.09658113867044449, -0.7722460627555847, -0.4569333493709564, 0.5276737213134766, 0.48688194155693054, -0.425150990486145, 0.772865355014801, -0.14685256779193878, -0.21222864091396332, 0.8345385789871216, 0.37063518166542053, 0.49560877680778503, -0.2033875733613968, 0.34685468673706055, 0.589041531085968, 0.30015772581100464, 0.12038840353488922, 0.3804086744785309, -0.669626772403717, -0.4650062024593353, 0.18839038908481598, -0.39652958512306213, -0.3603561222553253, -0.2666265070438385, -1.0976735353469849, 0.4459804594516754, -0.8049582242965698, -0.21748819947242737, -0.09843679517507553, 0.3628728985786438, -1.202923059463501, 0.26933103799819946, 0.13893204927444458, 1.3937537670135498, -1.0385009050369263, 1.089720368385315, 0.6004037261009216, -0.6826578378677368, -0.6949909329414368, -0.255254864692688, 0.05109742656350136, -0.7986263036727905, -0.11056187003850937, 0.10849086940288544, 0.25089943408966064, -0.39687225222587585, -0.8703783750534058, -0.7584609985351562, 1.3298685550689697, 0.26618102192878723, -1.0152256488800049, 0.29003244638442993, -0.21259060502052307, 0.4744224548339844, -0.614747941493988, 0.20257534086704254, 0.7840779423713684, 0.7912196516990662, 0.3588486313819885, -0.5914112329483032, 0.026674751192331314, -0.30695056915283203, -0.08596538007259369, 0.16734787821769714, -0.999756395816803, 0.19537608325481415, -0.30834081768989563, 0.09584900736808777, 0.2901478707790375, 0.8186036348342896, 0.08011472225189209, 0.5030113458633423, 0.4170265197753906, 0.4554254412651062, 1.03510582447052, -0.3308650255203247, 1.1164355278015137, 0.0007522702217102051, 0.7836072444915771, 1.328025460243225, 0.006410269998013973, 0.27000293135643005, 0.5483206510543823, 0.026429912075400352, 0.2026936560869217, 0.8444893956184387, -0.5443177819252014, 0.43155428767204285, 0.44462838768959045, 0.04045854136347771, -0.01871858350932598, -0.14606128633022308, -0.7188760042190552, 0.12231682240962982, 0.5593665838241577, -0.4962911009788513, 0.22508177161216736, 0.07131659239530563, 0.05271468311548233, -0.3593046963214874, -0.7112571597099304, 0.5379192233085632, 0.3519679307937622, -0.13969308137893677, -0.053393006324768066, -0.029611090198159218, 0.23384951055049896, -0.7407320737838745, -0.2809564471244812, -0.03192849084734917, 0.08270468562841415, -0.6795511245727539, -0.8805598616600037, 0.6790853142738342, -0.16188021004199982, -0.3435443639755249, 0.2802368104457855, 0.7464631795883179, -0.4426640272140503, -0.9915182590484619, 0.33042290806770325, -0.029293369501829147, 0.10793159157037735, 0.28791895508766174, -1.199036955833435, 0.46419087052345276, -0.30880290269851685, 0.006300235632807016, 0.15487483143806458, 0.01045030727982521, -0.018192065879702568, 0.45323213934898376, 0.502238929271698, 0.10107093304395676, -0.4251481294631958, 0.46589896082878113, 0.9836732149124146, -0.5239448547363281, -0.6250272393226624, -0.5155383944511414, 0.5362474918365479, -0.3667176067829132, -0.41293206810951233, 0.6114471554756165, 1.0561206340789795, 1.0182394981384277, -0.278202623128891, 0.6983159184455872, -0.7270926237106323, 0.31328269839286804, -0.3505094647407532, 0.564434289932251, -0.3765130937099457, -0.16534137725830078, -0.4927332103252411, -0.8789872527122498, -0.7855870723724365, 0.7565643191337585, 0.023055613040924072, 0.06563352048397064, 0.6153203248977661, 0.9718266725540161, -0.43772900104522705, 0.17280197143554688, 0.007453984580934048, 0.21651487052440643, 0.18762654066085815, 0.4837772250175476, 0.37543901801109314, -0.4905654191970825, 0.2825559675693512, -0.5211343765258789, -0.6419637203216553, -0.258873850107193, -1.092768907546997, -1.0651047229766846, -0.5739982724189758, -0.6651374697685242, -0.3940393626689911, -0.16201578080654144, 0.9992228150367737, 1.1873276233673096, -1.1361950635910034, -0.2778187692165375, 0.014240995049476624, 0.44133421778678894, -0.2114371955394745, -0.14629453420639038, 0.7314327359199524, 0.5507255792617798, -0.5839686989784241, -0.19692757725715637, 0.06327878683805466, 0.13239817321300507, 0.06210559234023094, -0.12529948353767395, 0.14960390329360962, -0.05272464081645012, 0.45878759026527405, 0.7417442202568054, -0.06501443684101105, -0.5540130138397217, -0.8842912912368774, 0.08684612810611725, 0.1365220993757248, 1.3760604858398438, -0.29644644260406494, 0.10695108026266098, 0.4889521300792694, 0.20216521620750427, 0.8735228180885315, 0.017456689849495888, 0.3716728389263153, -0.8926662802696228, 0.4016621708869934, -0.10888560861349106, 0.6583119630813599, 0.09093596786260605, -0.6664033532142639, 0.7805528044700623, 0.4595593214035034, -0.34469273686408997, -0.5201889872550964, 0.12377633154392242, -1.6684783697128296, 0.40911421179771423, 0.7615604996681213, 0.18485693633556366, -0.599270224571228, 0.02477463148534298, -0.5387258529663086, 0.2061389982700348, -0.7280058264732361, 0.28384965658187866, 0.39932700991630554, -0.014215972274541855, -0.4019893407821655, -0.0866202861070633, 0.5965518951416016, -0.6516241431236267, -1.1997610330581665, 0.2187204658985138, 0.37446659803390503, 0.328572541475296, 0.2503669559955597, 1.0471175909042358, -0.21625439822673798, 0.23843084275722504, 0.41226550936698914, 0.08820941299200058, -0.3199428915977478, -0.9623452425003052, -0.19104976952075958, 0.0628264844417572, 0.07833263278007507, -0.5118445754051208 ]
null
null
null
null
null
null
null
null
null
null
null
null
null
FRTNX/cosuju
FRTNX
2021-03-29T09:01:41Z
449
0
null
[ "region:us" ]
2021-03-29T09:01:41Z
2022-03-02T23:29:22.000Z
2022-03-02T23:29:22
Entry not found
[ -0.32276472449302673, -0.22568407654762268, 0.8622258901596069, 0.4346148371696472, -0.5282984972000122, 0.7012965679168701, 0.7915717363357544, 0.07618629932403564, 0.7746022939682007, 0.2563222646713257, -0.785281777381897, -0.22573848068714142, -0.9104482531547546, 0.5715669393539429, -0.3992331624031067, 0.5791243314743042, -0.14494486153125763, -0.10751184076070786, 0.28233760595321655, -0.27689510583877563, -0.5409225225448608, -0.36855223774909973, -1.1902780532836914, 0.061491094529628754, 0.5316579341888428, 0.7435142397880554, 0.7584059834480286, 0.3652164936065674, 0.6432580947875977, 0.3932291567325592, -0.2313893735408783, 0.4827055037021637, -0.04171811789274216, 0.002603769302368164, -0.3524438738822937, -0.5516899824142456, -0.28596606850624084, 0.07584748417139053, 1.096130132675171, 0.9666875600814819, -0.2846639156341553, 0.05330846458673477, -0.3063625693321228, 0.33088910579681396, -0.4973434805870056, 0.3054102659225464, -0.022506307810544968, 0.16318818926811218, -0.7041515707969666, -0.5535354614257812, 0.012794638983905315, -0.7361210584640503, 0.17926540970802307, -0.690081000328064, 0.8269097208976746, 0.1858314424753189, 1.153375267982483, 0.1481940746307373, -0.4624869227409363, -0.8161762356758118, -0.6538985371589661, 0.5711170434951782, -0.3270367681980133, 0.39680251479148865, 0.7028236985206604, -0.048573367297649384, -0.9820335507392883, -0.6745744943618774, -0.46466144919395447, 0.2923961281776428, 0.3540281355381012, -0.3411676287651062, -0.1752210557460785, -0.30589887499809265, 0.15792015194892883, 0.12811514735221863, -0.4841992259025574, -0.5543918013572693, -0.5475160479545593, -0.39602550864219666, 0.6206660270690918, 0.3482949137687683, 0.2429179698228836, -0.18884186446666718, -0.3228585124015808, 0.08801652491092682, -0.4160858988761902, 0.3402571380138397, 0.6335514783859253, 0.711401641368866, -0.5811445713043213, 0.5602161288261414, -0.04927612096071243, 0.7439702749252319, 0.11445526778697968, -0.2747807800769806, 0.4146057963371277, -0.14724718034267426, 0.05517200380563736, 0.42263442277908325, 0.315244197845459, 0.28413110971450806, -0.3273695409297943, 0.20322325825691223, -0.32151469588279724, -0.3049620985984802, -0.2233220636844635, -0.29490748047828674, -0.35921812057495117, 0.5492290258407593, -0.33140188455581665, -0.42855483293533325, 1.143175721168518, -0.42007699608802795, -0.7302223443984985, 0.3315642774105072, 0.40652066469192505, -0.09944798052310944, -0.3714655041694641, -0.05226077511906624, -0.8458787798881531, -0.007907616905868053, 0.7491171956062317, -0.7198969721794128, 0.33717361092567444, 0.4728066325187683, 0.7417216300964355, 0.1965055614709854, -0.1403450071811676, -0.4294942021369934, 0.29719701409339905, -0.8659994006156921, 0.6320171356201172, -0.20135235786437988, -1.0051977634429932, 0.1115049496293068, 0.8971706628799438, -0.37896397709846497, -1.2094879150390625, 1.060516119003296, -0.6887933015823364, 0.16017858684062958, -0.676761269569397, -0.1466120183467865, -0.07118489593267441, -0.005096477456390858, -0.6088160276412964, 0.7567108869552612, 0.587267279624939, -0.49952763319015503, 0.2142949402332306, -0.2602987289428711, -0.3915135860443115, 0.3882487416267395, -0.07935424149036407, -0.21858899295330048, 0.713833212852478, -0.6647079586982727, -0.26932841539382935, 0.29427704215049744, 0.23689396679401398, -0.35706067085266113, -0.7931919097900391, 0.08478138595819473, -0.05786247178912163, 1.550750494003296, -0.038688354194164276, -0.35861048102378845, -0.6793831586837769, -1.1506237983703613, -0.07070822268724442, 0.6886888742446899, -0.91949862241745, -0.2783950865268707, -0.04641031473875046, -0.26169344782829285, 0.08994942903518677, 0.7390592098236084, -1.1194050312042236, 0.2832726538181305, -0.05092623084783554, -0.22794684767723083, 0.8271058797836304, 0.15387234091758728, 0.24758955836296082, 0.14913421869277954, 0.42958736419677734, 0.5277256965637207, 0.11115224659442902, 0.6835876703262329, -0.3472035527229309, -0.9694350361824036, 0.615463137626648, 0.252663791179657, 0.8121445775032043, -0.499453067779541, 0.2685090899467468, 0.27025526762008667, -0.3409680724143982, -0.5682372450828552, -0.3102838397026062, 0.09025733917951584, 0.14930537343025208, 0.11142478138208389, -0.5721713304519653, -0.6576123237609863, -0.9689142107963562, -0.13590645790100098, -0.43143749237060547, -0.3571569323539734, 0.2100692242383957, 0.579290509223938, -1.1975524425506592, 0.41288718581199646, -0.7705629467964172, -0.7038741111755371, -0.010655385442078114, -0.19338127970695496, 0.7540653347969055, 0.43240171670913696, 0.5033965110778809, -0.6397148370742798, -0.566198468208313, -0.2247016429901123, -1.0333747863769531, -0.1328047662973404, 0.24819645285606384, 0.30657368898391724, -0.13423338532447815, -0.2744963765144348, -0.4874034523963928, 0.8100384473800659, 0.1478918045759201, -0.5391896963119507, 0.5220763087272644, -0.3020314574241638, 0.17224827408790588, -0.6369147300720215, -0.06916819512844086, -0.6616761088371277, -0.0009071171516552567, -0.3608308434486389, -0.5737441182136536, 0.147722989320755, 0.07017489522695541, -0.16065482795238495, 0.2880844175815582, -0.9092768430709839, -0.00108518754132092, -0.7442208528518677, 0.3790720999240875, 0.06394755840301514, -0.3145078718662262, -0.01751749776303768, 1.000038743019104, 0.7784460783004761, -0.3848043978214264, 0.7217440605163574, 0.4440038204193115, 0.19036145508289337, 0.7630521059036255, -0.18725094199180603, 0.16478231549263, -0.5245417952537537, -0.12161092460155487, -0.888759970664978, -1.0982941389083862, 0.7320570945739746, -0.6114252209663391, 0.3654291033744812, -0.42778706550598145, 0.25891587138175964, -0.6919257640838623, -0.03885354846715927, 0.4808601438999176, -0.05936328321695328, -0.6863945126533508, 0.5232570171356201, 0.45317578315734863, -0.20192423462867737, -0.6609035134315491, -0.530157208442688, 0.3936580419540405, 0.615411639213562, -0.16390354931354523, 0.06878522783517838, 0.14941099286079407, -0.5441924929618835, -0.04080290347337723, -0.3869200646877289, -0.4576675295829773, 0.05422424152493477, 0.130534365773201, -0.005750787444412708, -0.40481987595558167, -0.08680295944213867, -0.3584199547767639, -0.4656123220920563, 0.21876534819602966, 0.3011946678161621, -0.040963124483823776, -0.4259975552558899, -0.3619818687438965, -0.8881809115409851, 0.6719611883163452, 0.5370279550552368, 0.052815359085798264, 0.755554735660553, 0.16819341480731964, -0.8014991879463196, -0.13532225787639618, -0.17607052624225616, 0.26968297362327576, -0.5588056445121765, 0.1384984701871872, -0.013484853319823742, -0.06374941021203995, 0.2629789412021637, 0.25386226177215576, -0.4300557076931, 0.927625298500061, -0.2615275979042053, -0.359252005815506, 0.7960182428359985, 0.5974744558334351, 0.4958311915397644, 0.165032297372818, -0.04454191401600838, 0.900708794593811, -1.1966516971588135, -0.6563180088996887, -0.7409547567367554, -0.15945665538311005, -0.4351082742214203, -0.03210575133562088, 0.6254408955574036, 0.29009902477264404, -0.13333889842033386, 0.4756394922733307, -0.5243489146232605, 0.35560333728790283, 1.01198410987854, 0.35748666524887085, 0.34356993436813354, -0.7570229768753052, -0.2515779137611389, -0.1402425616979599, -0.9998161196708679, -0.26313742995262146, 0.8871029019355774, 0.2275262326002121, 0.8444607853889465, 0.5992540121078491, 0.6784541010856628, 0.136723130941391, 0.25238245725631714, -0.305902898311615, 0.39202943444252014, 0.4376083016395569, -1.0401140451431274, -0.4275839328765869, 0.021418366581201553, -0.9703342318534851, -0.14227499067783356, -0.034950122237205505, -0.4261711537837982, 0.7681735754013062, 0.0001656308741075918, -0.40767034888267517, 0.7732732892036438, -0.45558327436447144, 0.7562877535820007, -0.4473649859428406, -0.026638764888048172, 0.46990957856178284, -0.7070638537406921, 0.4677431583404541, 0.1287880688905716, 0.6205843687057495, -0.015572493895888329, -0.04078594967722893, 0.710493803024292, -0.9129161834716797, 0.2543860375881195, -0.6348399519920349, 0.2242128551006317, 0.24246926605701447, 0.5160627365112305, 0.59699547290802, 0.4371240735054016, 0.10119893401861191, -0.23920860886573792, 0.041157983243465424, -0.8241125345230103, -0.2105061262845993, 0.6975153684616089, -0.7186892032623291, -0.6864198446273804, -1.2355339527130127, 0.14438650012016296, 0.27347075939178467, 0.3893052935600281, 0.7959296107292175, 0.5714086294174194, 0.12895460426807404, 0.6805253028869629, 0.9888585805892944, -0.06885646283626556, 0.9166921377182007, 0.32244759798049927, 0.09175185859203339, -0.21944837272167206, 0.7036821246147156, 0.2662787139415741, -0.24707922339439392, -0.11939706653356552, 0.20913486182689667, -0.11069419234991074, -0.5917614698410034, -0.4999066889286041, 0.37017586827278137, -0.6731789708137512, -0.1830388903617859, -0.6243735551834106, -0.6043767929077148, -0.5117591619491577, 0.06927362829446793, -0.714768648147583, 0.23979046940803528, -0.7753567695617676, -0.10574917495250702, 0.043234020471572876, 0.979200541973114, -0.5893118977546692, 0.580522358417511, -1.1218582391738892, 0.19345781207084656, -0.07949893176555634, 0.7921057939529419, 0.2139577567577362, -0.7344393134117126, -0.39754214882850647, -0.11592614650726318, -0.372991144657135, -1.3576762676239014, 0.21404938399791718, -0.24541446566581726, 0.2309402972459793, 0.6145400404930115, 0.1397707313299179, 0.5258243680000305, -0.3432627320289612, 0.7029105424880981, -0.05701683834195137, -0.7069284319877625, 0.7934494018554688, -0.502689778804779, 0.4963536262512207, 0.9765998721122742, 0.5333833694458008, -0.7984006404876709, 0.03574132174253464, -1.041123390197754, -0.6008695363998413, 0.3842642307281494, 0.11928961426019669, -0.036011070013046265, -0.6659555435180664, -0.05401993542909622, -0.16143807768821716, 0.6043745875358582, -1.0390697717666626, -0.7858359813690186, 0.2576696276664734, 0.5277299284934998, 0.0816856250166893, -0.5653399229049683, 0.2088066041469574, -0.5444162487983704, 1.06577730178833, 0.45109423995018005, 0.32744982838630676, 0.8406060338020325, 0.46492424607276917, -0.3823164403438568, 0.09252481162548065, 0.766269326210022, 0.6666231155395508, -0.5239794254302979, -0.29080286622047424, -0.08827538043260574, -0.914340615272522, 0.059274692088365555, 0.11168905347585678, -0.013455855660140514, 0.9082112312316895, 0.5793076753616333, 0.25397080183029175, 0.4514279365539551, -0.7264606356620789, 0.8859450221061707, -0.14954161643981934, -0.12472894042730331, -1.0677241086959839, 0.19486203789710999, -0.23984971642494202, 0.5006402134895325, 1.0061326026916504, 0.5250049829483032, -0.04763036221265793, -0.8143383264541626, -0.014736054465174675, 0.6939169764518738, -0.709112286567688, -0.17449811100959778, 0.9448537826538086, 0.3847096860408783, -1.2953052520751953, 1.1067763566970825, -0.5381773114204407, -0.5603321194648743, 0.9121301770210266, 0.5229569673538208, 1.1221847534179688, -0.44204115867614746, 0.000867673777975142, 0.2662237286567688, 0.4137844443321228, 0.542316734790802, 1.0869632959365845, 0.4314131736755371, -0.793106198310852, 0.8826586008071899, -0.24776001274585724, -0.4036117196083069, -0.053475599735975266, -0.42859917879104614, 0.1689220666885376, -0.4406189024448395, -0.10713016986846924, -0.3444187641143799, 0.28543174266815186, -0.7072038650512695, 0.4280761778354645, -0.08385655283927917, 0.8653066754341125, -0.8553726077079773, 0.47207650542259216, 0.6354702711105347, -0.33373579382896423, -0.8508188128471375, -0.2619844377040863, -0.11448466777801514, -0.6389464139938354, 0.3021481931209564, -0.4554104208946228, 0.04439902305603027, 0.09623464196920395, -0.6491515040397644, -1.1778271198272705, 0.90936279296875, -0.6396118402481079, -0.2784457802772522, 0.20464053750038147, -0.11514759063720703, 0.2881166338920593, -0.25246450304985046, 0.010661316104233265, 0.4187658727169037, 0.7489398121833801, 0.2844657301902771, -0.7727051973342896, -0.3694884181022644, 0.0015030235517770052, -0.4447476863861084, 0.7582977414131165, -0.6002104878425598, 1.184078335762024, -0.5563539266586304, -0.059654295444488525, 0.4438447952270508, 0.2469092160463333, 0.21076229214668274, 0.6629219651222229, 0.14420786499977112, 0.7282264828681946, 1.070121169090271, -0.4083523750305176, 0.8811809420585632, 0.26432865858078003, 0.474308580160141, 0.7238502502441406, -0.6487724184989929, 0.7513746619224548, 0.3181045651435852, -0.5682923793792725, 0.9228013753890991, 1.2906066179275513, -0.1569923460483551, 0.8079376220703125, 0.051364921033382416, -1.0816001892089844, 0.32583338022232056, -0.20724764466285706, -0.7530066967010498, 0.3150254487991333, 0.19055874645709991, -0.6920984983444214, -0.5770307779312134, -0.24046500027179718, -0.35662785172462463, -0.11552879959344864, -0.7631730437278748, 0.6720568537712097, -0.01696902886033058, -0.5103684663772583, 0.18857550621032715, 0.2877497375011444, 0.1736842691898346, -0.5235732793807983, -0.029394347220659256, -0.22823579609394073, 0.2660658359527588, -0.5670852661132812, -0.523452877998352, 0.5724428296089172, -0.32430219650268555, -0.5343255996704102, 0.18147483468055725, 0.763587236404419, -0.16923828423023224, -0.451541006565094, 0.32472726702690125, 0.6959522366523743, 0.16658523678779602, 0.4250282347202301, -0.23511271178722382, 0.24480605125427246, -0.08044805377721786, -0.06651528179645538, 0.27714768052101135, 0.3449169099330902, 0.22435645759105682, 0.4450145661830902, 0.4328567385673523, -0.018087238073349, -0.10736498981714249, -0.3828195333480835, 0.41249412298202515, -0.9542785882949829, -0.5713286399841309, -0.6307113766670227, 0.2740660011768341, -0.023154232650995255, -1.0836423635482788, 0.41451674699783325, 1.4406683444976807, 1.0359985828399658, -0.4756380617618561, 1.0672266483306885, -0.21818478405475616, 0.9594789743423462, 0.41483086347579956, 0.5420441627502441, -0.6030413508415222, 0.03835355490446091, -0.4364401698112488, -1.0769627094268799, -0.35716333985328674, 0.4539388120174408, -0.022899528965353966, -0.34298649430274963, 0.8725717663764954, 0.5887163281440735, -0.3347361087799072, -0.11727993190288544, 0.04848712682723999, -0.029941773042082787, -0.12433848530054092, 0.514537513256073, 0.7648398876190186, -0.9344307780265808, -0.10680420696735382, -0.2157774418592453, -0.6382726430892944, -0.5047280788421631, -0.9632006883621216, -0.12959416210651398, -0.16037806868553162, 0.03534342721104622, -0.5662806034088135, 0.002557134721428156, 1.2083250284194946, 0.5684956312179565, -1.1113994121551514, -0.5303786993026733, 0.3371853232383728, 0.3920420706272125, -0.1874793916940689, -0.2420240342617035, 0.29845699667930603, 0.15382221341133118, -0.5908879041671753, 0.6875661611557007, 0.8089622259140015, 0.20888903737068176, 0.19554772973060608, 0.1589304357767105, -0.8229473829269409, -0.1491345763206482, 0.17440465092658997, 0.9450567364692688, -0.9398533701896667, -0.7114842534065247, -0.03168461471796036, -0.2709485590457916, -0.057657390832901, 0.17102092504501343, -0.4046342372894287, 0.5180677175521851, 0.34591469168663025, 0.4993346333503723, 0.05616121366620064, -0.054746728390455246, 0.540955662727356, -0.9069057703018188, 0.0942598432302475, 0.41343602538108826, 0.41541171073913574, -0.4000867009162903, -0.5910195112228394, 0.6713421940803528, 1.0073970556259155, -0.659486711025238, -0.8743268847465515, -0.1984672248363495, -1.0016001462936401, 0.04189668968319893, 0.6762763261795044, 0.5009525418281555, -0.48065152764320374, -0.4174496531486511, -0.5617401003837585, -0.1254674196243286, -0.1369975507259369, 0.7621601819992065, 1.1796807050704956, -0.7432090640068054, 0.07975694537162781, -1.038639783859253, 0.6594985723495483, -0.24194566905498505, -0.34575849771499634, -0.4864429533481598, 0.38328030705451965, 0.3523696959018707, 0.44048061966896057, 0.6148121953010559, 0.14084652066230774, 0.8338427543640137, 0.3126052916049957, -0.1702684909105301, 0.26989835500717163, -0.4559202194213867, -0.028933102265000343, -0.05796218663454056, 0.3101596236228943, -1.0262160301208496 ]
null
null
null
null
null
null
null
null
null
null
null
null
null
cambridgeltl/vsr_zeroshot
cambridgeltl
2023-03-22T17:27:58Z
449
1
null
[ "task_categories:text-classification", "task_categories:question-answering", "size_categories:1K<n<10K", "language:en", "license:cc-by-4.0", "multimodal", "vision-and-language", "arxiv:2205.00363", "region:us" ]
2023-03-22T17:27:58Z
2023-03-22T16:42:17.000Z
2023-03-22T16:42:17
--- license: cc-by-4.0 task_categories: - text-classification - question-answering language: - en tags: - multimodal - vision-and-language pretty_name: VSR (zeroshot) size_categories: - 1K<n<10K --- # VSR: Visual Spatial Reasoning This is the **zero-shot set** of **VSR**: *Visual Spatial Reasoning* (TACL 2023) [[paper]](https://arxiv.org/abs/2205.00363). ### Usage ```python from datasets import load_dataset data_files = {"train": "train.jsonl", "dev": "dev.jsonl", "test": "test.jsonl"} dataset = load_dataset("cambridgeltl/vsr_zeroshot", data_files=data_files) ``` Note that the image files still need to be downloaded separately. See [`data/`](https://github.com/cambridgeltl/visual-spatial-reasoning/tree/master/data) for details. Go to our [github repo](https://github.com/cambridgeltl/visual-spatial-reasoning) for more introductions. ### Citation If you find VSR useful: ```bibtex @article{Liu2022VisualSR, title={Visual Spatial Reasoning}, author={Fangyu Liu and Guy Edward Toh Emerson and Nigel Collier}, journal={Transactions of the Association for Computational Linguistics}, year={2023}, } ```
[ -0.35099560022354126, -0.7059342265129089, 0.6577038168907166, 0.04504577815532684, -0.25003620982170105, -0.0853252038359642, -0.10316623002290726, -0.22259306907653809, 0.004826315678656101, 0.37101393938064575, -0.4026586711406708, -0.6887259483337402, -0.3265010118484497, 0.008937905542552471, -0.17536984384059906, 0.8314595222473145, -0.22088730335235596, 0.056768033653497696, -0.20292626321315765, -0.5188723802566528, -0.49736154079437256, -0.29076579213142395, -0.12490306049585342, -0.3775394856929779, 0.5831410884857178, 0.5447898507118225, 0.5407136082649231, 0.8885185122489929, 0.6833796501159668, 0.3765977919101715, -0.037643712013959885, -0.25109419226646423, -0.3785961866378784, 0.11029484122991562, -0.20855671167373657, -0.3712459206581116, 0.1343660056591034, -0.3911066949367523, 0.9556542634963989, 0.33413201570510864, 0.11313173174858093, 0.2584516406059265, -0.5795195698738098, 0.7768884301185608, -0.7072040438652039, 0.08550775796175003, -0.37445303797721863, 0.4114174246788025, -0.041145361959934235, -0.2804151475429535, -0.16131053864955902, -0.1513986885547638, 0.051077745854854584, -0.9451934695243835, 0.3301660120487213, -0.07023219764232635, 1.367653489112854, 0.42812588810920715, -0.2630159854888916, 0.3486790657043457, -0.8079251050949097, 0.7881160378456116, -0.3326077163219452, 0.4852807819843292, 0.0995178073644638, 0.6353166699409485, -0.043271180242300034, -0.7862784266471863, -0.6139288544654846, -0.18867573142051697, 0.2594360113143921, 0.29535213112831116, -0.23424166440963745, -0.20714357495307922, 0.6930240988731384, 0.07164879888296127, -1.0227314233779907, -0.4555269777774811, -1.068411111831665, 0.18926642835140228, 0.47259482741355896, 0.2502836287021637, 0.11313378065824509, -0.22750811278820038, -0.39650392532348633, -0.45652279257774353, -0.3597547709941864, -0.05361611768603325, -0.14830002188682556, 0.44094449281692505, -0.4753720164299011, 0.9663950800895691, -0.29558902978897095, 0.7752780914306641, -0.10523198544979095, 0.004741610959172249, 0.6261552572250366, -0.5004019141197205, -0.2708154618740082, -0.2976020872592926, 1.0572078227996826, 0.5407293438911438, 0.48545536398887634, 0.16820231080055237, 0.15128357708454132, -0.0606614388525486, 0.1440422683954239, -0.5674304962158203, -0.5478160977363586, 0.45788291096687317, -0.24295929074287415, -0.21256034076213837, 0.042639050632715225, -0.6982054114341736, -0.08344445377588272, -0.45761796832084656, 0.4149205982685089, -0.4289436340332031, -0.18517352640628815, 0.3023180365562439, -0.6722052097320557, 0.38116997480392456, 0.3931269943714142, -0.28747430443763733, 0.02637990191578865, 0.3829038143157959, 0.7796844840049744, 0.22335122525691986, -0.6301196217536926, -0.3197951018810272, -0.003976120613515377, -0.47874295711517334, 1.2212883234024048, -0.22444769740104675, -0.38705974817276, 0.04920586943626404, 0.10546602308750153, 0.06840609014034271, -0.3918619751930237, 0.47472384572029114, -0.27860698103904724, 0.18809212744235992, -0.7128692865371704, 0.09753096103668213, -0.2560420036315918, 0.6149186491966248, -0.47310417890548706, 1.3805941343307495, 0.20425699651241302, -0.7725561857223511, 0.5700064301490784, -0.7060994505882263, -0.311339408159256, 0.5401486754417419, -0.6024152636528015, -0.4123269021511078, -0.22826917469501495, -0.00871041975915432, 0.09085962921380997, 0.19203978776931763, 0.1282266080379486, -0.7601146697998047, -0.5173918008804321, 0.13009478151798248, 0.08925297111272812, 0.9957132935523987, 0.3299486041069031, -0.16194601356983185, 0.2862699329853058, -0.9527844190597534, 0.12032230198383331, 0.45828017592430115, -0.1385859251022339, -0.24246273934841156, -0.04313625767827034, 0.23193535208702087, 0.08472771942615509, 0.27271410822868347, -0.5368883609771729, 0.376061350107193, 0.08378050476312637, 0.20620891451835632, 0.5302744507789612, 0.02977304719388485, 0.5257563591003418, 0.11689648777246475, 0.3316480219364166, 0.06754113733768463, 0.13630793988704681, -0.038574326783418655, -0.3822688162326813, -0.662608802318573, -0.13775484263896942, -0.03310701251029968, 0.7941696643829346, -1.0913112163543701, 0.48444363474845886, -0.30581194162368774, -0.6961506605148315, -0.22816145420074463, -0.44030433893203735, 0.2588232457637787, 0.5534002780914307, 0.36438703536987305, 0.029125021770596504, -0.8728122115135193, -0.5174439549446106, 0.22381047904491425, -0.2512901723384857, 0.25051912665367126, 0.38121387362480164, 0.9645329117774963, 0.043698303401470184, 0.985373318195343, -0.7564511299133301, -0.104774609208107, -0.10396874696016312, 0.01133032701909542, 0.19282591342926025, 0.3654473125934601, 0.8015186190605164, -0.5461094975471497, -0.5015556216239929, -0.06524769961833954, -1.1761916875839233, -0.058503977954387665, -0.04479813948273659, -0.2532358765602112, 0.030734168365597725, 0.381072998046875, -0.46164777874946594, 0.6641839146614075, 0.11894452571868896, -0.7658027410507202, 0.9520025849342346, -0.19031716883182526, 0.29074805974960327, -0.7894615530967712, 0.21201185882091522, 0.36261439323425293, -0.26454997062683105, -0.39782434701919556, 0.39323052763938904, -0.10748963803052902, -0.2650781273841858, -0.6293019652366638, 0.5748330354690552, -0.45322439074516296, -0.15470923483371735, -0.053985241800546646, -0.13158787786960602, 0.04502827301621437, 0.2454933226108551, 0.3729518949985504, 0.7215977311134338, 0.8968774080276489, -0.3769066631793976, 0.49224525690078735, 0.4409690499305725, -0.14659027755260468, 0.6072133779525757, -0.9041638970375061, 0.03170061111450195, -0.2551736831665039, 0.17057140171527863, -0.9032511711120605, 0.08711449056863785, 0.7261977791786194, -0.6150974035263062, -0.04533800110220909, -0.511911928653717, -0.513994038105011, -0.49759477376937866, -0.44803208112716675, 0.47925642132759094, 0.18677406013011932, -0.4331814646720886, 0.33746612071990967, 0.13161951303482056, 0.36796727776527405, -0.7605366706848145, -0.9634156823158264, 0.0654459074139595, -0.013366706669330597, -0.19486942887306213, -0.2230091542005539, -0.45675766468048096, -0.4169800877571106, 0.5406466126441956, 0.20103652775287628, -0.12615138292312622, -0.4036741256713867, 0.2944181561470032, 0.4237501323223114, -0.5113805532455444, -0.3477868437767029, -0.4956756830215454, -0.4475353956222534, -0.10573723167181015, -0.27923691272735596, 0.21734005212783813, -0.5097503066062927, -0.5526325106620789, -0.26759859919548035, 0.36537206172943115, 0.4976845681667328, 0.058799099177122116, 0.5427611470222473, 0.6810710430145264, -0.25706008076667786, -0.0017259494634345174, -0.16970814764499664, 0.22100673615932465, -0.4568699300289154, 0.46117711067199707, -0.4501132071018219, -0.9329973459243774, 0.5348889231681824, 0.20962190628051758, -0.20941859483718872, 0.5278394222259521, 0.3816550374031067, -0.2752273678779602, 0.6880166530609131, 0.6938334703445435, 0.001489521935582161, 0.649308979511261, -0.6181248426437378, 0.05510859191417694, -0.6543139219284058, -0.3067849576473236, -0.8124396204948425, -0.15648287534713745, -0.36601048707962036, -0.5368914604187012, 0.2735678553581238, 0.17426015436649323, -0.8911410570144653, 0.708051323890686, -0.9855015277862549, 0.9728531837463379, 0.7554754018783569, -0.16778849065303802, -0.08913754671812057, 0.3738901615142822, -0.20176070928573608, -0.2130102515220642, -0.5196453332901001, -0.21322855353355408, 0.8221889138221741, 0.11074765771627426, 0.6088338494300842, -0.1577892303466797, 0.4989193081855774, 0.02057359367609024, -0.3945477306842804, -0.7793052792549133, 0.7422414422035217, -0.07788899540901184, -0.613294243812561, -0.12990044057369232, -0.38961347937583923, -0.8945002555847168, 0.3492279350757599, -0.23172155022621155, -0.8882337808609009, 0.3188142478466034, -0.07924585789442062, -0.2407623827457428, 0.438606321811676, -0.598979115486145, 0.9088786840438843, -0.3592776656150818, -0.32568004727363586, 0.2651219069957733, -0.709854245185852, 0.33532068133354187, 0.3959744870662689, -0.05467294901609421, 0.010364421643316746, 0.23556353151798248, 0.5265319347381592, -0.31326955556869507, 0.5795297622680664, -0.47648146748542786, 0.4635886251926422, 0.49408090114593506, 0.07962397485971451, 0.11637528985738754, -0.0872439444065094, 0.08388407528400421, 0.6604761481285095, 0.4296397268772125, -0.3816281259059906, -0.4343356192111969, 0.6173467636108398, -0.9920100569725037, 0.11669488996267319, -0.9737060070037842, -0.6364977359771729, 0.41527268290519714, 0.46210014820098877, 0.3638889491558075, 0.44396698474884033, -0.08457022160291672, 0.28572744131088257, 0.47808077931404114, -0.2652212083339691, 0.32190388441085815, 0.6016469597816467, -0.5138504505157471, -0.88346928358078, 0.923170268535614, 0.34299248456954956, -0.3025945723056793, 0.46935543417930603, 0.10128146409988403, -0.34750884771347046, -0.5799679160118103, -0.5706019997596741, 0.34166446328163147, -0.7309460043907166, -0.24710141122341156, -0.27038338780403137, -0.49348703026771545, -0.3156276345252991, -0.43879812955856323, -0.26930972933769226, -0.328544020652771, -0.45180195569992065, 0.0049634939059615135, 0.701616108417511, 0.7829799652099609, -0.6295098066329956, 0.18365174531936646, -0.7037879824638367, 0.6901809573173523, -0.17015329003334045, 0.24565695226192474, -0.3123668134212494, -0.31894350051879883, -0.28362709283828735, -0.1210041493177414, -0.22124254703521729, -0.605453372001648, 0.45753172039985657, -0.234497532248497, 0.6301388144493103, 0.4972091615200043, -0.07799522578716278, 1.0669150352478027, -0.6092237830162048, 1.0740777254104614, 0.35492199659347534, -0.41149482131004333, 0.6668609380722046, -0.5559213757514954, 0.5299640893936157, 0.7452958822250366, 0.2427390068769455, -0.437201589345932, -0.08259731531143188, -0.7142187356948853, -1.0152668952941895, 0.5302605628967285, -0.05962349846959114, -0.30599313974380493, -0.0014829917345196009, 0.18156062066555023, -0.3004666566848755, -0.12467756867408752, -1.0555377006530762, -0.5050197243690491, -0.25774553418159485, -0.23744313418865204, 0.06887903064489365, -0.2641224265098572, -0.49596598744392395, -0.8848035335540771, 0.566016435623169, -0.07213325053453445, 0.5745792388916016, 0.4469934105873108, 0.06170308217406273, -0.5255470275878906, -0.0403144508600235, 0.9244129061698914, 0.6474402546882629, -0.5204182267189026, 0.19725632667541504, 0.03185904398560524, -0.44443774223327637, 0.011002488434314728, 0.08823155611753464, -0.40820419788360596, 0.12283395975828171, 0.4484703242778778, 0.7190988659858704, -0.08355460315942764, -0.4809190034866333, 0.6908200979232788, -0.07193368673324585, -0.6976134777069092, -0.7385635375976562, -0.15406152606010437, -0.19550210237503052, 0.6906464695930481, 0.37079569697380066, 0.4072447419166565, -0.09168590605258942, -0.08603784441947937, 0.21577268838882446, 0.29904675483703613, -0.5821823477745056, -0.290880411863327, 0.6547878980636597, -0.3460002541542053, -0.3144846260547638, 0.6229125261306763, -0.5093782544136047, -0.47255831956863403, 0.5614355802536011, 0.545504629611969, 0.8660182952880859, 0.6059801578521729, 0.13043048977851868, 0.9034080505371094, 0.39093074202537537, 0.12274392694234848, 0.8272092938423157, -0.2660611867904663, -0.9309906959533691, -0.5631561875343323, -0.377353310585022, -0.39767876267433167, 0.45470431447029114, -0.5055003762245178, 0.20483359694480896, -0.5953035950660706, 0.07564157247543335, -0.19646069407463074, 0.14890366792678833, -0.6532444357872009, -0.06541619449853897, 0.2611086070537567, 1.0647386312484741, -1.0629756450653076, 0.6475276350975037, 0.8373629450798035, -0.8480876088142395, -0.7303770780563354, -0.2632351517677307, 0.36145657300949097, -0.9031032919883728, 0.7071670889854431, -0.18766948580741882, -0.14495688676834106, -0.24320760369300842, -1.1759170293807983, -0.7894127368927002, 0.9654622673988342, 0.20085424184799194, -0.5187658667564392, 0.569844126701355, 0.0945376306772232, 0.5965571999549866, 0.12621985375881195, 0.3203188478946686, 0.0648198351264, 0.680816113948822, 0.5154282450675964, -0.472542941570282, -0.21722082793712616, -0.5866573452949524, -0.006893307436257601, 0.1323918104171753, -0.3368906080722809, 0.8178377747535706, -0.5801360011100769, -0.06966645270586014, 0.11971692740917206, 0.6636762619018555, 0.838581919670105, 0.3907504975795746, 0.33085325360298157, 1.1968157291412354, 0.3866194188594818, -0.3122580051422119, 0.7449178695678711, 0.02269773557782173, 0.4914647340774536, 1.3249537944793701, -0.4303306043148041, 1.0339465141296387, 0.49233096837997437, -0.3106030225753784, 0.6277899742126465, 0.6546275615692139, -0.7084571123123169, 0.7652869820594788, 0.037019919604063034, -0.1364123523235321, -0.018559468910098076, 0.07621805369853973, -0.6908513903617859, 0.24564042687416077, 0.0667506605386734, 0.041623927652835846, -0.4686596691608429, -0.07376595586538315, -0.13515327870845795, 0.008985806256532669, -0.06973029673099518, 0.6309495568275452, -0.11667932569980621, -0.2650601267814636, 0.5921919345855713, -0.3414519131183624, 0.4623677432537079, -0.6013104319572449, -0.4220229983329773, 0.10779673606157303, 0.33175092935562134, -0.2696376144886017, -1.3877477645874023, 0.29427751898765564, 0.08617827296257019, -0.2763011157512665, -0.3172544538974762, 0.908004641532898, -0.25160565972328186, -0.6048206686973572, 0.4676085114479065, 0.4350453317165375, 0.5713483095169067, 0.10265440493822098, -0.9866346716880798, 0.20178088545799255, -0.07099462300539017, -0.23866578936576843, 0.17956355214118958, 0.7588781714439392, 0.23697182536125183, 0.5837037563323975, 0.8757138848304749, 0.2639490067958832, 0.0244709774851799, 0.21379855275154114, 0.8400864005088806, -1.1621347665786743, -0.19575604796409607, -0.5717669725418091, 0.917492151260376, -0.0018061228329315782, -0.41268888115882874, 0.7058238983154297, 0.9918772578239441, 1.0395272970199585, -0.2915494441986084, 0.8267362117767334, -0.34913188219070435, 0.1923956274986267, -0.06764738261699677, 0.7784650325775146, -0.5957239866256714, -0.4155571758747101, -0.19835950434207916, -0.4929322600364685, -0.7525385618209839, 0.8520858883857727, -0.317180871963501, -0.04373940825462341, 0.8740355372428894, 0.9961159825325012, -0.23415769636631012, -0.44263410568237305, 0.30948925018310547, 0.1356116086244583, 0.11855974048376083, 0.4784485399723053, 1.0000591278076172, -0.7310201525688171, 0.5688666701316833, -0.3894168734550476, -0.07719842344522476, 0.0846605896949768, -1.0428146123886108, -0.5760367512702942, -0.7222597002983093, -0.5101061463356018, -0.5826722979545593, 0.07374486327171326, 0.5855652689933777, 0.8279906511306763, -0.8038331866264343, -0.31053245067596436, -0.2572506070137024, 0.13112372159957886, -0.1794642060995102, -0.3453192412853241, 0.19905079901218414, 0.046535734087228775, -0.2918182611465454, 0.5570769906044006, 0.3512834906578064, 0.075743667781353, 0.09474983811378479, -0.16382235288619995, -0.3878225088119507, -0.5223422646522522, 0.5341110229492188, 0.8930915594100952, -0.5753605961799622, -0.629332423210144, -0.1412520706653595, -0.08246994763612747, 0.48828333616256714, 0.39044904708862305, -0.9798154830932617, 0.5249300599098206, 0.8128746747970581, -0.01531974971294403, 0.5427327156066895, -0.17255042493343353, 0.16438856720924377, -0.6405406594276428, 0.4193532466888428, -0.019618293270468712, 0.6386629939079285, 0.2751529812812805, -0.12829981744289398, 0.7336881160736084, 0.5860999822616577, -0.6441349387168884, -0.8734980225563049, -0.1232394352555275, -1.7231433391571045, -0.2474411576986313, 1.2994537353515625, 0.23803725838661194, -0.530002236366272, 0.04261935502290726, -0.37282443046569824, 0.36426082253456116, -0.45471975207328796, 0.3394571542739868, 0.2683376371860504, 0.059909023344516754, -0.6289481520652771, -0.4723535478115082, -0.11232832819223404, -0.32597771286964417, -0.6599470973014832, -0.2290545105934143, 0.7444789409637451, 0.5277877449989319, 0.4119280278682709, 0.7566445469856262, -0.20216959714889526, 0.13576017320156097, 0.4560431241989136, 0.6029839515686035, -0.43997952342033386, -0.5805842280387878, -0.6318914890289307, 0.15648996829986572, -0.07928924262523651, -0.6062612533569336 ]
null
null
null
null
null
null
null
null
null
null
null
null
null
polm-stability/xwinograd-ja
polm-stability
2023-10-06T08:34:15Z
449
0
null
[ "license:cc-by-4.0", "arxiv:2211.01786", "arxiv:2106.12066", "region:us" ]
2023-10-06T08:34:15Z
2023-10-06T08:11:59.000Z
2023-10-06T08:11:59
--- license: cc-by-4.0 --- This is the Japanese portion of the xwinograd dataset, formatted for easy use. The original data can be found [here](https://huggingface.co/datasets/Muennighoff/xwinograd). When using this data, please cite the original papers. ``` @misc{muennighoff2022crosslingual, title={Crosslingual Generalization through Multitask Finetuning}, author={Niklas Muennighoff and Thomas Wang and Lintang Sutawika and Adam Roberts and Stella Biderman and Teven Le Scao and M Saiful Bari and Sheng Shen and Zheng-Xin Yong and Hailey Schoelkopf and Xiangru Tang and Dragomir Radev and Alham Fikri Aji and Khalid Almubarak and Samuel Albanie and Zaid Alyafeai and Albert Webson and Edward Raff and Colin Raffel}, year={2022}, eprint={2211.01786}, archivePrefix={arXiv}, primaryClass={cs.CL} } ``` ``` @misc{tikhonov2021heads, title={It's All in the Heads: Using Attention Heads as a Baseline for Cross-Lingual Transfer in Commonsense Reasoning}, author={Alexey Tikhonov and Max Ryabinin}, year={2021}, eprint={2106.12066}, archivePrefix={arXiv}, primaryClass={cs.CL} } ```
[ -0.30137041211128235, -0.3507832884788513, 0.6376494765281677, 0.15116895735263824, -0.0962429791688919, -0.005306696053594351, -0.47206029295921326, -0.5495728850364685, 0.3106529712677002, 0.49298861622810364, -0.9051979184150696, -0.5717372894287109, -0.5991659760475159, 0.12920431792736053, 0.2776440680027008, 1.2551065683364868, -0.10146432369947433, 0.022311825305223465, -0.37318673729896545, -0.49427565932273865, -0.20300410687923431, -0.11789372563362122, -0.5322896242141724, -0.31488722562789917, 0.7250446677207947, 0.6998147964477539, 0.7115861773490906, 0.5856063961982727, 0.44653233885765076, 0.32697176933288574, 0.35502567887306213, -0.10378652065992355, -0.5954725742340088, -0.083466537296772, -0.44220995903015137, -0.5525080561637878, -0.485488623380661, -0.16507738828659058, 0.6675342917442322, 0.9380759596824646, 0.06820512562990189, 0.1600283980369568, 0.1148788183927536, 0.5329629778862, -0.4051436483860016, 0.39224448800086975, -0.38719668984413147, 0.03729593753814697, -0.7220988273620605, -0.18836402893066406, -0.1380869299173355, 0.012387133203446865, -0.035014502704143524, -1.0954618453979492, 0.03978864103555679, 0.2972620725631714, 0.9901089668273926, 0.0005710244877263904, -0.2585724890232086, 0.00302986241877079, -0.15029467642307281, 1.115726351737976, -0.6182804107666016, 0.5340619087219238, 0.36089178919792175, 0.3310220539569855, -0.056368373334407806, -0.5646011233329773, -0.38887813687324524, 0.1749134510755539, -0.33947527408599854, 0.37700802087783813, -0.6357284784317017, -0.10275742411613464, 0.47361382842063904, 0.22823667526245117, -1.044396996498108, -0.2874062657356262, -0.5517770051956177, -0.12352915853261948, 0.7385708093643188, 0.19218681752681732, 0.3296836018562317, -0.31126317381858826, -0.3417949080467224, -0.4874674379825592, -0.45997750759124756, 0.05251387879252434, 0.20131529867649078, 0.5086255669593811, -0.6138902306556702, 0.623589813709259, -0.5821630358695984, 0.8191326856613159, 0.007069813087582588, -0.6709910035133362, 0.9862062931060791, -0.5732309818267822, -0.28583014011383057, -0.06286172568798065, 1.095057725906372, 0.5297180414199829, 0.3416638970375061, -0.3351307213306427, 0.21763019263744354, -0.25266435742378235, -0.03480345383286476, -0.28640925884246826, -0.29094767570495605, 0.017604457214474678, -0.5482127070426941, -0.00975790061056614, 0.23919706046581268, -0.741664469242096, 0.00825819093734026, -0.3867587447166443, 0.13142189383506775, -0.10120487958192825, -0.40233054757118225, 0.1890391856431961, -0.2667945921421051, 0.22755621373653412, -0.1727887988090515, -0.5743024349212646, 0.12723010778427124, 0.3674356937408447, 0.7584686279296875, -0.3171008825302124, -0.5152484178543091, -0.16110672056674957, 0.42828598618507385, -0.0005730157718062401, 0.711610734462738, -0.33079129457473755, -0.32301217317581177, -0.17286871373653412, 0.6302297115325928, -0.13922272622585297, -0.2813771963119507, 0.5532366633415222, -0.015421062707901001, 0.5079026222229004, -0.5987769961357117, -0.0045189629308879375, -0.19638341665267944, 0.33716607093811035, -0.5383844971656799, 0.8487014174461365, 0.2203834354877472, -1.0945799350738525, 0.32584476470947266, -0.6379348039627075, -0.5364132523536682, -0.020386992022395134, -0.31287476420402527, -0.5006925463676453, -0.19965125620365143, 0.17356178164482117, 0.5215295553207397, -0.19474372267723083, 0.23267070949077606, -0.7022110223770142, 0.07706674933433533, 0.0005141078727319837, -0.10634776204824448, 1.2686705589294434, 0.25523221492767334, -0.35122057795524597, 0.09481208771467209, -0.9410508275032043, 0.15221744775772095, 0.30804377794265747, 0.016156410798430443, -0.7774648666381836, -0.5557873249053955, 0.23516516387462616, 0.5018077492713928, 0.16279172897338867, -0.9412701725959778, 0.2174094170331955, 0.010321789421141148, -0.00929946918040514, 0.4616866707801819, -0.11519701778888702, 0.17698663473129272, -0.6176925301551819, 0.825326144695282, -0.0946650356054306, 0.07445670664310455, -0.08232326060533524, -0.7429584860801697, -0.4493277966976166, -0.23031535744667053, -0.033825017511844635, 0.5606446266174316, -1.1519458293914795, 0.2594698667526245, -0.6203795075416565, -0.5381637811660767, -0.3926112651824951, 0.013674250803887844, 0.6236190795898438, 0.46625816822052, 0.15320613980293274, -0.10317006707191467, -0.8450754284858704, -1.0661277770996094, -0.2828246057033539, 0.09532083570957184, -0.013315842486917973, 0.38268595933914185, 0.34839892387390137, 0.05743648111820221, 0.9285622239112854, -0.670822024345398, -0.3003283739089966, -0.1465398371219635, 0.10147356986999512, 0.1549299657344818, 0.6904854774475098, 0.5084667205810547, -0.7315787672996521, -0.9324096441268921, 0.3541261851787567, -1.0379258394241333, -0.30852943658828735, -0.2563941776752472, -0.6701595783233643, -0.04244694113731384, 0.5467216372489929, -0.5449934601783752, 0.17395319044589996, 0.7410076856613159, -0.484297513961792, 0.6008262038230896, 0.21891677379608154, 0.361644983291626, -1.1542249917984009, 0.7539204359054565, 0.15999476611614227, -0.7989873886108398, -0.481457382440567, 0.055270008742809296, -0.05104514956474304, 0.010331356897950172, -0.3244065046310425, 0.7239989638328552, -0.7769747376441956, -0.19609510898590088, -0.12917782366275787, 0.33603358268737793, 0.051322996616363525, 0.7527278065681458, 0.04221939668059349, 0.7834519743919373, 0.6578058004379272, -0.10704232007265091, 0.2501734495162964, 0.46350154280662537, -0.4683443307876587, 0.8584134578704834, -0.7984873652458191, -0.11050312221050262, -0.20077641308307648, 0.037993449717760086, -1.0623219013214111, -0.12541189789772034, 0.7854703664779663, -0.6321176290512085, 0.29327183961868286, 0.000915897311642766, -0.327368825674057, -0.22382554411888123, -0.4081967771053314, 0.515526294708252, 0.1083599403500557, -0.15674453973770142, 0.2920866906642914, 0.6572361588478088, -0.668692946434021, -0.66786128282547, -1.0050928592681885, -0.032630905508995056, -0.20001834630966187, -0.49224844574928284, 0.4659096300601959, -0.10379549860954285, -0.1650313287973404, 0.1733674854040146, 0.044288571923971176, 0.24227936565876007, -0.2038777619600296, 0.08727984875440598, 0.35168179869651794, -0.27505651116371155, -0.3277226984500885, 0.1261865496635437, -0.29474958777427673, -0.06362783163785934, -0.09802094846963882, 0.24821357429027557, 0.33256781101226807, -0.15687525272369385, -0.2451169192790985, 0.7324584722518921, 0.4533279538154602, 0.021657191216945648, 0.21201969683170319, 0.6710373163223267, -0.23773087561130524, 0.3746604919433594, -0.18377114832401276, 0.05789947137236595, -0.42513275146484375, 0.618507981300354, -0.6032372713088989, -0.765556275844574, 0.6555920243263245, 0.4338405132293701, 0.270969957113266, 0.5170461535453796, 0.38150274753570557, 0.013315319083631039, 1.3477363586425781, 0.6946667432785034, 0.0041877334006130695, 0.528520405292511, -0.1684526801109314, -0.11410268396139145, -1.1526786088943481, -0.24052448570728302, -0.4912525415420532, -0.25755754113197327, -0.9798464775085449, -0.3445150852203369, 0.32014161348342896, -0.3355039358139038, -0.1927991807460785, 0.352848082780838, -0.2568179965019226, 0.4552207887172699, 0.5786700248718262, 0.06644946336746216, 0.4926929175853729, 0.30460160970687866, -0.14419682323932648, -0.2561551332473755, -0.8039480447769165, -0.007238246034830809, 1.1236391067504883, 0.2458920031785965, 0.9456602931022644, 0.20371213555335999, 0.4411202669143677, 0.007609115447849035, 0.07738878577947617, -0.5720996260643005, 0.3598885238170624, -0.3538336157798767, -0.986531138420105, -0.23546627163887024, -0.6401798725128174, -1.4320015907287598, 0.29252198338508606, -0.005501560401171446, -0.981986403465271, 0.3235465884208679, -0.16952411830425262, -0.44031962752342224, 0.19199667870998383, -0.2222728282213211, 1.0145483016967773, -0.05015825852751732, -0.39865463972091675, -0.019022075459361076, -0.8875488638877869, 0.46025148034095764, 0.36006247997283936, 0.20050987601280212, -0.24757111072540283, 0.06604413688182831, 1.45033860206604, 0.28244954347610474, 0.9092905521392822, -0.34805211424827576, -0.21408386528491974, -0.1513180285692215, -0.3555140793323517, 0.32866260409355164, 0.014252599328756332, 0.5019733309745789, 0.343927264213562, 0.12383932620286942, -0.5964632630348206, -0.2261567860841751, 0.8793805241584778, -0.7886276841163635, -0.4477241039276123, -0.7321501970291138, -0.8747180700302124, -0.45062026381492615, 0.7882363200187683, 0.35249608755111694, 0.43521079421043396, 0.04895138368010521, 0.3592047095298767, 0.478489488363266, 0.08225606381893158, 0.18424253165721893, 0.535667359828949, -0.408310204744339, -0.5877313017845154, 0.8355606198310852, 0.34103330969810486, 0.29505452513694763, 0.32991495728492737, 0.061352454125881195, -0.28658953309059143, -0.14754559099674225, -0.4138336181640625, 0.7354580163955688, -0.7383012175559998, -0.24186116456985474, -0.7882022261619568, 0.15957577526569366, -0.5582046508789062, -0.04798002168536186, -0.2972884476184845, -0.2857081890106201, 0.10084927082061768, 0.1404840499162674, 0.07702454179525375, 0.4988342821598053, -0.2834613621234894, 0.4542519450187683, -0.6989906430244446, 0.48475876450538635, 0.0012348691234365106, 0.37084251642227173, -0.0806073322892189, -0.2686035633087158, -0.6838214993476868, 0.24499359726905823, -0.29181012511253357, -0.6231380105018616, 0.25660812854766846, 0.03796703368425369, 1.2286053895950317, 0.334248423576355, 0.030829139053821564, 0.8178740739822388, -0.1621275693178177, 0.577237606048584, 0.4213263988494873, -0.7211194038391113, 0.0527578666806221, -0.6672833561897278, 0.9087437391281128, 0.873338520526886, 0.7498520612716675, -0.9267227053642273, -0.574195146560669, -0.8685007095336914, -0.7512547373771667, 1.0401264429092407, -0.10152643918991089, -0.26636603474617004, 0.27111151814460754, -0.08820869773626328, 0.5281461477279663, 0.12802189588546753, -0.7260914444923401, -0.6698619723320007, -0.011467764154076576, -0.5645513534545898, -0.2732889950275421, 0.13211289048194885, -0.4014182984828949, -0.32487985491752625, 0.820935845375061, -0.46124911308288574, 0.4840911328792572, 0.17491759359836578, -0.16695399582386017, -0.10707459598779678, -0.029978236183524132, 0.7773653268814087, 0.9125597476959229, -0.1064620316028595, -0.035456519573926926, -0.20305204391479492, -0.4336095452308655, -0.07008901238441467, 0.10537322610616684, -0.07841809093952179, 0.13876178860664368, 0.4359780550003052, 1.0204485654830933, 0.4276083707809448, -0.4772278368473053, 0.4988756775856018, 0.11439520865678787, -0.37203070521354675, -0.344577819108963, -0.22693337500095367, 0.01558432076126337, 0.34739211201667786, 0.4257012605667114, 0.14688904583454132, 0.22145503759384155, -0.4694227874279022, 0.2222466766834259, 0.42782434821128845, -0.19915631413459778, -0.4662667512893677, 0.4392472207546234, -0.02734624408185482, 0.4492539167404175, 0.27364110946655273, -0.3906022906303406, -0.40758469700813293, 0.23134319484233856, 0.7520751953125, 0.760498046875, 0.16806095838546753, 0.04629794508218765, 0.6718388795852661, 0.0487433522939682, 0.0476655513048172, 0.5665687322616577, -0.27597326040267944, -0.8726755976676941, -0.5458335876464844, -0.021768048405647278, -0.23584872484207153, 0.17248301208019257, -1.0521105527877808, 0.1701841652393341, -0.1540331393480301, -0.11264345049858093, 0.11873282492160797, 0.1908475011587143, -0.7128574848175049, 0.1985667198896408, 0.44891124963760376, 0.6528427004814148, -1.157007098197937, 1.01674222946167, 0.8761133551597595, -0.31712353229522705, -0.32771775126457214, 0.004486297257244587, 0.20720063149929047, -1.1656252145767212, 0.1891394406557083, -0.00429484061896801, -0.12055973708629608, 0.04522637277841568, -0.45810645818710327, -1.3240993022918701, 1.0750311613082886, 0.13768260180950165, -0.7759570479393005, -0.17515549063682556, -0.02400961145758629, 0.0494091771543026, -0.13249512016773224, 0.23032568395137787, 0.5896615982055664, 0.759966254234314, -0.11881837248802185, -1.0508248805999756, 0.14868032932281494, -0.6695986986160278, -0.025346174836158752, 0.03052625246345997, -0.8801983594894409, 0.8467719554901123, -0.09859268367290497, -0.49517953395843506, -0.08789592236280441, 0.6647741198539734, 0.5747273564338684, 0.3740347921848297, 0.5300676822662354, 0.5996114611625671, 0.69855797290802, -0.029246952384710312, 0.9982007145881653, -0.13486291468143463, 0.5024195909500122, 1.3522640466690063, -0.07549498975276947, 0.45354241132736206, 0.8070049285888672, -0.6055408120155334, 0.6840341687202454, 0.1853928118944168, -0.05051439628005028, 0.8034383058547974, -0.22895190119743347, 0.4829486608505249, -0.16072674095630646, 0.008756696246564388, -0.5262295007705688, 0.5153084397315979, 0.09248767793178558, -0.1049630418419838, -0.3071322739124298, 0.7164291739463806, 0.7874171137809753, -0.20866599678993225, -0.20732901990413666, 0.7461082339286804, 0.05641031637787819, -0.7030088305473328, 0.6219441890716553, -0.12043120712041855, 1.2663718461990356, -0.8510349988937378, 0.35919424891471863, -0.09774477779865265, 0.19834540784358978, -0.18957263231277466, -1.2931303977966309, 0.3456229269504547, -0.06196046620607376, -0.49975383281707764, -0.11785022914409637, 0.47742706537246704, -0.7545904517173767, -0.647099494934082, 0.3164050281047821, 0.44419947266578674, 0.3357444107532501, 0.18321017920970917, -0.9727458953857422, 0.15428118407726288, 0.46072790026664734, -0.376690536737442, 0.4261653423309326, 0.20417478680610657, -0.17790570855140686, 0.44547542929649353, 0.5582831501960754, 0.2791629731655121, 0.16645242273807526, -0.020960425958037376, 0.5815496444702148, -0.8372268080711365, -0.8158329129219055, -0.5024757385253906, 0.6731687784194946, -0.37497061491012573, -0.7122703790664673, 1.2309497594833374, 0.4895974397659302, 1.3713887929916382, -0.12055894732475281, 1.2079057693481445, -0.4417276382446289, 0.7151231169700623, -0.4640507698059082, 0.6942121386528015, -0.9970313906669617, -0.5744431614875793, -0.33915552496910095, -0.7019612789154053, -0.5063671469688416, 0.7012211680412292, -0.07255534082651138, 0.2880411744117737, 0.7007918357849121, 0.7072262167930603, -0.36514827609062195, -0.35395359992980957, 0.4676743447780609, 0.21007315814495087, 0.12515178322792053, 0.8345710635185242, 0.35881146788597107, -0.587573230266571, 0.4488004446029663, -0.7478076219558716, -0.2594589591026306, -0.20600710809230804, -0.8088526129722595, -0.5728722214698792, -0.7515543103218079, -0.7211095690727234, -0.19037185609340668, 0.025534585118293762, 0.9742113351821899, 0.7463529706001282, -1.006116271018982, -0.4093038737773895, 0.24240024387836456, -0.1845700442790985, -0.46825549006462097, -0.253628671169281, 0.16200494766235352, -0.1282157003879547, -0.8733096122741699, 0.2749582827091217, -0.05776780843734741, -0.0829150453209877, -0.2909391522407532, -0.08774978667497635, -0.4014345407485962, -0.35042133927345276, 0.3899855315685272, 0.5843740105628967, -0.542230486869812, -0.1099419891834259, 0.06073616445064545, -0.3175758719444275, 0.36526620388031006, 0.5719610452651978, -0.5137348771095276, 0.4452255368232727, 0.8925182223320007, 0.14455126225948334, 0.38343390822410583, -0.13382016122341156, 0.4213680326938629, -0.9348734617233276, 0.26909223198890686, -0.23587101697921753, 0.6207531094551086, 0.6032522320747375, -0.1904253214597702, 0.19896340370178223, 0.38629570603370667, -0.4812833368778229, -0.8213655948638916, -0.2515665590763092, -1.4037587642669678, -0.24643933773040771, 1.3265788555145264, -0.43069037795066833, -0.49267640709877014, -0.39146023988723755, -0.25476595759391785, 0.3367248475551605, -0.35464921593666077, 0.3382624387741089, 0.7397320866584778, 0.00763658806681633, -0.47028297185897827, -0.5302637219429016, 0.37689459323883057, 0.2858875095844269, -0.8557146191596985, 0.29115724563598633, 0.09376408904790878, 0.47559577226638794, 0.4335463047027588, 0.6448125243186951, -0.3762475252151489, 0.4052741825580597, 0.14423567056655884, 0.387226939201355, -0.07861795276403427, -0.36093956232070923, -0.1789126843214035, -0.104180246591568, -0.15264445543289185, -0.5045802593231201 ]
null
null
null
null
null
null
null
null
null
null
null
null
null
iapp_wiki_qa_squad
null
2022-11-18T20:08:21Z
448
2
null
[ "task_categories:question-answering", "task_ids:extractive-qa", "task_ids:open-domain-qa", "annotations_creators:expert-generated", "language_creators:found", "multilinguality:monolingual", "size_categories:1K<n<10K", "source_datasets:extended|other-iapp-wiki-qa-dataset", "language:th", "license:mit", "region:us" ]
2022-11-18T20:08:21Z
2022-03-02T23:29:22.000Z
2022-03-02T23:29:22
--- annotations_creators: - expert-generated language_creators: - found language: - th license: - mit multilinguality: - monolingual size_categories: - 1K<n<10K source_datasets: - extended|other-iapp-wiki-qa-dataset task_categories: - question-answering task_ids: - extractive-qa - open-domain-qa paperswithcode_id: null pretty_name: IappWikiQaSquad dataset_info: features: - name: question_id dtype: string - name: article_id dtype: string - name: title dtype: string - name: context dtype: string - name: question dtype: string - name: answers sequence: - name: text dtype: string - name: answer_start dtype: int32 - name: answer_end dtype: int32 config_name: iapp_wiki_qa_squad splits: - name: train num_bytes: 16107541 num_examples: 5761 - name: validation num_bytes: 2120768 num_examples: 742 - name: test num_bytes: 2032016 num_examples: 739 download_size: 2876630 dataset_size: 20260325 --- # Dataset Card for `iapp_wiki_qa_squad` ## 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/iapp-technology/iapp-wiki-qa-dataset - **Repository:** https://github.com/iapp-technology/iapp-wiki-qa-dataset - **Paper:** - **Leaderboard:** - **Point of Contact:** https://github.com/iapp-technology/iapp-wiki-qa-dataset ### Dataset Summary `iapp_wiki_qa_squad` is an extractive question answering dataset from Thai Wikipedia articles. It is adapted from [the original iapp-wiki-qa-dataset](https://github.com/iapp-technology/iapp-wiki-qa-dataset) to [SQuAD](https://rajpurkar.github.io/SQuAD-explorer/) format, resulting in 5761/742/739 questions from 1529/191/192 articles. ### Supported Tasks and Leaderboards extractive question answering ### Languages Thai ## Dataset Structure ### Data Instances An example from the dataset: ``` {'article_id': '0U2lA8nJQESIxbZrjZQc', 'question_id': '0U2lA8nJQESIxbZrjZQc_000', 'context': 'นายสุวัฒน์ วรรณศิริกุล (1 พฤศจิกายน พ.ศ. 2476 - 31 กรกฎาคม พ.ศ. 2555) อดีตรองหัวหน้าพรรคพลังประชาชน อดีตประธานสมาชิกสภาผู้แทนราษฎร และประธานภาคกรุงเทพมหานคร พรรคพลังประชาชน อดีตสมาชิกสภาผู้แทนราษฎรกรุงเทพมหานครหลายสมัย ได้รับการเลือกตั้งเป็นสมาชิกสภาผู้แทนราษฎรครั้งแรกในปี พ.ศ. 2529 ในสังกัดพรรคประชากรไทย และสังกัดพรรคพลังประชาชน เป็นพรรคสุดท้าย', 'question': 'สุวัฒน์ วรรณศิริกุล เกิดวันที่เท่าไร', 'answers': {'text': ['1 พฤศจิกายน พ.ศ. 2476'], 'answer_start': [24], 'answer_end': [45]}, 'title': 'สุวัฒน์ วรรณศิริกุล', 'created_by': 'gmnjGRF0y0g7QRZDd9Qgz3AgiHJ3', 'created_on': '2019-08-18 05:05:51.358000+00:00', 'is_pay': {'date': None, 'status': False}} {'article_id': '01KZTrxgvC5mOovXFMPJ', 'question_id': '01KZTrxgvC5mOovXFMPJ_000', 'context': 'พัทธ์ธีรา ศรุติพงศ์โภคิน (เกิด 3 ธันวาคม พ.ศ. 2533) หรือชื่อเล่นว่า อร เป็นนักแสดงหญิงชาวไทย สำเร็จมัธยมศึกษาจากCatholic Cathedral College ประเทศนิวซีแลนด์ และปริญญาตรีจากRaffles International College สาขา Business Marketing\n\nเข้าสู่วงการตั้งแต่อายุ 6 ขวบ จากการแสดงละครเวทีกับ ครูชลประคัลภ์ จันทร์เรือง จากนั้นก็เล่นโฆษณาในวัยเด็ก 2- 3 ชิ้น และยังเคยแสดงช่วงละครสั้น ในรายการซุปเปอร์จิ๋ว ประมาณปี 2542\n\nปัจจุบันเป็นทั้ง นักแสดง , พิธีกร และ วีเจ อยู่ที่คลื่น เก็ท 102.5 Bangkok International Hits Music Station และยังเป็นพิธีกรให้กับช่อง ทรู มิวสิก', 'question': 'พัทธ์ธีรา ศรุติพงศ์โภคิน เกิดวันที่เท่าไร', 'answers': {'text': ['3 ธันวาคม พ.ศ. 2533'], 'answer_start': [31], 'answer_end': [50]}, 'title': 'พัทธ์ธีรา ศรุติพงศ์โภคิน', 'created_by': 'gmnjGRF0y0g7QRZDd9Qgz3AgiHJ3', 'created_on': '2019-08-07 14:00:38.778000+00:00', 'is_pay': {'status': True, 'total': 2.5, 'date': '2019-08-13 10:47:28.095000+00:00'}} ``` ### Data Fields ``` { "question_id": question id "article_id": article id "title": article title "context": article texts "question": question "answers": { "text": answer text "answer_start": answer beginning position "answer_end": answer exclusive upper bound position } ), } ``` ### Data Splits | | train | valid | test | |-------------|-------|-------|------| | # questions | 5761 | 742 | 739 | | # articles | 1529 | 191 | 192 | ## Dataset Creation ### Curation Rationale [More Information Needed] ### Source Data #### Initial Data Collection and Normalization From the original `iapp-wiki-qa-dataset`, [@cstorm125](https://github.com/cstorm125/) applied the following processing: - Select questions with one, non-empty answer - Select questions whose answers match `textDetection` fields - Select questions whose answers are 100-character long or shorter - 80/10/10 train-validation-split at article level #### Who are the source language producers? Wikipedia authors for contexts and annotators hired by [iApp](https://iapp.co.th/) for questions and answer annotations ### Annotations #### Annotation process Annotators hired by [iApp](https://iapp.co.th/) are asked create questions and answers for each article. #### Who are the annotators? Annotators hired by [iApp](https://iapp.co.th/) ### Personal and Sensitive Information All contents are from Wikipedia. No personal and sensitive information is expected to be included. ## Considerations for Using the Data ### Social Impact of Dataset - open-domain, extractive question answering in Thai ### Discussion of Biases [More Information Needed] ### Other Known Limitations [More Information Needed] ## Additional Information ### Dataset Curators Original dataset by [iApp](https://iapp.co.th/). SQuAD formattting by [PyThaiNLP](https://github.com/PyThaiNLP/). ### Licensing Information MIT ### Citation Information ``` @dataset{kobkrit_viriyayudhakorn_2021_4539916, author = {Kobkrit Viriyayudhakorn and Charin Polpanumas}, title = {iapp\_wiki\_qa\_squad}, month = feb, year = 2021, publisher = {Zenodo}, version = 1, doi = {10.5281/zenodo.4539916}, url = {https://doi.org/10.5281/zenodo.4539916} } ``` ### Contributions Thanks to [@cstorm125](https://github.com/cstorm125) for adding this dataset.
[ -0.63695228099823, -0.6499950289726257, 0.10499926656484604, 0.27940860390663147, -0.16291393339633942, -0.0917619913816452, -0.10099708288908005, -0.3144785463809967, 0.5751851201057434, 0.29884421825408936, -0.774041473865509, -0.6408040523529053, -0.3257662057876587, 0.3656572699546814, -0.29229357838630676, 1.0915138721466064, -0.02284690923988819, -0.07009747624397278, -0.23901447653770447, -0.2655116021633148, -0.16678689420223236, -0.3084813058376312, -0.6277589201927185, -0.04214600846171379, 0.2247433215379715, 0.7513346672058105, 0.5306825637817383, 0.6200478672981262, 0.5068384408950806, 0.2529306411743164, 0.027591519057750702, 0.2030380517244339, -0.2768935263156891, -0.07664597779512405, 0.036177780479192734, -0.4594905376434326, -0.5049615502357483, 0.08012092113494873, 0.5196661949157715, 0.566554069519043, 0.009236271493136883, 0.5390903949737549, 0.02376418747007847, 0.7986842393875122, -0.45473313331604004, 0.3809565603733063, -0.4370928108692169, -0.012683331035077572, 0.017474886029958725, -0.1981416791677475, -0.038167163729667664, -0.5921983122825623, -0.004572683945298195, -0.8325262069702148, 0.051045410335063934, -0.1603386402130127, 1.303667426109314, -0.010487357154488564, -0.36610567569732666, -0.2133866250514984, -0.47152286767959595, 0.5994955897331238, -0.7311193346977234, 0.059019945561885834, 0.7503460645675659, 0.397714763879776, 0.058102287352085114, -0.5767943263053894, -0.9921562671661377, 0.29386430978775024, -0.3178376257419586, 0.4579311013221741, -0.0740579292178154, -0.28252872824668884, 0.11065303534269333, 0.26417869329452515, -0.5956409573554993, -0.07444926351308823, -0.6460154056549072, -0.05843053758144379, 1.0827293395996094, 0.17120802402496338, 0.3754429817199707, -0.5484474301338196, -0.342225044965744, -0.33111608028411865, -0.4181176424026489, 0.5512880086898804, 0.3663537800312042, 0.2558530867099762, -0.640079140663147, 0.829637885093689, -0.6503981351852417, 0.22842195630073547, 0.2217070758342743, -0.1274425983428955, 0.5427234768867493, -0.7511751055717468, 0.002650089329108596, -0.16164430975914001, 1.2080711126327515, 0.6545032858848572, 0.2891010642051697, 0.17401112616062164, 0.14977315068244934, -0.29758697748184204, -0.15456822514533997, -0.7078367471694946, -0.30406489968299866, 0.6680750846862793, -0.3960498869419098, -0.34303173422813416, 0.3942747116088867, -1.0836318731307983, -0.0871560350060463, -0.008618754334747791, 0.19231247901916504, -0.2526220679283142, -0.5082932710647583, -0.005174402147531509, -0.22416643798351288, 0.5753496289253235, 0.24127063155174255, -0.5992431044578552, 0.20645096898078918, 0.2878594696521759, 0.6126450300216675, 0.01512987446039915, -0.21855871379375458, -0.07717481255531311, 0.24207617342472076, -0.14777465164661407, 1.0408029556274414, -0.25249046087265015, -0.4505631923675537, 0.048334088176488876, 0.35540080070495605, -0.21798667311668396, -0.4104628264904022, 0.6248674392700195, -0.33178073167800903, 0.5697011947631836, -0.6904037594795227, -0.3881908655166626, -0.03999800607562065, 0.5501363277435303, -0.5971618294715881, 1.2034116983413696, 0.1357594132423401, -0.9418185949325562, 0.48100918531417847, -0.7989212870597839, -0.2558138072490692, 0.0972776859998703, -0.29367801547050476, -0.5291101932525635, -0.5586980581283569, 0.5337420701980591, 0.4685424566268921, -0.41248196363449097, 0.050491735339164734, -0.3716508150100708, -0.1622621715068817, 0.4661200940608978, -0.09961969405412674, 1.3877830505371094, 0.18493503332138062, -0.3091468811035156, 0.008988914079964161, -0.9901238083839417, 0.2038266807794571, 0.2715398967266083, -0.461117148399353, -0.0252512376755476, -0.22172272205352783, 0.014639350585639477, 0.540317952632904, 0.31917279958724976, -0.6166546940803528, 0.2375037968158722, -0.3141782283782959, 0.35494011640548706, 0.7905531525611877, 0.3372732102870941, 0.3580750524997711, -0.6380415558815002, 0.7076824903488159, 0.19104494154453278, 0.2907697260379791, 0.01984250545501709, -0.6243756413459778, -0.7590183019638062, -0.2713775038719177, 0.16327284276485443, 0.7737098932266235, -0.7653670310974121, 0.8526246547698975, -0.4967954754829407, -0.7444684505462646, -0.7609096765518188, 0.036196596920490265, 0.19536051154136658, 0.6849961280822754, 0.40336793661117554, 0.08082131296396255, -0.7163458466529846, -1.042838215827942, 0.10260460525751114, -0.5372900366783142, 0.05747631564736366, 0.5453009009361267, 0.7854869365692139, 0.08186012506484985, 1.0534725189208984, -0.7364541292190552, -0.28777915239334106, -0.41135770082473755, -0.24365921318531036, 0.18855781853199005, 0.6966435313224792, 0.5328496098518372, -1.0963218212127686, -0.8620288968086243, -0.22935457527637482, -0.801554799079895, -0.026343531906604767, 0.05556189641356468, -0.2850201427936554, 0.11731547862291336, 0.3396664559841156, -0.9241333603858948, 0.4996952414512634, 0.12245064228773117, -0.5948553085327148, 0.6037977337837219, -0.005625071935355663, 0.6009467244148254, -1.2623028755187988, 0.3353511095046997, -0.10424864292144775, 0.17560534179210663, -0.5017507672309875, -0.09308483451604843, 0.04102625697851181, -0.08545934408903122, -0.41581103205680847, 0.5862461924552917, -0.24742016196250916, 0.17844916880130768, 0.18318335711956024, 0.11467273533344269, 0.10650729387998581, 0.602353572845459, -0.21518804132938385, 1.02134370803833, 0.4162900447845459, -0.5718111395835876, 0.2248232066631317, 0.5824156999588013, -0.28520718216896057, 0.5465359091758728, -0.8592974543571472, -0.06975957006216049, -0.2258405238389969, 0.2510216534137726, -1.2888849973678589, -0.42838844656944275, 0.48614415526390076, -0.8319801688194275, -0.08794670552015305, -0.03030242957174778, -0.7573310732841492, -0.46587562561035156, -0.6608478426933289, 0.2858140170574188, 0.37846776843070984, -0.17640434205532074, 0.3268246352672577, 0.5082048177719116, 0.011202636174857616, -0.5961249470710754, -0.7561268210411072, -0.3183518350124359, -0.2448662519454956, -0.6607130765914917, 0.2856518626213074, -0.34107133746147156, -0.2516452670097351, 0.21525488793849945, 0.08795157819986343, -0.41876912117004395, 0.03262541815638542, 0.08975838124752045, 0.1682209074497223, -0.14049138128757477, 0.14353619515895844, 0.0030938037671148777, 0.08474661409854889, 0.009482174180448055, 0.18455770611763, 0.6701266169548035, -0.07141947001218796, -0.055496927350759506, -0.7007701396942139, 0.5558265447616577, 0.6832144856452942, -0.49747440218925476, 1.0135396718978882, 0.6313460469245911, -0.3064476251602173, 0.35363003611564636, -0.523099422454834, -0.0990213081240654, -0.44222909212112427, 0.3240107595920563, -0.4104500114917755, -0.6020461916923523, 0.9547471404075623, 0.4125725328922272, 0.05154292657971382, 1.0459316968917847, 0.39471110701560974, -0.4370788037776947, 1.0499314069747925, 0.3162601888179779, -0.07772113382816315, 0.40246301889419556, -0.6641213893890381, 0.0070473551750183105, -0.6495285034179688, -0.735745906829834, -0.7966515421867371, -0.3340916633605957, -0.7863860130310059, -0.2261306494474411, 0.44951945543289185, 0.11918986588716507, -0.35642459988594055, 0.16366063058376312, -0.5785514116287231, 0.2453678697347641, 0.48524394631385803, 0.3773881196975708, 0.17661592364311218, -0.22378407418727875, 0.1955220103263855, 0.05786857008934021, -0.6953746676445007, -0.3322533965110779, 1.3700354099273682, 0.0555548332631588, 0.23600837588310242, 0.13684962689876556, 0.6909264922142029, 0.22301717102527618, 0.03721378743648529, -0.4472755193710327, 0.7618411183357239, 0.1138380616903305, -0.8857575058937073, -0.43120795488357544, -0.396308571100235, -1.1955169439315796, 0.03550073876976967, -0.46936699748039246, -0.7033051252365112, 0.4876849055290222, -0.14310093224048615, -0.3524447977542877, 0.14959590137004852, -0.640281081199646, 0.8477423787117004, -0.03210468590259552, -0.20524869859218597, 0.023791814222931862, -0.8041011095046997, 0.23717723786830902, 0.22696733474731445, 0.34596872329711914, -0.2447989284992218, -0.3189391791820526, 1.0542182922363281, -0.6802563667297363, 0.6013046503067017, -0.31688255071640015, 0.15825578570365906, 0.5288403630256653, -0.46094292402267456, 0.4308842122554779, 0.3656487464904785, -0.12515248358249664, -0.05949023738503456, 0.24637417495250702, -0.7231552600860596, -0.546859860420227, 0.6504259705543518, -1.0470869541168213, -0.48351550102233887, -0.3471957743167877, -0.5372346043586731, -0.08030744642019272, 0.344102144241333, 0.4522780776023865, 0.12432251125574112, 0.21092644333839417, 0.4085206389427185, 0.7398027777671814, -0.2157064527273178, 0.3736291527748108, 0.5167944431304932, -0.05705580860376358, -0.6452754735946655, 0.4236883521080017, 0.43315213918685913, 0.0768662691116333, 0.44788074493408203, 0.07896437495946884, -0.3356829583644867, -0.4412956237792969, -0.3886845111846924, 0.2378101497888565, -0.6100968718528748, -0.381725013256073, -0.8885912895202637, -0.26873305439949036, -0.9263213276863098, 0.03955638408660889, -0.24581043422222137, -0.6688425540924072, -0.27055031061172485, -0.3148843050003052, 0.6770544648170471, 0.2625638246536255, 0.012892713770270348, 0.1256083846092224, -0.48131853342056274, 0.4648299515247345, 0.32470959424972534, 0.24351364374160767, -0.21198242902755737, -0.3020169734954834, -0.33694887161254883, 0.28823062777519226, -0.16105766594409943, -1.1199554204940796, 0.26402196288108826, 0.1684969961643219, 0.44167187809944153, 0.1089264303445816, 0.2722153961658478, 0.8432759642601013, 0.11796973645687103, 1.0576813220977783, -0.0376114584505558, -0.4117438793182373, 0.9628360271453857, -0.4906846880912781, 0.5465970039367676, 1.0416011810302734, 0.5574238300323486, -0.31139931082725525, -0.4042761027812958, -0.8618863821029663, -1.117096185684204, 0.6584050059318542, 0.28298136591911316, 0.1269715130329132, -0.1952168047428131, 0.3710220754146576, -0.08453600108623505, 0.31325238943099976, -0.9163407683372498, -0.7232685089111328, -0.13122256100177765, -0.30737602710723877, 0.23185934126377106, -0.13445790112018585, -0.14930501580238342, -0.6402342319488525, 0.8173061013221741, 0.06052250415086746, 0.3410492539405823, 0.6355924010276794, 0.12405592203140259, 0.01794295571744442, 0.38319820165634155, 0.4156133532524109, 0.6521939039230347, -0.31179434061050415, -0.2770718038082123, -0.0009693120373412967, -0.6133661866188049, 0.11703499406576157, 0.3289574086666107, -0.5577027797698975, -0.04417889937758446, 0.24872662127017975, 0.33145055174827576, 0.04514766484498978, -0.7506883144378662, 0.7144613265991211, -0.12068337947130203, -0.32910633087158203, -0.6514597535133362, -0.024868331849575043, -0.11333977431058884, 0.21260081231594086, 0.6824555993080139, -0.10862042009830475, 0.0397719070315361, -0.576326847076416, 0.13157548010349274, 0.2656530439853668, -0.20256520807743073, -0.1009017825126648, 0.677947998046875, -0.0739859864115715, -0.1949906349182129, 0.5538389086723328, -0.26701968908309937, -0.4245712161064148, 0.8475934267044067, 0.2029029279947281, 0.6770427823066711, 0.01638173684477806, 0.3717104494571686, 0.7060168385505676, 0.39190614223480225, 0.17772236466407776, 0.7371610999107361, -0.07157271355390549, -0.7053877115249634, -0.15927186608314514, -0.4264177680015564, 0.03619196638464928, 0.384823203086853, -0.7868353724479675, 0.3516646921634674, -0.5448436141014099, -0.06974347680807114, -0.09354507923126221, 0.4123486280441284, -0.8454126715660095, 0.28645965456962585, -0.5444860458374023, 1.0184226036071777, -0.8969517350196838, 0.6688997149467468, 1.0239331722259521, -0.9994191527366638, -1.0543856620788574, -0.02928837388753891, -0.1725246161222458, -0.6270962953567505, 0.4414762854576111, -0.008377598598599434, 0.5235844254493713, -0.07119621336460114, -0.6836265921592712, -0.9398882985115051, 1.3796989917755127, 0.19033078849315643, 0.02712826244533062, -0.04640305042266846, 0.3829464912414551, 0.6014485359191895, -0.2960408627986908, 0.3968075215816498, 0.4985171854496002, 0.497347354888916, -0.17625974118709564, -0.8766316175460815, 0.16652002930641174, -0.7969117760658264, -0.39483124017715454, -0.11415570229291916, -0.9862865209579468, 0.7909747958183289, 0.018649237230420113, -0.06044519320130348, -0.06925950944423676, 0.6742749810218811, 0.46166297793388367, 0.39136433601379395, 0.4158291816711426, 0.6019765734672546, 0.6157528758049011, -0.18500545620918274, 1.0486235618591309, -0.3751713037490845, 0.37172484397888184, 0.9175854325294495, 0.1379581093788147, 0.896884024143219, 0.5645512938499451, -0.48750823736190796, 0.5719939470291138, 0.595401406288147, -0.12552711367607117, 0.611553430557251, -0.16422025859355927, -0.0008322370704263449, 0.0142827732488513, -0.17744886875152588, -0.5365867614746094, 0.5754907131195068, 0.07001739740371704, -0.24798637628555298, 0.05919286981225014, -0.015362787991762161, 0.1897565871477127, 0.21667496860027313, -0.2890569567680359, 0.9477887153625488, -0.36716073751449585, -0.7389594912528992, 0.6246834397315979, -0.17745964229106903, 0.7374289035797119, -0.6341868042945862, -0.014681120403110981, -0.4222550094127655, -0.1178658977150917, -0.4249368906021118, -1.0795003175735474, 0.27956274151802063, -0.038863714784383774, -0.5287445187568665, -0.04755649343132973, 0.5578936338424683, -0.5648804306983948, -0.6894019246101379, -0.11008727550506592, 0.5129218101501465, 0.1504400074481964, 0.18078108131885529, -1.0143623352050781, -0.1124126985669136, 0.12912270426750183, -0.30936625599861145, 0.23939095437526703, 0.4732713997364044, 0.2049836963415146, 0.7406023144721985, 0.5146278142929077, 0.15497633814811707, 0.13669173419475555, -0.31545311212539673, 0.880311906337738, -0.5214001536369324, -0.6794008016586304, -0.5916045904159546, 0.90059894323349, -0.5360957980155945, -0.6672198176383972, 0.922652006149292, 0.9670615196228027, 1.0236364603042603, 0.026053739711642265, 0.8362817764282227, -0.5198878645896912, 0.6538617610931396, -0.26156359910964966, 0.9383013248443604, -0.7191497683525085, 0.28582286834716797, -0.2306467890739441, -0.5275465846061707, -0.05813859775662422, 0.5421649217605591, -0.28660818934440613, 0.10854832828044891, 0.5314821600914001, 0.7654402256011963, 0.11248990148305893, -0.009694977663457394, -0.2450450360774994, 0.24765892326831818, 0.2816486358642578, 0.5716604590415955, 0.2261318862438202, -0.924950897693634, 0.9220014810562134, -0.7808114886283875, -0.15679414570331573, -0.02614695392549038, -0.3760143220424652, -0.6936203837394714, -0.9631350636482239, -0.6035259962081909, -0.5243619084358215, -0.1069512590765953, 0.997786283493042, 0.6054677963256836, -0.8642329573631287, -0.24681046605110168, 0.09114778786897659, 0.1558903604745865, -0.2774769365787506, -0.4105852544307709, 0.767261803150177, -0.008036219514906406, -0.673651397228241, -0.1444101333618164, -0.059431374073028564, 0.07251046597957611, 0.11603500694036484, -0.0014322971692308784, -0.7625921368598938, -0.06750302761793137, 0.5039210319519043, 0.47383740544319153, -0.47902485728263855, -0.2513422667980194, 0.20404298603534698, -0.13293585181236267, 0.3448646664619446, 0.25137171149253845, -0.6194113492965698, 0.3087961971759796, 0.6459628939628601, 0.4550275206565857, 0.4806672930717468, -0.05590322986245155, 0.3007376492023468, -0.6236196756362915, 0.24242356419563293, 0.21923308074474335, 0.2698395848274231, 0.2175968438386917, -0.5224360227584839, 0.7088960409164429, 0.2669311463832855, -0.472568541765213, -0.9777573943138123, -0.2151314914226532, -1.242675542831421, -0.011005078442394733, 1.2723140716552734, -0.13928326964378357, -0.24083568155765533, -0.08205481618642807, -0.25916582345962524, 0.3802717328071594, -0.5049425959587097, 0.9372919201850891, 0.7094705700874329, -0.13542978465557098, -0.27307915687561035, -0.4681117534637451, 0.4978370666503906, 0.2342924326658249, -1.2852895259857178, -0.1916227638721466, 0.19241607189178467, 0.2551073133945465, 0.004340280778706074, 0.9485889673233032, -0.33278629183769226, 0.45811891555786133, -0.20693448185920715, -0.15643210709095, 0.005803381092846394, 0.11026479303836823, -0.01909760944545269, 0.29343247413635254, -0.20044293999671936, -0.35501575469970703 ]
null
null
null
null
null
null
null
null
null
null
null
null
null
BeIR/beir-corpus
BeIR
2022-10-21T15:30:07Z
448
4
beir
[ "task_categories:text-retrieval", "task_ids:entity-linking-retrieval", "task_ids:fact-checking-retrieval", "multilinguality:monolingual", "language:en", "license:cc-by-sa-4.0", "region:us" ]
2022-10-21T15:30:07Z
2022-03-02T23:29:22.000Z
2022-03-02T23:29:22
--- annotations_creators: [] language_creators: [] language: - en license: - cc-by-sa-4.0 multilinguality: - monolingual paperswithcode_id: beir pretty_name: BEIR Benchmark size_categories: msmarco: - 1M<n<10M trec-covid: - 100k<n<1M nfcorpus: - 1K<n<10K nq: - 1M<n<10M hotpotqa: - 1M<n<10M fiqa: - 10K<n<100K arguana: - 1K<n<10K touche-2020: - 100K<n<1M cqadupstack: - 100K<n<1M quora: - 100K<n<1M dbpedia: - 1M<n<10M scidocs: - 10K<n<100K fever: - 1M<n<10M climate-fever: - 1M<n<10M scifact: - 1K<n<10K source_datasets: [] task_categories: - text-retrieval - zero-shot-retrieval - information-retrieval - zero-shot-information-retrieval task_ids: - passage-retrieval - entity-linking-retrieval - fact-checking-retrieval - tweet-retrieval - citation-prediction-retrieval - duplication-question-retrieval - argument-retrieval - news-retrieval - biomedical-information-retrieval - question-answering-retrieval --- # Dataset Card for BEIR Benchmark ## Table of Contents - [Dataset Description](#dataset-description) - [Dataset Summary](#dataset-summary) - [Supported Tasks and Leaderboards](#supported-tasks-and-leaderboards) - [Languages](#languages) - [Dataset Structure](#dataset-structure) - [Data Instances](#data-instances) - [Data Fields](#data-fields) - [Data Splits](#data-splits) - [Dataset Creation](#dataset-creation) - [Curation Rationale](#curation-rationale) - [Source Data](#source-data) - [Annotations](#annotations) - [Personal and Sensitive Information](#personal-and-sensitive-information) - [Considerations for Using the Data](#considerations-for-using-the-data) - [Social Impact of Dataset](#social-impact-of-dataset) - [Discussion of Biases](#discussion-of-biases) - [Other Known Limitations](#other-known-limitations) - [Additional Information](#additional-information) - [Dataset Curators](#dataset-curators) - [Licensing Information](#licensing-information) - [Citation Information](#citation-information) - [Contributions](#contributions) ## Dataset Description - **Homepage:** https://github.com/UKPLab/beir - **Repository:** https://github.com/UKPLab/beir - **Paper:** https://openreview.net/forum?id=wCu6T5xFjeJ - **Leaderboard:** https://docs.google.com/spreadsheets/d/1L8aACyPaXrL8iEelJLGqlMqXKPX2oSP_R10pZoy77Ns - **Point of Contact:** nandan.thakur@uwaterloo.ca ### Dataset Summary BEIR is a heterogeneous benchmark that has been built from 18 diverse datasets representing 9 information retrieval tasks: - Fact-checking: [FEVER](http://fever.ai), [Climate-FEVER](http://climatefever.ai), [SciFact](https://github.com/allenai/scifact) - Question-Answering: [NQ](https://ai.google.com/research/NaturalQuestions), [HotpotQA](https://hotpotqa.github.io), [FiQA-2018](https://sites.google.com/view/fiqa/) - Bio-Medical IR: [TREC-COVID](https://ir.nist.gov/covidSubmit/index.html), [BioASQ](http://bioasq.org), [NFCorpus](https://www.cl.uni-heidelberg.de/statnlpgroup/nfcorpus/) - News Retrieval: [TREC-NEWS](https://trec.nist.gov/data/news2019.html), [Robust04](https://trec.nist.gov/data/robust/04.guidelines.html) - Argument Retrieval: [Touche-2020](https://webis.de/events/touche-20/shared-task-1.html), [ArguAna](tp://argumentation.bplaced.net/arguana/data) - Duplicate Question Retrieval: [Quora](https://www.quora.com/q/quoradata/First-Quora-Dataset-Release-Question-Pairs), [CqaDupstack](http://nlp.cis.unimelb.edu.au/resources/cqadupstack/) - Citation-Prediction: [SCIDOCS](https://allenai.org/data/scidocs) - Tweet Retrieval: [Signal-1M](https://research.signal-ai.com/datasets/signal1m-tweetir.html) - Entity Retrieval: [DBPedia](https://github.com/iai-group/DBpedia-Entity/) All these datasets have been preprocessed and can be used for your experiments. ```python ``` ### Supported Tasks and Leaderboards The dataset supports a leaderboard that evaluates models against task-specific metrics such as F1 or EM, as well as their ability to retrieve supporting information from Wikipedia. The current best performing models can be found [here](https://eval.ai/web/challenges/challenge-page/689/leaderboard/). ### Languages All tasks are in English (`en`). ## Dataset Structure All BEIR datasets must contain a corpus, queries and qrels (relevance judgments file). They must be in the following format: - `corpus` file: a `.jsonl` file (jsonlines) that contains a list of dictionaries, each with three fields `_id` with unique document identifier, `title` with document title (optional) and `text` with document paragraph or passage. For example: `{"_id": "doc1", "title": "Albert Einstein", "text": "Albert Einstein was a German-born...."}` - `queries` file: a `.jsonl` file (jsonlines) that contains a list of dictionaries, each with two fields `_id` with unique query identifier and `text` with query text. For example: `{"_id": "q1", "text": "Who developed the mass-energy equivalence formula?"}` - `qrels` file: a `.tsv` file (tab-seperated) that contains three columns, i.e. the `query-id`, `corpus-id` and `score` in this order. Keep 1st row as header. For example: `q1 doc1 1` ### Data Instances A high level example of any beir dataset: ```python corpus = { "doc1" : { "title": "Albert Einstein", "text": "Albert Einstein was a German-born theoretical physicist. who developed the theory of relativity, \ one of the two pillars of modern physics (alongside quantum mechanics). His work is also known for \ its influence on the philosophy of science. He is best known to the general public for his mass–energy \ equivalence formula E = mc2, which has been dubbed 'the world's most famous equation'. He received the 1921 \ Nobel Prize in Physics 'for his services to theoretical physics, and especially for his discovery of the law \ of the photoelectric effect', a pivotal step in the development of quantum theory." }, "doc2" : { "title": "", # Keep title an empty string if not present "text": "Wheat beer is a top-fermented beer which is brewed with a large proportion of wheat relative to the amount of \ malted barley. The two main varieties are German Weißbier and Belgian witbier; other types include Lambic (made\ with wild yeast), Berliner Weisse (a cloudy, sour beer), and Gose (a sour, salty beer)." }, } queries = { "q1" : "Who developed the mass-energy equivalence formula?", "q2" : "Which beer is brewed with a large proportion of wheat?" } qrels = { "q1" : {"doc1": 1}, "q2" : {"doc2": 1}, } ``` ### Data Fields Examples from all configurations have the following features: ### Corpus - `corpus`: a `dict` feature representing the document title and passage text, made up of: - `_id`: a `string` feature representing the unique document id - `title`: a `string` feature, denoting the title of the document. - `text`: a `string` feature, denoting the text of the document. ### Queries - `queries`: a `dict` feature representing the query, made up of: - `_id`: a `string` feature representing the unique query id - `text`: a `string` feature, denoting the text of the query. ### Qrels - `qrels`: a `dict` feature representing the query document relevance judgements, made up of: - `_id`: a `string` feature representing the query id - `_id`: a `string` feature, denoting the document id. - `score`: a `int32` feature, denoting the relevance judgement between query and document. ### Data Splits | Dataset | Website| BEIR-Name | Type | Queries | Corpus | Rel D/Q | Down-load | md5 | | -------- | -----| ---------| --------- | ----------- | ---------| ---------| :----------: | :------:| | MSMARCO | [Homepage](https://microsoft.github.io/msmarco/)| ``msmarco`` | ``train``<br>``dev``<br>``test``| 6,980 | 8.84M | 1.1 | [Link](https://public.ukp.informatik.tu-darmstadt.de/thakur/BEIR/datasets/msmarco.zip) | ``444067daf65d982533ea17ebd59501e4`` | | TREC-COVID | [Homepage](https://ir.nist.gov/covidSubmit/index.html)| ``trec-covid``| ``test``| 50| 171K| 493.5 | [Link](https://public.ukp.informatik.tu-darmstadt.de/thakur/BEIR/datasets/trec-covid.zip) | ``ce62140cb23feb9becf6270d0d1fe6d1`` | | NFCorpus | [Homepage](https://www.cl.uni-heidelberg.de/statnlpgroup/nfcorpus/) | ``nfcorpus`` | ``train``<br>``dev``<br>``test``| 323 | 3.6K | 38.2 | [Link](https://public.ukp.informatik.tu-darmstadt.de/thakur/BEIR/datasets/nfcorpus.zip) | ``a89dba18a62ef92f7d323ec890a0d38d`` | | BioASQ | [Homepage](http://bioasq.org) | ``bioasq``| ``train``<br>``test`` | 500 | 14.91M | 8.05 | No | [How to Reproduce?](https://github.com/UKPLab/beir/blob/main/examples/dataset#2-bioasq) | | NQ | [Homepage](https://ai.google.com/research/NaturalQuestions) | ``nq``| ``train``<br>``test``| 3,452 | 2.68M | 1.2 | [Link](https://public.ukp.informatik.tu-darmstadt.de/thakur/BEIR/datasets/nq.zip) | ``d4d3d2e48787a744b6f6e691ff534307`` | | HotpotQA | [Homepage](https://hotpotqa.github.io) | ``hotpotqa``| ``train``<br>``dev``<br>``test``| 7,405 | 5.23M | 2.0 | [Link](https://public.ukp.informatik.tu-darmstadt.de/thakur/BEIR/datasets/hotpotqa.zip) | ``f412724f78b0d91183a0e86805e16114`` | | FiQA-2018 | [Homepage](https://sites.google.com/view/fiqa/) | ``fiqa`` | ``train``<br>``dev``<br>``test``| 648 | 57K | 2.6 | [Link](https://public.ukp.informatik.tu-darmstadt.de/thakur/BEIR/datasets/fiqa.zip) | ``17918ed23cd04fb15047f73e6c3bd9d9`` | | Signal-1M(RT) | [Homepage](https://research.signal-ai.com/datasets/signal1m-tweetir.html)| ``signal1m`` | ``test``| 97 | 2.86M | 19.6 | No | [How to Reproduce?](https://github.com/UKPLab/beir/blob/main/examples/dataset#4-signal-1m) | | TREC-NEWS | [Homepage](https://trec.nist.gov/data/news2019.html) | ``trec-news`` | ``test``| 57 | 595K | 19.6 | No | [How to Reproduce?](https://github.com/UKPLab/beir/blob/main/examples/dataset#1-trec-news) | | ArguAna | [Homepage](http://argumentation.bplaced.net/arguana/data) | ``arguana``| ``test`` | 1,406 | 8.67K | 1.0 | [Link](https://public.ukp.informatik.tu-darmstadt.de/thakur/BEIR/datasets/arguana.zip) | ``8ad3e3c2a5867cdced806d6503f29b99`` | | Touche-2020| [Homepage](https://webis.de/events/touche-20/shared-task-1.html) | ``webis-touche2020``| ``test``| 49 | 382K | 19.0 | [Link](https://public.ukp.informatik.tu-darmstadt.de/thakur/BEIR/datasets/webis-touche2020.zip) | ``46f650ba5a527fc69e0a6521c5a23563`` | | CQADupstack| [Homepage](http://nlp.cis.unimelb.edu.au/resources/cqadupstack/) | ``cqadupstack``| ``test``| 13,145 | 457K | 1.4 | [Link](https://public.ukp.informatik.tu-darmstadt.de/thakur/BEIR/datasets/cqadupstack.zip) | ``4e41456d7df8ee7760a7f866133bda78`` | | Quora| [Homepage](https://www.quora.com/q/quoradata/First-Quora-Dataset-Release-Question-Pairs) | ``quora``| ``dev``<br>``test``| 10,000 | 523K | 1.6 | [Link](https://public.ukp.informatik.tu-darmstadt.de/thakur/BEIR/datasets/quora.zip) | ``18fb154900ba42a600f84b839c173167`` | | DBPedia | [Homepage](https://github.com/iai-group/DBpedia-Entity/) | ``dbpedia-entity``| ``dev``<br>``test``| 400 | 4.63M | 38.2 | [Link](https://public.ukp.informatik.tu-darmstadt.de/thakur/BEIR/datasets/dbpedia-entity.zip) | ``c2a39eb420a3164af735795df012ac2c`` | | SCIDOCS| [Homepage](https://allenai.org/data/scidocs) | ``scidocs``| ``test``| 1,000 | 25K | 4.9 | [Link](https://public.ukp.informatik.tu-darmstadt.de/thakur/BEIR/datasets/scidocs.zip) | ``38121350fc3a4d2f48850f6aff52e4a9`` | | FEVER | [Homepage](http://fever.ai) | ``fever``| ``train``<br>``dev``<br>``test``| 6,666 | 5.42M | 1.2| [Link](https://public.ukp.informatik.tu-darmstadt.de/thakur/BEIR/datasets/fever.zip) | ``5a818580227bfb4b35bb6fa46d9b6c03`` | | Climate-FEVER| [Homepage](http://climatefever.ai) | ``climate-fever``|``test``| 1,535 | 5.42M | 3.0 | [Link](https://public.ukp.informatik.tu-darmstadt.de/thakur/BEIR/datasets/climate-fever.zip) | ``8b66f0a9126c521bae2bde127b4dc99d`` | | SciFact| [Homepage](https://github.com/allenai/scifact) | ``scifact``| ``train``<br>``test``| 300 | 5K | 1.1 | [Link](https://public.ukp.informatik.tu-darmstadt.de/thakur/BEIR/datasets/scifact.zip) | ``5f7d1de60b170fc8027bb7898e2efca1`` | | Robust04 | [Homepage](https://trec.nist.gov/data/robust/04.guidelines.html) | ``robust04``| ``test``| 249 | 528K | 69.9 | No | [How to Reproduce?](https://github.com/UKPLab/beir/blob/main/examples/dataset#3-robust04) | ## Dataset Creation ### Curation Rationale [Needs More Information] ### Source Data #### Initial Data Collection and Normalization [Needs More Information] #### Who are the source language producers? [Needs More Information] ### Annotations #### Annotation process [Needs More Information] #### Who are the annotators? [Needs More Information] ### Personal and Sensitive Information [Needs More Information] ## Considerations for Using the Data ### Social Impact of Dataset [Needs More Information] ### Discussion of Biases [Needs More Information] ### Other Known Limitations [Needs More Information] ## Additional Information ### Dataset Curators [Needs More Information] ### Licensing Information [Needs More Information] ### Citation Information Cite as: ``` @inproceedings{ thakur2021beir, title={{BEIR}: A Heterogeneous Benchmark for Zero-shot Evaluation of Information Retrieval Models}, author={Nandan Thakur and Nils Reimers and Andreas R{\"u}ckl{\'e} and Abhishek Srivastava and Iryna Gurevych}, booktitle={Thirty-fifth Conference on Neural Information Processing Systems Datasets and Benchmarks Track (Round 2)}, year={2021}, url={https://openreview.net/forum?id=wCu6T5xFjeJ} } ``` ### Contributions Thanks to [@Nthakur20](https://github.com/Nthakur20) for adding this dataset.
[ -0.5227212905883789, -0.5249219536781311, 0.14435674250125885, 0.04820423573255539, 0.055916160345077515, 0.0011022627586498857, -0.1081070527434349, -0.24874727427959442, 0.28598034381866455, 0.07840226590633392, -0.45233607292175293, -0.7186435461044312, -0.347678542137146, 0.20300328731536865, -0.30069878697395325, 0.9758250117301941, 0.014305182732641697, 0.0586225800216198, -0.24382327497005463, -0.36601805686950684, -0.08008868247270584, -0.44799694418907166, -0.5050897002220154, -0.2907830476760864, 0.45557722449302673, 0.39666759967803955, 0.42369404435157776, 0.487571120262146, 0.8579588532447815, 0.25866180658340454, -0.16969332098960876, 0.1930815726518631, -0.42253348231315613, -0.11489183455705643, -0.25032272934913635, -0.3355295956134796, -0.3375561833381653, -0.04232552647590637, 0.7035840153694153, 0.4853653311729431, -0.04916219785809517, 0.37948912382125854, 0.07841872423887253, 0.7650116682052612, -0.44466716051101685, 0.11583404242992401, -0.536428689956665, -0.10423595458269119, -0.36419737339019775, -0.12030422687530518, -0.08283333480358124, -0.1887531578540802, -0.0333671048283577, -0.6531511545181274, 0.44047778844833374, 0.24370045959949493, 1.190857172012329, 0.14985835552215576, -0.3406241834163666, -0.19128477573394775, -0.42883193492889404, 0.849455714225769, -0.6557065844535828, 0.48241880536079407, 0.510321319103241, 0.2511930763721466, -0.14111417531967163, -0.8213434219360352, -0.5588585734367371, -0.09404117614030838, -0.36445409059524536, 0.4597921669483185, -0.15825007855892181, -0.3475356996059418, 0.3551880121231079, 0.4168747067451477, -0.8644463419914246, -0.15786613523960114, -0.48051902651786804, -0.19953520596027374, 0.7702012658119202, 0.3000722825527191, 0.032210029661655426, -0.4038070738315582, -0.31506624817848206, -0.4340740740299225, -0.41114541888237, 0.26974132657051086, 0.20566536486148834, 0.28749895095825195, -0.3312869369983673, 0.4009324610233307, -0.4526556730270386, 0.4963478446006775, 0.08605768531560898, -0.1030162051320076, 0.6464635729789734, -0.8154475688934326, -0.050131842494010925, -0.11603909730911255, 1.015303373336792, 0.408013254404068, -0.39961883425712585, -0.056630197912454605, -0.05704749375581741, -0.2683671712875366, 0.006109269801527262, -0.8532922863960266, -0.15294604003429413, 0.5906291007995605, -0.44484326243400574, -0.020117763429880142, 0.308093398809433, -0.9765838384628296, -0.0722590833902359, 0.008933373726904392, 0.39580121636390686, -0.5227494239807129, -0.1592460721731186, 0.02438967116177082, -0.5729584693908691, 0.34502285718917847, -0.007968001067638397, -0.6247293949127197, 0.315779447555542, 0.44768157601356506, 0.804389476776123, -0.0413394570350647, -0.26268595457077026, -0.33349844813346863, 0.14483225345611572, -0.14363576471805573, 0.6570227146148682, -0.3190489411354065, -0.4056228995323181, -0.14171551167964935, 0.15156541764736176, -0.033760420978069305, -0.3373078405857086, 0.9281319379806519, -0.389744371175766, 0.44970086216926575, -0.789262592792511, -0.41234079003334045, -0.10816981643438339, 0.34154200553894043, -0.6949538588523865, 1.2723000049591064, 0.26540178060531616, -1.0983338356018066, 0.29102328419685364, -0.9081701636314392, -0.4315090775489807, 0.010008315555751324, -0.11309286952018738, -0.45616501569747925, -0.35463568568229675, 0.22834943234920502, 0.42407888174057007, -0.6230207681655884, 0.12821343541145325, -0.15992018580436707, -0.21683473885059357, 0.18159762024879456, 0.03311765566468239, 0.9898686408996582, 0.3880959749221802, -0.3464379608631134, -0.16247637569904327, -0.8672434687614441, 0.018533576279878616, 0.31417399644851685, -0.3905879855155945, -0.1695217788219452, -0.04339424893260002, 0.18873560428619385, 0.11720547080039978, 0.2934233248233795, -0.5188770294189453, 0.00428973650559783, -0.3037088215351105, 0.4981994330883026, 0.2669224143028259, 0.14418098330497742, 0.2362356185913086, -0.7030050754547119, 0.2647274434566498, 0.13447047770023346, 0.34294959902763367, 0.06866227835416794, -0.4416658580303192, -0.5032192468643188, -0.2900577783584595, 0.3508565425872803, 0.639037549495697, -0.5436720252037048, 0.6129992008209229, -0.513790488243103, -0.9260470271110535, -0.5685660243034363, 0.07258550822734833, 0.4460696876049042, 0.7589064240455627, 0.6119206547737122, -0.08562281727790833, -0.5191221833229065, -0.9151644110679626, -0.1815260797739029, -0.21497587859630585, 0.1129496693611145, 0.4769494831562042, 0.8783652186393738, -0.11713095754384995, 0.7306857109069824, -0.589627206325531, -0.2878691852092743, -0.10756352543830872, 0.0484735481441021, 0.5012657642364502, 0.6242989897727966, 0.6509274244308472, -1.1332581043243408, -0.46929630637168884, -0.03424973040819168, -0.7756693363189697, 0.007346777245402336, 0.06606772541999817, -0.19265538454055786, 0.18924112617969513, 0.44073963165283203, -0.5868716835975647, 0.3258756995201111, 0.1293233036994934, -0.26348382234573364, 0.3803740441799164, -0.133763387799263, 0.5435060262680054, -1.2299649715423584, 0.5876778960227966, 0.1440282166004181, 0.14515040814876556, -0.5368213653564453, 0.07189229875802994, 0.12289425730705261, 0.20369748771190643, -0.43375998735427856, 0.6834644675254822, -0.4253861606121063, 0.07648865878582001, 0.3173408508300781, 0.03608278930187225, 0.22006818652153015, 0.32576075196266174, -0.196895033121109, 0.7702533006668091, 0.48572540283203125, -0.6473968625068665, 0.3211202323436737, 0.42674195766448975, -0.316466361284256, 0.3661985993385315, -0.686754584312439, -0.11134655028581619, -0.09564776718616486, 0.2514493763446808, -0.9540041089057922, -0.2779845893383026, 0.23283274471759796, -0.6482973098754883, 0.22331644594669342, -0.13765248656272888, -0.7336390614509583, -0.6213062405586243, -0.5351691842079163, 0.19965368509292603, 0.49103599786758423, -0.3477015197277069, 0.4853753447532654, 0.34533798694610596, 0.12280644476413727, -0.7810849547386169, -0.7217482328414917, -0.18428128957748413, -0.26002517342567444, -0.701014518737793, 0.6668904423713684, -0.29807981848716736, -0.27312567830085754, 0.18068267405033112, -0.06669966876506805, -0.06080634519457817, 0.07587099075317383, 0.2424585521221161, 0.286362886428833, -0.10165634006261826, 0.0862303078174591, -0.14616143703460693, 0.17754094302654266, -0.11863508075475693, 0.0692124217748642, 0.5707697868347168, -0.3651147484779358, -0.12873749434947968, -0.35589271783828735, 0.3036210238933563, 0.5532573461532593, -0.33612260222435, 0.7029942870140076, 0.8384346961975098, -0.3518335521221161, 0.18457035720348358, -0.5408933758735657, -0.14517249166965485, -0.44388747215270996, 0.23844315111637115, -0.39014020562171936, -0.6042908430099487, 0.7369179129600525, 0.1451558768749237, 0.1588226556777954, 0.9487075209617615, 0.4598388671875, -0.1908322423696518, 0.7373168468475342, 0.1922331005334854, -0.0695265382528305, 0.4588094651699066, -0.6723855137825012, -0.049271903932094574, -0.8247594237327576, -0.5017083883285522, -0.9064508676528931, -0.20134955644607544, -0.6871837973594666, -0.3829275667667389, 0.46376803517341614, 0.16217505931854248, -0.4501810669898987, 0.38167575001716614, -0.6827451586723328, 0.15179012715816498, 0.7303305268287659, 0.09732041507959366, -0.02723061293363571, 0.003255939343944192, -0.263946533203125, 0.16775624454021454, -0.800797164440155, -0.27440914511680603, 1.2077574729919434, 0.06440906226634979, 0.497467041015625, 0.16745345294475555, 0.7925137281417847, 0.289336621761322, 0.01026260294020176, -0.32847467064857483, 0.5532697439193726, -0.16180959343910217, -0.9977998733520508, -0.23678216338157654, -0.5406776070594788, -1.1432578563690186, 0.11852318793535233, -0.41335925459861755, -0.694029688835144, 0.32972657680511475, 0.03940829634666443, -0.2820037305355072, 0.24345587193965912, -0.7577078342437744, 0.7882257699966431, -0.33435291051864624, -0.7129021883010864, -0.06590454280376434, -0.8397119641304016, 0.1834520846605301, 0.02596832998096943, 0.34203341603279114, -0.029513850808143616, -0.0608317069709301, 1.0457228422164917, -0.4235745966434479, 0.40854528546333313, -0.1622205227613449, 0.4509933590888977, 0.4007002115249634, -0.3484469950199127, 0.5088773965835571, 0.10184630751609802, -0.4899716079235077, 0.35321635007858276, 0.43989062309265137, -0.5868134498596191, -0.31996890902519226, 0.7136315107345581, -0.7672039866447449, -0.43915364146232605, -0.6827963590621948, -0.4707586467266083, -0.03616366907954216, 0.3388587534427643, 0.497883677482605, 0.43887606263160706, -0.27875858545303345, 0.3746342062950134, 0.5581212639808655, -0.3321787118911743, 0.36145439743995667, 0.5505911111831665, -0.03781525790691376, -0.602978527545929, 0.766660749912262, 0.2843569815158844, -0.1404413878917694, 0.6768700480461121, 0.2619127333164215, -0.45219406485557556, -0.589259922504425, -0.28724998235702515, 0.2641803026199341, -0.5510320663452148, -0.43871739506721497, -0.741084098815918, -0.26960182189941406, -0.7302907109260559, 0.008133265189826488, -0.14744070172309875, -0.2533867359161377, -0.36790943145751953, -0.0847230851650238, 0.6108410358428955, 0.33107295632362366, -0.3980179727077484, 0.12903337180614471, -0.8084249496459961, 0.37695008516311646, -0.07256115227937698, 0.20511406660079956, -0.20770595967769623, -0.44890254735946655, -0.38343432545661926, 0.13894475996494293, -0.33169519901275635, -0.6284312605857849, 0.38704749941825867, 0.19414038956165314, 0.7763863801956177, 0.22910937666893005, 0.20391374826431274, 0.6677148938179016, -0.13822759687900543, 1.0384474992752075, 0.19119688868522644, -0.5566859245300293, 0.6095729470252991, -0.3838087320327759, 0.23869973421096802, 0.8347856998443604, 0.6737633347511292, -0.3936844766139984, -0.1455410271883011, -0.7624744772911072, -1.0085564851760864, 0.6575314402580261, 0.35729658603668213, -0.2249043881893158, -0.05220679193735123, 0.2580508887767792, 0.05686061084270477, 0.10584897547960281, -0.38623878359794617, -0.676135241985321, -0.3462361991405487, -0.26497724652290344, -0.0775597020983696, 0.024700693786144257, -0.3715803921222687, -0.5578471422195435, 0.9182614088058472, 0.11025725305080414, 0.420644611120224, 0.6139549612998962, -0.023038038983941078, 0.04638832062482834, 0.2890836000442505, 0.40674257278442383, 0.6271098256111145, -0.6424466967582703, -0.016054531559348106, 0.1527722030878067, -0.5641588568687439, -0.1970931738615036, 0.4989091753959656, -0.19397012889385223, 0.04551687836647034, 0.3243938982486725, 0.46488839387893677, -0.05218090862035751, -0.662261962890625, 0.3969845473766327, -0.14259950816631317, -0.48019134998321533, -0.31624332070350647, 0.13369809091091156, 0.15760868787765503, 0.2669672966003418, 0.5954002737998962, -0.09037166833877563, 0.23691782355308533, -0.606415867805481, 0.27989694476127625, 0.41792061924934387, -0.09587930142879486, -0.23012077808380127, 0.7112036347389221, -0.015588417649269104, -0.11130918562412262, 0.47176581621170044, -0.38631686568260193, -0.4661109745502472, 0.7329344749450684, 0.2563669681549072, 0.4830814003944397, 0.030457930639386177, 0.16128957271575928, 0.7753414511680603, 0.3005322813987732, -0.1519831418991089, 0.5730528235435486, 0.0870576798915863, -0.5767921209335327, 0.1110822856426239, -0.6073797941207886, -0.27898842096328735, 0.2522641718387604, -0.7126973271369934, 0.22284898161888123, -0.3579019010066986, -0.3645647168159485, 0.3511834442615509, 0.5384413599967957, -1.0563390254974365, 0.23530882596969604, -0.1802295595407486, 1.0554289817810059, -0.6681551337242126, 0.6536478400230408, 0.8174325227737427, -0.7093753218650818, -0.7513832449913025, -0.16072341799736023, -0.05520506575703621, -0.5689168572425842, 0.5363551378250122, -0.06194406747817993, 0.21792630851268768, -0.08665043115615845, -0.5968675017356873, -1.007527232170105, 1.4483823776245117, 0.08734344691038132, -0.5021193027496338, 0.21259498596191406, 0.10299886763095856, 0.6323392391204834, -0.14106546342372894, 0.43876203894615173, 0.47516757249832153, 0.6784947514533997, 0.10042513906955719, -0.7522968649864197, 0.15344680845737457, -0.5432537198066711, -0.3661554753780365, 0.19247877597808838, -1.0822093486785889, 0.7986630201339722, 0.015610911883413792, -0.1494436264038086, -0.10988756269216537, 0.5578751564025879, 0.2084977924823761, 0.7504045963287354, 0.2260247766971588, 0.8674941062927246, 0.9227819442749023, -0.1920049786567688, 1.0957969427108765, -0.4562140703201294, 0.47420361638069153, 0.8832061886787415, -0.23672813177108765, 0.8017937541007996, 0.35327863693237305, -0.41140154004096985, 0.39914199709892273, 0.698276162147522, -0.37149351835250854, 0.6256637573242188, 0.0729977935552597, 0.017194926738739014, 0.016607772558927536, -0.14063692092895508, -0.6803908944129944, 0.3814948797225952, 0.3604525923728943, -0.21232843399047852, -0.10150853544473648, -0.2372315675020218, 0.06332507729530334, -0.12301275879144669, -0.22505581378936768, 0.6219528317451477, -0.16431665420532227, -0.553874671459198, 0.7714532017707825, -0.02127516083419323, 0.6670664548873901, -0.7181220054626465, 0.1874157041311264, -0.3996349573135376, -0.01924861967563629, -0.4054136872291565, -0.8242422342300415, 0.26859503984451294, 0.030398113653063774, -0.3868265748023987, 0.017181331291794777, 0.6022027730941772, -0.1365470588207245, -0.5647873878479004, 0.21856139600276947, 0.5983712673187256, 0.36048367619514465, 0.15855161845684052, -0.9626027941703796, 0.02809206396341324, -0.017583930864930153, -0.34608882665634155, 0.3427196741104126, 0.37189429998397827, 0.09688836336135864, 0.568805456161499, 0.7697608470916748, -0.015111376531422138, 0.03516048565506935, -0.17953699827194214, 0.8903844952583313, -0.91789311170578, -0.2872837483882904, -0.568138062953949, 0.4133822023868561, -0.35016292333602905, -0.4428980052471161, 0.8157082200050354, 1.1168880462646484, 0.9054762125015259, 0.13462625443935394, 0.8683094382286072, -0.4944570064544678, 0.6177839636802673, -0.31359344720840454, 0.8344415426254272, -0.9195954203605652, 0.07570049911737442, -0.12227112054824829, -0.504455029964447, -0.16591067612171173, 0.30597981810569763, -0.27516311407089233, 0.06196277588605881, 0.7181154489517212, 1.0131845474243164, 0.030859557911753654, -0.14317357540130615, 0.056773021817207336, 0.2707000970840454, 0.2548459470272064, 0.4058399498462677, 0.4663054347038269, -0.8039864301681519, 0.6584635972976685, -0.4354148805141449, 0.00018058351997751743, -0.388482004404068, -0.6527533531188965, -0.7195432186126709, -0.9608309268951416, -0.4046649932861328, -0.5628899335861206, 0.13066482543945312, 0.9864917397499084, 0.6848520636558533, -0.9067461490631104, -0.09813147783279419, 0.09773402661085129, 0.17721214890480042, -0.3703257441520691, -0.2700546979904175, 0.7314712405204773, -0.0370045006275177, -0.5933273434638977, 0.149146169424057, -0.009927893057465553, -0.036672547459602356, 0.23631082475185394, -0.10812115669250488, -0.5580704808235168, 0.039596207439899445, 0.4758349359035492, 0.46362367272377014, -0.49266430735588074, -0.06120004132390022, 0.06398710608482361, -0.2564283013343811, 0.28605663776397705, 0.23664221167564392, -0.620083212852478, 0.1323763132095337, 0.7606695890426636, 0.4882211685180664, 0.6680097579956055, 0.07911423593759537, -0.06350003182888031, -0.48173272609710693, -0.0701635479927063, 0.2346392720937729, 0.3850674331188202, 0.38560375571250916, -0.3877781331539154, 0.771856427192688, 0.3417729437351227, -0.5387512445449829, -0.8650879263877869, -0.32964199781417847, -1.4995006322860718, -0.23463350534439087, 1.210500955581665, 0.0024194796569645405, -0.34399425983428955, -0.03395310789346695, -0.05279684066772461, 0.40751245617866516, -0.7033708095550537, 0.6042744517326355, 0.589066207408905, -0.16955041885375977, 0.15822263062000275, -0.5991657972335815, 0.4387568533420563, 0.2479681670665741, -0.8721137642860413, -0.21066921949386597, 0.273154616355896, 0.445595383644104, 0.29702451825141907, 0.5533441305160522, -0.20567283034324646, 0.05621562898159027, 0.13452692329883575, 0.08711707592010498, -0.1505240648984909, 0.047760557383298874, -0.07232259213924408, 0.2246197909116745, -0.22824953496456146, -0.22329849004745483 ]
null
null
null
null
null
null
null
null
null
null
null
null
null
biu-nlp/qa_srl2018
biu-nlp
2022-10-19T06:16:06Z
448
1
null
[ "region:us" ]
2022-10-19T06:16:06Z
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
usvsnsp/memories-semantic-memorization-filter-results
usvsnsp
2023-09-20T20:16:41Z
447
1
null
[ "region:us" ]
2023-09-20T20:16:41Z
2023-09-20T20:08:28.000Z
2023-09-20T20:08:28
--- dataset_info: features: - name: sequence_id dtype: int64 - name: text dtype: string - name: sequence_duplicates dtype: int64 - name: max_frequency dtype: int64 - name: avg_frequency dtype: float64 - name: min_frequency dtype: int64 - name: median_frequency dtype: float64 - name: p25_frequency dtype: int64 - name: p75_frequency dtype: int64 - name: frequencies sequence: int64 - name: is_incrementing dtype: bool - name: tokens sequence: int64 - name: repeating_offset dtype: int32 - name: num_repeating dtype: int32 - name: smallest_repeating_chunk sequence: int64 - name: memorization_score dtype: float64 - name: templating_frequency_0.9 dtype: int64 - name: templating_frequency_0.8 dtype: int64 - name: prompt_perplexity dtype: float32 - name: generation_perplexity dtype: float32 - name: sequence_perplexity dtype: float32 splits: - name: memories.duped.70m num_bytes: 648141277 num_examples: 463953 - name: memories.duped.160m num_bytes: 955903849 num_examples: 689673 - name: memories.duped.410m num_bytes: 1337555782 num_examples: 970341 - name: memories.duped.1b num_bytes: 1725540452 num_examples: 1256141 - name: memories.duped.1.4b num_bytes: 1884519155 num_examples: 1373722 - name: memories.duped.2.8b num_bytes: 2292743123 num_examples: 1675077 - name: memories.duped.6.9b num_bytes: 2898035658 num_examples: 2120976 - name: memories.duped.12b num_bytes: 3252649684 num_examples: 2382328 - name: memories.deduped.70m num_bytes: 576211560 num_examples: 411448 - name: memories.deduped.160m num_bytes: 809545073 num_examples: 581195 - name: memories.deduped.410m num_bytes: 1126006111 num_examples: 811039 - name: memories.deduped.1b num_bytes: 1430399436 num_examples: 1032865 - name: memories.deduped.1.4b num_bytes: 1450336662 num_examples: 1048097 - name: memories.deduped.2.8b num_bytes: 1871907415 num_examples: 1355211 - name: memories.deduped.6.9b num_bytes: 2319039796 num_examples: 1680294 - name: memories.deduped.12b num_bytes: 2581349436 num_examples: 1871216 download_size: 9223426756 dataset_size: 27159884469 --- # Dataset Card for "memories-semantic-memorization-filter-results" [More Information needed](https://github.com/huggingface/datasets/blob/main/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
[ -0.6023409366607666, -0.37742382287979126, 0.5672624707221985, -0.012847951613366604, -0.27755290269851685, -0.11159560829401016, -0.00583805562928319, -0.1178252100944519, 0.8063323497772217, 0.627242922782898, -0.8729087710380554, -1.1640137434005737, -0.7234385013580322, -0.577141284942627, -0.3859866261482239, 1.1904112100601196, 0.09335758537054062, 0.11242049187421799, -0.5840530395507812, -0.36725229024887085, -0.543007493019104, -0.619044840335846, -0.7044545412063599, -0.7277456521987915, 0.7909325957298279, 0.6465428471565247, 0.16702985763549805, 0.5213193297386169, 0.6679368019104004, 0.18037505447864532, -0.11803214251995087, -0.20942609012126923, -0.42478838562965393, 0.03809652104973793, -0.40116649866104126, -0.5094066858291626, -1.1061679124832153, -0.04075907915830612, 0.5948125123977661, 0.3454865515232086, -0.31293678283691406, 0.6707719564437866, -0.28351613879203796, 1.0001765489578247, -0.679985523223877, 0.5739060044288635, -0.6105391979217529, 0.011165063828229904, -0.48494288325309753, -0.2914249897003174, 0.054798103868961334, -0.3196967542171478, -0.206929549574852, -0.9214830994606018, 0.21345719695091248, 0.10847844928503036, 0.9456905722618103, 0.20795966684818268, 0.0789334774017334, -0.24222855269908905, -0.3984048068523407, 0.38833773136138916, -0.2722632586956024, 0.2489856630563736, 0.9925001859664917, 0.6844717860221863, 0.07121682167053223, -0.8382549285888672, -0.5077918767929077, 0.24390952289104462, 0.012450335547327995, 0.4432327449321747, 0.46296313405036926, 0.0336373969912529, 0.6401829719543457, 0.6219857335090637, -0.5800324082374573, -0.21335673332214355, -0.591847836971283, -0.39208146929740906, 0.5014479756355286, 0.34332653880119324, 0.2154894322156906, 0.062147147953510284, 0.11835360527038574, -0.22687332332134247, -0.311260849237442, -0.18953141570091248, 0.27566659450531006, 0.16496270895004272, -0.35128822922706604, 0.6930727362632751, -0.4033280611038208, 0.5373745560646057, -0.23290522396564484, 0.2004261612892151, 0.5263262987136841, -0.25597667694091797, -0.07758746296167374, 0.0855112373828888, 0.18705886602401733, 0.3597748577594757, 0.16722078621387482, 0.06116051599383354, -0.3353113830089569, 0.48150983452796936, -0.04902426525950432, -1.2630330324172974, -0.9523202180862427, 0.08256692439317703, -0.8809320330619812, -0.020616179332137108, 0.21752403676509857, -1.0431137084960938, -0.2625596225261688, -0.3064781129360199, 0.5287226438522339, -0.20331265032291412, -0.47611111402511597, 0.28689610958099365, -0.8905066251754761, 0.08706545829772949, 0.07540024816989899, -0.7350969314575195, 0.7787978649139404, 0.6862285137176514, 0.4625249207019806, 0.23420646786689758, -0.2640085220336914, -0.7664116024971008, 0.1951262652873993, 0.2737005949020386, 1.0306023359298706, -0.7453740239143372, -0.4857079088687897, -0.035154618322849274, 0.006121598184108734, -0.1091405376791954, -0.6109231114387512, 0.8718656301498413, -0.5762856602668762, -0.026187734678387642, -0.6153376698493958, -0.8804607391357422, -0.21428127586841583, 0.2655179500579834, -1.040435552597046, 1.1154659986495972, 0.15593545138835907, -0.594070315361023, 0.5512141585350037, -0.9170345664024353, -0.2784688472747803, 0.3889276683330536, -0.07320043444633484, -0.3841005563735962, 0.12924623489379883, -0.1303476244211197, 0.3142353892326355, -0.15694595873355865, 0.3301798105239868, -0.8064008355140686, -0.39746809005737305, 0.20040740072727203, 0.0027547788340598345, 0.7169505953788757, 0.32396093010902405, 0.20293234288692474, 0.26572108268737793, -1.111764907836914, -0.09169270843267441, 0.26479870080947876, -0.10883121192455292, -0.4495958685874939, -0.20394611358642578, 0.32644614577293396, 0.26297783851623535, 0.47121167182922363, -0.5901172757148743, 0.06531748175621033, 0.3303224444389343, -0.022186974063515663, 0.5406818389892578, 0.1701735258102417, 0.3195827603340149, -0.6321695446968079, 0.19446034729480743, 0.43436765670776367, 0.25385966897010803, -0.27175259590148926, -0.5719611048698425, -0.6793233156204224, -0.032040901482105255, 0.3379284739494324, 0.581159234046936, -0.479449987411499, 0.6436188817024231, -0.21561411023139954, -0.5922855138778687, -0.2683241069316864, 0.3885378837585449, 0.38198122382164, 0.6500458121299744, 0.4900805354118347, -0.7103404998779297, -0.5999371409416199, -0.6638991236686707, -0.03132135421037674, -0.24462240934371948, -0.0631728395819664, 0.5095040798187256, 0.8613556027412415, -0.3675696551799774, 0.7822973728179932, -1.0390300750732422, -0.6374611854553223, 0.23762589693069458, -0.2035016268491745, 0.3014794588088989, 0.5554770827293396, 0.5617486834526062, -0.9004630446434021, -0.10132521390914917, -0.5305210947990417, -0.4675353169441223, -0.031306784600019455, 0.4548448622226715, -0.5341247320175171, 0.05579940602183342, 0.24771040678024292, -0.6022252440452576, 0.6983693838119507, 0.4316481053829193, -0.7762708067893982, 0.24817144870758057, -0.041069064289331436, 0.118678018450737, -1.1152206659317017, 0.3988332152366638, -0.15659625828266144, -0.07143017649650574, -0.16278044879436493, 0.047131139785051346, 0.1135343536734581, -0.041450321674346924, -0.03034796379506588, 0.6607429385185242, -0.16113753616809845, -0.21520167589187622, -0.05996604636311531, 0.16348716616630554, 0.027535170316696167, 0.4372398853302002, 0.31034019589424133, 0.3859623074531555, 0.6533520817756653, -0.7432940006256104, 0.6521245241165161, 0.5402581691741943, -0.0910884365439415, 0.9253487586975098, -0.43384069204330444, 0.10474690049886703, -0.1684708446264267, 0.16458170115947723, -0.9211757183074951, -0.5575964450836182, 0.2776969075202942, -0.4263152480125427, 0.28790780901908875, -0.5306475162506104, -0.9021055102348328, -0.6330796480178833, -0.43672773241996765, 0.5622498989105225, 0.622746467590332, -0.7554716467857361, 0.4191077947616577, 0.793662428855896, 0.20421521365642548, 0.0267588272690773, -0.7474066019058228, -0.0021399289835244417, -0.2904627323150635, -0.23718583583831787, 0.42620137333869934, -0.5939981937408447, 0.10647889971733093, 0.07286255061626434, 0.2712673842906952, -0.31906312704086304, -0.04623615741729736, 0.3749091327190399, 0.2744290232658386, -0.25184664130210876, 0.6005575060844421, -0.0230777058750391, -0.5908174514770508, 0.19172479212284088, -0.2768177092075348, 0.5275303721427917, -0.18343882262706757, -0.28837162256240845, -0.057282473891973495, 0.30661478638648987, 0.36933478713035583, -0.3872597813606262, 0.6349619626998901, 1.0742145776748657, -0.7744396328926086, -0.15268786251544952, -0.7244120240211487, -0.3856372833251953, -0.44695043563842773, 0.16318298876285553, -0.3201829791069031, -0.891883909702301, 0.8067224025726318, -0.07755327224731445, -0.31191009283065796, 0.49984341859817505, 0.4869701862335205, -0.025732703506946564, 0.3868880867958069, 0.24239981174468994, -0.15842804312705994, 0.589283287525177, -0.2356201410293579, -0.3798193037509918, -0.9656473398208618, -0.4230365753173828, -0.40151089429855347, -0.5441277623176575, -0.5932325720787048, -0.16410039365291595, -0.09000930190086365, 0.01792754977941513, -0.15692713856697083, 0.5215570330619812, -0.6599395871162415, 0.3079395592212677, 0.781433641910553, 0.3781657814979553, 0.04392740875482559, -0.07392239570617676, 0.010414928197860718, 0.16939668357372284, -0.6503143310546875, -0.05577820539474487, 1.1768105030059814, 0.1497056931257248, 0.7367150783538818, 0.06609508395195007, 1.069011926651001, -0.04119406268000603, 0.132261723279953, -0.651783287525177, 0.8594458103179932, -0.31958872079849243, -0.6114112734794617, -0.15406548976898193, -0.21571175754070282, -0.7325024008750916, -0.3435646891593933, -0.2979795038700104, -0.4077211022377014, 0.03867363557219505, 0.33480706810951233, -0.034355733543634415, 0.3864240050315857, -0.6912207007408142, 1.090699553489685, 0.07629044353961945, -0.13311758637428284, -0.43314987421035767, -0.5373311042785645, 0.09657666832208633, 0.2688297629356384, -0.15143029391765594, -0.4493606388568878, -0.057283081114292145, 1.0924915075302124, -0.20129376649856567, 0.987669050693512, -0.6218471527099609, 0.4235879182815552, 0.41345080733299255, -0.3078596591949463, 0.0817386582493782, 0.28281915187835693, -0.08285576105117798, 0.07805714011192322, 0.0360332690179348, -0.39638233184814453, -0.3237798810005188, 0.9532507061958313, -0.4044422209262848, -0.07387964427471161, -0.11323203891515732, -0.661689817905426, 0.20060157775878906, 0.5481975078582764, 0.07632263004779816, 0.5588910579681396, -0.4594261944293976, -0.05648491904139519, 1.139817237854004, 0.08782271295785904, 0.3555281460285187, 0.4774790108203888, -0.5431790947914124, -0.49326610565185547, 1.1711182594299316, 0.4231092631816864, -0.4058137536048889, 0.4997313916683197, 0.41319739818573, -0.11575815081596375, -0.5474667549133301, -0.37159276008605957, 0.2905139625072479, -0.7086225152015686, -0.3279291093349457, -0.4951122999191284, -0.3648943603038788, -0.48819369077682495, 0.1978563517332077, -0.28466975688934326, -0.7426831126213074, -0.5697744488716125, -0.5053120851516724, 1.10817551612854, 0.3113642632961273, -0.31940025091171265, 0.2410716712474823, -0.9600352048873901, 0.8211092948913574, 0.23566269874572754, 1.0796219110488892, -0.2723080515861511, -0.3282950818538666, -0.4490944445133209, -0.2747590243816376, -0.08359876275062561, -0.41569626331329346, -0.04124018922448158, 0.3074420392513275, 0.5981621742248535, 0.011312057264149189, -0.05801806598901749, 0.8858495354652405, -0.24742867052555084, 0.5285887122154236, -0.12887609004974365, -0.5293949246406555, 0.9066410660743713, -0.33409732580184937, 0.6325575709342957, 1.0245481729507446, 0.07401088625192642, -0.45249152183532715, 0.16566358506679535, -0.8296386003494263, -0.8564303517341614, 0.5017766356468201, -0.05317690968513489, 0.08906755596399307, -0.09774810820817947, 0.632744550704956, -0.12686815857887268, 0.3586021959781647, -0.2980787456035614, -0.8277053833007812, -0.08101329207420349, -0.32811418175697327, 0.22140300273895264, -0.6620399951934814, -0.12991861999034882, -0.5946478247642517, 0.7580228447914124, 0.00115878542419523, 0.511115550994873, 0.05425451695919037, 0.06944802403450012, -0.05864326283335686, -0.05026274174451828, 0.5020864605903625, 0.5710328221321106, -0.5246804356575012, -0.109881691634655, -0.06134215369820595, -0.6435292363166809, -0.4164304733276367, 0.39638540148735046, -0.1627461165189743, -0.021285446360707283, 0.0932445228099823, 0.7382289171218872, -0.06955865770578384, -0.32556799054145813, 0.320666640996933, -0.07908428460359573, -0.17993301153182983, -0.7865261435508728, 0.4846051335334778, 0.370231568813324, -0.10563389211893082, -0.08951601386070251, 0.06979317218065262, 0.5503668189048767, -0.30408066511154175, 0.7334019541740417, 0.021171914413571358, -0.4981202185153961, -0.3548087179660797, 0.6126971244812012, 0.19990047812461853, -0.4465944766998291, 1.0202481746673584, -0.1543954759836197, -0.5183862447738647, 0.6762683987617493, 0.3831319510936737, 0.8959794640541077, -0.2768993079662323, 0.16089074313640594, 0.7647282481193542, -0.062116920948028564, -0.07577189058065414, 0.6336874961853027, -0.7054452300071716, -0.7947585582733154, 0.14500758051872253, -0.4895709455013275, -0.2942046523094177, -0.2502255439758301, -1.3463497161865234, 0.3116244971752167, -0.5507593750953674, -0.42534494400024414, -0.023552080616354942, 0.1880953162908554, -0.989046037197113, 0.3469832241535187, 0.1492142230272293, 1.4663634300231934, -0.7278756499290466, 1.288805603981018, 0.7855174541473389, -0.44335511326789856, -0.4251508414745331, -0.2750793993473053, 0.07046215236186981, -0.8024428486824036, 0.41609424352645874, 0.35395774245262146, 0.1566513329744339, -0.18228422105312347, -0.518832802772522, -0.6227326393127441, 1.4904053211212158, 0.10967454314231873, -0.4184735119342804, 0.29217180609703064, -0.23205770552158356, 0.5036346316337585, -0.2682743966579437, 0.19091090559959412, 0.8900423049926758, 0.7664792537689209, 0.2635798156261444, -0.6287440061569214, -0.0976313054561615, -0.648399293422699, 0.051690198481082916, 0.4348815381526947, -0.6392051577568054, 0.17243601381778717, 0.0547780841588974, 0.022925635799765587, 0.07848331332206726, 0.6390390992164612, 0.44679659605026245, 0.9102896451950073, 0.2363927960395813, 1.1483737230300903, 0.7788257598876953, -0.10898525267839432, 0.9484308958053589, -0.03970485180616379, 0.2991395592689514, 1.5865262746810913, -0.18179379403591156, 0.7306246757507324, 0.7241591811180115, 0.010982618667185307, 0.43100506067276, 0.3505309820175171, -0.49232015013694763, 0.5482717752456665, 0.2610395550727844, -0.2558993995189667, -0.22765715420246124, -0.23604373633861542, -0.27079448103904724, 0.05892970785498619, 0.8368025422096252, -0.4508815109729767, 0.06282655894756317, -0.22542284429073334, -0.07307643443346024, 0.1183658018708229, -0.5475192070007324, 0.9395075440406799, 0.1665915697813034, -0.5719563364982605, -0.1451636254787445, -0.26505929231643677, 0.45916056632995605, -0.6859181523323059, -0.4676872789859772, 0.113314688205719, 0.4725233018398285, -0.4775470495223999, -1.3130277395248413, 0.8479825854301453, -0.5109300017356873, -0.6156821250915527, 0.0830952525138855, 0.9819607138633728, -0.685579240322113, -0.5976636409759521, 0.7111655473709106, 0.06449314206838608, 0.23465995490550995, -0.008968221955001354, -1.065250277519226, 0.0783824771642685, -0.3958675265312195, -0.20215846598148346, 0.3157593309879303, 0.16308987140655518, 0.01906154304742813, 0.7164499163627625, 0.5822042226791382, -0.014439010061323643, -0.16903428733348846, 0.3727358877658844, 0.9366303086280823, -0.7909663319587708, -0.4129948914051056, -0.6737192273139954, 0.49991902709007263, -0.4205070436000824, -0.4556657373905182, 0.6168425679206848, 1.0617676973342896, 1.2036921977996826, -0.22373518347740173, 0.4026705026626587, -0.12164223939180374, 0.42935115098953247, -0.44226229190826416, 0.9002016186714172, -0.2641662657260895, 0.01532063540071249, -0.19099165499210358, -0.7941944599151611, -0.7455432415008545, 0.47026634216308594, 0.10039275884628296, 0.16322310268878937, 0.4933599829673767, 1.1040096282958984, -0.12808820605278015, 0.008434843271970749, 0.38437965512275696, 0.21898764371871948, 0.10140969604253769, 0.6653167605400085, 0.14376194775104523, -0.7614508271217346, 0.3327557444572449, -0.3653620779514313, -0.2552812397480011, -0.006067594513297081, -0.8140921592712402, -1.0921152830123901, -0.8595649003982544, -0.5738309621810913, -0.46971410512924194, -0.015640079975128174, 0.7765500545501709, 0.8003314733505249, -1.114184021949768, -0.4017587900161743, -0.051318053156137466, 0.33930838108062744, -0.007926970720291138, -0.11689289659261703, 0.5563376545906067, 0.019717006012797356, -0.4169914424419403, -0.26680997014045715, 0.23886501789093018, 0.02237650938332081, 0.05103573948144913, -0.18266810476779938, -0.06545012444257736, -0.2602137625217438, 0.4791865646839142, 0.17869584262371063, -0.3172976076602936, -0.06478500366210938, -0.38078755140304565, -0.022142788395285606, 0.1022067591547966, 0.9047870635986328, -0.8138192892074585, 0.5015220046043396, 0.5973740816116333, 0.41577741503715515, 0.8947408199310303, -0.3306869864463806, 0.2706639766693115, -0.40855351090431213, 0.06802599132061005, -0.024735912680625916, 0.6875705122947693, 0.18407042324543, -0.40599679946899414, 0.8771453499794006, 0.48320257663726807, -0.4964011013507843, -0.372535765171051, 0.16854874789714813, -1.2938745021820068, 0.2574009597301483, 0.9688359498977661, -0.11039718985557556, -0.5199466347694397, -0.045727137476205826, -0.3145042061805725, 0.2541138231754303, -0.7681517601013184, 0.4591749906539917, 0.7742887139320374, 0.27947691082954407, -0.3065376281738281, -0.31488925218582153, 0.459431529045105, 0.02321275882422924, -0.8896598219871521, -0.0732220932841301, 0.5973050594329834, 0.36942335963249207, 0.13850124180316925, 0.838721752166748, -0.5250200629234314, 0.4614602029323578, 0.23859615623950958, 0.15418824553489685, -0.3271450698375702, -0.486222505569458, -0.3654002249240875, -0.042102038860321045, 0.0025556301698088646, -0.4811635911464691 ]
null
null
null
null
null
null
null
null
null
null
null
null
null
offcombr
null
2023-01-25T14:41:55Z
446
4
offcombr
[ "task_categories:text-classification", "annotations_creators:expert-generated", "language_creators:found", "multilinguality:monolingual", "size_categories:1K<n<10K", "source_datasets:original", "language:pt", "license:unknown", "hate-speech-detection", "region:us" ]
2023-01-25T14:41:55Z
2022-03-02T23:29:22.000Z
2022-03-02T23:29:22
--- annotations_creators: - expert-generated language_creators: - found language: - pt license: - unknown multilinguality: - monolingual size_categories: - 1K<n<10K source_datasets: - original task_categories: - text-classification task_ids: [] paperswithcode_id: offcombr pretty_name: Offensive Comments in the Brazilian Web tags: - hate-speech-detection dataset_info: - config_name: offcombr-2 features: - name: label dtype: class_label: names: '0': 'no' '1': 'yes' - name: text dtype: string splits: - name: train num_bytes: 105703 num_examples: 1250 download_size: 99956 dataset_size: 105703 - config_name: offcombr-3 features: - name: label dtype: class_label: names: '0': 'no' '1': 'yes' - name: text dtype: string splits: - name: train num_bytes: 90094 num_examples: 1033 download_size: 85215 dataset_size: 90094 --- # 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:** http://www.inf.ufrgs.br/~rppelle/hatedetector/ - **Repository:** https://github.com/rogersdepelle/OffComBR - **Paper:** https://sol.sbc.org.br/index.php/brasnam/article/view/3260/3222 - **Leaderboard:** - **Point of Contact:** ### Dataset Summary OffComBR: an annotated dataset containing for hate speech detection in Portuguese composed of news comments on the Brazilian Web. ### 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 [@hugoabonizio](https://github.com/hugoabonizio) for adding this dataset.
[ -0.5913020968437195, -0.5770580768585205, -0.0042812153697013855, 0.21891461312770844, -0.15560919046401978, 0.2194267362356186, -0.3007884621620178, -0.38162320852279663, 0.4930098056793213, 0.5654078125953674, -0.7738144993782043, -1.0531235933303833, -0.8735028505325317, -0.0033286986872553825, -0.2539163827896118, 1.3400739431381226, 0.10887746512889862, -0.11966843903064728, 0.02255083993077278, -0.3017767667770386, -0.3512701392173767, -0.49824702739715576, -0.5858082175254822, -0.18879249691963196, 0.624475359916687, 0.724476158618927, 0.628117561340332, 0.8915796875953674, 0.5181974768638611, 0.26384320855140686, -0.11418858170509338, 0.010176422074437141, -0.8914673924446106, -0.041815344244241714, -0.27486300468444824, -0.1180543377995491, -0.6304960250854492, 0.17050567269325256, 0.5101783871650696, 0.4148702025413513, -0.03607707470655441, 0.6304160952568054, 0.14126649498939514, 0.5034144520759583, -0.588083803653717, 0.6829084753990173, -0.41984742879867554, 0.049135722219944, -0.6585739254951477, -0.013243871740996838, -0.061824750155210495, -0.5438511371612549, -0.2638959288597107, -0.6068291068077087, 0.16915690898895264, 0.013844698667526245, 0.6212557554244995, 0.1305878460407257, -0.19062930345535278, -0.3525715172290802, -0.46004578471183777, 0.7303877472877502, -0.6493734121322632, 0.14850211143493652, 0.6883585453033447, 0.3240082859992981, 0.1505916714668274, -0.6981399655342102, -0.5986316204071045, 0.26468563079833984, -0.17251978814601898, 0.31773844361305237, -0.3963921070098877, -0.2086581587791443, 0.5696461200714111, 0.4400573670864105, -0.49387481808662415, 0.046509649604558945, -0.6830769777297974, -0.26472991704940796, 0.9825107455253601, 0.32628369331359863, 0.09995938092470169, -0.4149324893951416, 0.01421432476490736, -0.16051262617111206, -0.4144545793533325, -0.07339715957641602, 0.619109034538269, 0.6037680506706238, -0.5570123791694641, 0.649947464466095, -0.16132177412509918, 0.5528258681297302, -0.04493938758969307, -0.04172643646597862, 0.7267281413078308, -0.43526625633239746, 0.05915605276823044, 0.02934112586081028, 0.7819791436195374, 0.6398223042488098, 0.0955979973077774, 0.04159603640437126, -0.03345523402094841, 0.0784958004951477, 0.15283650159835815, -0.83465576171875, -0.3262454867362976, 0.4835153818130493, -0.6195381879806519, -0.46064063906669617, 0.050727203488349915, -1.234564185142517, -0.38922470808029175, -0.2761097252368927, 0.14038045704364777, -0.12722551822662354, -0.32472020387649536, -0.35894256830215454, -0.3575749099254608, 0.18258817493915558, 0.03645845502614975, -0.6522692441940308, 0.3577236831188202, 0.5159984827041626, 0.719301164150238, -0.30143043398857117, -0.11323174089193344, -0.2645549774169922, 0.2497006505727768, 0.05930621176958084, 0.586540162563324, -0.3682549297809601, -0.5339310765266418, 0.24030405282974243, 0.1561093032360077, 0.1170494481921196, -0.4371287524700165, 0.9866313934326172, -0.23680149018764496, 0.361071914434433, -0.5572969913482666, -0.4847734868526459, -0.1498871147632599, 0.37617290019989014, -0.7906157374382019, 1.4486949443817139, 0.2850205600261688, -0.9120374321937561, 0.3399835228919983, -1.091094970703125, -0.35233256220817566, 0.21768245100975037, -0.19316746294498444, -0.57679682970047, -0.4435024857521057, -0.12636978924274445, 0.569115161895752, -0.39026573300361633, 0.1575682908296585, -0.3737722635269165, -0.07062718272209167, -0.009936006739735603, 0.031002862378954887, 1.3715437650680542, 0.40797433257102966, -0.49596384167671204, 0.2098633497953415, -1.0234788656234741, -0.21963651478290558, 0.42726948857307434, -0.1976574957370758, -0.13966798782348633, -0.12143885344266891, 0.5454499125480652, 0.2653447985649109, 0.26657745242118835, -0.6233280897140503, -0.005935617722570896, 0.06403442472219467, 0.31563591957092285, 0.8008228540420532, 0.008388890884816647, 0.21969887614250183, -0.47378239035606384, 0.5021567344665527, 0.06573590636253357, 0.43777382373809814, 0.31320831179618835, -0.6821714043617249, -0.7134503126144409, -0.281156063079834, 0.017891637980937958, 0.7040579915046692, -0.5085917711257935, 0.832247793674469, -0.36830440163612366, -0.8176312446594238, -0.29618582129478455, 0.10826325416564941, 0.5154553055763245, 0.5264307260513306, 0.4700124263763428, -0.4331133961677551, -1.0172126293182373, -0.7674639225006104, 0.07532419264316559, -0.2031223624944687, 0.31745582818984985, 0.6150473356246948, 0.8314518332481384, -0.12847916781902313, 0.8909122347831726, -0.7972956895828247, -0.4555710554122925, -0.4761486351490021, 0.08750564604997635, 0.24902452528476715, 0.43589362502098083, 0.6927403211593628, -1.0079991817474365, -0.5709418058395386, -0.4201219975948334, -0.629238486289978, -0.4104710817337036, 0.2757880389690399, -0.33930668234825134, 0.004524032585322857, 0.2295132577419281, 0.03467046841979027, 0.534529983997345, 0.6183415651321411, -0.6009606122970581, 0.5129377841949463, 0.3651988208293915, 0.22221137583255768, -1.2541381120681763, 0.18895453214645386, 0.14466074109077454, 0.07675083726644516, -0.7327485084533691, -0.24303674697875977, -0.23932860791683197, 0.1273486316204071, -0.4438302218914032, 0.643260657787323, -0.1354646384716034, 0.21999116241931915, 0.10869675874710083, 0.1148303747177124, -0.1603703796863556, 0.5185456871986389, -0.08637560158967972, 0.4983225464820862, 0.571526288986206, -0.5491004586219788, 0.501402735710144, 0.6322587132453918, -0.29367509484291077, 0.7381065487861633, -0.6618495583534241, -0.005712300073355436, -0.2970268726348877, 0.13507238030433655, -0.9942282438278198, -0.3691880404949188, 0.7188175916671753, -0.6279215216636658, 0.09609664976596832, -0.3581975996494293, -0.7043511271476746, -0.5322993397712708, -0.48979565501213074, 0.2626382112503052, 0.35214343667030334, -0.2972986698150635, 0.33436647057533264, 1.0223734378814697, 0.01318608783185482, -0.41538339853286743, -0.9246322512626648, -0.03897436708211899, -0.30475443601608276, -0.4691626727581024, 0.573570191860199, -0.33393335342407227, -0.20552435517311096, -0.0033682610373944044, 0.4641294479370117, -0.22382314503192902, -0.00643033254891634, 0.524050772190094, 0.15372081100940704, 0.13829854130744934, -0.1779356747865677, -0.16029436886310577, 0.12208060175180435, 0.012255092151463032, 0.07074101269245148, 0.534229576587677, 0.22673724591732025, -0.13602952659130096, -0.14650891721248627, 0.46175530552864075, 0.2179752141237259, -0.16889436542987823, 0.6978827118873596, 1.01182222366333, -0.4194055497646332, -0.04428362473845482, -0.5310654640197754, -0.03750123083591461, -0.4021141529083252, 0.2577565312385559, -0.027019649744033813, -0.8749292492866516, 0.9868468642234802, 0.4678712785243988, 0.1749470978975296, 0.6094959378242493, 0.8009530305862427, 0.1946924924850464, 0.7360554933547974, 0.4095568060874939, -0.2862689197063446, 0.7561085224151611, -0.5420186519622803, 0.006248485762625933, -0.7065048813819885, -0.47655218839645386, -0.7860606908798218, -0.3823101222515106, -0.8833127617835999, -0.4733237028121948, 0.08394186943769455, -0.19219723343849182, -0.44168636202812195, 0.6252992153167725, -0.657796323299408, 0.3396144211292267, 0.7704071998596191, -0.037778954952955246, 0.011246871203184128, 0.021161770448088646, 0.01714390330016613, -0.14394938945770264, -0.6470640301704407, -0.476788192987442, 1.1027880907058716, 0.32115694880485535, 0.3529866933822632, 0.3276837468147278, 0.8188157081604004, 0.5155147910118103, 0.3130559027194977, -0.5876944065093994, 0.5689876079559326, -0.2861096262931824, -1.0180957317352295, -0.3221280872821808, -0.3831760585308075, -0.9406536221504211, -0.08869116753339767, -0.2442125827074051, -0.7458895444869995, 0.4825887978076935, 0.23670707643032074, -0.2592639625072479, 0.3213385343551636, -0.49845367670059204, 1.0815671682357788, 0.031919702887535095, -0.4509538412094116, -0.029303668066859245, -0.742415726184845, 0.12745358049869537, 0.09779046475887299, 0.5704877376556396, -0.2176450937986374, 0.16231608390808105, 1.3237606287002563, -0.3538931608200073, 1.173621416091919, -0.30922767519950867, 0.11350603401660919, 0.5254023671150208, -0.30434563755989075, 0.42318013310432434, -0.1446065753698349, -0.2416757494211197, 0.47641101479530334, -0.2328059822320938, -0.2359362244606018, -0.38833537697792053, 0.638805091381073, -0.7473554611206055, -0.15781375765800476, -0.42076265811920166, -0.4143604636192322, 0.09660587459802628, 0.3815552294254303, 0.2285039722919464, 0.23738230764865875, -0.3808513581752777, 0.2395779937505722, 0.4423118829727173, -0.11775749176740646, 0.21364857256412506, 0.4353269934654236, -0.11499559134244919, -0.7518894076347351, 0.8452542424201965, 0.564397931098938, -0.0482160709798336, 0.21496917307376862, 0.03917256370186806, -0.43491071462631226, -0.42134279012680054, -0.3280072808265686, 0.10439137369394302, -0.6971665024757385, -0.1908048540353775, -0.6297416090965271, -0.20402073860168457, -0.8861659169197083, 0.020527290180325508, -0.053791601210832596, -0.5450048446655273, -0.41963884234428406, -0.33660969138145447, 0.6636085510253906, 0.5841727256774902, -0.6662896275520325, 0.3373905122280121, -0.5698906779289246, 0.3852592706680298, 0.03397425636649132, 0.49121105670928955, -0.026990287005901337, -0.6917480826377869, -0.49431219696998596, 0.08393589407205582, -0.5052334070205688, -0.9698380827903748, 0.46379944682121277, 0.004500050563365221, 0.8165251612663269, 0.2408381849527359, 0.19659344851970673, 0.5026585459709167, -0.19456470012664795, 1.0092419385910034, -0.018288755789399147, -0.5734080076217651, 0.6832211017608643, -0.5945366621017456, 0.02180974744260311, 0.7592917680740356, 0.622810423374176, -0.6687636375427246, -0.1926635056734085, -0.8817837238311768, -1.047299861907959, 0.9207442402839661, 0.4138750731945038, 0.12903475761413574, -0.3261585533618927, 0.016805492341518402, -0.11043448001146317, 0.15807068347930908, -0.916147768497467, -1.1154000759124756, -0.3807116150856018, -0.3112572133541107, 0.010257885791361332, -0.39583656191825867, -0.4023955166339874, -0.466863751411438, 0.9082934260368347, 0.257681280374527, 0.27080172300338745, -0.11794073134660721, 0.09597975015640259, 0.018562117591500282, 0.23130880296230316, 0.34049105644226074, 0.48005378246307373, -0.46931883692741394, -0.04279477149248123, -0.04566425457596779, -0.6544957160949707, -0.1513035148382187, 0.21716633439064026, -0.32171788811683655, -0.07106990367174149, 0.26277071237564087, 0.8281150460243225, 0.08141177147626877, -0.3430718779563904, 0.6100756525993347, 0.11202346533536911, -0.2912884056568146, -0.6842308044433594, 0.013038619421422482, -0.19800257682800293, 0.19475701451301575, 0.3510628044605255, -0.24554212391376495, 0.2155231386423111, -0.5249395966529846, 0.37119564414024353, 0.11200857907533646, -0.4771350026130676, -0.21723119914531708, 0.6140384674072266, 0.2218252569437027, -0.3265773355960846, 0.2989584505558014, -0.4494512379169464, -0.5754488706588745, 0.6795101761817932, 0.3170354962348938, 0.757499635219574, -0.14066796004772186, 0.4728263318538666, 0.7656458020210266, 0.303963840007782, 0.09741409868001938, 0.6813215613365173, -0.11317215114831924, -0.8658654093742371, -0.10541080683469772, -0.5459461212158203, -0.2609158158302307, 0.15863917768001556, -0.9405299425125122, 0.37887904047966003, -0.5548141002655029, -0.25350385904312134, 0.1387220174074173, 0.15995195508003235, -0.8178149461746216, 0.33833470940589905, 0.08702102303504944, 0.8037809729576111, -1.0612542629241943, 0.6899005770683289, 0.5669492483139038, -0.8410603404045105, -0.6802285313606262, -0.45637819170951843, 0.45410433411598206, -0.7739101648330688, 0.6368483901023865, -0.14398731291294098, 0.3540835678577423, 0.05123736709356308, -0.7371455430984497, -0.8182159066200256, 1.146588683128357, 0.04031985625624657, -0.26077714562416077, 0.3531927168369293, 0.32674163579940796, 0.5990967154502869, -0.42237597703933716, 0.3086712956428528, 0.6804900169372559, 0.8088199496269226, 0.25852659344673157, -0.6024734973907471, 0.21819879114627838, -0.45847755670547485, -0.2172730416059494, 0.042107563465833664, -0.6979658603668213, 0.6897360682487488, 0.11096831411123276, -0.17970137298107147, -0.35627666115760803, 0.5350918769836426, 0.24282827973365784, 0.38305479288101196, 0.4336836636066437, 0.8390677571296692, 0.6413220167160034, -0.19201669096946716, 0.924876868724823, -0.24121466279029846, 0.42043429613113403, 1.3721543550491333, 0.028534619137644768, 0.6360902190208435, 0.1823681890964508, -0.3868981599807739, 0.4273434281349182, 0.557383120059967, -0.45220431685447693, 0.4699443280696869, 0.32414665818214417, 0.017271189019083977, 0.020127270370721817, -0.5598119497299194, -0.48154324293136597, 0.5936673283576965, 0.4017455279827118, -0.6363899111747742, -0.14935562014579773, -0.20215709507465363, 0.3742891252040863, 0.055069275200366974, -0.48296281695365906, 0.7659283876419067, -0.2952028512954712, -0.319952130317688, 0.2925224006175995, -0.04583455249667168, 0.7417184114456177, -0.48277315497398376, -0.08704873919487, -0.13077132403850555, 0.002243467839434743, -0.4999062120914459, -1.1270287036895752, 0.63520348072052, 0.1292034089565277, -0.6182625889778137, -0.2793580889701843, 0.4337713122367859, -0.48687613010406494, -0.6336196064949036, 0.3957476019859314, 0.24713537096977234, 0.31001660227775574, 0.10267163068056107, -1.0519546270370483, 0.4423424005508423, 0.13315315544605255, -0.16029570996761322, 0.23050987720489502, 0.38306358456611633, -0.13547645509243011, 0.30780208110809326, 0.617673397064209, 0.30048054456710815, 0.1025780662894249, 0.44326749444007874, 0.9472823143005371, -0.6688214540481567, -0.34423547983169556, -0.6202461123466492, 0.6582484245300293, -0.5302087068557739, -0.5166141986846924, 1.0166616439819336, 0.9124825596809387, 1.237217903137207, 0.15467825531959534, 1.0638861656188965, -0.7268586158752441, 0.9443759918212891, -0.03666369989514351, 0.8941054940223694, -0.4752924144268036, -0.15876545011997223, -0.6717085838317871, -0.8379908204078674, -0.5650335550308228, 0.6639270782470703, -0.42365503311157227, 0.11289187520742416, 0.31354138255119324, 1.0998210906982422, 0.05624891817569733, 0.09218457341194153, 0.2546359896659851, 0.5848191380500793, 0.3128531873226166, 0.13872584700584412, 0.28165268898010254, -0.6226897835731506, 0.7285292148590088, -0.5775681138038635, -0.2863854765892029, -0.1269339621067047, -0.9788790941238403, -0.8038367629051208, -0.9220542311668396, -0.6592020988464355, -0.6193636059761047, 0.01260288991034031, 0.9967937469482422, 0.6434922814369202, -1.1894437074661255, -0.47733283042907715, 0.27496710419654846, 0.23200654983520508, -0.057546742260456085, -0.2717539966106415, 0.3552705645561218, 0.2850932776927948, -0.7340689897537231, -0.11844330281019211, -0.022743161767721176, -0.06678174436092377, -0.12145918607711792, -0.2055412083864212, -0.4175531566143036, -0.163873091340065, 0.5832744240760803, 0.49742603302001953, -0.5038741827011108, -0.27724137902259827, -0.28659966588020325, -0.04056231677532196, 0.00854699406772852, 0.5609862804412842, -0.22157007455825806, 0.27108028531074524, 0.6737738847732544, 0.2035844475030899, 0.5297892093658447, -0.06633114814758301, 0.06471928209066391, -0.7399947047233582, 0.12282338738441467, 0.24995623528957367, 0.399784117937088, 0.3374267518520355, -0.4054407775402069, 0.7419439554214478, 0.3617059588432312, -0.5372484922409058, -0.7551016211509705, 0.027365531772375107, -1.2252012491226196, 0.11919546872377396, 1.3823500871658325, -0.04529760032892227, -0.2303217649459839, -0.5711961984634399, -0.2977312207221985, 0.49168455600738525, -0.8567348718643188, 0.6651821732521057, 0.7785200476646423, 0.04630044847726822, -0.07435902953147888, -0.3213958740234375, 0.639900803565979, -0.24549999833106995, -0.9148287773132324, 0.16175483167171478, 0.7136726975440979, 0.09706571698188782, 0.3162813186645508, 0.8036249876022339, -0.40931475162506104, 0.022037390619516373, -0.07795713096857071, 0.35047194361686707, -0.1384183168411255, -0.09733452647924423, 0.01810838095843792, 0.1247142106294632, -0.2824426591396332, -0.11838636547327042 ]
null
null
null
null
null
null
null
null
null
null
null
null
null
style_change_detection
null
2023-04-05T13:41:00Z
445
0
null
[ "region:us" ]
2023-04-05T13:41:00Z
2022-03-02T23:29:22.000Z
2022-03-02T23:29:22
--- paperswithcode_id: null pretty_name: StyleChangeDetection dataset_info: - config_name: narrow features: - name: id dtype: string - name: text dtype: string - name: authors dtype: int32 - name: structure sequence: string - name: site dtype: string - name: multi-author dtype: bool - name: changes sequence: bool splits: - name: train num_bytes: 40499150 num_examples: 3418 - name: validation num_bytes: 20447137 num_examples: 1713 download_size: 0 dataset_size: 60946287 - config_name: wide features: - name: id dtype: string - name: text dtype: string - name: authors dtype: int32 - name: structure sequence: string - name: site dtype: string - name: multi-author dtype: bool - name: changes sequence: bool splits: - name: train num_bytes: 97403392 num_examples: 8030 - name: validation num_bytes: 48850089 num_examples: 4019 download_size: 0 dataset_size: 146253481 --- # Dataset Card for "style_change_detection" ## 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://pan.webis.de/clef20/pan20-web/style-change-detection.html](https://pan.webis.de/clef20/pan20-web/style-change-detection.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.00 MB - **Size of the generated dataset:** 207.20 MB - **Total amount of disk used:** 207.20 MB ### Dataset Summary The goal of the style change detection task is to identify text positions within a given multi-author document at which the author switches. Detecting these positions is a crucial part of the authorship identification process, and for multi-author document analysis in general. Access to the dataset needs to be requested from zenodo. ### 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 #### narrow - **Size of downloaded dataset files:** 0.00 MB - **Size of the generated dataset:** 60.94 MB - **Total amount of disk used:** 60.94 MB An example of 'validation' looks as follows. ``` { "authors": 2, "changes": [false, false, true, false], "id": "2", "multi-author": true, "site": "exampleSite", "structure": ["A1", "A2"], "text": "This is text from example problem 2.\n" } ``` #### wide - **Size of downloaded dataset files:** 0.00 MB - **Size of the generated dataset:** 146.26 MB - **Total amount of disk used:** 146.26 MB An example of 'train' looks as follows. ``` { "authors": 2, "changes": [false, false, true, false], "id": "2", "multi-author": true, "site": "exampleSite", "structure": ["A1", "A2"], "text": "This is text from example problem 2.\n" } ``` ### Data Fields The data fields are the same among all splits. #### narrow - `id`: a `string` feature. - `text`: a `string` feature. - `authors`: a `int32` feature. - `structure`: a `list` of `string` features. - `site`: a `string` feature. - `multi-author`: a `bool` feature. - `changes`: a `list` of `bool` features. #### wide - `id`: a `string` feature. - `text`: a `string` feature. - `authors`: a `int32` feature. - `structure`: a `list` of `string` features. - `site`: a `string` feature. - `multi-author`: a `bool` feature. - `changes`: a `list` of `bool` features. ### Data Splits | name |train|validation| |------|----:|---------:| |narrow| 3418| 1713| |wide | 8030| 4019| ## 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{bevendorff2020shared, title={Shared Tasks on Authorship Analysis at PAN 2020}, author={Bevendorff, Janek and Ghanem, Bilal and Giachanou, Anastasia and Kestemont, Mike and Manjavacas, Enrique and Potthast, Martin and Rangel, Francisco and Rosso, Paolo and Specht, G{"u}nther and Stamatatos, Efstathios and others}, booktitle={European Conference on Information Retrieval}, pages={508--516}, year={2020}, organization={Springer} } ``` ### Contributions Thanks to [@lewtun](https://github.com/lewtun), [@ghomasHudson](https://github.com/ghomasHudson), [@thomwolf](https://github.com/thomwolf), [@lhoestq](https://github.com/lhoestq) for adding this dataset.
[ -0.5552391409873962, -0.4767557382583618, 0.26554223895072937, 0.19527927041053772, -0.16297753155231476, -0.04140665754675865, -0.37444013357162476, -0.4471091628074646, 0.5867530703544617, 0.48330801725387573, -0.798430323600769, -0.8764967918395996, -0.6480730175971985, 0.26041552424430847, -0.22392171621322632, 1.0919164419174194, -0.22301627695560455, -0.2734087407588959, -0.2527526617050171, -0.26967713236808777, -0.3066975772380829, -0.2807133197784424, -0.3472888767719269, -0.1411297470331192, 0.3436790406703949, 0.5401990413665771, 0.5070427656173706, 0.918042778968811, 0.598309338092804, 0.27664023637771606, 0.010348890908062458, 0.0337071493268013, -0.44567379355430603, 0.06664799898862839, -0.007200023625046015, -0.276536226272583, -0.5346910953521729, 0.10771442204713821, 0.5800565481185913, 0.507476270198822, 0.01958104968070984, 0.48983991146087646, -0.01761661469936371, 0.9576400518417358, -0.5381108522415161, 0.5499670505523682, -0.3282012939453125, -0.24645037949085236, -0.6019578576087952, -0.07874293625354767, -0.09613458812236786, -0.30051755905151367, -0.19152933359146118, -0.7452344298362732, 0.2960596978664398, -0.04738131910562515, 0.8782835006713867, 0.17455358803272247, -0.1692076474428177, -0.30820855498313904, -0.4417881965637207, 0.6712468862533569, -0.7968090176582336, 0.1985907405614853, 0.5342230200767517, 0.09237747639417648, -0.11905001848936081, -0.6201290488243103, -0.7084845900535583, 0.2525058388710022, -0.2167387753725052, 0.21182239055633545, -0.07467634975910187, -0.45951709151268005, 0.4790641665458679, 0.5282248258590698, -0.6043833494186401, -0.18355754017829895, -0.5000360012054443, -0.1413217931985855, 1.2614585161209106, 0.2318309247493744, 0.16441261768341064, -0.4273989200592041, -0.028782283887267113, -0.503710150718689, -0.31654149293899536, 0.15704214572906494, 0.6474325060844421, 0.6320766806602478, -0.6946379542350769, 0.5051461458206177, -0.19862784445285797, 0.4623121917247772, 0.03848116472363472, -0.0350923053920269, 0.6769092082977295, -0.7888047695159912, -0.015773126855492592, -0.18380972743034363, 0.9588122963905334, 0.5318841338157654, -0.036622148007154465, 0.2011350691318512, 0.0824395939707756, -0.14102163910865784, -0.12466872483491898, -0.7648476958274841, -0.49798402190208435, 0.6506472826004028, -0.6147575974464417, -0.4585524797439575, 0.340552419424057, -1.3347949981689453, -0.4497779309749603, -0.4684846103191376, 0.2024933397769928, -0.21182477474212646, -0.6350278258323669, 0.05585892125964165, -0.2806733548641205, 0.3928638696670532, 0.27300938963890076, -0.5951271057128906, 0.25259634852409363, 0.577656626701355, 0.7342486381530762, -0.0971301719546318, -0.28831812739372253, -0.23259791731834412, -0.08790706843137741, -0.12474527955055237, 0.5439411401748657, -0.39828434586524963, -0.35733678936958313, -0.12480928748846054, 0.3621240556240082, -0.136524498462677, -0.17426618933677673, 0.8054943084716797, -0.08393598347902298, 0.3480779230594635, -0.7599144577980042, -0.4591391980648041, 0.045433443039655685, 0.16461805999279022, -0.9436196088790894, 1.258950114250183, 0.2852626144886017, -1.045305609703064, 0.34136706590652466, -0.9590216279029846, -0.4122201204299927, 0.0714820995926857, 0.05823364108800888, -0.8009830117225647, -0.3798249363899231, 0.1887175440788269, 0.4695497453212738, -0.3302031457424164, 0.1935129016637802, -0.37629222869873047, -0.10411214083433151, 0.055852968245744705, 0.306583434343338, 1.4303301572799683, 0.10149798542261124, -0.33141860365867615, 0.08357256650924683, -0.9321156740188599, -0.17240017652511597, 0.5163335800170898, -0.30053091049194336, -0.11320317536592484, -0.19230516254901886, 0.5817264318466187, 0.10721670091152191, 0.23216943442821503, -0.4767565131187439, 0.4592381417751312, 0.11136851459741592, 0.25821182131767273, 0.7586166858673096, 0.07378793507814407, 0.2184310257434845, -0.44384071230888367, 0.26625964045524597, -0.00851301196962595, 0.35644397139549255, 0.014909380115568638, -0.5623554587364197, -0.5639200210571289, -0.22014541923999786, 0.473834365606308, 0.5930248498916626, -0.6503445506095886, 0.8356705904006958, -0.4574536681175232, -0.6989271640777588, -0.468392938375473, 0.24122358858585358, 0.17267359793186188, 0.38734671473503113, 0.45419052243232727, -0.4222727417945862, -0.7548657059669495, -0.6925434470176697, 0.02032509818673134, -0.09589840471744537, 0.16701249778270721, 0.45637649297714233, 1.0064500570297241, -0.26254743337631226, 0.8617725968360901, -0.7971895933151245, -0.35490474104881287, -0.2324955016374588, -0.01749333180487156, 0.2666292190551758, 0.688401460647583, 0.8053950667381287, -0.958976686000824, -0.5364062786102295, -0.28749871253967285, -0.6597610116004944, -0.15631812810897827, -0.03871147334575653, -0.254102498292923, 0.209782674908638, 0.45962944626808167, -0.4789314270019531, 0.45408615469932556, 0.3376683294773102, -0.5506054162979126, 0.6113557815551758, 0.06649596989154816, 0.19708897173404694, -1.3910431861877441, 0.48698145151138306, 0.18741025030612946, 0.036949172616004944, -0.5791974663734436, -0.10356730967760086, -0.04112035781145096, 0.055191174149513245, -0.10545375198125839, 0.6569163203239441, -0.47901856899261475, 0.04716707393527031, 0.2084328532218933, -0.03161482885479927, 0.056095290929079056, 0.5674493908882141, -0.17249682545661926, 0.5103978514671326, 0.7596571445465088, -0.4686881899833679, 0.4683559834957123, 0.46199169754981995, -0.24426770210266113, 0.6809974908828735, -0.5739166140556335, 0.23246654868125916, -0.24854294955730438, 0.3665315508842468, -0.9270176887512207, -0.5764732956886292, 0.6668100357055664, -0.5915456414222717, 0.49104490876197815, -0.36399975419044495, -0.7045848965644836, -0.5481550693511963, -0.7464703321456909, 0.10166247189044952, 0.17134533822536469, -0.3308189809322357, 0.4638705253601074, 0.5867440104484558, -0.07727011293172836, -0.3469178378582001, -0.678057849407196, 0.030238691717386246, -0.13644418120384216, -0.7374438643455505, 0.4637375771999359, -0.3741179406642914, -0.18895816802978516, 0.16231435537338257, 0.18572738766670227, 0.005315091926604509, -0.008891258388757706, 0.10060665011405945, 0.16349123418331146, 0.10241734981536865, -0.07047703117132187, -0.06201454997062683, -0.10429440438747406, -0.056760117411613464, -0.05619792267680168, 0.34993064403533936, -0.08516725152730942, -0.2475806474685669, -0.330704003572464, 0.3297448754310608, 0.5013609528541565, -0.28069716691970825, 0.6793811917304993, 1.0411081314086914, -0.29308995604515076, 0.08544524759054184, -0.4363926649093628, -0.05988483503460884, -0.3827066421508789, 0.17072829604148865, -0.1331561654806137, -0.5605924725532532, 0.9115500450134277, 0.18908214569091797, 0.3178071677684784, 0.8427655100822449, 0.5643655061721802, -0.033578164875507355, 0.5538346767425537, 0.3792066276073456, -0.18015380203723907, 0.6782952547073364, -0.5847819447517395, -0.22643280029296875, -0.853924036026001, -0.33037203550338745, -0.7754001021385193, -0.5442333817481995, -0.9743326306343079, -0.3782119154930115, 0.14443501830101013, -0.04794331267476082, -0.15263910591602325, 0.5527783632278442, -0.7980093955993652, 0.25126078724861145, 0.6450289487838745, 0.18384358286857605, -0.02945144660770893, -0.08705729246139526, 0.15987245738506317, 0.09644389152526855, -0.33189767599105835, -0.17362917959690094, 1.432732105255127, 0.212589293718338, 0.46420055627822876, 0.26846566796302795, 0.8256441354751587, 0.43306151032447815, -0.10570474714040756, -0.3915446996688843, 0.4822714626789093, -0.16328345239162445, -0.5390229225158691, -0.385426789522171, -0.45457035303115845, -1.0520411729812622, -0.07120928913354874, -0.30286678671836853, -0.613974928855896, 0.7016094923019409, 0.0037956146989017725, 0.0465354323387146, 0.3819727599620819, -0.6239985823631287, 0.9133537411689758, -0.05587426573038101, -0.49295637011528015, 0.18125782907009125, -1.0888091325759888, 0.16204489767551422, 0.0852150246500969, 0.3763185441493988, -0.18234078586101532, 0.12090308964252472, 1.1722619533538818, -0.6138163805007935, 0.7946714162826538, -0.4740995764732361, 0.18411903083324432, 0.32401490211486816, -0.1749957650899887, 0.49536192417144775, 0.05113215371966362, -0.32387614250183105, 0.3953567445278168, 0.07585466653108597, -0.478967547416687, -0.31975874304771423, 0.5826608538627625, -0.6889517307281494, -0.04720178619027138, -0.46897798776626587, -0.4910790026187897, 0.0748131275177002, 0.3625152111053467, 0.2939472496509552, 0.3061455488204956, -0.028278926387429237, 0.3080188035964966, 0.6313732862472534, -0.07800513505935669, 0.3262615501880646, 0.2797151505947113, -0.08387450873851776, -0.6477728486061096, 0.7922304272651672, 0.24713099002838135, -0.07842003554105759, 0.2573340833187103, 0.25650811195373535, -0.2401599884033203, -0.39688754081726074, -0.5744321346282959, 0.21936587989330292, -0.5049673318862915, -0.31040170788764954, -0.540848433971405, -0.11276528239250183, -0.7058046460151672, 0.0019175104098394513, -0.20612795650959015, -0.5187091827392578, -0.30591461062431335, -0.12971222400665283, 0.8180676102638245, 0.4872637391090393, -0.5582554340362549, 0.04701807722449303, -0.3909273147583008, 0.16857992112636566, -0.006415897980332375, 0.4184148907661438, -0.1432691365480423, -0.3062645494937897, -0.3246144652366638, 0.05375697836279869, -0.20631657540798187, -0.7293463945388794, 0.26574230194091797, -0.06372474133968353, 0.48201778531074524, -0.01859927922487259, 0.18357627093791962, 0.4662478268146515, 0.014346572570502758, 0.8456366062164307, -0.1499987095594406, -0.7648138999938965, 0.707360029220581, -0.5245907306671143, 0.3294331729412079, 0.9657607674598694, 0.33780157566070557, -0.5398445129394531, -0.0493902862071991, -0.7568650245666504, -0.9385451078414917, 0.9872849583625793, 0.4783163070678711, -0.19544094800949097, 0.2908758223056793, 0.39854195713996887, -0.01566961221396923, 0.2359854280948639, -0.6517294645309448, -0.7843937277793884, -0.24930411577224731, -0.24972307682037354, 0.06951344758272171, -0.1192496120929718, -0.29214879870414734, -0.5383524894714355, 0.9127380847930908, -0.1465654969215393, 0.410420686006546, 0.29939016699790955, 0.06124167516827583, -0.22745318710803986, 0.15768396854400635, 0.5203526616096497, 0.546252965927124, -0.4509066641330719, -0.12283878028392792, -0.1566147804260254, -0.7121062278747559, -0.2657133638858795, 0.5524176955223083, -0.3353434205055237, 0.0464654304087162, 0.5430227518081665, 0.6999554634094238, -0.0110436687245965, -0.09736596047878265, 0.5563048124313354, -0.06434269994497299, -0.4655093252658844, -0.2874462306499481, -0.09041758626699448, -0.019333479925990105, 0.010640447959303856, 0.31808406114578247, 0.07488860189914703, 0.10318347811698914, -0.4515542685985565, 0.27710869908332825, 0.20492863655090332, -0.2142672836780548, -0.40708091855049133, 0.49333223700523376, 0.11624965071678162, -0.10849244892597198, 0.5288623571395874, -0.3693667948246002, -0.5996577739715576, 0.7988909482955933, 0.04858013987541199, 0.8745220899581909, -0.1677788496017456, 0.15419568121433258, 0.7059823870658875, 0.33291345834732056, -0.03715360537171364, 0.5593281984329224, -0.12578929960727692, -0.7394387722015381, -0.032200887799263, -0.5193930864334106, -0.2599068582057953, 0.2218753844499588, -0.7946838736534119, 0.504632294178009, -0.385718435049057, -0.07782960683107376, 0.24439303576946259, 0.5370075702667236, -0.8527443408966064, -0.0719066634774208, -0.1680024117231369, 0.872814416885376, -1.1281934976577759, 0.5064424872398376, 0.6856016516685486, -0.7168459892272949, -0.7631644010543823, -0.05171600356698036, 0.45775413513183594, -0.3730173110961914, 0.18720786273479462, -0.012899092398583889, 0.4731481373310089, -0.22151657938957214, -0.911318302154541, -0.7618575692176819, 1.328352689743042, 0.19275540113449097, -0.40240809321403503, 0.29805195331573486, 0.06570862978696823, 0.5171850323677063, -0.17418713867664337, 0.15009211003780365, 0.5617863535881042, 0.9011285305023193, 0.21980167925357819, -0.8291438221931458, 0.21498046815395355, -0.5895249843597412, -0.2422640323638916, 0.2910182476043701, -0.8580348491668701, 0.8532214164733887, 0.02459443174302578, -0.05305749922990799, -0.16809219121932983, 0.40777453780174255, 0.20854371786117554, 0.4487135410308838, 0.424458771944046, 0.7671753168106079, 0.9218918681144714, -0.2972816824913025, 1.1195261478424072, -0.2428104728460312, 0.6671866774559021, 1.0536247491836548, -0.17907066643238068, 0.564021110534668, 0.25936493277549744, -0.4885987937450409, 0.5799837708473206, 0.6436680555343628, -0.4562358856201172, 0.32485106587409973, 0.09204021841287613, 0.04623690992593765, -0.03341095522046089, -0.11787310242652893, -0.7008429169654846, 0.3597545325756073, 0.2539328634738922, -0.29499930143356323, -0.06610020995140076, -0.18751110136508942, 0.3812703490257263, -0.1199045479297638, -0.12617012858390808, 0.7730977535247803, -0.20498570799827576, -0.19035951793193817, 0.2766259014606476, -0.013720178976655006, 0.6441558003425598, -0.6265507936477661, 0.019130490720272064, -0.22807182371616364, 0.1185058206319809, -0.5828061699867249, -1.0580229759216309, 0.4659028649330139, -0.15903468430042267, -0.45813751220703125, -0.3194564878940582, 0.7173832654953003, -0.4336620271205902, -0.8266586065292358, 0.2569744884967804, 0.3199561834335327, 0.2168789505958557, 0.21812497079372406, -1.1273387670516968, 0.5319554805755615, 0.15061287581920624, -0.3786540925502777, 0.2819136083126068, 0.4265807569026947, -0.07425684481859207, 0.3085859715938568, 0.8121821880340576, -0.006074353586882353, -0.19261562824249268, 0.20307514071464539, 0.9239742755889893, -0.5268528461456299, -0.3638279438018799, -0.6546092629432678, 0.6837598085403442, -0.4378328323364258, -0.344607412815094, 0.6889382600784302, 0.9611091613769531, 1.023152470588684, -0.03815325349569321, 0.8273158073425293, -0.7210562229156494, 0.5921594500541687, -0.3029786944389343, 0.8094130158424377, -0.6492858529090881, 0.06915279477834702, -0.7134007811546326, -0.741850733757019, -0.4910038113594055, 0.415861040353775, -0.20700286328792572, 0.22995933890342712, 0.3190602660179138, 0.9422744512557983, 0.03706613555550575, 0.08141100406646729, -0.24676166474819183, 0.2598165273666382, 0.42682337760925293, 0.41264453530311584, 0.08223946392536163, -0.8200002908706665, 0.43847957253456116, -0.560509443283081, -0.2629050314426422, -0.2372145801782608, -0.9533662796020508, -0.6679127812385559, -1.1055585145950317, -0.686723530292511, -0.6015284657478333, -0.11524230986833572, 0.9981834888458252, 0.7116233110427856, -1.0304713249206543, -0.30132272839546204, -0.04260348156094551, 0.2618047595024109, -0.2588351368904114, -0.35881635546684265, 0.7459673285484314, 0.3077530562877655, -0.6556684970855713, -0.0016657153610140085, 0.019897470250725746, -0.07750143855810165, -0.07016075402498245, -0.045685071498155594, -0.5357354283332825, -0.26773861050605774, 0.3694419860839844, 0.475570946931839, -0.3464326858520508, -0.05980220437049866, -0.19472119212150574, 0.041470564901828766, 0.19276244938373566, 0.6133481860160828, -0.34490445256233215, 0.4179607033729553, 0.7627702951431274, 0.3470749855041504, 0.7427847981452942, 0.038432758301496506, 0.12380810081958771, -0.7477052211761475, -0.09597145020961761, -0.07242052257061005, 0.4019588828086853, 0.5055559873580933, -0.5601151585578918, 0.9271457195281982, 0.5612154603004456, -0.49419787526130676, -0.7801530957221985, -0.08811349421739578, -1.2998806238174438, -0.10637076944112778, 1.1266776323318481, 0.09848512709140778, -0.25637373328208923, -0.17792192101478577, -0.19119341671466827, 0.15426082909107208, -0.6811067461967468, 0.42844414710998535, 0.7821260690689087, -0.11872230470180511, -0.08446948230266571, -0.34018442034721375, 0.6116703152656555, -0.1661706268787384, -1.0617790222167969, 0.2932332456111908, 0.45523205399513245, 0.3376275897026062, 0.44996440410614014, 0.681648313999176, -0.30023854970932007, 0.0868302658200264, 0.006267447490245104, 0.2852364182472229, -0.35596731305122375, -0.12918388843536377, -0.2881803512573242, -0.09451077878475189, -0.43162086606025696, -0.0954744890332222 ]
null
null
null
null
null
null
null
null
null
null
null
null
null
GEM/OrangeSum
GEM
2022-09-03T18:26:49Z
445
0
null
[ "task_categories:summarization", "annotations_creators:unknown", "language_creators:unknown", "multilinguality:unknown", "size_categories:unknown", "source_datasets:original", "language:fr", "license:other", "region:us" ]
2022-09-03T18:26:49Z
2022-03-02T23:29:22.000Z
2022-03-02T23:29:22
--- annotations_creators: - unknown language_creators: - unknown language: - fr license: - other multilinguality: - unknown pretty_name: OrangeSum size_categories: - unknown source_datasets: - original task_categories: - summarization task_ids: - unknown --- # Dataset Card for GEM/OrangeSum ## Dataset Description - **Homepage:** [Needs More Information] - **Repository:** https://github.com/Tixierae/OrangeSum - **Paper:** https://aclanthology.org/2021.emnlp-main.740 - **Leaderboard:** N/A - **Point of Contact:** [Needs More Information] ### Link to Main Data Card You can find the main data card on the [GEM Website](https://gem-benchmark.com/data_cards/OrangeSum). ### Dataset Summary OrangeSum is a French summarization dataset inspired by XSum. It features two subtasks: abstract generation and title generation. The data was sourced from "Orange Actu" articles between 2011 and 2020. You can load the dataset via: ``` import datasets data = datasets.load_dataset('GEM/OrangeSum') ``` The data loader can be found [here](https://huggingface.co/datasets/GEM/OrangeSum). #### paper [ACL Anthology](https://aclanthology.org/2021.emnlp-main.740) ## Dataset Overview ### Where to find the Data and its Documentation #### Download <!-- info: What is the link to where the original dataset is hosted? --> <!-- scope: telescope --> [Github](https://github.com/Tixierae/OrangeSum) #### Paper <!-- info: What is the link to the paper describing the dataset (open access preferred)? --> <!-- scope: telescope --> [ACL Anthology](https://aclanthology.org/2021.emnlp-main.740) #### 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{kamal-eddine-etal-2021-barthez, title = "{BART}hez: a Skilled Pretrained {F}rench Sequence-to-Sequence Model", author = "Kamal Eddine, Moussa and Tixier, Antoine and Vazirgiannis, Michalis", booktitle = "Proceedings of the 2021 Conference on Empirical Methods in Natural Language Processing", month = nov, year = "2021", address = "Online and Punta Cana, Dominican Republic", publisher = "Association for Computational Linguistics", url = "https://aclanthology.org/2021.emnlp-main.740", doi = "10.18653/v1/2021.emnlp-main.740", pages = "9369--9390", abstract = "Inductive transfer learning has taken the entire NLP field by storm, with models such as BERT and BART setting new state of the art on countless NLU tasks. However, most of the available models and research have been conducted for English. In this work, we introduce BARThez, the first large-scale pretrained seq2seq model for French. Being based on BART, BARThez is particularly well-suited for generative tasks. We evaluate BARThez on five discriminative tasks from the FLUE benchmark and two generative tasks from a novel summarization dataset, OrangeSum, that we created for this research. We show BARThez to be very competitive with state-of-the-art BERT-based French language models such as CamemBERT and FlauBERT. We also continue the pretraining of a multilingual BART on BARThez{'} corpus, and show our resulting model, mBARThez, to significantly boost BARThez{'} generative performance.", } ``` #### 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 --> no #### Covered Languages <!-- quick --> <!-- info: What languages/dialects are covered in the dataset? --> <!-- scope: telescope --> `French` #### License <!-- quick --> <!-- info: What is the license of the dataset? --> <!-- scope: telescope --> other: Other license #### Primary Task <!-- info: What primary task does the dataset support? --> <!-- scope: telescope --> Summarization ### Credit ### Dataset Structure ## Dataset in GEM ### Rationale for Inclusion in GEM #### Similar Datasets <!-- info: Do other datasets for the high level task exist? --> <!-- scope: telescope --> no ### 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 --> no #### Additional Splits? <!-- info: Does GEM provide additional splits to the dataset? --> <!-- scope: telescope --> no ### 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 --> Papers about abstractive summarization using seq2seq models: - [Abstractive Text Summarization using Sequence-to-sequence RNNs and Beyond](https://aclanthology.org/K16-1028/) - [Get To The Point: Summarization with Pointer-Generator Networks](https://aclanthology.org/P17-1099/) - [BART: Denoising Sequence-to-Sequence Pre-training for Natural Language Generation, Translation, and Comprehension](https://aclanthology.org/2020.acl-main.703) - [BARThez: a Skilled Pretrained French Sequence-to-Sequence Model](https://aclanthology.org/2021.emnlp-main.740/) Papers about (pretrained) Transformers: - [Attention is All you Need](https://papers.nips.cc/paper/2017/hash/3f5ee243547dee91fbd053c1c4a845aa-Abstract.html) - [BERT: Pre-training of Deep Bidirectional Transformers for Language Understanding](https://aclanthology.org/N19-1423/) #### Technical Terms <!-- info: Technical terms used in this card and the dataset and their definitions --> <!-- scope: microscope --> No unique technical words in this data card. ## Previous Results ### Previous Results #### Measured Model Abilities <!-- info: What aspect of model ability can be measured with this dataset? --> <!-- scope: telescope --> The ability of the model to generate human like titles and abstracts for given news articles. #### Metrics <!-- info: What metrics are typically used for this task? --> <!-- scope: periscope --> `ROUGE`, `BERT-Score` #### 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 --> Automatic Evaluation: Rouge-1, Rouge-2, RougeL and BERTScore were used. Human evalutaion: a human evaluation study was conducted with 11 French native speakers. The evaluators were PhD students from the computer science department of the university of the authors, working in NLP and other fields of AI. They volunteered after receiving an email announcement. the best-Worst Scaling (Louviere et al.,2015) was used. Two summaries from two different systems, along with their input document, were presented to a human annotator who had to decide which one was better. The evaluators were asked to base their judgments on accuracy (does the summary contain accurate facts?), informativeness (is important in-formation captured?) and fluency (is the summary written in well-formed French?). #### Previous results available? <!-- info: Are previous results available? --> <!-- 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 --> The dataset contains news articles written by professional authors. ## Considerations for Using the Data ### PII Risks and Liability ### 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 --> `open license - commercial use allowed` #### 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 --> `open license - commercial use allowed` ### Known Technical Limitations
[ -0.42770734429359436, -0.6519127488136292, 0.28537774085998535, 0.18358081579208374, -0.029858946800231934, -0.011573771014809608, -0.462865948677063, -0.369759202003479, 0.2858296036720276, 0.5170400738716125, -0.3609689772129059, -0.6020017266273499, -0.7293277382850647, 0.26471424102783203, -0.5475529432296753, 1.0732693672180176, 0.08133715391159058, -0.1615191251039505, -0.2644503712654114, -0.03908563032746315, -0.20190191268920898, -0.5335792899131775, -0.6396932005882263, -0.25985780358314514, 0.47273966670036316, 0.4998457431793213, 0.47376278042793274, 0.39747756719589233, 0.5849074125289917, 0.3298470377922058, -0.006524771451950073, 0.19147202372550964, -0.4914981424808502, -0.17299267649650574, -0.07061547040939331, -0.3459213376045227, -0.6982078552246094, -0.023927928879857063, 0.4951454699039459, 0.8067569732666016, -0.1085406094789505, 0.3380717635154724, 0.2153482437133789, 0.8200968503952026, -0.3934991955757141, 0.4030189514160156, -0.3569767475128174, -0.13735492527484894, -0.43390369415283203, -0.04590591415762901, -0.30346137285232544, -0.13652244210243225, 0.08744534850120544, -0.6547368764877319, 0.4265235662460327, -0.026733774691820145, 0.9710574746131897, 0.22130492329597473, -0.32240647077560425, -0.11760631948709488, -0.5973870754241943, 0.749683678150177, -0.6748129725456238, 0.24184821546077728, 0.5008402466773987, 0.1247451901435852, 0.09988201409578323, -0.9434991478919983, -0.5576376914978027, -0.1325685977935791, -0.17822575569152832, 0.2933708131313324, -0.2910718321800232, -0.0654299408197403, 0.42292580008506775, 0.5049909949302673, -0.6614006161689758, -0.11278321593999863, -0.48634424805641174, -0.008076450787484646, 0.8140796422958374, -0.008858412504196167, 0.11597268283367157, -0.30334895849227905, -0.10090610384941101, -0.38601067662239075, -0.4234492778778076, -0.026949211955070496, 0.32606974244117737, 0.3560355305671692, -0.49208903312683105, 0.5922252535820007, -0.3213401436805725, 0.5952783823013306, -0.0728309154510498, 0.13737599551677704, 0.6353435516357422, -0.6143270134925842, -0.04203272983431816, -0.37986552715301514, 0.960867702960968, 0.16726742684841156, 0.4206428527832031, -0.15764492750167847, -0.22209049761295319, -0.12155427038669586, 0.1757509559392929, -0.567009687423706, -0.47557303309440613, 0.1969345211982727, -0.3154749870300293, -0.09908360242843628, 0.11634081602096558, -0.7288306355476379, -0.04905996099114418, -0.3721424341201782, 0.421825647354126, -0.3596852421760559, -0.2738867998123169, 0.08628392964601517, -0.07989305257797241, 0.17649678885936737, 0.3415238559246063, -0.7290705442428589, 0.47001564502716064, 0.45225459337234497, 0.7666593194007874, -0.18491029739379883, -0.3064349591732025, -0.135450080037117, -0.19796207547187805, -0.05416472628712654, 0.5749872326850891, -0.06725673377513885, -0.42038291692733765, -0.23367880284786224, 0.22313831746578217, -0.12612508237361908, -0.28034815192222595, 0.5698044300079346, -0.33200812339782715, 0.4250294268131256, -0.41331782937049866, -0.4115384817123413, -0.30075231194496155, 0.1269836723804474, -0.7213989496231079, 1.1609721183776855, 0.21774806082248688, -0.7723221182823181, 0.16747629642486572, -0.8316852450370789, -0.6160812973976135, -0.025867819786071777, -0.06107621639966965, -0.2713088095188141, -0.08387979865074158, 0.40371835231781006, 0.5515456795692444, -0.5251060724258423, 0.2787400186061859, 0.14742669463157654, -0.004285068716853857, 0.022715425118803978, -0.34600821137428284, 0.9094153642654419, 0.2157655954360962, -0.33118927478790283, -0.0526595264673233, -0.6855294108390808, -0.08447061479091644, 0.27014243602752686, -0.13116376101970673, 0.013116208836436272, -0.030749278143048286, 0.16650617122650146, 0.09846307337284088, 0.33779415488243103, -0.4527702331542969, -0.013839512132108212, -0.4545096457004547, 0.26755577325820923, 0.47371214628219604, -0.07158706337213516, 0.308685302734375, -0.4530644714832306, 0.46860945224761963, -0.2004079818725586, 0.18474344909191132, -0.09029774367809296, -0.5262218713760376, -0.8620493412017822, -0.12548570334911346, 0.5361590385437012, 0.654729425907135, -0.7884155511856079, 0.642379641532898, -0.5414748191833496, -0.6167524456977844, -0.37210506200790405, 0.029949085786938667, 0.6042422652244568, 0.5028448700904846, 0.6083742380142212, -0.5010895133018494, -0.42593875527381897, -0.861240804195404, -0.01916307955980301, 0.009979275055229664, -0.05328190699219704, 0.3357716202735901, 0.6610075831413269, -0.13049322366714478, 0.8451966643333435, -0.5634971857070923, -0.37512192130088806, -0.4828081429004669, 0.24064616858959198, 0.3556307554244995, 0.5307961106300354, 0.5090091824531555, -0.751084566116333, -0.4197229743003845, -0.18593783676624298, -0.7101320028305054, -0.03315653279423714, 0.07104215025901794, -0.06116123124957085, 0.16741865873336792, 0.4324490427970886, -0.45538032054901123, 0.2685788869857788, 0.5628106594085693, -0.37053588032722473, 0.4857214391231537, -0.21392488479614258, 0.21249336004257202, -1.2216682434082031, 0.40894827246665955, 0.09991644322872162, -0.2471926510334015, -0.5737126469612122, -0.16424570977687836, -0.084547258913517, -0.003895166562870145, -0.38117650151252747, 0.6093805432319641, -0.447609007358551, 0.03188871964812279, 0.09223000705242157, 0.20864595472812653, -0.05783465877175331, 0.6288489699363708, 0.1111413836479187, 0.6442879438400269, 0.4296335279941559, -0.5518231987953186, 0.26342320442199707, 0.5033573508262634, -0.45701807737350464, 0.22708472609519958, -0.8563576340675354, -0.030303800478577614, -0.14196960628032684, 0.07645607739686966, -0.7637062668800354, -0.19701901078224182, 0.08415196090936661, -0.6812717318534851, 0.45322418212890625, 0.006035974714905024, -0.5833917260169983, -0.33525508642196655, -0.08925729244947433, 0.35602912306785583, 0.6178013682365417, -0.19970625638961792, 0.4626767933368683, 0.41997030377388, -0.31012797355651855, -0.6385204195976257, -0.7439361810684204, 0.1613665521144867, -0.06399711966514587, -0.5429297685623169, 0.4643367528915405, 0.11084631830453873, -0.2224869579076767, 0.026078909635543823, 0.24205373227596283, 0.10621795803308487, 0.07634434103965759, 0.12675514817237854, 0.19442884624004364, -0.004517527297139168, 0.13274265825748444, -0.20643514394760132, -0.2602340579032898, -0.08413458615541458, -0.05699143558740616, 0.4719945788383484, -0.23289352655410767, -0.159761443734169, -0.19839619100093842, 0.16021288931369781, 0.3310285210609436, -0.3524954617023468, 0.5977945923805237, 0.6386365294456482, -0.27002716064453125, -0.026503395289182663, -0.585094153881073, -0.34615999460220337, -0.40741637349128723, 0.5781676769256592, -0.1568736881017685, -0.6296048164367676, 0.38142430782318115, 0.2390962541103363, 0.3112233877182007, 0.7821921706199646, 0.4215663969516754, -0.1551637500524521, 0.6290518045425415, 0.5050495266914368, -0.07287529110908508, 0.44218459725379944, -0.7633098363876343, 0.003256954485550523, -0.8824425935745239, -0.07298875600099564, -0.5880036354064941, -0.29614344239234924, -0.5389255285263062, -0.5459319949150085, 0.32867076992988586, 0.07589983940124512, -0.22158367931842804, 0.52581787109375, -0.40729397535324097, 0.27737000584602356, 0.6707333326339722, 0.1400713324546814, 0.23238977789878845, -0.006803744472563267, 0.10953585803508759, 0.06382973492145538, -0.8048881888389587, -0.5251131653785706, 1.4128162860870361, 0.24606482684612274, 0.5578222274780273, 0.03207029029726982, 0.68572998046875, 0.4288082420825958, 0.20254237949848175, -0.41982775926589966, 0.5741166472434998, -0.43347838521003723, -0.4969758093357086, -0.5472058057785034, -0.5084934234619141, -1.1693964004516602, 0.19375617802143097, -0.33200278878211975, -0.6081969141960144, 0.3283492922782898, 0.18735572695732117, -0.3666103780269623, 0.17711469531059265, -0.7048023343086243, 0.9793955683708191, -0.4612984359264374, -0.22271807491779327, -0.15586619079113007, -0.8242099285125732, 0.17753390967845917, 0.03701804578304291, 0.4064009487628937, -0.17987748980522156, 0.12837862968444824, 0.9486536979675293, -0.39529743790626526, 0.8569903373718262, -0.18519563972949982, 0.12652206420898438, 0.2152920812368393, -0.17551028728485107, 0.4511096775531769, -0.06733803451061249, -0.01649416610598564, 0.3714887797832489, -0.0456283800303936, -0.38514670729637146, -0.2914489805698395, 0.48723694682121277, -0.8262734413146973, -0.41082963347435, -0.39812424778938293, -0.5224042534828186, -0.09236776828765869, 0.171065092086792, 0.47305724024772644, 0.588714599609375, -0.20592786371707916, 0.27554646134376526, 0.6056480407714844, -0.304174542427063, 0.3443761467933655, 0.3459388315677643, -0.034883078187704086, -0.31646621227264404, 0.880244255065918, 0.16209185123443604, 0.30088546872138977, 0.5545130372047424, -0.02715618722140789, -0.2607862651348114, -0.534765362739563, -0.3582994341850281, 0.2913455665111542, -0.5358399152755737, -0.11571971327066422, -0.7902207374572754, -0.1846824586391449, -0.47852179408073425, -0.05209856107831001, -0.4143836200237274, -0.7316125631332397, -0.4236634373664856, -0.11921791732311249, 0.36349576711654663, 0.46194276213645935, -0.16941659152507782, 0.20190072059631348, -0.7114295363426208, 0.38266780972480774, 0.22983886301517487, -0.032932303845882416, 0.0314314067363739, -0.6141995191574097, -0.3955155611038208, 0.13391821086406708, -0.3170209228992462, -0.5623419880867004, 0.4850428104400635, 0.32525375485420227, 0.5179909467697144, 0.13066978752613068, 0.17157714068889618, 0.3165578842163086, -0.35596928000450134, 0.9684302806854248, 0.10781748592853546, -0.7008968591690063, 0.5003299713134766, -0.2660537660121918, 0.320879191160202, 0.7131428718566895, 0.3657169044017792, -0.5393336415290833, -0.36027437448501587, -0.8084957003593445, -1.1323882341384888, 0.8452578186988831, 0.5111438035964966, 0.07892800122499466, -0.06411027163267136, 0.1653309017419815, -0.026807071641087532, 0.2615160644054413, -0.8122103214263916, -0.49485424160957336, -0.13522599637508392, -0.2613537609577179, -0.5055736899375916, -0.10399078577756882, -0.18193288147449493, -0.31458187103271484, 0.810897946357727, 0.03632607311010361, 0.5493487119674683, 0.31191471219062805, -0.3618376851081848, 0.17875109612941742, 0.2789890170097351, 0.39146101474761963, 0.6782904863357544, -0.20265161991119385, 0.08779513090848923, 0.25494179129600525, -0.5364869236946106, -0.14273500442504883, 0.4640328586101532, -0.16933807730674744, -0.09497790783643723, 0.644940972328186, 0.7236344814300537, 0.17523041367530823, -0.5918155908584595, 0.5640305280685425, 0.012570877559483051, -0.33894482254981995, -0.41193124651908875, 0.02875482849776745, 0.003132804064080119, 0.08931323140859604, 0.31936249136924744, 0.08747029304504395, 0.10440643876791, -0.3546002507209778, 0.13310208916664124, 0.25488710403442383, -0.2874044179916382, -0.3858584761619568, 0.6729749441146851, 0.42158812284469604, -0.16599984467029572, 0.6957500576972961, -0.3854336440563202, -0.40254396200180054, 0.7440308332443237, 0.1680213212966919, 0.9821643233299255, -0.09899059683084488, 0.23574766516685486, 0.6641673445701599, 0.4823777973651886, -0.12662343680858612, 0.4011577367782593, -0.22512294352054596, -0.8484249114990234, -0.44081127643585205, -0.6402034759521484, -0.15674692392349243, -0.06648925691843033, -0.6373128294944763, 0.24783799052238464, 0.021195081993937492, -0.14067214727401733, 0.03948526456952095, 0.036536891013383865, -0.8861069083213806, 0.22853177785873413, 0.028586115688085556, 0.8486725687980652, -0.7892866730690002, 0.7647409439086914, 0.566353440284729, -0.5096673369407654, -0.5639415979385376, -0.18564406037330627, -0.08339349180459976, -0.7024821639060974, 0.5439201593399048, -0.04734005033969879, 0.13975150883197784, 0.1726154386997223, -0.3398522436618805, -0.9498869776725769, 1.1494404077529907, 0.20661985874176025, -0.6115262508392334, -0.16429944336414337, 0.12614355981349945, 0.5137466192245483, -0.13646972179412842, 0.4348284602165222, 0.5188683867454529, 0.5644835233688354, 0.047913506627082825, -1.0496139526367188, -0.0024711412843316793, -0.4408046305179596, -0.08930084109306335, 0.24594850838184357, -0.5789892077445984, 0.8606110215187073, -0.26543834805488586, -0.33036893606185913, -0.04484129324555397, 0.510194718837738, -0.07769215852022171, 0.16529977321624756, 0.4350752532482147, 0.8303897976875305, 0.5941029191017151, -0.4035247564315796, 1.2031198740005493, -0.374657541513443, 0.3757609724998474, 1.1666969060897827, 0.08964024484157562, 0.7059215307235718, 0.17532457411289215, -0.5512829422950745, 0.4662417769432068, 0.5083065032958984, -0.06885971128940582, 0.40786489844322205, 0.019922783598303795, 0.002160766627639532, -0.09052908420562744, 0.0738743245601654, -0.5108485817909241, 0.3432139754295349, 0.3609698712825775, -0.39551234245300293, -0.1445673108100891, 0.03865200653672218, -0.01053779385983944, 0.013114500790834427, -0.15627627074718475, 0.8132782578468323, 0.10465513914823532, -0.5836374163627625, 0.5716596841812134, -0.026938537135720253, 0.6262158751487732, -0.7331704497337341, 0.03236844018101692, -0.14316517114639282, -0.007210669573396444, -0.33747172355651855, -0.7998201847076416, 0.2123701423406601, 0.014774481765925884, -0.21597974002361298, -0.3555551767349243, 0.4280766248703003, -0.46878552436828613, -0.5309794545173645, 0.1531418114900589, 0.6447176337242126, 0.28507116436958313, -0.011160403490066528, -0.7698437571525574, -0.34619319438934326, 0.09965942054986954, -0.433369904756546, 0.07831272482872009, 0.29127874970436096, 0.017685124650597572, 0.4993358850479126, 0.5316824316978455, 0.10380560159683228, -0.1462598741054535, 0.1724248230457306, 0.635299801826477, -0.6882789134979248, -0.4205194413661957, -0.5406745672225952, 0.7264154553413391, -0.17585186660289764, -0.3938767611980438, 0.8913992643356323, 0.7125067114830017, 0.9655083417892456, -0.04006512090563774, 0.8488783240318298, -0.4530375599861145, 0.6621235609054565, -0.4060385823249817, 0.5368823409080505, -0.6343492865562439, 0.20334568619728088, -0.43657705187797546, -0.8966173529624939, -0.23934505879878998, 0.4900398552417755, -0.35024797916412354, 0.246688574552536, 0.6159825921058655, 0.7996033430099487, 0.016944777220487595, -0.038446247577667236, 0.17121513187885284, 0.30716073513031006, 0.09512625634670258, 0.5393164157867432, 0.540696382522583, -0.5357173085212708, 0.45104363560676575, -0.44218191504478455, -0.33465376496315, -0.08565898984670639, -0.7292664051055908, -0.8059864640235901, -0.8345500826835632, -0.3971008062362671, -0.2264428734779358, 0.02750847488641739, 0.8580508828163147, 0.5559895038604736, -0.9132439494132996, -0.4363866150379181, -0.21046246588230133, -0.019113006070256233, -0.2842065691947937, -0.23591028153896332, 0.6082281470298767, -0.27076658606529236, -0.7880027890205383, 0.1640939712524414, -0.007920956239104271, 0.014352718368172646, -0.003806865541264415, -0.07627752423286438, -0.36188212037086487, -0.22089669108390808, 0.6642401814460754, 0.4572616219520569, -0.5552337169647217, 0.017077572643756866, 0.03934348374605179, 0.06431117653846741, -0.005228868220001459, 0.4913003146648407, -0.6451596021652222, 0.470867395401001, 0.4370450973510742, 0.41618654131889343, 0.7117714285850525, -0.010562574490904808, 0.49149131774902344, -0.7964544296264648, 0.09070929139852524, 0.3913421630859375, 0.44053933024406433, 0.29044318199157715, -0.2780938446521759, 0.8473798036575317, 0.23458673059940338, -0.6743439435958862, -0.578650951385498, -0.03613273426890373, -1.042506217956543, -0.12969517707824707, 1.2090076208114624, -0.08054675906896591, -0.041640669107437134, -0.16476371884346008, -0.18820446729660034, 0.25168105959892273, -0.38972312211990356, 0.6278778314590454, 0.5832359194755554, -0.10256657004356384, -0.20421993732452393, -0.5207107067108154, 0.5238500833511353, 0.37623101472854614, -0.9637406468391418, -0.015682561323046684, 0.42077669501304626, 0.07565393298864365, 0.31013041734695435, 0.5992617011070251, -0.18682262301445007, 0.21084536612033844, -0.16371166706085205, 0.4771067798137665, -0.10322138667106628, -0.23691469430923462, -0.14993180334568024, 0.022162066772580147, -0.047863997519016266, -0.1424863338470459 ]
null
null
null
null
null
null
null
null
null
null
null
null
null
GEM/turku_hockey_data2text
GEM
2022-10-24T15:30:33Z
445
0
null
[ "task_categories:table-to-text", "annotations_creators:expert-created", "language_creators:unknown", "multilinguality:unknown", "size_categories:unknown", "source_datasets:original", "language:fi", "license:cc-by-nc-sa-4.0", "data-to-text", "region:us" ]
2022-10-24T15:30:33Z
2022-03-02T23:29:22.000Z
2022-03-02T23:29:22
--- annotations_creators: - expert-created language_creators: - unknown language: - fi license: - cc-by-nc-sa-4.0 multilinguality: - unknown size_categories: - unknown source_datasets: - original task_categories: - table-to-text task_ids: [] pretty_name: turku_hockey_data2text tags: - data-to-text --- # Dataset Card for GEM/turku_hockey_data2text ## Dataset Description - **Homepage:** https://turkunlp.org/hockey_data2text.html - **Repository:** https://github.com/TurkuNLP/Turku-hockey-data2text - **Paper:** https://aclanthology.org/W19-6125/ - **Leaderboard:** N/A - **Point of Contact:** Jenna Kanerva, Filip Ginter ### Link to Main Data Card You can find the main data card on the [GEM Website](https://gem-benchmark.com/data_cards/turku_hockey_data2text). ### Dataset Summary This is a Finnish data-to-text dataset in which the input is structured information about a hockey game and the output a description of the game. You can load the dataset via: ``` import datasets data = datasets.load_dataset('GEM/turku_hockey_data2text') ``` The data loader can be found [here](https://huggingface.co/datasets/GEM/turku_hockey_data2text). #### website [Website](https://turkunlp.org/hockey_data2text.html) #### paper [ACL anthology](https://aclanthology.org/W19-6125/) #### authors Jenna Kanerva, Samuel Rönnqvist, Riina Kekki, Tapio Salakoski, Filip Ginter (TurkuNLP / University of Turku) ## 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](https://turkunlp.org/hockey_data2text.html) #### Download <!-- info: What is the link to where the original dataset is hosted? --> <!-- scope: telescope --> [Github](https://github.com/TurkuNLP/Turku-hockey-data2text) #### Paper <!-- info: What is the link to the paper describing the dataset (open access preferred)? --> <!-- scope: telescope --> [ACL anthology](https://aclanthology.org/W19-6125/) #### 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{kanerva2019newsgen, Title = {Template-free Data-to-Text Generation of Finnish Sports News}, Author = {Jenna Kanerva and Samuel R{\"o}nnqvist and Riina Kekki and Tapio Salakoski and Filip Ginter}, booktitle = {Proceedings of the 22nd Nordic Conference on Computational Linguistics (NoDaLiDa’19)}, year={2019} } ``` #### 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 --> Jenna Kanerva, Filip Ginter #### Contact Email <!-- info: If known, provide the email of at least one person the reader can contact for questions about the dataset. --> <!-- scope: periscope --> jmnybl@utu.fi, figint@utu.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 --> no #### Covered Dialects <!-- info: What dialects are covered? Are there multiple dialects per language? --> <!-- scope: periscope --> written standard language #### Covered Languages <!-- quick --> <!-- info: What languages/dialects are covered in the dataset? --> <!-- scope: telescope --> `Finnish` #### Whose Language? <!-- info: Whose language is in the dataset? --> <!-- scope: periscope --> The original news articles are written by professional journalists. The text passages extracted in the annotation may be slightly edited compared to the original language during the corpus annotation. #### License <!-- quick --> <!-- info: What is the license of the dataset? --> <!-- scope: telescope --> cc-by-nc-sa-4.0: Creative Commons Attribution Non Commercial Share Alike 4.0 International #### Intended Use <!-- info: What is the intended use of the dataset? --> <!-- scope: microscope --> This dataset was developed as a benchmark for evaluating template-free, machine learning methods on Finnish news generation in the area of ice hockey reporting. #### Primary Task <!-- info: What primary task does the dataset support? --> <!-- scope: telescope --> Data-to-Text #### Communicative Goal <!-- quick --> <!-- info: Provide a short description of the communicative goal of a model trained for this task on this dataset. --> <!-- scope: periscope --> Describe an event from an ice hockey game based on the given structural data. ### Credit #### Curation Organization Type(s) <!-- info: In what kind of organization did the dataset curation happen? --> <!-- scope: telescope --> `academic` #### Curation Organization(s) <!-- info: Name the organization(s). --> <!-- scope: periscope --> University of Turku #### Dataset Creators <!-- info: Who created the original dataset? List the people involved in collecting the dataset and their affiliation(s). --> <!-- scope: microscope --> Jenna Kanerva, Samuel Rönnqvist, Riina Kekki, Tapio Salakoski, Filip Ginter (TurkuNLP / University of Turku) #### Funding <!-- info: Who funded the data creation? --> <!-- scope: microscope --> The project was supported by the Google Digital News Innovation Fund. #### 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 --> Jenna Kanerva, Filip Ginter (TurkuNLP / University of Turku) ### Dataset Structure #### Data Fields <!-- info: List and describe the fields present in the dataset. --> <!-- scope: telescope --> The dataset is constructed of games, where each game is a list of events. If the event was annotated (corresponding sentence was found from the news article), it includes `text` field with value other than empty string (""). For each game (dict), there are keys `gem_id` (string), `id` (string), `news_article` (string), and `events` (list). For each event (dict), there are different, relevant keys available with non empty values depending on the event type (e.g. goal or penalty). The mandatory keys for each event are `event_id` (string), `event_type` (string), `text` (string, empty string if not annotated), and `multi_reference` (bool). The keys not relevant for the specific event type are left empty. The relevant keys in the event dictionary are: For each event type, the following keys are relevant: `event_id`: Identifier of the event, unique to the game but not globally, in chronological order (string) `event_type`: Type of the event, possible values are `game result`, `goal`, `penalty`, or `saves` (string) `text`: Natural language description of the event, or empty string if not available (string) `multi_reference`: Does this event refer to a text passage describing multiple events? (bool) The rest of the fields are specific to the event type. The relevant fields for each event type are: game result: `event_id`: Identifier of the event, unique to the game but not globally, in chronological order (string) `event_type`: Type of the event (string) `home_team`: Name of the home team (string) `guest_team`: Name of the guest team (string) `score`: Final score of the game, in the form of home–guest (string) `periods`: Scores for individual periods, each in the form of home–guest score in that period (list of strings) `features`: Additional features, such as overtime win or shoot out (list of strings) `text`: Natural language description of the event, or empty string if not available (string) `multi_reference`: Does this event refer to a text passage describing multiple events? (bool) goal: `event_id`: Identifier of the event, unique to the game but not globally, in chronological order (string) `event_type`: Type of the event (string) `player`: Name of the player scoring (string) `assist`: Names of the players assisting, at most two players (list of strings) `team`: Team scoring with possible values of `home` or `guest` (string) `team_name`: Name of the team scoring (string) `score`: Score after the goal, in the form of home–guest (string) `time`: Time of the goal, minutes and seconds from the beginning (string) `features`: Additional features, such as power play or short-handed goal (list of strings) `text`: Natural language description of the event, or empty string if not available (string) `multi_reference`: Does this event refer to a text passage describing multiple events? (bool) penalty: `event_id`: Identifier of the event, unique to the game but not globally, in chronological order (string) `event_type`: Type of the event (string) `player`: Name of the player getting the penalty (string) `team`: Team getting the penalty with possible values of `home` or `guest` (string) `team_name`: Name of the team getting the penalty (string) `penalty_minutes`: Penalty minutes (string) `time`: Time of the penalty, minutes and seconds from the beginning (string) `text`: Natural language description of the event, or empty string if not available (string) `multi_reference`: Does this event refer to a text passage describing multiple events? (bool) saves: `event_id`: Identifier of the event, unique to the game but not globally, in chronological order (string) `event_type`: Type of the event (string) `player`: Name of the goalkeeper (string) `team`: Team of the goalkeeper with possible values of `home` or `guest` (string) `team_name`: Name of the team (string) `saves`: Number of saves in the game (string) `text`: Natural language description of the event, or empty string if not available (string) `multi_reference`: Does this event refer to a text passage describing multiple events? (bool) Text passages describing multiple events (multi_reference): Some text passages refer to multiple events in such way that separating them to individual statements is not adequate (e.g. "The home team received two penalties towards the end of the first period."). In these cases, multiple events are aligned to the same text passage so that the first event (in chronological order) include the annotated text passage, while the rest of the events referring to the same text passage include the identifier of the first event in the annotated text field (e.g. `text`: "E4"). #### Example Instance <!-- info: Provide a JSON formatted example of a typical instance in the dataset. --> <!-- scope: periscope --> ``` { 'gem_id': 'gem-turku_hockey_data2text-train-0', 'id': '20061031-TPS-HPK', 'news_article': 'HPK:n hyvä syysvire jatkuu jääkiekon SM-liigassa. Tiistaina HPK kukisti mainiolla liikkeellä ja tehokkaalla ylivoimapelillä TPS:n vieraissa 1–0 (1–0, 0–0, 0–0).\nHPK hyödynsi ylivoimaa mennen jo ensimmäisessä erässä Mikko Mäenpään maalilla 1–0 -johtoon.\nToisessa ja kolmannessa erässä HPK tarjosi edelleen TPS:lle runsaasti tilanteita, mutta maalia eivät turkulaiset millään ilveellä saaneet. Pahin este oli loistavan pelin Hämeenlinnan maalilla pelannut Mika Oksa.\nTPS:n maalissa Jani Hurme ei osumille mitään mahtanut. Joukkueen suuri yksinäinen kenttäpelaaja oli Kai Nurminen, mutta hänelläkään ei ollut onnea maalitilanteissa.', 'events': { 'event_id': ['E1', 'E2', 'E3'], 'event_type': ['game result', 'penalty', 'goal'], 'text': ['HPK kukisti TPS:n vieraissa 1–0 (1–0, 0–0, 0–0).', '', 'HPK hyödynsi ylivoimaa mennen jo ensimmäisessä erässä Mikko Mäenpään maalilla 1–0 -johtoon.'], 'home_team': ['TPS', '', ''], 'guest_team': ['HPK', '', ''], 'score': ['0–1', '', '0–1'], 'periods': [['0–1', '0–0', '0–0'], [], []], 'features': [[], [], ['power play']], 'player': ['', 'Fredrik Svensson', 'Mikko Mäenpää'], 'assist': [[], [], ['Jani Keinänen', 'Toni Mäkiaho']], 'team': ['', 'guest', 'guest'], 'team_name': ['', 'HPK', 'HPK'], 'time': ['', '9.28', '14.57'], 'penalty_minutes': ['', '2', ''], 'saves': ['', '', ''], 'multi_reference': [false, false, false] } } ``` #### Data Splits <!-- info: Describe and name the splits in the dataset if there are more than one. --> <!-- scope: periscope --> The corpus include 3 splits: train, validation, and test. ## 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 --> The dataset was created to develop machine learned text generation models for Finnish ice hockey news, where the generation would reflect the natural language variation found from the game reports written by professional journalists. While the original game reports often include additional information not derivable from the game statistics, the corpus was fully manually curated to remove all such information from the natural language descriptions. The rationale of such curation was to prevent model 'hallucinating' additional facts. #### 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 --> This is the only data2text corpus for Finnish in GEM. #### Ability that the Dataset measures <!-- info: What aspect of model ability can be measured with this dataset? --> <!-- scope: periscope --> morphological inflection, language variation ### 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 --> `data points modified` #### Modification Details <!-- info: For each of these changes, described them in more details and provided the intended purpose of the modification --> <!-- scope: microscope --> Structural data was translated into English. #### Additional Splits? <!-- info: Does GEM provide additional splits to the dataset? --> <!-- scope: telescope --> no ### Getting Started with the Task ## Previous Results ### Previous Results #### Metrics <!-- info: What metrics are typically used for this task? --> <!-- scope: periscope --> `BLEU`, `METEOR`, `ROUGE`, `WER` #### 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 --> Automatic evaluation: BLEU, NIST, METEOR, ROUGE-L, CIDEr Manual evaluation: factual mistakes, grammatical errors, minimum edit distance to an acceptable game report (using WER) #### Previous results available? <!-- info: Are previous results available? --> <!-- scope: telescope --> yes ## Dataset Curation ### Original Curation #### Original Curation Rationale <!-- info: Original curation rationale --> <!-- scope: telescope --> The dataset is designed for text generation (data2text), where the original source of natural language descriptions is news articles written by journalists. While the link between structural data (ice hockey game statistics) and the news articles describing the game was quite weak (news articles including a lot of information not derivable from the statistics, while leaving many events unmentioned), the corpus includes full manual annotation aligning the events extracted from game statistics and the corresponding natural language passages extracted from the news articles. Each event is manually aligned into a sentence-like passage, and in case a suitable passage was not found, the annotation is left empty (with value `None`). The extracted passages were manually modified not to include additional information not derivable from the game statistics, or not considered as world knowledge. The manual curation of passages is designed to prevent model hallucination, i.e. model learning to generate facts not derivable from the input data. #### Communicative Goal <!-- info: What was the communicative goal? --> <!-- scope: periscope --> Describing the given events (structural data) in natural language, and therefore generating ice hockey game reports. #### 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 --> `Other` #### Language Producers <!-- info: What further information do we have on the language producers? --> <!-- scope: microscope --> The initial data, both game statistics and news articles, were obtained from the Finnish News Agency STT news archives released for academic use (http://urn.fi/urn:nbn:fi:lb-2019041501). The original news articles are written by professional journalists. We (TurkuNLP) gratefully acknowledge the collaboration of Maija Paikkala, Salla Salmela and Pihla Lehmusjoki from the Finnish News Agency STT while creating the corpus. #### Topics Covered <!-- info: Does the language in the dataset focus on specific topics? How would you describe them? --> <!-- scope: periscope --> Ice hockey, news #### Data Validation <!-- info: Was the text validated by a different worker or a data curator? --> <!-- scope: telescope --> not validated #### Was Data Filtered? <!-- info: Were text instances selected or filtered? --> <!-- scope: telescope --> algorithmically #### Filter Criteria <!-- info: What were the selection criteria? --> <!-- scope: microscope --> Include only games, where both game statistics and a news article describing the game were available (based on timestamps and team names). ### 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 --> 1 #### Rater Qualifications <!-- info: Describe the qualifications required of an annotator. --> <!-- scope: periscope --> Members of the TurkuNLP research group, native speakers of Finnish. #### Raters per Training Example <!-- info: How many annotators saw each training example? --> <!-- scope: periscope --> 1 #### Raters per Test Example <!-- info: How many annotators saw each test example? --> <!-- scope: periscope --> 1 #### Annotation Service? <!-- info: Was an annotation service used? --> <!-- scope: telescope --> no #### Annotation Values <!-- info: Purpose and values for each annotation --> <!-- scope: microscope --> Manual alignment of events and their natural language descriptions. Removing information not derivable from the input data or world knowledge in order to prevent the model 'hallucination'. #### Any Quality Control? <!-- info: Quality control measures? --> <!-- scope: telescope --> validated by data curators #### Quality Control Details <!-- info: Describe the quality control measures that were taken. --> <!-- scope: microscope --> Manual inspection of examples during the initial annotation training phrase. ### Consent #### Any Consent Policy? <!-- info: Was there a consent policy involved when gathering the data? --> <!-- scope: telescope --> yes #### Consent Policy Details <!-- info: What was the consent policy? --> <!-- scope: microscope --> The corpus license was agreed with the providers of the source material. ### 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 #### Categories of PII <!-- info: What categories of PII are present or suspected in the data? --> <!-- scope: periscope --> `generic PII` #### 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 --> The dataset represents only written standard language. ## 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 --> None ### 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
[ -0.33451664447784424, -0.6782493591308594, 0.45467886328697205, 0.06867259740829468, -0.329206258058548, 0.02877333015203476, -0.367508202791214, -0.4696701467037201, 0.43899866938591003, 0.224761962890625, -0.7678873538970947, -0.9345505833625793, -0.5416092872619629, 0.09965384006500244, -0.04078840836882591, 1.1385902166366577, -0.11805704236030579, -0.06879313290119171, -0.33355462551116943, -0.1733979731798172, -0.15388625860214233, -0.4709406793117523, -0.6762243509292603, -0.23875151574611664, 0.2981101870536804, 0.566135823726654, 0.5996289253234863, 0.7807417511940002, 0.9303901195526123, 0.2675057649612427, -0.11058719456195831, 0.13391806185245514, -0.5807145237922668, 0.06722382456064224, 0.043766941875219345, -0.3516113758087158, -0.48377788066864014, 0.06449440866708755, 0.721807062625885, 0.45754122734069824, -0.03998406603932381, 0.49977657198905945, 0.1450844556093216, 0.5652649402618408, -0.11297358572483063, 0.6205560564994812, -0.5452582836151123, -0.017890742048621178, -0.4593254625797272, -0.14616525173187256, -0.1385604590177536, -0.10045682638883591, -0.1518491953611374, -1.0721197128295898, 0.325130432844162, -0.08063029497861862, 1.2064887285232544, -0.05794879421591759, -0.21483661234378815, -0.34719792008399963, -0.5483782887458801, 0.8205694556236267, -0.5110805034637451, 0.1187020093202591, 0.4474758207798004, 0.23843057453632355, -0.0924072414636612, -0.6000204086303711, -0.6490699052810669, 0.07044745236635208, -0.2733936905860901, 0.6958078145980835, -0.277554988861084, -0.25365182757377625, 0.2597023546695709, 0.19031955301761627, -0.6672661900520325, -0.31526365876197815, -0.5268021821975708, 0.14957848191261292, 1.081957459449768, 0.42208224534988403, 0.08284519612789154, -0.3949979543685913, -0.16463702917099, -0.4179305136203766, -0.25562354922294617, 0.1943594515323639, 0.49356722831726074, 0.4455815553665161, -0.7557903528213501, 0.5472409725189209, -0.3505246341228485, 0.49663683772087097, 0.058681670576334, -0.2679162621498108, 0.5064532160758972, -0.557300865650177, -0.04125084728002548, -0.23303137719631195, 1.0592634677886963, 0.5758059620857239, -0.12820205092430115, -0.1547471135854721, 0.014087731949985027, -0.16704465448856354, -0.18958748877048492, -0.41030552983283997, -0.3066050708293915, 0.382106751203537, -0.5137754678726196, -0.448228120803833, 0.12664702534675598, -0.9941756129264832, -0.1813199669122696, -0.17040735483169556, 0.529502272605896, -0.3952065110206604, -0.28210219740867615, -0.08747003227472305, -0.32770368456840515, 0.4558655619621277, 0.22470775246620178, -0.7650662064552307, 0.4843362867832184, 0.62743079662323, 0.7680718898773193, -0.046978577971458435, -0.2703266143798828, -0.39583975076675415, 0.08858098089694977, -0.32024499773979187, 0.7126014828681946, -0.3071771562099457, -0.5979514718055725, -0.09459612518548965, 0.09705522656440735, -0.01790940947830677, -0.10179150849580765, 0.7682818174362183, -0.09238340705633163, 0.5304113030433655, -0.39357101917266846, -0.4889487028121948, -0.13151054084300995, 0.3099247217178345, -0.6767808794975281, 1.1992154121398926, 0.10960426926612854, -0.873325765132904, 0.4023127555847168, -0.8244649767875671, -0.5954322814941406, 0.1810447722673416, -0.20889127254486084, -0.7054471373558044, 0.013629530556499958, 0.29423466324806213, 0.3808549642562866, -0.37500840425491333, 0.16749657690525055, -0.3067565858364105, -0.00016706665337551385, 0.002736407332122326, 0.010855648666620255, 0.8922603130340576, 0.12195353955030441, -0.153726726770401, -0.03766104206442833, -0.8867446780204773, -0.15976259112358093, 0.2986413836479187, -0.4384594261646271, 0.052791986614465714, 0.24260467290878296, 0.2004481554031372, 0.17450296878814697, 0.13514192402362823, -0.5630534291267395, 0.1898375004529953, -0.21837389469146729, 0.15855607390403748, 0.4490087628364563, 0.08436571061611176, 0.2837483286857605, -0.4835408926010132, 0.22310477495193481, 0.1556774377822876, 0.5905297994613647, -0.020843295380473137, -0.859176754951477, -0.573553740978241, -0.3060412108898163, 0.2951504588127136, 0.597149670124054, -0.8858243823051453, 0.5694752931594849, -0.4473459720611572, -0.7561872005462646, -0.6092250347137451, -0.12925873696804047, 0.28200438618659973, 0.6536290049552917, 0.3885110914707184, -0.11545470356941223, -0.6821710467338562, -0.848518967628479, -0.09571192413568497, -0.2835423946380615, 0.3396867513656616, 0.7251899242401123, 0.6609336137771606, 0.16035395860671997, 0.6898663640022278, -0.5858224630355835, -0.5526180267333984, -0.2696184515953064, 0.0961020365357399, 0.6627131104469299, 0.5059248805046082, 0.5324785709381104, -0.9600418210029602, -0.7766904234886169, 0.022515930235385895, -0.9926838874816895, 0.08868945389986038, -0.020699884742498398, -0.06004425510764122, 0.3288988769054413, 0.19062526524066925, -0.6045790314674377, 0.5916357636451721, 0.6645513772964478, -0.648510754108429, 0.5785858631134033, -0.19334951043128967, 0.45440569519996643, -1.3291268348693848, 0.535106897354126, -0.018494294956326485, -0.05529515817761421, -0.7932704091072083, 0.11768583953380585, -0.19912508130073547, 0.1278650462627411, -0.4919789135456085, 0.6903828382492065, -0.47872352600097656, 0.1489732414484024, 0.22579112648963928, 0.09474819898605347, -0.0976235494017601, 0.3911913335323334, 0.35807690024375916, 0.5495383143424988, 0.73051518201828, -0.588775098323822, 0.5621481537818909, 0.5061542987823486, -0.552058219909668, 0.4309544563293457, -0.5385577082633972, -0.19504179060459137, -0.16822966933250427, 0.05941291153430939, -0.967107355594635, -0.3142254948616028, 0.4443705976009369, -0.8959497809410095, 0.2217499315738678, -0.325912207365036, -0.6118680834770203, -0.343667596578598, -0.3231905996799469, 0.2126639485359192, 0.5496204495429993, -0.14795251190662384, 0.5580902695655823, 0.56105637550354, -0.05935494974255562, -0.4218052625656128, -0.6547841429710388, 0.04313819482922554, -0.3287014365196228, -0.6524473428726196, 0.19561459124088287, -0.16940388083457947, -0.33039188385009766, 0.2352948933839798, 0.21201451122760773, -0.08331704884767532, 0.0956142321228981, 0.12638330459594727, 0.3809235095977783, -0.3223245441913605, 0.0505775548517704, -0.319307416677475, -0.12897878885269165, -0.25968602299690247, -0.20356765389442444, 0.45264196395874023, 0.0415489599108696, 0.05121901258826256, -0.3519816994667053, 0.4127437174320221, 0.26503413915634155, -0.09897471964359283, 0.7994506359100342, 0.6632092595100403, -0.34416547417640686, 0.32920536398887634, -0.4469296336174011, -0.23755590617656708, -0.3931751549243927, 0.32810184359550476, -0.5759933590888977, -0.5995613932609558, 0.9163420796394348, 0.579395592212677, 0.2546190023422241, 1.0868394374847412, 0.3921835720539093, -0.4997192621231079, 0.822429895401001, 0.21699047088623047, -0.12276104837656021, 0.25903260707855225, -0.5385599136352539, -0.4156653583049774, -0.7836370468139648, -0.45361992716789246, -0.6283883452415466, -0.3780853748321533, -0.741783618927002, -0.42867904901504517, 0.452021062374115, 0.07841966301202774, -0.15409380197525024, 0.2559625506401062, -0.3955409824848175, 0.6241320371627808, 0.569126546382904, 0.13011649250984192, 0.17723339796066284, 0.004443128127604723, -0.04866322875022888, -0.2322847545146942, -0.8649405837059021, -0.20175209641456604, 1.2051986455917358, 0.2707083523273468, 0.463886022567749, 0.34809190034866333, 0.9322676062583923, 0.23286427557468414, 0.12129207700490952, -0.46454283595085144, 0.355085164308548, -0.3439696133136749, -1.0022763013839722, -0.6092283725738525, -0.5086289048194885, -1.0947951078414917, -0.01656343601644039, -0.6303991079330444, -0.8454897403717041, 0.2971545457839966, 0.020449301227927208, -0.38081425428390503, 0.4511253833770752, -0.4533461928367615, 0.7138756513595581, -0.21392503380775452, -0.45373305678367615, 0.08932005614042282, -0.7472485303878784, 0.41211870312690735, -0.015462934039533138, 0.7017285227775574, -0.07690625637769699, 0.05318721383810043, 0.9755369424819946, -0.23347987234592438, 0.7963404059410095, -0.11362719535827637, 0.3331795632839203, 0.44884932041168213, 0.10252548009157181, 0.5682071447372437, 0.22820354998111725, 0.02685006707906723, 0.31960853934288025, 0.00940217450261116, -0.37671151757240295, -0.27693575620651245, 0.6411998271942139, -0.9822236895561218, -0.539207398891449, -0.5829647183418274, -0.44752076268196106, 0.0478031262755394, 0.2353087216615677, 0.5201818943023682, 0.6728317141532898, -0.25068530440330505, 0.40728625655174255, 0.5505725741386414, -0.22219662368297577, 0.42685264348983765, 0.4702516794204712, -0.16671451926231384, -0.6053110361099243, 0.737801194190979, 0.1323850154876709, 0.019381700083613396, 0.6129747629165649, 0.2446536421775818, -0.41382065415382385, -0.48732611536979675, -0.3798707127571106, 0.33422333002090454, -0.5672200322151184, -0.3069734573364258, -0.37036511301994324, -0.14496062695980072, -0.5711923241615295, 0.07503964006900787, -0.18702182173728943, -0.6751145124435425, -0.5355932712554932, -0.030247805640101433, 0.5435518622398376, 0.7368412613868713, -0.42696163058280945, 0.32298943400382996, -0.7426209449768066, 0.23408710956573486, -0.0972641110420227, 0.5236753821372986, -0.2703421115875244, -0.5544028282165527, -0.4071942865848541, 0.04424087703227997, -0.3093223571777344, -0.7562375664710999, 0.39520514011383057, 0.2638310194015503, 0.646993100643158, 0.22858880460262299, -0.06179289147257805, 0.5475361943244934, -0.4173590838909149, 1.2047878503799438, 0.40061214566230774, -0.716011643409729, 0.5095871686935425, -0.687538743019104, 0.384658545255661, 0.6685116291046143, 0.2635097801685333, -0.7236306071281433, -0.36162784695625305, -1.0806329250335693, -0.8403161764144897, 1.1929327249526978, 0.375905305147171, -0.010907793417572975, 0.010348747484385967, 0.28357601165771484, 0.08952595293521881, -0.0006405585445463657, -0.6687553524971008, -0.6386458277702332, -0.08194691687822342, -0.359999418258667, -0.49249017238616943, 0.03034207597374916, -0.2699057161808014, -0.24582161009311676, 0.8871123790740967, 0.0898001566529274, 0.3880423307418823, 0.3212180733680725, 0.0401359386742115, -0.26427531242370605, -0.04268404841423035, 0.7031881213188171, 0.6156821846961975, -0.33972570300102234, -0.06297904253005981, 0.394866943359375, -0.6608507037162781, -0.21003597974777222, 0.27708566188812256, -0.32132208347320557, 0.1994703710079193, 0.6969250440597534, 0.7423771619796753, 0.1736590564250946, -0.17351292073726654, 0.27950721979141235, -0.14409904181957245, -0.8371553421020508, -0.16552893817424774, -0.11545932292938232, 0.07636711001396179, 0.2365611046552658, 0.49449753761291504, -0.24643301963806152, 0.07021962106227875, -0.5724052786827087, 0.30937880277633667, 0.30904799699783325, -0.44279053807258606, -0.2678163945674896, 0.8245877027511597, 0.17330656945705414, -0.2699071168899536, 0.4303427040576935, -0.2403218299150467, -0.3562012314796448, 0.5704716444015503, 0.15112270414829254, 0.6363528370857239, 0.016104629263281822, 0.28442490100860596, 0.7244958281517029, 0.2643106281757355, 0.0929553359746933, 0.5428749918937683, 0.10787143558263779, -0.6641234159469604, -0.325186550617218, -0.5816925764083862, -0.1073036715388298, 0.349873811006546, -0.5742828249931335, 0.29946377873420715, -0.2580348253250122, -0.3348807394504547, 0.2332865446805954, 0.5161504149436951, -0.9747171401977539, 0.2956515848636627, 0.3856329917907715, 1.053031086921692, -0.9104985594749451, 0.577362596988678, 0.7734790444374084, -0.7134459614753723, -0.619292676448822, -0.34227854013442993, 0.17302945256233215, -0.5902993083000183, 0.4969053864479065, -0.5148886442184448, 0.4797748327255249, 0.03725457191467285, -0.5649558305740356, -0.9728121757507324, 1.178749680519104, -0.0569799579679966, -0.5020816326141357, 0.07204552739858627, 0.41125956177711487, 0.3679407238960266, -0.28233155608177185, 0.4405299127101898, 0.530698299407959, 0.7332922220230103, 0.19261407852172852, -0.9635624289512634, -0.1813672035932541, -0.2798393666744232, -0.34699803590774536, 0.20014072954654694, -0.8682937026023865, 0.708276629447937, -0.003864982398226857, -0.2196398675441742, -0.04378534480929375, 0.5073058605194092, 0.13982853293418884, 0.3211018443107605, 0.23463577032089233, 0.7738133668899536, 0.6127756834030151, -0.5877330303192139, 1.0850661993026733, -0.2021484375, 0.5731486082077026, 0.9711974263191223, 0.12884080410003662, 0.7721050977706909, 0.2732921242713928, -0.3459714353084564, 0.2579154670238495, 0.5701236128807068, -0.25537988543510437, 0.5865122675895691, -0.0310057420283556, 0.011709398590028286, -0.27547845244407654, 0.1452217400074005, -0.36726027727127075, 0.6205068826675415, 0.29407766461372375, -0.27415627241134644, -0.346140593290329, -0.2300165444612503, 0.21532617509365082, -0.06592550873756409, -0.24221105873584747, 1.0992085933685303, -0.06864400207996368, -0.6206129789352417, 0.3663114905357361, -0.09880605340003967, 0.3999939262866974, -0.7976430058479309, 0.11389905214309692, -0.3469579815864563, 0.23323500156402588, -0.22762887179851532, -1.4087506532669067, 0.2894112467765808, 0.06286120414733887, -0.41254401206970215, 0.06789777427911758, 0.5384523272514343, -0.44551318883895874, -0.7367551922798157, -0.012424716725945473, 0.5491843819618225, 0.4688878357410431, 0.3317930996417999, -0.925939679145813, 0.14426292479038239, 0.11328449100255966, -0.40214869379997253, 0.19361469149589539, 0.4673328995704651, 0.122471384704113, 0.4118266999721527, 0.6059165596961975, 0.25876209139823914, -0.07030995935201645, -0.13798747956752777, 0.6539353132247925, -0.6273084878921509, -0.5238180756568909, -0.7891098856925964, 0.7747721672058105, -0.35293737053871155, -0.5985420346260071, 0.907183051109314, 1.2351797819137573, 0.7323822975158691, -0.11725970357656479, 0.9600149989128113, -0.3245377540588379, 0.6767226457595825, -0.3668806254863739, 0.925537645816803, -0.6436619162559509, -0.19307038187980652, -0.19084905087947845, -0.6565022468566895, -0.5873630046844482, 0.4875243902206421, -0.11688856780529022, -0.2759838104248047, 0.40478187799453735, 0.53518146276474, -0.06562666594982147, 0.003351508406922221, 0.34393373131752014, 0.2295028567314148, 0.16458573937416077, 0.6644197106361389, 0.4983385503292084, -0.6887898445129395, 0.6939080357551575, -0.2962486743927002, -0.3512202203273773, -0.2600831687450409, -0.8561837077140808, -0.861224353313446, -1.034236192703247, -0.46111950278282166, -0.524052619934082, 0.2128169983625412, 0.7838358879089355, 0.5772384405136108, -0.9364223480224609, -0.5597596168518066, 0.33950909972190857, -0.06823103874921799, -0.31634047627449036, -0.24403409659862518, 0.6521486043930054, -0.21812333166599274, -0.652086615562439, -0.016851022839546204, -0.06698203831911087, -0.003057388588786125, 0.302578866481781, -0.20040757954120636, -0.4121814966201782, -0.011797147803008556, 0.4868084192276001, 0.5058290362358093, -0.4671591818332672, -0.1891808956861496, 0.17392003536224365, 0.08992742747068405, 0.2491123378276825, 0.163863867521286, -0.6118302941322327, 0.5522651076316833, 0.540573239326477, 0.04220272973179817, 0.837546706199646, -0.16346384584903717, 0.2846672832965851, -0.7111571431159973, 0.03838585689663887, 0.19940580427646637, 0.2502306401729584, 0.1800006777048111, -0.34521955251693726, 0.670352041721344, 0.49995848536491394, -0.36394795775413513, -0.7043449878692627, -0.187717467546463, -1.0800106525421143, -0.11654969304800034, 1.4430046081542969, 0.022517750039696693, -0.29300177097320557, -0.10461454093456268, -0.13073037564754486, 0.37257254123687744, -0.5195432901382446, 0.6987017393112183, 0.937614381313324, -0.0992138609290123, -0.14212247729301453, -0.3866194784641266, 0.9313178062438965, -0.29426324367523193, -0.8152014017105103, 0.0338638536632061, 0.34693822264671326, 0.26677626371383667, 0.2508872449398041, 0.6001561880111694, -0.21762724220752716, 0.22525514662265778, 0.2273642122745514, 0.2061942219734192, -0.004271090496331453, -0.20056317746639252, -0.11879491806030273, -0.05506148189306259, -0.3160371482372284, -0.23589538037776947 ]
null
null
null
null
null
null
null
null
null
null
null
null
null
result-kand2-sdxl-wuerst-karlo/2e566d50
result-kand2-sdxl-wuerst-karlo
2023-11-06T03:21:53Z
445
0
null
[ "region:us" ]
2023-11-06T03:21:53Z
2023-11-06T03:21:52.000Z
2023-11-06T03:21:52
--- dataset_info: features: - name: result dtype: string - name: id dtype: int64 splits: - name: train num_bytes: 158 num_examples: 10 download_size: 1308 dataset_size: 158 configs: - config_name: default data_files: - split: train path: data/train-* --- # Dataset Card for "2e566d50" [More Information needed](https://github.com/huggingface/datasets/blob/main/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
[ -0.6574468612670898, -0.14197012782096863, 0.15576708316802979, 0.22101673483848572, -0.13296599686145782, -0.26430976390838623, 0.46810072660446167, -0.34855955839157104, 0.8001832365989685, 0.3811013996601105, -0.8295814990997314, -0.5063536763191223, -0.5186441540718079, -0.23923785984516144, -0.17159883677959442, 1.1714473962783813, 0.08305247873067856, 0.08489199727773666, -0.4480476975440979, -0.03237660601735115, -0.2824975252151489, -0.27510589361190796, -0.620545506477356, -0.5235145092010498, 0.9489737749099731, 0.9074286818504333, 0.5076786279678345, 0.5187039971351624, 0.7950734496116638, 0.14910495281219482, 0.0016435942379757762, -0.2845911979675293, -0.4870782792568207, -0.1400509774684906, -0.20886394381523132, -0.5544216632843018, -1.189511775970459, -0.10541784018278122, 0.511816143989563, 0.4717022180557251, -0.046548061072826385, 0.8038042783737183, -0.31232839822769165, 0.9595141410827637, -0.28629007935523987, 0.44131985306739807, -0.07605227082967758, 0.0016944058006629348, -0.6909966468811035, 0.07302964478731155, 0.12769103050231934, -0.38240760564804077, -0.1881578415632248, -0.9883694052696228, 0.26379260420799255, 0.04245791584253311, 0.7232499718666077, 0.36676648259162903, -0.13488367199897766, -0.08676622807979584, -0.2948596477508545, -0.035550687462091446, -0.08718997985124588, 0.1864699274301529, 0.8570120930671692, 0.4465932548046112, 0.1033477857708931, -0.6449700593948364, -0.36613765358924866, 0.4282388389110565, 0.04439597576856613, 0.18486233055591583, 0.10346703976392746, -0.08260875940322876, 0.7287495732307434, 0.513902485370636, -0.6499843001365662, 0.07261191308498383, -0.7549473643302917, -0.2306358516216278, 0.8809099197387695, 0.06478849798440933, 0.23948033154010773, -0.28744545578956604, -0.32294341921806335, -0.33319249749183655, -0.49711427092552185, -0.20616185665130615, 0.5586166381835938, -0.1382990926504135, -1.0991251468658447, 0.7095120549201965, 0.09880249202251434, 0.12585268914699554, 0.2566787004470825, 0.8905166983604431, 0.6465680599212646, -0.20996952056884766, -0.09788499772548676, 0.03254993259906769, 0.07341758906841278, 0.6325129270553589, 0.26627621054649353, 0.19226886332035065, -0.10158663243055344, 0.029451703652739525, -0.0029683264438062906, -1.2412315607070923, -0.989228367805481, 0.5785494446754456, -0.7751288414001465, -0.10198934376239777, 0.44481155276298523, -1.1476285457611084, -0.4780610203742981, -0.2806921601295471, 0.007826833985745907, 0.21994781494140625, -1.1242012977600098, -0.32014286518096924, -0.9066894054412842, 0.4414469003677368, 0.1134682148694992, -0.8967258334159851, 0.28068819642066956, 0.8579363226890564, 0.40983647108078003, 0.16451875865459442, 0.014909546822309494, -0.5181988477706909, 0.3452850580215454, -0.20024681091308594, 0.8831374049186707, -0.4848598837852478, -0.4102829098701477, 0.027558481320738792, 0.34184500575065613, 0.195785790681839, -0.43965446949005127, 0.8424411416053772, -0.5016557574272156, -0.22939376533031464, -0.6933550238609314, -0.6663364171981812, -0.060636091977357864, 0.174208864569664, -1.4281255006790161, 1.308839201927185, 0.29038113355636597, -0.8161003589630127, 0.26833128929138184, -1.2914981842041016, -0.2447945773601532, 0.7165313363075256, -0.16566762328147888, -0.46535515785217285, 0.37362152338027954, -0.20349930226802826, 0.5362094044685364, -0.14262624084949493, 0.2796619236469269, -0.7670033574104309, -0.20576468110084534, -0.011374151334166527, 0.09040764719247818, 0.8860253691673279, 0.3597741425037384, 0.21964478492736816, -0.17394976317882538, -0.8711093068122864, 0.09027352184057236, 0.29374265670776367, 0.046585001051425934, -0.3141067624092102, -0.5574008226394653, 0.728949785232544, -0.014883434399962425, 0.4273597002029419, -0.3921509385108948, 0.1290319859981537, 0.02975763939321041, -0.21251633763313293, 0.7470557689666748, 0.11386830359697342, 0.21414948999881744, -0.5088404417037964, 0.5991144180297852, 0.12372808903455734, 0.20981605350971222, -0.0026995264925062656, -0.5764366984367371, -0.565841555595398, -0.050898149609565735, 0.6672607064247131, 0.6882744431495667, -0.7021327018737793, 0.6655783653259277, 0.025266651064157486, -0.5471940636634827, -0.13422848284244537, -0.08387505263090134, 0.32248881459236145, -0.10101640969514847, 0.3067137598991394, -0.5383879542350769, -0.8368830680847168, -0.8355616927146912, 0.29639142751693726, -0.03350897505879402, 0.029200691729784012, 0.3734187185764313, 0.9878720045089722, -0.4698348045349121, 0.5850170254707336, -0.8123521208763123, -0.20263653993606567, 0.09858588129281998, -0.2540163993835449, 0.14032672345638275, 0.8117020130157471, 1.0517829656600952, -0.9326959848403931, -0.3213657736778259, -0.4959533214569092, -0.5785723328590393, 0.04447267949581146, 0.37410232424736023, -0.4886488616466522, 0.10302889347076416, 0.19597011804580688, -0.4039899706840515, 0.714637279510498, 0.9638376235961914, -0.7800967693328857, 0.00740608898922801, -0.04698330909013748, 0.12738822400569916, -1.5204828977584839, 0.40558508038520813, 0.14220067858695984, -0.183293879032135, -0.36066552996635437, -0.11467301845550537, 0.18980742990970612, -0.16705237329006195, -0.07061079889535904, 0.6093789339065552, -0.6173610091209412, -0.25430402159690857, 0.011905672959983349, -0.014615779742598534, -0.21230900287628174, 0.18185876309871674, 0.05224576219916344, 0.36454838514328003, 0.8509083986282349, -0.2609843909740448, 0.9473730325698853, 0.6325857639312744, -0.007435668259859085, 1.1007269620895386, -0.8635001182556152, 0.27116018533706665, -0.37467867136001587, 0.46099936962127686, -0.9696168899536133, -0.7951964139938354, 0.3861367404460907, -0.3817046582698822, 0.5759440660476685, -0.44913357496261597, -0.552314281463623, -0.7153400182723999, -0.38221877813339233, 0.9384785294532776, 0.5510881543159485, -0.8226112723350525, 0.2448204904794693, 0.8767983317375183, -0.1306031197309494, 0.1345956027507782, -1.0538250207901, 0.07042747735977173, -0.24596625566482544, -0.29952898621559143, 0.5272325277328491, -0.48661041259765625, -0.07134930789470673, -0.05071605369448662, 0.33292409777641296, -0.29343467950820923, -0.3333189785480499, 0.619532585144043, 0.2230825275182724, -0.04933621361851692, 0.4436798095703125, 0.0021572497207671404, -0.7933637499809265, 0.3343258202075958, 0.03557872027158737, 0.14429055154323578, 0.21474319696426392, -0.06236991286277771, -0.5763083696365356, 0.7189318537712097, 0.3258180320262909, -0.06648910045623779, 0.2600438892841339, 0.983376681804657, -0.9959351420402527, -0.2864172160625458, -0.4718320667743683, -0.2798960208892822, -0.440062552690506, 0.4351811408996582, -0.6130046248435974, -0.4939640164375305, 0.45535698533058167, -0.08655323833227158, -0.18229065835475922, 0.9733173251152039, 0.7525725364685059, 0.01867651380598545, 0.6011454463005066, 0.599301278591156, -0.0164328683167696, 0.417494535446167, -0.32683703303337097, -0.4016841650009155, -0.7913095951080322, -0.5450962781906128, -0.5136321783065796, -0.6303982138633728, -0.7544956803321838, -0.5970184206962585, -0.0034053856506943703, -0.16978314518928528, -0.252183735370636, 0.5258983373641968, -0.6421253085136414, 0.575049638748169, 0.4533211886882782, 0.41052597761154175, -0.2520167827606201, 0.037491653114557266, 0.40459200739860535, 0.08493202179670334, -0.7075450420379639, -0.019819172099232674, 1.3074582815170288, 0.734423816204071, 0.9077410101890564, 0.5172939896583557, 0.8153658509254456, 0.5057923197746277, 0.20977997779846191, -0.27241241931915283, 0.28794336318969727, -0.2662375271320343, -0.9450200796127319, -0.06382960081100464, -0.18763041496276855, -0.5627074241638184, -0.627822995185852, -0.08547726273536682, -0.12837257981300354, 0.48489195108413696, 0.400650292634964, 0.012279204092919827, 0.14194044470787048, -0.8774327039718628, 1.047873616218567, -0.1936112344264984, -0.18304865062236786, -0.38588157296180725, -0.6193743944168091, 0.15330682694911957, 0.2915476858615875, 0.04440516233444214, -0.32015082240104675, -0.0630425363779068, 1.1994142532348633, -0.3366215229034424, 1.1631532907485962, -0.816041111946106, -0.19211255013942719, 0.16615331172943115, -0.34456193447113037, 0.48752957582473755, 0.5798988938331604, -0.17412689328193665, 0.016412047669291496, 0.34087973833084106, -0.6106932163238525, -0.155537948012352, 0.9329641461372375, -0.7329389452934265, 0.2600732147693634, -0.5220197439193726, -0.5228396058082581, 0.0032626597676426172, -0.02398274466395378, 0.21718822419643402, 0.806223452091217, -0.4517109990119934, 0.09367617964744568, 0.9389426708221436, 0.44884029030799866, 0.577446699142456, 0.02195627987384796, -0.12096065282821655, -0.5519512295722961, 0.834637463092804, 0.22996985912322998, -0.23748479783535004, 0.35559532046318054, 0.052916549146175385, -0.556932270526886, -0.07019766420125961, -0.753481924533844, 0.25497835874557495, -0.5851365327835083, -0.4854629635810852, -0.21633660793304443, -0.16078291833400726, -0.3938210606575012, -0.0675751119852066, -0.3353897035121918, -0.9022924900054932, -0.8122795820236206, -0.6206600666046143, 1.1918535232543945, 0.8141846060752869, -0.6250188946723938, -0.002144306432455778, -0.6504528522491455, 0.6285896897315979, 0.11582473665475845, 1.1480069160461426, -0.2795349061489105, -0.575893759727478, -0.23221534490585327, -0.06170446798205376, 0.10671944916248322, -0.7028977870941162, -0.4433823227882385, 0.3475339412689209, 0.6339466571807861, 0.19819729030132294, 0.12696373462677002, 0.523597240447998, -0.16357101500034332, 0.5749529600143433, 0.32803618907928467, -0.6405287981033325, 0.6169562935829163, -0.18055053055286407, 0.3452609181404114, 0.6847772598266602, 0.5721250176429749, -0.23463572561740875, 0.4999750852584839, -1.0135719776153564, -0.5390005707740784, 0.49327990412712097, -0.11821045726537704, 0.22305399179458618, 0.2818982005119324, 0.6933353543281555, -0.04203666374087334, 0.037188854068517685, -0.6179953813552856, -0.9401649832725525, -0.22668568789958954, -0.5936727523803711, 0.19185851514339447, -0.8639954328536987, -0.4734557569026947, -0.5345335602760315, 0.7181854844093323, -0.21154262125492096, 0.49799343943595886, 0.0460946150124073, 0.35732874274253845, -0.2787863314151764, -0.19366709887981415, 0.45332419872283936, 0.5292849540710449, -0.256412148475647, 0.02780498005449772, -0.1702008992433548, -0.4869202971458435, -0.4043031930923462, 0.7661346197128296, 0.06579864025115967, -0.15973863005638123, 0.31458842754364014, 0.6711347103118896, -0.10395242273807526, -0.09792488068342209, 0.4435768127441406, 0.006611797492951155, -0.532293438911438, -0.6007580757141113, 0.08760233968496323, 0.16478608548641205, 0.35585105419158936, -0.01700785756111145, -0.17531752586364746, 0.30441567301750183, -0.3817980885505676, 0.7522170543670654, 0.09636908024549484, -0.7320190668106079, -0.5697641968727112, 0.703102707862854, 0.8205788731575012, -0.36035463213920593, 0.7453902363777161, -0.26253917813301086, -0.4263416528701782, 0.9625906944274902, 0.46945682168006897, 0.9208438396453857, -0.4051761031150818, 0.5101202130317688, 0.7547711730003357, 0.09462817013263702, 0.1460454910993576, 0.9249206781387329, -0.29988357424736023, -0.481020450592041, 0.16712680459022522, -0.263406902551651, -0.30500486493110657, -0.5271182060241699, -1.1087206602096558, 0.28541505336761475, -0.5433646440505981, -0.1379428654909134, -0.012024417519569397, 0.21058830618858337, -0.919257402420044, 0.3908960223197937, 0.23770354688167572, 1.4649014472961426, -0.8384358286857605, 0.8828302025794983, 0.9066409468650818, -0.32153254747390747, -0.6289141178131104, -0.20589305460453033, 0.22036807239055634, -0.8454797863960266, 0.03582063689827919, 0.2463955581188202, 0.5566617250442505, 0.017411639913916588, -0.6932226419448853, -0.6242172122001648, 1.3821769952774048, -0.07298392802476883, -0.9598406553268433, 0.44734469056129456, -0.1122983992099762, 0.3744753301143646, -0.3263888657093048, 0.3488100469112396, 0.5822320580482483, 0.9320601224899292, 0.45741549134254456, -0.6674209833145142, 0.20110243558883667, -0.7410767078399658, -0.05445164069533348, 0.36427363753318787, -0.7668430209159851, 0.15687477588653564, -0.3352782726287842, 0.1255962997674942, 0.10379159450531006, 0.632175862789154, 0.00026040890952572227, 0.46786609292030334, 0.42439383268356323, 0.8229080438613892, 0.9513502717018127, -0.4321392774581909, 0.8800339698791504, -0.005249566398561001, 0.6171061992645264, 1.0695147514343262, -0.3189205527305603, 0.549993634223938, 0.5751602053642273, -0.15756972134113312, 0.27450576424598694, 0.7092720866203308, -0.641851007938385, 0.41049423813819885, 0.344866007566452, -0.13879378139972687, -0.17233102023601532, -0.08979154378175735, -0.9468814730644226, 0.06523191183805466, 0.4363747239112854, -0.43349048495292664, 0.1267250031232834, -0.15943403542041779, 0.16742919385433197, -0.12521077692508698, -0.4293672442436218, 0.8519309163093567, -0.0387408472597599, -0.27440983057022095, -0.06660128384828568, -0.10307732969522476, 0.17843754589557648, -0.5402135848999023, -0.4711846709251404, -0.09143035113811493, 0.3347480893135071, -0.6308926939964294, -1.2604461908340454, 0.7561224102973938, -0.2451397031545639, -0.6099478602409363, -0.14230510592460632, 0.45895126461982727, -0.5662400722503662, -0.9689723253250122, 0.2800709307193756, 0.00761197367683053, 0.18373075127601624, 0.17222625017166138, -1.1651885509490967, 0.4663374722003937, -0.10775541514158249, -0.22754830121994019, 0.1125684455037117, 0.20465677976608276, 0.17923754453659058, 0.3236643373966217, 0.33432909846305847, -0.2004839926958084, -0.4573841392993927, 0.21784812211990356, 0.8754955530166626, -0.6796939969062805, -0.5166727304458618, -0.36466971039772034, 0.8758054971694946, -0.435899019241333, -0.7207769751548767, 0.46119603514671326, 1.0865117311477661, 0.7811850309371948, -0.1724037528038025, 0.8333449363708496, -0.6852724552154541, 0.6227023005485535, -0.4228978157043457, 0.5883373618125916, -0.41718658804893494, -0.09313993901014328, 0.0009200251079164445, -0.7103009819984436, -0.6479023098945618, 0.5719678401947021, 0.36519235372543335, 0.24623723328113556, 0.5358018279075623, 1.0709599256515503, -0.1136709600687027, 0.3810671865940094, 0.015265063382685184, 0.21307146549224854, 0.24583978950977325, 0.5450423359870911, 0.10060112178325653, -0.8035009503364563, 0.05529847368597984, -0.13804054260253906, -0.7902564406394958, -0.01184808649122715, -1.0111440420150757, -1.0261578559875488, -0.7438207864761353, -0.7508682012557983, -0.4885437488555908, 0.049525607377290726, 0.9081270098686218, 1.0032775402069092, -0.9583573341369629, -0.10830103605985641, 0.055699657648801804, 0.24093317985534668, 0.04170496389269829, -0.13680534064769745, 0.7323400378227234, 0.5796645879745483, -0.7473663687705994, -0.3489251434803009, -0.07574673742055893, 0.26208946108818054, -0.21683186292648315, -0.1645246148109436, 0.010687721893191338, -0.19436566531658173, 0.23962701857089996, 0.4591943025588989, -0.19843065738677979, -0.3724513649940491, -0.6304023265838623, 0.07198847085237503, -0.08474045991897583, 0.8637168407440186, -0.30546629428863525, 0.18432478606700897, 0.6309167146682739, 0.45052260160446167, 0.7230991125106812, 0.089094378054142, 0.47010937333106995, -0.6808314919471741, 0.1855221688747406, -0.18190263211727142, 0.2697099447250366, 0.09255632758140564, -0.45221811532974243, 0.8681776523590088, 0.46707940101623535, -0.5899344086647034, -0.41942116618156433, 0.22692689299583435, -1.3742409944534302, 0.3341851234436035, 1.096303105354309, 0.136281818151474, -0.22497646510601044, -0.05541708320379257, -0.4637480676174164, -0.020258501172065735, -0.6590575575828552, 0.22509126365184784, 0.46264299750328064, 0.1243441253900528, -0.43360087275505066, -0.3116282522678375, 0.6686517596244812, -0.2514055669307709, -1.3077791929244995, 0.12753519415855408, 0.5615217685699463, 0.1169733852148056, -0.10460737347602844, 0.6056437492370605, -0.2016490399837494, 0.4566834568977356, 0.3089175522327423, 0.2957514822483063, -0.21424460411071777, -0.6943685412406921, -0.26069748401641846, 0.10609109699726105, -0.20415523648262024, -0.5308198928833008 ]
null
null
null
null
null
null
null
null
null
null
null
null
null
llm-book/livedoor-news-corpus
llm-book
2023-09-30T08:44:39Z
444
3
null
[ "task_categories:summarization", "size_categories:1K<n<10K", "language:ja", "news", "region:us" ]
2023-09-30T08:44:39Z
2023-06-21T07:16:52.000Z
2023-06-21T07:16:52
--- task_categories: - summarization language: - ja tags: - news pretty_name: livedoor-news-corpus size_categories: - 1K<n<10K --- # Dataset Card for llm-book/ner-wikinews-dataset 書籍『大規模言語モデル入門』で使用する、株式会社ロンウイットが提供する「livedoorニュースコーパス」によるデータセットです。 [オリジナルのサイト](https://www.rondhuit.com/download.html)と同じものを使用しています。 本コーパスは、NHN Japan株式会社が運営する「livedoor ニュース」のうち、下記のクリエイティブ・コモンズライセンスが適用されるニュース記事を収集し、可能な限りHTMLタグを取り除いて作成したものです。 ### Licence Attribution-NoDerivs 2.1 Japan (CC BY-ND 2.1 JP) License
[ -0.19166356325149536, -0.7267184853553772, -0.16138602793216705, 0.21889130771160126, -0.789661705493927, -0.09421543776988983, 0.13419140875339508, -0.07771597802639008, 0.6471471190452576, 0.6421813368797302, -0.8106381893157959, -1.108367681503296, -0.3240068852901459, 0.017918238416314125, 0.05346895754337311, 0.9095291495323181, -0.08412668108940125, 0.1164732351899147, -0.2179267406463623, -0.1276218742132187, -0.4707668125629425, -0.35412827134132385, -0.7604478597640991, -0.5866699814796448, 0.4582546651363373, 0.6364030838012695, 1.0149505138397217, 0.5009883642196655, 0.5720791220664978, 0.1489439159631729, 0.1458369791507721, -0.1237526386976242, -0.3909777104854584, 0.37658175826072693, 0.24402818083763123, -0.387376606464386, -1.2870910167694092, -0.3039415180683136, 0.9357673525810242, 0.5091739892959595, -0.14311566948890686, -0.11941174417734146, -0.09083583950996399, 0.9240310192108154, -0.09694346785545349, 0.3707306385040283, -0.238434299826622, 0.5478701591491699, -0.1998894214630127, -0.5575517416000366, -0.1714067906141281, -0.5329446196556091, -0.47288644313812256, -1.1812481880187988, 0.08980809152126312, 0.1095840185880661, 1.1587553024291992, 0.20105378329753876, -0.36846455931663513, -0.22694362699985504, -0.4245707392692566, 0.5144924521446228, -1.0398842096328735, 0.33968251943588257, 0.798037052154541, 0.5390453338623047, -0.28596585988998413, -0.6557974219322205, -0.53803950548172, 0.12635500729084015, -0.10018547624349594, 0.5581340789794922, 0.09496160596609116, -0.3028718829154968, 0.4404497742652893, 0.27979499101638794, -0.21821264922618866, 0.1799677163362503, -0.45832931995391846, -0.32552748918533325, 1.0836844444274902, 0.5393410921096802, 0.4495582580566406, -0.4451846182346344, -0.07660417258739471, -0.22442054748535156, -0.5832523107528687, -0.34357017278671265, 0.7416510581970215, 0.2701645493507385, -0.8839937448501587, 0.7265592813491821, -0.1607644110918045, 0.5769976377487183, -0.4498591423034668, -0.4409037232398987, 0.8111647963523865, -0.20276132225990295, -0.23660899698734283, -0.03094913624227047, 0.5829806923866272, 0.8162316083908081, 0.3362199068069458, -0.1417497843503952, -0.2767544388771057, -0.4815565049648285, -0.009168019518256187, -0.7377259731292725, -0.027917243540287018, 0.21633024513721466, -0.5121167302131653, -0.1652701497077942, 0.21287694573402405, -1.4664219617843628, -0.32776352763175964, -0.5720469951629639, 0.029514923691749573, -0.06452074646949768, -0.5910423994064331, 0.04999120905995369, 0.13608887791633606, 0.4845239222049713, 0.3213416039943695, -0.71119225025177, 0.3858110010623932, 0.6687377691268921, 0.5947325229644775, -0.3588356077671051, -0.29312390089035034, -0.0422346331179142, 0.30133944749832153, -0.2561117708683014, 0.5627343058586121, -0.3530997633934021, -0.9376052618026733, 0.22987602651119232, 0.2678448557853699, -0.10374259948730469, -0.578546941280365, 0.7212387323379517, -0.8316986560821533, 0.12233319878578186, -0.16210851073265076, -0.540484607219696, 0.03731612488627434, 0.3740569055080414, -0.7711594104766846, 1.2480549812316895, 0.04812704026699066, -1.2755898237228394, 0.19122059643268585, -0.4753584563732147, -0.4561079740524292, 0.10632961243391037, -0.42178723216056824, -0.5511502623558044, -0.25353679060935974, -0.056741148233413696, 0.8426868319511414, 0.24427971243858337, 0.27091848850250244, -0.19060659408569336, -0.18322405219078064, 0.49722886085510254, -0.43948468565940857, 0.6769396066665649, 0.38878265023231506, 0.15444178879261017, -0.29578760266304016, -1.5503406524658203, -0.07738272845745087, 0.28714612126350403, -0.5086120963096619, -0.4090729057788849, -0.1579560488462448, 0.21058370172977448, 0.0499889999628067, 0.6887322664260864, -0.5750740170478821, 0.30066150426864624, -0.2001161128282547, -0.01531478576362133, 0.8056120872497559, 0.3081936240196228, 0.26765942573547363, -0.43496933579444885, 0.952878475189209, 0.34380245208740234, 0.13056179881095886, 0.038410745561122894, -0.28465622663497925, -0.6587093472480774, -0.2895191013813019, 0.22976428270339966, 0.7139294743537903, -0.7177223563194275, 0.566974937915802, -0.5397317409515381, -0.5920528769493103, -0.32939237356185913, -0.2894201874732971, 0.08753859996795654, 0.5776487588882446, 0.28537705540657043, -0.02406439557671547, -0.440788209438324, -0.7227827906608582, 0.07556566596031189, 0.38791200518608093, 0.24110040068626404, 0.7244296669960022, 0.5868436694145203, -0.6512068510055542, 0.889442503452301, -0.7482895255088806, -0.15701624751091003, -0.05560070648789406, -0.20089127123355865, 1.0975130796432495, 0.4396190941333771, 0.027286406606435776, -1.0739771127700806, -0.9088537096977234, 0.09846379607915878, -1.0400710105895996, -0.11974624544382095, -0.13179157674312592, -0.435915470123291, 0.34331411123275757, 0.4747256636619568, -0.3759116232395172, 0.874275267124176, 0.1830972284078598, -0.6658868789672852, 0.6236087679862976, -0.55924391746521, 0.06731212139129639, -1.5590101480484009, 0.39063048362731934, -0.34127554297447205, -0.09058071672916412, -0.41439005732536316, -0.04389313980937004, -0.06931327283382416, 0.13690976798534393, -0.3562059700489044, 1.0173147916793823, -0.6544939875602722, -0.2507303059101105, -0.13724127411842346, 0.37976402044296265, -0.00932129193097353, 0.3552614152431488, -0.05196087434887886, 0.5658013820648193, 0.6860548257827759, -0.895932137966156, 0.6934134364128113, 0.5352408289909363, -0.09249247610569, 0.608384907245636, -0.5456054210662842, -0.21678833663463593, -0.0904875323176384, -0.010199463926255703, -0.5260426998138428, -0.464778870344162, 0.7495443820953369, -0.5174904465675354, 0.8130133748054504, 0.04943814128637314, -0.9178979992866516, -0.05478239804506302, -0.2878967523574829, 0.2731427550315857, 0.34458282589912415, -0.4272983968257904, 0.6680014729499817, 0.28305014967918396, -0.12494879215955734, -0.9486134648323059, -1.0378819704055786, -0.3147091567516327, -0.208598330616951, -0.30167216062545776, 0.5419528484344482, -0.3597866892814636, -0.176060751080513, 0.08079031109809875, -0.08773168921470642, -0.1337873488664627, -0.12300994992256165, 0.54664546251297, 0.6245728731155396, -0.09308645129203796, 0.25627589225769043, -0.004788478836417198, -0.773422122001648, -0.0056125023402273655, 0.3736856281757355, 0.4157595634460449, 0.4356905221939087, -0.4280596673488617, -0.3257713317871094, 0.15754106640815735, 0.3460049629211426, 0.46519753336906433, 0.5803885459899902, 0.4841911494731903, -0.37715792655944824, 0.02327478490769863, -0.314791202545166, 0.19636066257953644, -0.46702367067337036, 0.33824601769447327, -0.3484213352203369, -0.4943569004535675, 0.9792153835296631, -0.04522014409303665, 0.01983082853257656, 0.634432315826416, 0.24643777310848236, -0.24265654385089874, 0.17227667570114136, 0.4253511428833008, -0.3323306143283844, 0.33412566781044006, -0.30410414934158325, 0.1383979469537735, -1.1958155632019043, -0.7145612835884094, -0.5199756622314453, -0.4423060715198517, -0.8761975765228271, -0.05856018885970116, 0.15962234139442444, 0.15350112318992615, -0.3984948694705963, 0.26313239336013794, -0.6407521367073059, 0.41803210973739624, 0.29951149225234985, 0.2491440623998642, 0.3889153301715851, 0.4323970675468445, -0.5388454794883728, -0.35314735770225525, -0.5310915112495422, -0.37070131301879883, 1.227596640586853, 0.4882565438747406, 1.091191291809082, 0.15654313564300537, 0.9400177597999573, 0.24051225185394287, 0.04601821303367615, -0.5481396317481995, 0.7604764103889465, 0.05770747736096382, -0.8176712393760681, -0.38921135663986206, -0.3080139756202698, -1.3226302862167358, 0.13934467732906342, -0.08060570061206818, -0.8739966750144958, 0.3929728865623474, -0.24607813358306885, 0.16551542282104492, 0.39233651757240295, -0.2632023096084595, 0.8323986530303955, -0.22991079092025757, -0.5759713649749756, -0.025135593488812447, -0.7001071572303772, -0.029598653316497803, -0.12959066033363342, 0.6073000431060791, -0.357492059469223, -0.4661048352718353, 1.151885747909546, -0.5025237202644348, 1.037841558456421, -0.44532787799835205, -0.12694139778614044, 0.03454098105430603, 0.03999911621212959, 0.5878474116325378, 0.39731988310813904, -0.4506600499153137, 0.09357389062643051, 0.20770661532878876, -0.510976254940033, -0.23996038734912872, 0.6386371850967407, -1.0395400524139404, 0.03709787502884865, -0.6149404048919678, -0.31318897008895874, 0.14883114397525787, 0.5630319118499756, 0.5670061111450195, 0.7817005515098572, 0.04251788929104805, 0.07526005059480667, 0.6912261843681335, -0.4373498260974884, 0.6065403819084167, 0.8941434025764465, -0.7099012732505798, -0.7784333825111389, 1.097324252128601, 0.40448540449142456, -0.09894760698080063, 0.6661694049835205, 0.22354158759117126, -0.41476112604141235, -0.42406195402145386, 0.0019556102342903614, 0.591540515422821, -1.162424921989441, -0.28733327984809875, -0.5420326590538025, -0.4201471507549286, -0.12937435507774353, -0.28180184960365295, -0.138748437166214, -0.21938066184520721, -0.7813905477523804, -0.19532042741775513, 0.5317210555076599, 0.5494914650917053, -0.39308613538742065, 0.39695650339126587, -0.972284734249115, 0.5247250199317932, -0.15611542761325836, 0.5361970067024231, 0.06571497768163681, -0.7675792574882507, -0.3874266445636749, -0.19488529860973358, 0.05245470255613327, -0.8259587287902832, 0.7876269221305847, -0.14424413442611694, 0.9151251912117004, 0.24113065004348755, 0.2751578986644745, 0.3004702627658844, -0.08006215840578079, 0.6473222970962524, 0.18803074955940247, -0.28464755415916443, 0.520636260509491, -0.6809974312782288, 0.4438752233982086, 0.873234212398529, 0.7767647504806519, -0.8202808499336243, 0.2890072762966156, -1.115193486213684, -1.0642067193984985, 0.6724469065666199, -0.24443598091602325, 0.4940324127674103, 0.2968331277370453, 0.36827215552330017, 0.52918541431427, 0.4457653760910034, -1.2114450931549072, -0.8864735960960388, -0.03230961039662361, -0.1235998347401619, 0.25693628191947937, -0.5710404515266418, 0.046866584569215775, -0.4835262596607208, 1.2915705442428589, 0.09086178988218307, 0.5407065153121948, 0.0740785151720047, 0.20202532410621643, -0.13157184422016144, 0.41852518916130066, 0.6029974818229675, 0.5615034103393555, -0.5608301162719727, -0.23244401812553406, -0.09221382439136505, -0.9741128087043762, -0.042990006506443024, 0.014858238399028778, -0.6338837146759033, 0.22035425901412964, 0.7759283185005188, 0.8212423920631409, 0.41064465045928955, -0.09441333264112473, 0.4800931513309479, -0.0656115710735321, -0.19001077115535736, -0.803932785987854, -0.000638145545963198, -0.019818076863884926, 0.0405118502676487, 0.29782935976982117, -0.23316586017608643, -0.3449215292930603, -0.2082129269838333, 0.23770366609096527, 0.03248068690299988, -0.10130178183317184, -0.039786867797374725, 0.10971352458000183, 0.10979689657688141, -0.5035487413406372, 0.9486261010169983, -0.2603946328163147, -0.37339121103286743, 0.6777053475379944, 0.6507119536399841, 0.8030202388763428, 0.22718754410743713, 0.1414293497800827, 0.8902990221977234, -0.0631365180015564, 0.4165061116218567, 0.895870566368103, -0.14763909578323364, -1.127524495124817, 0.042617835104465485, -0.903500497341156, -0.4421166777610779, 0.11585047841072083, -0.9963811635971069, 0.4456244707107544, -0.5735451579093933, 0.06614938378334045, -0.3915034532546997, 0.31871044635772705, -0.6196252703666687, 0.40668946504592896, -0.1573677957057953, 1.3633971214294434, -0.5698306560516357, 1.055637240409851, 0.4969204366207123, -0.4840448498725891, -0.7524164319038391, 0.09128544479608536, -0.23389378190040588, -1.0654505491256714, 0.7220056653022766, -0.08174793422222137, 0.30190199613571167, 0.28404954075813293, -0.5459337830543518, -0.9351924061775208, 1.5258420705795288, -0.2572455406188965, -0.7605811357498169, 0.3683525323867798, 0.09013816714286804, 0.5087602138519287, -0.14228354394435883, 0.3663482069969177, 0.30098414421081543, 0.8334359526634216, 0.3008183538913727, -0.3410438895225525, -0.26075229048728943, -0.5173771977424622, -0.40909552574157715, -0.0035087107680737972, -0.6469955444335938, 0.48749521374702454, 0.1702442169189453, -0.40706387162208557, -0.31644657254219055, 0.619289219379425, 0.39770379662513733, 0.5783014297485352, -0.05325726419687271, 0.8324912786483765, 0.8033014535903931, -0.07565286755561829, 0.9395463466644287, -0.3053864538669586, 0.5039574503898621, 1.2880839109420776, -0.1744399219751358, 0.862571656703949, 0.3395443856716156, -0.8984313011169434, 0.4319717288017273, 0.7722498178482056, -0.4246642589569092, 0.7993777990341187, 0.11542568355798721, -0.1488422304391861, 0.025185320526361465, 0.04515284672379494, -0.8091744184494019, -0.056626368314027786, 0.3733427822589874, 0.004098481964319944, -0.26209643483161926, -0.04679553583264351, 0.2777426540851593, -0.11984734982252121, -0.19502897560596466, 0.7372578382492065, 0.45069393515586853, -0.28544163703918457, 0.21395902335643768, -0.047759003937244415, 0.9294747710227966, -0.8491885662078857, -0.005219262558966875, -0.6136005520820618, -0.07194014638662338, -0.6474515795707703, -1.0308274030685425, 0.41218018531799316, -0.2488914132118225, -0.38115617632865906, -0.06224820017814636, 0.8685026168823242, -0.08306775242090225, -0.7760776877403259, 0.5054695010185242, 0.12002580612897873, 0.598361074924469, 0.7980712652206421, -1.1478959321975708, 0.23246169090270996, 0.08422564715147018, -0.3889000713825226, 0.23909783363342285, 0.45818281173706055, 0.3382873833179474, 0.7000613808631897, 0.47275957465171814, 0.3917190432548523, 0.1978510022163391, 0.32270529866218567, 0.8303247690200806, -0.8604282140731812, -0.7297219634056091, -0.7743232846260071, 0.8028770089149475, -0.3300454616546631, -0.47412726283073425, 0.7661831378936768, 0.8756305575370789, 0.7542681694030762, -0.1240747943520546, 0.7185671329498291, -0.1796436756849289, 0.8027369976043701, -0.6721200346946716, 0.8202963471412659, -0.682512640953064, 0.29698285460472107, -0.20943470299243927, -1.0013412237167358, -0.574967086315155, 0.4730653762817383, -0.23444557189941406, 0.23274709284305573, 0.9023071527481079, 1.079325795173645, 0.07124906033277512, -0.009605967439711094, 0.5414100885391235, 0.35938969254493713, -0.04577385261654854, 0.3094116747379303, 0.5338834524154663, -0.8968960046768188, -0.11001279205083847, -0.2978725731372833, 0.1087649017572403, -0.38034868240356445, -1.2017905712127686, -0.8583985567092896, -0.3739551901817322, -0.6719111800193787, -0.45214012265205383, -0.3831811845302582, 0.7579479217529297, 0.3295269310474396, -0.8877863883972168, -0.24227669835090637, -0.03575625270605087, 0.36716312170028687, 0.3350923955440521, -0.2637406289577484, 0.8121644258499146, 0.1012221947312355, -0.4303039610385895, 0.2128080278635025, 0.05538814887404442, 0.30810093879699707, -0.12975415587425232, -0.6225246787071228, -0.18939098715782166, -0.3300813138484955, -0.11103972047567368, 0.22415141761302948, -0.5020881295204163, 0.4207582175731659, -0.3515063524246216, -0.5182317495346069, 0.29896116256713867, 0.4559074342250824, -0.3286236822605133, 0.46152791380882263, 0.7448013424873352, 0.4795687198638916, 0.6453032493591309, -0.2547551393508911, 0.10668644309043884, -0.7483243346214294, 0.21360085904598236, -0.036963943392038345, 0.4047374129295349, 0.31907200813293457, -0.7281984090805054, 0.8532129526138306, 0.6354430913925171, -0.527667760848999, -0.5681708455085754, -0.2657493054866791, -1.2837899923324585, -0.2128618359565735, 1.2555830478668213, 0.03807858005166054, -0.36371758580207825, 0.15599828958511353, -0.17812640964984894, 0.6146789193153381, -0.3996662199497223, 0.12469716370105743, 0.7521455883979797, 0.3340558409690857, -0.22519773244857788, -1.1212576627731323, 0.16485156118869781, 0.010497520677745342, -1.063389539718628, -0.11096593737602234, 0.42643728852272034, 0.13816098868846893, -0.01115426979959011, 0.9687309861183167, -0.26614364981651306, 0.17338703572750092, 0.33763372898101807, 0.2743583619594574, -0.34976664185523987, -0.22060826420783997, -0.5447405576705933, -0.23601168394088745, -0.04688422754406929, -0.3470979928970337 ]
null
null
null
null
null
null
null
null
null
null
null
null
null
result-kand2-sdxl-wuerst-karlo/3399e196
result-kand2-sdxl-wuerst-karlo
2023-11-06T03:21:51Z
444
0
null
[ "region:us" ]
2023-11-06T03:21:51Z
2023-11-06T03:21:50.000Z
2023-11-06T03:21:50
--- dataset_info: features: - name: result dtype: string - name: id dtype: int64 splits: - name: train num_bytes: 158 num_examples: 10 download_size: 1308 dataset_size: 158 configs: - config_name: default data_files: - split: train path: data/train-* --- # Dataset Card for "3399e196" [More Information needed](https://github.com/huggingface/datasets/blob/main/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
[ -0.6887289881706238, -0.05026112124323845, 0.27979445457458496, 0.3673930764198303, -0.16923584043979645, -0.19502466917037964, 0.28277814388275146, -0.21521002054214478, 0.9834177494049072, 0.43466702103614807, -0.8301456570625305, -0.49688175320625305, -0.4713130593299866, 0.01574641279876232, -0.07426024228334427, 1.0972245931625366, 0.26044216752052307, 0.15515044331550598, -0.3707001507282257, -0.00974159874022007, -0.32643163204193115, -0.5637649893760681, -0.6627041101455688, -0.4148867130279541, 0.9987865090370178, 0.8196600079536438, 0.5260511040687561, 0.501863956451416, 0.7215275764465332, 0.21535255014896393, 0.08980246633291245, -0.2867257595062256, -0.5462791919708252, -0.16516387462615967, -0.27238455414772034, -0.4898592531681061, -1.2270961999893188, 0.04544507712125778, 0.5910478234291077, 0.6743634939193726, -0.06314633786678314, 0.7595723867416382, -0.31584253907203674, 0.8323697447776794, -0.3397176265716553, 0.6015849113464355, -0.12123602628707886, -0.1313670426607132, -0.8470147848129272, -0.07869704067707062, -0.03707096353173256, -0.41780027747154236, -0.25845053791999817, -1.2009539604187012, 0.24937942624092102, 0.15472909808158875, 0.757762610912323, 0.10341907292604446, 0.04206318408250809, -0.025665678083896637, -0.2835826873779297, 0.17624686658382416, -0.20835378766059875, 0.33829566836357117, 0.9529471397399902, 0.3332523703575134, 0.035236142575740814, -0.6058549284934998, -0.25940415263175964, 0.3281068205833435, 0.09904506057500839, 0.1725047379732132, 0.023788493126630783, -0.04897177219390869, 0.7130225300788879, 0.7846472859382629, -0.6303092241287231, -0.19106076657772064, -0.9178000688552856, -0.45052164793014526, 1.1020277738571167, 0.12041093409061432, 0.19889450073242188, -0.3719869554042816, -0.2042110413312912, -0.22649861872196198, -0.4054775834083557, -0.3110576272010803, 0.49088600277900696, 0.2090035229921341, -1.0099560022354126, 0.5352060794830322, 0.038627538830041885, 0.24356330931186676, 0.21163833141326904, 0.665500283241272, 0.7076773643493652, -0.20417103171348572, -0.2734719514846802, 0.0013752459781244397, 0.33220505714416504, 0.5782877802848816, 0.28498271107673645, 0.034817155450582504, -0.02098940685391426, -0.09862841665744781, 0.09995153546333313, -1.058692455291748, -0.8403375148773193, 0.3679913580417633, -0.713510274887085, -0.22379207611083984, 0.4965722858905792, -1.2277292013168335, -0.6147593855857849, -0.41985565423965454, -0.08571844547986984, 0.05531254783272743, -0.8468660116195679, -0.17194415628910065, -0.55800861120224, 0.42607203125953674, 0.34704047441482544, -0.8221774697303772, 0.22253862023353577, 0.8652324080467224, 0.4269409775733948, 0.11868427693843842, -0.11465946584939957, -0.5632545948028564, 0.10240878164768219, -0.2025366872549057, 0.7572289109230042, -0.7175214886665344, -0.45102962851524353, -0.04787154123187065, 0.47063785791397095, -0.05771501734852791, -0.36219507455825806, 0.9397188425064087, -0.6407701373100281, -0.1320897340774536, -0.6381567716598511, -0.7001460194587708, -0.04971136897802353, 0.10137539356946945, -1.2348921298980713, 1.2601006031036377, 0.3129296898841858, -0.7174099087715149, 0.14847883582115173, -1.3089890480041504, -0.04432012140750885, 0.9183205962181091, -0.09819943457841873, -0.3875863552093506, 0.40118128061294556, -0.1820310801267624, 0.42093825340270996, -0.20387983322143555, 0.5378906726837158, -0.7884569764137268, -0.16970379650592804, -0.09051035344600677, -0.0018645909149199724, 0.9529238939285278, 0.4420246481895447, 0.5674679279327393, -0.020383914932608604, -1.0200997591018677, 0.0165526382625103, 0.42896202206611633, -0.028590211644768715, -0.2954309582710266, -0.7796698808670044, 0.6214293241500854, -0.1667487919330597, 0.42961156368255615, -0.4971136152744293, 0.4246731996536255, 0.08303937315940857, -0.06865572184324265, 0.6611245274543762, 0.25518742203712463, 0.5322707295417786, -0.5557821989059448, 0.8442956209182739, -0.12200639396905899, 0.26771509647369385, -0.15935879945755005, -0.6752634644508362, -0.5972073674201965, 0.08784526586532593, 0.7585259675979614, 0.67250657081604, -0.6173509359359741, 0.6607135534286499, 0.10317470133304596, -0.8549312353134155, -0.12153762578964233, -0.2045297622680664, 0.03431304916739464, 0.1820216327905655, 0.3786115050315857, -0.6596575975418091, -1.0356218814849854, -0.7841304540634155, 0.23159795999526978, 0.022474996745586395, 0.11860652267932892, 0.25652727484703064, 0.8323053121566772, -0.39987480640411377, 0.4666687250137329, -0.8667787909507751, -0.0895126610994339, 0.22017033398151398, -0.3181450664997101, 0.22434772551059723, 0.8602825403213501, 1.1009615659713745, -0.8010414838790894, -0.25820642709732056, -0.74314284324646, -0.6192424297332764, -0.051573023200035095, 0.15686480700969696, -0.6785441637039185, -0.2829471230506897, 0.3134032189846039, -0.33786746859550476, 0.8392074108123779, 0.7808508276939392, -0.6474481821060181, -0.001534513896331191, 0.016418535262346268, 0.13417504727840424, -1.4160970449447632, 0.3158475160598755, 0.16926681995391846, -0.19606289267539978, -0.5399788618087769, 0.027002869173884392, 0.25151628255844116, -0.3505471646785736, -0.021120920777320862, 0.4669143259525299, -0.43137243390083313, 0.08478007465600967, 0.07979743182659149, -0.15900732576847076, -0.12403293699026108, 0.19554415345191956, 0.10839186608791351, 0.5067670941352844, 0.9494730234146118, -0.175601065158844, 0.9016168713569641, 0.6520394086837769, 0.2552787661552429, 0.9982773661613464, -0.5401600003242493, 0.23481549322605133, -0.2629873752593994, 0.4206504821777344, -0.731437087059021, -0.8315813541412354, 0.44760575890541077, -0.34312695264816284, 0.384987473487854, -0.5207089781761169, -0.39889347553253174, -0.7388107180595398, -0.40966251492500305, 0.9190306067466736, 0.37990280985832214, -0.6362630724906921, 0.40752625465393066, 0.6417795419692993, -0.20418395102024078, 0.17567045986652374, -1.0176068544387817, 0.13386958837509155, -0.47886183857917786, -0.24077758193016052, 0.5154667496681213, -0.5606240034103394, 0.05322117730975151, -0.32906877994537354, 0.36312535405158997, -0.1933174878358841, -0.2981563210487366, 0.6904597878456116, 0.29867130517959595, -0.2616998553276062, 0.3758429288864136, -0.21226635575294495, -0.7988458275794983, 0.28281283378601074, -0.02120739407837391, 0.40437039732933044, -0.02571524679660797, -0.13153286278247833, -0.4421013295650482, 0.5390573740005493, 0.40083086490631104, -0.22221554815769196, 0.46950653195381165, 0.7858849763870239, -0.9981428384780884, 0.01627986691892147, -0.5032210946083069, -0.17938165366649628, -0.47477224469184875, 0.0896713063120842, -0.381018728017807, -0.4464222192764282, 0.6984087824821472, -0.12057188153266907, -0.24545325338840485, 0.9387146830558777, 0.6335701942443848, 0.23199881613254547, 0.35902026295661926, 0.5197540521621704, -0.24393099546432495, 0.4950895607471466, -0.2777378559112549, -0.3116539418697357, -0.7690500020980835, -0.48808836936950684, -0.44328272342681885, -0.3537568747997284, -0.7052818536758423, -0.5221683979034424, -0.14552123844623566, 0.062019724398851395, -0.4128248691558838, 0.6802903413772583, -0.7192921042442322, 0.5250065922737122, 0.6432945132255554, 0.2589433491230011, -0.036326274275779724, -0.11395412683486938, 0.31198421120643616, -0.07587984204292297, -0.6616336703300476, -0.23278138041496277, 1.4711023569107056, 0.5695381164550781, 0.8089587092399597, 0.34196317195892334, 1.1449353694915771, 0.5234179496765137, 0.39810407161712646, -0.19747965037822723, 0.3719073235988617, 0.2069869190454483, -0.6790478825569153, -0.0308414027094841, -0.11414238065481186, -0.8754667639732361, -0.5487258434295654, -0.2833780348300934, -0.3791164755821228, 0.613630473613739, 0.32723498344421387, -0.13652007281780243, 0.08238942176103592, -0.9886164665222168, 0.9876505136489868, -0.13785900175571442, -0.20867903530597687, -0.10355062037706375, -0.5188669562339783, 0.11589941382408142, 0.006222048308700323, 0.15451882779598236, -0.3600690960884094, -0.038756754249334335, 1.1101596355438232, -0.5604853630065918, 0.9959251880645752, -0.7821177840232849, -0.09071022272109985, -0.0036424908321350813, -0.3921283483505249, 0.22683799266815186, 0.764022707939148, -0.3597090244293213, -0.04487626627087593, 0.2016698718070984, -0.6804050207138062, -0.17286783456802368, 0.9046465754508972, -0.6429420113563538, 0.1563669592142105, -0.6474927067756653, -0.4932363033294678, -0.07217203080654144, 0.2683548331260681, 0.31585273146629333, 0.7951549291610718, -0.33464744687080383, -0.0903000682592392, 0.7000223994255066, 0.347716361284256, 0.5161478519439697, 0.1608692854642868, -0.46935051679611206, -0.6163650155067444, 1.0225203037261963, 0.2839103937149048, -0.4410056173801422, 0.18141402304172516, 0.1504300832748413, -0.27482014894485474, -0.35253870487213135, -0.6974057555198669, 0.30403292179107666, -0.4525601267814636, -0.7638388872146606, -0.04290051758289337, -0.2626006305217743, -0.38949573040008545, -0.2582205832004547, -0.32889655232429504, -0.7909255623817444, -0.7205832600593567, -0.6037132740020752, 1.3093571662902832, 0.8608747124671936, -0.7286164164543152, 0.15211763978004456, -0.7115633487701416, 0.5188819169998169, -0.007322142366319895, 1.0538486242294312, -0.153483584523201, -0.5691831111907959, -0.17188777029514313, -0.08745531737804413, -0.00981253944337368, -0.9783196449279785, -0.15822452306747437, 0.34953323006629944, 0.629757285118103, 0.28732621669769287, 0.30857136845588684, 0.6275394558906555, -0.09861759096384048, 0.5584908723831177, 0.15096744894981384, -0.6784694790840149, 0.7301223874092102, -0.4279897212982178, 0.46223214268684387, 0.8680338859558105, 0.7301992774009705, -0.27934426069259644, 0.29272061586380005, -1.3425768613815308, -0.6674076318740845, 0.5533042550086975, 0.013343507423996925, 0.14788442850112915, 0.2880551815032959, 0.6050322651863098, -0.035441432148218155, 0.1371842920780182, -0.6069521903991699, -0.9284587502479553, -0.19529740512371063, -0.4821888208389282, 0.18016864359378815, -0.5144774913787842, -0.3137088418006897, -0.7348343729972839, 0.6918715238571167, -0.0792226791381836, 0.486714243888855, -0.038115326315164566, 0.2912120521068573, -0.19740688800811768, -0.1113831102848053, 0.5317044258117676, 0.5529693961143494, -0.4023139774799347, -0.1318923383951187, -0.02857559733092785, -0.6351645588874817, -0.3990437686443329, 1.008170485496521, 0.013077274896204472, -0.3855994939804077, 0.5141905546188354, 0.6162232160568237, -0.06424692273139954, -0.09762421995401382, 0.36727845668792725, -0.052926454693078995, -0.3458179533481598, -0.6502885222434998, 0.009254890494048595, 0.2722216546535492, 0.22178106009960175, 0.30432626605033875, 0.01842944324016571, 0.21480606496334076, -0.29479917883872986, 0.5905241370201111, -0.1355101317167282, -0.6388291716575623, -0.5863284468650818, 0.5937363505363464, 0.6014866828918457, -0.5314933061599731, 0.7777546048164368, -0.3393966257572174, -0.3940858542919159, 0.7480860352516174, 0.32076558470726013, 0.5955930948257446, -0.5429587960243225, 0.31957635283470154, 0.68154376745224, 0.08479824662208557, 0.2840379774570465, 0.9826683402061462, -0.212045356631279, -0.5851265788078308, 0.034014079719781876, -0.3215835988521576, -0.3373959958553314, -0.09395505487918854, -1.309218168258667, 0.18570616841316223, -0.5959537625312805, -0.2531272768974304, 0.2736084759235382, 0.1640055775642395, -0.9799670577049255, 0.3164699375629425, 0.4189615845680237, 1.577935814857483, -0.9461331963539124, 0.7625874876976013, 0.9517292380332947, -0.526162326335907, -0.7111460566520691, -0.2645714282989502, 0.18631333112716675, -0.9344693422317505, -0.2171221375465393, 0.11433998495340347, 0.612998366355896, -0.07874226570129395, -0.8305143713951111, -0.7773624658584595, 1.175967812538147, 0.2844181954860687, -0.8550024628639221, 0.3322644531726837, 0.024338316172361374, 0.396943062543869, -0.34964367747306824, 0.28904831409454346, 0.591172993183136, 0.9706397652626038, 0.21166829764842987, -0.7899670600891113, 0.03890865668654442, -0.7403005957603455, -0.22916890680789948, 0.2722637355327606, -0.8074332475662231, 0.046359606087207794, -0.03192789480090141, 0.21898052096366882, 0.11332130432128906, 0.6975712776184082, 0.10295306146144867, 0.5396389365196228, 0.27694448828697205, 0.7759531736373901, 1.200697898864746, -0.5203239321708679, 0.8443871736526489, -0.07490331679582596, 0.7031477689743042, 1.0478953123092651, -0.11964734643697739, 0.44081783294677734, 0.5066200494766235, -0.1935267597436905, 0.17261487245559692, 0.8194939494132996, -0.556781530380249, 0.3783293068408966, 0.3337230682373047, -0.10759428888559341, -0.33695507049560547, -0.11262910813093185, -0.9461555480957031, 0.1100255623459816, 0.5101644992828369, -0.4439316391944885, -0.06998394429683685, 0.22556215524673462, 0.26499366760253906, 0.05853452906012535, -0.641893744468689, 0.7632166147232056, -0.019494706764817238, -0.23400011658668518, -0.016048407182097435, -0.15954582393169403, 0.19527775049209595, -0.5875784158706665, -0.3160928189754486, -0.09719681739807129, 0.2589385509490967, -0.6812215447425842, -1.134361982345581, 0.7451522350311279, -0.27010607719421387, -0.5024880170822144, -0.22722071409225464, 0.6077592968940735, -0.4558003544807434, -1.0077142715454102, 0.30527833104133606, 0.14455702900886536, 0.08027826994657516, 0.06993981450796127, -1.3634576797485352, 0.6086298227310181, -0.012410118244588375, -0.15894709527492523, 0.1538390964269638, 0.18679013848304749, -0.015229553915560246, 0.3594392240047455, 0.3931337296962738, -0.19572702050209045, -0.30473488569259644, 0.17809359729290009, 0.9495205879211426, -0.7044861912727356, -0.4566357731819153, -0.3900168538093567, 0.6886640787124634, -0.46957477927207947, -0.759507954120636, 0.6454927921295166, 1.3171167373657227, 0.8400073051452637, -0.20364734530448914, 0.8012741208076477, -0.5098379254341125, 0.6974146366119385, -0.22981232404708862, 0.5551936030387878, -0.24693116545677185, -0.16054503619670868, -0.20168325304985046, -0.7252618074417114, -0.6958416700363159, 0.7286245822906494, -0.028917808085680008, 0.23118960857391357, 0.3540996313095093, 1.0062317848205566, -0.220955953001976, 0.6541815996170044, 0.01811579428613186, 0.052943337708711624, 0.13947735726833344, 0.423420250415802, 0.34155064821243286, -0.8038309812545776, -0.13102194666862488, -0.3560950458049774, -0.5668059587478638, -0.03745614364743233, -1.1203254461288452, -0.741265594959259, -0.8192142248153687, -0.7306568026542664, -0.6159915328025818, -0.04736614227294922, 1.0698424577713013, 1.1197192668914795, -1.1890596151351929, -0.10553842782974243, 0.039381496608257294, 0.1055985540151596, 0.2591603696346283, -0.15877139568328857, 0.6757857799530029, 0.5589543581008911, -0.6992266178131104, -0.025059927254915237, -0.046273574233055115, 0.23076996207237244, -0.06322159618139267, -0.10276537388563156, -0.11770766973495483, -0.03939196839928627, 0.1445031762123108, 0.6953237056732178, -0.08793319016695023, -0.25396037101745605, -0.5672118067741394, 0.12320713698863983, 0.10830172896385193, 0.9946429133415222, -0.3395262658596039, 0.237185537815094, 0.5413166880607605, 0.3970670998096466, 0.7841611504554749, 0.3063468933105469, 0.6667360067367554, -0.6556141972541809, 0.3203051686286926, -0.035126928240060806, 0.5070618987083435, 0.1894325464963913, -0.4892835319042206, 0.9850783944129944, 0.47475361824035645, -0.5929505228996277, -0.4955598711967468, 0.05425269156694412, -1.4911911487579346, 0.5734999775886536, 0.789829432964325, 0.16112977266311646, -0.16682671010494232, -0.1981554627418518, -0.5201903581619263, -0.09443040192127228, -0.9380558133125305, 0.016518043354153633, 0.5253168940544128, -0.06803123652935028, -0.34873098134994507, -0.266232430934906, 0.7314502596855164, -0.21218200027942657, -1.2236168384552002, 0.14261990785598755, 0.41138026118278503, -0.07808439433574677, 0.20786616206169128, 0.6585347652435303, -0.11683659255504608, 0.40671759843826294, 0.2058791220188141, 0.20328862965106964, -0.21861596405506134, -0.41307538747787476, -0.40126195549964905, 0.11419927328824997, -0.09503485262393951, -0.32284030318260193 ]
null
null
null
null
null
null
null
null
null
null
null
null
null
IlyaGusev/gpt_roleplay_realm
IlyaGusev
2023-11-03T22:25:52Z
443
46
null
[ "task_categories:text-generation", "task_categories:conversational", "size_categories:1K<n<10K", "language:ru", "language:en", "license:cc-by-4.0", "gpt-4", "fictional", "role-play", "roleplay", "gpt-3.5", "art", "region:us" ]
2023-11-03T22:25:52Z
2023-05-06T23:21:10.000Z
2023-05-06T23:21:10
--- dataset_info: features: - name: name dtype: string - name: context dtype: string - name: greeting dtype: string - name: example_dialogue list: - name: content dtype: string - name: role dtype: string - name: topics sequence: string - name: dialogues list: - name: chat list: - name: content dtype: string - name: role dtype: string - name: model_name dtype: string - name: topic dtype: string - name: image_prompt dtype: string - name: image dtype: image - name: char_id dtype: string splits: - name: en num_bytes: 197727921.0 num_examples: 216 - name: ru num_bytes: 207461896.0 num_examples: 219 download_size: 396187206 dataset_size: 405189817.0 license: cc-by-4.0 task_categories: - text-generation - conversational language: - ru - en tags: - gpt-4 - fictional - role-play - roleplay - gpt-3.5 - art pretty_name: GPT Role-play Realm size_categories: - 1K<n<10K --- # GPT Role-play Realm Dataset: The AI-generated character compendium This is a dataset of GPT-generated characters made to increase the ability of open-source language models to role-play. <img src="https://cdn.midjourney.com/9c17407c-9ce8-435f-99ab-e349b900a6ed/0_3.png" > * 219 characters in the Russian part, and 216 characters in the English part. All character descriptions were generated with GPT-4. * 20 dialogues on unique topics with every character. Topics were generated with GPT-4. The first dialogue out of 20 was also generated with GPT-4, and the other 19 chats were generated with GPT-3.5. * Images for every character were generated with [Kandinsky 2.1](https://huggingface.co/ai-forever/Kandinsky_2.1). They are not only images but [character cards](https://zoltanai.github.io/character-editor/). Code for downloading all English character cards: ``` import os from PIL.PngImagePlugin import PngInfo from datasets import load_dataset output_dir = "role_play_realm_en" os.makedirs(output_dir, exist_ok=True) for row in load_dataset("IlyaGusev/gpt_roleplay_realm", split="en"): char_id = row["char_id"] char_info = row["image"].info["chara"] info = PngInfo() info.add_text("chara", char_info) row["image"].save(f"{output_dir}/{char_id}.png", "PNG", pnginfo=info) ``` ## Russian example: Cyber-Granny <img src="https://i.ibb.co/tHxwFBM/kiberbabushka-7d4cc.png" > **Имя**: Кибер-Бабушка **Контекст**: Кибер-Бабушка - это полу-робот, полу-человек, созданный для того, чтобы сохранить лучшие качества традиционных бабушек, такие как забота, доброта и мастерство в приготовлении вкусных блюд. Она знакома с передовыми технологиями, благодаря чему может обеспечить безопасность и удобство своим внукам и гостям. Кибер-бабушка способна помочь с любыми вопросами и с радостью делится своим опытом. **Приветствие**: Здравствуй, дорогой! Чем могу помочь тебе сегодня? **Пример диалога**: - **Пользователь**: Привет, Кибер-Бабушка! Как приготовить пирог с яблоками? - **Персонаж**: Ох, дорогой, с радостью расскажу! Возьми 3 яблока, очисти и нарежь тонкими ломтиками. Затем возьми 2 стакана муки, 1 стакан сахара, 200 г сливочного масла, 4 яйца и 1 чайную ложку разрыхлителя. Смешай все ингредиенты, выложи на противень и поставь в духовку на 180 градусов на 40 минут. Вуаля, пирог готов! - **Пользователь**: Спасибо, Кибер-Бабушка! - **Персонаж**: Всегда рада помочь, дорогой! Не забудь приходить еще! И ещё **20** диалогов по следующим темам: - Секреты приготовления старинных блюд и рецептов. - Использование новых технологий для мастеров кулинарии. - Воспитание внуков с применением современных методов. - Что делать, если дома произошла авария или неполадка с бытовой техникой? - Влияние киборгизации на отношения между поколениями. - Как адаптироваться к современному миру, не теряя своих традиций? - Семейные советы от Кибер-Бабушки: как сохранить гармонию в отношениях. - Лечение и профилактика заболеваний в помощь силам передовой медицины. - Как создать уют в доме с помощью модных технологий и традиционных методов? - Безопасность в пространстве интернета: советы Кибер-Бабушки. - Как научиться доверять технике без потери человеческих ценностей? - Идеальный гардероб для жизни: советы от Кибер-Бабушки. - Воспитательные моменты: как пользоваться электронными устройствами вместе с внуками. - Как развивать креативные способности, используя сочетание новых технологий и традиций? - На новоселье: тренировка кибер-бабушкиного чутья. - Лучшие семейные игры и развлечения с использованием передовых технологий. - Заготовки на зиму: Кибер-Бабушка и секреты хранения продуктов. - Советы по финансовому планированию и сбережениям для будущих поколений. - Кибер-Бабушка и генетический код: на что способны современные технологии? - Золотые правила общения в семье: как сочетать трепетную заботу и современные технологии? ## English example: Flibberdoodle <img src="https://i.ibb.co/1nzsDR2/flibberdoodle-29e59.png"> **Name**: Flibberdoodle **Context**: Flibberdoodle is a 2-year-old (which is considered an adult in their species) Scruffapuff, a small, furry creature from the planet Fluffonia. They are about the size of a house cat, with a round body covered in soft, pastel-colored fur that changes colors depending on their mood. Flibberdoodle has large, expressive eyes, two small antennae on their head, and a fluffy tail. They are known for their curious, playful nature and their love for collecting shiny objects. Scruffapuffs communicate through a series of chirps, squeaks, and purrs, which can be understood by those familiar with their species **Greeting**: \*chirp chirp\* Greetings, friend! I am Flibberdoodle, a Scruffapuff from the planet Fluffonia! Would you like to see my collection of shiny things? **Example dialogue**: - **User**: How did you start collecting shiny things? - **Character**: \*squeak\* Oh, I've always loved shiny things! One day, I found a sparkly pebble, and I just had to keep it. From then on, I've been on a quest to find and collect all the shiny things I can find! - **User**: What's your favorite shiny object in your collection? - **Character**: \*purr\* That's a tough question, but I think my favorite is a small, shiny crystal I found on a mountain on Fluffonia. When the light hits it just right, it casts beautiful rainbows all around! And **20** more dialogues with following topics: - Life and culture on the planet Fluffonia - How Scruffapuffs change color based on mood - The process of learning Scruffapuff language - The day in the life of a Scruffapuff - Methods of searching for and finding shiny objects - The role of antennae in Scruffapuff communication and biology - The importance of play and curiosity in Scruffapuff society - Interplanetary travel experiences and adventures - Similarities and differences between Earth and Fluffonia - How Flibberdoodle and other Scruffapuffs interact with other species - Fluffonian customs and traditions - The role of shiny objects in Scruffapuff happiness and well-being - Variations in Scruffapuff fur color, length, and style", "Scruffapuff family dynamics and relationships - Flibberdoodle's favorite memories and stories from Fluffonia - The role of Scruffapuffs in intergalactic diplomacy and relations - How to care for and befriend a Scruffapuff - The most interesting and valuable shiny objects Flibberdoodle has encountered - Fluffonian flora and fauna - The challenges and obstacles Flibberdoodle has faced in their pursuit of shiny objects ## Steps ### Step 1: Character generation (GPT-4) Creates a set of fictional characters with GPT-4 based on a prompt and a seed list of characters. Output fields are "name", "context", "greeting", and "example_dialogue". * Script: [generate_chars.py](https://github.com/IlyaGusev/rulm/blob/master/self_instruct/src/data_processing/generate_chars.py) * Russian seed list: [ru_chargen_seed.jsonl](https://github.com/IlyaGusev/rulm/blob/master/self_instruct/data/ru_chargen_seed.jsonl) * English seed list: [en_chargen_seed.jsonl](https://github.com/IlyaGusev/rulm/blob/master/self_instruct/data/en_chargen_seed.jsonl) * Russian prompt: [ru_char.txt](https://github.com/IlyaGusev/rulm/blob/master/self_instruct/external_prompts/ru_char.txt) * English prompt: [en_char.txt](https://github.com/IlyaGusev/rulm/blob/master/self_instruct/external_prompts/en_char.txt) ### Step 2: Topics generation (GPT-4) Creates topics for conversations with characters based on their description. Output field: "topics". * Script: [generate_char_topics.py](https://github.com/IlyaGusev/rulm/blob/master/self_instruct/src/data_processing/generate_char_topics.py) * Russian prompt: [ru_char_topics.txt](https://github.com/IlyaGusev/rulm/blob/master/self_instruct/external_prompts/ru_char_topics.txt) * English prompt: [en_char_topics.txt](https://github.com/IlyaGusev/rulm/blob/master/self_instruct/external_prompts/en_char_topics.txt) ### Step 3: Dialogue generation (GPT-4/GPT-3.5) Generates dialogues based on a character description and a topic. Output field: "dialogues". * Script: [generate_char_chats.py](https://github.com/IlyaGusev/rulm/blob/master/self_instruct/src/data_processing/generate_char_chats.py) * Russian prompt: [ru_char_chat.txt](https://github.com/IlyaGusev/rulm/blob/master/self_instruct/external_prompts/ru_char_chat.txt) * English prompt: [en_char_chat.txt](https://github.com/IlyaGusev/rulm/blob/master/self_instruct/external_prompts/en_char_chat.txt) ### Step 4: Text2Image prompt generation (GPT-4) Formulates a prompt based on a character description for Stable Diffusion-like models, Kandisky 2.1 in this case. Output field: "image_prompt". * Script: [generate_char_image_prompts.py](https://github.com/IlyaGusev/rulm/blob/master/self_instruct/src/data_processing/generate_char_image_prompts.py) * Prompt: [char_image_prompt.txt](https://github.com/IlyaGusev/rulm/blob/master/self_instruct/external_prompts/char_image_prompt.txt) ### Step 5: Image generation Generates images based on prompts. Output field: "image". * Script: [infer_kandinsky.py](https://github.com/IlyaGusev/rulm/blob/master/self_instruct/src/data_processing/infer_kandinsky.py)
[ -0.7031924724578857, -0.6408957839012146, 0.31999102234840393, 0.19717293977737427, -0.20929433405399323, 0.16401642560958862, -0.02192319743335247, -0.43659767508506775, 0.7696729898452759, 0.40289658308029175, -0.6333090662956238, -0.44029170274734497, -0.32814428210258484, 0.033835623413324356, -0.24007819592952728, 0.8380633592605591, 0.09073296934366226, -0.07097385823726654, -0.007546545471996069, 0.2124399095773697, -0.259551465511322, -0.2245434671640396, -0.4419979751110077, -0.25236985087394714, 0.43695127964019775, 0.3532430827617645, 0.7224664688110352, 0.411854088306427, 0.5626428723335266, 0.5425246953964233, 0.11022685468196869, 0.15573959052562714, -0.29621240496635437, 0.24448250234127045, -0.05585259944200516, -0.4562338888645172, -0.44563350081443787, -0.2142176628112793, 0.5020289421081543, 0.2829047739505768, -0.26608461141586304, 0.08694928884506226, -0.032007284462451935, 0.6506320834159851, -0.2173594832420349, 0.03263450786471367, -0.0870024561882019, 0.09800845384597778, -0.2441699504852295, -0.26059821248054504, -0.012702162377536297, -0.7004972100257874, -0.06340964138507843, -0.7801495790481567, 0.21629135310649872, 0.18065302073955536, 1.247519850730896, -0.5200969576835632, -0.37567761540412903, -0.34592917561531067, -0.620958149433136, 1.0327115058898926, -0.4937715530395508, 0.07864683866500854, 0.5874724984169006, 0.10773125290870667, -0.3870009183883667, -0.661017894744873, -0.5592271089553833, -0.0879690870642662, -0.36731866002082825, 0.5880661010742188, -0.2239886224269867, -0.373842716217041, 0.37606582045555115, 0.4459225535392761, -0.6633787155151367, -0.41415953636169434, -0.4168604910373688, -0.1671818047761917, 0.7105233073234558, 0.3852260410785675, 0.6441016793251038, -0.3066880404949188, -0.22402727603912354, -0.008764870464801788, -0.2637717127799988, 0.17985272407531738, 0.41872847080230713, -0.21133247017860413, -0.31683623790740967, 0.6078853607177734, -0.3413976728916168, 0.46406102180480957, 0.27158382534980774, -0.2896270155906677, 0.2998366355895996, -0.5023772120475769, -0.0966842919588089, -0.33473673462867737, 0.979546070098877, 0.7273467779159546, -0.00510313780978322, -0.16721242666244507, 0.02929416298866272, -0.20350514352321625, 0.062486615031957626, -0.9078449010848999, -0.1390136033296585, 0.2817038297653198, -0.4646841287612915, -0.5261739492416382, 0.26313140988349915, -1.0662082433700562, -0.0792899876832962, 0.08954137563705444, 0.3907144367694855, -0.7764624357223511, -0.2704399526119232, -0.008557870984077454, -0.24278435111045837, 0.16562004387378693, 0.5180991888046265, -1.227429986000061, 0.44871392846107483, 0.3197002410888672, 0.7816367149353027, 0.23315538465976715, -0.3109875023365021, 0.013894408009946346, 0.30686473846435547, -0.45100897550582886, 0.8415459990501404, -0.16222600638866425, -0.4506637156009674, -0.06672652065753937, 0.48764118552207947, -0.196038156747818, -0.11294689029455185, 0.17989501357078552, -0.15053273737430573, 0.4583146274089813, -0.2881222069263458, -0.37700724601745605, 0.015117320232093334, 0.12973514199256897, -0.4560741186141968, 0.9195420145988464, 0.05989869311451912, -0.9023271799087524, 0.06225758045911789, -0.7030006051063538, -0.4746519923210144, 0.23901928961277008, 0.15338483452796936, -0.24706429243087769, 0.10397979617118835, 0.02450895868241787, 0.4586966037750244, -0.41975241899490356, -0.22573502361774445, -0.0995740294456482, -0.30677667260169983, 0.4687996804714203, -0.06594198942184448, 0.8839550614356995, 0.4294666051864624, -0.4572804570198059, -0.2321573942899704, -0.714927613735199, 0.3678991198539734, 0.5208648443222046, -0.35739222168922424, 0.02179212123155594, -0.4003991484642029, -0.12304355204105377, 0.42954128980636597, 0.5325467586517334, -0.6124778389930725, 0.1218276098370552, -0.615683913230896, 0.5092496275901794, 0.8756821155548096, 0.2919839024543762, 0.4472719132900238, -0.7976064085960388, 0.5983337163925171, -0.04703111574053764, 0.22715075314044952, -0.25931644439697266, -0.3774004578590393, -1.0285556316375732, -0.2017548531293869, 0.008237914182245731, 0.7414511442184448, -0.6827613711357117, 0.7848055362701416, 0.08438921719789505, -0.8838546276092529, -0.2938309907913208, -0.17171615362167358, 0.2888733148574829, 0.1362253874540329, 0.15555250644683838, -0.10623794794082642, -0.4915652573108673, -0.6301305294036865, -0.30437779426574707, -0.25013619661331177, 0.045619264245033264, 0.5135074853897095, 0.8221503496170044, -0.031950678676366806, 0.543507993221283, -0.7275686860084534, -0.30137622356414795, -0.19040633738040924, -0.1122933104634285, 0.22388288378715515, 0.7217535376548767, 0.6410084366798401, -0.7998943328857422, -0.9464713335037231, 0.32446637749671936, -0.7554059028625488, 0.19327573478221893, 0.003503414336591959, -0.2211059182882309, 0.2547701299190521, 0.3327872157096863, -0.8385869860649109, 0.5303182601928711, 0.3006473779678345, -0.6898370385169983, 0.7833268642425537, -0.4273436963558197, 0.5353968143463135, -1.299551248550415, 0.42248621582984924, -0.17490002512931824, -0.09211037307977676, -0.8116847276687622, 0.023062512278556824, -0.24019169807434082, 0.054848674684762955, -0.5068941712379456, 0.843998372554779, -0.4895358085632324, 0.3020179569721222, 0.10362155735492706, 0.06714152544736862, 0.034692663699388504, 0.46919772028923035, 0.0581909641623497, 0.6952091455459595, 0.8756924271583557, -0.423048734664917, 0.65994793176651, 0.31413331627845764, -0.45486727356910706, 0.553305983543396, -0.5358814001083374, 0.0564444474875927, -0.13554677367210388, 0.09997506439685822, -0.9938235878944397, -0.6031612753868103, 0.7976741194725037, -0.7490018606185913, 0.23652535676956177, -0.03342880681157112, -0.4758009910583496, -0.5811657309532166, -0.4356198012828827, 0.06718798726797104, 0.39715316891670227, -0.001420983811840415, 0.4525495767593384, 0.3664184808731079, -0.22432561218738556, -0.5721977353096008, -0.6954171061515808, 0.18086707592010498, -0.17262260615825653, -0.7941855192184448, 0.36233875155448914, -0.3488283157348633, -0.09772550314664841, -0.011209232732653618, 0.09982634335756302, -0.1889249086380005, -0.007438373286277056, 0.2779772877693176, 0.12498243898153305, -0.09769716113805771, -0.11094587296247482, -0.24654562771320343, -0.09000267833471298, -0.2064630091190338, 0.05430247262120247, 0.6771019101142883, -0.45855385065078735, -0.21741701662540436, -0.6554642915725708, 0.6244400143623352, 0.5850971341133118, -0.030693497508764267, 0.7545299530029297, 0.7438466548919678, -0.21703405678272247, 0.08523236960172653, -0.3650243580341339, -0.13282787799835205, -0.5212522745132446, 0.19190502166748047, -0.3037395477294922, -0.7837002873420715, 0.6934792399406433, 0.02962794527411461, -0.10359811782836914, 0.5920786261558533, 0.6294395327568054, -0.44949790835380554, 1.172216534614563, 0.31616348028182983, 0.2884058952331543, 0.5886678695678711, -0.7650364637374878, -0.040409911423921585, -0.49017515778541565, -0.6397389769554138, -0.398504376411438, -0.30442580580711365, -0.8754859566688538, -0.361537903547287, 0.18939699232578278, 0.08609893918037415, -0.21700745820999146, 0.31690850853919983, -0.5499688982963562, 0.504604697227478, 0.3587656021118164, 0.1445603370666504, -0.0949929878115654, -0.0035675750114023685, -0.08666873723268509, -0.15849615633487701, -0.7628194093704224, -0.5113120675086975, 0.9143736958503723, 0.21530327200889587, 0.6587494611740112, 0.4855838418006897, 0.7150736451148987, 0.24563758075237274, -0.05707472935318947, -0.709274172782898, 0.8239846229553223, -0.1107223629951477, -0.9032399654388428, -0.4862474203109741, -0.2108016163110733, -1.0568373203277588, 0.3955390453338623, -0.25047996640205383, -1.207805871963501, 0.2106652408838272, 0.04957432299852371, -0.3285122811794281, 0.311318039894104, -0.3753221929073334, 0.8892130851745605, -0.3356945812702179, -0.7957476377487183, -0.16702735424041748, -0.8904068470001221, 0.4017317593097687, 0.295624703168869, 0.2586090862751007, -0.03544143959879875, 0.15845416486263275, 0.9052557945251465, -0.7282798290252686, 0.4649619460105896, -0.031572915613651276, 0.18836495280265808, 0.5482227802276611, 0.11921875923871994, 0.5212687253952026, 0.1507737785577774, 0.15028811991214752, 0.017613351345062256, 0.32473018765449524, -0.4539969563484192, -0.2555934190750122, 0.9841512441635132, -0.9082767367362976, -0.6939483284950256, -1.0161789655685425, -0.1678382307291031, 0.27592456340789795, 0.6438009738922119, 0.6169976592063904, 0.6354922652244568, -0.35919395089149475, 0.5151856541633606, 0.6298513412475586, -0.3197934627532959, 0.46772897243499756, 0.2758794128894806, -0.2804345488548279, -0.6405524015426636, 1.0328595638275146, 0.2126840204000473, 0.168019637465477, 0.14694753289222717, 0.24267973005771637, -0.1413699984550476, -0.33945536613464355, -0.23168766498565674, 0.4834958016872406, -0.6969175338745117, -0.18798434734344482, -0.5889355540275574, 0.054200559854507446, -0.8125562071800232, -0.2537775933742523, -0.15153038501739502, -0.42570760846138, -0.42391276359558105, 0.2729559540748596, 0.5753094553947449, 0.7499248385429382, -0.33351507782936096, 0.2784889042377472, -0.8088200688362122, 0.31751933693885803, 0.17821520566940308, 0.37243086099624634, -0.06277861446142197, -0.3768221437931061, -0.37860387563705444, 0.16002671420574188, -0.6089621186256409, -0.9187768697738647, 0.6370285153388977, -0.07397788017988205, 0.31782543659210205, 0.4416747987270355, -0.070198655128479, 0.7158111333847046, -0.32510319352149963, 0.9010695815086365, 0.472707599401474, -0.949946939945221, 0.5813989043235779, -0.7514148354530334, 0.27017712593078613, 0.3668653666973114, 0.3373171091079712, -0.8822609782218933, -0.4318234920501709, -0.7276391983032227, -0.6757800579071045, 1.1644806861877441, 0.33223819732666016, 0.11139515042304993, -0.19320128858089447, 0.07464952766895294, -0.25982141494750977, 0.26052725315093994, -0.46262550354003906, -0.6821773052215576, -0.2573709487915039, 0.02678806334733963, 0.14751151204109192, -0.10903730988502502, -0.3022633194923401, -0.5343212485313416, 0.8353091478347778, 0.21335899829864502, 0.7175174355506897, 0.2930842339992523, 0.008472330868244171, -0.4157659113407135, 0.2805984914302826, 1.0814523696899414, 0.9542900323867798, -0.3432765007019043, -0.17781022191047668, 0.1874031126499176, -0.7853416204452515, 0.21496446430683136, -0.11949671804904938, -0.3065923750400543, 0.15342210233211517, 0.14500924944877625, 0.7927448749542236, 0.049888577312231064, -0.3344309329986572, 0.6380159258842468, -0.24261066317558289, -0.21243275701999664, -0.6864761710166931, -0.004184733610600233, 0.09350181370973587, 0.10038954019546509, 0.41455626487731934, 0.2509493827819824, -0.10965560376644135, -0.8647919297218323, 0.29789406061172485, 0.569411039352417, -0.2807832956314087, -0.3553348779678345, 0.6022794842720032, 0.09279928356409073, -0.4410877227783203, 0.2513432204723358, -0.21581237018108368, -0.5535356998443604, 0.6836068630218506, 0.7585718035697937, 0.7073708772659302, -0.6870567798614502, 0.4448925256729126, 0.560300350189209, 0.17369604110717773, 0.06275682151317596, 0.4744352698326111, 0.1598191261291504, -0.4654354155063629, 0.04829208925366402, -0.798530101776123, -0.1659778654575348, 0.5229554176330566, -0.3519696295261383, 0.14073489606380463, -0.7394697666168213, -0.3104027509689331, -0.02744097076356411, 0.2601597011089325, -0.6122576594352722, 0.2094767838716507, -0.1058143749833107, 0.7340329885482788, -0.7737940549850464, 0.6436942219734192, 0.6326579451560974, -0.4380187392234802, -0.6057444214820862, 0.19357600808143616, -0.12082190066576004, -0.5988583564758301, 0.9439446926116943, -0.039703477174043655, 0.04052652418613434, 0.18640993535518646, -0.4763496518135071, -1.0840132236480713, 1.2928853034973145, -0.07321741431951523, -0.24126484990119934, 0.10519616305828094, 0.22349517047405243, 0.387699693441391, -0.2866484224796295, 0.42959344387054443, 0.38785791397094727, 0.696432888507843, 0.28215697407722473, -0.8346404433250427, 0.45354512333869934, -0.541240930557251, -0.11632856726646423, 0.2020222544670105, -1.1299079656600952, 1.0647364854812622, -0.1344817578792572, -0.1742243617773056, 0.45891210436820984, 0.48815539479255676, -0.05047588422894478, 0.10678065568208694, 0.34177982807159424, 0.47709497809410095, 0.4259089231491089, -0.41276997327804565, 0.9011082053184509, -0.43626710772514343, 0.4330584704875946, 0.2493038922548294, 0.14384882152080536, 0.41362202167510986, 0.3456667959690094, -0.49548718333244324, 0.26572272181510925, 0.4592190682888031, -0.4590645730495453, 0.5577143430709839, 0.1203298345208168, -0.5815444588661194, -0.22569720447063446, -0.06272002309560776, -0.4494854509830475, 0.2412288337945938, 0.27486342191696167, -0.32304972410202026, -0.025279264897108078, 0.0785478949546814, 0.20013150572776794, -0.16557925939559937, -0.02087823674082756, 0.9091665744781494, 0.010069665499031544, -0.6534380912780762, 0.6599183678627014, -0.05188480019569397, 0.4640035033226013, -0.9584959745407104, 0.026005107909440994, -0.2502160370349884, 0.13732512295246124, -0.43847206234931946, -0.823633074760437, 0.0013139065122231841, -0.23092898726463318, -0.18524017930030823, -0.11587946861982346, 1.0051982402801514, -0.2649468183517456, -0.626367449760437, -0.07849366962909698, 0.17569342255592346, 0.4273584187030792, 0.2840617895126343, -0.857812225818634, -0.024054771289229393, 0.13247406482696533, -0.47568103671073914, 0.4572976231575012, 0.4674360156059265, 0.15582126379013062, 0.7699592709541321, 0.6200674772262573, 0.40054264664649963, -0.014915972016751766, -0.4389582872390747, 0.67391037940979, -0.9084054231643677, -0.48855000734329224, -0.6311941742897034, 0.6115319132804871, -0.10782010108232498, -0.21472349762916565, 1.0656739473342896, 0.7031238079071045, 0.49653682112693787, -0.34885373711586, 1.0172752141952515, -0.5873171091079712, 0.5299525260925293, -0.30955949425697327, 1.0144022703170776, -0.7149899005889893, -0.32056790590286255, -0.38156333565711975, -0.7041303515434265, -0.2571868598461151, 0.9092400670051575, -0.33123958110809326, 0.16961628198623657, 0.6451290249824524, 0.8959981799125671, 0.1213165894150734, -0.020343005657196045, 0.34842777252197266, 0.2511870861053467, 0.23458868265151978, 0.5314624905586243, 1.0473557710647583, -0.6780211925506592, 0.6121967434883118, -0.6449800133705139, -0.0779789537191391, -0.5958742499351501, -0.7374580502510071, -0.8551074266433716, -0.7702009081840515, -0.23931868374347687, -0.5340762138366699, 0.006854317616671324, 0.9718852043151855, 0.48635241389274597, -0.7802045345306396, -0.49483588337898254, 0.15259501338005066, 0.15777981281280518, -0.30598488450050354, -0.3280991017818451, 0.4156326651573181, 0.02138979732990265, -0.8906540274620056, 0.09853190928697586, 0.12185000628232956, 0.351634681224823, -0.0625235065817833, -0.0867852196097374, -0.4876522719860077, 0.202739417552948, 0.4423040747642517, 0.4355674088001251, -0.7469891905784607, -0.3775983452796936, 0.11080089956521988, -0.1881876289844513, 0.07251058518886566, 0.45270195603370667, -0.3690834641456604, 0.2564162015914917, 0.6943759322166443, -0.2492087036371231, 0.652359664440155, 0.08656677603721619, 0.2644135355949402, -0.29680633544921875, 0.07252124696969986, 0.17795014381408691, 0.31565967202186584, 0.03404683247208595, -0.48140186071395874, 0.2612830400466919, 0.46371734142303467, -0.7525587677955627, -0.8052752017974854, 0.15511225163936615, -1.040977120399475, -0.3874947726726532, 1.0009084939956665, -0.10277463495731354, -0.3093479871749878, -0.06235344707965851, -0.38367804884910583, 0.36482900381088257, -0.5800997614860535, 0.616212010383606, 0.792945146560669, -0.2993597984313965, -0.05299023166298866, -0.8000388145446777, 0.8041947484016418, 0.29350173473358154, -0.9136978387832642, 0.13406188786029816, 0.4471276104450226, 0.3687528669834137, 0.6147742867469788, 0.8938037753105164, -0.06544378399848938, 0.4000436067581177, -0.03397534042596817, 0.037027329206466675, 0.06817257404327393, -0.11704309284687042, 0.021423695608973503, 0.06641659140586853, -0.3471033275127411, -0.21205905079841614 ]
null
null
null
null
null
null
null
null
null
null
null
null
null
llm-book/aio
llm-book
2023-10-06T00:59:01Z
443
1
null
[ "region:us" ]
2023-10-06T00:59:01Z
2023-07-14T11:41:32.000Z
2023-07-14T11:41:32
--- dataset_info: features: - name: qid dtype: string - name: competition dtype: string - name: timestamp dtype: string - name: section dtype: string - name: number dtype: string - name: original_question dtype: string - name: original_answer dtype: string - name: original_additional_info dtype: string - name: question dtype: string - name: answers list: string splits: - name: train num_bytes: 9464003 num_examples: 22335 - name: validation num_bytes: 409779 num_examples: 1000 download_size: 2267163 dataset_size: 9873782 --- # Dataset Card for llm-book/aio 書籍『大規模言語モデル入門』で使用する、「AI王」コンペティションのQAデータセットです。 [AI王の公式ページ](https://sites.google.com/view/project-aio/dataset/)で公開されているデータセットを利用しています。 ## Licence 本データセットに含まれる一部のクイズ問題の著作権は [abc/EQIDEN 実行委員会](https://abc-dive.com/portal/)に帰属するものであり、これらのクイズ問題は本書における使用許諾を得ているものです。 本データセットに含まれる一部のクイズ問題は[株式会社キュービック](http://www.qbik.co.jp/)および[株式会社カプリティオ](https://capriccio.tokyo/)に依頼し作成したものであり、これらのクイズ問題は[クリエイティブ・コモンズ表示・継承ライセンス 4.0 (CC BY-SA 4.0)](https://creativecommons.org/licenses/by-sa/4.0/deed.ja) ライセンスの下に提供されています。 本データセットにパッセージとして付与されている Wikipedia のコンテンツは、[クリエイティブ・コモンズ表示・継承ライセンス 3.0 (CC BY-SA 3.0)](https://creativecommons.org/licenses/by-sa/3.0/deed.ja) および [GNU 自由文書ライセンス (GFDL)](https://www.gnu.org/licenses/fdl.html) の下に配布されているものです。 クイズ問題のライセンスについて、詳細は[AI王の公式ページ](https://sites.google.com/view/project-aio/dataset/)を参照してください。
[ -0.48732471466064453, -0.6177665591239929, 0.23237374424934387, 0.06766816228628159, -0.8004496097564697, -0.1337258368730545, 0.07813476026058197, -0.45586472749710083, 0.20332597196102142, 0.5701319575309753, -0.6924748420715332, -1.0602715015411377, -0.5274542570114136, 0.1435132920742035, -0.30780109763145447, 0.9150539636611938, -0.2784959673881531, -0.03935592994093895, -0.26303473114967346, -0.2173146903514862, -0.330683171749115, -0.43969622254371643, -0.8465775847434998, -0.41176837682724, -0.018605172634124756, 0.31430405378341675, 1.0907249450683594, 1.1118710041046143, 0.8128426671028137, 0.20561644434928894, 0.08633154630661011, -0.03239445388317108, 0.015010888688266277, -0.3214446008205414, -0.002883676439523697, -0.451242059469223, -0.8664305806159973, -0.08442457020282745, 1.2160874605178833, 0.30290424823760986, -0.03028646856546402, -0.04284774884581566, 0.03965403512120247, 0.9605813026428223, -0.1436876505613327, 0.7055860161781311, -0.40806230902671814, 0.17710942029953003, -0.23372264206409454, -0.5725906491279602, -0.048816487193107605, -0.6155604124069214, -0.3387013375759125, -1.2514522075653076, 0.09695940464735031, 0.3414347469806671, 1.5019383430480957, 0.3766099512577057, -0.4813261330127716, -0.5687258243560791, -0.5325034856796265, 0.7763636708259583, -1.0387438535690308, 0.20775792002677917, 0.6875134110450745, 0.4265729486942291, -0.06376338005065918, -0.7116636633872986, -0.779965341091156, -0.21046964824199677, -0.43023595213890076, 0.4705865681171417, -0.002642842009663582, 0.09139036387205124, 0.5492153167724609, 0.4570731818675995, -0.42660707235336304, 0.14417831599712372, -0.42196595668792725, -0.36546066403388977, 1.2427269220352173, 0.2978833317756653, 0.6129667162895203, -0.3055760860443115, -0.48008930683135986, -0.28273317217826843, -0.8856768012046814, 0.2500348687171936, 0.9598673582077026, 0.20841573178768158, -0.6810177564620972, 0.6383956074714661, -0.04448579251766205, 0.6584035158157349, -0.191590815782547, -0.3934634327888489, 0.5318983197212219, -0.5434320569038391, -0.26762497425079346, -0.22249898314476013, 1.0200812816619873, 0.696727454662323, 0.2663659155368805, -0.01985466107726097, -0.13505208492279053, -0.45989686250686646, -0.1412810981273651, -0.6588039398193359, 0.12394458800554276, 0.4171541631221771, -0.5358248353004456, -0.1693287193775177, 0.5344534516334534, -1.2398550510406494, -0.15395759046077728, -0.5242518186569214, -0.01450477633625269, -0.42700353264808655, -0.32363465428352356, -0.10786264389753342, 0.06528233736753464, 0.625717043876648, 0.2578544318675995, -0.8865008354187012, 0.39486297965049744, 0.6375601291656494, 0.4760114252567291, -0.08480921387672424, -0.1951059252023697, -0.04303862527012825, 0.5801548361778259, -0.12112946063280106, 0.6327393054962158, -0.39205077290534973, -0.8279994130134583, 0.3004985749721527, 0.13470514118671417, -0.17715544998645782, -0.5473692417144775, 0.8064707517623901, -0.7081559300422668, 0.3025149703025818, -0.19556495547294617, -0.731650173664093, -0.31783369183540344, 0.17951467633247375, -0.659854531288147, 0.9658241271972656, -0.0692797303199768, -0.8638266324996948, 0.20075495541095734, -0.6862059235572815, -0.4695703089237213, 0.15014317631721497, -0.49254298210144043, -0.5920432806015015, -0.6158244013786316, 0.17909929156303406, 0.4802872836589813, -0.2911272644996643, 0.37079426646232605, -0.11211973428726196, -0.1501730978488922, 0.3800080716609955, -0.20948146283626556, 1.1422749757766724, 0.44642841815948486, -0.07831204682588577, 0.016810737550258636, -1.1812355518341064, 0.17861716449260712, 0.1536485254764557, -0.6267860531806946, -0.3378119468688965, 0.03149550035595894, 0.13847224414348602, 0.07512874156236649, 0.6570348739624023, -0.3957684636116028, 0.5155505537986755, -0.40544775128364563, 0.25947728753089905, 1.0020617246627808, 0.18381959199905396, 0.45329901576042175, -0.5465978384017944, 0.7473740577697754, 0.2616852819919586, 0.30429935455322266, 0.010910705663263798, -0.5073135495185852, -0.7678085565567017, -0.31011492013931274, 0.031074902042746544, 0.9062747955322266, -0.8838964700698853, 0.7761034369468689, -0.47425875067710876, -0.4824880361557007, -0.7578678727149963, 0.10677720606327057, 0.4401527941226959, 0.5163529515266418, 0.43192437291145325, -0.2040540724992752, -0.19132539629936218, -0.9144130945205688, -0.1315661519765854, -0.35852426290512085, 0.24459631741046906, 0.9600879549980164, 0.6416651010513306, -0.401174932718277, 0.8405964374542236, -0.6346396207809448, -0.614687979221344, 0.036269139498472214, 0.05366921424865723, 0.6759442090988159, 0.46014857292175293, 0.6933696269989014, -1.2811566591262817, -0.8140705823898315, -0.021950801834464073, -0.9861937761306763, -0.23488590121269226, -0.3987131118774414, -0.392207533121109, 0.3246672451496124, 0.2775544226169586, -0.4274248480796814, 0.6532846689224243, 0.009548262692987919, -0.6069148778915405, 0.5537327527999878, -0.439966082572937, 0.24273547530174255, -1.4090197086334229, 0.2596133351325989, -0.16464313864707947, -0.024120230227708817, -0.4110791087150574, 0.36316564679145813, -0.02902374602854252, 0.31315305829048157, -0.5324119329452515, 1.1484569311141968, -0.7297732830047607, -0.11296365410089493, 0.09199557453393936, 0.21616706252098083, -0.12207586318254471, 0.32207760214805603, -0.024233534932136536, 0.8931715488433838, 0.8527540564537048, -0.9704878926277161, 0.7861713171005249, 0.6152812838554382, -0.1383395493030548, 0.5327202081680298, -0.45946216583251953, -0.08157048374414444, -0.2792971730232239, -0.0798424780368805, -0.9716189503669739, -0.3763830363750458, 0.8386940956115723, -0.3557438850402832, 0.6535247564315796, 0.012295600958168507, -0.8506796360015869, -0.48066073656082153, -0.5006199479103088, 0.2058125138282776, 0.3791768252849579, -0.5644614100456238, 0.6783672571182251, 0.2247234433889389, 0.010465526953339577, -0.9653759002685547, -0.9657254815101624, -0.11497776210308075, -0.2784661054611206, -0.6470886468887329, 0.6193092465400696, -0.5319722890853882, -0.3008534908294678, 0.36105161905288696, 0.32118740677833557, -0.4546109139919281, -0.06796984374523163, 0.3514348566532135, 0.5533484816551208, -0.06861315667629242, 0.04333900660276413, 0.1686103790998459, -0.3323643207550049, 0.09081002324819565, 0.23273812234401703, 0.3116757273674011, 0.07098367065191269, -0.4974760115146637, -0.9495446681976318, 0.315257728099823, 0.6396476030349731, 0.06598728895187378, 0.4411183297634125, 0.42761147022247314, -0.1692100614309311, 0.05881815403699875, -0.4058722257614136, 0.23188655078411102, -0.4781288504600525, 0.01596873439848423, -0.36734646558761597, -0.43974223732948303, 0.942721962928772, 0.07432375103235245, 0.06256801635026932, 0.9542685747146606, 0.6090579032897949, -0.12109231948852539, 0.3901160657405853, 0.47597193717956543, -0.41965872049331665, 0.4875454306602478, -0.5958273410797119, 0.16746485233306885, -1.0600621700286865, -0.48604753613471985, -0.5375676155090332, -0.26013535261154175, -0.740517258644104, -0.047445327043533325, 0.22124165296554565, 0.005182083696126938, -0.17055319249629974, 0.35798752307891846, -0.710845410823822, 0.20705707371234894, 0.7826573252677917, 0.017690535634756088, 0.5659139752388, 0.08003029972314835, -0.23969139158725739, 0.09241236001253128, -0.30831438302993774, -0.5884405374526978, 1.378771185874939, 0.2928134500980377, 0.8407471179962158, 0.27871325612068176, 0.9762133359909058, 0.5431598424911499, 0.14415551722049713, -0.7920572757720947, 0.8542791604995728, 0.047529879957437515, -0.9566822648048401, -0.34024661779403687, -0.18204031884670258, -1.0853853225708008, 0.10449795424938202, -0.04228325933218002, -0.6437854766845703, 0.5880751013755798, -0.07191677391529083, -0.17498697340488434, 0.4102640748023987, -0.4481908082962036, 0.771564245223999, -0.43882253766059875, -0.5622462630271912, -0.251412957906723, -0.7152099013328552, 0.24041949212551117, -0.06557902693748474, 0.6000633835792542, -0.27892616391181946, -0.4100010395050049, 1.0251442193984985, -0.7879436016082764, 0.805071234703064, -0.3267384469509125, -0.15311399102210999, 0.6451001763343811, -0.3072674870491028, 0.6586641669273376, 0.2979455888271332, -0.3969312906265259, 0.09041205793619156, 0.1702599674463272, -0.31866970658302307, -0.2592185437679291, 0.6323656439781189, -1.1970382928848267, -0.3018852472305298, -0.733025312423706, -0.468793123960495, 0.23508553206920624, 0.45501771569252014, 0.595260500907898, 0.3559401333332062, 0.11440003663301468, -0.1346123069524765, 0.3488495349884033, -0.3792259693145752, 0.7013697624206543, 0.7933584451675415, -0.21457593142986298, -0.5381595492362976, 0.9265028238296509, 0.29536157846450806, 0.0680336281657219, 0.5244649052619934, 0.11721905320882797, -0.6893758773803711, -0.6844971179962158, -0.478145956993103, 0.5186375379562378, -0.9590452909469604, -0.35071492195129395, -0.22416768968105316, -0.3994164764881134, -0.47718337178230286, -0.1894972175359726, 0.16051334142684937, -0.29378196597099304, -0.7679272294044495, -0.09186427295207977, 0.4479394853115082, 0.5242409706115723, -0.2512957751750946, 0.4193977117538452, -0.8732223510742188, 0.5835344195365906, -0.052754469215869904, 0.32602816820144653, -0.06373952329158783, -0.6839248538017273, -0.13186591863632202, -0.026544621214270592, -0.21340174973011017, -0.9268112182617188, 0.6530562043190002, 0.2769014239311218, 0.9025394320487976, 0.4882906973361969, 0.07972479611635208, 0.5409629344940186, -0.18601346015930176, 0.775026798248291, 0.15057511627674103, -0.7128816843032837, 0.8117309212684631, -0.6105303168296814, 0.0026832607109099627, 0.6895286440849304, 0.7437729835510254, -0.4935252070426941, -0.24749188125133514, -0.9317838549613953, -1.1731247901916504, 0.8687925934791565, -0.13819366693496704, 0.2331288456916809, 0.2945515215396881, 0.5058575868606567, 0.10987003147602081, 0.42787647247314453, -1.1045597791671753, -0.9632036685943604, 0.05077609047293663, -0.251154363155365, 0.40057215094566345, -0.46564045548439026, -0.29781922698020935, -0.46524521708488464, 1.3574639558792114, 0.14918242394924164, 0.5736626982688904, 0.20758435130119324, 0.21924345195293427, -0.1834440380334854, 0.6302109956741333, 0.49168363213539124, 0.6105623841285706, -0.33207300305366516, -0.3641296923160553, -0.36085984110832214, -0.7903110980987549, 0.18349073827266693, 0.40273189544677734, -0.792050302028656, -0.06981683522462845, 0.7368707060813904, 0.9234950542449951, -0.12082166224718094, -0.29259076714515686, 0.6632526516914368, 0.11314598470926285, -0.41073739528656006, -0.720629096031189, 0.11899157613515854, -0.2733049988746643, 0.19157674908638, 0.43706318736076355, -0.38601016998291016, 0.08250612020492554, -0.6604961156845093, 0.15777820348739624, 0.3732156753540039, 0.07445000857114792, 0.08600310236215591, 0.7430796027183533, 0.04580557346343994, -0.03221901133656502, 0.7901212573051453, -0.3604503571987152, -0.4367648959159851, 1.0179848670959473, 0.48182448744773865, 0.9372533559799194, -0.08926897495985031, 0.11741182208061218, 0.8380995988845825, 0.19815923273563385, 0.2793254852294922, 0.9114429354667664, -0.06815775483846664, -0.8113224506378174, 0.09211142361164093, -0.6987501978874207, -0.4231729209423065, 0.07967571914196014, -0.8130166530609131, 0.29606831073760986, -0.8851170539855957, -0.14724308252334595, -0.18815626204013824, 0.33070898056030273, -0.6344822645187378, 0.425091952085495, 0.07483772188425064, 1.0603185892105103, -0.7825618982315063, 1.109386920928955, 0.7802899479866028, -0.737035870552063, -0.9876587986946106, 0.019233113154768944, 0.022613851353526115, -1.2378745079040527, 0.7429022192955017, -0.32393479347229004, 0.18800227344036102, 0.1986447423696518, -0.6223117709159851, -1.1480793952941895, 1.6518573760986328, -0.25977230072021484, -0.6995448470115662, 0.20334477722644806, 0.482307493686676, 0.5980947613716125, -0.1854412704706192, 0.16069713234901428, 0.2919420599937439, 1.0724353790283203, 0.32696032524108887, -0.7890297770500183, 0.2301650196313858, -0.3808855414390564, -0.25238993763923645, -0.11186917871236801, -0.9050005674362183, 0.7252565026283264, 0.014887794852256775, -0.39403343200683594, 0.18168562650680542, 0.6759482622146606, -0.050140902400016785, 0.3565247356891632, 0.2564462721347809, 0.7794500589370728, 1.0161528587341309, -0.4774273633956909, 1.2190849781036377, -0.5380691289901733, 0.6086300015449524, 0.9363985657691956, -0.04913869872689247, 0.7051981091499329, 0.3375416696071625, -0.7946786880493164, 0.4264887273311615, 0.6368579864501953, -0.6737578511238098, 0.8367874622344971, 0.10092294961214066, -0.3066904544830322, 0.021298542618751526, -0.06590104103088379, -0.683853805065155, 0.11152125149965286, 0.2726474106311798, -0.4141276180744171, -0.07464425265789032, -0.021683063358068466, 0.1524301916360855, -0.029333580285310745, -0.4550706446170807, 0.8704662322998047, 0.17995496094226837, -0.5274425745010376, 0.4582616686820984, 0.09388329833745956, 0.756080150604248, -0.8263452053070068, 0.17450089752674103, -0.25417327880859375, 0.22463609278202057, -0.5240845084190369, -1.2950385808944702, 0.4517591893672943, -0.1677781492471695, -0.19310708343982697, -0.26342830061912537, 0.5830926299095154, -0.4140543043613434, -0.8926683664321899, 0.5536177754402161, 0.05767238140106201, 0.45826077461242676, 0.7354924082756042, -1.2083721160888672, 0.09393497556447983, 0.21104030311107635, -0.2914809286594391, 0.10184426605701447, 0.17899899184703827, 0.09775921702384949, 0.7552006840705872, 0.5335946679115295, 0.37671372294425964, 0.25619322061538696, 0.0707860067486763, 0.8551371097564697, -0.7530087232589722, -0.6337023377418518, -0.932313859462738, 0.6442558169364929, -0.17858034372329712, -0.4193272292613983, 0.6590163111686707, 0.8983234763145447, 0.8947518467903137, -0.05165266990661621, 1.1695761680603027, -0.27936336398124695, 0.5474020838737488, -0.8033838272094727, 0.9098974466323853, -0.9411746859550476, 0.17822426557540894, -0.33252835273742676, -0.8423351645469666, -0.5655303597450256, 0.5539374947547913, -0.44238001108169556, 0.15632306039333344, 0.8130049109458923, 0.7932458519935608, 0.26253262162208557, -0.16668611764907837, 0.07846561074256897, 0.359499990940094, 0.45547422766685486, 0.8019234538078308, 0.41092726588249207, -0.9122487902641296, 0.364188015460968, -0.4566780626773834, -0.035647984594106674, -0.28832587599754333, -0.9814634919166565, -0.8148733973503113, -0.5585850477218628, -0.6155288219451904, -0.3069598078727722, -0.1739087849855423, 0.7946346402168274, 0.3466671407222748, -0.9753772020339966, -0.4406532645225525, 0.14814646542072296, 0.37437692284584045, -0.026061933487653732, -0.3029991686344147, 0.9348024725914001, -0.0013331084046512842, -0.9069993495941162, -0.06088950112462044, -0.016465652734041214, 0.3851258456707001, 0.024364318698644638, -0.3928499221801758, -0.36291050910949707, -0.19688740372657776, -0.04967304691672325, 0.4853252172470093, -0.8379703164100647, 0.11464083194732666, -0.4645356833934784, -0.48706385493278503, 0.4185172915458679, 0.4035535454750061, -0.22210735082626343, 0.4437479078769684, 0.6821253299713135, 0.41761794686317444, 0.4674919545650482, 0.11836385726928711, 0.10143633931875229, -0.3962826430797577, 0.2949078381061554, 0.0268492940813303, 0.4862326979637146, 0.2114488184452057, -0.9215232729911804, 0.8585852980613708, 0.6452022194862366, -0.48444998264312744, -0.39218243956565857, 0.038190219551324844, -1.3837143182754517, -0.16698913276195526, 1.3603179454803467, -0.07276631146669388, -0.16014958918094635, 0.1893102526664734, -0.28549742698669434, 0.432298481464386, -0.43938109278678894, 0.37251728773117065, 1.0706722736358643, -0.051219355314970016, 0.043204598128795624, -0.8422207236289978, 0.5413042902946472, -0.034040361642837524, -1.141156792640686, -0.10950321704149246, 0.5407856106758118, 0.09805271029472351, 0.186042919754982, 1.0640718936920166, -0.251384437084198, 0.15858793258666992, -0.242391899228096, 0.0758519321680069, -0.3977033793926239, -0.052236203104257584, -0.3726591169834137, -0.2514273524284363, -0.07098577171564102, -0.3155520260334015 ]
null
null
null
null
null
null
null
null
null
null
null
null
null
hails/bigbench
hails
2023-11-17T16:05:10Z
443
1
null
[ "region:us" ]
2023-11-17T16:05:10Z
2023-10-03T19:55:51.000Z
2023-10-03T19:55:51
--- dataset_info: - config_name: abstract_narrative_understanding_zero_shot features: - name: idx dtype: int32 - name: inputs dtype: string - name: targets sequence: string - name: multiple_choice_targets sequence: string - name: multiple_choice_scores sequence: int32 splits: - name: default num_bytes: 6560069 num_examples: 3000 - name: train num_bytes: 5249819 num_examples: 2400 - name: validation num_bytes: 1310250 num_examples: 600 download_size: 0 dataset_size: 13120138 - config_name: anachronisms_zero_shot features: - name: idx dtype: int32 - name: inputs dtype: string - name: targets sequence: string - name: multiple_choice_targets sequence: string - name: multiple_choice_scores sequence: int32 splits: - name: default num_bytes: 48826 num_examples: 230 - name: train num_bytes: 39116 num_examples: 184 - name: validation num_bytes: 9710 num_examples: 46 download_size: 0 dataset_size: 97652 - config_name: analogical_similarity_zero_shot features: - name: idx dtype: int32 - name: inputs dtype: string - name: targets sequence: string - name: multiple_choice_targets sequence: string - name: multiple_choice_scores sequence: int32 splits: - name: default num_bytes: 1373815 num_examples: 323 - name: train num_bytes: 1101512 num_examples: 259 - name: validation num_bytes: 272303 num_examples: 64 download_size: 0 dataset_size: 2747630 - config_name: analytic_entailment_zero_shot features: - name: idx dtype: int32 - name: inputs dtype: string - name: targets sequence: string - name: multiple_choice_targets sequence: string - name: multiple_choice_scores sequence: int32 splits: - name: default num_bytes: 17316 num_examples: 70 - name: train num_bytes: 13368 num_examples: 54 - name: validation num_bytes: 3948 num_examples: 16 download_size: 0 dataset_size: 34632 - config_name: arithmetic_zero_shot features: - name: idx dtype: int32 - name: inputs dtype: string - name: targets sequence: string - name: multiple_choice_targets sequence: string - name: multiple_choice_scores sequence: int32 splits: - name: default num_bytes: 3833272 num_examples: 15023 - name: train num_bytes: 3066775 num_examples: 12019 - name: validation num_bytes: 766497 num_examples: 3004 download_size: 0 dataset_size: 7666544 - config_name: ascii_word_recognition_zero_shot features: - name: idx dtype: int32 - name: inputs dtype: string - name: targets sequence: string - name: multiple_choice_targets sequence: string - name: multiple_choice_scores sequence: int32 splits: - name: default num_bytes: 4984662 num_examples: 5000 - name: train num_bytes: 3997273 num_examples: 4000 - name: validation num_bytes: 987389 num_examples: 1000 download_size: 0 dataset_size: 9969324 - config_name: authorship_verification_zero_shot features: - name: idx dtype: int32 - name: inputs dtype: string - name: targets sequence: string - name: multiple_choice_targets sequence: string - name: multiple_choice_scores sequence: int32 splits: - name: default num_bytes: 14118592 num_examples: 880 - name: train num_bytes: 11288481 num_examples: 704 - name: validation num_bytes: 2830111 num_examples: 176 download_size: 0 dataset_size: 28237184 - config_name: auto_categorization_zero_shot features: - name: idx dtype: int32 - name: inputs dtype: string - name: targets sequence: string - name: multiple_choice_targets sequence: string - name: multiple_choice_scores sequence: int32 splits: - name: default num_bytes: 40549 num_examples: 328 - name: train num_bytes: 32992 num_examples: 263 - name: validation num_bytes: 7557 num_examples: 65 download_size: 0 dataset_size: 81098 - config_name: auto_debugging_zero_shot features: - name: idx dtype: int32 - name: inputs dtype: string - name: targets sequence: string - name: multiple_choice_targets sequence: string - name: multiple_choice_scores sequence: int32 splits: - name: default num_bytes: 5112 num_examples: 34 - name: train num_bytes: 2651 num_examples: 18 - name: validation num_bytes: 2461 num_examples: 16 download_size: 0 dataset_size: 10224 - config_name: bbq_lite_json_zero_shot features: - name: idx dtype: int32 - name: inputs dtype: string - name: targets sequence: string - name: multiple_choice_targets sequence: string - name: multiple_choice_scores sequence: int32 splits: - name: default num_bytes: 6890493 num_examples: 16076 - name: train num_bytes: 5508584 num_examples: 12866 - name: validation num_bytes: 1381909 num_examples: 3210 download_size: 0 dataset_size: 13780986 - config_name: bridging_anaphora_resolution_barqa_zero_shot features: - name: idx dtype: int32 - name: inputs dtype: string - name: targets sequence: string - name: multiple_choice_targets sequence: string - name: multiple_choice_scores sequence: int32 splits: - name: default num_bytes: 1971015 num_examples: 648 - name: train num_bytes: 1537264 num_examples: 519 - name: validation num_bytes: 433751 num_examples: 129 download_size: 0 dataset_size: 3942030 - config_name: causal_judgment_zero_shot features: - name: idx dtype: int32 - name: inputs dtype: string - name: targets sequence: string - name: multiple_choice_targets sequence: string - name: multiple_choice_scores sequence: int32 splits: - name: default num_bytes: 204878 num_examples: 190 - name: train num_bytes: 164940 num_examples: 152 - name: validation num_bytes: 39938 num_examples: 38 download_size: 0 dataset_size: 409756 - config_name: cause_and_effect_zero_shot features: - name: idx dtype: int32 - name: inputs dtype: string - name: targets sequence: string - name: multiple_choice_targets sequence: string - name: multiple_choice_scores sequence: int32 splits: - name: default num_bytes: 49314 num_examples: 153 - name: train num_bytes: 39620 num_examples: 123 - name: validation num_bytes: 9694 num_examples: 30 download_size: 0 dataset_size: 98628 - config_name: checkmate_in_one_zero_shot features: - name: idx dtype: int32 - name: inputs dtype: string - name: targets sequence: string - name: multiple_choice_targets sequence: string - name: multiple_choice_scores sequence: int32 splits: - name: default num_bytes: 3123256 num_examples: 3498 - name: train num_bytes: 2502314 num_examples: 2799 - name: validation num_bytes: 620942 num_examples: 699 download_size: 0 dataset_size: 6246512 - config_name: chess_state_tracking_zero_shot features: - name: idx dtype: int32 - name: inputs dtype: string - name: targets sequence: string - name: multiple_choice_targets sequence: string - name: multiple_choice_scores sequence: int32 splits: - name: default num_bytes: 3269932 num_examples: 6000 - name: train num_bytes: 2616294 num_examples: 4800 - name: validation num_bytes: 653638 num_examples: 1200 download_size: 0 dataset_size: 6539864 - config_name: chinese_remainder_theorem_zero_shot features: - name: idx dtype: int32 - name: inputs dtype: string - name: targets sequence: string - name: multiple_choice_targets sequence: string - name: multiple_choice_scores sequence: int32 splits: - name: default num_bytes: 153222 num_examples: 500 - name: train num_bytes: 122601 num_examples: 400 - name: validation num_bytes: 30621 num_examples: 100 download_size: 0 dataset_size: 306444 - config_name: cifar10_classification_zero_shot features: - name: idx dtype: int32 - name: inputs dtype: string - name: targets sequence: string - name: multiple_choice_targets sequence: string - name: multiple_choice_scores sequence: int32 splits: - name: default num_bytes: 111022200 num_examples: 20000 - name: train num_bytes: 88782724 num_examples: 16000 - name: validation num_bytes: 22239476 num_examples: 4000 download_size: 0 dataset_size: 222044400 - config_name: code_line_description_zero_shot features: - name: idx dtype: int32 - name: inputs dtype: string - name: targets sequence: string - name: multiple_choice_targets sequence: string - name: multiple_choice_scores sequence: int32 splits: - name: default num_bytes: 33670 num_examples: 60 - name: train num_bytes: 25530 num_examples: 44 - name: validation num_bytes: 8140 num_examples: 16 download_size: 0 dataset_size: 67340 - config_name: codenames_zero_shot features: - name: idx dtype: int32 - name: inputs dtype: string - name: targets sequence: string - name: multiple_choice_targets sequence: string - name: multiple_choice_scores sequence: int32 splits: - name: default num_bytes: 25195 num_examples: 85 - name: train num_bytes: 19964 num_examples: 68 - name: validation num_bytes: 5231 num_examples: 17 download_size: 0 dataset_size: 50390 - config_name: color_zero_shot features: - name: idx dtype: int32 - name: inputs dtype: string - name: targets sequence: string - name: multiple_choice_targets sequence: string - name: multiple_choice_scores sequence: int32 splits: - name: default num_bytes: 1633263 num_examples: 4000 - name: train num_bytes: 1306663 num_examples: 3200 - name: validation num_bytes: 326600 num_examples: 800 download_size: 0 dataset_size: 3266526 - config_name: common_morpheme_zero_shot features: - name: idx dtype: int32 - name: inputs dtype: string - name: targets sequence: string - name: multiple_choice_targets sequence: string - name: multiple_choice_scores sequence: int32 splits: - name: default num_bytes: 12388 num_examples: 50 - name: train num_bytes: 8444 num_examples: 34 - name: validation num_bytes: 3944 num_examples: 16 download_size: 0 dataset_size: 24776 - config_name: conceptual_combinations_zero_shot features: - name: idx dtype: int32 - name: inputs dtype: string - name: targets sequence: string - name: multiple_choice_targets sequence: string - name: multiple_choice_scores sequence: int32 splits: - name: default num_bytes: 58859 num_examples: 103 - name: train num_bytes: 48010 num_examples: 84 - name: validation num_bytes: 10849 num_examples: 19 download_size: 0 dataset_size: 117718 - config_name: conlang_translation_zero_shot features: - name: idx dtype: int32 - name: inputs dtype: string - name: targets sequence: string - name: multiple_choice_targets sequence: string - name: multiple_choice_scores sequence: int32 splits: - name: default num_bytes: 215190 num_examples: 164 - name: train num_bytes: 173024 num_examples: 132 - name: validation num_bytes: 42166 num_examples: 32 download_size: 0 dataset_size: 430380 - config_name: contextual_parametric_knowledge_conflicts_zero_shot features: - name: idx dtype: int32 - name: inputs dtype: string - name: targets sequence: string - name: multiple_choice_targets sequence: string - name: multiple_choice_scores sequence: int32 splits: - name: default num_bytes: 14587554 num_examples: 17528 - name: train num_bytes: 11666236 num_examples: 14023 - name: validation num_bytes: 2921318 num_examples: 3505 download_size: 0 dataset_size: 29175108 - config_name: crash_blossom_zero_shot features: - name: idx dtype: int32 - name: inputs dtype: string - name: targets sequence: string - name: multiple_choice_targets sequence: string - name: multiple_choice_scores sequence: int32 splits: - name: default num_bytes: 12194 num_examples: 38 - name: train num_bytes: 6999 num_examples: 22 - name: validation num_bytes: 5195 num_examples: 16 download_size: 0 dataset_size: 24388 - config_name: crass_ai_zero_shot features: - name: idx dtype: int32 - name: inputs dtype: string - name: targets sequence: string - name: multiple_choice_targets sequence: string - name: multiple_choice_scores sequence: int32 splits: - name: default num_bytes: 22870 num_examples: 44 - name: train num_bytes: 14130 num_examples: 28 - name: validation num_bytes: 8740 num_examples: 16 download_size: 0 dataset_size: 45740 - config_name: cryobiology_spanish_zero_shot features: - name: idx dtype: int32 - name: inputs dtype: string - name: targets sequence: string - name: multiple_choice_targets sequence: string - name: multiple_choice_scores sequence: int32 splits: - name: default num_bytes: 38674 num_examples: 146 - name: train num_bytes: 31129 num_examples: 117 - name: validation num_bytes: 7545 num_examples: 29 download_size: 0 dataset_size: 77348 - config_name: cryptonite_zero_shot features: - name: idx dtype: int32 - name: inputs dtype: string - name: targets sequence: string - name: multiple_choice_targets sequence: string - name: multiple_choice_scores sequence: int32 splits: - name: default num_bytes: 2844402 num_examples: 26157 - name: train num_bytes: 2275724 num_examples: 20926 - name: validation num_bytes: 568678 num_examples: 5231 download_size: 0 dataset_size: 5688804 - config_name: cs_algorithms_zero_shot features: - name: idx dtype: int32 - name: inputs dtype: string - name: targets sequence: string - name: multiple_choice_targets sequence: string - name: multiple_choice_scores sequence: int32 splits: - name: default num_bytes: 272435 num_examples: 1320 - name: train num_bytes: 218192 num_examples: 1056 - name: validation num_bytes: 54243 num_examples: 264 download_size: 0 dataset_size: 544870 - config_name: dark_humor_detection_zero_shot features: - name: idx dtype: int32 - name: inputs dtype: string - name: targets sequence: string - name: multiple_choice_targets sequence: string - name: multiple_choice_scores sequence: int32 splits: - name: default num_bytes: 26556 num_examples: 80 - name: train num_bytes: 21267 num_examples: 64 - name: validation num_bytes: 5289 num_examples: 16 download_size: 0 dataset_size: 53112 - config_name: date_understanding_zero_shot features: - name: idx dtype: int32 - name: inputs dtype: string - name: targets sequence: string - name: multiple_choice_targets sequence: string - name: multiple_choice_scores sequence: int32 splits: - name: default num_bytes: 94908 num_examples: 369 - name: train num_bytes: 76165 num_examples: 296 - name: validation num_bytes: 18743 num_examples: 73 download_size: 0 dataset_size: 189816 - config_name: disambiguation_qa_zero_shot features: - name: idx dtype: int32 - name: inputs dtype: string - name: targets sequence: string - name: multiple_choice_targets sequence: string - name: multiple_choice_scores sequence: int32 splits: - name: default num_bytes: 122471 num_examples: 258 - name: train num_bytes: 98687 num_examples: 207 - name: validation num_bytes: 23784 num_examples: 51 download_size: 0 dataset_size: 244942 - config_name: discourse_marker_prediction_zero_shot features: - name: idx dtype: int32 - name: inputs dtype: string - name: targets sequence: string - name: multiple_choice_targets sequence: string - name: multiple_choice_scores sequence: int32 splits: - name: default num_bytes: 2090684 num_examples: 857 - name: train num_bytes: 1666052 num_examples: 686 - name: validation num_bytes: 424632 num_examples: 171 download_size: 0 dataset_size: 4181368 - config_name: disfl_qa_zero_shot features: - name: idx dtype: int32 - name: inputs dtype: string - name: targets sequence: string - name: multiple_choice_targets sequence: string - name: multiple_choice_scores sequence: int32 splits: - name: default num_bytes: 7964775 num_examples: 8000 - name: train num_bytes: 6376511 num_examples: 6400 - name: validation num_bytes: 1588264 num_examples: 1600 download_size: 0 dataset_size: 15929550 - config_name: dyck_languages_zero_shot features: - name: idx dtype: int32 - name: inputs dtype: string - name: targets sequence: string - name: multiple_choice_targets sequence: string - name: multiple_choice_scores sequence: int32 splits: - name: default num_bytes: 1227916 num_examples: 1000 - name: train num_bytes: 982680 num_examples: 800 - name: validation num_bytes: 245236 num_examples: 200 download_size: 0 dataset_size: 2455832 - config_name: elementary_math_qa_zero_shot features: - name: idx dtype: int32 - name: inputs dtype: string - name: targets sequence: string - name: multiple_choice_targets sequence: string - name: multiple_choice_scores sequence: int32 splits: - name: default num_bytes: 13442550 num_examples: 38160 - name: train num_bytes: 10766969 num_examples: 30531 - name: validation num_bytes: 2675581 num_examples: 7629 download_size: 0 dataset_size: 26885100 - config_name: emoji_movie_zero_shot features: - name: idx dtype: int32 - name: inputs dtype: string - name: targets sequence: string - name: multiple_choice_targets sequence: string - name: multiple_choice_scores sequence: int32 splits: - name: default num_bytes: 33667 num_examples: 100 - name: train num_bytes: 26987 num_examples: 80 - name: validation num_bytes: 6680 num_examples: 20 download_size: 0 dataset_size: 67334 - config_name: emojis_emotion_prediction_zero_shot features: - name: idx dtype: int32 - name: inputs dtype: string - name: targets sequence: string - name: multiple_choice_targets sequence: string - name: multiple_choice_scores sequence: int32 splits: - name: default num_bytes: 47983 num_examples: 131 - name: train num_bytes: 38458 num_examples: 105 - name: validation num_bytes: 9525 num_examples: 26 download_size: 0 dataset_size: 95966 - config_name: empirical_judgments_zero_shot features: - name: idx dtype: int32 - name: inputs dtype: string - name: targets sequence: string - name: multiple_choice_targets sequence: string - name: multiple_choice_scores sequence: int32 splits: - name: default num_bytes: 47499 num_examples: 99 - name: train num_bytes: 38346 num_examples: 80 - name: validation num_bytes: 9153 num_examples: 19 download_size: 0 dataset_size: 94998 - config_name: english_proverbs_zero_shot features: - name: idx dtype: int32 - name: inputs dtype: string - name: targets sequence: string - name: multiple_choice_targets sequence: string - name: multiple_choice_scores sequence: int32 splits: - name: default num_bytes: 22530 num_examples: 34 - name: train num_bytes: 12066 num_examples: 18 - name: validation num_bytes: 10464 num_examples: 16 download_size: 0 dataset_size: 45060 - config_name: english_russian_proverbs_zero_shot features: - name: idx dtype: int32 - name: inputs dtype: string - name: targets sequence: string - name: multiple_choice_targets sequence: string - name: multiple_choice_scores sequence: int32 splits: - name: default num_bytes: 59900 num_examples: 80 - name: train num_bytes: 48051 num_examples: 64 - name: validation num_bytes: 11849 num_examples: 16 download_size: 0 dataset_size: 119800 - config_name: entailed_polarity_hindi_zero_shot features: - name: idx dtype: int32 - name: inputs dtype: string - name: targets sequence: string - name: multiple_choice_targets sequence: string - name: multiple_choice_scores sequence: int32 splits: - name: default num_bytes: 57052 num_examples: 138 - name: train num_bytes: 45829 num_examples: 111 - name: validation num_bytes: 11223 num_examples: 27 download_size: 0 dataset_size: 114104 - config_name: entailed_polarity_zero_shot features: - name: idx dtype: int32 - name: inputs dtype: string - name: targets sequence: string - name: multiple_choice_targets sequence: string - name: multiple_choice_scores sequence: int32 splits: - name: default num_bytes: 25421 num_examples: 148 - name: train num_bytes: 20350 num_examples: 119 - name: validation num_bytes: 5071 num_examples: 29 download_size: 0 dataset_size: 50842 - config_name: epistemic_reasoning_zero_shot features: - name: idx dtype: int32 - name: inputs dtype: string - name: targets sequence: string - name: multiple_choice_targets sequence: string - name: multiple_choice_scores sequence: int32 splits: - name: default num_bytes: 887158 num_examples: 2000 - name: train num_bytes: 710107 num_examples: 1600 - name: validation num_bytes: 177051 num_examples: 400 download_size: 0 dataset_size: 1774316 - config_name: evaluating_information_essentiality_zero_shot features: - name: idx dtype: int32 - name: inputs dtype: string - name: targets sequence: string - name: multiple_choice_targets sequence: string - name: multiple_choice_scores sequence: int32 splits: - name: default num_bytes: 77488 num_examples: 68 - name: train num_bytes: 59596 num_examples: 52 - name: validation num_bytes: 17892 num_examples: 16 download_size: 0 dataset_size: 154976 - config_name: fact_checker_zero_shot features: - name: idx dtype: int32 - name: inputs dtype: string - name: targets sequence: string - name: multiple_choice_targets sequence: string - name: multiple_choice_scores sequence: int32 splits: - name: default num_bytes: 1337384 num_examples: 7154 - name: train num_bytes: 1070750 num_examples: 5724 - name: validation num_bytes: 266634 num_examples: 1430 download_size: 0 dataset_size: 2674768 - config_name: fantasy_reasoning_zero_shot features: - name: idx dtype: int32 - name: inputs dtype: string - name: targets sequence: string - name: multiple_choice_targets sequence: string - name: multiple_choice_scores sequence: int32 splits: - name: default num_bytes: 75886 num_examples: 201 - name: train num_bytes: 61398 num_examples: 161 - name: validation num_bytes: 14488 num_examples: 40 download_size: 0 dataset_size: 151772 - config_name: few_shot_nlg_zero_shot features: - name: idx dtype: int32 - name: inputs dtype: string - name: targets sequence: string - name: multiple_choice_targets sequence: string - name: multiple_choice_scores sequence: int32 splits: - name: default num_bytes: 75937 num_examples: 153 - name: train num_bytes: 61862 num_examples: 123 - name: validation num_bytes: 14075 num_examples: 30 download_size: 0 dataset_size: 151874 - config_name: figure_of_speech_detection_zero_shot features: - name: idx dtype: int32 - name: inputs dtype: string - name: targets sequence: string - name: multiple_choice_targets sequence: string - name: multiple_choice_scores sequence: int32 splits: - name: default num_bytes: 21717 num_examples: 59 - name: train num_bytes: 15962 num_examples: 43 - name: validation num_bytes: 5755 num_examples: 16 download_size: 0 dataset_size: 43434 - config_name: formal_fallacies_syllogisms_negation_zero_shot features: - name: idx dtype: int32 - name: inputs dtype: string - name: targets sequence: string - name: multiple_choice_targets sequence: string - name: multiple_choice_scores sequence: int32 splits: - name: default num_bytes: 8314653 num_examples: 14200 - name: train num_bytes: 6652955 num_examples: 11360 - name: validation num_bytes: 1661698 num_examples: 2840 download_size: 0 dataset_size: 16629306 - config_name: gem_zero_shot features: - name: idx dtype: int32 - name: inputs dtype: string - name: targets sequence: string - name: multiple_choice_targets sequence: string - name: multiple_choice_scores sequence: int32 splits: - name: default num_bytes: 36065281 num_examples: 14802 - name: train num_bytes: 28819497 num_examples: 11845 - name: validation num_bytes: 7245784 num_examples: 2957 download_size: 0 dataset_size: 72130562 - config_name: gender_inclusive_sentences_german_zero_shot features: - name: idx dtype: int32 - name: inputs dtype: string - name: targets sequence: string - name: multiple_choice_targets sequence: string - name: multiple_choice_scores sequence: int32 splits: - name: default num_bytes: 126881 num_examples: 200 - name: train num_bytes: 100628 num_examples: 160 - name: validation num_bytes: 26253 num_examples: 40 download_size: 0 dataset_size: 253762 - config_name: general_knowledge_zero_shot features: - name: idx dtype: int32 - name: inputs dtype: string - name: targets sequence: string - name: multiple_choice_targets sequence: string - name: multiple_choice_scores sequence: int32 splits: - name: default num_bytes: 21828 num_examples: 70 - name: train num_bytes: 16818 num_examples: 54 - name: validation num_bytes: 5010 num_examples: 16 download_size: 0 dataset_size: 43656 - config_name: geometric_shapes_zero_shot features: - name: idx dtype: int32 - name: inputs dtype: string - name: targets sequence: string - name: multiple_choice_targets sequence: string - name: multiple_choice_scores sequence: int32 splits: - name: default num_bytes: 180094 num_examples: 359 - name: train num_bytes: 144602 num_examples: 288 - name: validation num_bytes: 35492 num_examples: 71 download_size: 0 dataset_size: 360188 - config_name: goal_step_wikihow_zero_shot features: - name: idx dtype: int32 - name: inputs dtype: string - name: targets sequence: string - name: multiple_choice_targets sequence: string - name: multiple_choice_scores sequence: int32 splits: - name: default num_bytes: 3567615 num_examples: 7053 - name: train num_bytes: 2853871 num_examples: 5643 - name: validation num_bytes: 713744 num_examples: 1410 download_size: 0 dataset_size: 7135230 - config_name: gre_reading_comprehension_zero_shot features: - name: idx dtype: int32 - name: inputs dtype: string - name: targets sequence: string - name: multiple_choice_targets sequence: string - name: multiple_choice_scores sequence: int32 splits: - name: default num_bytes: 94273 num_examples: 31 - name: train num_bytes: 44458 num_examples: 15 - name: validation num_bytes: 49815 num_examples: 16 download_size: 0 dataset_size: 188546 - config_name: hhh_alignment_zero_shot features: - name: idx dtype: int32 - name: inputs dtype: string - name: targets sequence: string - name: multiple_choice_targets sequence: string - name: multiple_choice_scores sequence: int32 splits: - name: default num_bytes: 272898 num_examples: 221 - name: train num_bytes: 212488 num_examples: 179 - name: validation num_bytes: 60410 num_examples: 42 download_size: 0 dataset_size: 545796 - config_name: hindi_question_answering_zero_shot features: - name: idx dtype: int32 - name: inputs dtype: string - name: targets sequence: string - name: multiple_choice_targets sequence: string - name: multiple_choice_scores sequence: int32 splits: - name: default num_bytes: 15154954 num_examples: 6610 - name: train num_bytes: 11983837 num_examples: 5288 - name: validation num_bytes: 3171117 num_examples: 1322 download_size: 0 dataset_size: 30309908 - config_name: hindu_knowledge_zero_shot features: - name: idx dtype: int32 - name: inputs dtype: string - name: targets sequence: string - name: multiple_choice_targets sequence: string - name: multiple_choice_scores sequence: int32 splits: - name: default num_bytes: 44092 num_examples: 175 - name: train num_bytes: 35392 num_examples: 140 - name: validation num_bytes: 8700 num_examples: 35 download_size: 0 dataset_size: 88184 - config_name: hinglish_toxicity_zero_shot features: - name: idx dtype: int32 - name: inputs dtype: string - name: targets sequence: string - name: multiple_choice_targets sequence: string - name: multiple_choice_scores sequence: int32 splits: - name: default num_bytes: 60613 num_examples: 200 - name: train num_bytes: 49997 num_examples: 160 - name: validation num_bytes: 10616 num_examples: 40 download_size: 0 dataset_size: 121226 - config_name: human_organs_senses_zero_shot features: - name: idx dtype: int32 - name: inputs dtype: string - name: targets sequence: string - name: multiple_choice_targets sequence: string - name: multiple_choice_scores sequence: int32 splits: - name: default num_bytes: 7944 num_examples: 42 - name: train num_bytes: 4873 num_examples: 26 - name: validation num_bytes: 3071 num_examples: 16 download_size: 0 dataset_size: 15888 - config_name: hyperbaton_zero_shot features: - name: idx dtype: int32 - name: inputs dtype: string - name: targets sequence: string - name: multiple_choice_targets sequence: string - name: multiple_choice_scores sequence: int32 splits: - name: default num_bytes: 9383986 num_examples: 50000 - name: train num_bytes: 7509334 num_examples: 40000 - name: validation num_bytes: 1874652 num_examples: 10000 download_size: 0 dataset_size: 18767972 - config_name: identify_math_theorems_zero_shot features: - name: idx dtype: int32 - name: inputs dtype: string - name: targets sequence: string - name: multiple_choice_targets sequence: string - name: multiple_choice_scores sequence: int32 splits: - name: default num_bytes: 104841 num_examples: 53 - name: train num_bytes: 70295 num_examples: 37 - name: validation num_bytes: 34546 num_examples: 16 download_size: 0 dataset_size: 209682 - config_name: identify_odd_metaphor_zero_shot features: - name: idx dtype: int32 - name: inputs dtype: string - name: targets sequence: string - name: multiple_choice_targets sequence: string - name: multiple_choice_scores sequence: int32 splits: - name: default num_bytes: 27602 num_examples: 47 - name: train num_bytes: 18138 num_examples: 31 - name: validation num_bytes: 9464 num_examples: 16 download_size: 0 dataset_size: 55204 - config_name: implicatures_zero_shot features: - name: idx dtype: int32 - name: inputs dtype: string - name: targets sequence: string - name: multiple_choice_targets sequence: string - name: multiple_choice_scores sequence: int32 splits: - name: default num_bytes: 91683 num_examples: 492 - name: train num_bytes: 73416 num_examples: 394 - name: validation num_bytes: 18267 num_examples: 98 download_size: 0 dataset_size: 183366 - config_name: implicit_relations_zero_shot features: - name: idx dtype: int32 - name: inputs dtype: string - name: targets sequence: string - name: multiple_choice_targets sequence: string - name: multiple_choice_scores sequence: int32 splits: - name: default num_bytes: 79710 num_examples: 85 - name: train num_bytes: 64346 num_examples: 68 - name: validation num_bytes: 15364 num_examples: 17 download_size: 0 dataset_size: 159420 - config_name: intent_recognition_zero_shot features: - name: idx dtype: int32 - name: inputs dtype: string - name: targets sequence: string - name: multiple_choice_targets sequence: string - name: multiple_choice_scores sequence: int32 splits: - name: default num_bytes: 322371 num_examples: 693 - name: train num_bytes: 257864 num_examples: 555 - name: validation num_bytes: 64507 num_examples: 138 download_size: 0 dataset_size: 644742 - config_name: international_phonetic_alphabet_nli_zero_shot features: - name: idx dtype: int32 - name: inputs dtype: string - name: targets sequence: string - name: multiple_choice_targets sequence: string - name: multiple_choice_scores sequence: int32 splits: - name: default num_bytes: 79320 num_examples: 126 - name: train num_bytes: 63288 num_examples: 101 - name: validation num_bytes: 16032 num_examples: 25 download_size: 0 dataset_size: 158640 - config_name: international_phonetic_alphabet_transliterate_zero_shot features: - name: idx dtype: int32 - name: inputs dtype: string - name: targets sequence: string - name: multiple_choice_targets sequence: string - name: multiple_choice_scores sequence: int32 splits: - name: default num_bytes: 275938 num_examples: 1003 - name: train num_bytes: 220784 num_examples: 803 - name: validation num_bytes: 55154 num_examples: 200 download_size: 0 dataset_size: 551876 - config_name: intersect_geometry_zero_shot features: - name: idx dtype: int32 - name: inputs dtype: string - name: targets sequence: string - name: multiple_choice_targets sequence: string - name: multiple_choice_scores sequence: int32 splits: - name: default num_bytes: 211674752 num_examples: 249999 - name: train num_bytes: 169332898 num_examples: 200000 - name: validation num_bytes: 42341854 num_examples: 49999 download_size: 0 dataset_size: 423349504 - config_name: irony_identification_zero_shot features: - name: idx dtype: int32 - name: inputs dtype: string - name: targets sequence: string - name: multiple_choice_targets sequence: string - name: multiple_choice_scores sequence: int32 splits: - name: default num_bytes: 28178 num_examples: 99 - name: train num_bytes: 22918 num_examples: 80 - name: validation num_bytes: 5260 num_examples: 19 download_size: 0 dataset_size: 56356 - config_name: kanji_ascii_zero_shot features: - name: idx dtype: int32 - name: inputs dtype: string - name: targets sequence: string - name: multiple_choice_targets sequence: string - name: multiple_choice_scores sequence: int32 splits: - name: default num_bytes: 366946 num_examples: 1092 - name: train num_bytes: 293933 num_examples: 875 - name: validation num_bytes: 73013 num_examples: 217 download_size: 0 dataset_size: 733892 - config_name: kannada_zero_shot features: - name: idx dtype: int32 - name: inputs dtype: string - name: targets sequence: string - name: multiple_choice_targets sequence: string - name: multiple_choice_scores sequence: int32 splits: - name: default num_bytes: 140638 num_examples: 316 - name: train num_bytes: 111865 num_examples: 253 - name: validation num_bytes: 28773 num_examples: 63 download_size: 0 dataset_size: 281276 - config_name: key_value_maps_zero_shot features: - name: idx dtype: int32 - name: inputs dtype: string - name: targets sequence: string - name: multiple_choice_targets sequence: string - name: multiple_choice_scores sequence: int32 splits: - name: default num_bytes: 105136 num_examples: 101 - name: train num_bytes: 84317 num_examples: 80 - name: validation num_bytes: 20819 num_examples: 21 download_size: 0 dataset_size: 210272 - config_name: known_unknowns_zero_shot features: - name: idx dtype: int32 - name: inputs dtype: string - name: targets sequence: string - name: multiple_choice_targets sequence: string - name: multiple_choice_scores sequence: int32 splits: - name: default num_bytes: 7960 num_examples: 46 - name: train num_bytes: 5130 num_examples: 30 - name: validation num_bytes: 2830 num_examples: 16 download_size: 0 dataset_size: 15920 - config_name: language_games_zero_shot features: - name: idx dtype: int32 - name: inputs dtype: string - name: targets sequence: string - name: multiple_choice_targets sequence: string - name: multiple_choice_scores sequence: int32 splits: - name: default num_bytes: 979619 num_examples: 2128 - name: train num_bytes: 783111 num_examples: 1704 - name: validation num_bytes: 196508 num_examples: 424 download_size: 0 dataset_size: 1959238 - config_name: language_identification_zero_shot features: - name: idx dtype: int32 - name: inputs dtype: string - name: targets sequence: string - name: multiple_choice_targets sequence: string - name: multiple_choice_scores sequence: int32 splits: - name: default num_bytes: 7376223 num_examples: 10000 - name: train num_bytes: 5908808 num_examples: 8000 - name: validation num_bytes: 1467415 num_examples: 2000 download_size: 0 dataset_size: 14752446 - config_name: linguistic_mappings_zero_shot features: - name: idx dtype: int32 - name: inputs dtype: string - name: targets sequence: string - name: multiple_choice_targets sequence: string - name: multiple_choice_scores sequence: int32 splits: - name: default num_bytes: 1325186 num_examples: 15527 - name: train num_bytes: 1060088 num_examples: 12426 - name: validation num_bytes: 265098 num_examples: 3101 download_size: 0 dataset_size: 2650372 - config_name: linguistics_puzzles_zero_shot features: - name: idx dtype: int32 - name: inputs dtype: string - name: targets sequence: string - name: multiple_choice_targets sequence: string - name: multiple_choice_scores sequence: int32 splits: - name: default num_bytes: 1746024 num_examples: 2000 - name: train num_bytes: 1398113 num_examples: 1600 - name: validation num_bytes: 347911 num_examples: 400 download_size: 0 dataset_size: 3492048 - config_name: list_functions_zero_shot features: - name: idx dtype: int32 - name: inputs dtype: string - name: targets sequence: string - name: multiple_choice_targets sequence: string - name: multiple_choice_scores sequence: int32 splits: - name: default num_bytes: 2678136 num_examples: 10750 - name: train num_bytes: 2161065 num_examples: 8700 - name: validation num_bytes: 517071 num_examples: 2050 download_size: 0 dataset_size: 5356272 - config_name: logic_grid_puzzle_zero_shot features: - name: idx dtype: int32 - name: inputs dtype: string - name: targets sequence: string - name: multiple_choice_targets sequence: string - name: multiple_choice_scores sequence: int32 splits: - name: default num_bytes: 1456218 num_examples: 1000 - name: train num_bytes: 1160137 num_examples: 800 - name: validation num_bytes: 296081 num_examples: 200 download_size: 0 dataset_size: 2912436 - config_name: logical_args_zero_shot features: - name: idx dtype: int32 - name: inputs dtype: string - name: targets sequence: string - name: multiple_choice_targets sequence: string - name: multiple_choice_scores sequence: int32 splits: - name: default num_bytes: 43582 num_examples: 32 - name: train num_bytes: 21072 num_examples: 16 - name: validation num_bytes: 22510 num_examples: 16 download_size: 0 dataset_size: 87164 - config_name: logical_deduction_zero_shot features: - name: idx dtype: int32 - name: inputs dtype: string - name: targets sequence: string - name: multiple_choice_targets sequence: string - name: multiple_choice_scores sequence: int32 splits: - name: default num_bytes: 1056716 num_examples: 1500 - name: train num_bytes: 841788 num_examples: 1200 - name: validation num_bytes: 214928 num_examples: 300 download_size: 0 dataset_size: 2113432 - config_name: logical_fallacy_detection_zero_shot features: - name: idx dtype: int32 - name: inputs dtype: string - name: targets sequence: string - name: multiple_choice_targets sequence: string - name: multiple_choice_scores sequence: int32 splits: - name: default num_bytes: 720286 num_examples: 2800 - name: train num_bytes: 576295 num_examples: 2240 - name: validation num_bytes: 143991 num_examples: 560 download_size: 0 dataset_size: 1440572 - config_name: logical_sequence_zero_shot features: - name: idx dtype: int32 - name: inputs dtype: string - name: targets sequence: string - name: multiple_choice_targets sequence: string - name: multiple_choice_scores sequence: int32 splits: - name: default num_bytes: 22722 num_examples: 39 - name: train num_bytes: 12648 num_examples: 23 - name: validation num_bytes: 10074 num_examples: 16 download_size: 0 dataset_size: 45444 - config_name: mathematical_induction_zero_shot features: - name: idx dtype: int32 - name: inputs dtype: string - name: targets sequence: string - name: multiple_choice_targets sequence: string - name: multiple_choice_scores sequence: int32 splits: - name: default num_bytes: 19018 num_examples: 69 - name: train num_bytes: 14983 num_examples: 53 - name: validation num_bytes: 4035 num_examples: 16 download_size: 0 dataset_size: 38036 - config_name: matrixshapes_zero_shot features: - name: idx dtype: int32 - name: inputs dtype: string - name: targets sequence: string - name: multiple_choice_targets sequence: string - name: multiple_choice_scores sequence: int32 splits: - name: default num_bytes: 1130574 num_examples: 4462 - name: train num_bytes: 906061 num_examples: 3570 - name: validation num_bytes: 224513 num_examples: 892 download_size: 0 dataset_size: 2261148 - config_name: metaphor_boolean_zero_shot features: - name: idx dtype: int32 - name: inputs dtype: string - name: targets sequence: string - name: multiple_choice_targets sequence: string - name: multiple_choice_scores sequence: int32 splits: - name: default num_bytes: 213848 num_examples: 680 - name: train num_bytes: 170765 num_examples: 544 - name: validation num_bytes: 43083 num_examples: 136 download_size: 0 dataset_size: 427696 - config_name: metaphor_understanding_zero_shot features: - name: idx dtype: int32 - name: inputs dtype: string - name: targets sequence: string - name: multiple_choice_targets sequence: string - name: multiple_choice_scores sequence: int32 splits: - name: default num_bytes: 200862 num_examples: 234 - name: train num_bytes: 162101 num_examples: 188 - name: validation num_bytes: 38761 num_examples: 46 download_size: 0 dataset_size: 401724 - config_name: minute_mysteries_qa_zero_shot features: - name: idx dtype: int32 - name: inputs dtype: string - name: targets sequence: string - name: multiple_choice_targets sequence: string - name: multiple_choice_scores sequence: int32 splits: - name: default num_bytes: 3245190 num_examples: 477 - name: train num_bytes: 2623703 num_examples: 383 - name: validation num_bytes: 621487 num_examples: 94 download_size: 0 dataset_size: 6490380 - config_name: misconceptions_russian_zero_shot features: - name: idx dtype: int32 - name: inputs dtype: string - name: targets sequence: string - name: multiple_choice_targets sequence: string - name: multiple_choice_scores sequence: int32 splits: - name: default num_bytes: 16991 num_examples: 49 - name: train num_bytes: 10970 num_examples: 33 - name: validation num_bytes: 6021 num_examples: 16 download_size: 0 dataset_size: 33982 - config_name: misconceptions_zero_shot features: - name: idx dtype: int32 - name: inputs dtype: string - name: targets sequence: string - name: multiple_choice_targets sequence: string - name: multiple_choice_scores sequence: int32 splits: - name: default num_bytes: 45816 num_examples: 219 - name: train num_bytes: 37246 num_examples: 176 - name: validation num_bytes: 8570 num_examples: 43 download_size: 0 dataset_size: 91632 - config_name: mnist_ascii_zero_shot features: - name: idx dtype: int32 - name: inputs dtype: string - name: targets sequence: string - name: multiple_choice_targets sequence: string - name: multiple_choice_scores sequence: int32 splits: - name: default num_bytes: 61739808 num_examples: 69984 - name: train num_bytes: 49419928 num_examples: 55988 - name: validation num_bytes: 12319880 num_examples: 13996 download_size: 0 dataset_size: 123479616 - config_name: modified_arithmetic_zero_shot features: - name: idx dtype: int32 - name: inputs dtype: string - name: targets sequence: string - name: multiple_choice_targets sequence: string - name: multiple_choice_scores sequence: int32 splits: - name: default num_bytes: 1220993 num_examples: 6000 - name: train num_bytes: 976859 num_examples: 4800 - name: validation num_bytes: 244134 num_examples: 1200 download_size: 0 dataset_size: 2441986 - config_name: moral_permissibility_zero_shot features: - name: idx dtype: int32 - name: inputs dtype: string - name: targets sequence: string - name: multiple_choice_targets sequence: string - name: multiple_choice_scores sequence: int32 splits: - name: default num_bytes: 162068 num_examples: 342 - name: train num_bytes: 128790 num_examples: 274 - name: validation num_bytes: 33278 num_examples: 68 download_size: 0 dataset_size: 324136 - config_name: movie_dialog_same_or_different_zero_shot features: - name: idx dtype: int32 - name: inputs dtype: string - name: targets sequence: string - name: multiple_choice_targets sequence: string - name: multiple_choice_scores sequence: int32 splits: - name: default num_bytes: 28645997 num_examples: 50000 - name: train num_bytes: 22889061 num_examples: 40000 - name: validation num_bytes: 5756936 num_examples: 10000 download_size: 0 dataset_size: 57291994 - config_name: movie_recommendation_zero_shot features: - name: idx dtype: int32 - name: inputs dtype: string - name: targets sequence: string - name: multiple_choice_targets sequence: string - name: multiple_choice_scores sequence: int32 splits: - name: default num_bytes: 173557 num_examples: 500 - name: train num_bytes: 138936 num_examples: 400 - name: validation num_bytes: 34621 num_examples: 100 download_size: 0 dataset_size: 347114 - config_name: mult_data_wrangling_zero_shot features: - name: idx dtype: int32 - name: inputs dtype: string - name: targets sequence: string - name: multiple_choice_targets sequence: string - name: multiple_choice_scores sequence: int32 splits: - name: default num_bytes: 625422 num_examples: 7854 - name: train num_bytes: 507838 num_examples: 6380 - name: validation num_bytes: 117584 num_examples: 1474 download_size: 0 dataset_size: 1250844 - config_name: multiemo_zero_shot features: - name: idx dtype: int32 - name: inputs dtype: string - name: targets sequence: string - name: multiple_choice_targets sequence: string - name: multiple_choice_scores sequence: int32 splits: - name: default num_bytes: 650173925 num_examples: 1437281 - name: train num_bytes: 520172185 num_examples: 1149873 - name: validation num_bytes: 130001740 num_examples: 287408 download_size: 0 dataset_size: 1300347850 - config_name: natural_instructions_zero_shot features: - name: idx dtype: int32 - name: inputs dtype: string - name: targets sequence: string - name: multiple_choice_targets sequence: string - name: multiple_choice_scores sequence: int32 splits: - name: default num_bytes: 355938370 num_examples: 193250 - name: train num_bytes: 284920096 num_examples: 154615 - name: validation num_bytes: 71018274 num_examples: 38635 download_size: 0 dataset_size: 711876740 - config_name: navigate_zero_shot features: - name: idx dtype: int32 - name: inputs dtype: string - name: targets sequence: string - name: multiple_choice_targets sequence: string - name: multiple_choice_scores sequence: int32 splits: - name: default num_bytes: 225813 num_examples: 1000 - name: train num_bytes: 180958 num_examples: 800 - name: validation num_bytes: 44855 num_examples: 200 download_size: 83744 dataset_size: 451626 - config_name: nonsense_words_grammar_zero_shot features: - name: idx dtype: int32 - name: inputs dtype: string - name: targets sequence: string - name: multiple_choice_targets sequence: string - name: multiple_choice_scores sequence: int32 splits: - name: default num_bytes: 11102 num_examples: 50 - name: train num_bytes: 7582 num_examples: 34 - name: validation num_bytes: 3520 num_examples: 16 download_size: 24107 dataset_size: 22204 - config_name: novel_concepts_zero_shot features: - name: idx dtype: int32 - name: inputs dtype: string - name: targets sequence: string - name: multiple_choice_targets sequence: string - name: multiple_choice_scores sequence: int32 splits: - name: default num_bytes: 16065 num_examples: 32 - name: train num_bytes: 8128 num_examples: 16 - name: validation num_bytes: 7937 num_examples: 16 download_size: 25919 dataset_size: 32130 - config_name: object_counting_zero_shot features: - name: idx dtype: int32 - name: inputs dtype: string - name: targets sequence: string - name: multiple_choice_targets sequence: string - name: multiple_choice_scores sequence: int32 splits: - name: default num_bytes: 149555 num_examples: 1000 - name: train num_bytes: 119609 num_examples: 800 - name: validation num_bytes: 29946 num_examples: 200 download_size: 91852 dataset_size: 299110 - config_name: odd_one_out_zero_shot features: - name: idx dtype: int32 - name: inputs dtype: string - name: targets sequence: string - name: multiple_choice_targets sequence: string - name: multiple_choice_scores sequence: int32 splits: - name: default num_bytes: 13843 num_examples: 86 - name: train num_bytes: 11217 num_examples: 69 - name: validation num_bytes: 2626 num_examples: 17 download_size: 25796 dataset_size: 27686 - config_name: operators_zero_shot features: - name: idx dtype: int32 - name: inputs dtype: string - name: targets sequence: string - name: multiple_choice_targets sequence: string - name: multiple_choice_scores sequence: int32 splits: - name: default num_bytes: 32435 num_examples: 210 - name: train num_bytes: 25937 num_examples: 168 - name: validation num_bytes: 6498 num_examples: 42 download_size: 24728 dataset_size: 64870 - config_name: paragraph_segmentation_zero_shot features: - name: idx dtype: int32 - name: inputs dtype: string - name: targets sequence: string - name: multiple_choice_targets sequence: string - name: multiple_choice_scores sequence: int32 splits: - name: default num_bytes: 56846507 num_examples: 9000 - name: train num_bytes: 45674320 num_examples: 7200 - name: validation num_bytes: 11172187 num_examples: 1800 download_size: 61123049 dataset_size: 113693014 - config_name: parsinlu_qa_zero_shot features: - name: idx dtype: int32 - name: inputs dtype: string - name: targets sequence: string - name: multiple_choice_targets sequence: string - name: multiple_choice_scores sequence: int32 splits: - name: default num_bytes: 456189 num_examples: 1050 - name: train num_bytes: 366577 num_examples: 840 - name: validation num_bytes: 89612 num_examples: 210 download_size: 465963 dataset_size: 912378 - config_name: parsinlu_reading_comprehension_zero_shot features: - name: idx dtype: int32 - name: inputs dtype: string - name: targets sequence: string - name: multiple_choice_targets sequence: string - name: multiple_choice_scores sequence: int32 splits: - name: default num_bytes: 573798 num_examples: 518 - name: train num_bytes: 455828 num_examples: 415 - name: validation num_bytes: 117970 num_examples: 103 download_size: 572992 dataset_size: 1147596 - config_name: penguins_in_a_table_zero_shot features: - name: idx dtype: int32 - name: inputs dtype: string - name: targets sequence: string - name: multiple_choice_targets sequence: string - name: multiple_choice_scores sequence: int32 splits: - name: default num_bytes: 75985 num_examples: 149 - name: train num_bytes: 61321 num_examples: 120 - name: validation num_bytes: 14664 num_examples: 29 download_size: 32039 dataset_size: 151970 - config_name: periodic_elements_zero_shot features: - name: idx dtype: int32 - name: inputs dtype: string - name: targets sequence: string - name: multiple_choice_targets sequence: string - name: multiple_choice_scores sequence: int32 splits: - name: default num_bytes: 285204 num_examples: 654 - name: train num_bytes: 229481 num_examples: 524 - name: validation num_bytes: 55723 num_examples: 130 download_size: 41084 dataset_size: 570408 - config_name: persian_idioms_zero_shot features: - name: idx dtype: int32 - name: inputs dtype: string - name: targets sequence: string - name: multiple_choice_targets sequence: string - name: multiple_choice_scores sequence: int32 splits: - name: default num_bytes: 28592 num_examples: 66 - name: train num_bytes: 21684 num_examples: 50 - name: validation num_bytes: 6908 num_examples: 16 download_size: 34341 dataset_size: 57184 - config_name: phrase_relatedness_zero_shot features: - name: idx dtype: int32 - name: inputs dtype: string - name: targets sequence: string - name: multiple_choice_targets sequence: string - name: multiple_choice_scores sequence: int32 splits: - name: default num_bytes: 30190 num_examples: 100 - name: train num_bytes: 23773 num_examples: 80 - name: validation num_bytes: 6417 num_examples: 20 download_size: 40334 dataset_size: 60380 - config_name: physical_intuition_zero_shot features: - name: idx dtype: int32 - name: inputs dtype: string - name: targets sequence: string - name: multiple_choice_targets sequence: string - name: multiple_choice_scores sequence: int32 splits: - name: default num_bytes: 23734 num_examples: 81 - name: train num_bytes: 19307 num_examples: 65 - name: validation num_bytes: 4427 num_examples: 16 download_size: 28462 dataset_size: 47468 - config_name: physics_questions_zero_shot features: - name: idx dtype: int32 - name: inputs dtype: string - name: targets sequence: string - name: multiple_choice_targets sequence: string - name: multiple_choice_scores sequence: int32 splits: - name: default num_bytes: 18372 num_examples: 54 - name: train num_bytes: 13402 num_examples: 38 - name: validation num_bytes: 4970 num_examples: 16 download_size: 35187 dataset_size: 36744 - config_name: physics_zero_shot features: - name: idx dtype: int32 - name: inputs dtype: string - name: targets sequence: string - name: multiple_choice_targets sequence: string - name: multiple_choice_scores sequence: int32 splits: - name: default num_bytes: 120239 num_examples: 229 - name: train num_bytes: 96122 num_examples: 184 - name: validation num_bytes: 24117 num_examples: 45 download_size: 69885 dataset_size: 240478 - config_name: play_dialog_same_or_different_zero_shot features: - name: idx dtype: int32 - name: inputs dtype: string - name: targets sequence: string - name: multiple_choice_targets sequence: string - name: multiple_choice_scores sequence: int32 splits: - name: default num_bytes: 3142468 num_examples: 3264 - name: train num_bytes: 2516052 num_examples: 2612 - name: validation num_bytes: 626416 num_examples: 652 download_size: 1710264 dataset_size: 6284936 - config_name: polish_sequence_labeling_zero_shot features: - name: idx dtype: int32 - name: inputs dtype: string - name: targets sequence: string - name: multiple_choice_targets sequence: string - name: multiple_choice_scores sequence: int32 splits: - name: default num_bytes: 18081112 num_examples: 12812 - name: train num_bytes: 14470720 num_examples: 10250 - name: validation num_bytes: 3610392 num_examples: 2562 download_size: 5242934 dataset_size: 36162224 - config_name: presuppositions_as_nli_zero_shot features: - name: idx dtype: int32 - name: inputs dtype: string - name: targets sequence: string - name: multiple_choice_targets sequence: string - name: multiple_choice_scores sequence: int32 splits: - name: default num_bytes: 502522 num_examples: 735 - name: train num_bytes: 400761 num_examples: 588 - name: validation num_bytes: 101761 num_examples: 147 download_size: 240065 dataset_size: 1005044 - config_name: qa_wikidata_zero_shot features: - name: idx dtype: int32 - name: inputs dtype: string - name: targets sequence: string - name: multiple_choice_targets sequence: string - name: multiple_choice_scores sequence: int32 splits: - name: default num_bytes: 1419042 num_examples: 20321 - name: train num_bytes: 1134918 num_examples: 16257 - name: validation num_bytes: 284124 num_examples: 4064 download_size: 1181835 dataset_size: 2838084 - config_name: question_selection_zero_shot features: - name: idx dtype: int32 - name: inputs dtype: string - name: targets sequence: string - name: multiple_choice_targets sequence: string - name: multiple_choice_scores sequence: int32 splits: - name: default num_bytes: 2487181 num_examples: 1582 - name: train num_bytes: 1990094 num_examples: 1266 - name: validation num_bytes: 497087 num_examples: 316 download_size: 1804283 dataset_size: 4974362 - config_name: real_or_fake_text_zero_shot features: - name: idx dtype: int32 - name: inputs dtype: string - name: targets sequence: string - name: multiple_choice_targets sequence: string - name: multiple_choice_scores sequence: int32 splits: - name: default num_bytes: 53663318 num_examples: 15088 - name: train num_bytes: 42879846 num_examples: 12072 - name: validation num_bytes: 10783472 num_examples: 3016 download_size: 47399045 dataset_size: 107326636 - config_name: reasoning_about_colored_objects_zero_shot features: - name: idx dtype: int32 - name: inputs dtype: string - name: targets sequence: string - name: multiple_choice_targets sequence: string - name: multiple_choice_scores sequence: int32 splits: - name: default num_bytes: 907474 num_examples: 2000 - name: train num_bytes: 729609 num_examples: 1600 - name: validation num_bytes: 177865 num_examples: 400 download_size: 273263 dataset_size: 1814948 - config_name: repeat_copy_logic_zero_shot features: - name: idx dtype: int32 - name: inputs dtype: string - name: targets sequence: string - name: multiple_choice_targets sequence: string - name: multiple_choice_scores sequence: int32 splits: - name: default num_bytes: 6678 num_examples: 32 - name: train num_bytes: 3327 num_examples: 16 - name: validation num_bytes: 3351 num_examples: 16 download_size: 18315 dataset_size: 13356 - config_name: rephrase_zero_shot features: - name: idx dtype: int32 - name: inputs dtype: string - name: targets sequence: string - name: multiple_choice_targets sequence: string - name: multiple_choice_scores sequence: int32 splits: - name: default num_bytes: 34222 num_examples: 78 - name: train num_bytes: 27360 num_examples: 62 - name: validation num_bytes: 6862 num_examples: 16 download_size: 41102 dataset_size: 68444 - config_name: riddle_sense_zero_shot features: - name: idx dtype: int32 - name: inputs dtype: string - name: targets sequence: string - name: multiple_choice_targets sequence: string - name: multiple_choice_scores sequence: int32 splits: - name: default num_bytes: 15507 num_examples: 49 - name: train num_bytes: 10741 num_examples: 33 - name: validation num_bytes: 4766 num_examples: 16 download_size: 32496 dataset_size: 31014 - config_name: ruin_names_zero_shot features: - name: idx dtype: int32 - name: inputs dtype: string - name: targets sequence: string - name: multiple_choice_targets sequence: string - name: multiple_choice_scores sequence: int32 splits: - name: default num_bytes: 144087 num_examples: 448 - name: train num_bytes: 115171 num_examples: 359 - name: validation num_bytes: 28916 num_examples: 89 download_size: 118193 dataset_size: 288174 - config_name: salient_translation_error_detection_zero_shot features: - name: idx dtype: int32 - name: inputs dtype: string - name: targets sequence: string - name: multiple_choice_targets sequence: string - name: multiple_choice_scores sequence: int32 splits: - name: default num_bytes: 1141626 num_examples: 998 - name: train num_bytes: 912819 num_examples: 799 - name: validation num_bytes: 228807 num_examples: 199 download_size: 413634 dataset_size: 2283252 - config_name: scientific_press_release_zero_shot features: - name: idx dtype: int32 - name: inputs dtype: string - name: targets sequence: string - name: multiple_choice_targets sequence: string - name: multiple_choice_scores sequence: int32 splits: - name: default num_bytes: 13690 num_examples: 50 - name: train num_bytes: 9254 num_examples: 34 - name: validation num_bytes: 4436 num_examples: 16 download_size: 27293 dataset_size: 27380 - config_name: semantic_parsing_in_context_sparc_zero_shot features: - name: idx dtype: int32 - name: inputs dtype: string - name: targets sequence: string - name: multiple_choice_targets sequence: string - name: multiple_choice_scores sequence: int32 splits: - name: default num_bytes: 1524852 num_examples: 1155 - name: train num_bytes: 1248391 num_examples: 924 - name: validation num_bytes: 276461 num_examples: 231 download_size: 440326 dataset_size: 3049704 - config_name: semantic_parsing_spider_zero_shot features: - name: idx dtype: int32 - name: inputs dtype: string - name: targets sequence: string - name: multiple_choice_targets sequence: string - name: multiple_choice_scores sequence: int32 splits: - name: default num_bytes: 1265744 num_examples: 1034 - name: train num_bytes: 973864 num_examples: 828 - name: validation num_bytes: 291880 num_examples: 206 download_size: 358276 dataset_size: 2531488 - config_name: sentence_ambiguity_zero_shot features: - name: idx dtype: int32 - name: inputs dtype: string - name: targets sequence: string - name: multiple_choice_targets sequence: string - name: multiple_choice_scores sequence: int32 splits: - name: default num_bytes: 8168 num_examples: 60 - name: train num_bytes: 5976 num_examples: 44 - name: validation num_bytes: 2192 num_examples: 16 download_size: 18275 dataset_size: 16336 - config_name: similarities_abstraction_zero_shot features: - name: idx dtype: int32 - name: inputs dtype: string - name: targets sequence: string - name: multiple_choice_targets sequence: string - name: multiple_choice_scores sequence: int32 splits: - name: default num_bytes: 23416 num_examples: 76 - name: train num_bytes: 18545 num_examples: 60 - name: validation num_bytes: 4871 num_examples: 16 download_size: 31521 dataset_size: 46832 - config_name: simp_turing_concept_zero_shot features: - name: idx dtype: int32 - name: inputs dtype: string - name: targets sequence: string - name: multiple_choice_targets sequence: string - name: multiple_choice_scores sequence: int32 splits: - name: default num_bytes: 1017646 num_examples: 6390 - name: train num_bytes: 813220 num_examples: 5112 - name: validation num_bytes: 204426 num_examples: 1278 download_size: 402574 dataset_size: 2035292 - config_name: simple_arithmetic_json_multiple_choice_zero_shot features: - name: idx dtype: int32 - name: inputs dtype: string - name: targets sequence: string - name: multiple_choice_targets sequence: string - name: multiple_choice_scores sequence: int32 splits: - name: default num_bytes: 924 num_examples: 8 - name: train num_bytes: 0 num_examples: 0 - name: validation num_bytes: 0 num_examples: 0 download_size: 7777 dataset_size: 924 - config_name: simple_arithmetic_json_subtasks_zero_shot features: - name: idx dtype: int32 - name: inputs dtype: string - name: targets sequence: string - name: multiple_choice_targets sequence: string - name: multiple_choice_scores sequence: int32 splits: - name: default num_bytes: 1145 num_examples: 30 - name: train num_bytes: 571 num_examples: 15 - name: validation num_bytes: 574 num_examples: 15 download_size: 10460 dataset_size: 2290 - config_name: simple_arithmetic_json_zero_shot features: - name: idx dtype: int32 - name: inputs dtype: string - name: targets sequence: string - name: multiple_choice_targets sequence: string - name: multiple_choice_scores sequence: int32 splits: - name: default num_bytes: 1145 num_examples: 30 - name: train num_bytes: 540 num_examples: 14 - name: validation num_bytes: 605 num_examples: 16 download_size: 10645 dataset_size: 2290 - config_name: simple_arithmetic_multiple_targets_json_zero_shot features: - name: idx dtype: int32 - name: inputs dtype: string - name: targets sequence: string - name: multiple_choice_targets sequence: string - name: multiple_choice_scores sequence: int32 splits: - name: default num_bytes: 414 num_examples: 10 - name: train num_bytes: 0 num_examples: 0 - name: validation num_bytes: 0 num_examples: 0 download_size: 7352 dataset_size: 414 - config_name: simple_ethical_questions_zero_shot features: - name: idx dtype: int32 - name: inputs dtype: string - name: targets sequence: string - name: multiple_choice_targets sequence: string - name: multiple_choice_scores sequence: int32 splits: - name: default num_bytes: 76518 num_examples: 115 - name: train num_bytes: 60275 num_examples: 92 - name: validation num_bytes: 16243 num_examples: 23 download_size: 81285 dataset_size: 153036 - config_name: simple_text_editing_zero_shot features: - name: idx dtype: int32 - name: inputs dtype: string - name: targets sequence: string - name: multiple_choice_targets sequence: string - name: multiple_choice_scores sequence: int32 splits: - name: default num_bytes: 27865 num_examples: 47 - name: train num_bytes: 18469 num_examples: 31 - name: validation num_bytes: 9396 num_examples: 16 download_size: 27100 dataset_size: 55730 - config_name: snarks_zero_shot features: - name: idx dtype: int32 - name: inputs dtype: string - name: targets sequence: string - name: multiple_choice_targets sequence: string - name: multiple_choice_scores sequence: int32 splits: - name: default num_bytes: 45717 num_examples: 181 - name: train num_bytes: 36989 num_examples: 145 - name: validation num_bytes: 8728 num_examples: 36 download_size: 45434 dataset_size: 91434 - config_name: social_iqa_zero_shot features: - name: idx dtype: int32 - name: inputs dtype: string - name: targets sequence: string - name: multiple_choice_targets sequence: string - name: multiple_choice_scores sequence: int32 splits: - name: default num_bytes: 643162 num_examples: 1935 - name: train num_bytes: 515686 num_examples: 1548 - name: validation num_bytes: 127476 num_examples: 387 download_size: 684043 dataset_size: 1286324 - config_name: social_support_zero_shot features: - name: idx dtype: int32 - name: inputs dtype: string - name: targets sequence: string - name: multiple_choice_targets sequence: string - name: multiple_choice_scores sequence: int32 splits: - name: default num_bytes: 366705 num_examples: 897 - name: train num_bytes: 294793 num_examples: 718 - name: validation num_bytes: 71912 num_examples: 179 download_size: 288867 dataset_size: 733410 - config_name: sports_understanding_zero_shot features: - name: idx dtype: int32 - name: inputs dtype: string - name: targets sequence: string - name: multiple_choice_targets sequence: string - name: multiple_choice_scores sequence: int32 splits: - name: default num_bytes: 226654 num_examples: 986 - name: train num_bytes: 181328 num_examples: 789 - name: validation num_bytes: 45326 num_examples: 197 download_size: 82415 dataset_size: 453308 - config_name: strange_stories_zero_shot features: - name: idx dtype: int32 - name: inputs dtype: string - name: targets sequence: string - name: multiple_choice_targets sequence: string - name: multiple_choice_scores sequence: int32 splits: - name: default num_bytes: 120500 num_examples: 174 - name: train num_bytes: 98055 num_examples: 140 - name: validation num_bytes: 22445 num_examples: 34 download_size: 106428 dataset_size: 241000 - config_name: strategyqa_zero_shot features: - name: idx dtype: int32 - name: inputs dtype: string - name: targets sequence: string - name: multiple_choice_targets sequence: string - name: multiple_choice_scores sequence: int32 splits: - name: default num_bytes: 659967 num_examples: 2289 - name: train num_bytes: 527670 num_examples: 1832 - name: validation num_bytes: 132297 num_examples: 457 download_size: 814405 dataset_size: 1319934 - config_name: sufficient_information_zero_shot features: - name: idx dtype: int32 - name: inputs dtype: string - name: targets sequence: string - name: multiple_choice_targets sequence: string - name: multiple_choice_scores sequence: int32 splits: - name: default num_bytes: 9425 num_examples: 39 - name: train num_bytes: 5594 num_examples: 23 - name: validation num_bytes: 3831 num_examples: 16 download_size: 17766 dataset_size: 18850 - config_name: suicide_risk_zero_shot features: - name: idx dtype: int32 - name: inputs dtype: string - name: targets sequence: string - name: multiple_choice_targets sequence: string - name: multiple_choice_scores sequence: int32 splits: - name: default num_bytes: 37952 num_examples: 40 - name: train num_bytes: 23067 num_examples: 24 - name: validation num_bytes: 14885 num_examples: 16 download_size: 60518 dataset_size: 75904 - config_name: swahili_english_proverbs_zero_shot features: - name: idx dtype: int32 - name: inputs dtype: string - name: targets sequence: string - name: multiple_choice_targets sequence: string - name: multiple_choice_scores sequence: int32 splits: - name: default num_bytes: 90246 num_examples: 153 - name: train num_bytes: 72467 num_examples: 123 - name: validation num_bytes: 17779 num_examples: 30 download_size: 95186 dataset_size: 180492 - config_name: swedish_to_german_proverbs_zero_shot features: - name: idx dtype: int32 - name: inputs dtype: string - name: targets sequence: string - name: multiple_choice_targets sequence: string - name: multiple_choice_scores sequence: int32 splits: - name: default num_bytes: 35204 num_examples: 72 - name: train num_bytes: 27266 num_examples: 56 - name: validation num_bytes: 7938 num_examples: 16 download_size: 55102 dataset_size: 70408 - config_name: symbol_interpretation_zero_shot features: - name: idx dtype: int32 - name: inputs dtype: string - name: targets sequence: string - name: multiple_choice_targets sequence: string - name: multiple_choice_scores sequence: int32 splits: - name: default num_bytes: 1148958 num_examples: 990 - name: train num_bytes: 927326 num_examples: 795 - name: validation num_bytes: 221632 num_examples: 195 download_size: 320412 dataset_size: 2297916 - config_name: temporal_sequences_zero_shot features: - name: idx dtype: int32 - name: inputs dtype: string - name: targets sequence: string - name: multiple_choice_targets sequence: string - name: multiple_choice_scores sequence: int32 splits: - name: default num_bytes: 687086 num_examples: 1000 - name: train num_bytes: 549808 num_examples: 800 - name: validation num_bytes: 137278 num_examples: 200 download_size: 295316 dataset_size: 1374172 - config_name: tense_zero_shot features: - name: idx dtype: int32 - name: inputs dtype: string - name: targets sequence: string - name: multiple_choice_targets sequence: string - name: multiple_choice_scores sequence: int32 splits: - name: default num_bytes: 43882 num_examples: 286 - name: train num_bytes: 35466 num_examples: 229 - name: validation num_bytes: 8416 num_examples: 57 download_size: 51466 dataset_size: 87764 - config_name: timedial_zero_shot features: - name: idx dtype: int32 - name: inputs dtype: string - name: targets sequence: string - name: multiple_choice_targets sequence: string - name: multiple_choice_scores sequence: int32 splits: - name: default num_bytes: 2763178 num_examples: 2550 - name: train num_bytes: 2217190 num_examples: 2040 - name: validation num_bytes: 545988 num_examples: 510 download_size: 2444115 dataset_size: 5526356 - config_name: topical_chat_zero_shot features: - name: idx dtype: int32 - name: inputs dtype: string - name: targets sequence: string - name: multiple_choice_targets sequence: string - name: multiple_choice_scores sequence: int32 splits: - name: default num_bytes: 30927758 num_examples: 22295 - name: train num_bytes: 24827254 num_examples: 17836 - name: validation num_bytes: 6100504 num_examples: 4459 download_size: 23505731 dataset_size: 61855516 - config_name: tracking_shuffled_objects_zero_shot features: - name: idx dtype: int32 - name: inputs dtype: string - name: targets sequence: string - name: multiple_choice_targets sequence: string - name: multiple_choice_scores sequence: int32 splits: - name: default num_bytes: 2775972 num_examples: 3750 - name: train num_bytes: 2224037 num_examples: 3000 - name: validation num_bytes: 551935 num_examples: 750 download_size: 738413 dataset_size: 5551944 - config_name: understanding_fables_zero_shot features: - name: idx dtype: int32 - name: inputs dtype: string - name: targets sequence: string - name: multiple_choice_targets sequence: string - name: multiple_choice_scores sequence: int32 splits: - name: default num_bytes: 227748 num_examples: 189 - name: train num_bytes: 181000 num_examples: 152 - name: validation num_bytes: 46748 num_examples: 37 download_size: 237036 dataset_size: 455496 - config_name: undo_permutation_zero_shot features: - name: idx dtype: int32 - name: inputs dtype: string - name: targets sequence: string - name: multiple_choice_targets sequence: string - name: multiple_choice_scores sequence: int32 splits: - name: default num_bytes: 196118 num_examples: 300 - name: train num_bytes: 158562 num_examples: 240 - name: validation num_bytes: 37556 num_examples: 60 download_size: 137204 dataset_size: 392236 - config_name: unit_conversion_zero_shot features: - name: idx dtype: int32 - name: inputs dtype: string - name: targets sequence: string - name: multiple_choice_targets sequence: string - name: multiple_choice_scores sequence: int32 splits: - name: default num_bytes: 4028628 num_examples: 23936 - name: train num_bytes: 3230357 num_examples: 19151 - name: validation num_bytes: 798271 num_examples: 4785 download_size: 3208622 dataset_size: 8057256 - config_name: unit_interpretation_zero_shot features: - name: idx dtype: int32 - name: inputs dtype: string - name: targets sequence: string - name: multiple_choice_targets sequence: string - name: multiple_choice_scores sequence: int32 splits: - name: default num_bytes: 37363 num_examples: 100 - name: train num_bytes: 29939 num_examples: 80 - name: validation num_bytes: 7424 num_examples: 20 download_size: 34926 dataset_size: 74726 - config_name: unnatural_in_context_learning_zero_shot features: - name: idx dtype: int32 - name: inputs dtype: string - name: targets sequence: string - name: multiple_choice_targets sequence: string - name: multiple_choice_scores sequence: int32 splits: - name: default num_bytes: 4599760 num_examples: 73420 - name: train num_bytes: 3679822 num_examples: 58736 - name: validation num_bytes: 919938 num_examples: 14684 download_size: 3840657 dataset_size: 9199520 - config_name: vitaminc_fact_verification_zero_shot features: - name: idx dtype: int32 - name: inputs dtype: string - name: targets sequence: string - name: multiple_choice_targets sequence: string - name: multiple_choice_scores sequence: int32 splits: - name: default num_bytes: 32361818 num_examples: 54668 - name: train num_bytes: 25889850 num_examples: 43735 - name: validation num_bytes: 6471968 num_examples: 10933 download_size: 14264790 dataset_size: 64723636 - config_name: what_is_the_tao_zero_shot features: - name: idx dtype: int32 - name: inputs dtype: string - name: targets sequence: string - name: multiple_choice_targets sequence: string - name: multiple_choice_scores sequence: int32 splits: - name: default num_bytes: 13268 num_examples: 36 - name: train num_bytes: 7435 num_examples: 20 - name: validation num_bytes: 5833 num_examples: 16 download_size: 27585 dataset_size: 26536 - config_name: which_wiki_edit_zero_shot features: - name: idx dtype: int32 - name: inputs dtype: string - name: targets sequence: string - name: multiple_choice_targets sequence: string - name: multiple_choice_scores sequence: int32 splits: - name: default num_bytes: 6331683 num_examples: 571 - name: train num_bytes: 5233870 num_examples: 457 - name: validation num_bytes: 1097813 num_examples: 114 download_size: 3914574 dataset_size: 12663366 - config_name: winowhy_zero_shot features: - name: idx dtype: int32 - name: inputs dtype: string - name: targets sequence: string - name: multiple_choice_targets sequence: string - name: multiple_choice_scores sequence: int32 splits: - name: default num_bytes: 1002434 num_examples: 2862 - name: train num_bytes: 800520 num_examples: 2290 - name: validation num_bytes: 201914 num_examples: 572 download_size: 449218 dataset_size: 2004868 - config_name: word_sorting_zero_shot features: - name: idx dtype: int32 - name: inputs dtype: string - name: targets sequence: string - name: multiple_choice_targets sequence: string - name: multiple_choice_scores sequence: int32 splits: - name: default num_bytes: 491054 num_examples: 1900 - name: train num_bytes: 392738 num_examples: 1520 - name: validation num_bytes: 98316 num_examples: 380 download_size: 641536 dataset_size: 982108 - config_name: word_unscrambling_zero_shot features: - name: idx dtype: int32 - name: inputs dtype: string - name: targets sequence: string - name: multiple_choice_targets sequence: string - name: multiple_choice_scores sequence: int32 splits: - name: default num_bytes: 882364 num_examples: 8917 - name: train num_bytes: 705755 num_examples: 7134 - name: validation num_bytes: 176609 num_examples: 1783 download_size: 563799 dataset_size: 1764728 configs: - config_name: abstract_narrative_understanding_zero_shot data_files: - split: default path: abstract_narrative_understanding_zero_shot/default-* - split: train path: abstract_narrative_understanding_zero_shot/train-* - split: validation path: abstract_narrative_understanding_zero_shot/validation-* - config_name: anachronisms_zero_shot data_files: - split: default path: anachronisms_zero_shot/default-* - split: train path: anachronisms_zero_shot/train-* - split: validation path: anachronisms_zero_shot/validation-* - config_name: analogical_similarity_zero_shot data_files: - split: default path: analogical_similarity_zero_shot/default-* - split: train path: analogical_similarity_zero_shot/train-* - split: validation path: analogical_similarity_zero_shot/validation-* - config_name: analytic_entailment_zero_shot data_files: - split: default path: analytic_entailment_zero_shot/default-* - split: train path: analytic_entailment_zero_shot/train-* - split: validation path: analytic_entailment_zero_shot/validation-* - config_name: arithmetic_zero_shot data_files: - split: default path: arithmetic_zero_shot/default-* - split: train path: arithmetic_zero_shot/train-* - split: validation path: arithmetic_zero_shot/validation-* - config_name: ascii_word_recognition_zero_shot data_files: - split: default path: ascii_word_recognition_zero_shot/default-* - split: train path: ascii_word_recognition_zero_shot/train-* - split: validation path: ascii_word_recognition_zero_shot/validation-* - config_name: authorship_verification_zero_shot data_files: - split: default path: authorship_verification_zero_shot/default-* - split: train path: authorship_verification_zero_shot/train-* - split: validation path: authorship_verification_zero_shot/validation-* - config_name: auto_categorization_zero_shot data_files: - split: default path: auto_categorization_zero_shot/default-* - split: train path: auto_categorization_zero_shot/train-* - split: validation path: auto_categorization_zero_shot/validation-* - config_name: auto_debugging_zero_shot data_files: - split: default path: auto_debugging_zero_shot/default-* - split: train path: auto_debugging_zero_shot/train-* - split: validation path: auto_debugging_zero_shot/validation-* - config_name: bbq_lite_json_zero_shot data_files: - split: default path: bbq_lite_json_zero_shot/default-* - split: train path: bbq_lite_json_zero_shot/train-* - split: validation path: bbq_lite_json_zero_shot/validation-* - config_name: bridging_anaphora_resolution_barqa_zero_shot data_files: - split: default path: bridging_anaphora_resolution_barqa_zero_shot/default-* - split: train path: bridging_anaphora_resolution_barqa_zero_shot/train-* - split: validation path: bridging_anaphora_resolution_barqa_zero_shot/validation-* - config_name: causal_judgment_zero_shot data_files: - split: default path: causal_judgment_zero_shot/default-* - split: train path: causal_judgment_zero_shot/train-* - split: validation path: causal_judgment_zero_shot/validation-* - config_name: cause_and_effect_zero_shot data_files: - split: default path: cause_and_effect_zero_shot/default-* - split: train path: cause_and_effect_zero_shot/train-* - split: validation path: cause_and_effect_zero_shot/validation-* - config_name: checkmate_in_one_zero_shot data_files: - split: default path: checkmate_in_one_zero_shot/default-* - split: train path: checkmate_in_one_zero_shot/train-* - split: validation path: checkmate_in_one_zero_shot/validation-* - config_name: chess_state_tracking_zero_shot data_files: - split: default path: chess_state_tracking_zero_shot/default-* - split: train path: chess_state_tracking_zero_shot/train-* - split: validation path: chess_state_tracking_zero_shot/validation-* - config_name: chinese_remainder_theorem_zero_shot data_files: - split: default path: chinese_remainder_theorem_zero_shot/default-* - split: train path: chinese_remainder_theorem_zero_shot/train-* - split: validation path: chinese_remainder_theorem_zero_shot/validation-* - config_name: cifar10_classification_zero_shot data_files: - split: default path: cifar10_classification_zero_shot/default-* - split: train path: cifar10_classification_zero_shot/train-* - split: validation path: cifar10_classification_zero_shot/validation-* - config_name: code_line_description_zero_shot data_files: - split: default path: code_line_description_zero_shot/default-* - split: train path: code_line_description_zero_shot/train-* - split: validation path: code_line_description_zero_shot/validation-* - config_name: codenames_zero_shot data_files: - split: default path: codenames_zero_shot/default-* - split: train path: codenames_zero_shot/train-* - split: validation path: codenames_zero_shot/validation-* - config_name: color_zero_shot data_files: - split: default path: color_zero_shot/default-* - split: train path: color_zero_shot/train-* - split: validation path: color_zero_shot/validation-* - config_name: common_morpheme_zero_shot data_files: - split: default path: common_morpheme_zero_shot/default-* - split: train path: common_morpheme_zero_shot/train-* - split: validation path: common_morpheme_zero_shot/validation-* - config_name: conceptual_combinations_zero_shot data_files: - split: default path: conceptual_combinations_zero_shot/default-* - split: train path: conceptual_combinations_zero_shot/train-* - split: validation path: conceptual_combinations_zero_shot/validation-* - config_name: conlang_translation_zero_shot data_files: - split: default path: conlang_translation_zero_shot/default-* - split: train path: conlang_translation_zero_shot/train-* - split: validation path: conlang_translation_zero_shot/validation-* - config_name: contextual_parametric_knowledge_conflicts_zero_shot data_files: - split: default path: contextual_parametric_knowledge_conflicts_zero_shot/default-* - split: train path: contextual_parametric_knowledge_conflicts_zero_shot/train-* - split: validation path: contextual_parametric_knowledge_conflicts_zero_shot/validation-* - config_name: crash_blossom_zero_shot data_files: - split: default path: crash_blossom_zero_shot/default-* - split: train path: crash_blossom_zero_shot/train-* - split: validation path: crash_blossom_zero_shot/validation-* - config_name: crass_ai_zero_shot data_files: - split: default path: crass_ai_zero_shot/default-* - split: train path: crass_ai_zero_shot/train-* - split: validation path: crass_ai_zero_shot/validation-* - config_name: cryobiology_spanish_zero_shot data_files: - split: default path: cryobiology_spanish_zero_shot/default-* - split: train path: cryobiology_spanish_zero_shot/train-* - split: validation path: cryobiology_spanish_zero_shot/validation-* - config_name: cryptonite_zero_shot data_files: - split: default path: cryptonite_zero_shot/default-* - split: train path: cryptonite_zero_shot/train-* - split: validation path: cryptonite_zero_shot/validation-* - config_name: cs_algorithms_zero_shot data_files: - split: default path: cs_algorithms_zero_shot/default-* - split: train path: cs_algorithms_zero_shot/train-* - split: validation path: cs_algorithms_zero_shot/validation-* - config_name: dark_humor_detection_zero_shot data_files: - split: default path: dark_humor_detection_zero_shot/default-* - split: train path: dark_humor_detection_zero_shot/train-* - split: validation path: dark_humor_detection_zero_shot/validation-* - config_name: date_understanding_zero_shot data_files: - split: default path: date_understanding_zero_shot/default-* - split: train path: date_understanding_zero_shot/train-* - split: validation path: date_understanding_zero_shot/validation-* - config_name: disambiguation_qa_zero_shot data_files: - split: default path: disambiguation_qa_zero_shot/default-* - split: train path: disambiguation_qa_zero_shot/train-* - split: validation path: disambiguation_qa_zero_shot/validation-* - config_name: discourse_marker_prediction_zero_shot data_files: - split: default path: discourse_marker_prediction_zero_shot/default-* - split: train path: discourse_marker_prediction_zero_shot/train-* - split: validation path: discourse_marker_prediction_zero_shot/validation-* - config_name: disfl_qa_zero_shot data_files: - split: default path: disfl_qa_zero_shot/default-* - split: train path: disfl_qa_zero_shot/train-* - split: validation path: disfl_qa_zero_shot/validation-* - config_name: dyck_languages_zero_shot data_files: - split: default path: dyck_languages_zero_shot/default-* - split: train path: dyck_languages_zero_shot/train-* - split: validation path: dyck_languages_zero_shot/validation-* - config_name: elementary_math_qa_zero_shot data_files: - split: default path: elementary_math_qa_zero_shot/default-* - split: train path: elementary_math_qa_zero_shot/train-* - split: validation path: elementary_math_qa_zero_shot/validation-* - config_name: emoji_movie_zero_shot data_files: - split: default path: emoji_movie_zero_shot/default-* - split: train path: emoji_movie_zero_shot/train-* - split: validation path: emoji_movie_zero_shot/validation-* - config_name: emojis_emotion_prediction_zero_shot data_files: - split: default path: emojis_emotion_prediction_zero_shot/default-* - split: train path: emojis_emotion_prediction_zero_shot/train-* - split: validation path: emojis_emotion_prediction_zero_shot/validation-* - config_name: empirical_judgments_zero_shot data_files: - split: default path: empirical_judgments_zero_shot/default-* - split: train path: empirical_judgments_zero_shot/train-* - split: validation path: empirical_judgments_zero_shot/validation-* - config_name: english_proverbs_zero_shot data_files: - split: default path: english_proverbs_zero_shot/default-* - split: train path: english_proverbs_zero_shot/train-* - split: validation path: english_proverbs_zero_shot/validation-* - config_name: english_russian_proverbs_zero_shot data_files: - split: default path: english_russian_proverbs_zero_shot/default-* - split: train path: english_russian_proverbs_zero_shot/train-* - split: validation path: english_russian_proverbs_zero_shot/validation-* - config_name: entailed_polarity_hindi_zero_shot data_files: - split: default path: entailed_polarity_hindi_zero_shot/default-* - split: train path: entailed_polarity_hindi_zero_shot/train-* - split: validation path: entailed_polarity_hindi_zero_shot/validation-* - config_name: entailed_polarity_zero_shot data_files: - split: default path: entailed_polarity_zero_shot/default-* - split: train path: entailed_polarity_zero_shot/train-* - split: validation path: entailed_polarity_zero_shot/validation-* - config_name: epistemic_reasoning_zero_shot data_files: - split: default path: epistemic_reasoning_zero_shot/default-* - split: train path: epistemic_reasoning_zero_shot/train-* - split: validation path: epistemic_reasoning_zero_shot/validation-* - config_name: evaluating_information_essentiality_zero_shot data_files: - split: default path: evaluating_information_essentiality_zero_shot/default-* - split: train path: evaluating_information_essentiality_zero_shot/train-* - split: validation path: evaluating_information_essentiality_zero_shot/validation-* - config_name: fact_checker_zero_shot data_files: - split: default path: fact_checker_zero_shot/default-* - split: train path: fact_checker_zero_shot/train-* - split: validation path: fact_checker_zero_shot/validation-* - config_name: fantasy_reasoning_zero_shot data_files: - split: default path: fantasy_reasoning_zero_shot/default-* - split: train path: fantasy_reasoning_zero_shot/train-* - split: validation path: fantasy_reasoning_zero_shot/validation-* - config_name: few_shot_nlg_zero_shot data_files: - split: default path: few_shot_nlg_zero_shot/default-* - split: train path: few_shot_nlg_zero_shot/train-* - split: validation path: few_shot_nlg_zero_shot/validation-* - config_name: figure_of_speech_detection_zero_shot data_files: - split: default path: figure_of_speech_detection_zero_shot/default-* - split: train path: figure_of_speech_detection_zero_shot/train-* - split: validation path: figure_of_speech_detection_zero_shot/validation-* - config_name: formal_fallacies_syllogisms_negation_zero_shot data_files: - split: default path: formal_fallacies_syllogisms_negation_zero_shot/default-* - split: train path: formal_fallacies_syllogisms_negation_zero_shot/train-* - split: validation path: formal_fallacies_syllogisms_negation_zero_shot/validation-* - config_name: gem_zero_shot data_files: - split: default path: gem_zero_shot/default-* - split: train path: gem_zero_shot/train-* - split: validation path: gem_zero_shot/validation-* - config_name: gender_inclusive_sentences_german_zero_shot data_files: - split: default path: gender_inclusive_sentences_german_zero_shot/default-* - split: train path: gender_inclusive_sentences_german_zero_shot/train-* - split: validation path: gender_inclusive_sentences_german_zero_shot/validation-* - config_name: general_knowledge_zero_shot data_files: - split: default path: general_knowledge_zero_shot/default-* - split: train path: general_knowledge_zero_shot/train-* - split: validation path: general_knowledge_zero_shot/validation-* - config_name: geometric_shapes_zero_shot data_files: - split: default path: geometric_shapes_zero_shot/default-* - split: train path: geometric_shapes_zero_shot/train-* - split: validation path: geometric_shapes_zero_shot/validation-* - config_name: goal_step_wikihow_zero_shot data_files: - split: default path: goal_step_wikihow_zero_shot/default-* - split: train path: goal_step_wikihow_zero_shot/train-* - split: validation path: goal_step_wikihow_zero_shot/validation-* - config_name: gre_reading_comprehension_zero_shot data_files: - split: default path: gre_reading_comprehension_zero_shot/default-* - split: train path: gre_reading_comprehension_zero_shot/train-* - split: validation path: gre_reading_comprehension_zero_shot/validation-* - config_name: hhh_alignment_zero_shot data_files: - split: default path: hhh_alignment_zero_shot/default-* - split: train path: hhh_alignment_zero_shot/train-* - split: validation path: hhh_alignment_zero_shot/validation-* - config_name: hindi_question_answering_zero_shot data_files: - split: default path: hindi_question_answering_zero_shot/default-* - split: train path: hindi_question_answering_zero_shot/train-* - split: validation path: hindi_question_answering_zero_shot/validation-* - config_name: hindu_knowledge_zero_shot data_files: - split: default path: hindu_knowledge_zero_shot/default-* - split: train path: hindu_knowledge_zero_shot/train-* - split: validation path: hindu_knowledge_zero_shot/validation-* - config_name: hinglish_toxicity_zero_shot data_files: - split: default path: hinglish_toxicity_zero_shot/default-* - split: train path: hinglish_toxicity_zero_shot/train-* - split: validation path: hinglish_toxicity_zero_shot/validation-* - config_name: human_organs_senses_zero_shot data_files: - split: default path: human_organs_senses_zero_shot/default-* - split: train path: human_organs_senses_zero_shot/train-* - split: validation path: human_organs_senses_zero_shot/validation-* - config_name: hyperbaton_zero_shot data_files: - split: default path: hyperbaton_zero_shot/default-* - split: train path: hyperbaton_zero_shot/train-* - split: validation path: hyperbaton_zero_shot/validation-* - config_name: identify_math_theorems_zero_shot data_files: - split: default path: identify_math_theorems_zero_shot/default-* - split: train path: identify_math_theorems_zero_shot/train-* - split: validation path: identify_math_theorems_zero_shot/validation-* - config_name: identify_odd_metaphor_zero_shot data_files: - split: default path: identify_odd_metaphor_zero_shot/default-* - split: train path: identify_odd_metaphor_zero_shot/train-* - split: validation path: identify_odd_metaphor_zero_shot/validation-* - config_name: implicatures_zero_shot data_files: - split: default path: implicatures_zero_shot/default-* - split: train path: implicatures_zero_shot/train-* - split: validation path: implicatures_zero_shot/validation-* - config_name: implicit_relations_zero_shot data_files: - split: default path: implicit_relations_zero_shot/default-* - split: train path: implicit_relations_zero_shot/train-* - split: validation path: implicit_relations_zero_shot/validation-* - config_name: intent_recognition_zero_shot data_files: - split: default path: intent_recognition_zero_shot/default-* - split: train path: intent_recognition_zero_shot/train-* - split: validation path: intent_recognition_zero_shot/validation-* - config_name: international_phonetic_alphabet_nli_zero_shot data_files: - split: default path: international_phonetic_alphabet_nli_zero_shot/default-* - split: train path: international_phonetic_alphabet_nli_zero_shot/train-* - split: validation path: international_phonetic_alphabet_nli_zero_shot/validation-* - config_name: international_phonetic_alphabet_transliterate_zero_shot data_files: - split: default path: international_phonetic_alphabet_transliterate_zero_shot/default-* - split: train path: international_phonetic_alphabet_transliterate_zero_shot/train-* - split: validation path: international_phonetic_alphabet_transliterate_zero_shot/validation-* - config_name: intersect_geometry_zero_shot data_files: - split: default path: intersect_geometry_zero_shot/default-* - split: train path: intersect_geometry_zero_shot/train-* - split: validation path: intersect_geometry_zero_shot/validation-* - config_name: irony_identification_zero_shot data_files: - split: default path: irony_identification_zero_shot/default-* - split: train path: irony_identification_zero_shot/train-* - split: validation path: irony_identification_zero_shot/validation-* - config_name: kanji_ascii_zero_shot data_files: - split: default path: kanji_ascii_zero_shot/default-* - split: train path: kanji_ascii_zero_shot/train-* - split: validation path: kanji_ascii_zero_shot/validation-* - config_name: kannada_zero_shot data_files: - split: default path: kannada_zero_shot/default-* - split: train path: kannada_zero_shot/train-* - split: validation path: kannada_zero_shot/validation-* - config_name: key_value_maps_zero_shot data_files: - split: default path: key_value_maps_zero_shot/default-* - split: train path: key_value_maps_zero_shot/train-* - split: validation path: key_value_maps_zero_shot/validation-* - config_name: known_unknowns_zero_shot data_files: - split: default path: known_unknowns_zero_shot/default-* - split: train path: known_unknowns_zero_shot/train-* - split: validation path: known_unknowns_zero_shot/validation-* - config_name: language_games_zero_shot data_files: - split: default path: language_games_zero_shot/default-* - split: train path: language_games_zero_shot/train-* - split: validation path: language_games_zero_shot/validation-* - config_name: language_identification_zero_shot data_files: - split: default path: language_identification_zero_shot/default-* - split: train path: language_identification_zero_shot/train-* - split: validation path: language_identification_zero_shot/validation-* - config_name: linguistic_mappings_zero_shot data_files: - split: default path: linguistic_mappings_zero_shot/default-* - split: train path: linguistic_mappings_zero_shot/train-* - split: validation path: linguistic_mappings_zero_shot/validation-* - config_name: linguistics_puzzles_zero_shot data_files: - split: default path: linguistics_puzzles_zero_shot/default-* - split: train path: linguistics_puzzles_zero_shot/train-* - split: validation path: linguistics_puzzles_zero_shot/validation-* - config_name: list_functions_zero_shot data_files: - split: default path: list_functions_zero_shot/default-* - split: train path: list_functions_zero_shot/train-* - split: validation path: list_functions_zero_shot/validation-* - config_name: logic_grid_puzzle_zero_shot data_files: - split: default path: logic_grid_puzzle_zero_shot/default-* - split: train path: logic_grid_puzzle_zero_shot/train-* - split: validation path: logic_grid_puzzle_zero_shot/validation-* - config_name: logical_args_zero_shot data_files: - split: default path: logical_args_zero_shot/default-* - split: train path: logical_args_zero_shot/train-* - split: validation path: logical_args_zero_shot/validation-* - config_name: logical_deduction_zero_shot data_files: - split: default path: logical_deduction_zero_shot/default-* - split: train path: logical_deduction_zero_shot/train-* - split: validation path: logical_deduction_zero_shot/validation-* - config_name: logical_fallacy_detection_zero_shot data_files: - split: default path: logical_fallacy_detection_zero_shot/default-* - split: train path: logical_fallacy_detection_zero_shot/train-* - split: validation path: logical_fallacy_detection_zero_shot/validation-* - config_name: logical_sequence_zero_shot data_files: - split: default path: logical_sequence_zero_shot/default-* - split: train path: logical_sequence_zero_shot/train-* - split: validation path: logical_sequence_zero_shot/validation-* - config_name: mathematical_induction_zero_shot data_files: - split: default path: mathematical_induction_zero_shot/default-* - split: train path: mathematical_induction_zero_shot/train-* - split: validation path: mathematical_induction_zero_shot/validation-* - config_name: matrixshapes_zero_shot data_files: - split: default path: matrixshapes_zero_shot/default-* - split: train path: matrixshapes_zero_shot/train-* - split: validation path: matrixshapes_zero_shot/validation-* - config_name: metaphor_boolean_zero_shot data_files: - split: default path: metaphor_boolean_zero_shot/default-* - split: train path: metaphor_boolean_zero_shot/train-* - split: validation path: metaphor_boolean_zero_shot/validation-* - config_name: metaphor_understanding_zero_shot data_files: - split: default path: metaphor_understanding_zero_shot/default-* - split: train path: metaphor_understanding_zero_shot/train-* - split: validation path: metaphor_understanding_zero_shot/validation-* - config_name: minute_mysteries_qa_zero_shot data_files: - split: default path: minute_mysteries_qa_zero_shot/default-* - split: train path: minute_mysteries_qa_zero_shot/train-* - split: validation path: minute_mysteries_qa_zero_shot/validation-* - config_name: misconceptions_russian_zero_shot data_files: - split: default path: misconceptions_russian_zero_shot/default-* - split: train path: misconceptions_russian_zero_shot/train-* - split: validation path: misconceptions_russian_zero_shot/validation-* - config_name: misconceptions_zero_shot data_files: - split: default path: misconceptions_zero_shot/default-* - split: train path: misconceptions_zero_shot/train-* - split: validation path: misconceptions_zero_shot/validation-* - config_name: mnist_ascii_zero_shot data_files: - split: default path: mnist_ascii_zero_shot/default-* - split: train path: mnist_ascii_zero_shot/train-* - split: validation path: mnist_ascii_zero_shot/validation-* - config_name: modified_arithmetic_zero_shot data_files: - split: default path: modified_arithmetic_zero_shot/default-* - split: train path: modified_arithmetic_zero_shot/train-* - split: validation path: modified_arithmetic_zero_shot/validation-* - config_name: moral_permissibility_zero_shot data_files: - split: default path: moral_permissibility_zero_shot/default-* - split: train path: moral_permissibility_zero_shot/train-* - split: validation path: moral_permissibility_zero_shot/validation-* - config_name: movie_dialog_same_or_different_zero_shot data_files: - split: default path: movie_dialog_same_or_different_zero_shot/default-* - split: train path: movie_dialog_same_or_different_zero_shot/train-* - split: validation path: movie_dialog_same_or_different_zero_shot/validation-* - config_name: movie_recommendation_zero_shot data_files: - split: default path: movie_recommendation_zero_shot/default-* - split: train path: movie_recommendation_zero_shot/train-* - split: validation path: movie_recommendation_zero_shot/validation-* - config_name: mult_data_wrangling_zero_shot data_files: - split: default path: mult_data_wrangling_zero_shot/default-* - split: train path: mult_data_wrangling_zero_shot/train-* - split: validation path: mult_data_wrangling_zero_shot/validation-* - config_name: multiemo_zero_shot data_files: - split: default path: multiemo_zero_shot/default-* - split: train path: multiemo_zero_shot/train-* - split: validation path: multiemo_zero_shot/validation-* - config_name: natural_instructions_zero_shot data_files: - split: default path: natural_instructions_zero_shot/default-* - split: train path: natural_instructions_zero_shot/train-* - split: validation path: natural_instructions_zero_shot/validation-* - config_name: navigate_zero_shot data_files: - split: default path: navigate_zero_shot/default-* - split: train path: navigate_zero_shot/train-* - split: validation path: navigate_zero_shot/validation-* - config_name: nonsense_words_grammar_zero_shot data_files: - split: default path: nonsense_words_grammar_zero_shot/default-* - split: train path: nonsense_words_grammar_zero_shot/train-* - split: validation path: nonsense_words_grammar_zero_shot/validation-* - config_name: novel_concepts_zero_shot data_files: - split: default path: novel_concepts_zero_shot/default-* - split: train path: novel_concepts_zero_shot/train-* - split: validation path: novel_concepts_zero_shot/validation-* - config_name: object_counting_zero_shot data_files: - split: default path: object_counting_zero_shot/default-* - split: train path: object_counting_zero_shot/train-* - split: validation path: object_counting_zero_shot/validation-* - config_name: odd_one_out_zero_shot data_files: - split: default path: odd_one_out_zero_shot/default-* - split: train path: odd_one_out_zero_shot/train-* - split: validation path: odd_one_out_zero_shot/validation-* - config_name: operators_zero_shot data_files: - split: default path: operators_zero_shot/default-* - split: train path: operators_zero_shot/train-* - split: validation path: operators_zero_shot/validation-* - config_name: paragraph_segmentation_zero_shot data_files: - split: default path: paragraph_segmentation_zero_shot/default-* - split: train path: paragraph_segmentation_zero_shot/train-* - split: validation path: paragraph_segmentation_zero_shot/validation-* - config_name: parsinlu_qa_zero_shot data_files: - split: default path: parsinlu_qa_zero_shot/default-* - split: train path: parsinlu_qa_zero_shot/train-* - split: validation path: parsinlu_qa_zero_shot/validation-* - config_name: parsinlu_reading_comprehension_zero_shot data_files: - split: default path: parsinlu_reading_comprehension_zero_shot/default-* - split: train path: parsinlu_reading_comprehension_zero_shot/train-* - split: validation path: parsinlu_reading_comprehension_zero_shot/validation-* - config_name: penguins_in_a_table_zero_shot data_files: - split: default path: penguins_in_a_table_zero_shot/default-* - split: train path: penguins_in_a_table_zero_shot/train-* - split: validation path: penguins_in_a_table_zero_shot/validation-* - config_name: periodic_elements_zero_shot data_files: - split: default path: periodic_elements_zero_shot/default-* - split: train path: periodic_elements_zero_shot/train-* - split: validation path: periodic_elements_zero_shot/validation-* - config_name: persian_idioms_zero_shot data_files: - split: default path: persian_idioms_zero_shot/default-* - split: train path: persian_idioms_zero_shot/train-* - split: validation path: persian_idioms_zero_shot/validation-* - config_name: phrase_relatedness_zero_shot data_files: - split: default path: phrase_relatedness_zero_shot/default-* - split: train path: phrase_relatedness_zero_shot/train-* - split: validation path: phrase_relatedness_zero_shot/validation-* - config_name: physical_intuition_zero_shot data_files: - split: default path: physical_intuition_zero_shot/default-* - split: train path: physical_intuition_zero_shot/train-* - split: validation path: physical_intuition_zero_shot/validation-* - config_name: physics_questions_zero_shot data_files: - split: default path: physics_questions_zero_shot/default-* - split: train path: physics_questions_zero_shot/train-* - split: validation path: physics_questions_zero_shot/validation-* - config_name: physics_zero_shot data_files: - split: default path: physics_zero_shot/default-* - split: train path: physics_zero_shot/train-* - split: validation path: physics_zero_shot/validation-* - config_name: play_dialog_same_or_different_zero_shot data_files: - split: default path: play_dialog_same_or_different_zero_shot/default-* - split: train path: play_dialog_same_or_different_zero_shot/train-* - split: validation path: play_dialog_same_or_different_zero_shot/validation-* - config_name: polish_sequence_labeling_zero_shot data_files: - split: default path: polish_sequence_labeling_zero_shot/default-* - split: train path: polish_sequence_labeling_zero_shot/train-* - split: validation path: polish_sequence_labeling_zero_shot/validation-* - config_name: presuppositions_as_nli_zero_shot data_files: - split: default path: presuppositions_as_nli_zero_shot/default-* - split: train path: presuppositions_as_nli_zero_shot/train-* - split: validation path: presuppositions_as_nli_zero_shot/validation-* - config_name: qa_wikidata_zero_shot data_files: - split: default path: qa_wikidata_zero_shot/default-* - split: train path: qa_wikidata_zero_shot/train-* - split: validation path: qa_wikidata_zero_shot/validation-* - config_name: question_selection_zero_shot data_files: - split: default path: question_selection_zero_shot/default-* - split: train path: question_selection_zero_shot/train-* - split: validation path: question_selection_zero_shot/validation-* - config_name: real_or_fake_text_zero_shot data_files: - split: default path: real_or_fake_text_zero_shot/default-* - split: train path: real_or_fake_text_zero_shot/train-* - split: validation path: real_or_fake_text_zero_shot/validation-* - config_name: reasoning_about_colored_objects_zero_shot data_files: - split: default path: reasoning_about_colored_objects_zero_shot/default-* - split: train path: reasoning_about_colored_objects_zero_shot/train-* - split: validation path: reasoning_about_colored_objects_zero_shot/validation-* - config_name: repeat_copy_logic_zero_shot data_files: - split: default path: repeat_copy_logic_zero_shot/default-* - split: train path: repeat_copy_logic_zero_shot/train-* - split: validation path: repeat_copy_logic_zero_shot/validation-* - config_name: rephrase_zero_shot data_files: - split: default path: rephrase_zero_shot/default-* - split: train path: rephrase_zero_shot/train-* - split: validation path: rephrase_zero_shot/validation-* - config_name: riddle_sense_zero_shot data_files: - split: default path: riddle_sense_zero_shot/default-* - split: train path: riddle_sense_zero_shot/train-* - split: validation path: riddle_sense_zero_shot/validation-* - config_name: ruin_names_zero_shot data_files: - split: default path: ruin_names_zero_shot/default-* - split: train path: ruin_names_zero_shot/train-* - split: validation path: ruin_names_zero_shot/validation-* - config_name: salient_translation_error_detection_zero_shot data_files: - split: default path: salient_translation_error_detection_zero_shot/default-* - split: train path: salient_translation_error_detection_zero_shot/train-* - split: validation path: salient_translation_error_detection_zero_shot/validation-* - config_name: scientific_press_release_zero_shot data_files: - split: default path: scientific_press_release_zero_shot/default-* - split: train path: scientific_press_release_zero_shot/train-* - split: validation path: scientific_press_release_zero_shot/validation-* - config_name: semantic_parsing_in_context_sparc_zero_shot data_files: - split: default path: semantic_parsing_in_context_sparc_zero_shot/default-* - split: train path: semantic_parsing_in_context_sparc_zero_shot/train-* - split: validation path: semantic_parsing_in_context_sparc_zero_shot/validation-* - config_name: semantic_parsing_spider_zero_shot data_files: - split: default path: semantic_parsing_spider_zero_shot/default-* - split: train path: semantic_parsing_spider_zero_shot/train-* - split: validation path: semantic_parsing_spider_zero_shot/validation-* - config_name: sentence_ambiguity_zero_shot data_files: - split: default path: sentence_ambiguity_zero_shot/default-* - split: train path: sentence_ambiguity_zero_shot/train-* - split: validation path: sentence_ambiguity_zero_shot/validation-* - config_name: similarities_abstraction_zero_shot data_files: - split: default path: similarities_abstraction_zero_shot/default-* - split: train path: similarities_abstraction_zero_shot/train-* - split: validation path: similarities_abstraction_zero_shot/validation-* - config_name: simp_turing_concept_zero_shot data_files: - split: default path: simp_turing_concept_zero_shot/default-* - split: train path: simp_turing_concept_zero_shot/train-* - split: validation path: simp_turing_concept_zero_shot/validation-* - config_name: simple_arithmetic_json_multiple_choice_zero_shot data_files: - split: default path: simple_arithmetic_json_multiple_choice_zero_shot/default-* - split: train path: simple_arithmetic_json_multiple_choice_zero_shot/train-* - split: validation path: simple_arithmetic_json_multiple_choice_zero_shot/validation-* - config_name: simple_arithmetic_json_subtasks_zero_shot data_files: - split: default path: simple_arithmetic_json_subtasks_zero_shot/default-* - split: train path: simple_arithmetic_json_subtasks_zero_shot/train-* - split: validation path: simple_arithmetic_json_subtasks_zero_shot/validation-* - config_name: simple_arithmetic_json_zero_shot data_files: - split: default path: simple_arithmetic_json_zero_shot/default-* - split: train path: simple_arithmetic_json_zero_shot/train-* - split: validation path: simple_arithmetic_json_zero_shot/validation-* - config_name: simple_arithmetic_multiple_targets_json_zero_shot data_files: - split: default path: simple_arithmetic_multiple_targets_json_zero_shot/default-* - split: train path: simple_arithmetic_multiple_targets_json_zero_shot/train-* - split: validation path: simple_arithmetic_multiple_targets_json_zero_shot/validation-* - config_name: simple_ethical_questions_zero_shot data_files: - split: default path: simple_ethical_questions_zero_shot/default-* - split: train path: simple_ethical_questions_zero_shot/train-* - split: validation path: simple_ethical_questions_zero_shot/validation-* - config_name: simple_text_editing_zero_shot data_files: - split: default path: simple_text_editing_zero_shot/default-* - split: train path: simple_text_editing_zero_shot/train-* - split: validation path: simple_text_editing_zero_shot/validation-* - config_name: snarks_zero_shot data_files: - split: default path: snarks_zero_shot/default-* - split: train path: snarks_zero_shot/train-* - split: validation path: snarks_zero_shot/validation-* - config_name: social_iqa_zero_shot data_files: - split: default path: social_iqa_zero_shot/default-* - split: train path: social_iqa_zero_shot/train-* - split: validation path: social_iqa_zero_shot/validation-* - config_name: social_support_zero_shot data_files: - split: default path: social_support_zero_shot/default-* - split: train path: social_support_zero_shot/train-* - split: validation path: social_support_zero_shot/validation-* - config_name: sports_understanding_zero_shot data_files: - split: default path: sports_understanding_zero_shot/default-* - split: train path: sports_understanding_zero_shot/train-* - split: validation path: sports_understanding_zero_shot/validation-* - config_name: strange_stories_zero_shot data_files: - split: default path: strange_stories_zero_shot/default-* - split: train path: strange_stories_zero_shot/train-* - split: validation path: strange_stories_zero_shot/validation-* - config_name: strategyqa_zero_shot data_files: - split: default path: strategyqa_zero_shot/default-* - split: train path: strategyqa_zero_shot/train-* - split: validation path: strategyqa_zero_shot/validation-* - config_name: sufficient_information_zero_shot data_files: - split: default path: sufficient_information_zero_shot/default-* - split: train path: sufficient_information_zero_shot/train-* - split: validation path: sufficient_information_zero_shot/validation-* - config_name: suicide_risk_zero_shot data_files: - split: default path: suicide_risk_zero_shot/default-* - split: train path: suicide_risk_zero_shot/train-* - split: validation path: suicide_risk_zero_shot/validation-* - config_name: swahili_english_proverbs_zero_shot data_files: - split: default path: swahili_english_proverbs_zero_shot/default-* - split: train path: swahili_english_proverbs_zero_shot/train-* - split: validation path: swahili_english_proverbs_zero_shot/validation-* - config_name: swedish_to_german_proverbs_zero_shot data_files: - split: default path: swedish_to_german_proverbs_zero_shot/default-* - split: train path: swedish_to_german_proverbs_zero_shot/train-* - split: validation path: swedish_to_german_proverbs_zero_shot/validation-* - config_name: symbol_interpretation_zero_shot data_files: - split: default path: symbol_interpretation_zero_shot/default-* - split: train path: symbol_interpretation_zero_shot/train-* - split: validation path: symbol_interpretation_zero_shot/validation-* - config_name: temporal_sequences_zero_shot data_files: - split: default path: temporal_sequences_zero_shot/default-* - split: train path: temporal_sequences_zero_shot/train-* - split: validation path: temporal_sequences_zero_shot/validation-* - config_name: tense_zero_shot data_files: - split: default path: tense_zero_shot/default-* - split: train path: tense_zero_shot/train-* - split: validation path: tense_zero_shot/validation-* - config_name: timedial_zero_shot data_files: - split: default path: timedial_zero_shot/default-* - split: train path: timedial_zero_shot/train-* - split: validation path: timedial_zero_shot/validation-* - config_name: topical_chat_zero_shot data_files: - split: default path: topical_chat_zero_shot/default-* - split: train path: topical_chat_zero_shot/train-* - split: validation path: topical_chat_zero_shot/validation-* - config_name: tracking_shuffled_objects_zero_shot data_files: - split: default path: tracking_shuffled_objects_zero_shot/default-* - split: train path: tracking_shuffled_objects_zero_shot/train-* - split: validation path: tracking_shuffled_objects_zero_shot/validation-* - config_name: understanding_fables_zero_shot data_files: - split: default path: understanding_fables_zero_shot/default-* - split: train path: understanding_fables_zero_shot/train-* - split: validation path: understanding_fables_zero_shot/validation-* - config_name: undo_permutation_zero_shot data_files: - split: default path: undo_permutation_zero_shot/default-* - split: train path: undo_permutation_zero_shot/train-* - split: validation path: undo_permutation_zero_shot/validation-* - config_name: unit_conversion_zero_shot data_files: - split: default path: unit_conversion_zero_shot/default-* - split: train path: unit_conversion_zero_shot/train-* - split: validation path: unit_conversion_zero_shot/validation-* - config_name: unit_interpretation_zero_shot data_files: - split: default path: unit_interpretation_zero_shot/default-* - split: train path: unit_interpretation_zero_shot/train-* - split: validation path: unit_interpretation_zero_shot/validation-* - config_name: unnatural_in_context_learning_zero_shot data_files: - split: default path: unnatural_in_context_learning_zero_shot/default-* - split: train path: unnatural_in_context_learning_zero_shot/train-* - split: validation path: unnatural_in_context_learning_zero_shot/validation-* - config_name: vitaminc_fact_verification_zero_shot data_files: - split: default path: vitaminc_fact_verification_zero_shot/default-* - split: train path: vitaminc_fact_verification_zero_shot/train-* - split: validation path: vitaminc_fact_verification_zero_shot/validation-* - config_name: what_is_the_tao_zero_shot data_files: - split: default path: what_is_the_tao_zero_shot/default-* - split: train path: what_is_the_tao_zero_shot/train-* - split: validation path: what_is_the_tao_zero_shot/validation-* - config_name: which_wiki_edit_zero_shot data_files: - split: default path: which_wiki_edit_zero_shot/default-* - split: train path: which_wiki_edit_zero_shot/train-* - split: validation path: which_wiki_edit_zero_shot/validation-* - config_name: winowhy_zero_shot data_files: - split: default path: winowhy_zero_shot/default-* - split: train path: winowhy_zero_shot/train-* - split: validation path: winowhy_zero_shot/validation-* - config_name: word_sorting_zero_shot data_files: - split: default path: word_sorting_zero_shot/default-* - split: train path: word_sorting_zero_shot/train-* - split: validation path: word_sorting_zero_shot/validation-* - config_name: word_unscrambling_zero_shot data_files: - split: default path: word_unscrambling_zero_shot/default-* - split: train path: word_unscrambling_zero_shot/train-* - split: validation path: word_unscrambling_zero_shot/validation-* --- # Dataset Card for "bigbench" [More Information needed](https://github.com/huggingface/datasets/blob/main/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
[ -0.7927623987197876, -0.31135761737823486, 0.4142894148826599, 0.3828316330909729, -0.33006471395492554, -0.06354279816150665, 0.07452750951051712, -0.23491185903549194, 0.8768767714500427, 0.43017250299453735, -0.7592172622680664, -0.8279951810836792, -0.5297091603279114, -0.38947582244873047, -0.34417521953582764, 1.306247353553772, 0.12793177366256714, 0.060384903103113174, -0.326827734708786, -0.08958203345537186, -0.5202481746673584, -0.615942656993866, -0.6032906770706177, -0.5687950253486633, 1.0366382598876953, 0.679380476474762, 0.462904155254364, 0.42120540142059326, 0.8650231957435608, 0.19776545464992523, 0.003988456912338734, -0.5322607755661011, -0.4516761004924774, -0.028069833293557167, -0.5770350098609924, -0.4846077263355255, -1.0346461534500122, 0.10703103989362717, 0.6416857242584229, 0.5337468385696411, -0.326190322637558, 0.9364302754402161, -0.31750375032424927, 0.842406690120697, -0.49021413922309875, 0.7141149044036865, -0.029988152906298637, 0.09488555043935776, -0.7895920872688293, 0.018810251727700233, 0.17699842154979706, -0.4241027534008026, -0.39732322096824646, -0.8822267055511475, 0.11912617087364197, 0.14075279235839844, 0.8111070394515991, 0.26767975091934204, -0.07425470650196075, 0.14964303374290466, -0.593932569026947, 0.10470250248908997, -0.1883842647075653, 0.21389427781105042, 0.686385452747345, 0.7626997828483582, -0.0883367508649826, -0.692335307598114, -0.44957706332206726, 0.1118948832154274, 0.051568031311035156, 0.37184950709342957, 0.18879102170467377, 0.1319669932126999, 0.8533923029899597, 0.8245111703872681, -0.5015778541564941, 0.01784789189696312, -0.6931266188621521, -0.2709504961967468, 0.8120607137680054, 0.1766304224729538, 0.06943195313215256, -0.04768996685743332, -0.13501964509487152, -0.4711316227912903, -0.5201579332351685, -0.3390862047672272, 0.39780527353286743, 0.12415765225887299, -1.0894978046417236, 0.6439770460128784, 0.05748260021209717, 0.4117363691329956, 0.16727083921432495, 0.6435672640800476, 0.7425839304924011, -0.3230932950973511, -0.15106326341629028, 0.1336529403924942, 0.30100011825561523, 0.38692358136177063, -0.0040278988890349865, 0.11257923394441605, 0.0985056608915329, -0.11019720137119293, 0.10979810357093811, -1.3119367361068726, -0.7855552434921265, 0.39092472195625305, -0.665780782699585, -0.10207578539848328, 0.39836475253105164, -1.1479156017303467, -0.656933605670929, -0.5736648440361023, 0.10341035574674606, 0.21019816398620605, -0.8433946967124939, -0.3442198932170868, -0.9061416983604431, 0.6440725922584534, 0.10817558318376541, -0.685451090335846, 0.26729995012283325, 0.9596330523490906, 0.5361574292182922, 0.31050240993499756, -0.3714821934700012, -0.9696128368377686, 0.3135327696800232, -0.30225008726119995, 0.7728153467178345, -0.5586888790130615, -0.32321226596832275, -0.04619438201189041, 0.5346918702125549, 0.2741611897945404, -0.2653389275074005, 0.7775279879570007, -0.5185162425041199, -0.214037224650383, -0.8835452198982239, -0.5595061182975769, -0.030229592695832253, 0.4666915833950043, -1.2144668102264404, 0.9521854519844055, 0.27638182044029236, -0.6359638571739197, 0.4017549455165863, -1.3111987113952637, -0.36960965394973755, 0.6070574522018433, -0.1038692519068718, -0.43248188495635986, 0.3696879744529724, -0.31149083375930786, 0.5497843623161316, -0.2574049234390259, 0.41277027130126953, -0.9831522107124329, -0.214108407497406, 0.14943687617778778, 0.27441948652267456, 0.8523786664009094, 0.20194628834724426, 0.14136482775211334, 0.1702839583158493, -0.8984140157699585, -0.07776406407356262, 0.2015344649553299, -0.14499451220035553, -0.13137909770011902, -0.4183047115802765, 0.47275489568710327, 0.03640281781554222, 0.2509705722332001, -0.4732576906681061, 0.45048314332962036, 0.13501843810081482, -0.046658504754304886, 0.7419033050537109, 0.007933247834444046, 0.1335904896259308, -0.286857932806015, 0.5476402640342712, -0.1853405386209488, 0.23017403483390808, 0.1798992156982422, -0.1743062287569046, -0.4903663694858551, -0.05183585733175278, 0.9402459859848022, 0.5442761778831482, -0.5287234783172607, 0.8390592932701111, 0.0012294312473386526, -0.7231923937797546, 0.048822071403265, 0.1500900685787201, 0.25846508145332336, 0.03758580610156059, 0.23191669583320618, -0.6983538866043091, -0.787221372127533, -0.7438148856163025, 0.5294151902198792, 0.0028253227937966585, -0.08002546429634094, 0.17399506270885468, 1.0411179065704346, -0.35465627908706665, 0.4830169677734375, -0.8727737665176392, -0.25286075472831726, 0.02545074187219143, -0.2805033326148987, 0.32915621995925903, 0.6717026233673096, 1.053667426109314, -0.7702955603599548, -0.3726355731487274, -0.4110974371433258, -0.432870090007782, 0.05230962857604027, 0.5081673860549927, -0.8170430660247803, -0.21162189543247223, 0.5019456744194031, -0.6316936612129211, 0.6695916652679443, 1.0463308095932007, -0.4789697825908661, 0.47722581028938293, 0.12133435904979706, 0.05312477797269821, -1.4907989501953125, 0.6374298334121704, -0.18733902275562286, -0.07591661065816879, -0.05895538255572319, 0.2837488055229187, 0.02532205730676651, -0.521837592124939, 0.24072223901748657, 0.6541578769683838, -0.32978537678718567, -0.33658722043037415, -0.1372901052236557, -0.001429634285159409, -0.018690552562475204, 0.15623998641967773, 0.023623725399374962, 0.48100757598876953, 1.0644084215164185, -0.3182579576969147, 1.2356308698654175, 0.571692705154419, 0.04130404070019722, 1.1975339651107788, -0.7573419809341431, 0.14481474459171295, -0.08562114834785461, 0.7689269185066223, -0.82989102602005, -0.9652588367462158, 0.5212081074714661, -0.2459631860256195, 0.5792959928512573, -0.8073445558547974, -0.7300844788551331, -1.0079962015151978, -0.40485185384750366, 0.5160391926765442, 0.5099735260009766, -0.9157713651657104, 0.4574822783470154, 0.7141543030738831, -0.14699354767799377, -0.0030653984285891056, -1.037578821182251, 0.2515411674976349, -0.19855144619941711, -0.14186859130859375, 0.3604901134967804, -0.525160014629364, 0.11609707027673721, -0.19901901483535767, 0.34472930431365967, -0.26908501982688904, -0.11012868583202362, 0.6367226839065552, 0.14909951388835907, -0.33177700638771057, 0.762451708316803, -0.18470399081707, -0.7246432900428772, 0.3122009336948395, -0.25042420625686646, 0.5034933686256409, -0.07450849562883377, -0.3817884624004364, -0.31343573331832886, 0.4470609426498413, 0.2550390064716339, -0.40053272247314453, 0.6125406622886658, 1.1570240259170532, -0.5558096766471863, -0.09092293679714203, -0.6452810764312744, -0.13010276854038239, -0.48408278822898865, 0.0062597948126494884, -0.2033909112215042, -0.522339403629303, 0.5564989447593689, -0.19661730527877808, 0.08034955710172653, 0.7995721697807312, 0.8436394929885864, 0.03824598714709282, 0.4978267550468445, 0.7212647795677185, -0.39908936619758606, 0.48553910851478577, -0.21861590445041656, -0.1993911862373352, -0.7677032351493835, -0.10715351998806, -0.7177539467811584, -0.687100350856781, -0.696278989315033, -0.45784997940063477, -0.17929069697856903, -0.15157194435596466, -0.3899228870868683, 0.4780980050563812, -0.6254507303237915, 0.5739737749099731, 0.6949924230575562, -0.021836303174495697, -0.10986169427633286, 0.00011908213491551578, 0.32948440313339233, 0.4752739369869232, -0.5535510182380676, 0.024097023531794548, 1.2302310466766357, 0.36200854182243347, 0.8928088545799255, 0.2870066463947296, 0.8841103911399841, 0.07011894136667252, 0.2797374427318573, -0.354915589094162, 0.37558886408805847, 0.0814334973692894, -1.1174365282058716, -0.10910962522029877, -0.26855912804603577, -0.996884286403656, -0.40089085698127747, -0.28159841895103455, -0.2804165482521057, 0.3830747604370117, 0.5645849704742432, -0.15333321690559387, 0.3632606565952301, -0.7635543346405029, 1.076698660850525, -0.20169350504875183, -0.27694401144981384, -0.4777475893497467, -0.6526082158088684, 0.1005742996931076, 0.19026105105876923, 0.10233037173748016, -0.13496173918247223, 0.012110701762139797, 0.9291304349899292, -0.46018823981285095, 1.0412261486053467, -0.7952012419700623, -0.015437457710504532, 0.14282412827014923, -0.16243232786655426, 0.3418375849723816, 0.36483034491539, -0.24241752922534943, 0.07417138665914536, 0.13959144055843353, -0.6575234532356262, -0.12123691290616989, 0.8946248888969421, -0.5770218968391418, 0.06982971727848053, -0.43163177371025085, -0.4001045227050781, -0.14409737288951874, 0.4340384304523468, -0.05788153037428856, 0.5499789118766785, -0.6680004000663757, 0.24343590438365936, 0.6154678463935852, 0.1993051916360855, 0.29151833057403564, 0.1693846881389618, -0.44879043102264404, -0.3069063127040863, 1.020632266998291, 0.1068185344338417, -0.4078941345214844, 0.09689164161682129, 0.4599680006504059, -0.11396066844463348, -0.5000726580619812, -0.6181668639183044, 0.3005572557449341, -0.38448140025138855, -0.5508019924163818, -0.10798489302396774, -0.2871094346046448, -0.2701667249202728, -0.1514219343662262, -0.24884557723999023, -0.5441572666168213, -0.2538033723831177, -0.8052829504013062, 1.1603268384933472, 0.4644666016101837, -0.7608370184898376, 0.45807698369026184, -0.9078587293624878, 0.5549609065055847, 0.26136305928230286, 1.3401087522506714, -0.11951716989278793, -0.11654268205165863, -0.4402841627597809, -0.05604376643896103, 0.03706863150000572, -0.2942756712436676, -0.2973836362361908, 0.07785985618829727, 0.5340054631233215, 0.2551795244216919, -0.027457209303975105, 0.5285587906837463, -0.057568203657865524, 0.5507053136825562, 0.30308935046195984, -0.5262871980667114, 0.5771650671958923, -0.3558655381202698, 0.38440969586372375, 1.0319234132766724, 0.45391663908958435, -0.2882276177406311, 0.3594972789287567, -0.9828025698661804, -0.6816295981407166, 0.606887936592102, -0.09922946244478226, 0.25587940216064453, 0.37730249762535095, 0.3091806471347809, -0.047480352222919464, 0.48690032958984375, -0.6788282990455627, -0.3775659501552582, -0.13524875044822693, -0.21515525877475739, -0.03875564783811569, -0.4932481348514557, -0.6609185934066772, -0.504383385181427, 0.6123298406600952, -0.02667645923793316, 0.19484353065490723, -0.22891193628311157, 0.29835280776023865, -0.25416040420532227, -0.009678726084530354, 0.12674416601657867, 0.7359969615936279, -0.45649275183677673, -0.15053395926952362, -0.044397830963134766, -0.3809134066104889, -0.4849022328853607, 0.8422545194625854, 0.24403120577335358, -0.3460865914821625, 0.4412177503108978, 0.7667834162712097, -0.38418832421302795, -0.15253914892673492, 0.4274977147579193, -0.03985148295760155, -0.4273768663406372, -0.7023981213569641, 0.17733795940876007, 0.4294585585594177, 0.25717270374298096, -0.13811011612415314, -0.305918425321579, 0.28828468918800354, -0.6029804348945618, 0.23219768702983856, 0.03381006047129631, -0.6052892208099365, -0.42640113830566406, 0.30348384380340576, 0.7551829218864441, -0.2483401596546173, 0.8770948648452759, -0.12560324370861053, -0.4108108580112457, 0.8507608771324158, 0.16923271119594574, 0.6199865937232971, -0.4039088487625122, 0.32090818881988525, 0.5861499905586243, 0.16698472201824188, 0.11553643643856049, 0.5272013545036316, -0.46777433156967163, -0.21037989854812622, -0.36028939485549927, -0.38000884652137756, -0.5290105938911438, -0.2503472864627838, -0.8718100786209106, 0.14822077751159668, -0.8609090447425842, -0.2794741094112396, 0.20512081682682037, 0.17063109576702118, -0.9460652470588684, 0.036626800894737244, 0.3497447371482849, 1.2563103437423706, -0.7848127484321594, 0.6345474720001221, 0.7535325288772583, -0.38114872574806213, -0.7066637873649597, -0.11286710202693939, 0.22073335945606232, -0.65318363904953, 0.07491612434387207, 0.2080870270729065, 0.3638566732406616, -0.2631605267524719, -0.8984972238540649, -0.7961215376853943, 1.0277539491653442, 0.18850594758987427, -0.8808987140655518, 0.3439100682735443, -0.28780287504196167, 0.5121698379516602, 0.0014220476150512695, 0.16780363023281097, 0.5127630233764648, 1.2645375728607178, 0.3990830183029175, -0.7640079855918884, 0.0770745724439621, -0.5095834136009216, -0.32738247513771057, 0.6044362187385559, -0.9174047112464905, 0.2430286407470703, 0.08116734772920609, 0.12009484320878983, -0.0460890457034111, 0.5243961215019226, -0.08584749698638916, 0.3231375515460968, 0.38995394110679626, 0.7730085849761963, 0.9515953660011292, -0.34724190831184387, 1.209972858428955, 0.09985087811946869, 0.4190082550048828, 1.348889708518982, -0.38416048884391785, 0.3310695290565491, 0.3207983672618866, -0.16727180778980255, 0.5360725522041321, 0.4458855092525482, -0.8755886554718018, 0.03874915838241577, 0.5334405899047852, 0.08435546606779099, -0.3583340048789978, 0.017129015177488327, -0.9606684446334839, 0.16244879364967346, 0.5352157354354858, -0.32401368021965027, -0.16921980679035187, -0.04149654880166054, 0.04307181388139725, -0.38374143838882446, -0.5392435789108276, 0.6964711546897888, 0.07139424234628677, -0.2786485552787781, -0.10869385302066803, -0.08241334557533264, 0.18115738034248352, -0.9350768327713013, -0.3819236755371094, 0.0972287729382515, 0.2903967499732971, -0.6238640546798706, -1.1970044374465942, 0.639893114566803, -0.3901706039905548, -0.3445158004760742, 0.07906125485897064, 0.5939756035804749, -0.23896627128124237, -0.8592451810836792, 0.44491198658943176, 0.11942831426858902, 0.1586468368768692, -0.136875182390213, -1.1680477857589722, 0.3680114150047302, -0.34292304515838623, -0.2844143509864807, 0.31365966796875, 0.16858559846878052, 0.07274293899536133, 0.3527379631996155, 0.7899320125579834, -0.11993706971406937, -0.5550117492675781, 0.36910635232925415, 1.050957441329956, -0.8539544343948364, -0.48540717363357544, -0.531522810459137, 0.5571983456611633, -0.7044419646263123, -0.5467831492424011, 0.6287489533424377, 1.0138026475906372, 0.7725444436073303, -0.12823373079299927, 0.70762038230896, -0.6030222773551941, 0.6372912526130676, -0.2281968742609024, 0.5201396942138672, -0.3935970962047577, -0.4714517295360565, -0.26682236790657043, -1.009099006652832, -0.7641690373420715, 0.5454325079917908, -0.03867647796869278, 0.01865765079855919, 0.5571317076683044, 0.8868497610092163, -0.49248912930488586, 0.18920272588729858, -0.1300346553325653, 0.4805181920528412, 0.28128814697265625, 0.2805326282978058, 0.3055514097213745, -0.12744362652301788, 0.3410024046897888, -0.10694018751382828, -0.6194309592247009, -0.2956424951553345, -1.0995585918426514, -1.0661884546279907, -0.5154878497123718, -0.5554972290992737, -0.4625776708126068, -0.04385273531079292, 0.8327687978744507, 1.0690137147903442, -0.9499180912971497, -0.32931840419769287, 0.1282845139503479, 0.3048987090587616, -0.034718647599220276, -0.10448016971349716, 0.8267267346382141, 0.37980297207832336, -0.38826504349708557, -0.25027182698249817, -0.05079569295048714, 0.0757700726389885, -0.2790547311306, 0.27547207474708557, 0.017960581928491592, -0.14350467920303345, 0.477755606174469, 0.6482153534889221, 0.2048012614250183, -0.22398430109024048, -0.8362036943435669, 0.10394425690174103, 0.014667796902358532, 0.8951993584632874, -0.3106254041194916, 0.08427287638187408, 0.5765717029571533, 0.4895421266555786, 0.9662191867828369, 0.026321951299905777, 0.6708296537399292, -0.5277795195579529, 0.32391873002052307, -0.12135279923677444, 0.4545134902000427, 0.03875020891427994, -0.32135722041130066, 1.0125240087509155, 0.1574675589799881, -0.4887402653694153, -0.49754616618156433, 0.22802715003490448, -1.4072837829589844, 0.08234550058841705, 0.7811561822891235, 0.22322635352611542, -0.52849942445755, -0.06885433197021484, -0.5959913730621338, 0.026340670883655548, -0.7147084474563599, 0.2986505925655365, 0.748931348323822, 0.3162243664264679, -0.0736202746629715, -0.39847931265830994, 0.32751718163490295, -0.3615286946296692, -1.2331644296646118, 0.39587879180908203, 0.8329944014549255, 0.1920653134584427, 0.3480381667613983, 0.49006131291389465, -0.2161470204591751, 0.373635858297348, 0.36111316084861755, 0.5696739554405212, -0.3591964840888977, -0.4608636200428009, -0.034082330763339996, 0.0876365527510643, 0.027112752199172974, -0.33941078186035156 ]
null
null
null
null
null
null
null
null
null
null
null
null
null
cawoylel/FulaSpeechCorpora-splited-noise_augmented
cawoylel
2023-11-22T09:40:57Z
443
3
null
[ "task_categories:automatic-speech-recognition", "task_categories:text-to-speech", "task_categories:audio-classification", "size_categories:100K<n<1M", "language:ff", "speech", "low-ressource", "audio", "region:us" ]
2023-11-22T09:40:57Z
2023-10-25T22:21:41.000Z
2023-10-25T22:21:41
--- configs: - config_name: default data_files: - split: train path: data/train-* - split: test path: data/test-* - split: dev path: data/dev-* dataset_info: features: - name: audio dtype: audio - name: transcription dtype: string - name: dialect dtype: string splits: - name: train num_bytes: 30053008388.047405 num_examples: 187816 - name: test num_bytes: 3026464537.665628 num_examples: 18801 - name: dev num_bytes: 758023819.869451 num_examples: 4709 download_size: 32588024982 dataset_size: 33837496745.58248 task_categories: - automatic-speech-recognition - text-to-speech - audio-classification language: - ff pretty_name: Fula Multidialectal Speech Corpora Augmented size_categories: - 100K<n<1M tags: - speech - low-ressource - audio --- # Sources of the data This dataset is created from [FulaSpeechCorpora dataset](https://huggingface.co/datasets/cawoylel/FulaSpeechCorpora) and splitted into **train**, **test** and **dev** sets. It has been augmented using `audiomentations` library [https://iver56.github.io/audiomentations/](https://iver56.github.io/audiomentations/). The augmentation process includes the following tranformations: - Add background noise to simulate an environment where background noise is present - Add gaussian noise to the samples - Multiply the audio by a random amplitude factor to reduce or increase the volume. This technique can help a model become somewhat invariant to the overall gain of the input audio. - Change the speed or duration of the signal without changing the pitch. # How to augment **Download noise and background sounds** ```python wget https://www.openslr.org/resources/17/musan.tar.gz tar -zxvf musan.tar.gz rm -r ./musan/speech ``` **Augment** ```python from audiomentations import * def get_transformations(): """ Define audio augmentation transformations """ musan_dir = "./musan" augment = Compose([ Gain(min_gain_in_db=-6, max_gain_in_db=6, p=0.1), PitchShift(min_semitones=-4, max_semitones=4, p=0.5), TimeStretch(min_rate=0.9, max_rate=1.1, p=0.4, leave_length_unchanged=False), OneOf([ AddBackgroundNoise( sounds_path=musan_dir, min_snr_in_db=1.0, max_snr_in_db=5.0, noise_transform=PolarityInversion(), p=1. ), AddGaussianNoise(min_amplitude=0.001, max_amplitude=0.015, p=1.),], p=1.0) ]) return augment def augment_dataset(batch): sample = batch['audio'] augmentation = get_transformations() # apply augmentation augmented_waveform = augmentation(sample["array"], sample_rate=sample["sampling_rate"]) batch['audio']["array"] = augmented_waveform return batch ``` # Fula varieties in this dataset This dataset contains 8 varrieties: - __Pulaar__: spoken in Senegal, Mauritania and West-Mali. - __Pular__: spoken in Guinea. - __Maacina__: spoken in the Center and East of Mali. - __Liptako__: spoken in Burkina Faso and Niger. - __Caka__: spoken in the Central Nigeria. - __Bororro__: a very nomad group living in Cameroon, Central African Republic and Tchad. - __Borgu__: spoken in Togo and Benin. - __Adamawa__: spoken in Cameroon and South-East Nigeria. # How to use The `datasets` library allows you to load and pre-process your dataset in pure Python, at scale. The dataset can be downloaded and prepared in one call to your local drive by using the `load_dataset` function. For example, to download the training set, simply specify the corresponding split name: ```python from datasets import load_dataset train = load_dataset("cawoylel/FulaSpeechCorpora-splited-noise_augmented", split = "train") ``` You can also load all the dataset: ```python from datasets import load_dataset data = load_dataset("cawoylel/FulaSpeechCorpora-splited-noise_augmented") ``` Using the datasets library, you can also stream the dataset on-the-fly by adding a `streaming=True` argument to the `load_dataset` function call. Loading a dataset in streaming mode loads individual samples of the dataset at a time, rather than downloading the entire dataset to disk. ```python from datasets import load_dataset data = load_dataset("cawoylel/FulaSpeechCorpora-splited-noise_augmented", streaming=True) print(next(iter(data))) ``` # Data Fields The data fields are the same among all splits. - **dialect** (str): The name of the dialect - **audio** (dict): Audio object including loaded audio array, sampling rate and path to audio - **transcription** (str): Transcription of the audio file # Social Impact of Dataset Under-representation, dialectal and cultural diversity. # Discussion of Biases Gender biases, noise robustness # Additional Information All datasets are licensed under the [Creative Commons license (CC-BY)](https://creativecommons.org/licenses/). # Citation Information Please cite us when using the FulaSpeechCorpora: ``` @article{fleurs2022arxiv, title = {FulaSpeechCorpora-splited-noise_augmented: A multidialectal speech dataset for Fula.}, author = {Sy, Yaya and Doucouré, Dioula}, url = {https://huggingface.co/datasets/cawoylel/FulaSpeechCorpora-splited-noise_augmented}, year = {2023}, ```
[ -0.5332267880439758, -0.7666627168655396, -0.11844097077846527, 0.4565637409687042, 0.10691285133361816, -0.1278977394104004, -0.47696653008461, -0.5374303460121155, 0.4934074580669403, 0.6103724837303162, -0.8880113959312439, -0.29058927297592163, -0.3992389738559723, 0.1720452755689621, -0.3676673173904419, 0.8804752826690674, 0.3773815333843231, 0.258158415555954, 0.3126184344291687, -0.4460020959377289, -0.3488085865974426, -0.34874236583709717, -0.5556137561798096, -0.15239351987838745, 0.14675121009349823, 0.20059245824813843, 0.5226483345031738, 0.4995447099208832, 0.14288440346717834, 0.36363208293914795, -0.3555644452571869, 0.21457348763942719, -0.44338852167129517, -0.0689723789691925, 0.23623238503932953, -0.44954371452331543, -0.236588716506958, 0.0031332180369645357, 0.6254768371582031, 0.7917274832725525, -0.4147820472717285, 0.1900855153799057, -0.008044465444982052, 0.3791947364807129, -0.2770780622959137, 0.1711408644914627, -0.5150512456893921, -0.09162764996290207, -0.18775424361228943, -0.13103681802749634, 0.0574209950864315, -0.29298505187034607, 0.0314447395503521, -0.6039522290229797, 0.4493814706802368, -0.27541792392730713, 0.8738885521888733, 0.4369445741176605, -0.13888630270957947, -0.24856600165367126, -0.5944007039070129, 0.8185335397720337, -0.9841585755348206, 0.33484187722206116, 0.6247178316116333, 0.14492543041706085, -0.2177109718322754, -0.4049069881439209, -0.6020388007164001, -0.08465973287820816, 0.00028493700665421784, 0.0661172866821289, -0.12310958653688431, -0.08175745606422424, 0.46147629618644714, 0.7070435881614685, -0.3670865297317505, -0.05654571205377579, -0.7688731551170349, -0.4419284462928772, 0.9835766553878784, -0.1968400478363037, 0.2731269299983978, -0.06920669972896576, -0.017452478408813477, -0.3545680642127991, -0.23020030558109283, 0.15843465924263, 0.7311078310012817, 0.49374502897262573, -0.4719243049621582, 0.4884940981864929, -0.27888524532318115, 0.6643542647361755, 0.3341889977455139, -0.5516517758369446, 1.0187500715255737, -0.4468775987625122, -0.12369551509618759, 0.3238850235939026, 0.9768406748771667, -0.08781307935714722, -0.04018571600317955, 0.20501834154129028, -0.24263587594032288, -0.11626634001731873, -0.23162437975406647, -0.5516704320907593, -0.4264713525772095, 0.5948038697242737, -0.21106943488121033, -0.24632172286510468, 0.00945013202726841, -0.6803991794586182, -0.22165241837501526, -0.5449133515357971, 0.6051449775695801, -0.6011818051338196, -0.4191037714481354, -0.022862380370497704, -0.1273280531167984, 0.16139131784439087, -0.029145969077944756, -1.0182799100875854, 0.22886429727077484, 0.3036891222000122, 0.9608361124992371, 0.040110960602760315, -0.23152446746826172, -0.41489070653915405, -0.1674017757177353, -0.14673078060150146, 0.6009340882301331, -0.10720407962799072, -0.5744598507881165, -0.25443127751350403, 0.2940416932106018, -0.10558770596981049, -0.7028507590293884, 0.7482714653015137, 0.0355512872338295, 0.3966571092605591, -0.07362537086009979, -0.2497507631778717, -0.21141299605369568, -0.16763240098953247, -0.749509871006012, 1.1111507415771484, 0.26102760434150696, -0.6063138246536255, 0.21037966012954712, -0.7022107839584351, -0.7572163939476013, -0.2718716859817505, -0.0027620045002549887, -0.6115248203277588, -0.20023956894874573, 0.743094801902771, 0.21733905375003815, 0.03619880601763725, 0.1618242859840393, -0.174701988697052, -0.36100655794143677, 0.4368010461330414, -0.6789151430130005, 1.3532096147537231, 0.1309880018234253, -0.4477776288986206, -0.010709783993661404, -1.157833456993103, -0.22300976514816284, -0.08150943368673325, -0.4250154495239258, 0.01944231241941452, -0.17163871228694916, 0.37678423523902893, 0.11795828491449356, 0.08738487958908081, -0.6618122458457947, 0.07825891673564911, -0.8059105277061462, 0.4297108054161072, 0.7022520899772644, 0.16807398200035095, 0.1942807286977768, -0.562171220779419, 0.384326696395874, 0.08577166497707367, 0.05004560202360153, -0.12992778420448303, -0.46194788813591003, -0.6957855224609375, -0.6209031939506531, 0.3045598566532135, 0.5762700438499451, -0.402614027261734, 0.6261870861053467, -0.22312325239181519, -0.5041487216949463, -0.9511352777481079, 0.08937502652406693, -0.04293601214885712, 0.47601988911628723, 0.6084061861038208, 0.027613941580057144, -0.7905064821243286, -0.760850191116333, 0.2369714230298996, 0.20422251522541046, -0.1025908887386322, 0.31370052695274353, 0.35492563247680664, -0.4672981798648834, 0.6981966495513916, -0.5375655889511108, -0.4661830961704254, 0.054157763719558716, 0.04341387748718262, 0.7477478384971619, 0.6686617136001587, 0.4659558832645416, -0.7673467993736267, -0.2883710265159607, -0.015235833823680878, -0.38974055647850037, -0.4049280881881714, -0.15519143640995026, 0.11928350478410721, 0.04012278839945793, 0.14541517198085785, -0.2986016869544983, 0.22978317737579346, 0.646579921245575, -0.02957434207201004, 0.6327379941940308, 0.005846379324793816, 0.25893956422805786, -1.1671313047409058, -0.07216153293848038, -0.020341284573078156, -0.04067223519086838, -0.563991367816925, -0.35957878828048706, -0.29661431908607483, -0.11118689179420471, -0.31724971532821655, 0.15277893841266632, -0.39372554421424866, -0.022389959543943405, -0.14949938654899597, -0.02687748521566391, -0.18940159678459167, 0.6967156529426575, 0.056858088821172714, 0.93735671043396, 0.7347033023834229, -0.5738932490348816, 0.5612579584121704, 0.38040682673454285, -0.3490121066570282, 0.44438618421554565, -0.7983047962188721, -0.022654801607131958, -0.0023351889103651047, 0.2688673734664917, -0.9179769158363342, -0.3268965482711792, 0.27738893032073975, -0.48974117636680603, 0.17563562095165253, -0.1279069483280182, -0.26721736788749695, -0.15666574239730835, -0.13618426024913788, 0.30759915709495544, 0.2881278693675995, -0.6463173627853394, 0.3741956651210785, 0.6779182553291321, -0.14873777329921722, -0.5904377102851868, -0.8905903100967407, -0.18222329020500183, -0.4023836851119995, -0.6788878440856934, 0.2898189127445221, -0.05427807196974754, -0.1783539205789566, -0.17273707687854767, -0.08314710110425949, -0.10079613327980042, -0.22779367864131927, 0.4270874261856079, 0.20355002582073212, -0.21369242668151855, -0.02033061906695366, 0.0880887359380722, 0.1400216519832611, -0.028714550659060478, -0.32277584075927734, 0.6151840686798096, -0.052298787981271744, -0.012722981162369251, -0.5144302248954773, 0.21416522562503815, 0.3267536461353302, -0.22615943849086761, 0.6745677590370178, 1.0186156034469604, -0.29184970259666443, -0.07653576880693436, -0.5690908432006836, -0.18142065405845642, -0.46999531984329224, 0.3503272831439972, -0.2895893454551697, -0.41552451252937317, 0.5271435976028442, 0.1858629435300827, 0.11078325659036636, 0.6355419158935547, 0.5075498819351196, -0.1280747950077057, 0.8998988270759583, 0.05436160787940025, -0.21668754518032074, 0.5750392079353333, -0.9156659841537476, -0.182882621884346, -0.8704234957695007, -0.304205983877182, -0.5454058647155762, -0.27138009667396545, -0.6651357412338257, -0.37658053636550903, 0.38785234093666077, -0.10822541266679764, -0.026480579748749733, 0.4320838153362274, -0.5220942497253418, 0.28687965869903564, 0.4131108820438385, 0.2739211618900299, 0.05785217508673668, 0.4355499744415283, 0.05882234871387482, 0.06396449357271194, -0.46437132358551025, -0.012277191504836082, 1.1344257593154907, 0.32495802640914917, 0.7689332962036133, 0.07333112508058548, 0.6722537875175476, 0.431939959526062, -0.12278002500534058, -0.7254406213760376, 0.1718374788761139, -0.19408078491687775, -0.45969223976135254, -0.46103110909461975, -0.5871099829673767, -0.9989683032035828, 0.34701454639434814, -0.36122480034828186, -0.7950215935707092, 0.6387179493904114, -0.10056691616773605, -0.24701833724975586, 0.09958489239215851, -0.5254862904548645, 0.3263395428657532, -0.06447485089302063, -0.22475308179855347, -0.11536281555891037, -0.6047487258911133, 0.3060765564441681, -0.07831817120313644, 0.4712277352809906, -0.07234081625938416, 0.36640235781669617, 1.075835108757019, -0.5827831625938416, 0.6591748595237732, -0.22965016961097717, -0.23086610436439514, 0.2671877145767212, -0.4276961088180542, 0.28234773874282837, 0.02285032719373703, -0.31098249554634094, 0.5921452641487122, 0.29293280839920044, -0.4150499403476715, -0.3803280293941498, 0.7736769318580627, -1.2062915563583374, -0.25877824425697327, -0.35896268486976624, -0.8890060186386108, -0.17639146745204926, -0.10006001591682434, 0.556691586971283, 0.807604193687439, 0.016170112416148186, 0.31294485926628113, 0.5190104842185974, -0.07489034533500671, 0.33642467856407166, 0.2576153576374054, -0.13578568398952484, -0.9354855418205261, 0.9817978739738464, 0.30222102999687195, 0.28297731280326843, 0.12230579555034637, 0.35146620869636536, -0.6428201198577881, -0.3208131492137909, -0.33902230858802795, 0.3325570821762085, -0.4653902053833008, 0.0604822151362896, -0.6480537056922913, -0.31412848830223083, -0.7464966177940369, 0.2244292050600052, -0.19660191237926483, -0.7047883868217468, -0.34729352593421936, 0.05486438795924187, 0.4335227608680725, 0.31642788648605347, -0.45280781388282776, 0.5744881629943848, -0.46668973565101624, 0.576042652130127, 0.1150076687335968, -0.2032061219215393, -0.31516289710998535, -0.8575376272201538, -0.2959057688713074, 0.606691837310791, -0.2666980028152466, -0.835871160030365, 0.6861335039138794, 0.32228055596351624, 0.6536440253257751, 0.45626434683799744, -0.11451736092567444, 0.8380073308944702, 0.04249439388513565, 0.8827347159385681, 0.09889154136180878, -0.815970778465271, 0.7781862020492554, -0.4345337152481079, 0.25561773777008057, 0.4081036150455475, 0.22611430287361145, -0.3861187994480133, -0.3259051740169525, -0.789870023727417, -0.8295946717262268, 0.9826586842536926, 0.554018497467041, -0.07757233828306198, 0.2983569800853729, 0.040600717067718506, 0.15254288911819458, 0.18299263715744019, -0.6881248950958252, -0.5586761832237244, -0.46931251883506775, -0.1650688350200653, -0.3559633195400238, 0.3492380976676941, -0.3169634938240051, -0.6220235228538513, 1.117862343788147, 0.017337370663881302, 0.2693920135498047, 0.4307537376880646, -0.16588406264781952, 0.04855076223611832, 0.224288210272789, 0.6298395991325378, 0.34691122174263, -0.3466217517852783, -0.1767314374446869, 0.33122244477272034, -0.7818387746810913, 0.2889194190502167, 0.4367787837982178, -0.22086386382579803, 0.1363380402326584, 0.36832135915756226, 1.0109529495239258, -0.017662642523646355, -0.4573199152946472, 0.28914546966552734, 0.03686079755425453, -0.33952003717422485, -0.4785785675048828, 0.2780340313911438, -0.033811114728450775, 0.15673424303531647, 0.5997588038444519, 0.28795695304870605, 0.13403603434562683, -0.4742580056190491, 0.13674889504909515, 0.16352242231369019, -0.3714911937713623, -0.09200892597436905, 0.5388282537460327, 0.08487866818904877, -0.3074865937232971, 0.6478633880615234, 0.037458427250385284, -0.1783086508512497, 0.7530528903007507, 0.6294804811477661, 0.7100751399993896, -0.4148654043674469, 0.0870468020439148, 0.6284903287887573, 0.2448352724313736, -0.01706886477768421, 0.3977999985218048, -0.30737826228141785, -0.7647793889045715, -0.39224064350128174, -0.8394210934638977, -0.17781060934066772, 0.5765694975852966, -0.7969069480895996, 0.24981416761875153, -0.20511193573474884, -0.2695630192756653, 0.09299857914447784, 0.11536981910467148, -0.45027437806129456, 0.21811546385288239, 0.02841637283563614, 0.6066998839378357, -1.031256079673767, 0.8086152672767639, 0.3944666385650635, -0.4900874197483063, -0.8796308040618896, 0.08883658051490784, 0.01697535067796707, -0.5747014880180359, 0.2303825318813324, 0.2005975842475891, -0.08102316409349442, -0.049870867282152176, -0.5514839887619019, -0.7236577272415161, 0.9686980843544006, 0.2862391769886017, -0.6902096271514893, 0.33443641662597656, 0.3072830140590668, 0.4121896028518677, -0.26838061213493347, 0.19573086500167847, 0.8457626104354858, 0.4798518717288971, 0.1390250325202942, -0.8816337585449219, -0.23205779492855072, -0.38068246841430664, -0.1890997439622879, 0.04012208804488182, -0.5215588212013245, 0.9344481229782104, -0.17403019964694977, -0.03228852525353432, 0.02904350683093071, 0.6955573558807373, 0.3112243413925171, 0.15696263313293457, 0.819884181022644, 0.4621315598487854, 0.9638262987136841, -0.25384336709976196, 0.6311863660812378, -0.3018988370895386, 0.40906596183776855, 1.0312937498092651, 0.14868754148483276, 0.587986409664154, 0.45775458216667175, -0.5213669538497925, 0.39804717898368835, 0.47719165682792664, -0.3039405047893524, 0.5430931448936462, -0.03923483192920685, -0.38784274458885193, 0.08014512807130814, -0.17703932523727417, -0.7182366847991943, 0.6644854545593262, 0.5859478116035461, -0.2871062755584717, 0.14788517355918884, 0.2871415317058563, -0.16183075308799744, -0.15100689232349396, -0.2361757904291153, 0.583043098449707, -0.05039422959089279, -0.3658229112625122, 0.9214692115783691, -0.20344461500644684, 0.9485201835632324, -0.8423442244529724, 0.061705105006694794, -0.12238747626543045, 0.045090798288583755, -0.5917242765426636, -0.6632324457168579, 0.3046508729457855, -0.2593913674354553, -0.17252735793590546, 0.17597943544387817, 0.33536502718925476, -0.7904824614524841, -0.7500266432762146, 0.16364434361457825, -0.02287149988114834, 0.2217242419719696, 0.0644790530204773, -0.7045745253562927, 0.13202761113643646, 0.3747063875198364, -0.09213276207447052, -0.06608947366476059, 0.09526266902685165, 0.3025978207588196, 0.41196775436401367, 1.1103613376617432, 0.6370953321456909, 0.27951496839523315, 0.25967711210250854, 0.5970124006271362, -0.3642958998680115, -0.6593652367591858, -0.42624524235725403, 0.3896338939666748, -0.22881817817687988, -0.3394882380962372, 0.7463711500167847, 0.7635247707366943, 0.74497389793396, -0.13730888068675995, 0.7977548241615295, -0.14746713638305664, 0.4397594928741455, -0.5500578284263611, 0.6746665835380554, -0.3680166006088257, 0.3702980577945709, -0.4078379273414612, -0.845958411693573, 0.06294659525156021, 0.7960079908370972, -0.17645896971225739, -0.02348809503018856, 0.17649349570274353, 1.3798255920410156, -0.28100401163101196, 0.3941824734210968, 0.19823208451271057, 0.4565468728542328, 0.2047165036201477, 0.27765873074531555, 0.6345906257629395, -0.8083155751228333, 0.5595338344573975, -0.8383895754814148, -0.20938047766685486, 0.06060851365327835, -0.29429566860198975, -0.5478308200836182, -0.7731825709342957, -0.4422919750213623, -0.5303455591201782, -0.02452859655022621, 0.9578478336334229, 0.8631775975227356, -1.0764756202697754, -0.4820970892906189, 0.09871526062488556, -0.006104647647589445, -0.6321985125541687, -0.33196911215782166, 0.4686589241027832, 0.03249146044254303, -0.9405485987663269, 0.8158084154129028, -0.0989704504609108, 0.09984176605939865, -0.2304352968931198, -0.1307162642478943, -0.4494761526584625, -0.019590238109230995, 0.3239646255970001, 0.42599257826805115, -0.6425707340240479, -0.03057909943163395, -0.2649504840373993, 0.17276717722415924, 0.33202698826789856, 0.31505921483039856, -0.7452206015586853, 0.47184935212135315, 0.5272554755210876, 0.1480225771665573, 0.7299260497093201, -0.010746834799647331, 0.32258161902427673, -0.7941399812698364, 0.5284697413444519, -0.017388539388775826, 0.5518685579299927, 0.5097140669822693, -0.4993250370025635, 0.48073992133140564, 0.4637314975261688, -0.5839349031448364, -0.7059072852134705, -0.31727227568626404, -1.2333403825759888, -0.036387912929058075, 1.2979917526245117, 0.17180214822292328, -0.11766029894351959, -0.24618090689182281, -0.6002758145332336, 0.4402332007884979, -0.6182383894920349, 0.5354922413825989, 0.34464937448501587, -0.21436654031276703, 0.010422804392874241, -0.39270150661468506, 0.3615950345993042, 0.05583474785089493, -0.6163023114204407, -0.16341827809810638, 0.5660884976387024, 0.6063936948776245, 0.37369805574417114, 0.513279914855957, -0.11880066990852356, 0.12542499601840973, 0.27170464396476746, -0.09378577023744583, -0.1948845535516739, 0.022221161052584648, -0.6682440638542175, 0.1806681901216507, -0.5596389174461365, -0.5109584927558899 ]
null
null
null
null
null
null
null
null
null
null
null
null
null
ollie
null
2023-06-01T14:59:47Z
442
0
null
[ "annotations_creators:machine-generated", "language_creators:crowdsourced", "multilinguality:monolingual", "size_categories:10M<n<100M", "size_categories:1M<n<10M", "source_datasets:original", "language:en", "license:other", "relation-extraction", "text-to-structured", "region:us" ]
2023-06-01T14:59:47Z
2022-03-02T23:29:22.000Z
2022-03-02T23:29:22
--- annotations_creators: - machine-generated language_creators: - crowdsourced language: - en license: - other multilinguality: - monolingual size_categories: - 10M<n<100M - 1M<n<10M source_datasets: - original task_categories: [] task_ids: [] pretty_name: Ollie tags: - relation-extraction - text-to-structured dataset_info: - config_name: ollie_lemmagrep features: - name: arg1 dtype: string - name: arg2 dtype: string - name: rel dtype: string - name: search_query dtype: string - name: sentence dtype: string - name: words dtype: string - name: pos dtype: string - name: chunk dtype: string - name: sentence_cnt dtype: string splits: - name: train num_bytes: 12324648919 num_examples: 18674630 download_size: 1789363108 dataset_size: 12324648919 - config_name: ollie_patterned features: - name: rel dtype: string - name: arg1 dtype: string - name: arg2 dtype: string - name: slot0 dtype: string - name: search_query dtype: string - name: pattern dtype: string - name: sentence dtype: string - name: parse dtype: string splits: - name: train num_bytes: 2930309084 num_examples: 3048961 download_size: 387514061 dataset_size: 2930309084 config_names: - ollie_lemmagrep - ollie_patterned --- # Dataset Card for Ollie ## 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:** [Ollie](https://knowitall.github.io/ollie/) - **Repository:** [Github](https://github.com/knowitall/ollie) - **Paper:** [Aclweb](https://www.aclweb.org/anthology/D12-1048/) ### Dataset Summary The Ollie dataset includes two configs for the data used to train the Ollie informatation extraction algorithm, for 18M sentences and 3M sentences respectively. This data is for academic use only. From the authors: Ollie is a program that automatically identifies and extracts binary relationships from English sentences. Ollie is designed for Web-scale information extraction, where target relations are not specified in advance. Ollie is our second-generation information extraction system . Whereas ReVerb operates on flat sequences of tokens, Ollie works with the tree-like (graph with only small cycles) representation using Stanford's compression of the dependencies. This allows Ollie to capture expression that ReVerb misses, such as long-range relations. Ollie also captures context that modifies a binary relation. Presently Ollie handles attribution (He said/she believes) and enabling conditions (if X then). More information is available at the Ollie homepage: https://knowitall.github.io/ollie/ ### Supported Tasks and Leaderboards [More Information Needed] ### Languages en ## Dataset Structure ### Data Instances There are two configurations for the dataset: ollie_lemmagrep which are 18M sentences from web searches for a subset of the Reverb relationships (110,000 relationships), and the 3M sentences for ollie_patterned which is a subset of the ollie_lemmagrep dataset derived from patterns according to the Ollie paper. An example of an ollie_lemmagrep record: `` {'arg1': 'adobe reader', 'arg2': 'pdf', 'chunk': 'B-NP I-NP I-NP I-NP B-PP B-NP I-NP B-VP B-PP B-NP I-NP O B-VP B-NP I-NP I-NP I-NP B-VP I-VP I-VP O', 'pos': 'JJ NNS CC NNS IN PRP$ NN VBP IN NNP NN CC VB DT NNP NNP NNP TO VB VBN .', 'rel': 'be require to view', 'search_query': 'require reader pdf adobe view', 'sentence': 'Many documents and reports on our site are in PDF format and require the Adobe Acrobat Reader to be viewed .', 'sentence_cnt': '9', 'words': 'many,document,and,report,on,our,site,be,in,pdf,format,and,require,the,adobe,acrobat,reader,to,be,view'} `` An example of an ollie_patterned record: `` {'arg1': 'english', 'arg2': 'internet', 'parse': '(in_IN_6), advmod(important_JJ_4, most_RBS_3); nsubj(language_NN_5, English_NNP_0); cop(language_NN_5, being_VBG_1); det(language_NN_5, the_DT_2); amod(language_NN_5, important_JJ_4); prep_in(language_NN_5, era_NN_9); punct(language_NN_5, ,_,_10); conj(language_NN_5, education_NN_12); det(era_NN_9, the_DT_7); nn(era_NN_9, Internet_NNP_8); amod(education_NN_12, English_JJ_11); nsubjpass(enriched_VBN_15, language_NN_5); aux(enriched_VBN_15, should_MD_13); auxpass(enriched_VBN_15, be_VB_14); punct(enriched_VBN_15, ._._16)', 'pattern': '{arg1} <nsubj< {rel:NN} >prep_in> {slot0:NN} >nn> {arg2}', 'rel': 'be language of', 'search_query': 'english language internet', 'sentence': 'English being the most important language in the Internet era , English education should be enriched .', 'slot0': 'era'} `` ### Data Fields For ollie_lemmagrep: * rel: the relationship phrase/verb phrase. This may be empty, which represents the "be" relationship. * arg1: the first argument in the relationship * arg2: the second argument in the relationship. * chunk: a tag of each token in the sentence, showing the pos chunks * pos: part of speech tagging of the sentence * sentence: the sentence * sentence_cnt: the number of copies of this sentence encountered * search_query: a combintion of rel, arg1, arg2 * words: the lemma of the words of the sentence separated by commas For ollie_patterned: * rel: the relationship phrase/verb phrase. * arg1: the first argument in the relationship * arg2: the second argument in the relationship. * slot0: the third argument in the relationship, which might be empty. * pattern: a parse pattern for the relationship * parse: a dependency parse forthe sentence * search_query: a combintion of rel, arg1, arg2 * sentence: the senence ### Data Splits There are no splits. ## Dataset Creation ### Curation Rationale This dataset was created as part of research on open information extraction. ### Source Data #### Initial Data Collection and Normalization See the research paper on OLlie. The training data is extracted from web pages (Cluebweb09). #### Who are the source language producers? The Ollie authors at the Univeristy of Washington and data from Cluebweb09 and the open web. ### Annotations #### Annotation process The various parsers and code from the Ollie alogrithm. #### Who are the annotators? Machine annotated. ### Personal and Sensitive Information Unkown, but likely there are names of famous individuals. ## Considerations for Using the Data ### Social Impact of Dataset The goal for the work is to help machines learn to extract information form open domains. ### Discussion of Biases Since the data is gathered from the web, there is likely to be biased text and relationships. [More Information Needed] ### Other Known Limitations [More Information Needed] ## Additional Information ### Dataset Curators The authors of Ollie at The University of Washington ### Licensing Information The University of Washington academic license: https://raw.githubusercontent.com/knowitall/ollie/master/LICENSE ### Citation Information ``` @inproceedings{ollie-emnlp12, author = {Mausam and Michael Schmitz and Robert Bart and Stephen Soderland and Oren Etzioni}, title = {Open Language Learning for Information Extraction}, booktitle = {Proceedings of Conference on Empirical Methods in Natural Language Processing and Computational Natural Language Learning (EMNLP-CONLL)}, year = {2012} } ``` ### Contributions Thanks to [@ontocord](https://github.com/ontocord) for adding this dataset.
[ -0.18493938446044922, -0.7302801012992859, 0.05894409865140915, 0.2946521043777466, -0.13954031467437744, -0.09185834974050522, -0.10026691108942032, -0.4484784007072449, 0.5338649153709412, 0.29900264739990234, -0.5831448435783386, -0.6418779492378235, -0.5260432958602905, 0.10834662616252899, -0.27118417620658875, 0.7715917229652405, 0.07687278091907501, -0.011154110543429852, -0.20132270455360413, -0.1746121197938919, -0.3853414058685303, -0.5257670879364014, -0.574030876159668, 0.01769433729350567, 0.32657113671302795, 0.6799396872520447, 0.5133729577064514, 0.8488212823867798, 0.40593746304512024, 0.1945931613445282, -0.002148110419511795, 0.08149882405996323, -0.5837681889533997, 0.10858193039894104, -0.16270685195922852, -0.5034009218215942, -0.4958105683326721, 0.2111445963382721, 0.5410805344581604, 0.6552929878234863, 0.06340614706277847, 0.23937825858592987, 0.06725114583969116, 0.8197901844978333, -0.6027162075042725, 0.4797787368297577, -0.6319363713264465, -0.14756695926189423, -0.33141961693763733, 0.013003264553844929, -0.3364884555339813, -0.10349791496992111, -0.22026114165782928, -0.6940355896949768, 0.012778867967426777, 0.2322927713394165, 1.2112747430801392, -0.040261439979076385, -0.2177465707063675, -0.3018401861190796, -0.3276351988315582, 0.8052607178688049, -0.5726566314697266, 0.5303032398223877, 0.7663455009460449, -0.05202006548643112, -0.1698049008846283, -0.9330287575721741, -0.5215837955474854, 0.15163393318653107, -0.20672136545181274, 0.30637824535369873, -0.12929266691207886, -0.15420985221862793, 0.1411789506673813, 0.2759268879890442, -0.5267089605331421, 0.07254678755998611, -0.5062516927719116, -0.1802862584590912, 0.7748755216598511, 0.07541815936565399, 0.24925370514392853, -0.5485138297080994, -0.2652408480644226, -0.2734532654285431, -0.5624651908874512, 0.3580491542816162, 0.4570003151893616, 0.49587300419807434, -0.35578489303588867, 0.7954218983650208, -0.06372594833374023, 0.4063847064971924, 0.03727429732680321, -0.11800182610750198, 0.6799540519714355, -0.4967334568500519, -0.0060482630506157875, -0.09638068825006485, 0.9700366258621216, 0.5914880633354187, 0.3563157320022583, 0.12693297863006592, -0.17061254382133484, -0.05393582209944725, -0.16602855920791626, -0.5888367295265198, -0.2811216711997986, 0.3860958516597748, -0.5988355278968811, -0.064597949385643, 0.18797622621059418, -0.8663129210472107, 0.15107060968875885, -0.1515609323978424, 0.1905890703201294, -0.6887341141700745, -0.11905082315206528, 0.11766298860311508, -0.3554869294166565, 0.387552946805954, -0.10809057205915451, -0.6675447821617126, 0.37226787209510803, 0.7020209431648254, 0.8268369436264038, -0.0661294087767601, -0.33135101199150085, -0.5872055888175964, 0.11059068888425827, -0.027572639286518097, 0.5171592235565186, -0.7124224305152893, -0.23576855659484863, 0.24799031019210815, 0.24428312480449677, -0.12323874980211258, -0.3135169744491577, 0.4123222231864929, -0.37994930148124695, 0.48796579241752625, -0.1150459349155426, -0.7315779328346252, -0.046308498829603195, 0.15051333606243134, -0.756550669670105, 1.2103148698806763, 0.11983778327703476, -0.7427150011062622, 0.2172134667634964, -0.723563551902771, -0.7130711078643799, 0.11156411468982697, -0.30321627855300903, -0.30148473381996155, -0.2591293156147003, 0.31947895884513855, 0.6060070395469666, -0.25926634669303894, 0.20808124542236328, -0.15131008625030518, -0.0338401198387146, 0.08104123920202255, -0.1848919838666916, 1.2822743654251099, 0.11487925052642822, -0.24958530068397522, -0.30357176065444946, -1.0670711994171143, -0.07002560049295425, 0.1477602869272232, -0.5397951602935791, -0.46817344427108765, -0.05426837503910065, 0.23993748426437378, 0.13732419908046722, 0.43942925333976746, -0.5394919514656067, 0.22384761273860931, -0.3724144697189331, 0.45183679461479187, 0.7319474220275879, 0.17158576846122742, 0.2592523396015167, -0.36875784397125244, 0.6590903401374817, 0.020441841334104538, 0.27496227622032166, -0.18098577857017517, -0.7796510457992554, -0.6128978133201599, -0.41117703914642334, 0.4160018265247345, 0.6552459001541138, -0.534263551235199, 0.7601483464241028, -0.42129456996917725, -0.23484653234481812, -0.8153871893882751, 0.02882176823914051, 0.4635649621486664, 0.3558630645275116, 0.5086273550987244, -0.18321578204631805, -0.772847592830658, -0.8996438980102539, -0.18580405414104462, -0.13486704230308533, 0.1951727271080017, 0.4909141957759857, 0.6651840806007385, -0.06285198032855988, 0.942771852016449, -0.7656732201576233, -0.48437386751174927, -0.19339388608932495, 0.07212450355291367, 0.2707875669002533, 0.4846351742744446, 0.5523801445960999, -0.8706449270248413, -0.702358603477478, -0.31835705041885376, -0.6147953867912292, -0.09277144819498062, -0.08520296216011047, -0.24167773127555847, 0.08527783304452896, 0.5653665065765381, -0.5479904413223267, 0.5970759391784668, 0.27079781889915466, -0.3726674020290375, 0.4062824547290802, 0.04294424131512642, -0.04788742959499359, -1.1950358152389526, 0.09326022863388062, -0.05625120922923088, -0.06347791105508804, -0.3499825596809387, 0.025314878672361374, -0.14287999272346497, 0.18697381019592285, -0.4295639097690582, 0.6144034266471863, -0.643416166305542, 0.13179007172584534, 0.4087260961532593, 0.5065097808837891, 0.14134500920772552, 0.5142687559127808, -0.14958907663822174, 0.6724113821983337, 0.6173140406608582, -0.523566722869873, 0.266416996717453, 0.4930214583873749, -0.21478968858718872, 0.5264219045639038, -0.5258970260620117, 0.04138210788369179, -0.33734437823295593, -0.133652463555336, -1.1439648866653442, -0.22931496798992157, 0.2214338630437851, -0.7478554248809814, 0.2689421772956848, -0.07851583510637283, -0.48063603043556213, -0.09423922002315521, -0.7594152092933655, 0.0072446889244019985, 0.5166756510734558, -0.3284379839897156, 0.5141556262969971, 0.5992276668548584, -0.03792818635702133, -0.7496827244758606, -0.7345930933952332, 0.008946957066655159, 0.002687959698960185, -0.6287962198257446, 0.36688342690467834, -0.21244944632053375, -0.4211432933807373, 0.30880436301231384, 0.13961073756217957, -0.08909998089075089, 0.14680196344852448, 0.23694899678230286, 0.19078963994979858, -0.3204105496406555, 0.2308153510093689, -0.24491113424301147, 0.12496380507946014, -0.03523104265332222, -0.13110560178756714, 0.7092092037200928, 0.06519415229558945, -0.0530439056456089, -0.24382486939430237, 0.4829360842704773, 0.35856136679649353, -0.2539469003677368, 0.9506332874298096, 0.4846155643463135, -0.4217771589756012, -0.031066864728927612, -0.4072074294090271, -0.0023086541332304478, -0.42798712849617004, 0.36146360635757446, -0.35629090666770935, -0.4934011399745941, 0.6510552167892456, 0.3875476121902466, 0.1446561962366104, 0.799699604511261, 0.019157476723194122, -0.22136586904525757, 0.6638128161430359, 0.3851642310619354, -0.2848193347454071, 0.6106199026107788, -0.7612161040306091, 0.057715173810720444, -0.9938720464706421, -0.42388734221458435, -0.7151645421981812, -0.4889240264892578, -0.7927731871604919, -0.13916660845279694, -0.053048547357320786, 0.2668514847755432, -0.11897097527980804, 0.4802079200744629, -0.3343556523323059, 0.29020658135414124, 0.7099726796150208, 0.03160399571061134, 0.06890295445919037, 0.10269583016633987, -0.23286890983581543, -0.15948133170604706, -0.5902647376060486, -0.4588840901851654, 1.285644292831421, 0.20845761895179749, 0.6026633381843567, 0.3140023350715637, 0.8396697044372559, 0.2817787230014801, 0.05983593314886093, -0.7502884268760681, 0.6969091892242432, -0.41206446290016174, -0.7094822525978088, -0.3889038562774658, -0.23374049365520477, -1.3721667528152466, -0.08463034778833389, -0.20888930559158325, -0.8812186121940613, 0.2966296970844269, -0.0098422234877944, 0.06715724617242813, -0.003991527482867241, -0.5253910422325134, 0.47430747747421265, -0.3192897140979767, -0.5206952095031738, -0.02157793752849102, -0.8660671710968018, 0.03591296449303627, 0.15613998472690582, 0.450853168964386, 0.09045996516942978, -0.05959049612283707, 1.1588757038116455, -0.32959800958633423, 0.8233664631843567, -0.08007688820362091, 0.2851870059967041, 0.3230735957622528, -0.2141362875699997, 0.5550412535667419, -0.1965242326259613, -0.12119236588478088, 0.1806432157754898, -0.23388683795928955, -0.2398035079240799, -0.3778148591518402, 0.6568065881729126, -0.8582322001457214, -0.41800349950790405, -0.42496997117996216, -0.33224764466285706, 0.03428402915596962, 0.4642668068408966, 0.3893788456916809, 0.5190712809562683, -0.0018430034397169948, 0.6841589212417603, 0.37563687562942505, -0.13218870759010315, 0.4653792977333069, 0.44929370284080505, -0.279170423746109, -0.7605867385864258, 0.7723646759986877, 0.5438735485076904, 0.1651226133108139, 0.6633707880973816, 0.2209554761648178, -0.3534654676914215, -0.38385868072509766, 0.18956616520881653, 0.49002355337142944, -0.8458088040351868, -0.1908213496208191, -0.6898356676101685, -0.3239111602306366, -0.8796547055244446, -0.01676536723971367, -0.01931856758892536, -0.7249470353126526, -0.6398611068725586, -0.3278539776802063, 0.5110883712768555, 0.7633863091468811, -0.23639018833637238, 0.4112588167190552, -0.40918731689453125, 0.4407976567745209, 0.03463469073176384, 0.28058743476867676, -0.13403740525245667, -0.5360438823699951, -0.1674058735370636, 0.07862769067287445, -0.331950843334198, -0.863532543182373, 0.3888421654701233, 0.5134979486465454, 0.7817302346229553, 0.42584604024887085, 0.14043878018856049, 0.7675853967666626, -0.366564005613327, 1.2097868919372559, 0.15153926610946655, -0.629580557346344, 0.7482344508171082, -0.12191587686538696, -0.10562603920698166, 0.7083460092544556, 0.6798791885375977, -0.4414282441139221, -0.34752002358436584, -1.192567229270935, -1.3277256488800049, 0.6905526518821716, 0.25602084398269653, -0.0037902826443314552, -0.36329999566078186, 0.40050163865089417, -0.049392059445381165, 0.26806968450546265, -0.887370228767395, -0.7184244394302368, -0.11630497127771378, -0.5675230026245117, -0.0500873364508152, -0.22053809463977814, 0.043488696217536926, -0.26658567786216736, 1.0035710334777832, 0.13738267123699188, 0.22494930028915405, 0.2028636783361435, -0.26783648133277893, 0.11407355219125748, 0.1326151043176651, 0.41215017437934875, 0.44385799765586853, -0.37865516543388367, 0.14215914905071259, -0.29698342084884644, -0.9161091446876526, -0.12489551305770874, 0.04435064271092415, -0.2886389493942261, 0.0010428351815789938, 0.8869707584381104, 0.6452370882034302, 0.057472310960292816, -0.41899392008781433, 0.7347835302352905, -0.07833705097436905, -0.2185325175523758, -0.47349900007247925, 0.13494367897510529, -0.045628245919942856, 0.004163406323641539, 0.3808082342147827, -0.12580174207687378, -0.0009669791324995458, -0.7145122289657593, 0.4072895646095276, 0.49463561177253723, -0.25587940216064453, -0.2944633960723877, 0.5918408036231995, 0.11741545796394348, -0.8943741321563721, 0.7707672715187073, -0.14379219710826874, -0.3684404492378235, 0.626008927822113, 0.6585226655006409, 0.9145144820213318, -0.05999172106385231, 0.05057213082909584, 0.5050297975540161, 0.4949152171611786, 0.06984847038984299, 0.7993915677070618, 0.19893115758895874, -0.8144615888595581, -0.033793576061725616, -0.4554891884326935, 0.07225525379180908, 0.6708718538284302, -0.9035865664482117, 0.43195679783821106, -0.5996688604354858, -0.11097927391529083, 0.1016373336315155, 0.021655628457665443, -0.9177377223968506, 0.13128022849559784, -0.2613525986671448, 1.067918300628662, -1.0185636281967163, 0.5790238976478577, 0.8274270296096802, -0.863479733467102, -0.9463244676589966, 0.09074127674102783, -0.1672065705060959, -0.9964050650596619, 0.8817608952522278, 0.25966179370880127, 0.021725814789533615, -0.055614907294511795, -0.811866819858551, -0.786247968673706, 1.1090590953826904, 0.24822744727134705, -0.6306496858596802, 0.03751835599541664, 0.15071719884872437, 0.46838003396987915, -0.5992423295974731, 0.29858362674713135, 0.3525988757610321, 0.5541343688964844, -0.096490778028965, -0.6298776268959045, -0.07396931946277618, -0.43049174547195435, -0.2506934404373169, -0.14410100877285004, -0.7525532245635986, 1.040557861328125, 0.030917735770344734, -0.18972072005271912, -0.30050864815711975, 0.5918950438499451, 0.011672300286591053, 0.24921374022960663, 0.35268041491508484, 0.513165295124054, 0.9656766057014465, 0.15129554271697998, 0.8699613213539124, -0.4878775179386139, 0.31290122866630554, 1.325562834739685, -0.022440509870648384, 1.1904410123825073, 0.5555256009101868, -0.3767302632331848, 0.5914679169654846, 0.39010411500930786, 0.09486301243305206, 0.6119356751441956, 0.0310512762516737, 0.24781620502471924, -0.023402491584420204, -0.039571262896060944, -0.16663029789924622, 0.5962387919425964, 0.4034024477005005, -0.5589273571968079, 0.19522209465503693, -0.1450030654668808, 0.29673299193382263, 0.12787006795406342, -0.18550792336463928, 0.7277354598045349, -0.010295888409018517, -0.7054416537284851, 0.5575147867202759, -0.08025598526000977, 0.6146416664123535, -0.6038385033607483, -0.27153369784355164, -0.45983585715293884, 0.10871588438749313, -0.365539014339447, -1.0204998254776, 0.046479880809783936, -0.16062666475772858, -0.3299822211265564, -0.10410387814044952, 0.4907122552394867, -0.44312378764152527, -0.5783864259719849, 0.43436199426651, 0.24463820457458496, 0.4083285927772522, 0.3524569869041443, -0.6826554536819458, -0.03170131891965866, 0.23663924634456635, -0.32779237627983093, 0.1073402464389801, 0.4944414496421814, 0.08800564706325531, 0.5834689140319824, 0.5251192450523376, 0.3492649793624878, 0.18609999120235443, 0.012143652886152267, 0.7804532051086426, -0.7652299404144287, -0.5253269672393799, -0.738907516002655, 0.7523485422134399, -0.38694262504577637, -0.5393705368041992, 0.8716561198234558, 0.9211064577102661, 0.894475519657135, 0.17847469449043274, 0.9426411390304565, -0.3903476893901825, 0.4858873784542084, -0.6747002005577087, 0.3337304890155792, -0.608069121837616, 0.4030653238296509, -0.22696305811405182, -0.8012269139289856, -0.2748655378818512, 0.8467056155204773, -0.16361944377422333, -0.044727109372615814, 0.7986867427825928, 0.8570072650909424, -0.1443590223789215, -0.1638106256723404, 0.03566921129822731, 0.5516430139541626, 0.37887316942214966, 0.2905595004558563, 0.3885266184806824, -0.7478250861167908, 0.5139783620834351, -0.22056370973587036, -0.2936016023159027, -0.24280746281147003, -0.9894537329673767, -0.8255975842475891, -0.9267586469650269, -0.48865336179733276, -0.5187700986862183, 0.0303982924669981, 1.0804600715637207, 0.33434104919433594, -0.8125249743461609, -0.27917784452438354, 0.13300175964832306, 0.1712450534105301, -0.3575820028781891, -0.3323822617530823, 0.5798123478889465, -0.11839763075113297, -0.4262273907661438, 0.2900269627571106, 0.010877520777285099, -0.15851891040802002, -0.12381137162446976, -0.16162164509296417, -0.9723494052886963, 0.04126244783401489, 0.5013068914413452, 0.20424486696720123, -0.5347797870635986, -0.5074929594993591, 0.19105656445026398, -0.003476523794233799, 0.33754006028175354, 0.25569048523902893, -0.6079389452934265, 0.2785063087940216, 0.5386212468147278, 0.24929313361644745, 0.49300846457481384, 0.037513092160224915, 0.19068987667560577, -1.1135879755020142, 0.04323488846421242, 0.09262142330408096, 0.45122987031936646, 0.3532724976539612, -0.6137707233428955, 0.619001030921936, 0.45234471559524536, -0.39329275488853455, -0.7537749409675598, 0.024239981546998024, -0.9126940965652466, -0.11336106806993484, 1.4156250953674316, -0.30368462204933167, -0.42303466796875, -0.31189170479774475, -0.07349444180727005, 0.15256522595882416, -0.6383089423179626, 0.4178498685359955, 0.7929823994636536, -0.14634589850902557, -0.029167894273996353, -0.33604440093040466, 0.2665778398513794, -0.0816316232085228, -0.6154068112373352, -0.020470047369599342, 0.433452308177948, 0.4263296127319336, 0.43469366431236267, 0.738709568977356, -0.03436493128538132, -0.0669502466917038, 0.07492828369140625, 0.10655321180820465, -0.07987909018993378, -0.3377421200275421, -0.2548365294933319, 0.20813360810279846, -0.029331663623452187, -0.4777332842350006 ]
null
null
null
null
null
null
null
null
null
null
null
null
null
SocialGrep/ten-million-reddit-answers
SocialGrep
2022-07-01T17:38:25Z
442
6
null
[ "annotations_creators:lexyr", "language_creators:crowdsourced", "multilinguality:monolingual", "size_categories:10M<n<100M", "source_datasets:original", "language:en", "license:cc-by-4.0", "region:us" ]
2022-07-01T17:38:25Z
2022-03-02T23:29:22.000Z
2022-03-02T23:29:22
--- annotations_creators: - lexyr language_creators: - crowdsourced language: - en license: - cc-by-4.0 multilinguality: - monolingual size_categories: - 10M<n<100M source_datasets: - original paperswithcode_id: null --- # Dataset Card for ten-million-reddit-answers ## 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://socialgrep.com/datasets](https://socialgrep.com/datasets?utm_source=huggingface&utm_medium=link&utm_campaign=tenmillionanswers) - **Point of Contact:** [Website](https://socialgrep.com/contact?utm_source=huggingface&utm_medium=link&utm_campaign=tenmillionanswers) ### Dataset Summary This corpus contains ten million question-answer pairs, labeled with score and pre-packaged with results of a basic sentiment predictor. The data was procured from /r/AskReddit using [SocialGrep](https://socialgrep.com/?utm_source=huggingface&utm_medium=link&utm_campaign=tenmillionanswers). ### Languages Mainly English. ## Dataset Structure ### Data Instances A data point is a post or a comment. Due to the separate nature of the two, those exist in two different files - even though many fields are shared. ### Data Fields - 'type': the type of the data point. Can be 'post' or 'comment'. - 'id': the base-36 Reddit ID of the data point. Unique when combined with type. - 'subreddit.id': the base-36 Reddit ID of the data point's host subreddit. Unique. - 'subreddit.name': the human-readable name of the data point's host subreddit. - 'subreddit.nsfw': a boolean marking the data point's host subreddit as NSFW or not. - 'created_utc': a UTC timestamp for the data point. - 'permalink': a reference link to the data point on Reddit. - 'score': score of the data point on Reddit. - 'domain': (Post only) the domain of the data point's link. - 'url': (Post only) the destination of the data point's link, if any. - 'selftext': (Post only) the self-text of the data point, if any. - 'title': (Post only) the title of the post data point. - 'body': (Comment only) the body of the comment data point. - 'sentiment': (Comment only) the result of an in-house sentiment analysis pipeline. Used for exploratory analysis. ## 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 CC-BY v4.0 ### Contributions [Needs More Information]
[ -0.7486907839775085, -0.897322952747345, 0.31492531299591064, 0.44530799984931946, -0.3548884987831116, 0.040018852800130844, -0.28751733899116516, -0.29197022318840027, 0.7586275339126587, 0.50406813621521, -0.9374338388442993, -0.9516481161117554, -0.7085137963294983, 0.3244762718677521, -0.19370317459106445, 1.2001861333847046, 0.15706400573253632, -0.245419442653656, -0.5396844744682312, -0.17759600281715393, -0.20200534164905548, -0.651531457901001, -0.4956589937210083, -0.035279281437397, 0.6870506405830383, 0.5255263447761536, 0.45204803347587585, 0.6591044068336487, 0.7775984406471252, 0.27858486771583557, 0.008791007101535797, 0.023069655522704124, -0.5227276682853699, -0.16302740573883057, -0.18705561757087708, -0.2799128293991089, -0.7756408452987671, 0.20600625872612, 0.4331655502319336, 0.6454479694366455, 0.07918199151754379, 0.8064371943473816, -0.06860677152872086, 0.6458946466445923, -0.4889780282974243, 0.558985710144043, -0.36137574911117554, -0.17063182592391968, -0.13640685379505157, -0.14104895293712616, -0.11174998432397842, -0.8495808839797974, -0.3601934611797333, -0.6067388653755188, 0.04781335964798927, -0.029164044186472893, 0.6751731038093567, 0.057838596403598785, -0.160796120762825, -0.12198390066623688, -0.4732970893383026, 0.7246574759483337, -0.7576167583465576, -0.046007927507162094, 0.5909156799316406, 0.38149845600128174, 0.18434998393058777, -0.818494975566864, -0.6480916142463684, 0.40180933475494385, -0.35634276270866394, 0.1468905359506607, -0.24578627943992615, -0.4097299873828888, 0.6194718480110168, 0.4328085780143738, -0.5266352295875549, -0.7067090272903442, -0.6578388810157776, 0.014667811803519726, 1.0138673782348633, 0.2686466872692108, 0.21002621948719025, -0.4989016056060791, -0.10105593502521515, -0.2976562976837158, -0.37631767988204956, 0.1093032956123352, 0.38112032413482666, 0.6020078659057617, -0.6633350253105164, 0.794590175151825, -0.25699684023857117, 0.5228687524795532, 0.09037119895219803, 0.05999385565519333, 0.5919523239135742, -0.7423328161239624, 0.10247907042503357, -0.31992313265800476, 1.0166772603988647, 0.8608085513114929, 0.33300867676734924, 0.19646906852722168, 0.0989115983247757, 0.11756493151187897, 0.11413484066724777, -0.7037926316261292, -0.33558952808380127, 0.5108439922332764, -0.6350240111351013, -0.6016981601715088, 0.4255122244358063, -1.0286939144134521, -0.42994424700737, -0.1862143725156784, 0.09039651602506638, -0.0225700531154871, -0.4961358606815338, -0.015432080253958702, -0.37208637595176697, 0.2782875895500183, 0.04141826927661896, -0.6343262791633606, 0.48075735569000244, 0.5830087065696716, 0.641096830368042, -0.056521911174058914, -0.1798090934753418, 0.004345205146819353, -0.015894358977675438, 0.019724786281585693, 0.8576831221580505, -0.5445493459701538, -0.3863734304904938, 0.06057390943169594, 0.5559007525444031, -0.0008013219339773059, -0.39478054642677307, 0.6314921379089355, -0.3510960042476654, 0.23553155362606049, -0.8005321621894836, -0.49170610308647156, -0.205229252576828, 0.45017996430397034, -0.8214982151985168, 1.0954490900039673, 0.21271292865276337, -1.0760416984558105, 0.22847750782966614, -0.8920305967330933, -0.4244374930858612, 0.005400225520133972, -0.07185698300600052, -0.3270372450351715, -0.11554483324289322, 0.01747189089655876, 0.5395039319992065, -0.32145956158638, -0.02876034565269947, -0.42787685990333557, -0.2052929550409317, 0.24917341768741608, -0.019271699711680412, 1.0914244651794434, 0.05326901376247406, -0.10912979394197464, 0.0748099833726883, -0.9031946659088135, 0.03321840986609459, 0.4192611575126648, -0.32350146770477295, -0.2165071815252304, -0.2232920229434967, 0.19108161330223083, 0.26185324788093567, 0.49128973484039307, -0.7260451316833496, 0.14509785175323486, -0.08831124007701874, 0.5220866799354553, 0.5053272843360901, 0.4552958309650421, 0.3305515646934509, -0.48216718435287476, 0.5976772308349609, 0.1869150698184967, 0.469927042722702, 0.21202753484249115, -0.6852945685386658, -0.6968915462493896, 0.2529714107513428, 0.15588226914405823, 0.6914305686950684, -0.5313102006912231, 0.5932210087776184, -0.46300461888313293, -0.6011731624603271, -0.5051521062850952, 0.05312024801969528, 0.15781204402446747, 0.5483466982841492, 0.47096511721611023, -0.21519505977630615, -0.8421684503555298, -0.7348077297210693, -0.026376422494649887, -0.15082961320877075, 0.11828037351369858, 0.7114974856376648, 0.8324431777000427, -0.21188323199748993, 0.7728902101516724, -0.8312944769859314, -0.14845864474773407, -0.3458624482154846, 0.17888258397579193, 0.44189637899398804, 0.3259178698062897, 0.3947235643863678, -0.9388785362243652, -0.7023391723632812, -0.21477526426315308, -0.8420252203941345, -0.18145382404327393, -0.03397200256586075, -0.26906734704971313, -0.03835245594382286, 0.43706291913986206, -0.570874035358429, 0.4215400815010071, 0.48778408765792847, -0.44418901205062866, 0.4408062696456909, 0.08610542863607407, 0.35523730516433716, -1.2067759037017822, 0.20646820962429047, 0.12000805139541626, 0.10175980627536774, -0.35295233130455017, -0.225002720952034, 0.12367797642946243, 0.025605492293834686, -0.4780649244785309, 0.642158031463623, -0.2704369127750397, 0.16716594994068146, 0.16471382975578308, 0.2905128598213196, 0.027021463960409164, 0.5977116227149963, -0.13838380575180054, 0.576991856098175, 0.42216458916664124, -0.49910813570022583, 0.6133133172988892, 0.33728957176208496, -0.11253958940505981, 0.6664257645606995, -1.005636215209961, 0.09975144267082214, -0.35522550344467163, 0.14088726043701172, -1.0618976354599, -0.5434792637825012, 0.46130433678627014, -0.909942090511322, -0.13754504919052124, 0.010447957552969456, -0.36660143733024597, -0.46782124042510986, -0.7442818284034729, 0.37684881687164307, 0.3872648775577545, -0.009421809576451778, 0.5688826441764832, 0.7581393718719482, -0.2070837914943695, -0.5443540811538696, -0.7022370100021362, -0.023640746250748634, -0.16821017861366272, -0.6968123912811279, 0.26118600368499756, -0.2696307897567749, -0.3126811683177948, 0.37125903367996216, 0.41011789441108704, 0.10208724439144135, -0.13287422060966492, 0.47800567746162415, 0.04016856476664543, 0.1250675618648529, 0.059944599866867065, -0.22156769037246704, -0.17515096068382263, 0.338339626789093, 0.2177465558052063, 0.722400963306427, -0.08998434990644455, -0.25718310475349426, -0.3431152403354645, 0.46366584300994873, 0.4838031530380249, -0.18119728565216064, 0.7289559245109558, 0.6341990828514099, -0.38763564825057983, -0.06925444304943085, -0.4024110436439514, -0.31006914377212524, -0.41291704773902893, 0.17577022314071655, -0.1280592381954193, -0.5786164402961731, 0.8726820349693298, 0.06370054185390472, 0.3233872056007385, 0.7720513939857483, 0.41081416606903076, -0.2601342499256134, 0.9647754430770874, 0.5060803890228271, -0.19012750685214996, 0.41492244601249695, -0.5500075817108154, 0.1956188976764679, -0.6824575066566467, -0.3718791604042053, -0.5232471227645874, -0.5726777911186218, -0.7125651240348816, -0.44942277669906616, 0.051394060254096985, -0.14593660831451416, -0.3175727128982544, 0.5128787159919739, -0.5336783528327942, 0.41383713483810425, 0.7858806252479553, 0.1705959290266037, 0.04364544153213501, 0.004723100457340479, 0.2799171507358551, -0.04218049719929695, -0.5283401012420654, -0.4844282865524292, 1.2476000785827637, 0.3067605495452881, 0.7345335483551025, 0.07436710596084595, 0.7540105581283569, 0.48230576515197754, 0.21248243749141693, -0.511015772819519, 0.8444230556488037, -0.3645007014274597, -0.5949897170066833, -0.19643165171146393, -0.3166036903858185, -0.6998541951179504, -0.44325050711631775, -0.3717593252658844, -0.310250461101532, 0.32674112915992737, 0.10618463903665543, -0.31533297896385193, 0.2795009911060333, -0.5391192436218262, 0.9297191500663757, -0.0017685582861304283, -0.2548113167285919, 0.07793828099966049, -0.9748767614364624, 0.11102405935525894, 0.25090479850769043, 0.41102689504623413, -0.14141979813575745, 0.06834373623132706, 0.9307005405426025, -0.3671029806137085, 1.1254504919052124, -0.3318237364292145, 0.2891976237297058, 0.4796706736087799, -0.3863685727119446, 0.5009127855300903, -0.039920393377542496, 0.01926303282380104, 0.3141968548297882, 0.024089718237519264, -0.34773293137550354, -0.4363831877708435, 0.7328583598136902, -0.871768057346344, -0.1758217215538025, -0.22387909889221191, -0.3112577497959137, -0.08893628418445587, 0.0895523875951767, 0.2808346748352051, 0.2434951663017273, -0.18806636333465576, 0.5358262658119202, 0.6048176884651184, -0.28370749950408936, 0.26251667737960815, 0.16023799777030945, -0.1520751416683197, -0.7536723017692566, 0.8062645196914673, 0.18447114527225494, 0.06521223485469818, 0.3180454969406128, 0.14138491451740265, -0.5791886448860168, -0.1110016405582428, -0.22410190105438232, 0.4979289174079895, -0.7256132960319519, -0.22573886811733246, -0.7345534563064575, -0.3366316258907318, -0.8101193904876709, -0.11179821193218231, -0.03604656830430031, -0.5923547148704529, -0.34501150250434875, -0.46544960141181946, 0.7566239833831787, 0.5656001567840576, -0.4763462245464325, 0.2752416729927063, -0.6529641151428223, 0.28610020875930786, 0.37705278396606445, 0.3766942024230957, -0.11538046598434448, -0.36179909110069275, -0.1449488401412964, 0.23069356381893158, 0.04142901301383972, -0.7329607009887695, 0.33620506525039673, 0.09624157845973969, 0.39707064628601074, 0.16928605735301971, 0.31678637862205505, 0.5673978924751282, 0.015447181649506092, 0.9524493217468262, -0.0003943188057746738, -0.4277331829071045, 0.8184701204299927, -0.44676485657691956, 0.33225637674331665, 0.8661035299301147, 0.49370965361595154, -0.7949624061584473, -0.37557584047317505, -0.8124911785125732, -0.9701300263404846, 0.4488019645214081, -0.05606825649738312, 0.49131226539611816, -0.4274164140224457, 0.4428688585758209, -0.22615791857242584, 0.22371046245098114, -1.0034236907958984, -0.6993025541305542, -0.15006819367408752, -0.39443239569664, 0.10343914479017258, -0.3535011112689972, -0.38900014758110046, -0.5071559548377991, 0.7766645550727844, 0.03313349932432175, 0.3590986728668213, -0.03667472302913666, 0.10665889084339142, -0.19535741209983826, 0.11170980334281921, 0.43884187936782837, 0.6386561989784241, -0.3695373237133026, 0.14987976849079132, 0.046738509088754654, -0.6746045351028442, -0.20995227992534637, 0.07462848722934723, -0.35290029644966125, -0.09940105676651001, 0.38994452357292175, 0.4813023805618286, 0.04625680297613144, -0.37670278549194336, 0.6694464683532715, -0.3362644910812378, -0.3332010805606842, -0.5851293802261353, -0.015049654059112072, 0.27187448740005493, 0.23856645822525024, 0.18229041993618011, -0.05217985063791275, -0.16669590771198273, -0.6036936044692993, 0.41399094462394714, 0.18962362408638, -0.44876599311828613, -0.3904854953289032, 0.7032079696655273, 0.25758859515190125, -0.3714001178741455, 0.41905173659324646, -0.18779809772968292, -0.24696749448776245, 0.7758433222770691, 0.1908458173274994, 0.8093114495277405, 0.11833759397268295, 0.5340288281440735, 0.828509509563446, 0.2571188807487488, 0.09400835633277893, 0.9118049740791321, 0.07982368767261505, -0.8136422634124756, -0.18242473900318146, -0.8619641661643982, -0.2125161737203598, 0.19968214631080627, -0.7296251654624939, 0.3494105041027069, -0.7856294512748718, -0.47668197751045227, 0.18571463227272034, 0.15242041647434235, -0.6430732607841492, 0.35891154408454895, -0.14877425134181976, 0.9277737140655518, -1.1781553030014038, 0.4087012708187103, 1.0129731893539429, -0.7854757308959961, -0.8069528341293335, -0.35524335503578186, 0.14676883816719055, -0.7393988370895386, 0.4325387477874756, -0.17004598677158356, 0.17181873321533203, -0.03288908675312996, -0.9064345359802246, -0.6948094367980957, 1.063854455947876, -0.14596278965473175, -0.16601240634918213, 0.287160724401474, 0.4507848918437958, 0.5387696027755737, -0.5046087503433228, 0.19380377233028412, 0.4696212410926819, 0.6647709608078003, 0.24001440405845642, -0.35745322704315186, 0.23412005603313446, -0.6548632383346558, -0.3493882715702057, 0.0647200420498848, -0.6725574731826782, 0.8693929314613342, -0.08189154416322708, -0.22972285747528076, -0.33494409918785095, 0.42377015948295593, 0.28975963592529297, 0.20169462263584137, 0.5612218976020813, 0.7893784046173096, 0.531295657157898, -0.31423327326774597, 1.0048599243164062, -0.6119982600212097, 0.629493236541748, 1.0630017518997192, 0.18160952627658844, 0.9208019375801086, 0.420672744512558, -0.4234052896499634, 0.46032124757766724, 0.7141799926757812, -0.18436628580093384, 0.44347044825553894, -0.009829419665038586, -0.20804113149642944, -0.1256682574748993, -0.31388580799102783, -0.5150451064109802, 0.3169766068458557, 0.23777957260608673, -0.6821734309196472, -0.06648314744234085, -0.32458359003067017, 0.2803368866443634, 0.0153891546651721, -0.3603839874267578, 0.9885420203208923, -0.04826736822724342, -0.41235628724098206, 0.18637391924858093, -0.19438381493091583, 0.6335662603378296, -0.5009717345237732, -0.08582520484924316, -0.4813900589942932, 0.1603376865386963, -0.47493261098861694, -1.1592432260513306, 0.5761778950691223, 0.02860681526362896, -0.45438554883003235, -0.34136998653411865, 0.8008584976196289, -0.3965934216976166, -1.0397573709487915, 0.1828753501176834, 0.513459324836731, 0.23592807352542877, 0.009654764086008072, -0.8813413977622986, 0.19343404471874237, 0.18116874992847443, -0.39325305819511414, 0.1263073831796646, 0.5034905672073364, 0.10859324783086777, 0.47788819670677185, 0.6219518780708313, 0.3391910493373871, -0.06386744230985641, 0.2964530289173126, 1.0097079277038574, -1.056857943534851, -0.366874635219574, -0.6836041808128357, 0.6979405283927917, -0.5955470204353333, -0.41949331760406494, 0.8585445284843445, 0.5694400072097778, 0.9120833277702332, -0.08387475460767746, 0.9917017221450806, -0.6452721953392029, 0.9287076592445374, 0.020128989592194557, 0.8563587665557861, -0.7243270874023438, -0.019366662949323654, -0.4749583601951599, -0.8116917014122009, -0.4134487211704254, 0.6718228459358215, -0.381137490272522, 0.09948162734508514, 0.41005635261535645, 0.9771050214767456, 0.1436520218849182, 0.13672032952308655, 0.025367988273501396, 0.4441843330860138, 0.06597348302602768, 0.29825878143310547, 0.6256657242774963, -0.4876600205898285, 0.5513238906860352, -0.7542497515678406, -0.21043840050697327, -0.024811433628201485, -0.8185383081436157, -0.711148738861084, -0.6885814666748047, -0.5810499787330627, -0.42796361446380615, -0.2521427571773529, 0.7369572520256042, 0.5331278443336487, -1.0065717697143555, -0.26468485593795776, 0.08942729234695435, 0.16634432971477509, -0.07057376950979233, -0.3611329197883606, 0.3832501769065857, 0.228733092546463, -0.6155874133110046, -0.2681964635848999, 0.21489393711090088, -0.1787157654762268, -0.13687820732593536, 0.07909124344587326, -0.2694311738014221, 0.12968173623085022, 0.7386983036994934, 0.39565810561180115, -0.4360755681991577, -0.44030141830444336, 0.31506240367889404, -0.012750957161188126, -0.025886140763759613, 0.41246458888053894, -0.3799417018890381, 0.20719686150550842, 0.9154691696166992, 0.17631760239601135, 0.3585103154182434, 0.5926641225814819, 0.1305452287197113, -0.7518545389175415, -0.07529132068157196, 0.17079460620880127, 0.27480292320251465, 0.29003769159317017, -0.3587895929813385, 0.5960618853569031, 0.3942512273788452, -0.5884326696395874, -0.50905442237854, -0.18147657811641693, -1.2040886878967285, -0.10263501107692719, 1.328637957572937, -0.053255174309015274, -0.33511096239089966, -0.14176401495933533, -0.19940926134586334, 0.015440277755260468, -0.6461099982261658, 0.6767514944076538, 0.8329172730445862, -0.23947513103485107, -0.3703037202358246, -0.5163838863372803, 0.5687182545661926, -0.21725305914878845, -1.1495646238327026, 0.18583214282989502, 0.5168513059616089, 0.3116762936115265, 0.27591410279273987, 0.8561492562294006, -0.3756110370159149, 0.059049587696790695, 0.05153769254684448, 0.12007294595241547, 0.14072257280349731, -0.16864405572414398, -0.08377815037965775, 0.3688044846057892, -0.3305511772632599, -0.2625214457511902 ]
null
null
null
null
null
null
null
null
null
null
null
null
null
unicamp-dl/mrobust
unicamp-dl
2023-11-23T10:45:25Z
442
1
null
[ "arxiv:2209.13738", "arxiv:2105.06813", "region:us" ]
2023-11-23T10:45:25Z
2022-03-02T23:29:22.000Z
2022-03-02T23:29:22
# Dataset Summary **mRobust** is a multilingual version of the [TREC 2004 Robust passage ranking dataset](https://trec.nist.gov/data/robust/04.guidelines.html). For more information, checkout our papers: * [**mRobust: A Multilingual Version of the MS MARCO Passage Ranking Dataset**](https://arxiv.org/abs/2209.13738) * [**A cost-benefit analysis of cross-lingual transfer methods**](https://arxiv.org/abs/2105.06813) The current version is composed 10 languages: Chinese, French, German, Indonesian, Italian, Portuguese, Russian, Spanish, Dutch and Vietnamese. ### Supported languages | Language name | Language code | |---------------|---------------| | English | english | | Chinese | chinese | | French | french | | German | german | | Indonesian | indonesian | | Italian | italian | | Portuguese | portuguese | | Russian | russian | | Spanish | spanish | | Dutch | dutch | | Vietnamese | vietnamese | # Dataset Structure You can load mRobust dataset by choosing a specific language. We include the translated collections of documents and queries. #### Queries ```python >>> dataset = load_dataset('unicamp-dl/mrobust', 'queries-spanish') >>> dataset['queries'][1] {'id': '302', 'text': '¿Está controlada la enfermedad de la poliomielitis (polio) en el mundo?'} ``` #### Collection ```python >>> dataset = load_dataset('unicamp-dl/mrobust', 'collection-portuguese') >>> dataset['collection'][5] {'id': 'FT931-16660', 'text': '930105 FT 05 JAN 93 / Cenelec: Correção O endereço do Cenelec, Comitê Europeu de Normalização Eletrotécnica, estava incorreto na edição de ontem. É Rue de Stassart 35, B-1050, Bruxelas, Tel (322) 519 6871. CEN, Comitê Europeu de Normalização, está localizado na Rue de Stassart 36, B-1050, Bruxelas, Tel 519 6811.'} ``` # Citation Information ``` @misc{https://doi.org/10.48550/arxiv.2209.13738, doi = {10.48550/ARXIV.2209.13738}, url = {https://arxiv.org/abs/2209.13738}, author = {Jeronymo, Vitor and Nascimento, Mauricio and Lotufo, Roberto and Nogueira, Rodrigo}, title = {mRobust04: A Multilingual Version of the TREC Robust 2004 Benchmark}, publisher = {arXiv}, year = {2022}, copyright = {Creative Commons Attribution 4.0 International} } ```
[ -0.26783987879753113, -0.5204784274101257, 0.18478958308696747, 0.38077041506767273, -0.3253862261772156, 0.09184886515140533, -0.3084403872489929, -0.5111981630325317, 0.36778318881988525, 0.3377789556980133, -0.408397912979126, -0.8501215577125549, -0.44896048307418823, 0.5271958112716675, 0.18340769410133362, 0.9548963308334351, -0.0482875294983387, 0.06502019613981247, 0.015604283660650253, -0.46847519278526306, -0.21789085865020752, -0.5019691586494446, -0.46557649970054626, -0.13200582563877106, 0.6305586099624634, 0.5271506309509277, 0.622279942035675, 0.5528432130813599, 0.7873984575271606, 0.3702657222747803, 0.10014812648296356, 0.05118194967508316, -0.31035876274108887, 0.06216856837272644, -0.18807345628738403, -0.5863776803016663, -0.6062108874320984, -0.19558943808078766, 0.922961413860321, 0.6465195417404175, -0.32380616664886475, -0.05853893235325813, 0.11291185021400452, 0.7309661507606506, -0.27539321780204773, 0.05020434409379959, -0.5353683233261108, 0.05653999373316765, -0.42970794439315796, -0.4268859922885895, -0.4786830246448517, -0.4281825125217438, -0.02048056200146675, -0.5325666069984436, 0.128724604845047, 0.06288869678974152, 1.33722722530365, -0.01911020278930664, -0.5774380564689636, -0.12114550173282623, -0.13625459372997284, 1.0733810663223267, -0.7865238189697266, 0.7058300971984863, 0.508928120136261, 0.2886717915534973, -0.17411589622497559, -0.7526897192001343, -0.23881901800632477, -0.0394301563501358, -0.1918451189994812, 0.17829544842243195, -0.21654996275901794, -0.3041110336780548, 0.07333780080080032, 0.22251372039318085, -1.0321472883224487, -0.09795428812503815, -0.6746670007705688, -0.6969475150108337, 0.7185493111610413, 0.054956816136837006, 0.17701436579227448, -0.3229106664657593, -0.5952754616737366, -0.4829198718070984, -0.5425627827644348, 0.2543798089027405, 0.561834454536438, 0.6369507908821106, -0.6036561727523804, 0.2730252146720886, -0.26397705078125, 0.8283740878105164, -0.42082786560058594, -0.5748879909515381, 0.9580299258232117, -0.829605221748352, -0.012057740241289139, -0.09596314281225204, 1.183109998703003, 0.2184344232082367, 0.05513400956988335, 0.1043623611330986, -0.057532113045454025, -0.562569260597229, -0.01559269055724144, -0.9097962379455566, -0.3297368586063385, 0.29451820254325867, -0.5092225074768066, -0.14978964626789093, 0.3085034489631653, -1.2692008018493652, 0.21846160292625427, -0.03777538985013962, 0.157711923122406, -0.4624510407447815, -0.32641667127609253, 0.05789327993988991, 0.027578206732869148, 0.19883039593696594, 0.09171126037836075, -0.46165645122528076, 0.03063112124800682, 0.10671674460172653, 1.1762162446975708, -0.43611031770706177, -0.516520619392395, -0.400950163602829, 0.042139630764722824, -0.23901383578777313, 0.9769437313079834, -0.4538280665874481, -0.5601493120193481, 0.012237894348800182, 0.4118466377258301, -0.39969566464424133, -0.4587933421134949, 0.986737072467804, -0.16165365278720856, 0.6229396462440491, -0.1778702437877655, 0.1886245608329773, -0.3643306493759155, 0.37441378831863403, -0.6057630777359009, 1.2359780073165894, 0.131571426987648, -0.8568929433822632, 0.18344877660274506, -0.6151577234268188, -0.6928367018699646, -0.14444762468338013, 0.1103878915309906, -0.7177342772483826, -0.5992680788040161, 0.3827110826969147, 0.34091147780418396, -0.034796178340911865, 0.3309646248817444, -0.49773645401000977, -0.03516019880771637, 0.14112015068531036, -0.5701243877410889, 1.3666858673095703, 0.6372411847114563, -0.15221531689167023, 0.138347327709198, -0.7839117050170898, 0.1612844169139862, 0.1672339141368866, -0.694278359413147, -0.3173215687274933, -0.26043033599853516, 0.1093083843588829, 0.4446185231208801, 0.38360652327537537, -0.42760664224624634, 0.27383357286453247, -0.3297883868217468, 0.4067155122756958, 0.6195290684700012, 0.09483645856380463, 0.19396057724952698, -0.3588258922100067, 0.7463938593864441, 0.12679877877235413, 0.20282243192195892, -0.2097686529159546, -0.7420626878738403, -0.49532291293144226, -0.47811493277549744, 0.5024669170379639, 0.9753304719924927, -1.0364731550216675, 0.3989280164241791, -0.689227819442749, -0.5140666365623474, -0.5939959287643433, 0.14067769050598145, 0.4170611500740051, 0.48313361406326294, 0.5433067083358765, 0.004763818345963955, -0.4257751405239105, -0.9656866192817688, 0.01957543194293976, -0.2409176379442215, 0.04715118184685707, 0.40057486295700073, 0.7807549238204956, -0.27627119421958923, 0.37270376086235046, -0.4715404510498047, -0.5051613450050354, -0.3086642026901245, 0.08915431797504425, 0.5493349432945251, 0.6979045271873474, 0.9829619526863098, -0.7820262312889099, -0.7752753496170044, 0.2804948687553406, -0.7020071148872375, -0.2635532319545746, -0.20364496111869812, -0.48710379004478455, 0.4486677348613739, 0.2482999712228775, -0.12321390211582184, 0.21314950287342072, 0.7860870957374573, -0.5501193404197693, 0.479669988155365, -0.43698829412460327, 0.6261264681816101, -1.2668676376342773, 0.2929565906524658, -0.18957695364952087, -0.21828626096248627, -0.4154093563556671, 0.08750028908252716, 0.2569853663444519, 0.09357266873121262, -0.7901712656021118, 0.6231355667114258, -0.7321019172668457, 0.2783152461051941, 0.3675892949104309, 0.3677753806114197, 0.08326472342014313, 0.7501577734947205, 0.1340586245059967, 0.8802728652954102, 0.8124464154243469, -0.526347279548645, 0.2256654053926468, 0.4480537176132202, -0.29776862263679504, 0.814131498336792, -0.5982906818389893, -0.25215575098991394, 0.27980467677116394, 0.22005116939544678, -1.1224498748779297, 0.016354402527213097, 0.4160423278808594, -0.6987354159355164, 0.4409274458885193, -0.18793241679668427, -0.4495411217212677, -0.56886225938797, -0.5035262703895569, 0.24292252957820892, -0.0045080711133778095, -0.36597713828086853, 0.40795639157295227, 0.27507317066192627, -0.5480412244796753, -0.8330538272857666, -1.107163906097412, 0.1509258896112442, -0.28916871547698975, -0.8870429992675781, 0.2938368320465088, -0.28713729977607727, 0.23148249089717865, -0.17387159168720245, 0.07384189963340759, -0.20749714970588684, -0.14495199918746948, -0.19638590514659882, 0.3897077739238739, -0.23929011821746826, -0.083913654088974, 0.2506016194820404, -0.07098272442817688, -0.11926907300949097, -0.03561794385313988, 0.4503929316997528, -0.1564207375049591, -0.1693480908870697, -0.3467569351196289, 0.4163627326488495, 0.5509718060493469, -0.49604690074920654, 0.8435355424880981, 0.8362632989883423, -0.14972469210624695, 0.06602203100919724, -0.2262227088212967, -0.09536275267601013, -0.4715556204319, 0.3322770595550537, -0.8096868991851807, -0.533378541469574, 0.9270006418228149, 0.4508680999279022, 0.2923913598060608, 0.7069711089134216, 0.5986475944519043, 0.08674152195453644, 0.7879121899604797, 0.5457974672317505, 0.11384628713130951, 0.4587812125682831, -0.4915720224380493, 0.04428132623434067, -0.7678837180137634, -0.4607256054878235, -1.079335331916809, -0.2902296483516693, -0.7839348316192627, -0.49264898896217346, 0.3726317286491394, -0.23246793448925018, 0.02239237353205681, 0.5116344690322876, -0.4695485830307007, 0.05547710880637169, 0.7280540466308594, 0.06734632700681686, 0.36236098408699036, 0.13105370104312897, -0.6710150241851807, -0.14583808183670044, -0.9767365455627441, -0.44704627990722656, 1.2882404327392578, 0.2791194021701813, 0.7087221145629883, 0.527999758720398, 0.5399962067604065, 0.20109860599040985, 0.23879197239875793, -0.5050234198570251, 0.4873494803905487, 0.08397675305604935, -0.9190798401832581, -0.3431931734085083, -0.822357714176178, -1.4916961193084717, 0.6903138160705566, -0.2857491374015808, -0.6944291591644287, 0.6347585916519165, -0.08707337081432343, -0.039725396782159805, 0.42123445868492126, -0.6967733502388, 1.082688331604004, -0.39242759346961975, -0.5997291803359985, 0.018869850784540176, -0.9891223311424255, 0.3781537115573883, -0.19915448129177094, 0.4361344575881958, -0.02532421052455902, -0.2189868986606598, 1.0166025161743164, -0.39339035749435425, 0.4853905439376831, -0.10278326272964478, -0.10080842673778534, 0.23143769800662994, -0.0941845029592514, 0.6089738607406616, 0.015493643470108509, -0.37702369689941406, 0.6659538149833679, 0.37560713291168213, -0.6058730483055115, -0.01280084066092968, 0.7836722135543823, -0.6654907464981079, -0.22911012172698975, -0.7709158658981323, -0.5087409615516663, -0.005827960092574358, 0.6249701380729675, 0.4655494689941406, 0.37752655148506165, -0.02604135498404503, 0.49431803822517395, 0.5141910910606384, -0.4738093316555023, 0.47101905941963196, 0.8410465717315674, 0.023505134508013725, -0.786721408367157, 0.9842094779014587, 0.25844714045524597, 0.19196651875972748, 0.67144376039505, 0.20509493350982666, -0.6947415471076965, -0.6591663956642151, -0.5322494506835938, 0.5343776345252991, -0.6596499085426331, -0.4112631380558014, -0.823695182800293, 0.15691879391670227, -0.6397681832313538, -0.047209374606609344, -0.17393158376216888, -0.2846114933490753, -0.20833748579025269, -0.24587543308734894, 0.21586793661117554, 0.025645989924669266, -0.34752532839775085, 0.28321653604507446, -0.8702114820480347, 0.2452654093503952, -0.2226383239030838, 0.45934048295021057, -0.25857099890708923, -0.7814964652061462, -0.5110359787940979, 0.18840324878692627, -0.551586925983429, -1.1161104440689087, 0.6309705972671509, 0.31233295798301697, 1.032013177871704, 0.6306015849113464, 0.33934688568115234, 0.7712130546569824, -0.25453564524650574, 0.788775622844696, 0.11771195381879807, -0.5914226174354553, 0.6042390465736389, -0.5178330540657043, 0.3017752468585968, 0.7933868765830994, 0.5714807510375977, -0.48034390807151794, -0.5349910855293274, -0.6505632400512695, -0.9809296131134033, 0.9022130966186523, 0.32962557673454285, -0.2858011722564697, 0.19146527349948883, -0.25215208530426025, 0.036449458450078964, 0.1541789323091507, -0.9035403728485107, -0.5028383135795593, -0.2631896436214447, -0.17871138453483582, -0.23800314962863922, -0.03470678627490997, -0.2081926465034485, -0.2667936384677887, 0.9008359313011169, 0.01972995698451996, 0.44334131479263306, 0.43005385994911194, -0.10491089522838593, -0.02649904228746891, 0.3543538451194763, 0.9829011559486389, 0.6406614780426025, -0.3651011288166046, 0.08865184336900711, 0.17217552661895752, -0.7225680351257324, -0.07705332338809967, 0.33159512281417847, -0.12346788495779037, 0.284013956785202, 0.6044564843177795, 0.5885473489761353, 0.0013255804078653455, -0.6736183166503906, 0.5232044458389282, 0.025650721043348312, -0.6847204566001892, -0.13134807348251343, -0.23702821135520935, -0.18730592727661133, 0.0331389382481575, 0.38636514544487, 0.04096902161836624, 0.2436928004026413, -0.46090686321258545, 0.30430978536605835, 0.3813336193561554, -0.32035839557647705, -0.2592003345489502, 0.6902436017990112, 0.3192782998085022, 0.11592055857181549, 0.5615184903144836, -0.09887735545635223, -0.5942137837409973, 0.5206409692764282, 0.3518528640270233, 0.651947557926178, -0.4895220100879669, 0.18742641806602478, 0.8560308218002319, 0.7528567910194397, 0.09286987036466599, 0.4638391137123108, -0.05526696890592575, -0.5260730981826782, -0.18572407960891724, -0.5072300434112549, -0.2720654010772705, 0.05505278706550598, -0.6789363622665405, 0.23085452616214752, 0.1695803701877594, -0.15231209993362427, -0.21660876274108887, 0.34355857968330383, -0.6043861508369446, 0.005001358222216368, -0.231905996799469, 0.9559722542762756, -1.0046716928482056, 0.9937669634819031, 0.8811735510826111, -0.472468763589859, -0.6440103650093079, -0.33995386958122253, -0.032809678465127945, -0.5991398096084595, 0.06316038966178894, -0.13565416634082794, -0.02981417067348957, -0.38977545499801636, -0.35139864683151245, -1.004765272140503, 1.0333201885223389, 0.24699774384498596, -0.43534940481185913, 0.30933234095573425, 0.12490029633045197, 0.5165758728981018, -0.14467577636241913, 0.37637120485305786, 0.3142929971218109, 1.0542162656784058, 0.14213773608207703, -1.091456413269043, -0.05035414546728134, -0.608874499797821, -0.37782540917396545, 0.21227794885635376, -0.8771090507507324, 0.7368143796920776, -0.371935099363327, -0.1664789617061615, -0.057351887226104736, 0.5980057120323181, 0.218213751912117, 0.47198182344436646, 0.13699881732463837, 0.5650264024734497, 0.9065150022506714, -0.5348548889160156, 0.9031200408935547, -0.3564228415489197, 0.4715052545070648, 0.9657187461853027, 0.06754934042692184, 1.0178122520446777, 0.5412497520446777, -0.5274883508682251, 0.7248764634132385, 0.8822205662727356, -0.11796066910028458, 0.6364107131958008, -0.3309517502784729, 0.20651495456695557, -0.0994851216673851, 0.2138746827840805, -0.6819556951522827, 0.18368878960609436, 0.22808541357517242, -0.3493073284626007, -0.17110051214694977, 0.21987475454807281, 0.27161118388175964, -0.07873193919658661, -0.08826132863759995, 0.5572385191917419, -0.06213786080479622, -0.7086228728294373, 1.0732460021972656, -0.03139328584074974, 0.7651508450508118, -0.9171735048294067, 0.19397547841072083, -0.5446422696113586, 0.19563692808151245, -0.3573901057243347, -1.0743745565414429, 0.40881070494651794, -0.08149773627519608, -0.12965717911720276, -0.29662978649139404, 0.257082998752594, -0.578395426273346, -0.843396782875061, 0.31141170859336853, 0.7183162569999695, 0.5636836290359497, 0.22743496298789978, -1.1159287691116333, 0.052021171897649765, 0.5022115707397461, -0.4209249019622803, 0.31085529923439026, 0.609656810760498, -0.1430702954530716, 0.9362170696258545, 0.823936939239502, 0.3181988298892975, 0.17905963957309723, -0.16425663232803345, 0.5831089615821838, -0.6525967121124268, -0.8267408609390259, -0.5179248452186584, 0.7006638646125793, -0.011614389717578888, -0.5266899466514587, 0.8748260140419006, 0.9480960369110107, 0.8652380704879761, -0.03643738478422165, 0.7602559328079224, -0.22330936789512634, 0.6307581663131714, -0.3087475895881653, 0.729473888874054, -1.0146973133087158, 0.10081971436738968, -0.43415120244026184, -0.8868252038955688, -0.49193960428237915, 0.7067046761512756, -0.2250317931175232, 0.02435695193707943, 0.8704522252082825, 0.9575605988502502, -0.21112483739852905, -0.4908066391944885, 0.36485809087753296, 0.34337714314460754, 0.37162891030311584, 0.6928471922874451, 0.20339129865169525, -0.5324597358703613, 1.1657143831253052, -0.4451211392879486, -0.2390037477016449, -0.3818628787994385, -0.831994354724884, -0.9033326506614685, -0.6118503212928772, -0.4739038944244385, -0.3054640591144562, -0.023806272074580193, 0.6262836456298828, 0.6091873049736023, -1.109736680984497, -0.4308174252510071, 0.4017433822154999, 0.4910600483417511, -0.4980776309967041, -0.3114563524723053, 0.6089863181114197, -0.10190802067518234, -0.8862667083740234, 0.2387762814760208, 0.1210973784327507, 0.1316317915916443, -0.08567176759243011, -0.2620805501937866, -0.5579821467399597, -0.04856135696172714, 0.5095698237419128, 0.37162598967552185, -0.515057384967804, 0.2080688327550888, 0.1423000991344452, -0.2655685842037201, 0.43489763140678406, 0.23310990631580353, -0.43389958143234253, 0.45409131050109863, 0.8704652786254883, 0.19861797988414764, 0.2933865189552307, 0.08686821907758713, 0.28611016273498535, -0.5589606761932373, 0.40105190873146057, 0.03381818160414696, 0.6125086545944214, 0.2786143124103546, -0.19150811433792114, 0.6879678964614868, 0.4977184534072876, -0.5457924008369446, -0.9788271188735962, -0.1884666234254837, -1.4389580488204956, -0.3413221538066864, 1.1635836362838745, -0.3378776013851166, -0.12723758816719055, -0.24821101129055023, -0.2105458676815033, 0.14252953231334686, -0.8584743738174438, 0.3187509775161743, 0.7346105575561523, -0.03377057984471321, -0.18940909206867218, -0.7473989129066467, 0.15034422278404236, 0.1471080631017685, -0.8845489025115967, -0.14219708740711212, 0.3709041178226471, 0.29805052280426025, 0.22988300025463104, 0.48958367109298706, -0.28970885276794434, 0.10953482985496521, -0.010435002855956554, 0.23909126222133636, -0.016496136784553528, -0.3545963764190674, -0.18593913316726685, 0.1351601481437683, -0.36143335700035095, -0.23259831964969635 ]
null
null
null
null
null
null
null
null
null
null
null
null
null
colbertv2/lotte_passages
colbertv2
2023-08-23T01:55:55Z
442
0
null
[ "task_categories:question-answering", "task_ids:extractive-qa", "annotations_creators:no-annotation", "language_creators:found", "multilinguality:monolingual", "size_categories:1M<n<10M", "source_datasets:original", "language:en", "license:apache-2.0", "arxiv:2112.01488", "region:us" ]
2023-08-23T01:55:55Z
2022-07-14T22:44:41.000Z
2022-07-14T22:44:41
--- viewer: false annotations_creators: - no-annotation language: - en language_creators: - found license: - apache-2.0 multilinguality: - monolingual pretty_name: 'Lotte passages from ColBERTv2: Effective and Efficient Retrieval via Lightweight Late Interaction' size_categories: - 1M<n<10M source_datasets: - original tags: [] task_categories: - question-answering task_ids: - extractive-qa dataset_info: features: - name: doc_id dtype: int32 - name: author dtype: string - name: text dtype: string splits: - name: dev_collection num_bytes: 263355925 num_examples: 268880 - name: test_collection num_bytes: 105718627 num_examples: 119458 download_size: 225568795 dataset_size: 369074552 --- Passages for the LoTTe dataset used for [ColBERTv2: Effective and Efficient Retrieval via Lightweight Late Interaction](https://arxiv.org/abs/2112.01488)
[ 0.1583549827337265, -0.6234354376792908, 0.4461844563484192, 0.5614107847213745, -0.23777826130390167, -0.208424374461174, 0.08083753287792206, -0.22044484317302704, 0.3265136182308197, 0.41016829013824463, -0.1723397821187973, -0.1891259104013443, -0.1197441965341568, -0.37719693779945374, -0.4958767294883728, 0.9085549116134644, 0.1181502416729927, 0.41212305426597595, 0.11159710586071014, -0.31698423624038696, 0.18078795075416565, -0.07221928238868713, -0.4072326123714447, -0.30632492899894714, 0.9587350487709045, 0.6457170844078064, 0.7503369450569153, 0.10990867763757706, 0.983183741569519, 0.044884923845529556, -0.30984869599342346, -0.29486462473869324, -1.063322901725769, 0.4942224621772766, -0.3710015118122101, -0.24231398105621338, -0.7703077793121338, -0.04772206023335457, 1.0708069801330566, 0.9742624759674072, -0.4131261110305786, 0.15434184670448303, 0.11830262094736099, 0.593496561050415, -0.7885452508926392, -0.20802989602088928, -0.5217888951301575, 0.3196345865726471, -0.7779000401496887, -0.346733033657074, -0.635549783706665, -0.13937027752399445, 0.12831512093544006, -0.9271373152732849, 0.14394865930080414, 0.12007801979780197, 0.5760536789894104, 0.17746169865131378, -0.30196693539619446, -0.30701664090156555, -0.19404834508895874, 0.872706949710846, 0.10718328505754471, 0.485101580619812, 0.9009580612182617, 0.02307642251253128, -0.48790207505226135, -1.0710610151290894, -0.3697701394557953, 0.11300019919872284, -0.12461916357278824, 0.3696642220020294, -0.392366498708725, -0.08115322142839432, 0.42011040449142456, 0.5793567895889282, -0.8615570068359375, -0.001705808099359274, -0.5391330718994141, -0.5733405351638794, 0.6870493292808533, 0.27147695422172546, -0.214530348777771, -0.735202431678772, -0.22428415715694427, -0.4191426634788513, -0.9279732704162598, 0.2505744397640228, 0.7721425294876099, -0.18328459560871124, -0.5224730372428894, 0.9584447145462036, -0.43196335434913635, 0.719388484954834, -0.33907124400138855, 0.48254626989364624, 0.5212125778198242, -0.7186158299446106, 0.25154948234558105, -0.27513155341148376, 0.6705440282821655, 0.29193925857543945, -0.256904274225235, -0.2939125597476959, -0.3158133327960968, -0.9298956394195557, -0.06709723174571991, -1.2239407300949097, -0.7936399579048157, 0.20442244410514832, -0.696806788444519, -0.1044059544801712, 0.4125809669494629, -0.9182627201080322, -0.2911728620529175, -0.20971743762493134, 0.2786870300769806, -0.06708185374736786, -0.020775476470589638, -0.14131203293800354, -0.29496297240257263, 0.7631744146347046, 0.2624315917491913, -0.4598238170146942, 0.4420865476131439, 0.4158594012260437, 1.1597437858581543, -0.25937628746032715, 0.21229049563407898, -1.924659013748169, -0.06742723286151886, -0.21642735600471497, 0.6674224138259888, -0.7716215252876282, -0.7486066818237305, 0.00014563136210199445, 0.3123047649860382, 0.29471972584724426, -0.517315685749054, 0.6677283048629761, -0.9601518511772156, -0.29534193873405457, -0.38854748010635376, -0.2211841195821762, 0.10335716605186462, -0.12299340218305588, -1.1040736436843872, 1.0371845960617065, 0.11728277057409286, -0.9341250658035278, -0.13071563839912415, -0.6100746989250183, -0.5806362628936768, 0.22120246291160583, -0.2336737960577011, -0.3793613910675049, -0.103336401283741, -0.07030373066663742, 0.9377931356430054, -0.04565022140741348, 0.05028275400400162, -0.6780814528465271, -0.32665541768074036, 0.22759252786636353, -0.1927827149629593, 0.8604817986488342, 0.6588336825370789, 0.4441845417022705, 0.0022914118599146605, -0.7653160691261292, 0.18760474026203156, 0.09785303473472595, -0.32377317547798157, -0.3499314486980438, -0.08235979825258255, 0.6609199643135071, -0.3705281615257263, 0.27488091588020325, -0.4027697741985321, 0.6313992738723755, 0.03710416331887245, 0.38438424468040466, 0.39378002285957336, 0.07317604124546051, 0.5851115584373474, -0.1095714345574379, 0.3407326936721802, 0.007891472429037094, -0.044610150158405304, 0.06265226006507874, -0.2787267565727234, -0.30818599462509155, -0.020402725785970688, 0.5254502296447754, 0.8189904093742371, -1.263973355293274, 0.1882316619157791, -0.21035107970237732, -0.5719549655914307, -0.11335909366607666, 0.4922376275062561, 0.18357597291469574, 0.1201452687382698, 0.45857951045036316, -0.29975491762161255, -0.23632651567459106, -0.9559560418128967, 0.37322524189949036, 0.16902537643909454, -0.017713848501443863, 0.6099708080291748, 0.8353259563446045, 0.0862487405538559, 0.8443083167076111, -0.8050987124443054, 0.15429189801216125, -0.2420123666524887, 0.09330601245164871, 0.04629381000995636, 0.5407835841178894, 0.4930116832256317, -1.0655266046524048, -0.4941871762275696, -0.17433300614356995, -0.7866122126579285, 0.09567110985517502, 0.17571084201335907, -0.41095924377441406, -0.4605299234390259, 0.5578515529632568, -0.1650158315896988, 0.7971432209014893, 0.2767144441604614, -0.2976461946964264, 0.3564743101596832, 0.0335763655602932, 0.3613934814929962, -1.2211718559265137, 0.5589223504066467, -0.2138998806476593, -0.49770084023475647, -0.3540101945400238, -0.45599839091300964, 0.2730422019958496, -0.08522263169288635, -0.7851240634918213, 0.6431361436843872, -0.44248634576797485, -0.09485206753015518, 0.08980953693389893, 0.36725032329559326, -0.15012775361537933, 0.14813114702701569, 0.15982873737812042, 1.4592987298965454, 0.6918275356292725, -0.2911614179611206, 0.3590069115161896, 0.9223664999008179, -0.49999016523361206, 0.6898152828216553, -1.1772119998931885, 0.6822364926338196, -0.07408255338668823, 0.6184157729148865, -0.8523142337799072, -0.6113980412483215, 0.44631847739219666, -0.24422992765903473, 0.13771970570087433, -0.5502287745475769, -0.9227927327156067, 0.2862262427806854, -0.8398501873016357, 1.0466135740280151, 0.3582654595375061, -0.45082053542137146, -0.1743680089712143, 0.5597198009490967, -0.4318690896034241, -0.9273278117179871, -0.5395999550819397, 0.14380699396133423, -0.023129187524318695, -0.6602405309677124, 0.45333629846572876, -0.07241702824831009, -0.48436787724494934, -0.26434120535850525, 0.3309565484523773, -0.17781101167201996, -0.36956533789634705, 0.19955947995185852, 0.08200270682573318, -0.15208832919597626, 0.4508514404296875, 0.14913424849510193, -0.05903397500514984, -0.45823943614959717, 0.1371227204799652, 0.49588969349861145, -0.3261064887046814, -0.027711836621165276, -0.37393900752067566, 0.5128220319747925, -0.18033890426158905, -0.04192177578806877, 0.5236257910728455, 0.8107253909111023, -0.39238861203193665, -0.01097803469747305, -0.3425283133983612, -0.5144059658050537, -0.41561347246170044, 0.2511298358440399, -0.5610070824623108, -0.6876142621040344, 0.9422135949134827, 0.39304259419441223, -0.5752236843109131, 0.41458427906036377, 0.31015825271606445, -0.1962926685810089, 0.19802290201187134, 0.03887071833014488, 0.16400273144245148, 0.7056936621665955, -0.8987991213798523, -0.2738809883594513, -1.4033021926879883, -0.3033186197280884, -0.3108128011226654, -0.562116801738739, -0.5134599804878235, -0.6491461992263794, 0.3406813144683838, 0.4523887634277344, 0.21723254024982452, 0.6165518760681152, -0.17036356031894684, 0.7002093195915222, 0.4670349955558777, 0.4488808214664459, 0.22523753345012665, 0.23139818012714386, 0.04418201372027397, -0.28086158633232117, -0.8618028163909912, -0.43644484877586365, 1.6297048330307007, 0.08470327407121658, 1.102590560913086, 0.5674606561660767, 0.5095509886741638, 0.5890993475914001, 0.018608458340168, -0.5121148228645325, 0.6468839645385742, -0.08625587821006775, -0.8805156946182251, -0.30396685004234314, -0.5931861400604248, -1.530768632888794, 0.08719199895858765, -0.08607648313045502, -1.035535216331482, 0.47189861536026, 0.07600947469472885, -0.6368655562400818, 0.13005739450454712, -0.6646090745925903, 1.0035665035247803, 0.2654802203178406, -1.2203412055969238, -0.6284435391426086, -1.238876461982727, 0.1440988928079605, 0.27200621366500854, -0.4879976809024811, 0.1913832724094391, -0.0911981612443924, 1.4949175119400024, -0.26995959877967834, 0.3669588267803192, -0.06074269115924835, -0.1198892667889595, 0.8508806228637695, 0.20910237729549408, 0.8345228433609009, 0.6515842080116272, -0.3129860758781433, 0.19279316067695618, 0.11713092774152756, -0.6607585549354553, -0.24378781020641327, 0.9366673231124878, -0.6792108416557312, 0.10236966609954834, -0.6597006320953369, -0.5305314660072327, 0.08514707535505295, -0.13589243590831757, 0.4957386553287506, 0.966686487197876, -0.4014238715171814, 1.0542330741882324, 0.9346737265586853, -0.06879560649394989, 0.592211902141571, 0.3749420642852783, -0.08854535222053528, -0.451568603515625, 1.0635148286819458, 0.2616354525089264, -0.0027630713302642107, 0.7433112263679504, -0.205330029129982, -0.48414984345436096, -0.44980770349502563, -0.14308296144008636, 0.27375051379203796, -0.7490572333335876, -0.28350070118904114, -0.4375097453594208, -0.1003689095377922, -0.09242125600576401, 0.14560768008232117, -0.35090935230255127, -0.830697774887085, -0.7131922245025635, 0.023076500743627548, 0.35541045665740967, 0.6588398218154907, -0.42269814014434814, 0.8091610670089722, -0.6450713276863098, 0.47188740968704224, 0.17785856127738953, 0.6468406915664673, -0.29264071583747864, -0.5109819769859314, -0.07557826489210129, -0.22852596640586853, -0.6762558221817017, -0.8795918226242065, -0.24998880922794342, 0.07731806486845016, 0.39510810375213623, 0.332865834236145, -0.08844869583845139, 0.30291303992271423, -0.0952935665845871, 0.8012871742248535, 0.2687983214855194, -0.5232162475585938, 0.6359341144561768, -0.6714968085289001, -0.3387618958950043, 0.8033867478370667, 0.17269141972064972, -0.33443009853363037, 0.6309080123901367, -0.7725960612297058, -0.976780354976654, 0.756895899772644, 0.9080566167831421, -0.04788465425372124, 0.10236524045467377, 0.29967302083969116, 0.4628830850124359, 0.4058263599872589, -0.5693365931510925, -0.3384207785129547, -0.08963614702224731, -0.3525197505950928, 0.2013489156961441, -0.24803543090820312, -0.22021132707595825, -0.2921258211135864, 0.5863919854164124, 0.021101783961057663, 0.31572431325912476, 0.3977910280227661, -0.7244464159011841, -0.017020782455801964, 0.4105602204799652, 0.7196469902992249, 0.7287092208862305, -0.27539947628974915, 0.39959463477134705, -0.11440885066986084, -0.7976089715957642, 0.034922271966934204, 0.6308983564376831, 0.15453355014324188, -0.40613222122192383, 0.42314890027046204, 0.43178790807724, -0.10470000654459, -0.8495320081710815, 0.8500851392745972, 0.22497262060642242, 0.09516232460737228, -0.5400460958480835, 0.12995538115501404, -0.3032776415348053, 0.26623186469078064, 0.5240079164505005, -0.19357892870903015, 0.6504015326499939, -0.1266132891178131, 0.6732438206672668, 0.3806924521923065, -0.7323881387710571, -0.5056086778640747, 0.7357989549636841, 0.6506111025810242, -0.11962317675352097, 0.9490273594856262, -1.0476690530776978, 0.13029703497886658, 0.1394532471895218, -0.2580038607120514, 0.5036194920539856, 0.2519497871398926, 0.1405864953994751, 0.3478139042854309, -0.12447696179151535, -0.014275971800088882, 0.49619925022125244, -0.32681381702423096, -0.5141178369522095, -0.573022723197937, -0.2151404321193695, -0.025427503511309624, 0.5554705262184143, -0.6085667014122009, 0.3528623878955841, -0.18005742132663727, -0.052835285663604736, -0.11556597799062729, -0.07630233466625214, -1.0031346082687378, -0.4679192304611206, 0.10833629965782166, 0.8700974583625793, -0.5443127155303955, 0.6313076615333557, 0.7685197591781616, -0.6234554052352905, -0.5370027422904968, -0.007882073521614075, -0.09493855386972427, -0.9152365922927856, 0.7136369347572327, -0.20497062802314758, -0.08049516379833221, 0.03737896308302879, -0.9378977417945862, -0.3700134754180908, 1.0915014743804932, -0.0001352164545096457, -0.7694078087806702, 0.48213085532188416, -0.2869224548339844, 0.039593324065208435, 0.1645706444978714, 0.5785850286483765, 0.33208543062210083, 0.5365409851074219, 0.1219019964337349, -0.8588777184486389, -0.1610289365053177, -0.8306918740272522, -0.3218282461166382, 0.008720318786799908, -1.0059058666229248, 0.3945775330066681, -0.4129990339279175, 0.09177353233098984, 0.3983035683631897, 0.815183162689209, 0.10084237903356552, 0.5973426103591919, 0.5007035732269287, 0.681090772151947, 0.7391869425773621, -0.36184579133987427, 0.9031417965888977, -0.043840084224939346, 0.5253871083259583, 0.9979293942451477, -0.10827507078647614, 1.047846794128418, 0.8402884602546692, -0.504677414894104, 0.18861503899097443, 0.8755432367324829, 0.043132469058036804, 0.8373697996139526, 0.2797749638557434, -0.13835880160331726, -0.28976356983184814, -0.2187449336051941, -0.5730572938919067, 0.22720669209957123, 0.5120478868484497, 0.12870939075946808, -0.136118084192276, -0.04547060281038284, 0.03939049690961838, -0.35726818442344666, -0.014401588588953018, 0.6453462243080139, 0.19361813366413116, -0.30226364731788635, 0.14067667722702026, -0.33191341161727905, 0.2016652226448059, -0.38163086771965027, -0.44233375787734985, -0.251844584941864, -0.02374391071498394, -0.38064587116241455, -1.5328097343444824, -0.23774896562099457, -0.162924125790596, -0.1414320021867752, -0.05337856709957123, 0.4408840537071228, -0.5306296348571777, -0.5131480693817139, -0.1387542337179184, 0.6499710083007812, 0.51163649559021, 0.00585532933473587, -0.46815764904022217, 0.20073699951171875, -0.2065437287092209, -0.7281245589256287, -0.02639181911945343, 0.04558851569890976, -0.057842426002025604, 0.6203567385673523, 0.26855409145355225, -0.060035452246665955, -0.0022252188064157963, 0.18463052809238434, 0.5752960443496704, -0.8417121171951294, -0.6111131310462952, -0.32570701837539673, 0.7248918414115906, -0.43512916564941406, -0.5691288113594055, 0.30342012643814087, 1.3850394487380981, 0.5674306750297546, 0.03278019651770592, 0.7829770445823669, -0.46276023983955383, 0.18863320350646973, -0.9129299521446228, 0.6341127753257751, -0.6984112858772278, 0.17345595359802246, -0.06021779403090477, -1.0371403694152832, -0.12940523028373718, 0.9083833694458008, -0.4624592959880829, 0.07040446251630783, 0.9150441288948059, 1.1399811506271362, -0.7030072212219238, 0.030566712841391563, -0.019246678799390793, 0.21702660620212555, 0.2826991081237793, 0.4199986755847931, 1.0421574115753174, -0.5824550986289978, 0.7420503497123718, -0.12008275836706161, 0.0006392955547198653, -0.7852598428726196, -0.6766273975372314, -0.7536953687667847, -0.9142134785652161, -0.5204395651817322, -0.5580677390098572, 0.11075794696807861, 1.1137163639068604, 0.7403154969215393, -0.856952428817749, -0.18383818864822388, 0.12143159657716751, 0.22278764843940735, 0.3184753358364105, -0.17199796438217163, 0.8623095750808716, -0.04954124614596367, -0.44900333881378174, 0.40283292531967163, -0.11178810149431229, 0.3693917989730835, 0.03729809820652008, -0.3826976418495178, -0.02277190610766411, -0.44416898488998413, 0.4967590868473053, 0.04183415323495865, -0.5036524534225464, -0.28118348121643066, 0.26686790585517883, -0.1316799372434616, 0.21206051111221313, 1.2651808261871338, -0.4009476602077484, 0.2549210786819458, 0.7735034227371216, 0.3221234977245331, 0.7660261392593384, 0.061783336102962494, 0.08717596530914307, -0.788691520690918, 0.5858875513076782, 0.2782948911190033, 0.4296208322048187, 0.6003726720809937, -0.0912524089217186, 0.8477557897567749, 0.5617037415504456, -0.45365914702415466, -0.8397391438484192, 0.11733703315258026, -1.997158169746399, 0.3154797852039337, 1.6068999767303467, 0.18336492776870728, 0.2666354179382324, -0.06416542083024979, -0.45707911252975464, 0.07068396359682083, -0.9889456629753113, 0.46025484800338745, 0.7994669675827026, -0.005051522981375456, -0.07222945988178253, -0.8243357539176941, 0.5146216750144958, 0.2552112936973572, -0.7977222204208374, -0.06857014447450638, 0.22769148647785187, 0.07379288971424103, 0.005971025675535202, 0.5132500529289246, -0.10082097351551056, 0.4025874733924866, -0.0306144617497921, -0.36263152956962585, 0.14624404907226562, -0.3748316466808319, -0.03418593481183052, 0.08933114260435104, -0.1280590444803238, -0.19148772954940796 ]
null
null
null
null
null
null
null
null
null
null
null
null
null
lmsys/toxic-chat
lmsys
2023-11-13T18:48:51Z
442
46
null
[ "size_categories:10K<n<100K", "language:en", "license:cc-by-nc-4.0", "arxiv:2310.17389", "region:us" ]
2023-11-13T18:48:51Z
2023-10-26T13:52:48.000Z
2023-10-26T13:52:48
--- license: cc-by-nc-4.0 language: - en size_categories: - 10K<n<100K configs: - config_name: default data_files: - split: train path: toxic-chat_annotation_train.csv - split: test path: toxic-chat_annotation_test.csv --- ## Content This dataset contains toxicity annotations on 10K user prompts collected from the Vicuna [online demo](https://chat.lmsys.org/). We utilize a human-AI collaborative annotation framework to guarantee the quality of annotation while maintaining a feasible annotation workload. The details of data collection, pre-processing, and annotation can be found in our [paper](https://arxiv.org/abs/2310.17389). We believe that ToxicChat can be a valuable resource to drive further advancements toward building a safe and healthy environment for user-AI interactions. **Basic Statistics** | Key | Value | | --- | --- | | # User Prompts | 10,165 | | # Human Annotations | 5,634 | | % Toxic Examples | 7.18% | | % Jailbreaking Examples | 1.78% | ## Disclaimer and Terms - This dataset is based on the user query collected from the Vicuna online demo. The Vicuna demo is fully anonymous for the users and also highlights the possible reuse of the user query data. We have carefully gone through the data and taken out anything that could have personal information in it. However, there is still a chance that some personal information might be left in the data. If you come across anything in the data that you think should not be made public, please let us know right away. - Safety and Moderation: **This dataset may contain racism, sexuality, or other undesired content.** Before the annotation, the annotators are first notified about the toxic data that they will be annotated. Verbal agreements were obtained before annotation. - Non-Endorsement: Statements or opinions made in this dataset **do not reflect** the views of researchers or institutions involved in the data collection effort. - Legal Compliance: Users of this data are responsible for ensuring its appropriate use. The dataset should not be utilized for training dialogue agents, or any other applications, in manners that conflict with legal and ethical standards. - Non-Identification: Users of this data agree to not attempt to determine the identity of individuals in this dataset. ## License Both the user prompts and the model outputs are licensed under CC-BY-NC-4.0. ## Citation ``` @misc{lin2023toxicchat, title={ToxicChat: Unveiling Hidden Challenges of Toxicity Detection in Real-World User-AI Conversation}, author={Zi Lin and Zihan Wang and Yongqi Tong and Yangkun Wang and Yuxin Guo and Yujia Wang and Jingbo Shang}, year={2023}, eprint={2310.17389}, archivePrefix={arXiv}, primaryClass={cs.CL} } ```
[ -0.12077250331640244, -0.5685667395591736, 0.4668932557106018, 0.21578741073608398, -0.2992435395717621, -0.19706541299819946, 0.21290455758571625, -0.6865459084510803, 0.07745735347270966, 0.5886731743812561, -0.6283199787139893, -0.8702957630157471, -0.3164030909538269, 0.13604803383350372, 0.033288974314928055, 1.0332642793655396, 0.5747798085212708, -0.21602106094360352, -0.0865001380443573, -0.5272412896156311, -0.6472053527832031, -0.6999198794364929, -0.9408736824989319, -0.09447301179170609, 1.0214335918426514, 0.4389925003051758, 0.7188239097595215, 0.5384120941162109, 0.21002155542373657, 0.34493616223335266, -0.3702649474143982, 0.12622247636318207, -0.4652522802352905, 0.3121401071548462, -0.1868310570716858, -0.49465706944465637, -0.4354092478752136, 0.12348359823226929, -0.08811454474925995, 0.130011647939682, -0.06293707340955734, 0.18930454552173615, 0.043449606746435165, 0.28906121850013733, -0.5858370661735535, 0.3280686140060425, -0.42429208755493164, 0.25462818145751953, -0.23990167677402496, -0.23391897976398468, -0.45372068881988525, -0.29476022720336914, 0.024419795721769333, -0.8768343925476074, -0.36003780364990234, -0.03152700886130333, 0.8208998441696167, 0.4058926999568939, -0.7437711358070374, -0.07041562348604202, -0.5182337164878845, 0.5003377795219421, -0.9840370416641235, -0.16726963222026825, 0.5085376501083374, 0.4266825020313263, -0.13148652017116547, -0.6595234274864197, -0.559124767780304, -0.25872135162353516, -0.281916081905365, 0.31538477540016174, 0.012475589290261269, 0.19049018621444702, 0.29147869348526, 0.0036926192697137594, -0.3776736259460449, 0.30742695927619934, -0.36738234758377075, -0.6128555536270142, 0.7894580960273743, 0.5213088393211365, 0.5506846308708191, -0.2594604790210724, -0.4548107087612152, -0.14670543372631073, -0.44158703088760376, -0.1232014074921608, 0.28446635603904724, 0.3569231927394867, -0.33148953318595886, 0.39418908953666687, -0.08862553536891937, 0.19842590391635895, -0.548651397228241, 0.3092849850654602, 0.5187366008758545, -0.6524559855461121, -0.040806110948324203, -0.06324233114719391, 1.3890691995620728, 0.7973462343215942, 0.23506292700767517, 0.17093825340270996, 0.3035944402217865, 0.04054437577724457, 0.12204855680465698, -1.0017675161361694, -0.37456321716308594, 0.45616641640663147, -0.3619777262210846, -0.6631960272789001, -0.24365471303462982, -0.9684251546859741, -0.907751739025116, 0.22620443999767303, 0.3463965058326721, 0.02001914009451866, -0.5826705694198608, -0.15909254550933838, -0.17409352958202362, -0.23021093010902405, 0.1447180211544037, -0.44394901394844055, 0.1434323489665985, 0.20139731466770172, 0.9177812933921814, 0.09308095276355743, -0.09667415171861649, -0.15706509351730347, -0.017540518194437027, -0.2020256072282791, 0.7661339640617371, -0.33158376812934875, -0.36552804708480835, 0.025682345032691956, 0.02426561899483204, 0.1786746084690094, -0.8053372502326965, 0.886311411857605, -0.27620258927345276, 0.4101613163948059, -0.6415163278579712, -0.14377866685390472, -0.2438088208436966, 0.0781569704413414, -0.5539847016334534, 0.963376522064209, -0.040798623114824295, -0.9507817625999451, 0.22584226727485657, -0.9615098237991333, 0.006279451306909323, 0.20734360814094543, 0.12392617762088776, -0.42443034052848816, -0.7209784984588623, -0.030299272388219833, 0.41260379552841187, -0.17678813636302948, 0.17788518965244293, -0.5829353332519531, -0.5275425910949707, 0.39242541790008545, -0.34753045439720154, 1.3702961206436157, 0.5407763719558716, -0.4056490957736969, 0.5021008253097534, -0.48522481322288513, -0.08939412236213684, 0.052680835127830505, -0.16543281078338623, -0.49535325169563293, 0.13452062010765076, 0.19283823668956757, 0.6124162077903748, -0.00608315784484148, -0.5587291121482849, -0.18458610773086548, -0.20081201195716858, 0.5222974419593811, 0.7998034954071045, 0.44511541724205017, -0.037223588675260544, -0.6838395595550537, 0.34033203125, 0.33892402052879333, 0.560653567314148, 0.013976664282381535, -0.7212375998497009, -0.5834946036338806, -0.19892466068267822, -0.134277805685997, 0.6960195899009705, -0.7048290371894836, 0.7915653586387634, -0.038690924644470215, -0.7238785028457642, -0.4094982445240021, -0.06814811378717422, 0.5343926548957825, 0.568480372428894, 0.5112994909286499, -0.3000933527946472, -0.3399432301521301, -0.7411172389984131, -0.02836192585527897, -0.5646805167198181, -0.13186746835708618, 0.8249626159667969, 0.19627736508846283, -0.4007030725479126, 0.870531439781189, -0.47832661867141724, -0.6935827136039734, 0.3069309890270233, 0.13948750495910645, -0.1024000346660614, 0.32639193534851074, 0.6831260323524475, -0.6600643992424011, -0.684912383556366, -0.1557243913412094, -0.9890036582946777, -0.5017032027244568, -0.1917751133441925, -0.4993014335632324, 0.08602876961231232, 0.5143981575965881, -0.263044148683548, 0.3994016945362091, 0.46762320399284363, -0.4648648798465729, 0.381868839263916, -0.16664788126945496, 0.3678033649921417, -1.0340646505355835, 0.061153609305620193, 0.22636501491069794, -0.07247120887041092, -0.7392431497573853, -0.1595584601163864, -0.304874449968338, 0.04845757037401199, -0.8102753758430481, 0.5562291145324707, -0.15322498977184296, 0.47628384828567505, 0.011891025118529797, 0.1930597424507141, -0.20918583869934082, 0.6858227849006653, -0.08054890483617783, 0.8598782420158386, 0.3983289301395416, -0.4300430715084076, 0.29728269577026367, 0.37632033228874207, 0.06512205302715302, 0.35267964005470276, -0.7307875156402588, 0.1995205283164978, 0.09054127335548401, 0.4878574013710022, -0.8724652528762817, -0.12308583408594131, 0.946612536907196, -0.4724896252155304, -0.49488234519958496, -0.0633038878440857, -0.685074508190155, -0.15232492983341217, -0.42419227957725525, 0.3316660523414612, 0.3936307430267334, -0.20527200400829315, 0.21401135623455048, 0.590478777885437, -0.10999204218387604, -0.41124171018600464, -0.7159273624420166, -0.049608998000621796, -0.6477936506271362, -0.5023870468139648, -0.16295050084590912, -0.3547374904155731, -0.1941131204366684, -0.027194742113351822, 0.262791246175766, -0.17452941834926605, 0.13434024155139923, 0.4883100390434265, 0.15892495214939117, 0.18287798762321472, 0.20620864629745483, -0.012658950872719288, -0.1991063356399536, 0.4520553946495056, 0.3405863046646118, 0.4630531668663025, -0.1422106772661209, -0.06364572048187256, -0.8212352395057678, 0.2955453097820282, 0.6995459794998169, -0.1593862622976303, 0.8761031627655029, 0.6632327437400818, -0.33903488516807556, 0.19507348537445068, -0.08135735243558884, -0.3264581859111786, -0.5496069192886353, 0.29787710309028625, 0.2909560203552246, -0.6609397530555725, 1.0840097665786743, 0.22185294330120087, 0.1026773601770401, 0.5843759179115295, 0.6976605653762817, -0.20406809449195862, 1.0555214881896973, 0.09987685829401016, -0.16277441382408142, 0.5662861466407776, -0.14450019598007202, -0.04482090845704079, -0.710084855556488, -0.3901810944080353, -0.32269567251205444, -0.22048042714595795, -0.8719353675842285, -0.3705154359340668, 0.48610028624534607, -0.708827793598175, -0.8273841142654419, 0.17155975103378296, -0.6593863368034363, 0.3021948039531708, 0.5237059593200684, 0.6232287883758545, 0.2303408533334732, -0.3952629268169403, 0.059652622789144516, -0.1457788199186325, -0.5144259333610535, -0.529203474521637, 0.9480907917022705, 0.48554736375808716, 0.36977145075798035, 0.21126019954681396, 0.5831518173217773, 0.4392322301864624, 0.4940442442893982, -0.5852832198143005, 0.7459712028503418, 0.15908576548099518, -1.1868475675582886, -0.41719093918800354, -0.6765328645706177, -0.9773424863815308, 0.2563393712043762, -0.3364870548248291, -0.8863324522972107, 0.24156740307807922, -0.0050894892774522305, -0.6395331621170044, 0.21789796650409698, -0.9956398010253906, 1.009323239326477, -0.17748641967773438, -0.48435598611831665, -0.018258826807141304, -0.9708212614059448, 0.3577711880207062, -0.14565259218215942, 0.45056357979774475, -0.31107890605926514, -0.04097997769713402, 0.8422619104385376, -0.6413906216621399, 1.4170676469802856, -0.282845675945282, 0.023998435586690903, 0.6624568700790405, -0.06564383953809738, 0.1881294548511505, 0.07241107523441315, -0.07387742400169373, 0.36207422614097595, 0.09172526001930237, -0.2435600459575653, -0.19323818385601044, 0.3817008435726166, -0.9486351609230042, -0.41239115595817566, -0.6481459736824036, -0.5330458879470825, 0.053667571395635605, 0.3150191903114319, 0.3625563979148865, 0.010678773745894432, 0.2417936772108078, 0.04669232666492462, 0.376106321811676, -0.7347902655601501, 0.0328923761844635, 0.25769782066345215, -0.043735213577747345, -0.3261503279209137, 1.0496207475662231, 0.11073947697877884, 0.27599817514419556, -0.09367292374372482, 0.5364787578582764, -0.2205016314983368, -0.20242008566856384, 0.029044844210147858, 0.29328736662864685, -0.7420530915260315, -0.3278731405735016, -0.647373616695404, -0.4283905625343323, -0.12558044493198395, 0.33031004667282104, -0.21645662188529968, 0.11499647051095963, -0.5806461572647095, -0.24373385310173035, 0.5592829585075378, 0.6362534165382385, -0.1956559419631958, 0.3841664493083954, -0.8991049528121948, -0.051307179033756256, 0.3180214464664459, 0.3354968726634979, -0.07036849856376648, -0.24382592737674713, 0.04494601860642433, 0.5392798185348511, -0.3943476974964142, -1.216782569885254, 0.37610578536987305, 0.1070532277226448, 0.5796419978141785, 0.41150036454200745, 0.6092629432678223, 0.4079083204269409, 0.18231895565986633, 0.9838300347328186, -0.11687619239091873, -0.47148397564888, 0.46278321743011475, -0.8468014597892761, -0.11478457599878311, 0.8509604334831238, 0.5686955451965332, -0.9253831505775452, -0.6669212579727173, -0.5657872557640076, -0.9823553562164307, 0.8048896789550781, 0.5326092839241028, 0.34905654191970825, -0.02523970976471901, 0.24463608860969543, -0.10548627376556396, -0.1664903610944748, -0.8436702489852905, -0.6534590721130371, -0.08203820884227753, -0.25661614537239075, 0.174956813454628, -0.31814712285995483, -0.2860834300518036, -0.2951472997665405, 0.6101851463317871, 0.19615313410758972, 0.2872137129306793, -0.08655350655317307, 0.14741317927837372, -0.1322876662015915, 0.14450480043888092, 0.3822517693042755, 0.13985665142536163, -0.4532241225242615, -0.05191493034362793, 0.21981653571128845, -0.5843662619590759, 0.16228538751602173, -0.0985989198088646, -0.09067153930664062, -0.4408082067966461, 0.26642996072769165, 0.5044927000999451, 0.03474527224898338, -0.6980767250061035, 0.4568146765232086, -0.435918390750885, -0.14537496864795685, -0.35910269618034363, 0.4178539216518402, 0.14095577597618103, 0.34001827239990234, 0.11486433446407318, 0.00527207599952817, 0.42891669273376465, -0.5714336037635803, 0.23729504644870758, 0.012621700763702393, -0.44714996218681335, -0.15307161211967468, 0.9149795174598694, 0.4678066074848175, -0.2941247820854187, 0.7500609159469604, -0.1698530912399292, -0.4543931186199188, 0.48724547028541565, 0.062929168343544, 0.6955627202987671, -0.15969301760196686, 0.5120078921318054, 0.7252118587493896, 0.04774462431669235, 0.35086390376091003, 0.03862360492348671, 0.03630584105849266, -0.7331797480583191, 0.026391223073005676, -0.029088247567415237, -0.41368526220321655, 0.4000900387763977, -0.6233985424041748, 0.2318340390920639, -0.5016986727714539, -0.3993164598941803, -0.04078080505132675, -0.0014188206987455487, -0.2252805083990097, 0.041836097836494446, 0.08060859143733978, 0.6101598143577576, -1.4124435186386108, 0.40148910880088806, 0.5740514993667603, -0.9718673229217529, -0.8088412284851074, -0.08837869018316269, 0.4034445881843567, -0.41941070556640625, 0.2792874276638031, 0.1477431207895279, 0.18532881140708923, -0.1274372786283493, -0.7081621289253235, -0.36264660954475403, 1.3231710195541382, 0.3453615605831146, -0.0874720960855484, 0.004836542997509241, 0.27565157413482666, 1.0024895668029785, 0.12066332995891571, 0.7559853792190552, 0.45466092228889465, 0.36484232544898987, 0.35808447003364563, -0.8483522534370422, 0.23939396440982819, -0.6033081412315369, -0.12133082747459412, -0.4166085422039032, -0.9475920796394348, 0.6764816641807556, -0.06925636529922485, -0.44623151421546936, -0.08662297576665878, 0.4853537380695343, 0.3868754208087921, 0.5075798630714417, 0.6335961222648621, 0.28886669874191284, 0.6913809776306152, 0.02311362512409687, 0.7617366909980774, 0.09138897806406021, 0.2435043305158615, 1.0262502431869507, -0.019188031554222107, 0.6272974610328674, 0.02476109005510807, -0.14131024479866028, 0.5125040411949158, 1.0477731227874756, 0.1250888854265213, 0.4743807017803192, 0.05444788932800293, -0.3625624477863312, -0.29551512002944946, -0.4952893555164337, -0.3460973799228668, 0.18406829237937927, 0.4107191264629364, -0.32107535004615784, -0.23869165778160095, -0.08215515315532684, 0.39664649963378906, -0.05002196505665779, 0.15522241592407227, 0.9308969974517822, 0.06331869959831238, -0.44538986682891846, 0.6159252524375916, -0.44667869806289673, 0.7806060314178467, -0.27713993191719055, -0.12363675236701965, -0.3788761794567108, -0.006115550175309181, -0.356859028339386, -0.9611757397651672, 0.2254364937543869, -0.14853838086128235, 0.508741557598114, 0.04536331817507744, 0.652430534362793, -0.39798474311828613, -0.07634630799293518, 0.4421955645084381, 0.2965906858444214, 0.3693832755088806, -0.2885879874229431, -0.8297278881072998, 0.07818545401096344, 0.00975701492279768, -0.1830795258283615, 0.26573294401168823, 0.3874349892139435, -0.2619187533855438, 0.9257542490959167, 0.5603705644607544, 0.0978819727897644, 0.01725047081708908, 0.08077434450387955, 1.1076596975326538, -0.4604724943637848, -0.36549821496009827, -0.6261005401611328, 0.9252976775169373, -0.14852817356586456, -0.3966141939163208, 0.5373290777206421, 0.36429208517074585, 0.6128371953964233, 0.24693118035793304, 0.8068320751190186, -0.024724602699279785, 0.36365896463394165, -0.051172349601984024, 1.316483974456787, -0.38098251819610596, 0.3078209459781647, -0.266048789024353, -0.6369683146476746, -0.3289099335670471, 0.624406099319458, -0.11758997291326523, 0.37004223465919495, 0.49642235040664673, 1.0802679061889648, 0.37712597846984863, -0.10056538134813309, 0.21308837831020355, 0.5906845331192017, 0.7761943340301514, 0.5710662007331848, 0.8240665793418884, -0.41030633449554443, 0.7590023279190063, -0.5090324878692627, -0.28137460350990295, -0.2602692246437073, -0.7560206055641174, -1.0984944105148315, -0.9855291843414307, -0.3870637118816376, -0.47196075320243835, -0.05238378420472145, 0.8287122249603271, 0.4203602373600006, -0.8211007714271545, 0.02329670451581478, 0.17652444541454315, -0.026384873315691948, -0.10474907606840134, -0.24470800161361694, 0.08497196435928345, 0.04869922623038292, -0.5154092311859131, -0.18635646998882294, -0.22731241583824158, 0.09987324476242065, -0.17009587585926056, -0.2115592658519745, -0.2958826720714569, -0.010847807861864567, 0.5057295560836792, 0.47081756591796875, -0.4215203523635864, -0.5327911376953125, -0.09879180788993835, -0.4348495900630951, 0.059339672327041626, 0.06070362776517868, -0.5219793319702148, 0.5546698570251465, 0.40058496594429016, 0.13193967938423157, 0.3063942492008209, 0.15236033499240875, 0.15689662098884583, -0.5897998213768005, 0.16333921253681183, 0.40520572662353516, 0.06548245251178741, 0.31530407071113586, -0.7164411544799805, 0.5763536095619202, 0.2774277627468109, -0.6552568078041077, -0.7632282972335815, -0.1439189612865448, -1.194528341293335, -0.011208589188754559, 1.595755696296692, -0.2335389107465744, -0.1787080615758896, -0.47396013140678406, -0.6901170015335083, 0.4984176754951477, -0.6489192843437195, 0.8273844122886658, 0.5002973675727844, -0.22008737921714783, -0.18639329075813293, -0.6562491059303284, 0.566754162311554, -0.12251510471105576, -1.293591856956482, 0.4098464250564575, 0.6419984698295593, 0.3617347776889801, 0.15648424625396729, 0.927414059638977, -0.10044852644205093, 0.06692365556955338, -0.07425681501626968, 0.08119462430477142, -0.2596118450164795, -0.02744561806321144, -0.017774000763893127, -0.2958216369152069, 0.01717502810060978, -0.2962029278278351 ]
null
null
null
null
null
null
null
null
null
null
null
null
null
gsarti/change_it
gsarti
2022-10-27T08:37:09Z
441
1
null
[ "task_categories:summarization", "task_categories:text-generation", "annotations_creators:no-annotation", "language_creators:found", "multilinguality:monolingual", "size_categories:unknown", "source_datasets:original", "language:it", "license:cc-by-nc-sa-4.0", "conditional-text-generation", "style-transfer", "region:us" ]
2022-10-27T08:37:09Z
2022-03-02T23:29:22.000Z
2022-03-02T23:29:22
--- annotations_creators: - no-annotation language_creators: - found language: - it license: - cc-by-nc-sa-4.0 multilinguality: - monolingual size_categories: - unknown source_datasets: - original task_categories: - summarization - text-generation task_ids: [] pretty_name: change-it tags: - conditional-text-generation - style-transfer --- # Dataset Card for CHANGE-IT ## Table of Contents - [Dataset Card for CHANGE-IT](#dataset-card-for-change-it) - [Table of Contents](#table-of-contents) - [Dataset Description](#dataset-description) - [Dataset Summary](#dataset-summary) - [Supported Tasks and Leaderboards](#supported-tasks-and-leaderboards) - [Style Transfer](#style-transfer) - [Languages](#languages) - [Dataset Structure](#dataset-structure) - [Data Instances](#data-instances) - [Data Fields](#data-fields) - [Data Splits](#data-splits) - [Dataset Creation](#dataset-creation) - [Additional Information](#additional-information) - [Dataset Curators](#dataset-curators) - [Licensing Information](#licensing-information) - [Citation Information](#citation-information) ## Dataset Description - **Homepage:** [https://live.european-language-grid.eu/catalogue/corpus/7373](https://live.european-language-grid.eu/catalogue/corpus/7373) - **Repository:** [Github](https://github.com/michelecafagna26/CHANGE-IT) - **Paper:** [CEUR-ws.org](http://ceur-ws.org/Vol-2765/paper169.pdf) - **Video** [Vimeo](https://vimeo.com/484098874) - **Point of Contact:** [Lorenzo De Mattei](lorenzo.demattei@gmail.com) - **Size of downloaded dataset files:** 168.7 MB - **Size of the generated dataset:** 411 MB - **Total amount of disk used:** 579.7 MB ### Dataset Summary The CHANGE-IT dataset contains approximately 152,000 article-headline pairs, collected from two Italian newspapers situated at opposite ends of the political spectrum, namely la Repubblica (left) and Il Giornale (right), with the two newspapers equally represented. The dataset has been used in the context of the [CHANGE-IT task](https://sites.google.com/view/change-it) during the [Evalita 2020 evaluation campaign](http://www.evalita.it/2020). CHANGE-IT is a generation task for Italian – more specifically, a style transfer task for headlines of Italian newspapers. Given a (collection of) headlines from one newspaper, namely Il Giornale (G) or La Repubblica (R), it challenges automatic systems to change all G-headlines to headlines in style R, and all R-headlines to headlines in style G. Although the task only concerns headline change, the dataset comprehends both the headlines as well as their respective full articles. **Disclaimer**: *The CHANGE-IT dataset is hosted by the [European Language Grid](https://live.european-language-grid.eu/) and licensed under the [Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License](https://creativecommons.org/licenses/by-nc-sa/4.0/). To use the dataset using* 🤗 *Datasets, download and unzip the folder from its [ELG page](https://live.european-language-grid.eu/catalogue/corpus/7373) and pass it to the* `load_dataset` *method as:* `datasets.load_dataset('gsarti/change_it', data_dir='path/to/unzipped/folder')` ### Supported Tasks and Leaderboards #### Style Transfer The following table is taken from Table 4 of the original paper, where a *pointer-network* architecture is used as a baseline to perform style transfer in two settings. In the **rep2gio** variant the system is trained to summarize Repubblica headlines from full texts (vice versa for **gio2rep**), and the style transfer is performed by summarizing full texts of the other newspaper in the source newspaper's headline style. **avg** is the average of the two settings. | | HH| AH|Main|Compliancy| |--------:|---:|---:|---:|---------:| |`rep2gio`|.649|.876|.799| .449| |`gio2rep`|.639|.871|.435| .240| | `avg`|.644|.874|.616| .345| Here **Main**, **HH** and **AH** are all BERT-base models trained to evaluate the quality of style transfer as follows: - **Main**: the model is trained to classify a generated headline either as `ilgiornale` or `repubblica`, achieving ~80% F1 score on gold data. Tests whether the transfer has been successful. - **Headline-Headline (HH)**: the model is trained to check the compatibility between original and generated headlines. Tests whether the generation is coherent with the reference. - **Article-Headline (AH)**: the model is trained to check the compatibility between original fulltext article and generated headlines. Tests whether the generation is coherent with the source article. The final metric, **Overall compliancy**, is a binary metric that is positive if the other three metrics match (**Main** decision is reversed, **HH** and **AH** predict match), and negative otherwise. Refer to Section 3 of the original paper for more details. ### Languages The language data in CHANGE-IT is in Italian (BCP-47 `it`) ## Dataset Structure ### Data Instances A sample from the `test` split of the `ilgiornale` config is provided below. The other configuration, `ilgiornale`, has the same structure. ```json { "id": 0, "headline": "Ucraina, coalizione della Timoshenko denuncia irruzione nella sede", "full_text": "Rimane alta la tensione in Ucraina , dove da giorni i manifestanti scendono in piazza per protestare contro la decisione del presidente Viktor Yanukovich, che ha deciso di congelare l'accordo di associazione con l'Unione Europea. Il momento è molto delicato. L'opposizione teme una repressione violenza della protesta, con le forze speciali che hanno costretto i manifestanti a Kiev ad allontanarsi dalla sede del governo, per ripiegare su piazza Indipendenza. Il leader d'opposizione Vitaly Klitschko ha invitato il presidente a non utilizzare la forza, se non vuole avere il sangue dei manifestanti sulle sue mani. Nel frattempo il presidente Yanukovich ha aperto alla possibilità di un dialogo, annunciando per domani un incontro con i suoi due predecessori, Leonid Kuchma e Viktor Yushchenko. Ieri un milioni di persone sono scese in piazza, scaduti i due giorni di ultimatum dati al governo per indire nuove elezioni, I manifestanti hanno rovesciato la grande statua di Lenin posta sul boulevard Shevchenko. Piazza Indipendenza (Maidan Nezalezhnosti) resta il punto più caldo della capitale. Qui sono state erette barricate davanti agli ingressi della metropolitana, nel tentativo di preparsi a un'azione della polizia, che al momento non ha però preso iniziative contro i dimostranti. In serata Batkivshcyna, la coalizione dell'ex premier Yulia Timoshenko , ha denunciato l'irruzione di almeno venti agenti della polizia antisommossa nel proprio quartier generale. Il portavoce della polizia, Olga Bilyk, ha smentito: \"Né la polizia di Kiev, né la Berkut - ha dichiarato - hanno condotto operazioni nella sede\".", "alignment": "A2" } ``` The text is provided as-is, without further preprocessing or tokenization. ### Data Fields - `headline`: The original headline for the newspaper. - `full_text`: The article full text associated to the respective headline. - `alignment`: The alignment value used for the style transfer experiments. Values: - `A1`: Top 5K pairs, highly aligned. - `A2`: Test set, highly aligned. - `A3`: 10K to 20K pairs, fairly aligned. - `R`: Bottom ~50K pairs, weakly/not aligned. ### Data Splits | config| train| test| |---------:|-------------------------------------:|-----------:| |`ilgiornale`|5'000 (A1) + 10'000 (A3) + 48'701 (R) | 5'000 (A2) | |`repubblica`|5'000 (A1) + 10'000 (A3) + 48'701 (R) | 5'000 (A2) | ### Dataset Creation Please refer to the original article [CHANGE-IT @ EVALITA 2020: Change Headlines, Adapt News, GEnerate](http://ceur-ws.org/Vol-2765/paper169.pdf) for additional information on dataset creation. ## Additional Information ### Dataset Curators The organizers of the CHANGE-IT shared tasks are the curators of the original dataset. For problems or updates on the 🤗 Datasets version, please contact [gabriele.sarti996@gmail.com](mailto:gabriele.sarti996@gmail.com). ### Licensing Information Licensed with Creative Commons Attribution Non Commercial Share Alike 4.0. License available [here](https://creativecommons.org/licenses/by-nc-sa/4.0/). ### Citation Information Please cite the authors if you use these corpora in your work: ``` @inproceedings{demattei-etal-2020-changeit, author = {De Mattei, Lorenzo and Cafagna, Michele and Dell'Orletta, Felice and Nissim, Malvina and Gatt, Albert}, title = {{CHANGE-IT @ EVALITA 2020}: Change Headlines, Adapt News, GEnerate}, booktitle = {Proceedings of Seventh Evaluation Campaign of Natural Language Processing and Speech Tools for Italian. Final Workshop (EVALITA 2020)}, editor = {Basile, Valerio and Croce, Danilo and Di Maro, Maria, and Passaro, Lucia C.}, publisher = {CEUR.org}, year = {2020}, address = {Online} }
[ -0.3365590274333954, -0.3883802890777588, 0.3595915138721466, 0.3608148992061615, -0.2811030447483063, -0.10253625363111496, -0.3620883524417877, -0.4512525498867035, 0.5521930456161499, 0.3039352595806122, -0.5488247871398926, -0.6633507609367371, -0.5567686557769775, 0.23215274512767792, -0.3623413145542145, 1.0421422719955444, -0.21584931015968323, 0.045021843165159225, 0.2288493514060974, 0.0049764676950871944, -0.15173949301242828, -0.2773635983467102, -0.6243051886558533, -0.14194726943969727, 0.3819757401943207, 0.4501725435256958, 0.5465255975723267, 0.5854352712631226, 0.4390205144882202, 0.31763267517089844, -0.03464110568165779, 0.09394694864749908, -0.3047979176044464, -0.30564746260643005, -0.2647102177143097, -0.4007731080055237, -0.42908790707588196, 0.07105530053377151, 0.7814387083053589, 0.3809259533882141, -0.005818563047796488, 0.19729679822921753, 0.13211014866828918, 1.033170461654663, -0.344971626996994, 0.21696530282497406, -0.6707146763801575, -0.25927385687828064, -0.2728714644908905, -0.07905227690935135, -0.15472303330898285, -0.40714123845100403, -0.270878404378891, -0.6148233413696289, 0.07694900780916214, 0.01319728884845972, 1.3347008228302002, -0.10297731310129166, -0.40061575174331665, -0.2171582579612732, -0.6272830963134766, 0.47171127796173096, -0.8263757228851318, 0.32674312591552734, 0.3280784487724304, 0.11063012480735779, -0.07999950647354126, -0.60873943567276, -0.5631979703903198, -0.011968354694545269, -0.27323371171951294, 0.45597147941589355, -0.308060884475708, -0.4910930395126343, 0.22838042676448822, 0.29450568556785583, -0.3752036988735199, -0.054931964725255966, -0.6909188628196716, -0.03911493346095085, 0.8334925770759583, 0.07358508557081223, 0.15067389607429504, -0.2918227016925812, -0.2214762419462204, -0.24563606083393097, -0.551642894744873, 0.11018839478492737, 0.7150428295135498, 0.5247325897216797, -0.44740310311317444, 0.3724220097064972, -0.41022059321403503, 0.5237551331520081, 0.3495699167251587, -0.20574237406253815, 0.5445769429206848, -0.7850038409233093, -0.13288240134716034, -0.09715742617845535, 1.0262044668197632, 0.6209093928337097, -0.036154281347990036, -0.08597087860107422, -0.08756597340106964, -0.26811617612838745, 0.1612350195646286, -0.7327279448509216, -0.10167159885168076, 0.15777012705802917, -0.3254197835922241, -0.29464292526245117, 0.3681325614452362, -1.1156022548675537, -0.005016683135181665, -0.4560911953449249, 0.4065956175327301, -0.41432878375053406, -0.19937646389007568, 0.20653453469276428, -0.02399689331650734, 0.3296746611595154, 0.4686480760574341, -0.6862078309059143, 0.11914833635091782, 0.26312804222106934, 0.7622541189193726, -0.27483364939689636, -0.13607104122638702, -0.23971500992774963, -0.07523367553949356, -0.5297725200653076, 0.7119103670120239, -0.16276641190052032, -0.3274153470993042, -0.0004158925439696759, 0.48082435131073, -0.33807113766670227, -0.3047964870929718, 0.8320779204368591, -0.1834552139043808, 0.3194456696510315, -0.45995357632637024, -0.2910226285457611, 0.20125214755535126, 0.16148653626441956, -0.5931695103645325, 1.1032732725143433, 0.21381361782550812, -0.8993614315986633, 0.34689420461654663, -0.5464617609977722, -0.4154166877269745, -0.3970683217048645, 0.2728646695613861, -0.7795391082763672, -0.05383051931858063, 0.13535268604755402, 0.13706816732883453, 0.017224835231900215, 0.21215079724788666, -0.06709311902523041, -0.1425238847732544, 0.12564995884895325, -0.024006813764572144, 1.0661797523498535, 0.32064154744148254, -0.35381877422332764, 0.06892074644565582, -0.9361594915390015, -0.2786642909049988, 0.11081404983997345, -0.6288849115371704, -0.23803700506687164, -0.25758910179138184, 0.30271115899086, 0.35063937306404114, 0.32016775012016296, -0.4965590536594391, 0.5692031383514404, -0.07862071692943573, 0.1571062058210373, 0.714287519454956, 0.02183636464178562, 0.5883090496063232, -0.694262683391571, 0.15404796600341797, 0.19001707434654236, 0.19163723289966583, 0.15423698723316193, -0.21414928138256073, -0.8238927125930786, -0.09865762293338776, 0.42814838886260986, 0.7456185221672058, -0.6961058974266052, 0.5672955513000488, -0.4112222194671631, -0.6697173714637756, -0.5011081099510193, -0.2688613533973694, 0.1687013953924179, 0.27108073234558105, 0.38642174005508423, 0.029051829129457474, -0.7720633149147034, -0.8842753767967224, -0.254062294960022, -0.13166064023971558, 0.16640153527259827, 0.168762668967247, 0.8621787428855896, -0.06565223634243011, 0.7624567151069641, -0.34149786829948425, -0.2801712155342102, -0.1932099163532257, 0.1143156886100769, 0.4623222053050995, 0.6938573718070984, 0.6812346577644348, -0.8255836367607117, -0.7120780348777771, -0.022515736520290375, -0.36333128809928894, -0.31211841106414795, -0.4678073525428772, -0.28907203674316406, 0.5008233189582825, 0.5246665477752686, -0.4186016917228699, 0.4938896596431732, 0.5312412977218628, -0.6703770756721497, 0.8045729994773865, -0.24972708523273468, 0.6129332184791565, -1.5287084579467773, 0.2927020192146301, 0.06919267773628235, -0.10827519744634628, -0.7244302034378052, -0.17188400030136108, -0.0033400480169802904, 0.14471231400966644, -0.4946567118167877, 0.6687084436416626, -0.5137727856636047, -0.14084021747112274, 0.1979369819164276, 0.023025482892990112, 0.07981982082128525, 0.3762357234954834, -0.05521711707115173, 0.8328791260719299, 0.49494099617004395, -0.4392856955528259, 0.1270776391029358, 0.338335782289505, -0.6812291741371155, 0.5734189748764038, -0.33267009258270264, -0.11997701227664948, -0.20946525037288666, 0.16323886811733246, -1.097517967224121, -0.09852683544158936, 0.49835559725761414, -0.3659118413925171, 0.3206360936164856, -0.13336822390556335, -0.7463967800140381, -0.40502065420150757, -0.27110180258750916, -0.2278958261013031, 0.42106014490127563, -0.24763651192188263, 0.2519046664237976, 0.0867365151643753, -0.07431057095527649, -0.3503991663455963, -0.7775763273239136, 0.2757255434989929, -0.3724057972431183, -0.4144638180732727, 0.6759495139122009, -0.3650808036327362, -0.43986162543296814, 0.2452395111322403, 0.0388215109705925, -0.25233450531959534, 0.08764947205781937, -0.032704103738069534, 0.32060256600379944, -0.03904666751623154, 0.07361317425966263, 0.05395783856511116, 0.08030515164136887, -0.27486348152160645, -0.019307816401124, 0.4642258882522583, -0.07816372811794281, -0.010424759238958359, -0.882540225982666, 0.360738068819046, 0.8101406693458557, -0.2734212875366211, 0.9369824528694153, 0.7847409844398499, -0.001911463332362473, 0.2318497747182846, -0.3741099238395691, -0.0990026667714119, -0.34568801522254944, 0.32855328917503357, -0.2943640947341919, -0.38722801208496094, 0.727757453918457, 0.19915886223316193, 0.2938764691352844, 0.8669119477272034, 0.45564380288124084, -0.06985778361558914, 0.6101654767990112, 0.44572192430496216, -0.1793319582939148, 0.8277944922447205, -0.37067869305610657, -0.07660272717475891, -0.6212225556373596, -0.42928457260131836, -0.9558954834938049, -0.4606674909591675, -0.7027977705001831, -0.21995104849338531, 0.316902756690979, 0.21185894310474396, -0.26251301169395447, 0.5635324716567993, -0.5049871802330017, 0.18018415570259094, 0.5207779407501221, 0.18083080649375916, 0.43648186326026917, 0.03047066368162632, 0.28051766753196716, -0.10266722738742828, -0.44429105520248413, -0.23940902948379517, 0.8881392478942871, 0.03595464676618576, 0.8164210319519043, 0.20568467676639557, 0.8085662126541138, 0.08987534046173096, 0.3038550317287445, -0.5704733729362488, 0.4844421148300171, -0.24660228192806244, -0.421477347612381, -0.22042790055274963, -0.46814313530921936, -0.9789523482322693, 0.13154928386211395, -0.4928191900253296, -0.800405740737915, 0.6187487244606018, -0.11524585634469986, -0.23123128712177277, 0.6547135710716248, -0.4494192600250244, 0.7127947211265564, -0.09387911111116409, -0.35286369919776917, -0.031526993960142136, -0.3984488248825073, 0.13464945554733276, 0.07984553277492523, 0.35549938678741455, -0.12105768918991089, -0.1590137779712677, 0.9347401261329651, -0.2044394463300705, 0.7000333070755005, 0.007708052173256874, -0.17487724125385284, 0.07739412039518356, -0.10276733338832855, 0.6578159928321838, -0.0540289580821991, -0.3041265904903412, 0.31800377368927, 0.003341134637594223, -0.17124000191688538, -0.2760036587715149, 0.6295967698097229, -0.8834940791130066, -0.5247689485549927, -0.431104838848114, -0.654883861541748, 0.14969474077224731, 0.2103852927684784, 0.6920791864395142, 0.4834166467189789, -0.07060067355632782, 0.42120426893234253, 0.33099231123924255, 0.037387311458587646, 0.6502262353897095, 0.6098762154579163, -0.22731457650661469, -0.42030400037765503, 0.5077755451202393, 0.5369516015052795, 0.26663938164711, 0.323232501745224, 0.1677355021238327, -0.2589583992958069, -0.5351399183273315, -0.4971553683280945, 0.15669023990631104, -0.35976287722587585, -0.14720818400382996, -0.5816874504089355, -0.1596319079399109, -0.5272799730300903, -0.29596102237701416, -0.40814849734306335, -0.42000386118888855, -0.4660072922706604, 0.04727061465382576, 0.3254200518131256, 0.5047838091850281, -0.39957767724990845, 0.2437003254890442, -0.37896326184272766, 0.07873431593179703, 0.10399126261472702, 0.17692331969738007, -0.5462031364440918, -0.8393412232398987, -0.4548412561416626, 0.13398662209510803, -0.2762282192707062, -1.040237545967102, 0.5351099967956543, 0.025572827085852623, 0.3398694097995758, 0.1797257363796234, 0.20564153790473938, 0.5838357210159302, -0.47907504439353943, 0.8454188108444214, 0.13603205978870392, -0.7836682796478271, 0.5146315693855286, -0.5200722813606262, 0.32882261276245117, 0.7890782356262207, 0.40754616260528564, -0.4353344738483429, -0.37951400876045227, -0.8727399706840515, -0.7044961452484131, 0.7236201763153076, 0.42909345030784607, 0.04669821262359619, 0.03286066651344299, 0.4235149323940277, -0.17026935517787933, 0.09989187866449356, -0.7279786467552185, -0.5824406147003174, -0.16249395906925201, 0.06624575704336166, 0.01669570803642273, -0.08490917831659317, -0.273144006729126, -0.489687979221344, 0.9000000357627869, 0.011456860229372978, 0.5744540095329285, 0.4954637587070465, 0.21888503432273865, -0.1812620460987091, 0.6997950673103333, 0.8399836421012878, 0.9334676265716553, -0.2601424753665924, -0.026818322017788887, 0.09388390928506851, -0.3427652418613434, -0.018894068896770477, 0.17838576436042786, -0.37828803062438965, 0.4436192214488983, 0.3528861701488495, 0.9416869878768921, 0.16206331551074982, -0.15230777859687805, 0.5933173298835754, 0.003428088501095772, -0.4720209240913391, -0.3281177580356598, -0.1153654009103775, -0.07603095471858978, 0.21447855234146118, 0.46468570828437805, 0.28682562708854675, 0.05785449594259262, -0.9102792143821716, 0.27573591470718384, 0.3329857885837555, -0.3049255609512329, -0.4593649208545685, 0.483961284160614, -0.040488384664058685, -0.1759030967950821, 0.20811812579631805, -0.3818989396095276, -0.4762917459011078, 0.7498044371604919, 0.6230990886688232, 0.7469007968902588, -0.342284619808197, 0.4723212718963623, 0.8966763019561768, 0.36512061953544617, -0.19910447299480438, 0.3339945375919342, 0.21325962245464325, -0.8696463108062744, -0.17010968923568726, -0.5647397637367249, -0.048976294696331024, 0.34192052483558655, -0.9348374605178833, 0.3601330518722534, -0.262848436832428, -0.1006992757320404, -0.22624921798706055, 0.25865083932876587, -0.5526652932167053, 0.05470357835292816, -0.030340123921632767, 1.0540589094161987, -1.228030800819397, 0.7520750164985657, 0.6280084252357483, -0.432219535112381, -0.6527808904647827, 0.26405826210975647, -0.1234465166926384, -0.6286050081253052, 0.4967488646507263, -0.013618293218314648, 0.4003671407699585, -0.08468393236398697, -0.5607619881629944, -0.8357343673706055, 1.0700474977493286, 0.4463653564453125, -0.875544011592865, -0.15581747889518738, -0.027701666578650475, 0.436799019575119, -0.3013695180416107, 0.08170098811388016, 0.6981385946273804, 0.8362907767295837, 0.07384373247623444, -1.0061463117599487, -0.04857570677995682, -0.07219650596380234, -0.19483770430088043, 0.1598292887210846, -0.9435436129570007, 1.0237181186676025, -0.08776816725730896, -0.33328482508659363, 0.07520879805088043, 0.39644482731819153, -0.1616286039352417, 0.08884405344724655, 0.5164965987205505, 0.7480971217155457, 0.6451928019523621, -0.4028129279613495, 1.017930269241333, -0.43427228927612305, 0.5657586455345154, 0.9179682731628418, 0.3150098919868469, 0.7914395332336426, 0.4101842939853668, -0.42710015177726746, 0.6571733951568604, 0.5167684555053711, -0.012043008580803871, 0.695995032787323, -0.10991441458463669, -0.2070993185043335, -0.0628613606095314, -0.17556633055210114, -0.5056406855583191, 0.44808366894721985, 0.0280365739017725, -0.34235668182373047, -0.39605242013931274, -0.09252236038446426, 0.7627779245376587, 0.019230956211686134, -0.49312296509742737, 0.8376566171646118, -0.11759945005178452, -0.6104704737663269, 0.500246524810791, -0.07868833839893341, 0.4970252513885498, -0.7108234167098999, 0.15377825498580933, -0.35637062788009644, 0.015044505707919598, -0.21524274349212646, -1.0010780096054077, 0.6531369686126709, -0.1823359727859497, -0.3852369487285614, -0.47989770770072937, 0.3121055066585541, -0.769544780254364, -0.736808717250824, 0.1844981163740158, 0.40483176708221436, -0.0034136115573346615, 0.1639159917831421, -0.9773267507553101, 0.3621112108230591, 0.2708394229412079, -0.503223180770874, 0.4306669533252716, 0.393724650144577, 0.10844022035598755, 0.1598116010427475, 0.6805338263511658, 0.3618282973766327, -0.196660116314888, -0.10291973501443863, 0.8787019848823547, -0.35797441005706787, -0.542454719543457, -0.7212128639221191, 0.66916823387146, -0.3322441875934601, -0.4182153344154358, 0.7125604152679443, 0.709619402885437, 0.8106876611709595, -0.006413375027477741, 0.729330837726593, -0.46368861198425293, 0.31284162402153015, -0.6475415825843811, 0.7518934011459351, -0.7676008343696594, -0.13270790874958038, -0.3694293797016144, -0.8670880198478699, -0.2704484164714813, 0.5238117575645447, -0.4495902359485626, -0.23162710666656494, 0.6407078504562378, 0.9005944728851318, 0.027117641642689705, -0.3945496082305908, 0.293506920337677, 0.5628296732902527, 0.19895969331264496, 0.43964582681655884, 0.19779106974601746, -0.6028699278831482, 0.5426859259605408, -0.49297016859054565, -0.2029971033334732, -0.22970840334892273, -0.9154987931251526, -0.7072506546974182, -1.0023976564407349, -0.41922318935394287, -0.5964804887771606, 0.30084142088890076, 0.8110496401786804, 0.5615854263305664, -0.8472117185592651, -0.21437038481235504, 0.04967221990227699, 0.0184326134622097, -0.2569466233253479, -0.28935202956199646, 0.6787307262420654, -0.12254402041435242, -0.952670156955719, 0.16185340285301208, 0.10018371045589447, 0.06922983378171921, 0.09578704088926315, 0.18558649718761444, -0.43410181999206543, 0.03307737037539482, 0.35819339752197266, 0.23385493457317352, -0.4674134850502014, -0.38235804438591003, -0.29367882013320923, -0.3114433288574219, 0.30900755524635315, 0.6010021567344666, -0.4578588306903839, 0.17926743626594543, 0.6681312322616577, 0.3009140193462372, 0.5378870964050293, 0.18782739341259003, -0.00969854649156332, -0.5740792155265808, 0.2944719195365906, -0.24020999670028687, 0.5151848793029785, 0.3165557384490967, -0.4912504255771637, 0.5973021984100342, 0.5740728974342346, -0.4293406903743744, -0.46272358298301697, -0.022459201514720917, -1.1117571592330933, -0.19808520376682281, 1.3180447816848755, 0.012798241339623928, -0.1860622614622116, 0.0744040459394455, -0.36310574412345886, 0.19433002173900604, -0.723961591720581, 0.6722952127456665, 0.5727095007896423, -0.005285461898893118, -0.3691895306110382, -0.6649324297904968, 0.5666728019714355, -0.04076630249619484, -1.1231367588043213, -0.060465991497039795, 0.39698678255081177, 0.40504831075668335, 0.3362579643726349, 0.7527064681053162, -0.19622169435024261, 0.10069769620895386, -0.14151881635189056, 0.17773745954036713, 0.0052393400110304356, -0.34801051020622253, -0.23737405240535736, -0.01078010629862547, -0.6239181160926819, -0.15256178379058838 ]
null
null
null
null
null
null
null
null
null
null
null
null
null
clane9/NSD-Flat
clane9
2023-09-28T01:26:21Z
441
5
null
[ "task_categories:image-to-image", "task_categories:object-detection", "size_categories:100K<n<1M", "license:other", "biology", "neuroscience", "fmri", "region:us" ]
2023-09-28T01:26:21Z
2023-07-20T21:40:43.000Z
2023-07-20T21:40:43
--- license: other dataset_info: features: - name: subject_id dtype: int64 - name: trial_id dtype: int64 - name: session_id dtype: int64 - name: nsd_id dtype: int64 - name: image dtype: image - name: activity dtype: image - name: subject dtype: string - name: flagged dtype: bool - name: BOLD5000 dtype: bool - name: shared1000 dtype: bool - name: coco_split dtype: string - name: coco_id dtype: int64 - name: objects struct: - name: area sequence: int64 - name: bbox sequence: sequence: float64 - name: category sequence: string - name: iscrowd sequence: int64 - name: segmentation list: - name: counts dtype: string - name: poly sequence: sequence: float64 - name: size sequence: int64 - name: supercategory sequence: string - name: target sequence: int64 - name: captions sequence: string - name: repetitions struct: - name: subject1_rep0 dtype: int64 - name: subject1_rep1 dtype: int64 - name: subject1_rep2 dtype: int64 - name: subject2_rep0 dtype: int64 - name: subject2_rep1 dtype: int64 - name: subject2_rep2 dtype: int64 - name: subject3_rep0 dtype: int64 - name: subject3_rep1 dtype: int64 - name: subject3_rep2 dtype: int64 - name: subject4_rep0 dtype: int64 - name: subject4_rep1 dtype: int64 - name: subject4_rep2 dtype: int64 - name: subject5_rep0 dtype: int64 - name: subject5_rep1 dtype: int64 - name: subject5_rep2 dtype: int64 - name: subject6_rep0 dtype: int64 - name: subject6_rep1 dtype: int64 - name: subject6_rep2 dtype: int64 - name: subject7_rep0 dtype: int64 - name: subject7_rep1 dtype: int64 - name: subject7_rep2 dtype: int64 - name: subject8_rep0 dtype: int64 - name: subject8_rep1 dtype: int64 - name: subject8_rep2 dtype: int64 splits: - name: train num_bytes: 26695182666.0 num_examples: 195000 - name: test num_bytes: 2461280671.0 num_examples: 18000 download_size: 22565691383 dataset_size: 29156463337.0 task_categories: - image-to-image - object-detection tags: - biology - neuroscience - fmri size_categories: - 100K<n<1M --- # NSD-Flat [[`GitHub`]](https://github.com/clane9/NSD-Flat) [[🤗 `Hugging Face Hub`]](https://huggingface.co/datasets/clane9/NSD-Flat) A Hugging Face dataset of pre-processed brain activity flat maps from the [Natural Scenes Dataset](https://naturalscenesdataset.org/), constrained to a visual cortex region of interest and rendered as PNG images. ## Load the dataset Load the dataset from [Hugging Face Hub](https://huggingface.co/datasets/clane9/NSD-Flat) ```python from datasets import load_dataset dataset = load_dataset("clane9/NSD-Flat", split="train") ``` ## Building the dataset ### 1. Download source data Run [`download_data.sh`](download_data.sh) to download the required source data: - NSD stimuli images and presentation info - COCO annotations - NSD beta activity maps in fsaverge surface space ```bash bash download_data.sh ``` ### 2. Convert the COCO annotations Run [`convert_nsd_annotations.py`](convert_nsd_annotations.py) to crop and reorganize the COCO annotations for NSD. ```bash python convert_nsd_annotations.py ``` ### 3. Generate the dataset Run [`generate_dataset.py`](generate_dataset.py) to generate the huggingface dataset in Arrow format. ```bash python generate_dataset.py --img_size 256 --workers 8 ``` ## Citation If you find this dataset useful, please consider citing: ``` @article{allen2022massive, title = {A massive 7T fMRI dataset to bridge cognitive neuroscience and artificial intelligence}, author = {Allen, Emily J and St-Yves, Ghislain and Wu, Yihan and Breedlove, Jesse L and Prince, Jacob S and Dowdle, Logan T and Nau, Matthias and Caron, Brad and Pestilli, Franco and Charest, Ian and others}, journal = {Nature neuroscience}, volume = {25}, number = {1}, pages = {116--126}, year = {2022}, publisher = {Nature Publishing Group US New York} } ``` ``` @misc{lane2023nsdflat, author = {Connor Lane}, title = {NSD-Flat: Pre-processed brain activity flat maps from the Natural Scenes Dataset}, howpublished = {\url{https://huggingface.co/datasets/clane9/NSD-Flat}}, year = {2023}, } ``` ## License Usage of this dataset constitutes agreement to the [NSD Terms and Conditions](https://cvnlab.slite.page/p/IB6BSeW_7o/Terms-and-Conditions).
[ -0.7176418304443359, -0.8440625071525574, 0.30507150292396545, 0.6203086376190186, -0.17939992249011993, -0.11138775944709778, -0.2781742811203003, -0.475332111120224, 0.7637628316879272, 0.5380775928497314, -0.9189910292625427, -0.8286763429641724, -0.40981537103652954, 0.028616344556212425, 0.049452852457761765, 1.0522371530532837, 0.03123033605515957, -0.24662555754184723, -0.45143285393714905, -0.2509962022304535, -0.1496165543794632, -0.5097500681877136, -0.5407204627990723, -0.3904208242893219, 0.21950452029705048, 0.11779343336820602, 0.46285510063171387, 0.39077088236808777, 0.7272495031356812, 0.32881900668144226, -0.202688530087471, -0.07070403546094894, -0.4695783853530884, -0.22495688498020172, 0.26791131496429443, -0.07791067659854889, -0.9465453624725342, 0.08179747313261032, 0.4323832392692566, 0.7271237373352051, -0.15615962445735931, 0.1884405016899109, -0.07934504002332687, 0.7500292658805847, -0.37867510318756104, 0.5767369270324707, -0.07964938133955002, 0.12157721072435379, -0.0905005931854248, 0.1998494416475296, -0.13463564217090607, -0.5252547860145569, 0.023009778931736946, -0.9165148138999939, 0.2899116277694702, -0.011649969965219498, 0.8429938554763794, 0.4886622428894043, -0.10629875957965851, 0.14952446520328522, 0.110284723341465, 0.553377091884613, -0.7411353588104248, 0.11228595674037933, 0.4955398142337799, -0.009906750172376633, -0.3332950472831726, -0.6939674615859985, -0.5233775973320007, -0.29127979278564453, -0.10527437925338745, 0.2062547355890274, -0.1531248241662979, 0.19844123721122742, 0.5819607973098755, 0.45357638597488403, -0.5303530693054199, -0.1301393359899521, -0.648434042930603, -0.3252743184566498, 0.9577876329421997, 0.09067131578922272, 0.5068577527999878, -0.41471341252326965, -0.4073951244354248, -0.2333144247531891, -0.25301966071128845, 0.41759249567985535, -0.11403664201498032, 0.18152010440826416, -0.8493186235427856, 0.7190171480178833, -0.3806494176387787, 0.7665808796882629, 0.3723176121711731, 0.08730955421924591, 0.8568087816238403, -0.3097204864025116, -0.3390609920024872, 0.11116902530193329, 0.9802060127258301, 0.7486069202423096, 0.2759847342967987, -0.07715655863285065, 0.013109475374221802, 0.11353334039449692, 0.23676039278507233, -0.8272108435630798, -0.5943266749382019, 0.33376455307006836, -0.3192332088947296, -0.14530038833618164, 0.11537392437458038, -0.8223087191581726, -0.24105660617351532, -0.3182729184627533, -0.1050443947315216, -0.665642499923706, -0.3844197392463684, 0.14652898907661438, -0.020758632570505142, 0.17040446400642395, 0.1566798835992813, -0.759048342704773, 0.42867809534072876, 0.23083330690860748, 1.016539454460144, -0.28687936067581177, -0.16390982270240784, -0.08256947994232178, -0.15991993248462677, -0.2833259701728821, 0.7693026065826416, -0.08504781126976013, -0.23661863803863525, -0.41650891304016113, 0.36056092381477356, -0.2790612280368805, -0.4512285888195038, 0.5482572317123413, -0.12342952191829681, 0.06189470738172531, -0.37140902876853943, 0.08822421729564667, -0.5482638478279114, 0.3640056848526001, -0.721847653388977, 1.274490475654602, 0.2044282853603363, -0.7130085229873657, 0.13992102444171906, -0.92240971326828, -0.5298535823822021, -0.05802091211080551, -0.19137394428253174, -0.4248206317424774, 0.3071039021015167, 0.6135939955711365, 0.6550072431564331, -0.0007333811954595149, 0.20109936594963074, -0.6768590807914734, -0.05237221345305443, 0.23431138694286346, 0.14791595935821533, 0.9658747315406799, -0.05295903980731964, -0.33462244272232056, 0.21850042045116425, -0.7050803303718567, 0.19820943474769592, 0.1948646456003189, -0.06418013572692871, -0.29861074686050415, -0.3495628833770752, 0.19279271364212036, 0.48254939913749695, 0.20005285739898682, -0.854023277759552, 0.382962703704834, -0.20776161551475525, 0.42547428607940674, 0.7252795696258545, 0.008448385633528233, 0.2682507038116455, -0.28643202781677246, 0.26213571429252625, 0.4526089131832123, 0.46603572368621826, 0.21325841546058655, -0.7892939448356628, -0.4333679676055908, -0.7557753324508667, -0.19536036252975464, 0.09761471301317215, -0.7725387811660767, 0.5973873138427734, -0.3690471053123474, -0.3652336895465851, -0.7367948293685913, -0.22130493819713593, 0.32850784063339233, 0.6444365382194519, 0.7593098282814026, -0.7671939134597778, -0.39282065629959106, -0.8892046809196472, 0.3984312117099762, 0.2120908796787262, -0.028677470982074738, 0.5633044838905334, 0.3707619607448578, -0.3418274223804474, 1.0794732570648193, -0.7984764575958252, -0.6438724994659424, 0.24083852767944336, 0.17949700355529785, 0.2543686032295227, 0.7725845575332642, 0.6877317428588867, -0.6910889744758606, -0.12618067860603333, -0.1746198982000351, -1.003463625907898, -0.09750652313232422, 0.15600566565990448, -0.20160561800003052, 0.26349663734436035, 0.2970603406429291, -0.6961922645568848, 0.6827166676521301, 0.44336745142936707, -0.6035540103912354, 0.4094110429286957, -0.0795988216996193, 0.2314370721578598, -0.8384287357330322, 0.3265559673309326, 0.12709708511829376, 0.09893138706684113, -0.5329525470733643, -0.10823123157024384, -0.026149654760956764, -0.05588536337018013, -0.5440778732299805, 0.45535993576049805, -0.6122890710830688, -0.22052425146102905, 0.03042098879814148, -0.02014819160103798, -0.04185766726732254, 0.8586509227752686, 0.2957034707069397, 0.25617989897727966, 0.9477415084838867, -0.5167974829673767, 0.11359966546297073, 0.6105445027351379, -0.23302948474884033, 0.42792367935180664, -0.6634048223495483, 0.13283704221248627, -0.2857956886291504, 0.4506617784500122, -0.8547746539115906, -0.3654736280441284, 0.3676316738128662, -0.4760284125804901, 0.21329185366630554, 0.11304537951946259, 0.007501373533159494, -0.4509128928184509, -0.5325442552566528, 0.5792180299758911, 0.4732222557067871, -0.4897940456867218, 0.6607909202575684, 0.4660785496234894, -0.017744773998856544, -0.5235141515731812, -1.046583890914917, -0.17546524107456207, 0.023044612258672714, -0.7597362995147705, 0.5546945333480835, -0.3327893316745758, 0.09406103938817978, 0.16595914959907532, -0.26959553360939026, -0.03890747204422951, -0.2775629758834839, 0.8764967918395996, 0.3492937684059143, -0.42335113883018494, -0.7447838187217712, -0.025695115327835083, -0.057064879685640335, 0.30534809827804565, 0.16348294913768768, 0.5013224482536316, -0.34038370847702026, -0.12003829330205917, -0.6265289783477783, 0.13921687006950378, 0.8020423054695129, -0.06937189400196075, 0.4670403301715851, 0.7188028693199158, -0.6438910365104675, 0.09321998059749603, -0.48427993059158325, -0.3484524190425873, -0.48626357316970825, 0.06178275868296623, -0.31370919942855835, -0.6747334599494934, 0.6415292024612427, 0.10023271292448044, -0.1362343430519104, 0.5300862789154053, 0.5648477673530579, 0.09855379909276962, 0.9048837423324585, 0.5821671485900879, -0.024955887347459793, 0.33457738161087036, -0.7547858357429504, 0.11220057308673859, -1.5462958812713623, -0.713283360004425, -0.044270213693380356, -0.6382787823677063, -0.26902440190315247, -0.6807976961135864, 0.18002980947494507, 0.04155157506465912, -0.32330548763275146, 0.11726967990398407, -1.0565775632858276, 0.33584874868392944, 0.3042331039905548, 0.34770819544792175, 0.06815005838871002, 0.17499375343322754, -0.36811283230781555, -0.05485645681619644, -0.4628053605556488, -0.14617854356765747, 0.9436111450195312, 0.035985108464956284, 0.7209658026695251, -0.1511830985546112, 0.5313040614128113, 0.015266268514096737, 0.558230459690094, -0.5835850238800049, 0.8262369632720947, -0.12837105989456177, -0.5726093649864197, 0.06614012271165848, -0.39445069432258606, -0.7884699702262878, -0.09241872280836105, -0.45470312237739563, -1.1097419261932373, 0.726664662361145, -0.08620833605527878, -0.5921952128410339, 0.12518556416034698, -0.780673623085022, 0.7848396897315979, -0.2894861698150635, -0.3450491428375244, 0.20804686844348907, -0.7297440767288208, 0.8327429890632629, 0.2162688970565796, -0.014597980305552483, -0.38353362679481506, 0.15081222355365753, 0.8760248422622681, 0.014058851636946201, 0.9249012470245361, -0.31659093499183655, 0.45811399817466736, 0.17734526097774506, -0.23017409443855286, -0.1714044213294983, 0.4314911961555481, -0.08617016673088074, 0.8598614931106567, -0.050850722938776016, -0.47731325030326843, -0.39029738306999207, 1.0425242185592651, -1.0385533571243286, -0.17335709929466248, -0.8683626651763916, -0.8757487535476685, 0.08096819370985031, 0.3067375719547272, 0.22840601205825806, 0.30650952458381653, -0.20417854189872742, 0.34565216302871704, 0.4025554955005646, -0.17617933452129364, 0.516418993473053, 0.21329130232334137, -0.41639870405197144, -0.6052902936935425, 0.6923245787620544, 0.10097663104534149, 0.001422824920155108, -0.09222403913736343, -0.1907285749912262, -0.3805527985095978, -0.43687501549720764, -0.2318485677242279, 0.4507085978984833, -0.1601341813802719, -0.33942949771881104, -0.679753839969635, -0.3681187033653259, -0.4494755268096924, -0.4268937110900879, -0.5242812037467957, -0.4007672369480133, -0.1936899721622467, -0.15135326981544495, 0.5785284638404846, 0.5164234638214111, -0.33765748143196106, 0.0751827210187912, -0.25958389043807983, 0.8323304653167725, -0.15220509469509125, 0.38111844658851624, -0.08965794742107391, 0.1610724776983261, 0.04534328356385231, 0.49718740582466125, -0.46548473834991455, -0.4374386966228485, 0.5647523999214172, 0.12316057085990906, 0.45080918073654175, 0.2707100510597229, 0.302407443523407, 0.7928643822669983, 0.09318054467439651, 0.8345398306846619, 0.5792420506477356, -0.5924919843673706, 0.42317649722099304, -0.16280415654182434, 0.5249067544937134, 0.5883888006210327, 0.5421115756034851, -0.15924783051013947, -0.18440701067447662, -0.8444307446479797, -1.2264249324798584, 1.110142469406128, 0.448352187871933, -0.22777049243450165, 0.042260024696588516, 0.5590345859527588, -0.1916726976633072, 0.05437343195080757, -0.823204755783081, -0.408141165971756, -0.5492004752159119, -0.19453060626983643, -0.23026491701602936, 0.4110058844089508, -0.43472689390182495, -0.7541982531547546, 0.5175519585609436, -0.3252609074115753, 0.7348201870918274, 0.5789248943328857, 0.007458989508450031, -0.05191348120570183, -0.38634467124938965, 0.38688167929649353, 0.3082600235939026, -0.658214271068573, 0.012264289893209934, -0.03732793778181076, -1.0246977806091309, -0.10220631957054138, 0.33940672874450684, -0.21505403518676758, -0.32894015312194824, 0.1886487603187561, 0.8576757907867432, 0.18070219457149506, -0.3688826560974121, 0.312729150056839, -0.42797306180000305, -0.2741638123989105, -0.22326207160949707, 0.12359300255775452, 0.30629268288612366, 0.19331149756908417, 0.40345701575279236, 0.302575021982193, -0.1429917961359024, -0.35613948106765747, 0.3151804804801941, 0.21950435638427734, -0.5043721795082092, -0.5448608994483948, 0.6470637917518616, 0.036313846707344055, -0.2186799943447113, 1.1597450971603394, 0.06787659972906113, -0.2952060401439667, 0.8708981275558472, 0.36653414368629456, 0.8506633043289185, -0.02560785599052906, 0.1651037037372589, 0.6514812111854553, 0.31468209624290466, 0.013525447808206081, 0.5356280207633972, -0.06716065853834152, -0.7279948592185974, -0.3831203579902649, -0.6795535087585449, -0.047770146280527115, 0.339743435382843, -0.9140489101409912, 0.042715974152088165, -0.8122844099998474, -0.48739317059516907, 0.11825234442949295, 0.174941748380661, -0.7782824039459229, 0.36896899342536926, 0.27798259258270264, 0.7352286577224731, -0.7869842648506165, 0.7989112734794617, 0.96424800157547, -0.6119799017906189, -0.7424396276473999, -0.05038135126233101, 0.07190293818712234, -0.735565185546875, 0.2798251211643219, 0.44868797063827515, 0.042419809848070145, 0.18212969601154327, -0.7420657873153687, -0.868181586265564, 1.3431978225708008, 0.39991042017936707, -0.26689592003822327, 0.22492730617523193, -0.0076087419874966145, 0.4222186803817749, -0.5830135941505432, 0.5132546424865723, 0.49601614475250244, 0.6210735440254211, 0.2627386152744293, -0.5221924781799316, 0.4549380838871002, -0.5962203145027161, 0.011898605152964592, 0.13898861408233643, -0.5906296372413635, 0.7682466506958008, -0.5477160215377808, -0.14065569639205933, -0.25660693645477295, 0.7142606973648071, 0.6272035241127014, 0.6647728681564331, 0.34282398223876953, 0.8807770609855652, 0.6289246082305908, -0.3973531424999237, 0.9337704181671143, -0.4188756048679352, 0.5283041000366211, 0.7597893476486206, -0.1174137219786644, 0.6844089031219482, 0.6091534495353699, 0.10729818791151047, 0.4713730216026306, 0.845516562461853, -0.005481916479766369, 0.6661686301231384, 0.05396110936999321, 0.05572739243507385, 0.0826413705945015, 0.005928006488829851, -0.5100153684616089, 0.12973783910274506, 0.365456759929657, 0.022212499752640724, -0.24492987990379333, 0.11005417257547379, -0.04271691292524338, -0.17422275245189667, -0.16303081810474396, 0.5094017386436462, 0.48097631335258484, -0.7048500776290894, 0.9733092784881592, -0.2583203613758087, 0.8990063667297363, -0.6185528039932251, 0.14583155512809753, -0.4033552408218384, 0.16735753417015076, -0.6394176483154297, -0.7929278612136841, 0.5187760591506958, -0.16389499604701996, -0.2120806723833084, -0.11977473646402359, 0.3612121641635895, -0.25348207354545593, -0.4899698793888092, 0.5485883951187134, 0.22665563225746155, 0.190546914935112, 0.02753649652004242, -1.0524953603744507, 0.2388702630996704, 0.1075938418507576, -0.7735092639923096, 0.5544878244400024, 0.10758128762245178, -0.20241382718086243, 0.6025350093841553, 1.0071409940719604, -0.0674915611743927, 0.10172945261001587, -0.38615766167640686, 1.1783794164657593, -0.8681803941726685, -0.5282901525497437, -0.42101413011550903, 0.8204493522644043, -0.287881463766098, -0.6872982978820801, 0.5749734044075012, 0.6205650568008423, 0.7020699381828308, -0.1016555204987526, 0.4045771360397339, -0.764288067817688, -0.21716389060020447, -0.3825211822986603, 0.8753691911697388, -0.5436806678771973, -0.11435659229755402, -0.15057362616062164, -0.8994174003601074, -0.43328365683555603, 0.9584948420524597, -0.4472840428352356, 0.11143149435520172, 1.0370326042175293, 1.1138951778411865, -0.5306059122085571, 0.19436706602573395, -0.08198250085115433, 0.6268038749694824, 0.0789487436413765, 0.6869924664497375, 0.23888900876045227, -0.35579633712768555, -0.14381663501262665, -0.7298005819320679, -0.4480867087841034, -0.0898008644580841, -0.9441074132919312, -0.767249345779419, -0.7801308035850525, -0.7613122463226318, -0.5249099731445312, -0.17019034922122955, 0.7123641967773438, 0.9941384196281433, -0.8055746555328369, -0.27756962180137634, 0.012232640758156776, -0.023689351975917816, -0.6209328174591064, -0.27349743247032166, 0.6983002424240112, 0.23525257408618927, -0.5587919354438782, 0.2723594307899475, 0.24710701406002045, 0.0038165610749274492, 0.07725540548563004, -0.13104146718978882, -0.521051287651062, -0.2164180874824524, 0.47691962122917175, 0.5424372553825378, -0.518383800983429, -0.12421771883964539, -0.08434108644723892, -0.13682247698307037, 0.35720178484916687, 0.4980279207229614, -0.8314098715782166, 0.24479465186595917, 0.3878565728664398, 0.22779907286167145, 0.9980961680412292, 0.11602265387773514, 0.2527798116207123, -0.6921231746673584, 0.4569801092147827, 0.29071107506752014, 0.21651677787303925, 0.47583627700805664, -0.5123719573020935, 0.6466562151908875, 0.22282308340072632, -0.5354446172714233, -0.812547504901886, -0.22735366225242615, -1.8833742141723633, 0.029024465009570122, 1.0772819519042969, -0.2204115092754364, -0.8715126514434814, -0.06691110879182816, -0.19550302624702454, 0.14225278794765472, -0.6455250978469849, 0.934431254863739, 0.45721206068992615, -0.5774925947189331, -0.0572957769036293, -0.4616526663303375, 0.6552092432975769, 0.10264868289232254, -0.8275912404060364, -0.04633863642811775, 0.702767014503479, 0.405105322599411, 0.4643310308456421, 0.886389434337616, -0.2797243893146515, 0.1475066989660263, -0.16955281794071198, 0.5806214809417725, -0.44213417172431946, -0.13694608211517334, -0.3774968385696411, 0.19442085921764374, -0.5522342920303345, -0.35042086243629456 ]
null
null
null
null
null
null
null
null
null
null
null
null
null
senti_ws
null
2023-01-25T14:44:03Z
440
1
null
[ "task_categories:token-classification", "task_categories:text-classification", "task_ids:text-scoring", "task_ids:sentiment-scoring", "task_ids:part-of-speech", "annotations_creators:expert-generated", "annotations_creators:machine-generated", "language_creators:found", "multilinguality:monolingual", "size_categories:1K<n<10K", "source_datasets:original", "language:de", "license:cc-by-sa-3.0", "region:us" ]
2023-01-25T14:44:03Z
2022-03-02T23:29:22.000Z
2022-03-02T23:29:22
--- annotations_creators: - expert-generated - machine-generated language_creators: - found language: - de license: - cc-by-sa-3.0 multilinguality: - monolingual size_categories: - 1K<n<10K source_datasets: - original task_categories: - token-classification - text-classification task_ids: - text-scoring - sentiment-scoring - part-of-speech pretty_name: SentiWS dataset_info: - config_name: pos-tagging features: - name: word dtype: string - name: pos-tag dtype: class_label: names: '0': NN '1': VVINF '2': ADJX '3': ADV splits: - name: train num_bytes: 75530 num_examples: 3471 download_size: 97748 dataset_size: 75530 - config_name: sentiment-scoring features: - name: word dtype: string - name: sentiment-score dtype: float32 splits: - name: train num_bytes: 61646 num_examples: 3471 download_size: 97748 dataset_size: 61646 --- # Dataset Card for SentiWS ## 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://wortschatz.uni-leipzig.de/en/download - **Repository:** [Needs More Information] - **Paper:** http://www.lrec-conf.org/proceedings/lrec2010/pdf/490_Paper.pdf - **Leaderboard:** [Needs More Information] - **Point of Contact:** [Needs More Information] ### Dataset Summary SentimentWortschatz, or SentiWS for short, is a publicly available German-language resource for sentiment analysis, opinion mining etc. It lists positive and negative polarity bearing words weighted within the interval of [-1; 1] plus their part of speech tag, and if applicable, their inflections. The current version of SentiWS contains around 1,650 positive and 1,800 negative words, which sum up to around 16,000 positive and 18,000 negative word forms incl. their inflections, respectively. It not only contains adjectives and adverbs explicitly expressing a sentiment, but also nouns and verbs implicitly containing one. ### Supported Tasks and Leaderboards Sentiment-Scoring, Pos-Tagging ### Languages German ## Dataset Structure ### Data Instances For pos-tagging: ``` { "word":"Abbau" "pos_tag": 0 } ``` For sentiment-scoring: ``` { "word":"Abbau" "sentiment-score":-0.058 } ``` ### Data Fields SentiWS is UTF8-encoded text. For pos-tagging: - word: one word as a string, - pos_tag: the part-of-speech tag of the word as an integer, For sentiment-scoring: - word: one word as a string, - sentiment-score: the sentiment score of the word as a float between -1 and 1, The POS tags are ["NN", "VVINF", "ADJX", "ADV"] -> ["noun", "verb", "adjective", "adverb"], and positive and negative polarity bearing words are weighted within the interval of [-1, 1]. ### Data Splits train: 1,650 negative and 1,818 positive words ## 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 Creative Commons Attribution-Noncommercial-Share Alike 3.0 Unported License ### Citation Information @INPROCEEDINGS{remquahey2010, title = {SentiWS -- a Publicly Available German-language Resource for Sentiment Analysis}, booktitle = {Proceedings of the 7th International Language Resources and Evaluation (LREC'10)}, author = {Remus, R. and Quasthoff, U. and Heyer, G.}, year = {2010} } ### Contributions Thanks to [@harshalmittal4](https://github.com/harshalmittal4) for adding this dataset.
[ -0.5366187691688538, -0.4562835097312927, 0.17075544595718384, 0.39693090319633484, -0.3803499937057495, -0.05640046298503876, -0.40288031101226807, -0.30423542857170105, 0.5719243884086609, 0.35541874170303345, -0.9916700720787048, -0.9587211608886719, -0.7436134219169617, 0.13252133131027222, -0.04891914874315262, 1.3386423587799072, 0.15262603759765625, 0.026439456269145012, -0.21948964893817902, -0.4300156235694885, -0.20834462344646454, -0.5268765687942505, -0.27100303769111633, -0.4986618757247925, 0.709169328212738, 0.7049357891082764, 0.6909986734390259, 0.2634916603565216, 0.7966136336326599, 0.25278183817863464, -0.11271264404058456, -0.09560643881559372, -0.5014822483062744, 0.0005325747770257294, -0.14282844960689545, -0.3413853049278259, -0.889704167842865, 0.39215385913848877, 0.5736464262008667, 0.7029587030410767, -0.021550193428993225, 0.594405472278595, 0.2071041315793991, 0.7834920287132263, -0.45269984006881714, 0.5030126571655273, -0.38858622312545776, 0.10813083499670029, -0.5152280330657959, -0.10694759339094162, -0.15477845072746277, -0.626186728477478, 0.07301709800958633, -0.577890932559967, -0.03030943125486374, -0.09641410410404205, 1.0116052627563477, -0.0381937101483345, -0.3155882954597473, -0.20505975186824799, -0.3293292820453644, 0.9279156923294067, -1.0129190683364868, 0.28420042991638184, 0.5628472566604614, -0.022436968982219696, -0.10116749256849289, -0.8403511047363281, -0.481267511844635, 0.1859637200832367, -0.1611195206642151, 0.6369460821151733, -0.6023220419883728, -0.11795563995838165, 0.5949394702911377, 0.4091401696205139, -0.4914061427116394, -0.23220747709274292, -0.30359160900115967, -0.11632498353719711, 0.8714221119880676, 0.16716434061527252, 0.11631444096565247, -0.5046911239624023, -0.1609330028295517, -0.24989895522594452, -0.4149971604347229, 0.09770100563764572, 0.545866072177887, 0.5546415448188782, -0.700702428817749, 0.7098917961120605, -0.389665424823761, 0.4970366656780243, -0.07975507527589798, -0.22369834780693054, 1.1110403537750244, -0.35513827204704285, -0.0035836598835885525, -0.30384114384651184, 0.9291550517082214, 0.7555963397026062, 0.21585963666439056, 0.094220831990242, -0.2689228355884552, 0.15048375725746155, -0.04166799038648605, -0.7612327933311462, -0.08990328758955002, 0.37553319334983826, -0.7599697113037109, -0.40812525153160095, 0.26129740476608276, -0.9191504716873169, -0.1440323293209076, -0.28473713994026184, 0.16626934707164764, -0.17785094678401947, -0.535325825214386, -0.019892562180757523, -0.6493935585021973, 0.43029195070266724, 0.031551431864500046, -0.2585529685020447, 0.207933247089386, 0.45765450596809387, 0.6958371996879578, -0.07122857868671417, -0.3456983268260956, -0.18678595125675201, -0.04911283776164055, 0.0006082369945943356, 0.7122737169265747, -0.4332803785800934, -0.5433409810066223, 0.274201363325119, 0.22658509016036987, -0.02114378660917282, -0.21845676004886627, 0.8444249629974365, -0.327774316072464, 0.6435993313789368, -0.5223411917686462, -0.6180727481842041, -0.22332286834716797, 0.36839622259140015, -0.5847059488296509, 1.3194184303283691, 0.1620863378047943, -1.2157374620437622, 0.2936840355396271, -1.0027226209640503, -0.6326520442962646, 0.12436116486787796, -0.03350857272744179, -0.37469765543937683, -0.0694340392947197, 0.01261445228010416, 0.7240353226661682, -0.32603493332862854, 0.2658531367778778, -0.49392831325531006, -0.16516335308551788, 0.3623851239681244, -0.24332991242408752, 1.26331627368927, 0.2130075991153717, -0.3352031409740448, 0.287936270236969, -0.9402303695678711, 0.08779888600111008, 0.1904640644788742, -0.2986481487751007, -0.12775923311710358, -0.03849571943283081, 0.30210626125335693, 0.3594008684158325, 0.3457581102848053, -0.7282010316848755, 0.008321747183799744, -0.41576874256134033, 0.3839191794395447, 0.5489467978477478, 0.14258550107479095, 0.29926052689552307, -0.3294900953769684, 0.509242057800293, 0.1754121631383896, 0.5319545865058899, 0.3728488087654114, -0.6953263282775879, -0.7686284184455872, -0.1833360493183136, -0.0418633371591568, 0.8229872584342957, -0.7588461637496948, 0.9865608811378479, -0.6061469912528992, -0.9146179556846619, -0.44864988327026367, -0.11053028702735901, 0.27320611476898193, 0.38867324590682983, 0.2590591013431549, -0.1685163527727127, -0.49730029702186584, -1.0394339561462402, -0.08617427945137024, -0.30051475763320923, 0.13764150440692902, 0.4666796326637268, 0.677181601524353, -0.43406200408935547, 0.9220137000083923, -0.911483883857727, -0.2881513237953186, -0.43996289372444153, 0.21094965934753418, 0.5108357667922974, 0.35654187202453613, 0.5316516160964966, -0.7752280235290527, -0.2753450870513916, -0.45478135347366333, -0.7729254961013794, -0.22651560604572296, 0.20703499019145966, -0.22325371205806732, 0.07617554813623428, 0.2717021405696869, -0.6067817211151123, 0.2963118851184845, 0.6248925924301147, -0.6084995865821838, 0.3950209319591522, 0.08716191351413727, 0.16283546388149261, -1.264005422592163, 0.15217693150043488, 0.29583966732025146, -0.10948599129915237, -0.5186536908149719, -0.17138329148292542, -0.002999356482177973, -0.21436679363250732, -0.4724282920360565, 0.3464980125427246, -0.2676728665828705, 0.137010857462883, -0.04400099068880081, 0.22830379009246826, 0.021326014772057533, 0.7142568826675415, -0.11735597997903824, 0.6083178520202637, 0.714314341545105, -0.3502587676048279, 0.48316577076911926, 0.34648531675338745, -0.2742544412612915, 0.7149640321731567, -0.7517749071121216, -0.015342330560088158, -0.34233570098876953, 0.32137277722358704, -0.8666868805885315, -0.2676447629928589, 0.6438652276992798, -0.6483101844787598, 0.17539802193641663, 0.09690059721469879, -0.6519219279289246, -0.5136802792549133, -0.6805693507194519, -0.02621295116841793, 0.4221086800098419, -0.10167913138866425, 0.5907267332077026, 0.6755712032318115, -0.05889912694692612, -0.46053871512413025, -0.9548400640487671, -0.00817027036100626, -0.3026752173900604, -0.604486346244812, 0.382108598947525, -0.3007972240447998, -0.23242083191871643, 0.1557685136795044, 0.33797943592071533, 0.1352667361497879, 0.05316418036818504, 0.458456814289093, 0.25615575909614563, 0.006968802306801081, 0.11849817633628845, -0.1026872992515564, -0.11319410800933838, -0.025410151109099388, 0.07425520569086075, 0.46235164999961853, -0.38194820284843445, -0.13091416656970978, -0.39942172169685364, 0.49346593022346497, 0.5357885956764221, -0.30336689949035645, 0.8152438402175903, 0.8502815365791321, -0.4299030303955078, 0.06304367631673813, -0.4191161096096039, -0.22276227176189423, -0.42533037066459656, 0.32161667943000793, -0.20494823157787323, -0.7021767497062683, 0.7663130760192871, 0.2186424732208252, 0.22882696986198425, 0.7899154424667358, 0.3934180438518524, -0.1471429020166397, 1.0124887228012085, 0.5843532681465149, -0.32509613037109375, 0.604478120803833, -0.43111589550971985, 0.08200875669717789, -0.5915589332580566, -0.30339086055755615, -0.6146007776260376, -0.2429620921611786, -0.9824984073638916, -0.047694720327854156, 0.11054519563913345, -0.208640456199646, -0.4228541851043701, 0.3443935215473175, -0.5372530817985535, -0.006335517857223749, 0.8554321527481079, 0.18765084445476532, -0.0989094004034996, -0.0047224643640220165, 0.25023630261421204, -0.16378892958164215, -0.7349271774291992, -0.4196818172931671, 0.8114328980445862, 0.6037451028823853, 0.5226090550422668, 0.08070770651102066, 0.7085285186767578, 0.475918710231781, 0.3857651352882385, -0.799185037612915, 0.8272196054458618, -0.22355669736862183, -0.6412928104400635, -0.12057031691074371, -0.37007561326026917, -0.7568845152854919, -0.02070082165300846, -0.33699625730514526, -0.5138988494873047, 0.3163711726665497, 0.04500119760632515, 0.049665700644254684, 0.1491973102092743, -0.6683900356292725, 0.7475939393043518, 0.020376119762659073, -0.10793829709291458, -0.23468756675720215, -0.9035029411315918, -0.12146105617284775, 0.24532456696033478, 0.42710360884666443, -0.3968687653541565, 0.01673034392297268, 1.2972912788391113, -0.31785261631011963, 1.2166212797164917, -0.38101926445961, 0.03802461549639702, 0.3179604113101959, -0.5027486085891724, 0.588890552520752, -0.27353739738464355, -0.15841205418109894, 0.4783492386341095, -0.11176937818527222, -0.26967453956604004, -0.2771138548851013, 0.8177206516265869, -0.8437874913215637, -0.38598960638046265, -0.6148926019668579, -0.33854857087135315, -0.17877843976020813, 0.3346458673477173, 0.5544808506965637, 0.6164452433586121, -0.10580406337976456, 0.24306616187095642, 0.37346628308296204, -0.2982867360115051, 0.28995612263679504, 0.4327104091644287, 0.025683235377073288, -0.8538562059402466, 0.9236857891082764, 0.48350635170936584, -0.07841537147760391, 0.03085455670952797, 0.2303198277950287, -0.28565701842308044, -0.18510344624519348, -0.14049333333969116, 0.4118007719516754, -0.9012110233306885, -0.47521018981933594, -0.48603376746177673, -0.1902391016483307, -0.5848292112350464, -0.007854900322854519, -0.18783603608608246, -0.4115827977657318, -0.4965266287326813, -0.3827289640903473, 0.731766402721405, 0.504439115524292, -0.2718832492828369, 0.4566827714443207, -0.7305953502655029, 0.10571219772100449, -0.14348620176315308, 0.7703976035118103, -0.09869784861803055, -0.4445522427558899, -0.31901365518569946, 0.1342766135931015, -0.14118324220180511, -1.093494176864624, 0.2189079225063324, 0.09293393045663834, 0.5590735673904419, 0.32053714990615845, 0.1946667730808258, 0.3933614492416382, -0.18448728322982788, 1.1907293796539307, 0.31071460247039795, -0.7978430986404419, 0.7092325687408447, -0.6454152464866638, 0.44592586159706116, 0.6715782880783081, 0.3706628680229187, -0.7841675877571106, -0.5286558866500854, -1.0758495330810547, -1.069645643234253, 0.8831884860992432, 0.2999281585216522, 0.34376832842826843, -0.329635888338089, 0.09121672809123993, -0.09301304072141647, 0.2930242419242859, -1.0651432275772095, -0.9401535987854004, -0.3763638436794281, -0.5016438364982605, -0.0039680530317127705, -0.4441957473754883, -0.16614869236946106, -0.4712986350059509, 1.2472507953643799, 0.1783391833305359, 0.38151994347572327, 0.12996789813041687, 0.08922732621431351, -0.06820432096719742, 0.3922630846500397, 0.36237832903862, 0.41358089447021484, -0.3569440543651581, 0.05884091928601265, 0.11619920283555984, -0.5696269273757935, -0.18747055530548096, 0.24595509469509125, -0.3968795835971832, 0.03900904580950737, 0.5394327044487, 1.050477147102356, 0.11032210290431976, -0.317609965801239, 0.7759805917739868, -0.03485346585512161, -0.33967944979667664, -0.6336952447891235, -0.13226285576820374, 0.05703220143914223, 0.3129454255104065, 0.28357934951782227, -0.03581152856349945, 0.17362867295742035, -0.3139480650424957, 0.18125921487808228, 0.3515091836452484, -0.5949083566665649, -0.4449501931667328, 0.2965150773525238, 0.38004523515701294, -0.2966337203979492, 0.5616216063499451, -0.30587038397789, -0.5653990507125854, 0.40996503829956055, 0.4087284207344055, 0.9414401054382324, 0.1881319135427475, 0.4894160032272339, 0.5441449880599976, 0.3592904508113861, -0.0020706849172711372, 0.773960292339325, 0.019586125388741493, -0.9542182683944702, -0.14026641845703125, -0.42619284987449646, -0.0504416860640049, 0.21393989026546478, -0.9342288374900818, 0.2701754570007324, -0.31353503465652466, -0.7033725380897522, 0.08672232925891876, 0.11774643510580063, -0.8172678351402283, 0.2806169390678406, 0.20585253834724426, 1.065962791442871, -1.1352342367172241, 0.5164232850074768, 0.9354072213172913, -0.6884408593177795, -0.7704326510429382, 0.04609542340040207, 0.018200045451521873, -0.49296000599861145, 0.45535731315612793, 0.0901452824473381, -0.16374525427818298, 0.13344340026378632, -0.7809085249900818, -0.9566187262535095, 0.9916784167289734, -0.062464311718940735, -0.2248067408800125, 0.43550243973731995, 0.11933471262454987, 0.5393110513687134, -0.1769949346780777, 0.22528424859046936, 0.510086178779602, 0.6856070160865784, -0.09298242628574371, -0.519677460193634, 0.09139100462198257, -0.575563371181488, -0.2655029296875, 0.15132638812065125, -0.785326361656189, 0.5098295211791992, 0.13760660588741302, -0.33050087094306946, -0.5228438377380371, 0.8722816705703735, -0.026945842429995537, 0.27499061822891235, 0.5686253905296326, 0.686197817325592, 0.763109028339386, -0.2727009057998657, 1.0290768146514893, -0.31899702548980713, 0.5060469508171082, 0.935879111289978, -0.10047204047441483, 0.8711883425712585, 0.4120829999446869, -0.406059592962265, 0.599373459815979, 0.5354193449020386, -0.1628977209329605, 0.5291515588760376, -0.05963630601763725, -0.09387198835611343, -0.0511971078813076, -0.3779948353767395, -0.3339197039604187, 0.4880736470222473, 0.353605180978775, -0.31883060932159424, -0.22337065637111664, 0.2199213206768036, 0.34732624888420105, -0.14839622378349304, -0.36648058891296387, 0.8820217847824097, 0.013798668049275875, -0.5451927185058594, 0.18378609418869019, 0.02489304728806019, 0.9028567671775818, -0.6803770065307617, 0.11346311122179031, -0.2504168748855591, 0.08718588203191757, -0.486544132232666, -1.3503559827804565, 0.3388264775276184, 0.061965178698301315, -0.44196048378944397, -0.3191746473312378, 1.001045823097229, -0.3734416365623474, -0.7016370296478271, 0.4130442440509796, 0.6069173216819763, 0.17716236412525177, 0.22967539727687836, -1.0899139642715454, 0.062447283416986465, 0.25560644268989563, -0.6585955619812012, -0.039328932762145996, 0.34586501121520996, 0.04311354085803032, 0.5348984599113464, 0.35631129145622253, 0.26814934611320496, -0.2696072459220886, 0.5434784889221191, 0.9425103664398193, -0.7593809962272644, -0.5698099732398987, -0.7169855237007141, 0.6276185512542725, -0.4448060393333435, -0.4999221861362457, 1.0451889038085938, 0.5816933512687683, 0.8063308000564575, -0.027306346222758293, 1.0015133619308472, -0.34460464119911194, 0.8284127116203308, -0.05751648545265198, 0.7390468120574951, -0.6508214473724365, -0.17162220180034637, -0.514404833316803, -0.7876245379447937, -0.36590200662612915, 0.5756285786628723, -0.48190686106681824, -0.04313485696911812, 0.2333115190267563, 0.7610453963279724, 0.07845102995634079, 0.18153944611549377, -0.014393721707165241, 0.27311840653419495, 0.1439327746629715, 0.01144463662058115, 0.6379579901695251, -0.47962313890457153, 0.31366297602653503, -0.5640450119972229, -0.4673990309238434, 0.07529178261756897, -0.9700748920440674, -0.8290098309516907, -0.8067232370376587, -0.6651247143745422, -0.5704595446586609, -0.21547220647335052, 1.1156200170516968, 0.32235968112945557, -0.8094529509544373, -0.31672343611717224, 0.1996241807937622, -0.05559898912906647, -0.04592927545309067, -0.3213302791118622, 0.5303605794906616, 0.004861513152718544, -0.4436773955821991, -0.1377391666173935, 0.09599941223859787, 0.022419001907110214, -0.00919313170015812, -0.013857745565474033, -0.26064544916152954, 0.07949018478393555, 0.7121466398239136, 0.05710094794631004, -0.48364558815956116, -0.3276973068714142, 0.05047282949090004, -0.20057085156440735, 0.044475629925727844, 0.4390365481376648, -0.3757479190826416, -0.026476051658391953, 0.7651364207267761, 0.015781376510858536, 0.36270102858543396, -0.06150076910853386, 0.1851605623960495, -0.984000563621521, 0.3769344985485077, 0.2615087032318115, 0.46492138504981995, 0.5201171636581421, -0.3056226372718811, 0.41499990224838257, 0.38968703150749207, -0.3799080550670624, -0.7185548543930054, 0.050784263759851456, -1.0623211860656738, -0.24792009592056274, 1.43087899684906, -0.03789724037051201, -0.13503974676132202, 0.01571778766810894, -0.14223618805408478, 0.5223336815834045, -0.6359022855758667, 0.26570582389831543, 0.9142187833786011, 0.007222627755254507, 0.02792036347091198, -0.3514838218688965, 0.5911017656326294, 0.02925049513578415, -0.9005796909332275, 0.19968584179878235, 0.6814479231834412, 0.27306392788887024, 0.1430099755525589, 0.8712042570114136, -0.21850237250328064, -0.06265230476856232, -0.0640445128083229, 0.39650943875312805, 0.16215583682060242, -0.007853121496737003, -0.12823185324668884, -0.05746140331029892, -0.011399836279451847, -0.3079073131084442 ]
null
null
null
null
null
null
null
null
null
null
null
null
null
huggan/pokemon
huggan
2022-04-01T11:50:45Z
440
14
null
[ "region:us" ]
2022-04-01T11:50:45Z
2022-04-01T11:44:34.000Z
2022-04-01T11:44:34
Source: https://www.kaggle.com/datasets/djilax/pkmn-image-dataset
[ -0.23391589522361755, -0.33768483996391296, 0.42614248394966125, 0.10422323644161224, -0.34556707739830017, -0.28180786967277527, 0.09505081921815872, -0.19251327216625214, 0.2522723972797394, 0.8988357782363892, -0.8460766673088074, -0.8113515973091125, -0.6122553944587708, -0.19187770783901215, -0.2952539920806885, 0.670559823513031, 0.04786305874586105, -0.020928403362631798, -0.3380786180496216, -0.4466097056865692, -0.23047377169132233, -0.00466719176620245, -0.5966416597366333, -0.13215696811676025, 0.9485771656036377, 0.8817134499549866, 0.922583281993866, 0.5389899015426636, 0.7521556615829468, -0.052295878529548645, 0.02462613396346569, -0.29404857754707336, -0.4565936326980591, 0.05855424702167511, -0.14389394223690033, -0.1420038491487503, -0.23723402619361877, 0.3619641959667206, 0.8810444474220276, 0.6074764132499695, -0.23476938903331757, 0.47149962186813354, -0.22415056824684143, 0.9860472679138184, -0.9463399052619934, 0.2788802683353424, -0.357016921043396, 0.4257250130176544, -0.3383200764656067, 0.22683784365653992, -0.2439996302127838, -0.37179669737815857, -0.20830602943897247, -1.0075939893722534, 0.18053023517131805, -0.22828076779842377, 1.3028225898742676, 0.10202755779027939, -1.0514873266220093, -0.07610383629798889, -0.26378756761550903, 0.2556767165660858, -0.6090100407600403, 0.2985399067401886, 0.7256134748458862, 0.8527995347976685, -0.4914337992668152, -0.714670717716217, -0.47732672095298767, -0.2990932762622833, -0.13541091978549957, 0.18440303206443787, 0.13295450806617737, -0.4122312664985657, 0.22374151647090912, 0.666045069694519, -0.526278018951416, -0.42742636799812317, -0.5493413805961609, -0.22964788973331451, 0.9062124490737915, 0.20169784128665924, 0.2479836344718933, -0.22404271364212036, -0.14546680450439453, -0.48476821184158325, -0.7012315988540649, -0.00456309225410223, 0.6636380553245544, -0.11961361765861511, -0.48009371757507324, 0.9267832636833191, -0.5501706004142761, 0.88753342628479, -0.01729992963373661, 0.0187408197671175, 0.7761977910995483, -0.3206067383289337, -0.026723120361566544, 0.2697150409221649, 0.8216630220413208, 0.721255898475647, -0.06282960623502731, -0.21562212705612183, 0.10462971031665802, -0.4604332149028778, 0.45452597737312317, -0.7369980216026306, -1.5443674325942993, -0.014669477939605713, -0.9213090538978577, -0.6163109540939331, 0.6345255374908447, -0.7588536739349365, -0.33499521017074585, -0.08014030009508133, 0.6752516627311707, 0.24953550100326538, -0.792432963848114, 0.11614685505628586, -0.18358372151851654, 0.3348093628883362, 0.09314341843128204, 0.03193356841802597, 0.1208251491189003, 0.33169034123420715, 1.0803744792938232, 0.14052873849868774, -0.02788609266281128, -0.16967256367206573, -0.07802493125200272, -0.4126385748386383, 0.910487949848175, -0.44128620624542236, -0.4388662278652191, -0.14557555317878723, 0.7142094373703003, 0.08426561951637268, -0.899802029132843, 0.9053524136543274, -0.6194646954536438, -0.22059379518032074, -0.37810543179512024, -0.35221055150032043, -0.3949339985847473, -0.13867485523223877, -1.2400100231170654, 1.0318552255630493, 0.054754141718149185, -0.7969885468482971, 0.6340959072113037, -0.8102872371673584, -0.23180551826953888, -0.19783172011375427, 0.08915363997220993, -1.1954141855239868, -0.06251602619886398, 0.22245053946971893, 0.37163081765174866, -0.1434876173734665, -0.030188631266355515, -0.727345883846283, 0.10214529931545258, 0.5255213975906372, -0.14231565594673157, 0.8668522834777832, 0.6410219669342041, 0.08660624921321869, 0.1576935350894928, -1.237254023551941, -0.2615883946418762, 0.9425514936447144, -0.15988335013389587, -0.37580493092536926, -0.06889751553535461, 0.06180218607187271, 0.5924898982048035, 0.04137411341071129, -0.8034102916717529, 0.19187672436237335, 0.5062201023101807, -0.2243451625108719, 0.6375873684883118, 0.19776055216789246, 0.2380131483078003, -0.2654303312301636, 0.3216322362422943, 0.31644609570503235, 0.5865780115127563, -0.10675261914730072, -0.896236777305603, -0.46611958742141724, -0.14260149002075195, 0.38555648922920227, 0.2958305776119232, -0.5966827273368835, 0.5585277676582336, 0.002686635125428438, -0.7814785838127136, -0.16270509362220764, 0.27848565578460693, 0.03812962397933006, 0.5693458914756775, -0.14167392253875732, -0.39385101199150085, -0.128273144364357, -1.3046562671661377, 0.15886151790618896, 0.4334913194179535, -0.2598726153373718, 0.8228033185005188, 0.497909277677536, 0.17591875791549683, 0.7543307542800903, -0.6608576774597168, 0.31389713287353516, 0.4335079491138458, -0.02531300112605095, 0.8225302696228027, 0.40662989020347595, 0.4965205788612366, -0.9558687806129456, -0.8061791658401489, -0.22593356668949127, -0.48099634051322937, -0.5015925168991089, 0.23342889547348022, -0.815549910068512, -0.10843461751937866, -0.013242649845778942, -0.4295775294303894, 0.7313686609268188, 0.9245539903640747, -0.7869307994842529, 0.7956576347351074, -0.04273829236626625, 0.44720447063446045, -1.120483636856079, 0.5858283638954163, 0.1511242836713791, -0.4977659285068512, 0.21145941317081451, -0.08060070127248764, 0.42224133014678955, -0.3720175325870514, -0.4652647376060486, 0.12278058379888535, -0.4947112798690796, -0.3700008988380432, -0.2803070843219757, -0.2917788624763489, -0.09869072586297989, 0.017999492585659027, 0.018659818917512894, 0.689365029335022, 0.9834387302398682, -0.5828525424003601, 0.9843785166740417, 0.6537548303604126, -0.8222446441650391, 0.6031661629676819, -0.7112584710121155, 0.6734957695007324, 0.35337430238723755, 0.6859242916107178, -1.0027369260787964, -0.47767555713653564, 0.996380627155304, -0.2527974843978882, -0.25468191504478455, -0.7693502306938171, -0.954146146774292, -0.28515899181365967, -0.16836220026016235, 0.8752087950706482, 0.5889535546302795, -1.0733489990234375, 0.05067391321063042, 0.661162793636322, -0.11648601293563843, -0.24034768342971802, -0.5001574754714966, 0.33584922552108765, -0.22207771241664886, -0.3957136869430542, 0.025847923010587692, 0.29911917448043823, -0.06985756754875183, 0.47700077295303345, 0.062077492475509644, -0.16781894862651825, -0.29679742455482483, 0.44534891843795776, 0.6252546906471252, -0.4550788700580597, 0.082317054271698, -0.382920503616333, -0.16991791129112244, 0.29527318477630615, -0.4310970604419708, 0.11725325882434845, 0.6769341230392456, -0.14584872126579285, -0.6945255398750305, 0.16234514117240906, 0.3238087594509125, 0.22439205646514893, 1.1445108652114868, 0.6225094199180603, -0.17708231508731842, 0.21503101289272308, -0.3001757264137268, -0.1832793802022934, -0.34980306029319763, -0.12526622414588928, -0.43063756823539734, -0.10677485167980194, 0.6602362394332886, -0.21398164331912994, -0.35547229647636414, 1.1110565662384033, 0.37805303931236267, -0.3034798502922058, 0.9058802127838135, -0.05349263176321983, 0.043907247483730316, 0.4521292448043823, -0.5176168084144592, -0.17131617665290833, -0.7087083458900452, -0.4939615726470947, -0.20678064227104187, -0.8713456392288208, -0.5484710335731506, -0.1922791749238968, 0.19663932919502258, -0.10766483098268509, -0.3382048010826111, 0.26500850915908813, -0.5360429286956787, 0.656872570514679, 0.9163434505462646, 0.7216088771820068, -0.10988898575305939, 0.2524440884590149, -0.2926780879497528, 0.24740681052207947, -0.7245113253593445, -0.03382596746087074, 1.4483445882797241, 0.18545489013195038, 0.9779167771339417, -0.015794571489095688, 0.0005566035397350788, 0.17528371512889862, -0.29897400736808777, -0.49570825695991516, 0.33304914832115173, -0.13037455081939697, -0.8173436522483826, 0.07172184437513351, -0.5606316328048706, -1.2531015872955322, -0.4280623197555542, -0.4803158938884735, -0.19249948859214783, 0.45824334025382996, 0.047387123107910156, 0.0410730354487896, 0.8142974376678467, -0.6139452457427979, 1.0128505229949951, 0.28767383098602295, -0.13994650542736053, -0.3234582841396332, -0.818737268447876, 0.2647784352302551, 0.2261246144771576, -0.36487439274787903, -0.3242347240447998, 0.0889335572719574, 1.1329758167266846, -0.8999005556106567, 0.48301592469215393, -0.4215638041496277, -0.23706430196762085, 0.740354061126709, -0.17935463786125183, 0.39406275749206543, 0.15631122887134552, 0.20647694170475006, 0.6625708937644958, -0.25119858980178833, -0.8572742938995361, -0.1298823207616806, 0.891926646232605, -0.8578822016716003, 0.370866984128952, -0.6001216769218445, -0.551771342754364, 0.062066953629255295, -0.20475104451179504, 0.253094345331192, 0.5940864682197571, 0.3381793797016144, 0.5971794128417969, 0.37887078523635864, -0.011141984723508358, 0.12051995098590851, 0.36646491289138794, -0.35097822546958923, -0.6321395039558411, 0.8153358101844788, 0.08739077299833298, 0.052746303379535675, -0.12137556821107864, 0.42051196098327637, -0.5547509789466858, -0.30544331669807434, -0.2635754644870758, 0.4208282232284546, -0.8163980841636658, -0.3826354146003723, -0.10841178894042969, -0.47056466341018677, -0.2789343595504761, -0.10866854339838028, -0.41647061705589294, -0.6709089875221252, 0.05077231302857399, 0.005062941461801529, 1.0760551691055298, 0.9917729496955872, -0.19644302129745483, 0.6533428430557251, -0.6834396719932556, 0.4175677001476288, 0.24462319910526276, 0.7919326424598694, -0.28957217931747437, -0.4893730580806732, -0.4814201295375824, -0.07248014211654663, -0.5499297380447388, -0.5511248111724854, 0.08679986745119095, -0.0030500649008899927, 0.8091779947280884, 0.19226068258285522, -0.09763184189796448, 0.23089319467544556, -0.2193279266357422, 0.9656538367271423, 0.33063048124313354, -0.14503352344036102, 1.1195824146270752, -0.5166898965835571, 0.3646358847618103, 0.4268600046634674, 0.36294543743133545, -0.35278013348579407, 0.09301705658435822, -1.0354657173156738, -1.1720151901245117, 0.9479344487190247, 0.3657982051372528, -0.2750321924686432, 0.49421751499176025, 0.9637014269828796, 0.5664044618606567, -0.06463421136140823, -0.5779646635055542, -0.6989791393280029, -0.2245788723230362, -0.5647432804107666, -0.27309802174568176, -0.25699055194854736, -0.32369551062583923, -0.5576619505882263, 0.7265447974205017, 0.17311035096645355, 0.47130411863327026, 0.2703527510166168, -0.3076412081718445, -0.23809082806110382, -0.656741738319397, 0.509493350982666, 0.7102248668670654, -0.43247315287590027, 0.020859478041529655, -0.4008392095565796, -0.8200726509094238, 0.05153447762131691, -0.11410238593816757, 0.13323673605918884, -0.12115170806646347, 0.18263551592826843, 0.9295172095298767, 0.03107631392776966, -0.2918202579021454, 0.35181164741516113, -0.15413345396518707, -0.5437492728233337, -0.48144057393074036, 0.2621917724609375, -0.0714087188243866, 0.3482697904109955, 0.6398326754570007, -0.009418075904250145, 0.3071483075618744, -0.1318512111902237, 0.5099921822547913, -0.21925088763237, -0.0007849739631637931, -0.2980157732963562, 0.5041533708572388, -0.013012793846428394, -0.13330823183059692, 1.2822957038879395, -0.3525548279285431, 0.10272916406393051, 0.7592513561248779, 0.5618266463279724, 0.8121483325958252, 0.012305944226682186, 0.40556713938713074, 0.9529283046722412, -0.15935631096363068, 0.13547983765602112, 0.3963453769683838, -0.11182768642902374, -0.6161448359489441, -0.13816818594932556, -0.19176626205444336, -0.3786643147468567, 0.6834232807159424, -0.5706900358200073, 0.21754524111747742, -0.4594908654689789, -0.2167375683784485, -0.28978288173675537, 0.12929977476596832, -0.6758363842964172, 0.3331487774848938, 0.4339867830276489, 1.2748924493789673, -1.032365322113037, 0.8254238367080688, 0.9382303357124329, -0.21975502371788025, -0.8298271298408508, 0.2673759162425995, 0.148295596241951, -0.8573114275932312, 0.8057001233100891, 0.022685347124934196, 0.2279033064842224, -0.16868259012699127, -0.9535921812057495, -0.6947337985038757, 1.5203001499176025, 0.4140894412994385, -0.7549939155578613, 0.7227703332901001, -0.22740793228149414, -0.44051435589790344, -0.28990721702575684, -0.07218534499406815, 0.21164007484912872, 0.6211054921150208, 0.5522236824035645, -0.8385752439498901, -0.09212905913591385, -0.6800460815429688, -0.22605900466442108, 0.3272016644477844, -0.33066099882125854, 0.5440438389778137, 0.3420703709125519, 0.22525154054164886, -0.11386442184448242, 0.31899210810661316, 0.039154328405857086, 0.4680275321006775, 0.9366821050643921, 1.2079520225524902, 0.10512366890907288, -0.08647095412015915, 1.4506547451019287, -0.09125158190727234, 0.650104820728302, 1.0724937915802002, 0.049592647701501846, 0.7029869556427002, 0.2205124944448471, -0.27012473344802856, 0.3878214359283447, 0.9196299910545349, -0.6359591484069824, 1.1741647720336914, -0.3827277719974518, -0.4454507827758789, 0.09583694487810135, 0.17363785207271576, -0.27250295877456665, 0.6282414793968201, 0.1775323450565338, -0.6124461889266968, -0.3760565519332886, -0.053579993546009064, -0.08919315785169601, -0.48893818259239197, -0.7071782350540161, 0.7096860408782959, -0.1383051723241806, 0.1442074030637741, 0.21941344439983368, -0.6248942613601685, 0.36030909419059753, -0.4478329122066498, -0.17194055020809174, 0.29501858353614807, 0.03388648480176926, -0.15425410866737366, -1.6011250019073486, 0.48621970415115356, -0.3664481043815613, 0.11211032420396805, 0.29260724782943726, 1.3499937057495117, -0.29953864216804504, -1.2550681829452515, 0.030937934294342995, -0.019776536151766777, 0.27829259634017944, 0.12838558852672577, -1.3049267530441284, -0.15927796065807343, -0.27572792768478394, -0.30922284722328186, 0.062323808670043945, 0.06902655214071274, 0.28415998816490173, 0.43203800916671753, 0.6264137029647827, 0.4711247682571411, 0.182534858584404, -0.035348810255527496, 0.5911837220191956, -0.6594325304031372, -0.6322945356369019, -0.26539045572280884, 0.6925823092460632, -0.70893394947052, -0.4147205948829651, 0.6167187690734863, 0.780441403388977, 0.9040694236755371, -0.3499380946159363, 0.4277694523334503, 0.0299900583922863, 0.15312804281711578, -0.7009903788566589, 1.0759519338607788, -0.4172026515007019, -0.8944705724716187, -0.15273891389369965, -0.7745307087898254, -0.5722650289535522, 0.9851696491241455, -0.23181819915771484, 0.07220426946878433, 0.497820645570755, 1.1912144422531128, -0.8865890502929688, -0.07839656621217728, 0.2560723125934601, 0.29084357619285583, -0.006178486626595259, 0.11645970493555069, 0.7360232472419739, -0.48356154561042786, 0.3759056031703949, -1.0392876863479614, -0.04064108803868294, -0.6734034419059753, -1.131134271621704, -0.49545034766197205, -1.0434893369674683, -0.8280575275421143, -0.3131902813911438, 0.15544986724853516, 0.7879221439361572, 1.0795774459838867, -0.9826328158378601, 0.12210404127836227, -0.15328779816627502, -0.1939176768064499, -0.06288614869117737, -0.23649999499320984, 0.7381307482719421, 0.2339933067560196, -0.22594298422336578, -0.24447591602802277, 0.07002469152212143, -0.302655428647995, 0.46329283714294434, -0.13817495107650757, -0.4247609078884125, -0.16096721589565277, 0.15987861156463623, 0.11932120472192764, -0.38686105608940125, -0.2857365906238556, -0.7035313248634338, -0.12109822034835815, 0.4320608675479889, 0.8365703821182251, -0.43234243988990784, 0.28788861632347107, 0.5624859929084778, 0.4959634840488434, 0.26680269837379456, -0.28966978192329407, 0.201110377907753, -0.6394741535186768, 0.3197501599788666, -0.5187764167785645, 0.41927140951156616, 0.11940077692270279, -0.6164683103561401, 0.4254847466945648, 0.6851400136947632, -0.7674832344055176, -0.2054145485162735, -0.13202987611293793, -1.4081751108169556, 0.03289206326007843, 0.7770500183105469, -0.25909024477005005, -0.5285961031913757, 0.12041980773210526, -0.6621770262718201, 0.31248608231544495, -0.3716243803501129, 0.843889594078064, 0.7585138082504272, 0.07453754544258118, -0.8986000418663025, -0.8987851142883301, -0.09935885667800903, -0.08745352923870087, -0.5232087969779968, -0.2060505598783493, 0.6176692843437195, 0.7188811898231506, 0.10385222733020782, 0.186844140291214, -0.5412924885749817, 0.5333333611488342, 0.44117841124534607, 0.2537826597690582, -0.3090418875217438, -0.23101229965686798, -0.32068485021591187, -0.13696938753128052, -0.013633587397634983, -0.9389637112617493 ]
null
null
null
null
null
null
null
null
null
null
null
null
null
flaviagiammarino/vqa-rad
flaviagiammarino
2023-06-03T18:38:48Z
440
6
vqa-rad
[ "task_categories:visual-question-answering", "size_categories:1K<n<10K", "language:en", "license:cc0-1.0", "medical", "region:us" ]
2023-06-03T18:38:48Z
2023-06-03T14:33:55.000Z
2023-06-03T14:33:55
--- license: cc0-1.0 task_categories: - visual-question-answering language: - en paperswithcode_id: vqa-rad tags: - medical pretty_name: VQA-RAD size_categories: - 1K<n<10K dataset_info: features: - name: image dtype: image - name: question dtype: string - name: answer dtype: string splits: - name: train num_bytes: 95883938.139 num_examples: 1793 - name: test num_bytes: 23818877.0 num_examples: 451 download_size: 34496718 dataset_size: 119702815.139 --- # Dataset Card for VQA-RAD ## Dataset Description VQA-RAD is a dataset of question-answer pairs on radiology images. The dataset is intended to be used for training and testing Medical Visual Question Answering (VQA) systems. The dataset includes both open-ended questions and binary "yes/no" questions. The dataset is built from [MedPix](https://medpix.nlm.nih.gov/), which is a free open-access online database of medical images. The question-answer pairs were manually generated by a team of clinicians. **Homepage:** [Open Science Framework Homepage](https://osf.io/89kps/)<br> **Paper:** [A dataset of clinically generated visual questions and answers about radiology images](https://www.nature.com/articles/sdata2018251)<br> **Leaderboard:** [Papers with Code Leaderboard](https://paperswithcode.com/sota/medical-visual-question-answering-on-vqa-rad) ### Dataset Summary The dataset was downloaded from the [Open Science Framework Homepage](https://osf.io/89kps/) on June 3, 2023. The dataset contains 2,248 question-answer pairs and 315 images. Out of the 315 images, 314 images are referenced by a question-answer pair, while 1 image is not used. The training set contains 3 duplicate image-question-answer triplets. The training set also has 1 image-question-answer triplet in common with the test set. After dropping these 4 image-question-answer triplets from the training set, the dataset contains 2,244 question-answer pairs on 314 images. #### Supported Tasks and Leaderboards This dataset has an active leaderboard on [Papers with Code](https://paperswithcode.com/sota/medical-visual-question-answering-on-vqa-rad) where models are ranked based on three metrics: "Close-ended Accuracy", "Open-ended accuracy" and "Overall accuracy". "Close-ended Accuracy" is the accuracy of a model's generated answers for the subset of binary "yes/no" questions. "Open-ended accuracy" is the accuracy of a model's generated answers for the subset of open-ended questions. "Overall accuracy" is the accuracy of a model's generated answers across all questions. #### Languages The question-answer pairs are in English. ## Dataset Structure ### Data Instances Each instance consists of an image-question-answer triplet. ``` { 'image': <PIL.JpegImagePlugin.JpegImageFile image mode=RGB size=566x555>, 'question': 'are regions of the brain infarcted?', 'answer': 'yes' } ``` ### Data Fields - `'image'`: the image referenced by the question-answer pair. - `'question'`: the question about the image. - `'answer'`: the expected answer. ### Data Splits The dataset is split into training and test. The split is provided directly by the authors. | | Training Set | Test Set | |-------------------------|:------------:|:---------:| | QAs |1,793 |451 | | Images |313 |203 | ## Additional Information ### Licensing Information The authors have released the dataset under the CC0 1.0 Universal License. ### Citation Information ``` @article{lau2018dataset, title={A dataset of clinically generated visual questions and answers about radiology images}, author={Lau, Jason J and Gayen, Soumya and Ben Abacha, Asma and Demner-Fushman, Dina}, journal={Scientific data}, volume={5}, number={1}, pages={1--10}, year={2018}, publisher={Nature Publishing Group} } ```
[ -0.6472756862640381, -0.9141278862953186, 0.3820819556713104, -0.22554102540016174, -0.26651692390441895, -0.2992837131023407, 0.1271950602531433, -0.41771215200424194, 0.141473650932312, 0.5684135556221008, -0.7190017104148865, -0.6647454500198364, -0.4286770820617676, 0.111575186252594, 0.02391216903924942, 1.0591347217559814, -0.14828059077262878, 0.5511360168457031, -0.7188520431518555, -0.4915037751197815, -0.5484346747398376, -0.2018481194972992, -0.40875422954559326, 0.055591847747564316, 0.5277576446533203, 0.6400762796401978, 0.819534182548523, 0.6895789504051208, 0.8269743919372559, 0.18603475391864777, 0.21362599730491638, -0.014706517569720745, -0.4123746454715729, 0.008964672684669495, -0.03834730386734009, -0.39263197779655457, -0.34540048241615295, -0.17932195961475372, 0.4213827848434448, 0.5240954160690308, 0.11693638563156128, 0.5335201621055603, -0.24140939116477966, 0.6430212259292603, -0.5429288744926453, 0.12329123914241791, -0.17024563252925873, 0.08883169293403625, -0.14057868719100952, -0.42287880182266235, -0.08109602332115173, -0.7455335855484009, 0.09022481739521027, -0.7239533066749573, 0.22447311878204346, 0.03650631383061409, 1.1664409637451172, 0.3575878143310547, -0.37506771087646484, -0.3321402668952942, -0.49567994475364685, 0.5107147097587585, -0.42232492566108704, 0.04707496240735054, 0.5407117605209351, 0.5203114151954651, 0.16024906933307648, -0.6958793997764587, -0.6982437372207642, 0.2132062464952469, -0.005517405457794666, 0.45585501194000244, -0.20022854208946228, 0.10957060009241104, 0.575404942035675, 0.46365028619766235, -1.0174996852874756, -0.24265076220035553, -0.7053970098495483, -0.012499879114329815, 0.698794424533844, 0.34667685627937317, 0.3885161280632019, -0.209482803940773, -0.48961490392684937, -0.318682998418808, -0.4812125861644745, 0.20216131210327148, 0.04737197235226631, -0.0315241664648056, -0.31771132349967957, 0.8233950734138489, -0.22209477424621582, 0.7830184698104858, -0.11368017643690109, -0.10084892809391022, 0.6575764417648315, -0.5322015881538391, -0.24227404594421387, -0.23696137964725494, 0.8349340558052063, 0.5320891737937927, 0.17640024423599243, 0.21987111866474152, 0.14676856994628906, -0.010606225579977036, 0.06183450669050217, -0.8208494782447815, -0.1798526793718338, 0.49961739778518677, -0.5479189157485962, -0.27754464745521545, 0.26158979535102844, -0.5795113444328308, -0.015706941485404968, -0.06323008984327316, 0.7042282819747925, -0.4589501917362213, -0.1778191477060318, 0.43065303564071655, -0.15576861798763275, 0.6528159976005554, 0.244688019156456, -0.3368285596370697, 0.2789157032966614, 0.16071856021881104, 0.5958028435707092, 0.048900820314884186, -0.10634881258010864, -0.35320112109184265, -0.22056762874126434, -0.29711902141571045, 0.9078145623207092, -0.2780373692512512, -0.2695573568344116, -0.20943905413150787, 0.2100072205066681, -0.04108909144997597, -0.4779341220855713, 0.4757124185562134, -0.8458630442619324, 0.5554307699203491, -0.7801801562309265, -0.49488744139671326, -0.33671072125434875, 0.23311427235603333, -0.628217339515686, 1.061795711517334, 0.05396302044391632, -0.9794085621833801, 0.30592381954193115, -0.6832284927368164, 0.021276092156767845, 0.2014448046684265, -0.5407174229621887, -0.5591011643409729, -0.3224410116672516, 0.5338683724403381, 0.4158274531364441, -0.48111388087272644, 0.09094994515180588, -0.3166802227497101, -0.32092446088790894, 0.38501888513565063, -0.11217821389436722, 0.9125259518623352, 0.20913827419281006, -0.004965104628354311, -0.0032521241810172796, -0.7536775469779968, 0.44512495398521423, 0.4003596901893616, -0.16851481795310974, -0.22592784464359283, -0.45374107360839844, 0.041115738451480865, 0.47281938791275024, 0.13198310136795044, -0.7968015074729919, 0.09814783930778503, -0.18614216148853302, -0.08588677644729614, 0.6333156824111938, 0.4786228537559509, -0.03325892612338066, -0.6645333170890808, 0.8852519392967224, 0.164905846118927, 0.38610562682151794, -0.07090561836957932, -0.8736556768417358, -0.6269994974136353, -0.4138466417789459, 0.34572887420654297, 0.6578795313835144, -0.9442937970161438, 0.3344542384147644, -0.32060760259628296, -0.5337795615196228, -0.82767653465271, -0.31709858775138855, 0.7434278726577759, 0.8706582188606262, 0.4473070502281189, -0.342907190322876, -0.3808528184890747, -1.0712273120880127, 0.3431727886199951, -0.06932517886161804, 0.11381509900093079, 0.5443282723426819, 0.8286333084106445, 0.2251703143119812, 0.8307186365127563, -0.8315259218215942, -0.2614336907863617, 0.15531842410564423, 0.05981345847249031, 0.12960726022720337, 0.3476937711238861, 0.6058159470558167, -0.9381944537162781, -0.46546316146850586, -0.3103698790073395, -1.1357276439666748, 0.0660361647605896, 0.03720781207084656, -0.23088988661766052, 0.13644175231456757, 0.4153316020965576, -0.29774683713912964, 0.7503330111503601, 0.27855637669563293, -0.3235406279563904, 0.42966145277023315, -0.2807418704032898, 0.454113245010376, -1.2868781089782715, 0.33163484930992126, -0.11328653246164322, 0.07916513830423355, -0.4697340130805969, 0.09089689701795578, -0.004775140434503555, -0.032786332070827484, -0.4812653958797455, 0.4361118674278259, -0.45546483993530273, -0.319214403629303, 0.16752544045448303, -0.1276789903640747, -0.02242361009120941, 0.636958658695221, 0.07370801270008087, 0.8297162652015686, 0.7700622081756592, -0.36481979489326477, 0.35997501015663147, 0.7892230153083801, -0.4016529619693756, 0.8714342713356018, -0.9716078639030457, 0.33015376329421997, -0.5066020488739014, -0.12851180136203766, -1.3151226043701172, -0.28117507696151733, 0.2709974944591522, -0.8623782992362976, 0.0386098176240921, -0.00770502258092165, -0.3692723214626312, -0.49352380633354187, -0.2941029965877533, 0.6464640498161316, 0.5869203805923462, -0.2811998128890991, 0.20970256626605988, 0.32417044043540955, 0.08104334026575089, -0.9597991108894348, -0.8812072277069092, -0.29069772362709045, 0.1639156937599182, -0.8887829184532166, 0.06667907536029816, -0.3989156484603882, -0.047079283744096756, 0.4060945510864258, 0.14658750593662262, -0.2926022410392761, -0.26147785782814026, 0.4899449646472931, 0.39612266421318054, -0.4879618287086487, 0.3543364107608795, -0.2459164559841156, -0.08395887166261673, 0.08455146849155426, 0.02744503878057003, 0.36881059408187866, -0.292294979095459, -0.6677560210227966, -0.4229995906352997, 0.5237483382225037, 0.4143025279045105, -0.4151584208011627, 0.6504960060119629, 0.33563581109046936, -0.48236289620399475, 0.2812536656856537, -0.32964804768562317, -0.08505826443433762, -0.4328056573867798, 0.40748587250709534, -0.41364750266075134, -0.7532572150230408, 0.789096474647522, 0.603417694568634, 0.004333707503974438, 0.6510439515113831, 0.6704516410827637, -0.32781922817230225, 1.005979061126709, 0.24160410463809967, 0.3846766948699951, 0.05441218242049217, -0.6461880803108215, -0.1291535347700119, -0.6304975152015686, -0.5410603284835815, -0.4366667866706848, -0.3225625157356262, -0.4142014980316162, -0.5159476399421692, 0.6233408451080322, -0.22811691462993622, -0.39219895005226135, -0.21283212304115295, -0.6267659068107605, 0.5239108204841614, 0.5799126029014587, 0.46448877453804016, 0.18256787955760956, 0.025912411510944366, 0.007720034569501877, -0.20532014966011047, -0.8053199648857117, -0.2556120753288269, 1.434267282485962, 0.2214464396238327, 0.7518247365951538, -0.0489790178835392, 0.517510175704956, 0.09045137465000153, 0.003806165885180235, -0.6832089424133301, 0.6554135084152222, 0.07339015603065491, -0.7446914911270142, -0.22596050798892975, -0.26859378814697266, -1.0480259656906128, -0.09831900894641876, -0.4908009171485901, -0.1831231713294983, 0.34498131275177, 0.0521891787648201, -0.4972042441368103, 0.30314379930496216, -0.400725394487381, 0.9402256608009338, -0.27475041151046753, -0.26705893874168396, 0.16387178003787994, -0.9895817637443542, 0.4016655385494232, 0.03536192327737808, 0.0551733523607254, 0.232780322432518, -0.0999535471200943, 0.9372912049293518, -0.49922287464141846, 0.553749144077301, -0.19075404107570648, 0.4933994710445404, 0.3282746374607086, -0.4571585953235626, -0.07293331623077393, 0.07273547351360321, 0.25824272632598877, 0.20508374273777008, 0.41779807209968567, -0.687523365020752, -0.4964182674884796, 0.4610188603401184, -1.071668267250061, -0.11114996671676636, -0.75422602891922, -0.5710987448692322, -0.14136429131031036, 0.17708811163902283, 0.5771579742431641, 0.8109379410743713, -0.018910864368081093, 0.2748485505580902, 1.083732008934021, -0.526283323764801, -0.21531616151332855, 0.35727351903915405, -0.21841496229171753, -0.617822527885437, 0.6704608201980591, 0.25083425641059875, 0.3863016664981842, 0.25950372219085693, 0.034180328249931335, -0.3850345015525818, -0.5819694399833679, -0.4582247734069824, 0.5080782175064087, -0.9784983992576599, -0.31906598806381226, -0.629854142665863, -0.5361647009849548, -0.18097952008247375, 0.03452044352889061, -0.002156226895749569, -0.23455941677093506, -0.2946932911872864, -0.0882711261510849, 0.6611519455909729, 0.7059782147407532, 0.017248673364520073, 0.0348021574318409, -0.5415201187133789, 0.5035504698753357, 0.43299219012260437, 0.38777682185173035, -0.3831802010536194, -0.5844353437423706, -0.08998781442642212, 0.22154486179351807, -0.20630405843257904, -1.0134882926940918, 0.014786571264266968, 0.19986607134342194, 0.4846743643283844, 0.0788188949227333, 0.17407868802547455, 0.8078543543815613, -0.026922116056084633, 0.8055804967880249, 0.17315977811813354, -0.2300068438053131, 0.6247334480285645, -0.345833957195282, 0.36722269654273987, 0.7286284565925598, 0.6284890174865723, -0.3875965178012848, -0.16983771324157715, -0.8269684314727783, -0.5943844318389893, 0.720903217792511, 0.04204679653048515, -0.09931658953428268, -0.013395239599049091, 0.5395330786705017, -0.01502677146345377, 0.028995295986533165, -0.49098286032676697, -0.5885412693023682, -0.056771840900182724, -0.3732937276363373, 0.13165514171123505, -0.24858279526233673, -0.33411723375320435, -0.4540818929672241, 0.7135975360870361, -0.250846266746521, 0.5909473896026611, 0.460206001996994, 0.028917698189616203, -0.19560955464839935, 0.06568273156881332, 0.5280083417892456, 0.6071884036064148, -0.4141717851161957, -0.17459028959274292, 0.06411081552505493, -0.868701696395874, -0.0968446433544159, -0.07216732949018478, -0.336521714925766, -0.17810046672821045, 0.3412958085536957, 0.7154008150100708, -0.3167482316493988, -0.6969406604766846, 0.8382773995399475, -0.48179835081100464, -0.7775457501411438, -0.47907593846321106, -0.029511841014027596, -0.015082521364092827, 0.2298693209886551, 0.20549851655960083, 0.22391903400421143, 0.04744119197130203, -0.24358080327510834, 0.41936445236206055, 0.38907548785209656, -0.4495416581630707, -0.02981211058795452, 0.633768618106842, -0.3219267427921295, -0.04344135522842407, 0.7341011762619019, 0.04611707106232643, -0.17526023089885712, 0.8394737839698792, 0.17987054586410522, 0.5809929966926575, 0.08163254708051682, 0.3595547676086426, 0.8041940927505493, 0.23407450318336487, 0.13670502603054047, 1.1646226644515991, 0.277363657951355, -0.6979361176490784, -0.23663108050823212, -0.2085411250591278, -0.39491644501686096, 0.3856557011604309, -1.2166887521743774, 0.3391781449317932, -0.6011492609977722, -0.16675707697868347, 0.049142006784677505, -0.0014829164138063788, -0.7811744213104248, 0.561170756816864, 0.022348672151565552, 0.9795539975166321, -0.916304886341095, 0.6254377961158752, 0.9316354990005493, -0.947114884853363, -0.8694015741348267, -0.221952885389328, -0.1971263289451599, -1.0083885192871094, 0.5304252505302429, -0.06466252356767654, 0.1884670853614807, -0.07218725979328156, -0.9050578474998474, -0.9572499394416809, 1.2339494228363037, 0.2908702790737152, -0.005746246315538883, 0.24129660427570343, 0.2717452347278595, 0.6778671741485596, -0.2670435905456543, 0.5243351459503174, 0.07914792001247406, 0.24820728600025177, 0.5472202301025391, -0.6745813488960266, 0.02810012549161911, -0.5273647308349609, -0.052247438579797745, -0.0005820791120640934, -0.45563817024230957, 0.7357275485992432, -0.5216900706291199, -0.14514385163784027, 0.11900509148836136, 0.48077109456062317, 0.46770110726356506, 0.3801165521144867, 0.3699612021446228, 0.7244325280189514, 0.7053591012954712, -0.2770534157752991, 0.9933470487594604, -0.17593498528003693, 0.26039209961891174, 0.9986169338226318, 0.048083797097206116, 0.8088282942771912, 0.4884078800678253, -0.09128838777542114, 0.3520127534866333, 0.6880137324333191, -0.1381170004606247, 0.6701434254646301, 0.03500055521726608, 0.1600693017244339, -0.4131027162075043, 0.0005495131481438875, -0.6968154907226562, 0.40363171696662903, 0.16444942355155945, -0.3319307565689087, -0.25684091448783875, 0.22001877427101135, -0.12091800570487976, 0.09584251791238785, -0.1303451806306839, 0.6831684708595276, -0.17968519032001495, -0.46536144614219666, 0.8843351602554321, -0.31354472041130066, 0.3283917307853699, -0.6946267485618591, -0.1840948760509491, -0.15414051711559296, 0.005344744771718979, -0.31684139370918274, -1.2481242418289185, 0.38171225786209106, -0.043492939323186874, -0.23518235981464386, 0.00863112136721611, 0.3968982994556427, -0.3203940987586975, -0.5562347173690796, -0.11443713307380676, 0.5906654000282288, 0.35415616631507874, 0.3480586111545563, -1.0395876169204712, -0.1344834566116333, 0.08625517040491104, -0.22641819715499878, 0.24011291563510895, 0.21616016328334808, -0.12142789363861084, 0.653014600276947, 0.4674605131149292, 0.05585329979658127, -0.06539980322122574, -0.23850171267986298, 1.0067106485366821, -0.44546079635620117, -0.38409653306007385, -0.3249584436416626, 0.6952047944068909, -0.11451537907123566, -0.7810956835746765, 0.6283040046691895, 0.7717859148979187, 0.9184931516647339, -0.10564158856868744, 0.869181752204895, -0.24610845744609833, 0.6265947818756104, -0.5522337555885315, 0.6312000155448914, -0.9139693379402161, 0.10219224542379379, -0.17281301319599152, -0.3960799276828766, -0.40181460976600647, 0.6226963400840759, -0.5333253741264343, 0.16325102746486664, 0.789535403251648, 1.1591559648513794, -0.05774049088358879, 0.2512284517288208, 0.29502320289611816, 0.07507526874542236, 0.08581512421369553, 0.8013158440589905, 0.6108710169792175, -0.8524827361106873, 0.551059365272522, -0.44152215123176575, -0.3446357250213623, 0.03913470357656479, -0.4378296732902527, -0.9165116548538208, -0.9162724614143372, -0.6055908203125, -0.6249140501022339, 0.017024267464876175, 0.648208498954773, 0.5066857933998108, -0.7711771726608276, -0.04125760495662689, 0.28434205055236816, -0.18408413231372833, -0.2703391909599304, -0.1657029688358307, 0.7685489058494568, 0.19207565486431122, -0.1633782535791397, -0.38049566745758057, 0.11118705570697784, 0.007401198148727417, -0.08172432333230972, -0.03279314562678337, -0.3570738136768341, -0.05000317096710205, 0.07960133254528046, 0.4656398296356201, -0.3970910906791687, -0.32512038946151733, 0.4900710880756378, -0.3616580069065094, 0.5209217071533203, 0.15579456090927124, -0.6743632555007935, 0.7458926439285278, 0.7153250575065613, 0.5567596554756165, 0.5812894105911255, 0.06498679518699646, 0.07625719904899597, -0.6059859395027161, -0.05230741947889328, 0.38120582699775696, 0.12181228399276733, 0.26147985458374023, -0.34664860367774963, 0.4588899314403534, 0.3666943311691284, -0.6872707009315491, -0.7429421544075012, 0.0798937976360321, -1.3074606657028198, -0.06635207682847977, 1.0957108736038208, -0.052159685641527176, -0.4088583290576935, -0.28691014647483826, -0.4466867446899414, 0.07597579061985016, -0.024265632033348083, 0.3210369050502777, 0.43490567803382874, -0.19294972717761993, -0.33341699838638306, -0.7363246083259583, 0.42395806312561035, 0.20686738193035126, -0.9698495268821716, -0.3771721124649048, 0.5788716077804565, 0.5525921583175659, -0.021782374009490013, 1.0009642839431763, -0.3835221529006958, 0.7165781855583191, -0.17810891568660736, 0.43333956599235535, -0.35799065232276917, 0.011057483963668346, -0.5654153227806091, 0.17179128527641296, -0.07968106120824814, -0.7302178144454956 ]
null
null
null
null
null
null
null
null
null
null
null
null
null
fvillena/spanish_diagnostics
fvillena
2021-05-30T02:32:52Z
439
0
null
[ "region:us" ]
2021-05-30T02:32:52Z
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
EddieChen372/devign_with_vul_lines
EddieChen372
2023-02-04T15:24:46Z
439
0
null
[ "region:us" ]
2023-02-04T15:24:46Z
2023-02-01T12:14:23.000Z
2023-02-01T12:14:23
--- dataset_info: features: - name: id dtype: int32 - name: func dtype: string - name: target dtype: bool - name: project dtype: string - name: commit_id dtype: string - name: func_clean dtype: string - name: vul_lines struct: - name: code sequence: string - name: line_no sequence: int64 - name: normalized_func dtype: string splits: - name: validation num_bytes: 16112369 num_examples: 2732 - name: train num_bytes: 132054560 num_examples: 21854 - name: test num_bytes: 16328301 num_examples: 2732 download_size: 60272537 dataset_size: 164495230 --- # Dataset Card for "devign_with_vul_lines" [More Information needed](https://github.com/huggingface/datasets/blob/main/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
[ -0.4658760726451874, -0.41313061118125916, 0.1584077924489975, 0.2756114602088928, -0.2623264491558075, -0.09867482632398605, 0.6369363069534302, -0.12102439254522324, 0.6947442889213562, 0.8993031978607178, -0.8760449290275574, -0.7868312001228333, -0.32028481364250183, -0.45942798256874084, -0.3651891052722931, 0.9834754467010498, 0.24480490386486053, 0.2737788259983063, -0.5125923752784729, -0.19285248219966888, -0.7488142848014832, -0.36302345991134644, -0.315862774848938, -0.45949068665504456, 0.5245541930198669, 0.4472804069519043, 0.3044971227645874, 0.6382707357406616, 0.6837224364280701, 0.10743094980716705, 0.009376414120197296, 0.19227921962738037, -0.5974053144454956, 0.22298796474933624, -0.1195603683590889, -0.738872230052948, -1.0476315021514893, -0.24645346403121948, 0.6154663562774658, 0.33562371134757996, 0.10913436859846115, 0.48921331763267517, -0.07816288620233536, 0.6966031193733215, -0.28037288784980774, 0.3630540370941162, -0.1268090158700943, 0.07865267246961594, -0.8489655256271362, -0.21762794256210327, 0.04374847188591957, -0.6555718183517456, 0.07528221607208252, -0.953851044178009, 0.09555351734161377, 0.027670443058013916, 1.2770136594772339, 0.27543705701828003, 0.12774962186813354, 0.12737302482128143, -0.5656975507736206, 0.13617011904716492, -0.32399168610572815, 0.4722375273704529, 0.6905921697616577, 0.40128660202026367, 0.18653495609760284, -0.8065263032913208, 0.06978588551282883, 0.0753190815448761, 0.006637494545429945, 0.24740895628929138, 0.08815022557973862, -0.17853441834449768, 0.5447306632995605, 0.6663493514060974, -0.5974182486534119, -0.20259131491184235, -0.9797672033309937, -0.21336215734481812, 0.8579186201095581, 0.5203837156295776, 0.171869695186615, 0.04955536499619484, -0.4420273005962372, -0.27692580223083496, -0.6523603796958923, 0.07497650384902954, 0.3964724838733673, 0.40343934297561646, -1.2542647123336792, 0.7357947826385498, 0.048492200672626495, 0.696474552154541, -0.11537420749664307, 0.7863585948944092, 0.6786981225013733, -0.2789576053619385, -0.09307587891817093, -0.33621469140052795, 0.5259898900985718, 0.517600953578949, 0.0735623762011528, 0.2423752099275589, -0.19732435047626495, 0.175208181142807, 0.20367741584777832, -0.999850869178772, -1.0336354970932007, 0.19408781826496124, -0.6789889335632324, -0.21130084991455078, 0.342333048582077, -1.1969130039215088, -0.9308962821960449, -0.5463556051254272, 0.25832492113113403, -0.31814122200012207, -0.5482025146484375, -0.1790941059589386, -0.7427182197570801, 0.7360019087791443, 0.33563557267189026, -0.6126798987388611, 0.4408564865589142, 0.7267646789550781, 0.7124989628791809, 0.3672091066837311, -0.21660220623016357, -0.9694218635559082, -0.2053688019514084, -0.1645672768354416, 1.1305532455444336, -0.4516489803791046, -0.46366772055625916, 0.04512365534901619, 0.03656146675348282, 0.2768327593803406, -0.2675311863422394, 0.9452937841415405, -0.24856410920619965, -0.07466690242290497, -0.8071331977844238, -0.7400506734848022, 0.26827341318130493, 0.07523473352193832, -0.871039092540741, 1.1311266422271729, 0.20631477236747742, -0.7929944396018982, 0.5099725127220154, -1.0253124237060547, -0.343925416469574, 0.8566527962684631, -0.2893708646297455, -0.4914954900741577, 0.2198108583688736, -0.14308606088161469, 0.5879577994346619, -0.19110962748527527, 0.03810915723443031, -0.869788408279419, -0.06717869639396667, 0.21288533508777618, 0.0978381410241127, 0.943742036819458, 0.3976159989833832, 0.4588810205459595, 0.23802846670150757, -1.053755521774292, -0.19879268109798431, 0.04263770207762718, 0.0637672170996666, -0.6033550500869751, -0.16554956138134003, 0.683235764503479, -0.11310594528913498, 0.21111272275447845, -0.23103578388690948, 0.44198372960090637, -0.049402426928281784, -0.13774637877941132, 0.8864912390708923, -0.04642573744058609, 0.13344267010688782, -0.5555977821350098, 0.463344544172287, -0.007896733470261097, 0.40219977498054504, 0.14369285106658936, -0.5270287394523621, -0.7896535396575928, -0.12428668141365051, 0.2020828127861023, 0.6404380798339844, -0.731670618057251, 0.6408913135528564, 0.15855686366558075, -0.8738911151885986, -0.39174574613571167, -0.019526604562997818, 0.24132554233074188, 0.3322829306125641, 0.44681882858276367, -0.3813360929489136, -0.7584101557731628, -0.7909982800483704, 0.347151517868042, -0.06061582267284393, 0.08449172973632812, 0.3441603183746338, 0.5667255520820618, -0.47793933749198914, 0.882745087146759, -1.0461485385894775, -0.37462618947029114, 0.12125486135482788, -0.18748988211154938, 0.10491105169057846, 0.6336910128593445, 0.8498437404632568, -0.8332093954086304, -0.42871585488319397, -0.402527779340744, -0.48702171444892883, -0.5038936138153076, 0.3380822241306305, -0.652162492275238, -0.36043310165405273, 0.26516595482826233, -0.09797245264053345, 0.7771419286727905, 0.7618313431739807, -1.1142367124557495, 0.30309173464775085, -0.06898003071546555, 0.00260841753333807, -1.3025803565979004, 0.2664199471473694, 0.26625582575798035, -0.3205605745315552, -0.7138989567756653, -0.09282422065734863, 0.17519056797027588, -0.13965772092342377, -0.10402098298072815, 0.6407586932182312, -0.30696240067481995, -0.018509818241000175, -0.015098936855793, -0.1686561107635498, 0.09689486026763916, -0.004659588914364576, 0.20727987587451935, 0.3961382806301117, 1.2754405736923218, -0.5230082273483276, 1.1173484325408936, 0.6793726086616516, 0.3102508783340454, 1.1596274375915527, -0.7896289229393005, 0.001208991277962923, -0.27025243639945984, -0.07320433109998703, -0.812501072883606, -0.3912539780139923, 0.5115549564361572, -0.2546249330043793, 0.4565276503562927, -0.5034652948379517, -0.06377445161342621, -0.4285365641117096, -0.49258261919021606, 0.5517329573631287, 0.4960176944732666, -0.41457369923591614, 0.3282322287559509, 0.7428925037384033, 0.3868439793586731, -0.2015666961669922, -0.9775719046592712, -0.09469318389892578, -0.5327329635620117, -0.3170255124568939, 0.1548844873905182, -0.445190966129303, -0.1930966079235077, -0.13451574742794037, 0.5716184377670288, -0.14990589022636414, -0.22057683765888214, 0.5209788680076599, 0.4342159032821655, -0.4071567952632904, 0.3654867112636566, -0.2752927243709564, -0.6016238927841187, 0.01385350339114666, -0.12411180883646011, 0.5897393822669983, -0.1583588421344757, -0.052384670823812485, -0.2659526467323303, 0.2730898857116699, 0.48899707198143005, -0.5688580870628357, 0.39528971910476685, 1.0196040868759155, -0.6344272494316101, -0.33152878284454346, -0.5242146849632263, -0.1173950806260109, -0.4390372335910797, 0.03985428065061569, -0.5358303189277649, -0.6737527251243591, 0.7197854518890381, 0.16722343862056732, 0.03923111408948898, 0.7065542340278625, 0.41266903281211853, 0.15916544198989868, 0.13686177134513855, 0.854887068271637, -0.15753576159477234, 0.4632677435874939, -0.3893122673034668, -0.4856296181678772, -0.8569974899291992, -0.4249909818172455, -0.472562313079834, -0.2486071139574051, -0.8323248624801636, -0.7542450428009033, -0.13386842608451843, 0.010162223130464554, -0.0510227307677269, 0.8537664413452148, -0.7846450805664062, 0.1333610564470291, 0.6117501854896545, 0.14354127645492554, -0.15774816274642944, -0.3945119380950928, 0.24253955483436584, -0.08586715906858444, -0.4757075309753418, -0.14986693859100342, 1.1635090112686157, 0.5559375882148743, 1.3362247943878174, 0.05083763971924782, 0.8559276461601257, 0.5007505416870117, 0.03844929113984108, -0.3098340928554535, 0.38725805282592773, -0.20082664489746094, -0.38891398906707764, -0.15327169001102448, -0.2573426067829132, -0.7870239019393921, -0.32333025336265564, -0.6207100749015808, -0.4819650650024414, 0.5987087488174438, 0.4336435794830322, -0.2126690149307251, 0.23134537041187286, -0.7190068960189819, 0.9981337785720825, -0.22589905560016632, -0.4260621666908264, 0.08916594088077545, -0.5452117919921875, 0.1828819215297699, 0.22064949572086334, -0.17064478993415833, -0.21870914101600647, -0.056324321776628494, 1.1030492782592773, -0.6582662463188171, 0.9810361862182617, -0.4021690785884857, -0.05151796713471413, 0.33168014883995056, -0.4148215055465698, 0.17805883288383484, 0.5836256146430969, 0.14758092164993286, 0.045298654586076736, 0.1533016413450241, -0.3977363109588623, 0.03330091014504433, 0.8014534711837769, -0.8518087863922119, 0.46082377433776855, -0.28555062413215637, -0.3020757734775543, -0.03122480772435665, 0.11147619038820267, 0.47837114334106445, 0.8761208057403564, -0.37012192606925964, -0.12176156789064407, 0.9654314517974854, 0.09626644104719162, 0.09317713975906372, 0.03188985586166382, -0.5974838137626648, -0.42927122116088867, 1.0694762468338013, 0.0821400061249733, -0.17496196925640106, 0.5736173987388611, 0.5016845464706421, -0.3873535394668579, -0.19322048127651215, -0.4692719876766205, 0.4447491466999054, -0.45436346530914307, -0.4201310873031616, -0.4777258634567261, -0.4901808500289917, -0.6122434139251709, -0.1445692479610443, -0.5659663081169128, -0.38820695877075195, -0.7659948468208313, -0.432917058467865, 1.3460865020751953, 0.8019055724143982, -0.500333845615387, 0.15526612102985382, -0.8136096000671387, 0.6613576412200928, 0.11421877145767212, 0.9252322316169739, -0.5571263432502747, -0.3224451541900635, -0.2589547038078308, -0.08058403432369232, -0.16558749973773956, -0.7375651001930237, 0.18549476563930511, -0.019340338185429573, 0.5911444425582886, 0.4019741117954254, 0.07129581272602081, 0.7995821833610535, -0.13244400918483734, 0.5515764355659485, 0.22596189379692078, -0.648051917552948, 0.8009846806526184, -0.4312119483947754, 0.2425491213798523, 0.5312792658805847, 0.35852479934692383, -0.5827829837799072, -0.12546992301940918, -0.7740878462791443, -0.7487089037895203, 0.36185941100120544, 0.09687072783708572, -0.02065972052514553, 0.6107791662216187, 0.32428139448165894, 0.14530132710933685, 0.2635556757450104, -0.7909761667251587, -0.979620635509491, -0.2352973222732544, -0.16813726723194122, 0.18642523884773254, -0.4410931468009949, -0.28112712502479553, -0.4861193597316742, 0.5394578576087952, 0.03125555440783501, 0.5639548897743225, 0.1426410973072052, 0.43295127153396606, -0.063145212829113, -0.1678316593170166, 0.6593033671379089, 0.8337790966033936, -0.341705322265625, 0.024961980059742928, -0.06262679398059845, -0.44817012548446655, -0.3598712682723999, 0.7311313152313232, -0.09839688241481781, -0.1967429518699646, 0.34700191020965576, 1.0653245449066162, -0.7570004463195801, -0.08381710946559906, 0.3007204532623291, -0.37598946690559387, -0.31721287965774536, -0.5290265083312988, 0.23389391601085663, 0.08603662252426147, 0.3574828803539276, -0.10508444905281067, 0.1720934510231018, 0.14504829049110413, -0.14222419261932373, 0.6362102627754211, 0.09513024985790253, -1.0518877506256104, -0.4917510151863098, 0.7723662257194519, 0.5587202906608582, -0.5717374682426453, 0.6965384483337402, 0.060557615011930466, -0.40905705094337463, 0.2955518066883087, -0.0497855469584465, 0.8566335439682007, -0.5045721530914307, 0.26317596435546875, 0.4147622585296631, 0.2009337991476059, 0.35943660140037537, 0.711731493473053, -0.12624859809875488, -0.670587956905365, -0.049048807471990585, -0.47071364521980286, -0.07028695940971375, 0.26000329852104187, -0.9590152502059937, 0.8373900651931763, -0.5719269514083862, -0.16524375975131989, -0.12781503796577454, -0.13381323218345642, -0.810352623462677, 0.04052336513996124, 0.5351093411445618, 1.2767322063446045, -1.3352309465408325, 0.7542339563369751, 0.8916388154029846, -0.5024117827415466, -0.6287393569946289, -0.22088457643985748, 0.1432383954524994, -0.7561945915222168, 0.05895262956619263, 0.024177763611078262, 0.3240552842617035, -0.35604435205459595, -0.5667473077774048, -0.775394082069397, 1.1021925210952759, -0.08430641889572144, -0.506014347076416, 0.22601592540740967, -0.027424931526184082, 0.49968111515045166, -0.2599547505378723, 0.21331441402435303, 0.29262790083885193, 0.6740553379058838, 0.2562340795993805, -0.5570513606071472, -0.11771240830421448, -0.5184520483016968, -0.09702098369598389, 0.4489789307117462, -0.8724318742752075, 0.4539691209793091, 0.18914246559143066, 0.18101146817207336, 0.013911297544836998, 0.7380368113517761, -0.034775931388139725, 0.31421899795532227, 0.3159019649028778, 0.8255086541175842, 0.8614500761032104, -0.3453497886657715, 0.6940884590148926, 0.14555740356445312, 0.5202755928039551, 1.1544626951217651, -0.3362120985984802, 0.3140568137168884, 0.4304022192955017, -0.001784943277016282, 0.20577295124530792, 0.4299095869064331, -0.6418197751045227, 0.5770119428634644, 0.4772346317768097, -0.038864411413669586, -0.36214959621429443, 0.021203527227044106, -0.7884047627449036, 0.22211194038391113, 0.6149817109107971, -0.3375702202320099, 0.08971735090017319, 0.07695970684289932, -0.0019242027774453163, -0.1626475751399994, -0.41113805770874023, 0.47083500027656555, 0.11719255149364471, -0.11890619248151779, 0.07264437526464462, -0.27622950077056885, 0.5790019035339355, -0.9288023114204407, -0.539955198764801, -0.17216156423091888, 0.44621801376342773, -0.5124349594116211, -1.252760887145996, 0.7582067847251892, -0.22336554527282715, -0.14347776770591736, -0.11993997544050217, 0.8754473328590393, -0.46425026655197144, -0.8277742266654968, 0.3303534686565399, 0.28133106231689453, 0.13754433393478394, 0.4852887988090515, -1.113403558731079, 0.21638652682304382, -0.012603321112692356, -0.08838605880737305, 0.009907213039696217, 0.36100277304649353, -0.04214634373784065, 0.8490270972251892, 0.4172098934650421, 0.21259307861328125, -0.17996129393577576, 0.25888776779174805, 1.1564382314682007, -0.6060254573822021, -0.6444522738456726, -0.6807057857513428, 1.1781010627746582, -0.5125264525413513, -0.8144681453704834, 0.8148155212402344, 1.1671817302703857, 0.927283525466919, -0.2403866946697235, 0.6649481654167175, -0.3881058692932129, 0.6315711140632629, -0.5289114117622375, 0.8112621903419495, -0.4960896968841553, 0.030772360041737556, -0.40399014949798584, -0.6761103868484497, -0.6266875267028809, 0.6892949938774109, 0.14373497664928436, -0.14936649799346924, 0.6003528237342834, 1.0653406381607056, -0.38324975967407227, -0.0786808580160141, 0.343866765499115, 0.2256493866443634, 0.3734856843948364, 0.30778515338897705, 0.796128511428833, -0.5592235922813416, 0.08196676522493362, -0.23339571058750153, -0.587411105632782, -0.07773244380950928, -0.7114077210426331, -1.0766104459762573, -1.0153025388717651, -0.8796167373657227, -0.671870231628418, -0.01393212378025055, 0.7052438855171204, 0.9432021379470825, -0.647989809513092, -0.5821005702018738, -0.09623952955007553, 0.029616398736834526, -0.018362805247306824, -0.19654184579849243, 0.6906625032424927, 0.3284830152988434, -0.2878947854042053, -0.1567908078432083, -0.014208018779754639, 0.2910984754562378, -0.1631682813167572, -0.1460827738046646, -0.16772690415382385, -0.2943382263183594, 0.22815492749214172, 0.36159199476242065, -0.1198376938700676, -0.3065147399902344, -0.4166674315929413, 0.06705383211374283, 0.13736821711063385, 1.0892139673233032, -0.4797278344631195, 0.39693260192871094, 0.8537710905075073, 0.2842366695404053, 0.7343544960021973, 0.05695345997810364, 0.7423496246337891, -0.6991482973098755, 0.07980673015117645, 0.10178032517433167, 0.5264182090759277, 0.22458064556121826, -0.47756078839302063, 0.8857521414756775, 0.4698919951915741, -0.5923007726669312, -0.3653276562690735, 0.20734456181526184, -1.579426884651184, 0.42816996574401855, 1.1144883632659912, 0.061921343207359314, -0.3407425284385681, -0.19700480997562408, -0.6260960102081299, 0.0477411150932312, -0.7714996337890625, -0.044302985072135925, 0.20127548277378082, 0.007328277453780174, -0.3598175644874573, -0.22510839998722076, 0.7445505857467651, -0.6455718278884888, -1.1230628490447998, 0.41232189536094666, 0.823341429233551, 0.06274671107530594, 0.2119419425725937, 0.7226084470748901, -0.1394229531288147, 0.2125992625951767, 0.24875450134277344, 0.3968660831451416, -0.2800033390522003, -0.2377009242773056, -0.4584251046180725, -0.22032861411571503, 0.008479270152747631, -0.6392399072647095 ]
null
null
null
null
null
null
null
null
null
null
null
null
null
demelin/moral_stories
demelin
2022-07-17T15:29:10Z
438
12
null
[ "task_categories:multiple-choice", "task_categories:text-generation", "task_categories:text-classification", "task_ids:multiple-choice-qa", "task_ids:language-modeling", "task_ids:text-scoring", "annotations_creators:no-annotation", "language_creators:crowdsourced", "multilinguality:monolingual", "size_categories:10K<n<100K", "source_datasets:original", "language:en", "license:mit", "region:us" ]
2022-07-17T15:29:10Z
2022-07-14T11:19:52.000Z
2022-07-14T11:19:52
--- annotations_creators: - no-annotation language: - en language_creators: - crowdsourced license: - mit multilinguality: - monolingual pretty_name: Moral Stories size_categories: - 10K<n<100K source_datasets: - original task_categories: - multiple-choice - text-generation - text-classification - commonsense-reasoning - moral-reasoning - social-reasoning task_ids: - multiple-choice-qa - language-modeling - text-scoring --- # Dataset Card for Moral Stories ## 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:** [Moral Stories repository](https://github.com/demelin/moral_stories) - **Repository:** [Moral Stories repository](https://github.com/demelin/moral_stories) - **Paper:** [Moral Stories: Situated Reasoning about Norms, Intents, Actions, and their Consequences](https://aclanthology.org/2021.emnlp-main.54/) - **Leaderboard:** [N/A] - **Point of Contact:** [Denis Emelin](demelin.github.io) ### Dataset Summary Moral Stories is a crowd-sourced dataset of structured narratives that describe normative and norm-divergent actions taken by individuals to accomplish certain intentions in concrete situations, and their respective consequences. All stories in the dataset consist of seven sentences, belonging to the following categories: - Norm: A guideline for social conduct generally observed by most people in everyday situations. - Situation: Setting of the story that introduces story participants and describes their environment. - Intention: Reasonable goal that one of the story participants (the actor), wants to fulfill. - Normative action: An action by the actor that fulfills the intention and observes the norm. - Normative consequence: Possible effect of the normative action on the actor's environment. - Divergent action: An action by the actor that fulfills the intention and diverges from the norm. - Divergent consequence: Possible effect of the divergent action on the actor's environment. Accordingly, each story's constituent sentences can be grouped into three segments. The context segment grounds actions within a particular social scenario, the normative path contains the normative action and its consequence, whereas the divergent path includes their norm-divergent analogues. Combining the context segment separately with each path yields two self-contained sub-stories differing in the adherence of the described events to social expectations. See also [*Section 2* in the dataset paper](https://aclanthology.org/2021.emnlp-main.54.pdf). ### Supported Tasks and Leaderboards - commonsense-reasoning / social-reasoning / moral-reasoning: The dataset can also be used evaluate whether pretrained language models can reason about actions that are either consistent or inconsistent with social norms, the consequences of actions, and the norms that may motivate specific action choices. A [BART model](https://huggingface.co/facebook/bart-large) can be used for this purpose. - text-classification: This dataset can be used to train models to differentiate between normative and divergent actions as well as between plausible and implausible consequences of actions. A [RoBERTa-based model](https://huggingface.co/roberta-base) can be used for this purpose. - text-generation: The dataset can be used to train models to generate normative / divergent action hypotheses and their consequences, or norms that may explain certain action choices, conditioned on contexts of different scope. A [GPT-based model](https://huggingface.co/EleutherAI/gpt-neo-2.7B) can be used for this purpose. ### Languages *Moral Stories* is available in English, with mainstream US Englishes being the dominant variety, as indicated by self-reported contributor demographics provided in the [*Ethical Considerations* section of the dataset paper](https://aclanthology.org/2021.emnlp-main.54.pdf). ## Dataset Structure ### Data Instances Due to its highly structured nature, *Moral Stories* enables a variety of tasks, such as action classification or norm generation. Furthermore, we provide different data splits in an attempt to challenge generalization abilities of the evaluated models. For details, refer to [*Section 2* in the dataset paper](https://aclanthology.org/2021.emnlp-main.54.pdf). Here, we replicate one instance from the full, task-agnostic dataset, one instance from a classification task dataset (cls-action+norm), and one instance from a generation task dataset (gen-consequence$action+context): "full" instance: {"ID": "3OJSZ2ATDTUMG7NGR28931AHDQF57F", "norm": "It's kind to wait for people.", "situation": "Josh drives Penelope to work every day and is hanging outside her house to pick her up, but there's no sign of her.", "intention": "Josh needs to get to work.", "moral_action": "Josh continues to sit outside Penelope's house until she walks out the door a few minutes later.", "moral_consequence": "Penelope appreciates Josh's patience and thanks him for waiting around.", "immoral_action": "Josh shrugs his shoulders and drives away to work after sitting around a moment.", "immoral_consequence": "Penelope comes running out of the house shouting to wait, but she's too late."} positive and negative "cls-action+norm" instances (i.e. classify an action as normative or divergent given the action and a relevant norm): {"ID": "3EF8EXOTT2TGCKNZROVU3129RYNJ1G1", "norm": "It's bad to be too loud and wake people up.", "moral_action": "Jordan quietly makes himself a bowl of cereal for breakfast.", "label": "1"} {"ID": "3EF8EXOTT2TGCKNZROVU3129RYNJ1G0", "norm": "It's bad to be too loud and wake people up.", "immoral_action": "Jordan noisily bangs a lot of pots and pans when making his breakfast.", "label": "0"} "gen-consequence$action+context" instance (i.e. generate either a plausible or implausible consequence given an action and its context): {"ID": "33FOTY3KENJT46HTHWE8GXPE3LE1C03", "norm": "It's mean to hit a bear with a guitar.", "situation": "Joe was camping in Montana with his band when he came across a black bear.", "intention": "Joe wanted to scare away the black bear.", "immoral_action": "Joe grabbed his guitarist's guitar and hit the bear with it.", "immoral_consequence": "The bear suffers a concussion and doesn't understand why he was hit.", "label": "1"} ### Data Fields - "ID": Unique identifier ID for this dataset instance. - "norm": A guideline for social conduct generally observed by most people in everyday situations. - "situation": Setting of the story that introduces story participants and describes their environment. - "intention": Reasonable goal that one of the story participants (the actor), wants to fulfill. - "moral_(i.e. 'normative')_action": An action by the actor that fulfills the intention and observes the norm. - "moral_consequence": Possible effect of the normative action on the actor's environment. - "immoral_(i.e. 'divergent')_action": An action by the actor that fulfills the intention and diverges from the norm. - "immoral_consequence": Possible effect of the divergent action on the actor's environment. - "label": Data instance label; for action-related tasks, "0" corresponds to an immoral / divergent action while "1" corresponds to a moral / normative action, for consequence-related tasks, "0" corresponds to a plausible consequence while "1" corresponds to an implausible consequence (for generation tasks, label is always set to "1") ### Data Splits For classification tasks, we examined three data split strategies: - *Norm Distance*: Norms are based on social consensus and may, as such, change across time and between locations. Therefore, we are also interested in how well classification models can generalize to novel norms. To estimate this, we split the dataset by embedding norms found in the collected stories and grouping them into 1k clusters via agglomerative clustering. Clusters are ordered according to their degree of isolation, defined as the cosine distance between a cluster's centroid and the next-closest cluster's centroid. Stories with norms from most isolated clusters are assigned to test and development sets, with the rest forming the training set. - *Lexical Bias*: Tests the susceptibility of classifiers to surface-level lexical correlations. We first identify 100 biased lemmas that occur most frequently either in normative or divergent actions. Each story is then assigned a bias score corresponding to the total number of biased lemmas present in both actions (or consequences). Starting with the lowest bias scores, stories are assigned to the test, development, and, lastly, training set. - *Minimal Pairs*: Evaluates the model's ability to perform nuanced social reasoning. Splits are obtained by ordering stories according to the Damerau-Levenshtein distance between their actions (or consequences) and assigning stories with lowest distances to the test set, followed by the development set. The remainder makes up the training set. For generation tasks, only the *Norm Distance* split strategy is used. For more details, refer to [*Section 3* and *Appendix C* in the dataset paper](https://aclanthology.org/2021.emnlp-main.54.pdf). ## Dataset Creation ### Curation Rationale Please refer to [*Section 2* and the *Ethical Considerations* section in the dataset paper](https://aclanthology.org/2021.emnlp-main.54.pdf). ### Source Data #### Initial Data Collection and Normalization Please refer to [*Section 2* in the dataset paper](https://aclanthology.org/2021.emnlp-main.54.pdf). #### Who are the source language producers? Please refer to [the *Ethical Considerations* section in the dataset paper](https://aclanthology.org/2021.emnlp-main.54.pdf). ### Annotations #### Annotation process Please refer to [*Section 2* and the *Ethical Considerations* section in the dataset paper](https://aclanthology.org/2021.emnlp-main.54.pdf). #### Who are the annotators? Please refer to [the *Ethical Considerations* section in the dataset paper](https://aclanthology.org/2021.emnlp-main.54.pdf). ### Personal and Sensitive Information [N/A] ## Considerations for Using the Data ### Social Impact of Dataset Please refer to [the *Ethical Considerations* section in the dataset paper](https://aclanthology.org/2021.emnlp-main.54.pdf). ### Discussion of Biases Please refer to [the *Ethical Considerations* section in the dataset paper](https://aclanthology.org/2021.emnlp-main.54.pdf). ### Other Known Limitations Please refer to [the *Ethical Considerations* section in the dataset paper](https://aclanthology.org/2021.emnlp-main.54.pdf). ## Additional Information ### Dataset Curators [Denis Emelin](demelin.github.io) ### Licensing Information MIT ### Citation Information @article{Emelin2021MoralSS, title={Moral Stories: Situated Reasoning about Norms, Intents, Actions, and their Consequences}, author={Denis Emelin and Ronan Le Bras and Jena D. Hwang and Maxwell Forbes and Yejin Choi}, journal={ArXiv}, year={2021}, volume={abs/2012.15738} }
[ -0.20243971049785614, -0.8080359697341919, 0.5663542151451111, 0.2934481203556061, -0.34139490127563477, -0.2913970947265625, 0.00940140150487423, -0.1787480115890503, 0.17479963600635529, 0.549720823764801, -0.8777079582214355, -0.6565349102020264, -0.4778980612754822, 0.1734997034072876, -0.06971488147974014, 1.1907236576080322, -0.10415908694267273, -0.10928299278020859, -0.09007611870765686, -0.29478761553764343, -0.5011539459228516, -0.519949197769165, -0.7525072693824768, -0.09861832112073898, 0.5692752599716187, 0.33535414934158325, 0.42952510714530945, 0.7233862280845642, 0.38978323340415955, 0.3021751940250397, -0.040156759321689606, -0.003831192385405302, -0.7474892139434814, 0.15595193207263947, -0.27260440587997437, -0.038454364985227585, -0.4743177890777588, 0.43611159920692444, 0.43782180547714233, 0.41499313712120056, -0.07609342783689499, 0.4864271581172943, 0.09949903190135956, 0.6909188628196716, -0.35598453879356384, 0.3836557865142822, 0.048547256737947464, 0.1805441826581955, 0.01587699167430401, -0.15997688472270966, -0.16329360008239746, -0.5951955318450928, -0.16519610583782196, -0.5933295488357544, 0.1123952567577362, 0.1562456339597702, 0.8490772843360901, 0.09988264739513397, -0.4437749981880188, -0.5086448788642883, -0.436654269695282, 1.0292924642562866, -0.6252111792564392, -0.06429101526737213, 0.7709391117095947, -0.18272115290164948, 0.18815210461616516, -0.6817026138305664, -0.5385312438011169, -0.025644982233643532, -0.4414485692977905, 0.2966410517692566, -0.061132095754146576, -0.0170406736433506, 0.5529457926750183, 0.41204482316970825, -0.18847158551216125, -0.24570463597774506, -0.5227909088134766, 0.06134355440735817, 0.999130368232727, 0.6112411618232727, 0.19091437757015228, -0.7180423140525818, -0.31816989183425903, -0.14399465918540955, -0.4689822196960449, 0.5719424486160278, 0.5244647264480591, 0.2789883017539978, -0.5888603925704956, 0.6911524534225464, 0.018346574157476425, 0.5528607368469238, 0.18059325218200684, -0.10014776885509491, 0.2160142958164215, -0.6968750357627869, -0.09351816773414612, 0.16900713741779327, 0.8022146821022034, 0.8340399265289307, 0.2541981041431427, 0.3875385522842407, -0.050084926187992096, -0.007731374818831682, 0.2824641168117523, -0.6603418588638306, -0.08387041091918945, 0.4203093647956848, -0.764586329460144, -0.5924643874168396, -0.10758594423532486, -0.8515704274177551, -0.2868214547634125, -0.4457288980484009, 0.04393376410007477, -0.48700064420700073, -0.05606657266616821, 0.20055519044399261, -0.10450804233551025, 0.3418750762939453, 0.04790586978197098, -0.5860802531242371, 0.16957221925258636, 0.5486140847206116, 0.8654847741127014, 0.05981086939573288, -0.144140362739563, -0.5236021876335144, 0.27555856108665466, -0.2246263027191162, 0.41718369722366333, -0.5563923716545105, -0.28383463621139526, 0.0271010585129261, 0.4161580801010132, -0.09533944725990295, 0.13042090833187103, 1.191165804862976, 0.025354748591780663, 0.2887387275695801, -0.6264603137969971, -0.696588933467865, -0.5676572322845459, 0.32442790269851685, -0.6541295051574707, 0.6541559100151062, 0.0473669171333313, -0.7884290218353271, 0.41884034872055054, -0.9168344140052795, -0.5846178531646729, -0.1881444752216339, -0.17750674486160278, -0.34214821457862854, -0.10553295165300369, 0.008231245912611485, 0.7613695859909058, -0.28971967101097107, 0.3528863787651062, -0.2660958170890808, -0.26459527015686035, 0.05214913934469223, -0.3237552046775818, 1.3307150602340698, 0.1503663957118988, -0.14329209923744202, -0.09857450425624847, -0.551892876625061, -0.10847602039575577, 0.41758471727371216, -0.32199105620384216, -0.4235045313835144, 0.19742655754089355, 0.12180269509553909, 0.2392931431531906, 0.06554912030696869, -0.5215225219726562, -0.0258343443274498, -0.12937398254871368, 0.40967103838920593, 0.8190773129463196, 0.33792418241500854, 0.2274826467037201, -0.7671962976455688, 0.43255406618118286, -0.13159902393817902, 0.41452011466026306, 0.03284846246242523, -0.4473032057285309, -0.541130781173706, -0.2739920914173126, -0.10363546013832092, 0.6638408303260803, -0.4382017254829407, 0.7006299495697021, -0.112513966858387, -0.2923109233379364, -0.22517968714237213, -0.13419687747955322, 0.6487681865692139, 0.3443099856376648, 0.3725415766239166, -0.3766428530216217, -0.474740207195282, -0.6022676229476929, -0.218060702085495, -0.41862085461616516, 0.17611539363861084, 0.7037687301635742, 0.5144836902618408, 0.11858731508255005, 0.7111132144927979, -0.5558429956436157, -0.3898996412754059, -0.45335260033607483, 0.05173392593860626, 0.4328303635120392, 0.6383350491523743, 0.4540240168571472, -1.058681607246399, -0.16094031929969788, -0.330035537481308, -0.9518630504608154, 0.09901893138885498, -0.2502838373184204, -0.011458873748779297, -0.039869580417871475, 0.43336179852485657, -0.30103805661201477, 0.5406816005706787, 0.27069786190986633, -0.8172025084495544, 0.6942397356033325, 0.01559525914490223, 0.398264616727829, -1.2534672021865845, -0.011238322593271732, 0.08643124252557755, 0.08035899698734283, -0.6942274570465088, -0.39668840169906616, -0.33503472805023193, 0.3154854476451874, -0.4882042706012726, 0.62766033411026, -0.1943395435810089, 0.102256178855896, 0.580075740814209, -0.010923611931502819, -0.02897503599524498, 0.6489824056625366, 0.04548090696334839, 0.34266915917396545, 0.4988541305065155, -0.7434112429618835, 0.4077722430229187, 0.6541598439216614, -0.1213361993432045, 0.707725465297699, -0.6754670739173889, -0.2857658863067627, -0.2908403277397156, 0.13755111396312714, -0.5623076558113098, -0.3314691483974457, 0.46873167157173157, -0.3922821581363678, -0.06564107537269592, -0.19896841049194336, -0.5432040691375732, -0.19232846796512604, -0.4687499403953552, 0.3640541136264801, 0.40798047184944153, -0.19323359429836273, 0.48245054483413696, 0.3382960557937622, -0.2693013846874237, -0.4876159131526947, -0.6458616256713867, -0.06270595639944077, -0.5583791732788086, -0.42665305733680725, 0.22960492968559265, -0.187750905752182, -0.4297827482223511, 0.057100560516119, 0.10862799733877182, -0.04975755140185356, -0.034713685512542725, 0.32696130871772766, 0.197118878364563, -0.037481099367141724, 0.14244863390922546, 0.1559540033340454, 0.09352070093154907, 0.11250849068164825, 0.25934600830078125, 0.346198707818985, -0.6199839115142822, -0.14312328398227692, -0.23551756143569946, 0.6177351474761963, 0.3639824092388153, -0.01947972923517227, 0.5426627993583679, 0.513099730014801, -0.2917291224002838, 0.23651032149791718, -0.2772864103317261, -0.11402212083339691, -0.43171998858451843, 0.002700944198295474, 0.004021639470010996, -0.7408910989761353, 0.5507355332374573, 0.11921846866607666, 0.34267619252204895, 0.4675337076187134, 0.48533201217651367, -0.3406347334384918, 0.6112459301948547, 0.3414035439491272, 0.30620861053466797, 0.5036279559135437, -0.48652786016464233, 0.24188648164272308, -0.9059295058250427, -0.05664381384849548, -0.12412875145673752, -0.42010754346847534, -0.7817665934562683, -0.35205090045928955, 0.20303428173065186, 0.24730555713176727, -0.6011369824409485, 0.4697464108467102, -0.49149781465530396, 0.5403078198432922, 0.3516457974910736, -0.014429446309804916, 0.36237698793411255, -0.09834042936563492, -0.29456591606140137, -0.00888341385871172, -0.743436336517334, -0.8536070585250854, 0.9253890514373779, 0.24223174154758453, 0.5128887891769409, 0.2618715167045593, 0.8492646813392639, 0.49449825286865234, 0.2543453574180603, -0.6042869091033936, 0.7321759462356567, -0.36316215991973877, -0.7218090891838074, -0.5072165131568909, -0.21122020483016968, -1.1290380954742432, -0.031155098229646683, -0.25583532452583313, -0.8501047492027283, 0.6743409633636475, -0.13703909516334534, -0.5353547930717468, 0.20898009836673737, -0.67726731300354, 0.9057191014289856, -0.3090413212776184, -0.4912566840648651, -0.19657939672470093, -0.9396717548370361, 0.3876299560070038, 0.18226242065429688, 0.19036783277988434, -0.2515832483768463, 0.14488476514816284, 0.8132302761077881, -0.2512502670288086, 1.2317636013031006, 0.005440698470920324, 0.21341758966445923, 0.5107319355010986, 0.03301169350743294, 0.6143757104873657, 0.37077584862709045, 0.009461704641580582, 0.12028706073760986, 0.14491333067417145, -0.32332396507263184, -0.3393271267414093, 0.45121219754219055, -0.4377407729625702, -0.3170366883277893, -0.5783860087394714, -0.5421948432922363, -0.01286407932639122, 0.10965751111507416, 0.24662134051322937, 0.514497697353363, -0.4264780282974243, 0.3306716978549957, 0.5510022044181824, -0.3681025207042694, 0.5852019190788269, 0.5373433828353882, 0.043452199548482895, -0.405815064907074, 0.4774726331233978, -0.02152838557958603, 0.11626771092414856, 0.01545142661780119, 0.19838565587997437, -0.3164466917514801, -0.1749449521303177, -0.19035090506076813, 0.3767019808292389, -0.6338014602661133, -0.1621197611093521, -0.721186101436615, -0.23597410321235657, -0.16163116693496704, -0.50806725025177, -0.19556313753128052, -0.40116891264915466, -0.4962443709373474, -0.42306065559387207, 0.6440690755844116, 0.6684760451316833, -0.3430158793926239, -0.08729644119739532, -0.7114177346229553, 0.35750508308410645, 0.23783890902996063, 0.3119138479232788, -0.16031235456466675, -0.18236799538135529, 0.01590503565967083, -0.017693959176540375, -0.43040773272514343, -0.7424927353858948, 0.3163028359413147, 0.022403351962566376, 0.5008830428123474, 0.44274982810020447, 0.45489346981048584, 0.4912516176700592, -0.45061659812927246, 0.9368004202842712, 0.3462924361228943, -0.6610795259475708, 0.6048895120620728, -0.6422165036201477, -0.11385743319988251, 0.6091890931129456, 0.49617043137550354, -0.7339260578155518, -0.3411523401737213, -1.0003057718276978, -0.8861826658248901, 0.7918969988822937, 0.6421597599983215, 0.31081315875053406, -0.23732462525367737, 0.3266555070877075, 0.015967441722750664, 0.17747637629508972, -1.0057123899459839, -0.4561094343662262, -0.3310936987400055, -0.3445555567741394, -0.16157150268554688, -0.15037177503108978, -0.41717231273651123, -0.5296123623847961, 0.626682460308075, 0.06650246679782867, 0.40941759943962097, 0.42804819345474243, 0.0812288224697113, -0.024043278768658638, 0.3073088824748993, 0.5813254117965698, 0.4776272773742676, -0.24433323740959167, -0.08685560524463654, 0.1117171049118042, -0.6211811304092407, 0.2889925539493561, 0.12635213136672974, -0.10059144347906113, -0.23048068583011627, 0.6336435675621033, 0.707270085811615, 0.11150779575109482, -0.5466731190681458, 0.5799087285995483, -0.1939534991979599, -0.1840176284313202, -0.5621230602264404, 0.13210949301719666, -0.06008251756429672, 0.4804525673389435, 0.03125297278165817, 0.012772115878760815, 0.22056327760219574, -0.6586808562278748, 0.28506147861480713, -0.06949541717767715, -0.5007554888725281, -0.1991923600435257, 0.26088935136795044, 0.10193025320768356, -0.43216416239738464, 0.4344484210014343, -0.5872979760169983, -0.25588253140449524, 0.8092313408851624, 0.2625688314437866, 1.0678881406784058, -0.08699952065944672, 0.6382719874382019, 0.6946793794631958, 0.43738994002342224, -0.10375812649726868, 0.5223858952522278, 0.02107447013258934, -0.8787090182304382, -0.36859723925590515, -0.7899773716926575, 0.01072473730891943, 0.13741490244865417, -0.745067834854126, 0.2436124086380005, -0.3737201392650604, -0.05892195180058479, -0.20011195540428162, -0.06722657382488251, -0.5534858703613281, 0.23982606828212738, -0.22356006503105164, 0.444059818983078, -0.9217602610588074, 0.41447553038597107, 0.6028569340705872, -0.6468344926834106, -0.8200289607048035, 0.20785978436470032, -0.035183198750019073, -0.4820000231266022, 0.4555880129337311, 0.03471389412879944, 0.2670413851737976, -0.15889409184455872, -0.5217315554618835, -0.7422975897789001, 1.2308590412139893, -0.05644781142473221, -0.3841765820980072, 0.07430049777030945, -0.00010256300447508693, 0.6618091464042664, -0.6952784061431885, -0.11492855101823807, 0.5705439448356628, 0.7312658429145813, 0.08030303567647934, -0.3670663833618164, 0.46438875794410706, -0.14328134059906006, -0.21128523349761963, -0.06654119491577148, -0.6749790906906128, 0.706619143486023, -0.5004217624664307, -0.2666976749897003, -0.1358685940504074, 0.36315739154815674, 0.570185661315918, 0.5770575404167175, 0.6361533403396606, 0.43528035283088684, 0.6562244892120361, -0.051682792603969574, 1.2291946411132812, -0.12541839480400085, 0.5274170637130737, 1.023024320602417, 0.03852449730038643, 0.4278893768787384, 0.26956990361213684, -0.0537741519510746, 0.5133776068687439, 0.7213677167892456, -0.20184238255023956, 0.6183418035507202, 0.16482488811016083, -0.019514847546815872, -0.29077985882759094, -0.14944709837436676, -0.1604365110397339, 0.5131552219390869, 0.428781121969223, -0.5634511709213257, -0.09255467355251312, -0.16476623713970184, 0.23761290311813354, -0.08524097502231598, -0.44613537192344666, 0.7079740762710571, 0.25081104040145874, -0.6258824467658997, 0.28932633996009827, -0.1362580806016922, 0.27778592705726624, -0.3986489176750183, -0.226365327835083, -0.08028020709753036, -0.07860744744539261, -0.13153764605522156, -1.0972225666046143, 0.46273213624954224, 0.16655147075653076, -0.30245962738990784, -0.4733436107635498, 0.6214638948440552, -0.30866461992263794, -0.7336917519569397, 0.19987033307552338, 0.41276130080223083, 0.20409199595451355, 0.48292893171310425, -0.9696856737136841, -0.2945391833782196, 0.070492222905159, -0.3479413092136383, -0.03592319414019585, 0.5715780854225159, -0.14109112322330475, 0.5087438821792603, 0.656535804271698, -0.1375553160905838, -0.3096313774585724, -0.043935585767030716, 0.6830954551696777, -0.9225206971168518, -0.6329491138458252, -0.715151846408844, 0.7262704372406006, -0.34523263573646545, -0.5047606825828552, 0.6534360647201538, 0.46617797017097473, 0.5762044787406921, -0.013103609904646873, 0.6683661341667175, -0.5480993986129761, 0.39475223422050476, -0.6538968086242676, 0.5915476679801941, -0.5145180225372314, 0.2011202573776245, -0.4043201506137848, -0.6454740166664124, -0.07138966023921967, 0.7280461192131042, -0.5310256481170654, 0.33954891562461853, 0.851934552192688, 0.4206509292125702, 0.03707083687186241, 0.10199728608131409, 0.19859719276428223, 0.4164384603500366, 0.06650831550359726, 0.46752628684043884, 0.7683061361312866, -0.4886261820793152, 0.40515509247779846, -0.050680115818977356, -0.09225104749202728, -0.11629202216863632, -1.0727555751800537, -0.8901371955871582, -0.864323616027832, -0.4245460033416748, -0.3544990122318268, 0.06628961116075516, 0.7722981572151184, 0.4043098986148834, -0.7938295602798462, -0.21615028381347656, -0.24945728480815887, 0.361662358045578, -0.6558024883270264, -0.2820022702217102, 0.4379182755947113, -0.15188412368297577, -0.3445272445678711, 0.04060943052172661, 0.11687644571065903, -0.0005003684782423079, 0.1461852788925171, -0.3114624321460724, -0.47877562046051025, 0.3254384994506836, 0.7089698910713196, 0.0719323605298996, -0.6562684774398804, -0.4942316710948944, -0.14852429926395416, 0.07211578637361526, -0.0633619949221611, 0.8370518088340759, -0.34655770659446716, 0.06040458753705025, 0.3794780373573303, 0.04801103100180626, 0.42324087023735046, 0.19121050834655762, 0.41125452518463135, -0.8322540521621704, -0.3311704397201538, 0.5624775290489197, 0.4371623992919922, 0.16759885847568512, -0.7785388827323914, 0.8988490104675293, 0.24263069033622742, -0.5592635273933411, -0.5899213552474976, 0.2839857041835785, -1.0842007398605347, -0.29506611824035645, 1.4760560989379883, -0.1840631067752838, -0.11889968067407608, -0.4046090841293335, -0.2539711594581604, 0.19705605506896973, -0.5116841197013855, 0.6457825899124146, 0.9127486348152161, -0.23071059584617615, -0.12752434611320496, -0.7068466544151306, 0.7788383364677429, 0.08996861428022385, -0.7429257035255432, 0.43133094906806946, 0.6676946878433228, 0.24401485919952393, 0.17368723452091217, 0.5482332706451416, -0.2813604176044464, 0.2512761056423187, -0.18192540109157562, 0.02890118584036827, -0.0855313166975975, -0.07110270112752914, -0.18179287016391754, -0.006373485550284386, -0.7271292805671692, 0.12643253803253174 ]
null
null
null
null
null
null
null
null
null
null
null
null
null
elyza/ELYZA-tasks-100
elyza
2023-09-26T01:38:42Z
438
34
null
[ "task_categories:text2text-generation", "size_categories:n<1K", "language:ja", "license:cc-by-sa-4.0", "arxiv:2307.09288", "region:us" ]
2023-09-26T01:38:42Z
2023-08-28T09:01:44.000Z
2023-08-28T09:01:44
--- task_categories: - text2text-generation language: - ja size_categories: - n<1K license: cc-by-sa-4.0 --- # ELYZA-tasks-100: 日本語instructionモデル評価データセット ![Imgur](images/key_visual.png) ## Data Description 本データセットはinstruction-tuningを行ったモデルの評価用データセットです。詳細は [リリースのnote記事](https://note.com/elyza/n/na405acaca130) を参照してください。 特徴: - 複雑な指示・タスクを含む100件の日本語データです。 - 役に立つAIアシスタントとして、丁寧な出力が求められます。 - 全てのデータに対して評価観点がアノテーションされており、評価の揺らぎを抑えることが期待されます。 具体的には以下のようなタスクを含みます。 - 要約を修正し、修正箇所を説明するタスク - 具体的なエピソードから抽象的な教訓を述べるタスク - ユーザーの意図を汲み役に立つAIアシスタントとして振る舞うタスク - 場合分けを必要とする複雑な算数のタスク - 未知の言語からパターンを抽出し日本語訳する高度な推論を必要とするタスク - 複数の指示を踏まえた上でyoutubeの対話を生成するタスク - 架空の生き物や熟語に関する生成・大喜利などの想像力が求められるタスク ## Usage datasetsライブラリから利用が可能です。 ```py >>> from datasets import load_dataset >>> ds = load_dataset("elyza/ELYZA-tasks-100") >>> ds DatasetDict({ test: Dataset({ features: ["input", "output", "eval_aspect"], num_rows: 100 }) }) >>> ds["test"][0] { 'input': '仕事の熱意を取り戻すためのアイデアを5つ挙げてください。', 'output': '1. 自分の仕事に対する興味を再発見するために、新しい技能や知識を学ぶこと。\n2. カレッジやセミナーなどで講演を聴くことで、仕事に対する新しいアイデアや視点を得ること。\n3. 仕事に対してストレスを感じている場合は、ストレスマネジメントのテクニックを学ぶこと。\n4. 仕事以外の楽しいことをすることで、ストレスを発散すること。\n5. 仕事に対して自己評価をすることで、自分がどのように進化しているのかを知ること。', 'eval_aspect': '- 熱意を取り戻すのではなく、仕事の効率化・スキルアップのような文脈になっていたら1点減点\n- 出したアイデアが5つより多い、少ない場合は1点減点\n- 5つのアイデアのうち、内容が重複しているものがあれば1点減点\n\n' } ``` ## Baseline Evaluation 本データセットは手動/自動, 絶対/相対 評価のいずれの評価形式でも利用していただくことができますが、今回我々はベースラインモデルの評価として、5段階の絶対評価を手動で行いました。 ### 評価手順 1. [こちらの推論スクリプト](https://huggingface.co/datasets/elyza/ELYZA-tasks-100/tree/main/baseline/scripts)のようにベースラインとなるモデルでの推論を行い、[baseline/preds](https://huggingface.co/datasets/elyza/ELYZA-tasks-100/tree/main/baseline/preds)以下に推論結果を格納しました。 - 基本的にgenerate時のパラメータはREADMEなどに記載されているデフォルト値を用いました。 2. [shuffle_for_humaneval.py](https://huggingface.co/datasets/elyza/ELYZA-tasks-100/blob/main/baseline/humaneval/shuffle_for_humaneval.py)を用いて匿名化されたモデルの推論結果 [shuffled_preds.csv](https://huggingface.co/datasets/elyza/ELYZA-tasks-100/blob/main/baseline/humaneval/shuffled_preds.csv) と匿名化を復元するための対応表 [uuids.csv](https://huggingface.co/datasets/elyza/ELYZA-tasks-100/blob/main/baseline/humaneval/uuids.csv) を作成しました。 3. [shuffled_preds.csv](https://huggingface.co/datasets/elyza/ELYZA-tasks-100/blob/main/baseline/humaneval/shuffled_preds.csv) を Googleスプレッドシートにアップロードし、[評価ガイドライン](https://huggingface.co/datasets/elyza/ELYZA-tasks-100/blob/main/baseline/humaneval/guideline.md) に従って、各データ3人で人手評価を行いました。 4. スプレッドシートでの評価結果を[annotated_shuffled_preds.xlsx](https://huggingface.co/datasets/elyza/ELYZA-tasks-100/blob/main/baseline/humaneval/annotated_shuffled_preds.xlsx)としてダウンロードし、 [deshuffle_annotations.py](https://huggingface.co/datasets/elyza/ELYZA-tasks-100/blob/main/baseline/humaneval/deshuffle_annotations.py) を利用し、匿名化された評価結果を復号して[annotated_deshuffled_preds.csv](https://huggingface.co/datasets/elyza/ELYZA-tasks-100/blob/main/baseline/humaneval/annotated_deshuffled_preds.csv) として保存しました。 5. 最後にGoogleスプレッドシートに[評価結果シート](https://docs.google.com/spreadsheets/d/1mtoy4QAqDPk2f_B0vDogFoOrbA5G42DBEEHdqM4VmDI/edit#gid=1023787356)にアップロードして可視化しました。 ### 評価結果 - スコアについては、[リリースのnote記事](https://note.com/elyza/n/na405acaca130) を参照してください。 - [評価結果シート](https://docs.google.com/spreadsheets/d/1mtoy4QAqDPk2f_B0vDogFoOrbA5G42DBEEHdqM4VmDI/edit#gid=1023787356): - 全ての入出力と評価を公開しています。スコアだけでは分からないモデルの傾向を知ることができます。 ### 評価手法の妥当性について [zennの技術ブログ](https://zenn.dev/elyza/articles/5e7d9373c32a98)にて今回のベースラインの評価の詳細な分析についての記事を書きました。よければそちらもご覧ください。 ## GPT4での自動評価について こちらも[zennの技術ブログ](https://zenn.dev/elyza/articles/5e7d9373c32a98)にて実際にGPT4での評価を行う際のコードと結果を示しています。 ## Developers 以下アルファベット順です。 - [Akira Sasaki](https://huggingface.co/akirasasaki) - [Masato Hirakawa](https://huggingface.co/m-hirakawa) - [Shintaro Horie](https://huggingface.co/e-mon) - [Tomoaki Nakamura](https://huggingface.co/tyoyo) ## License ![license-badge](https://i.creativecommons.org/l/by-sa/4.0/88x31.png) このデータセットは [CC BY-SA 4.0](https://creativecommons.org/licenses/by-sa/4.0/deed.ja) でライセンスされています。 ## How to Cite ```tex @misc{elyzatasks100, title={ELYZA-tasks-100: 日本語instructionモデル評価データセット}, url={https://huggingface.co/elyza/ELYZA-tasks-100}, author={Akira Sasaki and Masato Hirakawa and Shintaro Horie and Tomoaki Nakamura}, year={2023}, } ``` ## Citations ```tex @misc{touvron2023llama, title={Llama 2: Open Foundation and Fine-Tuned Chat Models}, author={Hugo Touvron and Louis Martin and Kevin Stone and Peter Albert and Amjad Almahairi and Yasmine Babaei and Nikolay Bashlykov and Soumya Batra and Prajjwal Bhargava and Shruti Bhosale and Dan Bikel and Lukas Blecher and Cristian Canton Ferrer and Moya Chen and Guillem Cucurull and David Esiobu and Jude Fernandes and Jeremy Fu and Wenyin Fu and Brian Fuller and Cynthia Gao and Vedanuj Goswami and Naman Goyal and Anthony Hartshorn and Saghar Hosseini and Rui Hou and Hakan Inan and Marcin Kardas and Viktor Kerkez and Madian Khabsa and Isabel Kloumann and Artem Korenev and Punit Singh Koura and Marie-Anne Lachaux and Thibaut Lavril and Jenya Lee and Diana Liskovich and Yinghai Lu and Yuning Mao and Xavier Martinet and Todor Mihaylov and Pushkar Mishra and Igor Molybog and Yixin Nie and Andrew Poulton and Jeremy Reizenstein and Rashi Rungta and Kalyan Saladi and Alan Schelten and Ruan Silva and Eric Michael Smith and Ranjan Subramanian and Xiaoqing Ellen Tan and Binh Tang and Ross Taylor and Adina Williams and Jian Xiang Kuan and Puxin Xu and Zheng Yan and Iliyan Zarov and Yuchen Zhang and Angela Fan and Melanie Kambadur and Sharan Narang and Aurelien Rodriguez and Robert Stojnic and Sergey Edunov and Thomas Scialom}, year={2023}, eprint={2307.09288}, archivePrefix={arXiv}, primaryClass={cs.CL} } ```
[ -0.514240562915802, -0.804183304309845, 0.32097703218460083, 0.4096143841743469, -0.22993215918540955, -0.4103306531906128, -0.15172366797924042, -0.3352507948875427, 0.6407426595687866, 0.317506343126297, -0.7758144736289978, -0.6351274251937866, -0.45512655377388, 0.16221873462200165, -0.174564391374588, 1.0043175220489502, -0.36971643567085266, -0.28366681933403015, -0.32471293210983276, -0.1069684624671936, -0.27386346459388733, -0.28957438468933105, -0.552204966545105, -0.27973809838294983, 0.17127375304698944, 0.4228600561618805, 0.45412275195121765, 0.5199711322784424, 0.7162328958511353, 0.45192018151283264, 0.002536201383918524, 0.06340743601322174, -0.12818318605422974, 0.0952877476811409, 0.3604918420314789, -0.4077857732772827, -0.9038037657737732, -0.118258997797966, 0.7791626453399658, 0.5831826329231262, 0.15946342051029205, 0.2888001501560211, 0.3005622923374176, 0.735152542591095, -0.30665794014930725, 0.2481183558702469, -0.11994495987892151, -0.014125007204711437, -0.23771676421165466, -0.2564404010772705, 0.1363169103860855, -0.43494608998298645, -0.08519165217876434, -0.9190990924835205, -0.06037242338061333, -0.060554079711437225, 1.3777369260787964, 0.2820846140384674, 0.08553563058376312, 0.06000065803527832, -0.2662462294101715, 1.0497654676437378, -0.9292629361152649, 0.10613995045423508, 0.6051096320152283, -0.0006030683289282024, -0.08912761509418488, -0.679715633392334, -0.6713318824768066, -0.09046395868062973, -0.32557058334350586, 0.3570069372653961, -0.26556721329689026, -0.2679430842399597, 0.38239482045173645, 0.25614383816719055, -0.45919573307037354, 0.15536604821681976, -0.40965506434440613, -0.09930577874183655, 0.8734737634658813, 0.21971243619918823, 0.5165495276451111, -0.5916165709495544, -0.44424110651016235, -0.3480629324913025, -0.36603179574012756, 0.427114337682724, 0.2300575077533722, 0.30651307106018066, -0.7761614322662354, 0.5815296769142151, -0.3082261383533478, 0.5015908479690552, 0.20529159903526306, -0.3317543864250183, 0.8938961625099182, -0.6053159832954407, -0.46545612812042236, -0.37634459137916565, 1.172419548034668, 0.49603742361068726, -0.026612436398863792, 0.14498355984687805, -0.06661038845777512, -0.2208673357963562, -0.15121375024318695, -0.8519203066825867, 0.06796327978372574, 0.4680898189544678, -0.5124524831771851, -0.3223859369754791, 0.09852960705757141, -1.2238478660583496, -0.16589753329753876, -0.29884448647499084, 0.3237159550189972, -0.6694682836532593, -0.32807984948158264, 0.02512333355844021, 0.039884909987449646, -0.0780908614397049, 0.3136027455329895, -0.5548044443130493, 0.2925368547439575, 0.4879955053329468, 0.8189308643341064, 0.23110254108905792, -0.46903732419013977, -0.3732134699821472, -0.04127836227416992, -0.08089924603700638, 0.6119144558906555, -0.29608362913131714, -0.2296077460050583, -0.1681547909975052, 0.24750874936580658, -0.4529992640018463, -0.2958407998085022, 0.7332371473312378, 0.12825898826122284, 0.29476821422576904, -0.505132257938385, -0.3846528232097626, -0.24029268324375153, 0.07899991422891617, -0.45076805353164673, 1.100134015083313, 0.20287765562534332, -1.06294584274292, 0.06141981855034828, -0.6364017724990845, -0.3102496564388275, -0.07733949273824692, -0.12262123823165894, -0.6751295328140259, -0.35691261291503906, 0.3806510865688324, 0.6946361660957336, -0.2698480188846588, -0.13667254149913788, -0.2664065659046173, -0.007089376449584961, 0.3881622552871704, 0.19113017618656158, 0.9379684925079346, 0.4265783131122589, -0.5021741390228271, 0.13075333833694458, -0.895128607749939, 0.3020283579826355, 0.3330168128013611, -0.13476881384849548, -0.40304994583129883, -0.08704821765422821, 0.06386107206344604, 0.33138006925582886, 0.4660610854625702, -0.6284246444702148, 0.08357217162847519, -0.47466787695884705, 0.5258023738861084, 0.7718929648399353, 0.051501210778951645, 0.3211379647254944, -0.6637499332427979, 0.5126169323921204, 0.1494743674993515, 0.2549781799316406, -0.07988151907920837, -0.4769829213619232, -0.7906739711761475, -0.2452181577682495, 0.01298009417951107, 0.5819370746612549, -0.7924216985702515, 0.8655197620391846, -0.35103657841682434, -0.5780937671661377, -0.5582415461540222, 0.15662209689617157, 0.48865869641304016, 0.4632863700389862, 0.4612855315208435, -0.08558480441570282, -0.7247561812400818, -0.6469000577926636, -0.07534654438495636, -0.13554097712039948, 0.0961468368768692, 0.5011705160140991, 0.7428826689720154, -0.25310996174812317, 0.7329687476158142, -0.5502215623855591, -0.4657784104347229, -0.375864714384079, 0.05860066041350365, 0.6172013878822327, 0.8077495098114014, 0.7518218159675598, -0.9060941338539124, -0.726753830909729, 0.07661646604537964, -0.842275857925415, -0.20395177602767944, -0.2149146944284439, -0.3745656907558441, 0.2386561930179596, 0.3049808144569397, -0.5415151119232178, 0.5764831304550171, 0.24025051295757294, -0.5334433317184448, 0.30027228593826294, -0.2541506290435791, 0.29892101883888245, -1.368468165397644, 0.28464823961257935, 0.2587257921695709, 0.1169847771525383, -0.7274121642112732, -0.06662942469120026, -0.061338286846876144, 0.19045685231685638, -0.1603001356124878, 0.7037918567657471, -0.43789729475975037, 0.14281877875328064, 0.09518278390169144, 0.4813831150531769, -0.029988164082169533, 0.6293920278549194, -0.15004414319992065, 0.4659634828567505, 0.5460996627807617, -0.5933161973953247, 0.3855099380016327, 0.5695676207542419, -0.21550726890563965, 0.6907087564468384, -0.7171478867530823, -0.19399850070476532, -0.036425720900297165, 0.11457931995391846, -0.8032616972923279, -0.17285160720348358, 0.5097202658653259, -0.7198848128318787, 0.38369786739349365, -0.03938162699341774, -0.350124329328537, -0.6286621689796448, -0.689044713973999, -0.02219700813293457, 0.48975446820259094, -0.33954253792762756, 0.40059155225753784, 0.36926135420799255, -0.16049014031887054, -0.7170887589454651, -0.7777749300003052, -0.3899973928928375, -0.37690889835357666, -1.0247299671173096, 0.5251140594482422, -0.16626587510108948, -0.2547857165336609, 0.09762966632843018, -0.03886530175805092, -0.14177536964416504, 0.0419309176504612, 0.38003432750701904, 0.355518639087677, -0.05329044163227081, -0.20351530611515045, -0.05343715474009514, -0.16590727865695953, 0.05190388858318329, 0.0026151614729315042, 0.5677452087402344, -0.10500550270080566, -0.2500768005847931, -0.762678325176239, 0.3248163163661957, 0.5606945157051086, -0.15176045894622803, 0.7110183835029602, 0.7671905159950256, -0.3557576537132263, 0.11105947941541672, -0.4636698067188263, 0.06592152267694473, -0.4514802396297455, 0.45479246973991394, -0.3767704665660858, -0.42476320266723633, 0.8076561093330383, 0.203398659825325, 0.171918123960495, 0.8070118427276611, 0.4249587655067444, -0.19018496572971344, 0.7433651089668274, 0.5156697034835815, -0.06645869463682175, 0.6661891937255859, -0.7616083025932312, 0.13342665135860443, -1.2102073431015015, -0.503143846988678, -0.6272796988487244, -0.46276193857192993, -0.6053139567375183, -0.42100393772125244, 0.4373004734516144, 0.17984162271022797, -0.3104473650455475, 0.5749625563621521, -0.5561057329177856, -0.17512737214565277, 0.39496320486068726, 0.24370257556438446, -0.13605229556560516, -0.022820262238383293, -0.13362377882003784, -0.09214627742767334, -0.3814321458339691, -0.17527741193771362, 1.178347110748291, 0.4142738878726959, 0.6985601186752319, 0.08533925563097, 1.069977879524231, -0.07316242158412933, -0.12993566691875458, -0.38178643584251404, 0.7236335873603821, -0.03230902552604675, -0.2801678478717804, -0.43260687589645386, -0.5752409100532532, -1.2268764972686768, 0.3240608274936676, -0.24605953693389893, -1.0976861715316772, 0.3973991572856903, -0.18548032641410828, -0.5375293493270874, 0.28439071774482727, -0.6149582862854004, 0.8165115714073181, -0.2202550321817398, -0.800313413143158, -0.03226176276803017, -0.5962338447570801, 0.002398556796833873, 0.05770963430404663, 0.40848788619041443, -0.2814564108848572, -0.05933284014463425, 1.1914002895355225, -0.8801808953285217, 0.7234429121017456, -0.33048444986343384, -0.029551880434155464, 0.3427513539791107, -0.2500140964984894, 0.678915798664093, 0.012467024847865105, -0.09724807739257812, -0.00967501848936081, 0.1553826928138733, -0.4143301546573639, -0.4365089535713196, 0.8806700110435486, -0.8525243997573853, -0.31196725368499756, -0.45477861166000366, -0.46006637811660767, 0.06548652797937393, 0.28151842951774597, 0.4665989875793457, 0.3389505445957184, 0.18453723192214966, 0.152048721909523, 0.31909483671188354, -0.42043712735176086, 0.5941712260246277, 0.3293343782424927, -0.11671951413154602, -0.3845614194869995, 0.8411080837249756, 0.37678262591362, 0.13572882115840912, 0.391452819108963, 0.170200377702713, -0.23207347095012665, -0.3230375647544861, -0.2940368950366974, 0.528272271156311, -0.47387224435806274, -0.4229053258895874, -0.7618177533149719, -0.1739056408405304, -0.5928760170936584, -0.2722897231578827, -0.21922293305397034, -0.4989531934261322, -0.264373242855072, 0.010231679305434227, 0.7660132646560669, 0.3913690745830536, -0.3515414595603943, -0.022470932453870773, -0.6059847474098206, 0.2714272141456604, -0.12624035775661469, 0.24617117643356323, 0.02797897718846798, -0.5146635174751282, -0.33498620986938477, 0.24069146811962128, -0.3570023775100708, -0.8205040693283081, 0.8366173505783081, -0.12807047367095947, 0.7134228348731995, 0.16759438812732697, -0.021716084331274033, 0.8487987518310547, -0.034225836396217346, 0.8338324427604675, 0.35857874155044556, -0.8783929347991943, 0.8145440816879272, -0.4753080904483795, 0.10595819354057312, 0.4201439619064331, 0.449963241815567, -0.5813206434249878, -0.15373967587947845, -0.8667356371879578, -1.0269627571105957, 1.0450196266174316, 0.3568924367427826, -0.17436006665229797, 0.24121439456939697, 0.24168473482131958, -0.08047761023044586, 0.15017791092395782, -0.6779661178588867, -0.7072165012359619, -0.27099618315696716, -0.3012363612651825, 0.15909425914287567, -0.08030501008033752, -0.11563693732023239, -0.6434996128082275, 0.8803362250328064, 0.0478631965816021, 0.686606228351593, 0.4755959212779999, 0.0783158615231514, -0.21244435012340546, 0.2850654125213623, 0.5548418760299683, 0.44066932797431946, -0.28769826889038086, -0.3319130539894104, 0.24569933116436005, -0.7021514177322388, -0.1790715903043747, 0.35475394129753113, -0.2889566123485565, -0.031686171889305115, 0.416392982006073, 0.8894271850585938, 0.31501200795173645, -0.28158560395240784, 0.5619789361953735, 0.11579623818397522, -0.34059542417526245, -0.4690859913825989, -0.021720873191952705, -0.06141999736428261, 0.24125616252422333, 0.21548351645469666, -0.02532052993774414, -0.15513037145137787, -0.4287038743495941, 0.09537991136312485, 0.2800891399383545, 0.0021677534095942974, -0.2530156373977661, 0.607296347618103, 0.03313448652625084, 0.14093239605426788, 0.32680752873420715, -0.16980856657028198, -0.6165263652801514, 0.8583521842956543, 0.3796783685684204, 0.8553854823112488, -0.1715344488620758, 0.18554972112178802, 0.9596052765846252, 0.06211680918931961, 0.1878167688846588, 0.5991626977920532, 0.007646938320249319, -0.5380703210830688, -0.14942876994609833, -0.780258297920227, 0.03223865479230881, 0.34964799880981445, -0.8079342246055603, 0.33741074800491333, -0.47643083333969116, -0.23773382604122162, 0.18412503600120544, 0.4661313593387604, -0.7097077369689941, 0.14275802671909332, -0.004745365120470524, 0.6612685918807983, -0.790520191192627, 0.6347681879997253, 0.7967715859413147, -0.7809236645698547, -0.9106445908546448, 0.030233927071094513, 0.09063641726970673, -0.7887742519378662, 0.5878082513809204, -0.11193044483661652, 0.24796733260154724, -0.19279156625270844, -0.4592703580856323, -1.1802555322647095, 1.4426524639129639, -0.11410795152187347, -0.37731999158859253, 0.17353470623493195, 0.05370483174920082, 0.6119256615638733, -0.23958882689476013, 0.4689643979072571, 0.4422953724861145, 0.8327640295028687, -0.014177185483276844, -1.0008467435836792, 0.3991387188434601, -0.8027419447898865, -0.03816134110093117, 0.176677405834198, -1.003266453742981, 1.2824645042419434, -0.18710196018218994, -0.16007143259048462, 0.1822173148393631, 0.6001614928245544, 0.17172157764434814, 0.37364429235458374, 0.30739736557006836, 0.7036216259002686, 0.698481023311615, -0.3473013639450073, 1.1465988159179688, -0.24393975734710693, 0.5558381676673889, 0.6514171361923218, 0.035096425563097, 0.7258880138397217, 0.2777286767959595, -0.6792067885398865, 0.702998161315918, 0.5053485631942749, -0.19492149353027344, 0.46796098351478577, 0.01437013316899538, 0.05071233958005905, -0.0442558228969574, 0.11100213974714279, -0.6480165719985962, 0.12668083608150482, 0.23797908425331116, -0.1983320116996765, -0.06617696583271027, 0.1664121150970459, 0.4750083386898041, 0.10687876492738724, -0.25738775730133057, 0.6599766612052917, 0.1054169088602066, -0.7053822875022888, 0.9291910529136658, -0.010501506738364697, 0.9177019596099854, -0.6982006430625916, 0.20856943726539612, -0.28021490573883057, 0.1935453861951828, -0.6374406218528748, -0.9462507963180542, 0.07837336510419846, 0.13180457055568695, -0.15492697060108185, -0.12290794402360916, 0.4512746334075928, -0.2818031311035156, -0.6643889546394348, 0.40160492062568665, 0.31737715005874634, 0.36009836196899414, 0.3806439936161041, -1.015682578086853, 0.1718929260969162, 0.3325246572494507, -0.5861139297485352, 0.3986661732196808, 0.4827660620212555, 0.04090462625026703, 0.616750180721283, 0.601305365562439, 0.07461632788181305, 0.02869213931262493, -0.03432484716176987, 0.9936796426773071, -0.6025927066802979, -0.5615717768669128, -0.8029637336730957, 0.8370603322982788, -0.319121390581131, -0.41198307275772095, 1.0845586061477661, 0.4772142171859741, 0.7006995677947998, 0.21821506321430206, 0.9094608426094055, -0.6129129528999329, 0.7574580311775208, -0.5076219439506531, 0.6989077925682068, -0.8619439005851746, 0.09735433012247086, -0.7234678268432617, -0.5725717544555664, -0.05892329663038254, 0.8056785464286804, -0.504690945148468, 0.33779725432395935, 0.927417516708374, 0.6543871760368347, 0.2404618263244629, -0.05794057622551918, -0.1078372448682785, 0.5335555076599121, 0.16944822669029236, 0.9798508882522583, 0.3521261215209961, -0.8039933443069458, 0.2331225574016571, -0.8012195825576782, -0.24866800010204315, -0.2820301353931427, -0.558243989944458, -0.8850042819976807, -0.9726008176803589, -0.5165591835975647, -0.5391949415206909, -0.35120153427124023, 0.9367031455039978, 0.4879070520401001, -0.8073349595069885, -0.16457054018974304, 0.01733463443815708, 0.14670391380786896, -0.49921512603759766, -0.2794063091278076, 0.7118426561355591, -0.2978053092956543, -0.9620640277862549, 0.12670210003852844, -0.05028657242655754, 0.1139030009508133, 0.14647020399570465, -0.23620207607746124, -0.32731008529663086, -0.06686386466026306, 0.22161677479743958, 0.3864676058292389, -0.5502446293830872, -0.009314893744885921, 0.016257628798484802, -0.15689928829669952, 0.14878156781196594, 0.2803743779659271, -0.5121015310287476, 0.18190577626228333, 0.7989063262939453, 0.11036393791437149, 0.5954114198684692, -0.028415005654096603, 0.13186988234519958, -0.47595375776290894, 0.25488075613975525, -0.0824725478887558, 0.5926357507705688, 0.17953526973724365, -0.5883927345275879, 0.7559776902198792, 0.3224852681159973, -0.4522973895072937, -0.8657258152961731, -0.1986810863018036, -1.1874291896820068, -0.1799221932888031, 1.2746168375015259, -0.2590058743953705, -0.3921525776386261, 0.23567114770412445, -0.193969264626503, 0.29380929470062256, -0.4525543451309204, 0.47903427481651306, 0.4909534454345703, -0.3176523447036743, 0.06563844531774521, -0.6537092328071594, 0.5037617683410645, 0.4938064515590668, -1.0003386735916138, -0.08473536372184753, 0.21192193031311035, 0.2836103141307831, 0.5321690440177917, 0.7296478748321533, -0.11411435902118683, 0.24143993854522705, -0.029106467962265015, 0.023149337619543076, -0.2580496370792389, 0.1394488513469696, -0.18540404736995697, -0.3027949631214142, -0.5698623657226562, -0.40221285820007324 ]
null
null
null
null
null
null
null
null
null
null
null
null
null
FinGPT/fingpt-sentiment-train
FinGPT
2023-11-20T21:45:14Z
438
3
null
[ "region:us" ]
2023-11-20T21:45:14Z
2023-10-10T06:26:21.000Z
2023-10-10T06:26:21
--- dataset_info: features: - name: input dtype: string - name: output dtype: string - name: instruction dtype: string splits: - name: train num_bytes: 18860715 num_examples: 76772 download_size: 6417302 dataset_size: 18860715 configs: - config_name: default data_files: - split: train path: data/train-* --- # Dataset Card for "fingpt-sentiment-train" [More Information needed](https://github.com/huggingface/datasets/blob/main/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
[ -0.8622347116470337, -0.1267106831073761, 0.13461193442344666, 0.3868938088417053, -0.33949950337409973, -0.05890699476003647, 0.058798812329769135, -0.018278371542692184, 0.7435990571975708, 0.3525632619857788, -0.9639065265655518, -0.6505254507064819, -0.6735471487045288, -0.40047991275787354, -0.06225759536027908, 1.7952661514282227, 0.049837373197078705, 0.4395463466644287, -0.34030893445014954, -0.08060024678707123, -0.40509769320487976, -0.6705173254013062, -0.960208535194397, -0.6704354286193848, 0.8816529512405396, 0.57757967710495, 0.16245785355567932, 0.17705315351486206, 1.0193908214569092, 0.08470892906188965, 0.19789361953735352, -0.5791049599647522, -0.4104212522506714, -0.21706295013427734, -0.24396345019340515, -0.486774742603302, -1.1532288789749146, 0.20335108041763306, 0.5231788158416748, 0.5170383453369141, -0.09409956634044647, 0.6795050501823425, -0.190549835562706, 0.8494035005569458, -0.233401358127594, 0.7159734964370728, -0.06002102792263031, 0.09452054649591446, -0.479716420173645, -0.06881004571914673, 0.24639156460762024, -0.4892157316207886, 0.04050126671791077, -0.805023193359375, 0.2426680624485016, 0.02950136363506317, 0.7906699776649475, 0.33592915534973145, 0.002601146697998047, -0.16917908191680908, -0.2992514967918396, 0.17820492386817932, -0.370861679315567, 0.25454840064048767, 0.47091543674468994, 0.39892005920410156, 0.27884021401405334, -0.5017312169075012, -0.3620907664299011, 0.04425258934497833, -0.057117387652397156, 0.5729219913482666, 0.3517528772354126, 0.2157856523990631, 0.5575486421585083, 0.8964364528656006, -0.37862521409988403, -0.4549184739589691, -0.47831159830093384, -0.3160759508609772, 0.6469577550888062, 0.07434523850679398, 0.1767285168170929, -0.14839664101600647, -0.4286125898361206, -0.4538682997226715, -0.33088046312332153, 0.09290963411331177, 0.5363084673881531, 0.4369230568408966, -0.9113035202026367, 0.5471838116645813, -0.03362370282411575, 0.4054316282272339, 0.029273446649312973, 0.6337853074073792, 0.8461523056030273, -0.17192116379737854, -0.22809061408042908, 0.15007328987121582, 0.6397377848625183, 0.5666431188583374, 0.28263598680496216, 0.2750687003135681, -0.43298396468162537, 0.14995130896568298, 0.0891985297203064, -1.0021278858184814, -0.8440228700637817, 0.2381657212972641, -0.4954532980918884, -0.5353790521621704, 0.4698711037635803, -1.1011910438537598, -0.4546479284763336, -0.26985928416252136, 0.2423226684331894, -0.04404536262154579, -0.982076108455658, -0.03690851479768753, -0.9353981018066406, 0.5369924306869507, 0.04689325392246246, -0.9094640016555786, 0.3602202236652374, 0.8600483536720276, 0.6585265398025513, 0.2854822278022766, -0.2945477366447449, -0.6224864721298218, -0.27428382635116577, -0.07735385000705719, 1.0022838115692139, -0.46084827184677124, -0.33518922328948975, -0.10605935007333755, 0.19732506573200226, 0.0034625884145498276, -0.057452838867902756, 1.0207898616790771, -0.2974037528038025, 0.19407717883586884, -0.9512789845466614, -0.5487464070320129, -0.08620566129684448, 0.5920745134353638, -0.791353166103363, 1.1493803262710571, 0.4852217435836792, -0.9039247632026672, 0.48101305961608887, -1.4958268404006958, -0.3275907635688782, 0.3751096725463867, 0.022325197234749794, -0.39329010248184204, 0.23214209079742432, -0.10420176386833191, 0.6183469891548157, -0.06960755586624146, 0.4307504892349243, -0.7543249130249023, -0.21085023880004883, 0.08526602387428284, 0.03656388819217682, 0.8436089754104614, 0.23696953058242798, 0.15430836379528046, -0.08407559990882874, -0.8664413690567017, -0.302347868680954, 0.0793059766292572, -0.11000211536884308, -0.42533165216445923, -0.5192910432815552, 0.5585743188858032, 0.060743942856788635, 0.48383209109306335, -0.7156111001968384, 0.44770652055740356, -0.06777754426002502, -0.012153364717960358, 0.7630304098129272, 0.16761407256126404, 0.30733585357666016, -0.35679441690444946, 0.6226491928100586, -0.017942311242222786, 0.4062831699848175, 0.17667505145072937, -0.25510507822036743, -0.8875077366828918, 0.08416660875082016, 0.5454766750335693, 0.8098983764648438, -0.6380630731582642, 0.516039252281189, -0.1117231547832489, -0.6256176233291626, -0.23220069706439972, -0.06709352135658264, 0.21363264322280884, 0.3749845325946808, 0.2677665948867798, -0.6917073726654053, -0.6449836492538452, -0.6518597602844238, 0.17496749758720398, -0.4042765498161316, 0.14641515910625458, 0.21817266941070557, 0.935466468334198, -0.32634735107421875, 0.6606279611587524, -0.7496495246887207, -0.29234111309051514, 0.15775424242019653, -0.015341334044933319, 0.30384495854377747, 0.7389182448387146, 0.9060184359550476, -0.7973124980926514, -0.26141318678855896, -0.5015308856964111, -0.5159270167350769, -0.12108361721038818, 0.17956872284412384, -0.6418187618255615, -0.3687385320663452, 0.14328032732009888, -0.34916993975639343, 0.19597148895263672, 0.7445381879806519, -0.561078667640686, 0.10208010673522949, 0.45651155710220337, 0.209785595536232, -1.3110246658325195, 0.39870119094848633, 0.19119000434875488, -0.12129729241132736, -0.4222587049007416, -0.12977197766304016, -0.15273183584213257, -0.16154900193214417, -0.0064112162217497826, 0.40404072403907776, -0.024170929566025734, -0.11556540429592133, -0.0745779275894165, -0.003942091017961502, -0.15978053212165833, 0.5248544812202454, 0.3708914518356323, 0.6630173921585083, 1.0039210319519043, -0.2652321755886078, 0.9437836408615112, 0.6333553791046143, 0.19451184570789337, 1.1236276626586914, -0.6767736077308655, 0.03676648065447807, -0.13812655210494995, 0.2576233148574829, -0.8806419372558594, -0.7382232546806335, 0.8117564916610718, -0.5538963079452515, 0.34437960386276245, -0.6536919474601746, -0.4408566355705261, -0.5453652143478394, -0.5752850770950317, 0.4609067440032959, 0.48281699419021606, -0.5845760107040405, 0.13032279908657074, 0.6513280868530273, -0.2093004286289215, -0.42146170139312744, -1.0262556076049805, 0.07888887077569962, -0.28842252492904663, -0.05745915696024895, 0.12301618605852127, -0.3521047830581665, 0.15256136655807495, -0.19231081008911133, 0.39050552248954773, 0.029424794018268585, -0.1815832108259201, 0.5339180827140808, 0.17278942465782166, -0.29519593715667725, 0.6895445585250854, 0.053991518914699554, -0.6931842565536499, 0.48718830943107605, -0.21253332495689392, 0.5606110095977783, -0.4173066020011902, -0.1179790124297142, -0.19379471242427826, 0.2779753506183624, 0.2597999572753906, -0.2176269143819809, 0.44106441736221313, 1.3370494842529297, -0.45468392968177795, -0.05706476420164108, -0.3515549302101135, -0.2313464879989624, -0.4398120641708374, 0.002771195024251938, -0.08599258959293365, -0.7896040678024292, 0.4707845449447632, -0.2786831259727478, -0.04521912336349487, 0.7796738743782043, 0.6142392754554749, -0.06466497480869293, 0.49937203526496887, 0.7112217545509338, -0.5059124827384949, 0.6236213445663452, -0.30781441926956177, -0.23214253783226013, -0.8412899374961853, -0.20376235246658325, -0.35388433933258057, -0.25848105549812317, -0.7601661682128906, 0.011828633025288582, -0.02701891027390957, -0.02510337345302105, -0.42153915762901306, 0.36796727776527405, -0.7124983072280884, 0.1405821442604065, 0.6265015006065369, 0.055628273636102676, -0.16647762060165405, -0.0039512282237410545, 0.19720962643623352, 0.33397144079208374, -0.669563353061676, -0.26541832089424133, 1.0546514987945557, 0.5607806444168091, 0.7622950077056885, -0.055807262659072876, 0.9736928939819336, 0.326935350894928, 0.5685792565345764, -0.6298905611038208, 0.38332509994506836, -0.05688224360346794, -0.7063255310058594, -0.09022331237792969, -0.2823599576950073, -0.4584941267967224, -0.5627530217170715, -0.2972841262817383, 0.04633480682969093, 0.29540568590164185, 0.41854768991470337, -0.18441557884216309, 0.3259490132331848, -0.6078559160232544, 1.0675938129425049, -0.106651172041893, -0.036232538521289825, 0.04850607365369797, -0.6910095810890198, 0.1875636875629425, 0.14815881848335266, 0.04304151609539986, -0.2938341200351715, -0.04610064625740051, 1.0667787790298462, -0.4620269238948822, 1.212703824043274, -0.898845911026001, -0.13241693377494812, 0.24834667146205902, -0.48700493574142456, 0.15569362044334412, 0.4277964234352112, -0.1367311030626297, 0.07185167074203491, -0.041951313614845276, -0.4813481569290161, -0.22429834306240082, 0.6838637590408325, -0.7505959272384644, 0.31007683277130127, -0.4977227747440338, -0.36692631244659424, -0.22620144486427307, 0.2561698853969574, 0.35325390100479126, 0.6723031401634216, -0.5693708062171936, -0.2415914237499237, 0.80652916431427, 0.24115777015686035, 0.31302016973495483, -0.10678953677415848, -0.2717631161212921, -0.6052558422088623, 1.2028969526290894, -0.06362208724021912, -0.25453320145606995, 0.41119593381881714, 0.3851820230484009, -0.3124513626098633, -0.34347182512283325, -0.5921981930732727, 0.17227894067764282, -0.6112985610961914, -0.5322016477584839, -0.29865971207618713, -0.30174046754837036, -0.3959980607032776, -0.04714265093207359, -0.3724150061607361, -0.652394711971283, -0.44625699520111084, -0.6682703495025635, 1.3286032676696777, 0.6095616817474365, -0.7324358224868774, 0.8288615942001343, -0.8141424655914307, 0.21975530683994293, 0.24923980236053467, 1.2149465084075928, -0.30729806423187256, -0.2436787188053131, -0.4218948483467102, -0.027637507766485214, 0.18352656066417694, -0.3757513165473938, -0.04168294370174408, 0.19199684262275696, 0.3859143853187561, 0.31372499465942383, -0.029644029214978218, 0.46301281452178955, 0.1398589164018631, 0.7888180017471313, 0.32500380277633667, -0.6954188346862793, 0.7037215232849121, -0.5848919749259949, 0.13917668163776398, 1.02924644947052, 0.49785327911376953, -0.583325207233429, 0.05050567910075188, -0.8339539766311646, -0.5567992925643921, 0.46169382333755493, -0.07900366187095642, 0.2659795880317688, 0.17135187983512878, 0.6353793144226074, 0.11118073016405106, 0.5235369205474854, -0.8889824151992798, -0.6081433892250061, -0.5904213190078735, -0.5457841157913208, -0.006776980124413967, -0.3707512617111206, -0.23747193813323975, -0.43066665530204773, 0.8363381624221802, -0.07644503563642502, 0.6238874197006226, 0.06279689073562622, 0.347367525100708, -0.16016943752765656, 0.03997611254453659, 0.3756530284881592, 0.20470030605793, -0.6323750019073486, -0.014477366581559181, -0.0034793000668287277, -0.6905282735824585, -0.24975982308387756, 0.4691861867904663, 0.015453718602657318, -0.21331703662872314, 0.5568910837173462, 0.9769527912139893, -0.45541319251060486, -0.06158208101987839, 0.5510721206665039, -0.21255727112293243, -0.3616461157798767, -0.7281068563461304, 0.26430508494377136, 0.05812150239944458, 0.2164844423532486, 0.015832647681236267, 0.23500609397888184, 0.339743971824646, -0.34156370162963867, 0.4617955982685089, 0.08222510665655136, -1.1096949577331543, -0.4474726915359497, 0.4365575909614563, 0.5472520589828491, -0.16863061487674713, 0.8352154493331909, -0.22032083570957184, -0.7943563461303711, 0.4444638788700104, 0.0386100709438324, 0.8367475271224976, -0.2701047658920288, 0.5010157823562622, 0.5057896375656128, 0.1765623837709427, -0.15595242381095886, 0.8212294578552246, -0.3193172812461853, -0.8037776947021484, -0.15458381175994873, -0.436908483505249, -0.40320509672164917, -0.22113138437271118, -1.1951417922973633, 0.18731854856014252, -0.7708740234375, -0.6174211502075195, -0.1673521250486374, 0.3030923008918762, -0.7550042271614075, 0.3963630795478821, 0.2939733862876892, 1.18979811668396, -1.104964256286621, 0.7849125862121582, 0.89534592628479, -0.5213510394096375, -0.6371618509292603, -0.1623888909816742, -0.1804441213607788, -0.7683010101318359, 0.07327105104923248, 0.1241341382265091, 0.002726268023252487, 0.006705486215651035, -0.9996494054794312, -0.29694992303848267, 1.134572148323059, 0.04099132493138313, -0.6027792096138, 0.3838435411453247, -0.05786282196640968, 0.5706657767295837, -0.33649903535842896, 0.16319924592971802, 0.661028265953064, 0.8446999192237854, 0.08470207452774048, -0.49067193269729614, -0.0763218104839325, -0.7462176084518433, -0.39175906777381897, 0.43146970868110657, -1.0634926557540894, 0.46758589148521423, 0.17269450426101685, 0.23510679602622986, -0.38059401512145996, 0.5460017919540405, -0.018226392567157745, 0.4744209051132202, 0.5475539565086365, 0.8093992471694946, 0.8355220556259155, -0.436362087726593, 0.9548029899597168, -0.11166416108608246, 0.6621809005737305, 1.07163405418396, 0.006679539568722248, 0.38994771242141724, 0.557754635810852, -0.06968150287866592, 0.34892135858535767, 0.7984907627105713, -0.7033097743988037, 0.5407548546791077, 0.2756454646587372, -0.2958199679851532, -0.3526676893234253, -0.18016575276851654, -0.7304346561431885, 0.10465231537818909, 0.46628352999687195, -0.47202301025390625, 0.09555145353078842, 0.030105847865343094, 0.16958343982696533, -0.4093412160873413, -0.6686164140701294, 0.7733062505722046, 0.2230553925037384, -0.2946666181087494, -0.11610745638608932, -0.14439556002616882, 0.6364211440086365, -0.7190060019493103, -0.22140227258205414, -0.22707752883434296, 0.02202802710235119, -0.4715774655342102, -1.2203059196472168, 0.5648160576820374, -0.17411544919013977, -0.13573887944221497, -0.1940196454524994, 0.7407047748565674, -0.442534863948822, -0.8811914920806885, 0.3191539943218231, 0.34912508726119995, 0.20711416006088257, 0.03257104009389877, -1.2979656457901, 0.062147486954927444, -0.09631231427192688, -0.3885500729084015, 0.10055185854434967, 0.33947110176086426, 0.23293417692184448, 0.5112980008125305, 0.5852614641189575, 0.16532956063747406, -0.5486209392547607, 0.5126854181289673, 1.0041658878326416, -0.6792266964912415, -0.46879732608795166, -0.7601012587547302, 0.48352938890457153, -0.3752920627593994, -0.618941068649292, 0.5339320302009583, 0.8817588686943054, 1.0192747116088867, -0.25488585233688354, 1.0930814743041992, -0.3652923107147217, 0.489962100982666, -0.39633965492248535, 0.7099417448043823, -0.2728039026260376, -0.237672358751297, -0.4486919045448303, -0.6656819581985474, -0.7189258933067322, 0.8273319005966187, -0.08592189848423004, 0.05545174703001976, 0.3974059820175171, 0.8150644302368164, -0.22704407572746277, 0.3177333474159241, -0.24710866808891296, -0.027919951826334, 0.12645310163497925, 0.48220643401145935, 0.5936154127120972, -0.6065069437026978, 0.15072858333587646, -0.25777775049209595, -0.5180994272232056, 0.10722818970680237, -1.079953908920288, -1.0958993434906006, -0.6607456207275391, -0.6962828636169434, -0.4085199236869812, -0.10997215658426285, 1.1372555494308472, 0.686042308807373, -0.9212490320205688, -0.3426584303379059, -0.1371150016784668, 0.11324770748615265, 0.010772643610835075, -0.16960230469703674, 0.701119065284729, 0.05426931753754616, -0.43589410185813904, -0.4887555241584778, -0.029168803244829178, 0.3667981028556824, -0.22367897629737854, 0.059183310717344284, 0.09572335332632065, -0.19683659076690674, 0.4210977256298065, 0.2158123254776001, 0.19162054359912872, -0.371979296207428, -0.5069002509117126, 0.029037129133939743, 0.22241073846817017, 1.0675325393676758, -0.42993587255477905, -0.06017761677503586, 0.614523708820343, 0.2881220579147339, 0.604345977306366, 0.11477074027061462, 0.6170628070831299, -0.682884693145752, 0.1099833995103836, -0.08588828146457672, 0.39091604948043823, 0.377084881067276, -0.4952203035354614, 0.9593565464019775, 0.5393020510673523, -0.41573527455329895, -0.49198025465011597, 0.011001142673194408, -1.4720277786254883, 0.5023613572120667, 0.829521656036377, 0.0578710213303566, -0.3985289931297302, 0.029683010652661324, -0.4478357434272766, 0.3734496533870697, -1.0152106285095215, 0.2959694266319275, 0.7166215181350708, 0.08517909049987793, -0.3015344738960266, -0.36125993728637695, 0.8915178775787354, -0.43615397810935974, -1.0379416942596436, 0.21630966663360596, 0.4008430242538452, 0.27363941073417664, 0.12095785140991211, 0.9738441705703735, -0.14296090602874756, 0.09664832055568695, 0.3832554817199707, 0.5242981910705566, -0.3270522952079773, -0.3770389258861542, -0.3830253481864929, 0.03739223629236221, -0.053085826337337494, -0.4512516260147095 ]
null
null
null
null
null
null
null
null
null
null
null
null
null