sha
stringlengths
40
40
text
stringlengths
1
13.4M
id
stringlengths
2
117
tags
listlengths
1
7.91k
created_at
stringlengths
25
25
metadata
stringlengths
2
875k
last_modified
stringlengths
25
25
arxiv
listlengths
0
25
languages
listlengths
0
7.91k
tags_str
stringlengths
17
159k
text_str
stringlengths
1
447k
text_lists
listlengths
0
352
processed_texts
listlengths
1
353
tokens_length
listlengths
1
353
input_texts
listlengths
1
40
embeddings
listlengths
768
768
4a3a9ec81cd41dd081478e6a29bc2b663069792b
# Dataset Card for PlotQA ## Dataset Description - **PlotQA from here:** [PlotQA](https://github.com/NiteshMethani/PlotQA) ### Dataset Summary PlotQA is a VQA dataset with 28.9 million question-answer pairs grounded over 224,377 plots on data from real-world sources and questions based on crowd-sourced question templates. ## Dataset Structure ### 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. - `image`: PIL image of a plot - `text`: string of json data 'models'. See notes below. From [here](https://github.com/NiteshMethani/PlotQA/blob/master/PlotQA_Dataset.md): 'models': It is a list of dictionaries. Depending on the type of the plot (single or 2,3,4-multi), the length of the dictionary can vary from 1 to 4. Each dictionary contains the following keys- name: Label corresponding to the datapoint. color: Color corresponding to the `name` datapoint. bboxes: Bounding boxes corresponding to the `name` datapoints in the plot. label: label corresponding to the datapoint which will appear as the legend (same as the `name` field). x: x-value of the datapoints. y: y-value of the datapoints. [json2token](https://github.com/clovaai/donut/blob/b317b4bbf1eecec7c62e7666f2097e1e90a6b441/donut/model.py#L495) function was used to convert json to string. The new tokens are already loaded in plotQA processor: ``` from transformers import DonutProcessor processor = DonutProcessor.from_pretrained("[achang/donut-plotqa-trained](https://huggingface.co/achang/donut-plotqa-trained)") ``` ### Data Splits ``` validation: Dataset({ features: ['image', 'text'], num_rows: 33650 }) train: Dataset({ features: ['image', 'text'], num_rows: 157070 }) test: Dataset({ features: ['image', 'text'], num_rows: 33657 }) ``` ## Misc Dataset Creation, Annotations, Considerations for Using the Data, Social Impact of Dataset, Additional Information, Licensing Information look at [plotQA](https://github.com/NiteshMethani/PlotQA) ### Citation Information Please cite the following if you use the PlotQA dataset in your work: ``` @InProceedings{Methani_2020_WACV, author = {Methani, Nitesh and Ganguly, Pritha and Khapra, Mitesh M. and Kumar, Pratyush}, title = {PlotQA: Reasoning over Scientific Plots}, booktitle = {The IEEE Winter Conference on Applications of Computer Vision (WACV)}, month = {March}, year = {2020} } ```
achang/plot_qa
[ "task_categories:visual-question-answering", "language:en", "license:cc", "plotQA", "region:us" ]
2023-02-06T18:51:17+00:00
{"language": ["en"], "license": "cc", "task_categories": ["visual-question-answering"], "pretty_name": "PlotQA", "tags": ["plotQA"]}
2023-02-12T01:20:56+00:00
[]
[ "en" ]
TAGS #task_categories-visual-question-answering #language-English #license-cc #plotQA #region-us
# Dataset Card for PlotQA ## Dataset Description - PlotQA from here: PlotQA ### Dataset Summary PlotQA is a VQA dataset with 28.9 million question-answer pairs grounded over 224,377 plots on data from real-world sources and questions based on crowd-sourced question templates. ## Dataset Structure ### 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. - 'image': PIL image of a plot - 'text': string of json data 'models'. See notes below. From here: 'models': It is a list of dictionaries. Depending on the type of the plot (single or 2,3,4-multi), the length of the dictionary can vary from 1 to 4. Each dictionary contains the following keys- name: Label corresponding to the datapoint. color: Color corresponding to the 'name' datapoint. bboxes: Bounding boxes corresponding to the 'name' datapoints in the plot. label: label corresponding to the datapoint which will appear as the legend (same as the 'name' field). x: x-value of the datapoints. y: y-value of the datapoints. json2token function was used to convert json to string. The new tokens are already loaded in plotQA processor: ### Data Splits ## Misc Dataset Creation, Annotations, Considerations for Using the Data, Social Impact of Dataset, Additional Information, Licensing Information look at plotQA Please cite the following if you use the PlotQA dataset in your work:
[ "# Dataset Card for PlotQA", "## Dataset Description\n\n- PlotQA from here: PlotQA", "### Dataset Summary\n\nPlotQA is a VQA dataset with 28.9 million question-answer pairs grounded over 224,377 plots on data from real-world sources and questions based on crowd-sourced question templates.", "## Dataset Structure", "### Data Fields\n\nList 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.\n\n- 'image': PIL image of a plot\n- 'text': string of json data 'models'. See notes below.\n\nFrom here:\n'models': It is a list of dictionaries. Depending on the type of the plot (single or 2,3,4-multi), the length of the dictionary can vary from 1 to 4. Each dictionary contains the following keys-\n\t\tname: Label corresponding to the datapoint.\n\t\tcolor: Color corresponding to the 'name' datapoint.\n\t\tbboxes: Bounding boxes corresponding to the 'name' datapoints in the plot.\n\t\tlabel: label corresponding to the datapoint which will appear as the legend (same as the 'name' field).\n\t\tx: x-value of the datapoints.\n\t\ty: y-value of the datapoints.\n\n\njson2token function was used to convert json to string. \n\nThe new tokens are already loaded in plotQA processor:", "### Data Splits", "## Misc\n\nDataset Creation, Annotations, Considerations for Using the Data, Social Impact of Dataset, Additional Information, Licensing Information look at plotQA\n\n\n\n\nPlease cite the following if you use the PlotQA dataset in your work:" ]
[ "TAGS\n#task_categories-visual-question-answering #language-English #license-cc #plotQA #region-us \n", "# Dataset Card for PlotQA", "## Dataset Description\n\n- PlotQA from here: PlotQA", "### Dataset Summary\n\nPlotQA is a VQA dataset with 28.9 million question-answer pairs grounded over 224,377 plots on data from real-world sources and questions based on crowd-sourced question templates.", "## Dataset Structure", "### Data Fields\n\nList 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.\n\n- 'image': PIL image of a plot\n- 'text': string of json data 'models'. See notes below.\n\nFrom here:\n'models': It is a list of dictionaries. Depending on the type of the plot (single or 2,3,4-multi), the length of the dictionary can vary from 1 to 4. Each dictionary contains the following keys-\n\t\tname: Label corresponding to the datapoint.\n\t\tcolor: Color corresponding to the 'name' datapoint.\n\t\tbboxes: Bounding boxes corresponding to the 'name' datapoints in the plot.\n\t\tlabel: label corresponding to the datapoint which will appear as the legend (same as the 'name' field).\n\t\tx: x-value of the datapoints.\n\t\ty: y-value of the datapoints.\n\n\njson2token function was used to convert json to string. \n\nThe new tokens are already loaded in plotQA processor:", "### Data Splits", "## Misc\n\nDataset Creation, Annotations, Considerations for Using the Data, Social Impact of Dataset, Additional Information, Licensing Information look at plotQA\n\n\n\n\nPlease cite the following if you use the PlotQA dataset in your work:" ]
[ 33, 7, 12, 51, 6, 332, 5, 55 ]
[ "passage: TAGS\n#task_categories-visual-question-answering #language-English #license-cc #plotQA #region-us \n# Dataset Card for PlotQA## Dataset Description\n\n- PlotQA from here: PlotQA### Dataset Summary\n\nPlotQA is a VQA dataset with 28.9 million question-answer pairs grounded over 224,377 plots on data from real-world sources and questions based on crowd-sourced question templates.## Dataset Structure### Data Fields\n\nList 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.\n\n- 'image': PIL image of a plot\n- 'text': string of json data 'models'. See notes below.\n\nFrom here:\n'models': It is a list of dictionaries. Depending on the type of the plot (single or 2,3,4-multi), the length of the dictionary can vary from 1 to 4. Each dictionary contains the following keys-\n\t\tname: Label corresponding to the datapoint.\n\t\tcolor: Color corresponding to the 'name' datapoint.\n\t\tbboxes: Bounding boxes corresponding to the 'name' datapoints in the plot.\n\t\tlabel: label corresponding to the datapoint which will appear as the legend (same as the 'name' field).\n\t\tx: x-value of the datapoints.\n\t\ty: y-value of the datapoints.\n\n\njson2token function was used to convert json to string. \n\nThe new tokens are already loaded in plotQA processor:### Data Splits## Misc\n\nDataset Creation, Annotations, Considerations for Using the Data, Social Impact of Dataset, Additional Information, Licensing Information look at plotQA\n\n\n\n\nPlease cite the following if you use the PlotQA dataset in your work:" ]
[ -0.06884584575891495, 0.1653934270143509, -0.0075157638639211655, 0.07115182280540466, 0.04527188464999199, 0.011854995042085648, 0.07588699460029602, 0.0597049817442894, 0.008360241539776325, 0.0762544721364975, -0.07111246138811111, 0.03018483705818653, 0.11974755674600601, 0.10375286638736725, 0.051351480185985565, -0.15631161630153656, 0.0005038898671045899, -0.06866225600242615, 0.05659588426351547, 0.07361661642789841, 0.048952870070934296, -0.0786077007651329, 0.09526687115430832, 0.027937766164541245, -0.03504795581102371, -0.025539681315422058, 0.025225937366485596, -0.05021476373076439, 0.10166046023368835, 0.11210588365793228, 0.09153605252504349, 0.01655792072415352, 0.06591528654098511, -0.16221168637275696, 0.024153051897883415, 0.07445726543664932, 0.007615253794938326, 0.02045026607811451, 0.13964946568012238, -0.024918675422668457, -0.007485829293727875, -0.041645925492048264, 0.07657098770141602, 0.03168255090713501, -0.09655270725488663, -0.13202595710754395, -0.12385115027427673, -0.0592619851231575, 0.06492871791124344, 0.02893477864563465, -0.013227409683167934, 0.01900446228682995, -0.045915842056274414, 0.042842671275138855, 0.05880459025502205, -0.1525726020336151, 0.0045167324133217335, 0.027495408430695534, -0.015231248922646046, 0.1334896981716156, -0.12471695244312286, -0.01882789097726345, -0.036427490413188934, 0.029578445479273796, 0.06437954306602478, -0.0508573055267334, 0.05983411520719528, 0.044006627053022385, -0.06754462420940399, -0.04338342696428299, 0.23359094560146332, -0.017778651788830757, -0.0791894942522049, -0.10520714521408081, 0.026759406551718712, 0.16356196999549866, 0.02007216028869152, -0.010159005410969257, 0.017623309046030045, 0.0044128852896392345, 0.02318532206118107, -0.021745631471276283, -0.13805252313613892, 0.02083713561296463, -0.08818427473306656, -0.0773099958896637, -0.030466917902231216, 0.0689496174454689, -0.04754241928458214, 0.057135604321956635, 0.03135223314166069, -0.04054877907037735, -0.021728677675127983, -0.08934710174798965, -0.1122460886836052, -0.03174804151058197, -0.016509689390659332, -0.07139303535223007, -0.012496580369770527, -0.015324655920267105, 0.0632362961769104, 0.025526123121380806, -0.10783274471759796, -0.030088284984230995, 0.16159413754940033, 0.09733519703149796, -0.014390083029866219, -0.11689966917037964, 0.000998020637780428, -0.026133179664611816, 0.00009644810779718682, -0.03581281751394272, -0.007781492546200752, 0.021200088784098625, -0.04121588543057442, 0.053752437233924866, 0.07185371220111847, 0.0019035740988329053, -0.08655469864606857, -0.03009425662457943, 0.16129730641841888, -0.11714277416467667, 0.019525354728102684, 0.03467532992362976, -0.02637242153286934, 0.08459772914648056, 0.01775023154914379, -0.008339435793459415, -0.0421554259955883, 0.05176154896616936, -0.052173372358083725, -0.020208271220326424, -0.07415539026260376, -0.10789329558610916, 0.050646208226680756, 0.06929336488246918, -0.0787549763917923, -0.06340979039669037, -0.15232649445533752, -0.04070046916604042, -0.025226633995771408, -0.016976043581962585, 0.008241741918027401, 0.04570259526371956, 0.03563004359602928, -0.008097461424767971, 0.003412054618820548, -0.03698215261101723, -0.04429982975125313, 0.029880059882998466, -0.06708864122629166, 0.046504221856594086, 0.059126805514097214, 0.023236015811562538, -0.048821356147527695, 0.0022230695467442274, -0.15671682357788086, 0.12077566236257553, -0.06710606813430786, -0.05756203457713127, -0.037563640624284744, 0.0052384501323103905, 0.06972070038318634, 0.012245952151715755, -0.043486952781677246, 0.09099359065294266, -0.24799607694149017, -0.0031633111648261547, 0.09325709193944931, -0.10479183495044708, 0.014849554747343063, 0.05729648470878601, -0.0619300939142704, -0.015196476131677628, 0.14768408238887787, 0.10579853504896164, 0.10821142047643661, -0.07311169058084488, -0.07052665203809738, -0.029129931703209877, -0.05441049486398697, 0.10686036199331284, 0.1014348566532135, -0.030502770096063614, 0.10243616253137589, 0.04567374661564827, -0.007599706761538982, -0.050997983664274216, 0.016223616898059845, -0.029421286657452583, 0.008699887432157993, -0.005533362738788128, -0.0037912409752607346, -0.05950292572379112, -0.09980018436908722, 0.05478466674685478, 0.02391471527516842, 0.0319862924516201, 0.04347672313451767, -0.01010191347450018, 0.005863047204911709, -0.04999374970793724, 0.00003782911880989559, -0.07407880574464798, -0.02679409831762314, -0.1683976650238037, -0.18241356313228607, 0.03087586537003517, -0.06164495274424553, 0.037402115762233734, 0.08502545952796936, -0.017676450312137604, 0.03312307596206665, 0.0034874482080340385, 0.05676115304231644, -0.024879077449440956, -0.028454558923840523, -0.01773368939757347, -0.09698396176099777, -0.04833739995956421, -0.05134740471839905, 0.03232496604323387, -0.05376226454973221, -0.006779112387448549, 0.0970233678817749, 0.07866942137479782, 0.07051683217287064, -0.060364801436662674, 0.051261164247989655, -0.00678599625825882, -0.011163885705173016, -0.021869082003831863, -0.030304405838251114, -0.005167708266526461, 0.04859015718102455, 0.04716376215219498, -0.09363329410552979, 0.021044688299298286, 0.03902571648359299, 0.11709626019001007, -0.012677122838795185, -0.045983098447322845, -0.021019598469138145, -0.000655788229778409, -0.15860947966575623, -0.0649186223745346, 0.07227715104818344, 0.10387168079614639, 0.0161274541169405, -0.08444245904684067, 0.008219929412007332, -0.009178737178444862, -0.00782790407538414, -0.033832848072052, -0.01004655472934246, -0.009860250167548656, -0.01850212551653385, 0.07405048608779907, -0.03551684319972992, 0.14185579121112823, 0.14874358475208282, 0.0315263532102108, -0.07005544006824493, -0.07575275748968124, -0.037512362003326416, -0.012284372933208942, 0.11876258254051208, 0.04382513090968132, 0.0005924118449911475, 0.06680421531200409, 0.026041820645332336, -0.026441683992743492, -0.06091970205307007, 0.010233824141323566, 0.014637068845331669, -0.040162499994039536, -0.10340777784585953, -0.04134666174650192, 0.037636514753103256, 0.10734858363866806, 0.02232419326901436, 0.1776105910539627, -0.04712289199233055, -0.05220755189657211, -0.11851795762777328, 0.11515402048826218, -0.1498730331659317, -0.31869766116142273, -0.12738114595413208, -0.06260388344526291, -0.0794897973537445, -0.007300875149667263, 0.007806548848748207, -0.013502322137355804, -0.05455229431390762, -0.0558762289583683, 0.06917241960763931, 0.018996000289916992, -0.0739910900592804, -0.09111235290765762, 0.020942408591508865, -0.0451350174844265, -0.12002119421958923, 0.0289005134254694, 0.03193400055170059, 0.012093055993318558, -0.0061253574676811695, 0.03407633677124977, 0.0916333943605423, 0.05763775482773781, 0.07194502651691437, -0.05852978304028511, -0.04366322234272957, 0.1537959724664688, -0.055145807564258575, 0.15988290309906006, 0.12313395738601685, -0.0074548968113958836, 0.08722933381795883, 0.11322884261608124, 0.02523878403007984, -0.006714752875268459, 0.007247659377753735, 0.07439851760864258, -0.03576308861374855, -0.19413606822490692, -0.04940342530608177, -0.0521373376250267, 0.012989378534257412, -0.01837698370218277, -0.0009579624747857451, -0.0562114454805851, 0.020350825041532516, -0.010749935172498226, -0.02462565153837204, 0.04060358554124832, 0.057004380971193314, 0.12379458546638489, -0.017261553555727005, 0.10590232908725739, -0.07279260456562042, 0.03793836012482643, 0.15466567873954773, 0.12723751366138458, 0.17310699820518494, -0.08318581432104111, 0.04214422404766083, 0.07100345939397812, 0.1433333456516266, 0.02340076118707657, 0.02018076926469803, 0.03334316238760948, 0.06271347403526306, -0.05676515772938728, -0.05060534551739693, -0.06370355933904648, 0.04357728734612465, 0.09715565294027328, -0.08472636342048645, 0.04008916765451431, -0.06497883051633835, 0.031029939651489258, 0.10081673413515091, 0.008287306874990463, -0.1036594808101654, -0.04518711194396019, 0.06997039914131165, -0.022964172065258026, -0.08596640080213547, 0.008019770495593548, 0.11182639002799988, -0.17761994898319244, 0.06777603924274445, -0.025108525529503822, 0.06696225702762604, -0.12115732580423355, -0.04267071187496185, -0.045614730566740036, 0.008192325010895729, -0.04943196848034859, 0.0691811740398407, -0.11753056198358536, 0.010574482381343842, 0.02975727990269661, 0.013757743872702122, -0.07116680592298508, 0.0362328477203846, 0.0077740042470395565, 0.03641308471560478, 0.08786678314208984, 0.02202620729804039, -0.054180823266506195, -0.05945957824587822, -0.03032570704817772, 0.04506246745586395, 0.004790628794580698, -0.041732463985681534, 0.07952280342578888, 0.01696735806763172, 0.005513380281627178, -0.07114175707101822, -0.03770280256867409, -0.09775923937559128, -0.18725325167179108, 0.07853688299655914, -0.0439470112323761, -0.0057168807834386826, -0.01578269898891449, -0.017686476930975914, 0.004978249315172434, 0.07232201844453812, -0.04551191255450249, -0.10651805251836777, -0.14686349034309387, -0.019068285822868347, 0.1268620491027832, -0.03736761212348938, 0.01618768461048603, -0.049279868602752686, 0.21790514886379242, -0.020535308867692947, -0.07236270606517792, -0.05975909158587456, -0.05647765100002289, -0.10476070642471313, -0.06435766816139221, 0.1080285981297493, 0.07371227443218231, -0.0226859413087368, 0.03757702559232712, -0.0045539615675807, -0.006712193135172129, -0.12061486393213272, 0.03306334465742111, 0.16215911507606506, 0.09096106886863708, 0.06558103859424591, -0.042652517557144165, -0.18734729290008545, -0.06369359791278839, -0.03599826991558075, 0.02910224162042141, 0.06306244432926178, -0.05832669883966446, 0.1965152621269226, 0.12658335268497467, -0.10129491239786148, -0.10690180957317352, 0.004215598572045565, 0.02586662396788597, 0.025905326008796692, 0.14857682585716248, -0.19093172252178192, 0.05551157891750336, 0.0637458860874176, 0.0032973105553537607, -0.033389125019311905, -0.16010603308677673, -0.08345724642276764, -0.07729668915271759, 0.0490277037024498, -0.13822336494922638, -0.10422871261835098, -0.05576938018202782, -0.025262340903282166, -0.124813012778759, 0.12320003658533096, -0.030055029317736626, 0.005713114980608225, 0.009260539896786213, 0.1571349948644638, 0.027654696255922318, -0.028091348707675934, 0.11294416338205338, 0.058021098375320435, 0.03821771591901779, -0.030121348798274994, -0.05052322521805763, 0.13871130347251892, -0.03685916215181351, 0.07659788429737091, 0.07973649352788925, 0.05116252973675728, -0.1651066243648529, -0.04302581027150154, -0.10292363911867142, -0.01424366980791092, -0.04428179934620857, -0.03371766582131386, -0.07106851786375046, 0.06506175547838211, 0.08796750754117966, -0.04132279381155968, -0.0945814847946167, -0.09403801709413528, -0.04382743313908577, 0.100919708609581, 0.09897971898317337, 0.04629064351320267, -0.13643130660057068, -0.03947247192263603, -0.03880097717046738, -0.034882135689258575, -0.14404554665088654, 0.06629157066345215, 0.08453214913606644, -0.0067811887711286545, 0.10999510437250137, -0.001999838277697563, -0.12251877039670944, 0.0780237466096878, 0.06516292691230774, -0.06397617608308792, -0.09090012311935425, 0.009228024631738663, 0.0595242902636528, -0.13742105662822723, -0.01196445431560278, 0.1260390430688858, 0.06207144632935524, -0.05619988590478897, -0.025076769292354584, 0.09639998525381088, 0.052397556602954865, 0.0764639675617218, -0.00554848276078701, 0.0057036238722503185, -0.07370293885469437, 0.10392793267965317, 0.07496332377195358, -0.07656606286764145, -0.03125559911131859, 0.0162313524633646, -0.09671660512685776, -0.038121547549963, -0.02060314640402794, 0.10212164372205734, -0.058906275779008865, -0.029466066509485245, 0.047471098601818085, -0.10935398191213608, 0.029186196625232697, 0.12325741350650787, -0.041899826377630234, 0.09769677370786667, -0.04253736138343811, -0.03702115640044212, -0.018012672662734985, 0.09421729296445847, 0.0393042154610157, -0.00415225001052022, -0.058187056332826614, 0.07556271553039551, -0.0018107196083292365, -0.000060943209973629564, 0.0073211840353906155, -0.08687097579240799, -0.04852769896388054, -0.019689325243234634, -0.08625352382659912, 0.03170274198055267, -0.09441301971673965, 0.008630452677607536, -0.006947326473891735, -0.014567408710718155, 0.006923589389771223, -0.004631788935512304, -0.010731441900134087, -0.007700548507273197, -0.04643896222114563, 0.10372299700975418, -0.18248610198497772, -0.01740618422627449, 0.04958951473236084, -0.05560033768415451, 0.0882125124335289, -0.005198528524488211, -0.012866437435150146, -0.0035068457946181297, -0.013236967846751213, 0.04578416422009468, -0.012176373973488808, 0.058551643043756485, 0.010094006545841694, -0.08739563822746277, 0.010394436307251453, 0.017868828028440475, -0.06631175428628922, 0.01142912544310093, 0.08489349484443665, -0.04107224941253662, 0.0886421874165535, 0.012930083088576794, -0.02473839372396469, -0.08529079705476761, 0.06989879906177521, 0.10040692985057831, 0.03084569424390793, 0.057944949716329575, 0.021749205887317657, 0.04867805913090706, -0.13704507052898407, -0.043948814272880554, -0.010244973935186863, 0.022835075855255127, 0.053711097687482834, -0.059628069400787354, 0.04037079960107803, 0.011965453624725342, 0.17197461426258087, 0.024486461654305458, 0.07948759198188782, -0.013784147799015045, 0.06046675890684128, -0.02307221107184887, 0.009623851627111435, -0.06676681339740753, -0.05384991690516472, -0.020610356703400612, 0.09279870241880417, -0.007946833968162537, -0.12325004488229752, -0.03287465497851372, 0.07698361575603485, 0.05276063084602356, 0.17103712260723114, -0.03855857625603676, 0.03111625649034977, -0.05187876522541046, -0.05196143686771393, -0.0630519911646843, -0.08013278990983963, -0.023340245708823204, -0.053846877068281174, -0.03467069938778877, 0.03517675772309303, -0.1387866586446762, 0.12918679416179657, 0.011898223310709, -0.05269681662321091, -0.019260894507169724, -0.1503177136182785, -0.0015359208919107914, 0.033472951501607895, -0.037909217178821564, -0.1470775306224823, 0.08792410790920258, 0.09560904651880264, -0.018150880932807922, -0.008721607737243176, 0.027391253039240837, -0.0953424721956253, -0.13600273430347443, 0.021922076120972633, 0.059082601219415665, 0.046776339411735535, 0.1035849079489708, 0.09923600405454636, 0.0004103519022464752, 0.05957592651247978, 0.0571209155023098, 0.06916379928588867, 0.07503834366798401, 0.01229636650532484, -0.08591937273740768, -0.020596351474523544, -0.009324118494987488, -0.059061285108327866, -0.024121826514601707, 0.122023805975914, 0.05361435189843178, -0.01021592691540718, 0.023494072258472443, 0.1890040934085846, -0.010670577175915241, 0.016902539879083633, -0.15538665652275085, -0.014783434569835663, -0.08467114716768265, 0.0003840231220237911, 0.013580312952399254, -0.07937964797019958, 0.03914172574877739, 0.1489613801240921, 0.06307402998209, -0.051542382687330246, -0.02607804909348488, 0.004137552343308926, 0.02156875468790531, 0.027923062443733215, 0.11195285618305206, -0.04187054932117462, 0.29048261046409607, -0.036353953182697296, 0.08850030601024628, -0.048064224421978, 0.03459072485566139, 0.016750141978263855, 0.10383400321006775, -0.10407914221286774, -0.01273649837821722, -0.07190609723329544, 0.10472174733877182, 0.02082907035946846, -0.22030574083328247, 0.004355852957814932, -0.01178095955401659, -0.07563703507184982, 0.033114444464445114, -0.01750309020280838, -0.039761073887348175, 0.005587890278548002, 0.037246208637952805, 0.0014832656597718596, 0.2898695766925812, 0.03399550914764404, -0.0730452686548233, -0.016357319429516792, 0.10780102014541626, -0.04714109003543854, 0.06207386776804924, -0.0033988668583333492, 0.08858568221330643, 0.06103344261646271, 0.02808612771332264, -0.08627898246049881, -0.00007636877853656188, 0.039091356098651886, 0.0014763323124498129, -0.03298122063279152, 0.06932977586984634, 0.042877402156591415, 0.12178836017847061, 0.0553225539624691, 0.011936718598008156, 0.0693022608757019, 0.07351256906986237, 0.04516036435961723, -0.0480775348842144, 0.05743741989135742, -0.10806827247142792, 0.10680601745843887, 0.018250325694680214, -0.0002693292044568807, 0.01537268701940775, 0.0012263217940926552, 0.04275692254304886, -0.013530191034078598, 0.13717350363731384, 0.0017104863654822111, -0.05773511156439781, -0.010725490748882294, -0.10324541479349136, 0.04834933206439018, -0.07287442684173584, -0.05494457110762596, 0.08223611861467361, -0.0691978707909584, 0.005121792666614056, 0.11329303681850433, -0.047826021909713745, 0.024621430784463882, -0.04243936762213707, -0.0532083660364151, 0.04200446233153343, 0.12225490808486938, -0.04341331869363785, -0.0320163331925869 ]
d0eaa5d51a30d3a4b328753b07ec3b01e2da44b0
ERROR: type should be string, got "\nhttps://youtu.be/8FS0oUB-eCI"
ChristophSchuhmann/wikipedia-3sentence-level-retrieval-index
[ "license:apache-2.0", "region:us" ]
2023-02-06T19:06:30+00:00
{"license": "apache-2.0"}
2023-02-06T19:23:05+00:00
[]
[]
TAGS #license-apache-2.0 #region-us
URL
[]
[ "TAGS\n#license-apache-2.0 #region-us \n" ]
[ 14 ]
[ "passage: TAGS\n#license-apache-2.0 #region-us \n" ]
[ -0.014972950331866741, 0.1377405971288681, -0.008658665232360363, -0.026387644931674004, -0.06495039910078049, 0.02879125252366066, 0.153837651014328, 0.10483942180871964, 0.1256849616765976, -0.0962781235575676, 0.15542295575141907, 0.06252618134021759, 0.01139750611037016, 0.01549961045384407, 0.010183668695390224, -0.10781864821910858, 0.10650338232517242, -0.03490327671170235, -0.0707244873046875, 0.013394840992987156, 0.033960238099098206, 0.01981612667441368, -0.023830559104681015, -0.012257595546543598, 0.01112176850438118, 0.0037393702659755945, 0.07398658245801926, -0.03678586333990097, 0.0712570771574974, -0.0307270847260952, 0.04963022843003273, 0.037079621106386185, -0.007749613840132952, -0.26644203066825867, 0.0024822098203003407, -0.024022065103054047, -0.07085459679365158, 0.029720399528741837, 0.013389789499342442, 0.01578286662697792, 0.00231059524230659, 0.07178761065006256, -0.05940864980220795, 0.031044602394104004, -0.10492347925901413, -0.29222142696380615, -0.17006294429302216, 0.01744023710489273, 0.06068360060453415, 0.05476497858762741, 0.09300920367240906, 0.11550862342119217, -0.14644485712051392, -0.044547248631715775, 0.07099119573831558, -0.3628372251987457, 0.050203535705804825, 0.08580845594406128, -0.01402231678366661, 0.057996317744255066, 0.02550811693072319, 0.06553854793310165, 0.10383764654397964, -0.038684334605932236, -0.08282918483018875, -0.048850782215595245, -0.07356837391853333, 0.10531846433877945, -0.00149822561070323, -0.12009333074092865, 0.345758318901062, 0.07138761878013611, -0.013982822187244892, 0.1401686668395996, -0.03401775285601616, 0.08242715895175934, 0.00856063887476921, 0.07128778845071793, 0.11027930676937103, 0.21097713708877563, 0.1913771778345108, -0.10426254570484161, -0.16983820497989655, -0.05970091372728348, -0.17783339321613312, 0.02624516934156418, 0.006967680528759956, 0.1441962569952011, -0.15566711127758026, -0.007344068959355354, -0.08945375680923462, -0.05843057110905647, -0.052450742572546005, -0.06543421745300293, 0.15477518737316132, 0.08793632686138153, -0.09496267139911652, 0.12857593595981598, 0.16295284032821655, 0.27066588401794434, 0.0397113561630249, 0.0019443186465650797, -0.1110435351729393, 0.16749770939350128, -0.07042741030454636, 0.013758119195699692, 0.11881717294454575, 0.07653947174549103, 0.10706596076488495, -0.16501086950302124, 0.12452162802219391, -0.016609763726592064, -0.11789992451667786, -0.018261663615703583, -0.1484517753124237, 0.16352272033691406, 0.06240275129675865, -0.10497567802667618, -0.06494749337434769, 0.07674259692430496, 0.11038123816251755, -0.04079411178827286, -0.009143678471446037, -0.015199431218206882, 0.01051195990294218, -0.009426284581422806, 0.027398476377129555, 0.04705727845430374, 0.058609262108802795, 0.0033366302959620953, -0.07381071150302887, -0.020023247227072716, 0.003280751407146454, 0.1267043501138687, 0.1569293588399887, -0.05185375362634659, 0.04033694788813591, -0.06643003970384598, -0.15634682774543762, 0.033434003591537476, 0.08608060330152512, 0.0321158766746521, -0.007054667454212904, 0.10480355471372604, 0.0473899245262146, -0.004594990983605385, -0.090055912733078, -0.06355541944503784, -0.08356712758541107, 0.04190095514059067, -0.11996523290872574, -0.0058386498130857944, -0.25945019721984863, 0.00316249905154109, -0.1388063281774521, 0.0704830139875412, 0.04737875238060951, -0.11123143136501312, -0.11911641061306, 0.18649786710739136, -0.07714612036943436, 0.055908672511577606, -0.05615519732236862, -0.008492839522659779, -0.03699778765439987, 0.06682316213846207, -0.14747841656208038, -0.0005399030051194131, 0.18717823922634125, -0.14897091686725616, -0.183698832988739, 0.007495424710214138, 0.03250853717327118, 0.014232120476663113, 0.028690440580248833, 0.30018556118011475, -0.04365801066160202, -0.022711357101798058, 0.14066553115844727, 0.16189178824424744, -0.0973799079656601, -0.2718583643436432, 0.14789041876792908, -0.18816958367824554, -0.19481199979782104, 0.02703963965177536, -0.10175284743309021, 0.06735242903232574, 0.0434052050113678, -0.12173084169626236, -0.040761545300483704, -0.06889492273330688, -0.03939614072442055, -0.04728172346949577, 0.01916317269206047, -0.06263907253742218, 0.06502450257539749, -0.0881565511226654, 0.0690668523311615, 0.1269703209400177, 0.08447451889514923, -0.026536764577031136, 0.009126527234911919, 0.025589320808649063, 0.017330490052700043, -0.03833708539605141, 0.01929517462849617, 0.01688491925597191, -0.09582766890525818, 0.07343678176403046, 0.10080436617136002, 0.0517999529838562, -0.10638647526502609, 0.023197486996650696, 0.03179466351866722, 0.0024750155862420797, 0.0694531574845314, 0.06032438576221466, -0.10287857055664062, 0.06489933282136917, -0.0037468012887984514, 0.0518820621073246, 0.07478269934654236, -0.022493045777082443, 0.020172767341136932, -0.044141460210084915, -0.04319985210895538, 0.08567604422569275, -0.019361646845936775, -0.08695904165506363, 0.02959357015788555, 0.005028232932090759, 0.10603106021881104, 0.04762826859951019, -0.10406646132469177, 0.16851206123828888, 0.03276379778981209, 0.14172857999801636, 0.16983027756214142, -0.05003548413515091, 0.13265447318553925, -0.018061332404613495, 0.011779023334383965, -0.027860842645168304, 0.08203933387994766, 0.013741283677518368, -0.0884268656373024, 0.010677173733711243, -0.0012559969909489155, -0.04808245599269867, 0.026862075552344322, -0.05627221614122391, -0.11836695671081543, -0.059314463287591934, -0.028883814811706543, 0.22526615858078003, -0.10537033528089523, 0.12464691698551178, 0.5217018723487854, 0.024548746645450592, 0.047969620674848557, -0.16087572276592255, -0.06556912511587143, -0.03724734112620354, 0.01234061736613512, -0.03181084617972374, 0.13119523227214813, -0.06553105264902115, 0.03862816467881203, 0.0817440003156662, 0.07771708816289902, 0.04734378680586815, -0.17659273743629456, -0.12391189485788345, 0.0027862393762916327, -0.06264690309762955, -0.1301562488079071, -0.015394099988043308, -0.11034313589334488, 0.036011673510074615, 0.015018938109278679, -0.09842728823423386, 0.16451223194599152, -0.03630390390753746, -0.045461565256118774, 0.04944632574915886, -0.2314302921295166, -0.0839247852563858, -0.12943525612354279, -0.03678453713655472, -0.023447291925549507, 0.016634400933980942, 0.09078312665224075, -0.055623311549425125, -0.0538143664598465, 0.03897318243980408, -0.08703092485666275, -0.05625670403242111, -0.015357088297605515, 0.04862850904464722, 0.08293753117322922, 0.04238975793123245, -0.10195945203304291, -0.04045995697379112, -0.002702324651181698, -0.01255359873175621, 0.033146876841783524, -0.07412629574537277, 0.0853082686662674, 0.11064175516366959, 0.049554772675037384, 0.03361808881163597, -0.0033064892049878836, 0.07316921651363373, -0.013150024227797985, -0.06427362561225891, 0.1754506230354309, -0.014537261798977852, 0.052527204155921936, 0.1614663302898407, 0.06942721456289291, -0.08693967014551163, -0.016334567219018936, -0.05160483345389366, -0.11219155788421631, -0.313568115234375, -0.0514010526239872, -0.0697566568851471, 0.10370723158121109, 0.016293581575155258, 0.11431120336055756, 0.11805130541324615, 0.05553880333900452, 0.02477053552865982, -0.030986998230218887, -0.013935171999037266, -0.008552669547498226, 0.14244908094406128, -0.040016934275627136, -0.025634407997131348, -0.16582822799682617, 0.05352972075343132, 0.19532184302806854, 0.17346875369548798, 0.16141186654567719, 0.2949795722961426, 0.1219889223575592, 0.1499485820531845, 0.20596453547477722, 0.03277221694588661, 0.08221390843391418, 0.06475520879030228, 0.0147244893014431, -0.07361224293708801, -0.02132425457239151, -0.0358458049595356, 0.09254280477762222, -0.020926684141159058, -0.1894368976354599, 0.04358299449086189, -0.20253854990005493, 0.04529424384236336, 0.1325015276670456, 0.10060963034629822, 0.0372280478477478, 0.12041204422712326, 0.10496384650468826, 0.07236151397228241, 0.02265322208404541, 0.155935138463974, -0.10047086328268051, -0.04170655459165573, 0.10314960777759552, 0.03088374249637127, 0.08923831582069397, 0.05249778553843498, 0.024546442553400993, -0.09486964344978333, -0.18898503482341766, 0.08735544979572296, 0.15138362348079681, -0.18271131813526154, 0.25446999073028564, 0.007140269037336111, -0.10152944922447205, -0.04616072401404381, -0.034160908311605453, 0.07485716044902802, 0.1744716465473175, 0.09998820722103119, 0.07455950975418091, -0.2311946600675583, 0.06371928006410599, -0.0805746391415596, 0.03850121796131134, 0.009798256680369377, -0.0012644194066524506, -0.1523386389017105, -0.06277230381965637, 0.03955406695604324, 0.028464701026678085, 0.16074317693710327, -0.09644434601068497, -0.07261957228183746, 0.0019746189936995506, 0.14707164466381073, -0.027826759964227676, -0.12161600589752197, 0.07778380811214447, 0.026536058634519577, 0.10129949450492859, -0.046719279140233994, 0.01687805913388729, -0.0395737923681736, -0.22956150770187378, 0.06549007445573807, -0.02001434937119484, 0.016561396420001984, -0.057295773178339005, -0.095908522605896, -0.09420177340507507, -0.1935003399848938, 0.09841206669807434, -0.0820716917514801, 0.02724429965019226, -0.03322573006153107, 0.12508079409599304, -0.09227079153060913, 0.022051848471164703, 0.002473256317898631, -0.0009367846651002765, -0.0559639148414135, -0.12471262365579605, 0.08924731612205505, -0.02971985563635826, -0.0013593619223684072, -0.004879474639892578, -0.037194594740867615, 0.05458180233836174, 0.06104811653494835, -0.09029456228017807, 0.17284651100635529, 0.304045170545578, -0.06797412037849426, 0.21419626474380493, 0.3437173664569855, -0.12620802223682404, -0.22579985857009888, -0.2027367204427719, -0.287395715713501, -0.1499757170677185, 0.09507355093955994, -0.18301111459732056, 0.10197417438030243, 0.19583699107170105, -0.1618303805589676, 0.17492994666099548, -0.18311083316802979, -0.021827004849910736, 0.20329692959785461, -0.06383024156093597, 0.3788199722766876, -0.11906247586011887, -0.10778811573982239, -0.09945111721754074, -0.1618940234184265, 0.10558515042066574, -0.18797975778579712, 0.02240607887506485, 0.03505697101354599, -0.06375153362751007, -0.049790963530540466, -0.018343381583690643, 0.24272295832633972, -0.001803387189283967, 0.0726020559668541, -0.07976466417312622, 0.016474680975079536, 0.1855529397726059, -0.05465783178806305, 0.036813490092754364, -0.15827761590480804, -0.028589751571416855, -0.009538229554891586, 0.037033237516880035, -0.03485805541276932, 0.07510014623403549, 0.0011767554096877575, -0.07188761979341507, -0.0968698114156723, -0.021874895319342613, -0.04847799241542816, -0.005289438646286726, 0.26872649788856506, 0.076040118932724, -0.053988635540008545, 0.10166085511445999, -0.0624149851500988, -0.1741536259651184, 0.016763299703598022, -0.10044022649526596, -0.07138258218765259, 0.0554080568253994, -0.24670164287090302, 0.034909263253211975, 0.05687393248081207, -0.06160387769341469, 0.03683772310614586, 0.05927642062306404, -0.09550898522138596, -0.021464845165610313, 0.12709221243858337, -0.0498422347009182, -0.0725388154387474, 0.06216653808951378, 0.1259109526872635, 0.11850999295711517, 0.0343933068215847, 0.07898429036140442, 0.04615308716893196, 0.00829920545220375, 0.021227914839982986, 0.07433275133371353, -0.17039799690246582, -0.05188438296318054, 0.05058757960796356, -0.02595781534910202, -0.1195429265499115, 0.25599008798599243, 0.024486735463142395, -0.03208741545677185, -0.03641199693083763, 0.034413471817970276, -0.05278664082288742, -0.09139014035463333, -0.055758245289325714, -0.012565652839839458, -0.09509796649217606, -0.18549469113349915, 0.037074074149131775, -0.09632396697998047, -0.031133420765399933, -0.03407083451747894, 0.1050528809428215, 0.10973811894655228, 0.0608430951833725, -0.035467516630887985, 0.16503585875034332, -0.08250437676906586, -0.18473856151103973, -0.014520380645990372, -0.04597662389278412, -0.2016236037015915, 0.02965214103460312, 0.06940829008817673, -0.013816002756357193, -0.046515315771102905, -0.05482683703303337, 0.08873733133077621, -0.2119728922843933, 0.016329854726791382, -0.08455836027860641, 0.001034914399497211, 0.0714198648929596, -0.0625232607126236, -0.02158266305923462, 0.019058139994740486, -0.16247235238552094, -0.057285383343696594, -0.010741667822003365, 0.05505165457725525, -0.10866090655326843, -0.059575166553258896, 0.13569991290569305, 0.05747954174876213, 0.09156093001365662, 0.08844062685966492, 0.012601320631802082, 0.14171354472637177, -0.1320880800485611, -0.07235664874315262, 0.07277880609035492, 0.03337378427386284, -0.02606162242591381, 0.016614673659205437, -0.08515988290309906, 0.08969198167324066, -0.07962571084499359, 0.01820359006524086, -0.060848966240882874, -0.13395224511623383, -0.14613622426986694, -0.008169831708073616, -0.17318809032440186, 0.04386909306049347, -0.1962924599647522, 0.20117418467998505, 0.049670200794935226, 0.11739125847816467, 0.09586193412542343, 0.0011940872063860297, 0.02116451971232891, 0.03084888681769371, -0.038015320897102356, -0.06214485689997673, -0.1336703896522522, -0.034515380859375, -0.14342233538627625, -0.05508563295006752, 0.3311520218849182, -0.04312245175242424, -0.13223427534103394, 0.05347722768783569, 0.08347365260124207, 0.016498390585184097, 0.023317286744713783, 0.24889890849590302, 0.04722274839878082, 0.01573793776333332, -0.13385194540023804, -0.026428358629345894, 0.01794368028640747, -0.16727277636528015, 0.06783340871334076, 0.09281940758228302, 0.16844220459461212, 0.05829422175884247, 0.05544407665729523, -0.019741542637348175, -0.05980636551976204, -0.07777530699968338, 0.14353948831558228, 0.032101042568683624, 0.07295279204845428, 0.09418365359306335, 0.159424290060997, -0.01132612582296133, 0.011219488456845284, -0.048546407371759415, 0.018409814685583115, -0.15742093324661255, -0.13183769583702087, 0.0072431364096701145, -0.15321512520313263, 0.010697826743125916, 0.011604762636125088, 0.031117310747504234, 0.2556179463863373, 0.040744051337242126, -0.06757266819477081, -0.061626169830560684, -0.15643614530563354, -0.04558565840125084, -0.04036465659737587, -0.007026704493910074, -0.038584496825933456, -0.04671114683151245, -0.11182798445224762, -0.0216030515730381, -0.08770470321178436, -0.06560606509447098, 0.03681713715195656, 0.030047502368688583, 0.026680879294872284, -0.10008109360933304, -0.026802673935890198, -0.08784958720207214, 0.040374286472797394, 0.0004315301775932312, 0.18315750360488892, 0.03631989657878876, 0.0276914332062006, 0.1346033811569214, 0.07949449867010117, -0.04593978822231293, -0.1404203623533249, -0.04276864603161812, 0.050976864993572235, -0.04557491093873978, 0.06821722537279129, -0.047834381461143494, -0.008090421557426453, -0.03426219895482063, 0.22107382118701935, 0.2087077796459198, -0.07518038153648376, -0.0023365700617432594, -0.04285150393843651, 0.01813213713467121, 0.007908736355602741, 0.15072014927864075, 0.0591626912355423, 0.10565771162509918, -0.0679246187210083, -0.012176652438938618, -0.016756610944867134, 0.013343945145606995, -0.18723566830158234, 0.07582846283912659, -0.030456462875008583, -0.11726406216621399, -0.038775019347667694, 0.12641341984272003, -0.06347712874412537, 0.09165021777153015, 0.09027697890996933, -0.029973473399877548, 0.027466343715786934, 0.0041959225200116634, 0.20493634045124054, 0.02617124654352665, 0.048617783933877945, -0.1167941614985466, -0.09022688120603561, 0.04032917320728302, 0.00874406099319458, -0.3118123412132263, -0.1954881250858307, 0.10563000291585922, 0.06715425848960876, 0.2813838720321655, 0.0376100093126297, 0.04810243472456932, 0.015465166419744492, 0.07121489197015762, -0.12309351563453674, 0.13339413702487946, 0.046601615846157074, -0.01129146758466959, -0.11312273144721985, -0.22528712451457977, -0.08437834680080414, -0.05826718360185623, 0.07650711387395859, 0.06533077359199524, 0.0024006948806345463, 0.1862800121307373, -0.0665736049413681, -0.02629813738167286, -0.025829114019870758, -0.15687870979309082, 0.03671088442206383, -0.06590475142002106, -0.042691074311733246, -0.0751107782125473, -0.03413062542676926, -0.023224810138344765, 0.055103402584791183, -0.24346224963665009, -0.05677183344960213, 0.2217833697795868, 0.021673565730452538, 0.14538446068763733, 0.02648567035794258, 0.03698272630572319, -0.035830456763505936, -0.04817749559879303, 0.054671525955200195, -0.08730608224868774, 0.004225281998515129, 0.10913265496492386, -0.03198149800300598, 0.021041326224803925, -0.1597670465707779, 0.046472933143377304, -0.043475229293107986, -0.005544837564229965, -0.0814170315861702 ]
62f56cf31884d7fe3417393b843279f3a4fa74f0
# Dataset Card for "OxfordPets_test_facebook_opt_6.7b_Attributes_Caption_ns_3669" [More Information needed](https://github.com/huggingface/datasets/blob/main/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
Multimodal-Fatima/OxfordPets_test_facebook_opt_6.7b_Attributes_Caption_ns_3669
[ "region:us" ]
2023-02-06T19:22:10+00:00
{"dataset_info": {"features": [{"name": "id", "dtype": "int64"}, {"name": "image", "dtype": "image"}, {"name": "prompt", "dtype": "string"}, {"name": "true_label", "dtype": "string"}, {"name": "prediction", "dtype": "string"}, {"name": "scores", "sequence": "float64"}], "splits": [{"name": "fewshot_0_bs_16", "num_bytes": 121141370.375, "num_examples": 3669}, {"name": "fewshot_1_bs_16", "num_bytes": 122187472.375, "num_examples": 3669}, {"name": "fewshot_3_bs_16", "num_bytes": 124265353.375, "num_examples": 3669}], "download_size": 358500289, "dataset_size": 367594196.125}}
2023-02-06T20:12:12+00:00
[]
[]
TAGS #region-us
# Dataset Card for "OxfordPets_test_facebook_opt_6.7b_Attributes_Caption_ns_3669" More Information needed
[ "# Dataset Card for \"OxfordPets_test_facebook_opt_6.7b_Attributes_Caption_ns_3669\"\n\nMore Information needed" ]
[ "TAGS\n#region-us \n", "# Dataset Card for \"OxfordPets_test_facebook_opt_6.7b_Attributes_Caption_ns_3669\"\n\nMore Information needed" ]
[ 6, 35 ]
[ "passage: TAGS\n#region-us \n# Dataset Card for \"OxfordPets_test_facebook_opt_6.7b_Attributes_Caption_ns_3669\"\n\nMore Information needed" ]
[ -0.17665168642997742, 0.18886497616767883, -0.0012338650412857533, 0.025377940386533737, 0.03464492782950401, 0.08093671500682831, 0.07432176917791367, 0.10084657371044159, 0.33216434717178345, 0.02587786316871643, 0.17246182262897491, 0.024439305067062378, 0.02371576428413391, 0.18298856914043427, -0.09762610495090485, 0.06861650943756104, 0.030166417360305786, 0.0653262808918953, -0.08337756246328354, 0.12575024366378784, -0.039007607847452164, -0.07033361494541168, 0.1378534883260727, -0.07660537213087082, -0.20076948404312134, 0.16668032109737396, 0.02247832901775837, -0.06408197432756424, 0.11114105582237244, -0.017346039414405823, 0.11657898873090744, 0.05612696707248688, -0.043970756232738495, -0.11956807225942612, 0.02854759246110916, 0.005583327263593674, -0.04443447291851044, 0.04956197738647461, 0.05309204384684563, -0.04440082982182503, 0.05441020801663399, 0.11963734030723572, 0.01096024364233017, 0.016840729862451553, -0.16509433090686798, -0.12421808391809464, -0.09086059778928757, 0.014705403707921505, -0.026477262377738953, 0.05678793415427208, 0.009422332979738712, 0.19920405745506287, -0.16992028057575226, 0.03237076848745346, 0.09289903938770294, -0.06951098144054413, 0.008174341171979904, 0.0646364614367485, -0.018616624176502228, 0.0720004215836525, -0.03734355419874191, 0.033354002982378006, 0.13197782635688782, 0.051252331584692, -0.17072008550167084, -0.050999369472265244, -0.07940249890089035, 0.04465601593255997, -0.031114840880036354, -0.09058916568756104, 0.3384997248649597, 0.13859938085079193, -0.04488619044423103, 0.02435075119137764, 0.006338674575090408, 0.053066104650497437, 0.11290650069713593, -0.06576050817966461, -0.005870865657925606, 0.02321058139204979, -0.07509483397006989, 0.004075792618095875, -0.10791623592376709, -0.09148810803890228, -0.13538460433483124, -0.10596746951341629, -0.05708207190036774, 0.13016855716705322, -0.1560879349708557, 0.0031193243339657784, -0.012915456667542458, -0.04884658381342888, -0.009455285966396332, -0.16098693013191223, -0.026098283007740974, -0.06470783799886703, 0.016056373715400696, -0.02130064368247986, 0.1563711166381836, -0.057718995958566666, -0.026248272508382797, 0.06513217091560364, -0.138038769364357, 0.04435574635863304, 0.13836431503295898, -0.03797969967126846, 0.0489131398499012, 0.07292740046977997, -0.03639374300837517, 0.03702843561768532, -0.12489937990903854, -0.0011439553927630186, 0.027777088806033134, -0.02961176447570324, 0.001393566490150988, 0.02650546468794346, -0.006680676713585854, -0.13027089834213257, -0.09954410046339035, -0.01019012089818716, 0.16502535343170166, -0.048467785120010376, 0.04910753667354584, 0.04879053309559822, -0.07379457354545593, -0.05987938866019249, 0.016761131584644318, -0.1018017902970314, 0.04411931708455086, -0.10197599977254868, -0.06156410649418831, -0.030166300013661385, 0.03149701654911041, 0.025896448642015457, 0.082573801279068, -0.041722770780324936, 0.06713897734880447, -0.10558702796697617, -0.1630629599094391, -0.04089156165719032, 0.02956796996295452, -0.035455141216516495, 0.1389257162809372, 0.04904849827289581, 0.06609756499528885, -0.03290727734565735, -0.036811888217926025, 0.006809748709201813, -0.0851866602897644, 0.09839560091495514, 0.05696253105998039, 0.013827826827764511, -0.06310120224952698, 0.053409792482852936, -0.15529242157936096, -0.013992974534630775, 0.0010407136287540197, 0.04617775231599808, -0.12807761132717133, 0.06440103054046631, -0.06717096269130707, -0.05688829347491264, -0.1586243361234665, 0.04924336075782776, 0.02516656368970871, 0.17618195712566376, -0.15732119977474213, -0.06701212376356125, 0.09450551867485046, -0.13498495519161224, -0.24872389435768127, 0.044984541833400726, -0.023819459602236748, 0.022656045854091644, 0.09732377529144287, 0.19107985496520996, 0.12787257134914398, -0.08697009086608887, -0.07325908541679382, 0.0658596009016037, -0.15237335860729218, -0.18031048774719238, 0.0010875026928260922, -0.06059650331735611, -0.11130523681640625, 0.041204798966646194, 0.17258664965629578, 0.008505645208060741, -0.0528874509036541, -0.01855642721056938, -0.03798556327819824, -0.08367971330881119, 0.12738247215747833, 0.14065146446228027, -0.024516714736819267, -0.14601613581180573, 0.02536957524716854, -0.07468482106924057, 0.016430063173174858, 0.012303018942475319, -0.06663031876087189, -0.03029220923781395, 0.10269895195960999, -0.09157726168632507, -0.05134940147399902, -0.15585798025131226, -0.056166376918554306, 0.011151675134897232, 0.024107551202178, 0.04278496280312538, 0.14825955033302307, 0.06530206650495529, -0.12010237574577332, 0.013339119032025337, -0.021364232525229454, -0.012856509536504745, -0.021631211042404175, -0.021132340654730797, 0.0028988467529416084, 0.02185906283557415, -0.07520850747823715, -0.078672394156456, -0.1879255771636963, -0.08274592459201813, 0.09901142865419388, 0.0686895027756691, 0.011236058548092842, -0.002580540021881461, 0.05668487399816513, -0.0002918197133112699, 0.006684665102511644, -0.04389125481247902, -0.01709100231528282, -0.03342550992965698, 0.02887924201786518, -0.11099802702665329, 0.10071256756782532, 0.17051750421524048, 0.09910956770181656, -0.03279970958828926, -0.060664039105176926, 0.020236216485500336, -0.037371259182691574, 0.03115241602063179, -0.12667177617549896, 0.07299564778804779, 0.05612713471055031, -0.05889660865068436, -0.02100745402276516, -0.11442317068576813, 0.001743942964822054, 0.04249945282936096, -0.016994334757328033, -0.1461523026227951, 0.08470682054758072, 0.0902172401547432, -0.3515018820762634, 0.10341669619083405, 0.1842581033706665, 0.16378231346607208, 0.08501607924699783, -0.05236872658133507, -0.10647126287221909, 0.04961797967553139, 0.03640718013048172, -0.10231045633554459, 0.2043837457895279, -0.17668516933918, 0.08028969168663025, 0.037063516676425934, 0.01188527513295412, 0.06761369109153748, -0.07392143458127975, -0.07356196641921997, 0.0006630145944654942, -0.025472477078437805, -0.15716159343719482, 0.03395773097872734, 0.07636069506406784, 0.08904838562011719, -0.04582901671528816, -0.037825021892786026, 0.13933131098747253, -0.004918570164591074, -0.14103515446186066, 0.13949748873710632, -0.08663617819547653, -0.2732791602611542, 0.00650989031419158, 0.04321831464767456, 0.04360956698656082, 0.0019788292702287436, 0.031133921816945076, -0.230126291513443, 0.013052111491560936, -0.02297639101743698, -0.11987166851758957, -0.08497178554534912, -0.030720403417944908, -0.02730247750878334, 0.0672667846083641, 0.02902061678469181, -0.04021647945046425, -0.02701512724161148, -0.06307534873485565, 0.14431767165660858, 0.08197712153196335, -0.12848509848117828, 0.005721809342503548, -0.01227873470634222, -0.060026805847883224, 0.07307276129722595, 0.008112084120512009, 0.15598160028457642, -0.04373735189437866, -0.048375025391578674, 0.09628476947546005, 0.05167117714881897, -0.006567688658833504, 0.036194801330566406, -0.04002983868122101, -0.1571774184703827, 0.04290373995900154, -0.019963949918746948, -0.07822854816913605, -0.2863973081111908, -0.0704190582036972, -0.002998135518282652, 0.08900757879018784, 0.09031632542610168, 0.04894017055630684, -0.030279478058218956, 0.1206560954451561, 0.1240546777844429, -0.11069230735301971, -0.14530302584171295, -0.08769343793392181, -0.010050192475318909, 0.04778078943490982, -0.0217704139649868, -0.13191074132919312, 0.04361320659518242, 0.1312149316072464, -0.047518953680992126, 0.11493881046772003, 0.05744493752717972, -0.19769403338432312, 0.038963742554187775, 0.2026892751455307, 0.07289253175258636, 0.061132244765758514, 0.11701159924268723, -0.08642103523015976, 0.05014170706272125, 0.03550809621810913, -0.12387976050376892, -0.011486056260764599, 0.1495339423418045, -0.0586133636534214, -0.08446957170963287, -0.1065373420715332, -0.04246585816144943, -0.09476666152477264, 0.2004905343055725, -0.21784089505672455, 0.035534556955099106, -0.05294541269540787, 0.017351960763335228, -0.13996127247810364, 0.06128721311688423, 0.08971191942691803, -0.09929967671632767, 0.09927473217248917, 0.016791677102446556, 0.07421114295721054, 0.09008911997079849, 0.019945740699768066, -0.05528618395328522, -0.19240699708461761, -0.06734130531549454, 0.11966416984796524, -0.19200600683689117, 0.26565659046173096, 0.012535139918327332, -0.03356792777776718, -0.08719245344400406, -0.03268514573574066, 0.0015986098442226648, 0.020611166954040527, 0.16097918152809143, -0.013844285160303116, -0.22271205484867096, -0.0977812260389328, 0.011413808912038803, 0.06702669709920883, -0.01166724506765604, 0.0697980597615242, -0.07999705523252487, 0.08085748553276062, 0.06084132567048073, -0.06768234819173813, 0.03456347435712814, -0.14674852788448334, 0.011858062818646431, -0.08176887035369873, -0.03122755140066147, -0.0542278066277504, 0.013082084245979786, -0.009069973602890968, 0.008826306089758873, 0.0993863195180893, 0.07762740552425385, -0.026664013043045998, -0.0955982655286789, 0.14361415803432465, 0.10912781953811646, -0.05079716444015503, -0.07293286174535751, 0.01892864890396595, -0.04240738973021507, -0.019633857533335686, -0.1886541098356247, 0.0975692942738533, -0.04552478715777397, 0.02519303187727928, -0.08617962896823883, 0.1650819331407547, 0.08353349566459656, 0.01076536811888218, 0.06758140027523041, -0.0088290274143219, -0.017051422968506813, 0.0046713161282241344, 0.21906597912311554, -0.263071745634079, 0.04470452666282654, 0.2150105983018875, 0.11922229826450348, -0.058371804654598236, 0.03603037819266319, 0.02181321755051613, 0.10949056595563889, 0.10757170617580414, 0.01295387465506792, 0.05664610490202904, 0.1654156595468521, -0.05971017852425575, -0.10385610908269882, 0.1460547149181366, -0.0836193636059761, -0.0006533967098221183, 0.07052645087242126, -0.17548619210720062, 0.16858722269535065, 0.1076844185590744, -0.01571633294224739, 0.19600249826908112, -0.06301029771566391, -0.006015664432197809, 0.23100899159908295, 0.023630375042557716, 0.2147883027791977, -0.06061543524265289, -0.05643121898174286, -0.08865956217050552, -0.09542126208543777, 0.12682181596755981, -0.039672136306762695, -0.008648477494716644, -0.07960145175457001, 0.05681190639734268, 0.01815055124461651, 0.005096463020890951, 0.1519259512424469, 0.01983289234340191, 0.14235199987888336, -0.060385577380657196, 0.06225338950753212, 0.04553751274943352, -0.012596418149769306, 0.08737406134605408, 0.009528008289635181, 0.06429057568311691, -0.22454465925693512, 0.020645391196012497, -0.08156987279653549, 0.10115020722150803, 0.038176897913217545, 0.004075994715094566, -0.13295333087444305, -0.005747078452259302, -0.11226841807365417, -0.018596338108181953, -0.0014429637230932713, -0.07460928708314896, 0.25000956654548645, 0.03863217681646347, 0.14255550503730774, -0.06590352952480316, -0.038847774267196655, -0.0035334480926394463, -0.07333026826381683, 0.046633247286081314, -0.1763491928577423, 0.014624386094510555, 0.1534327268600464, 0.015285887755453587, 0.0661686509847641, 0.0025420195888727903, -0.11236359179019928, 0.05786570906639099, 0.11480513960123062, -0.1159399226307869, 0.07922222465276718, -0.008728807792067528, -0.10807328671216965, -0.06995797157287598, -0.02066178433597088, 0.0312388613820076, 0.06156047061085701, -0.004478214308619499, -0.05355493724346161, -0.00948769599199295, -0.06870444864034653, 0.09309278428554535, 0.10241302102804184, 0.03943276032805443, -0.14296653866767883, 0.14947554469108582, -0.031726546585559845, -0.14898625016212463, 0.07107053697109222, 0.01445247046649456, -0.04459147900342941, -0.08145648241043091, 0.013603825122117996, 0.26123154163360596, 0.002729272237047553, -0.09011863172054291, -0.053660403937101364, -0.06559886783361435, 0.06306758522987366, 0.2485053986310959, 0.04157236963510513, 0.061682429164648056, 0.0747947096824646, -0.12134158611297607, -0.03320512920618057, -0.04994569718837738, -0.030479229986667633, 0.0031583283562213182, -0.10279519110918045, -0.24910174310207367, -0.06378752738237381, 0.1501101702451706, -0.06448514759540558, -0.052038390189409256, -0.07401230186223984, 0.0730723887681961, -0.21208180487155914, 0.003391691017895937, 0.0031017621513456106, -0.03369593620300293, 0.005759366787970066, -0.06408299505710602, -0.049593061208724976, -0.04884280264377594, -0.10634613782167435, 0.1255037486553192, 0.1483812928199768, 0.0869256854057312, -0.1553196758031845, 0.0061571900732815266, 0.10817713290452957, 0.022025881335139275, 0.07936087250709534, 0.09022827446460724, -0.053956951946020126, 0.07673525810241699, -0.013257816433906555, -0.12466157972812653, 0.08961991220712662, 0.04925329238176346, 0.0618608258664608, -0.002546836156398058, 0.04709077253937721, 0.1018342673778534, -0.01605907641351223, 0.10527951270341873, -0.03536418825387955, -0.0290555190294981, -0.0354861319065094, -0.09593205153942108, -0.1027936115860939, 0.005481383763253689, 0.006957472767680883, 0.24778001010417938, 0.044409818947315216, 0.05632082000374794, -0.042928967624902725, -0.006312910933047533, -0.1809040755033493, -0.09441721439361572, 0.01623482257127762, -0.031827088445425034, 0.05033700913190842, 0.08036766201257706, 0.08705949783325195, -0.06056869775056839, 0.29224923253059387, -0.014790158718824387, -0.022544214501976967, 0.003036242676898837, -0.02660258114337921, 0.053736913949251175, 0.0015894141979515553, 0.1679903119802475, -0.014048510231077671, -0.06785370409488678, 0.08663797378540039, 0.00614521186798811, 0.004661152139306068, 0.07699891924858093, 0.19787868857383728, 0.13164466619491577, -0.0075330729596316814, 0.019495053216814995, 0.03862515464425087, -0.013991538435220718, 0.18708202242851257, -0.12936733663082123, -0.05968976393342018, 0.05182219669222832, 0.12140357494354248, -0.07418802380561829, 0.019575582817196846, -0.04544224590063095, 0.03710039705038071, -0.0796155259013176, -0.06797708570957184, -0.1029704213142395, -0.04697954282164574, -0.08304579555988312, -0.16770674288272858, 0.12622760236263275, -0.06100603565573692, -0.045632679015398026, 0.23124490678310394, 0.02305022068321705, -0.06702253967523575, 0.04455290734767914, 0.1149604395031929, -0.01150092575699091, 0.13820388913154602, -0.03542344272136688, -0.0889691561460495, 0.03751107677817345, 0.004260240122675896, 0.09226347506046295, -0.006014458369463682, -0.06251619011163712, -0.009340660646557808, -0.043273065239191055, 0.0023133906070142984, -0.09968718141317368, -0.07608135044574738, -0.038658708333969116, 0.05297892913222313, -0.08152074366807938, 0.004686057101935148, 0.03974451124668121, 0.08587594330310822, 0.01594843715429306, 0.09837662428617477, 0.02673913724720478, 0.14674870669841766, -0.09041296690702438, 0.0852985605597496, -0.0439106822013855, 0.03639831393957138, 0.03018452599644661, -0.054047033190727234, 0.042219650000333786, 0.029919661581516266, 0.09882307052612305, -0.028048746287822723, -0.018913069739937782, -0.03230470046401024, 0.016469178721308708, 0.020619962364435196, 0.10598376393318176, -0.0028021293692290783, -0.027951320633292198, -0.07947108149528503, -0.12363231182098389, -0.006649727933108807, -0.04939087852835655, 0.06123762205243111, 0.04150589928030968, 0.13273873925209045, -0.01966724917292595, -0.10358163714408875, 0.18259595334529877, -0.09595422446727753, 0.10042956471443176, 0.09818322956562042, -0.10303356498479843, -0.1416614055633545, -0.03947531431913376, -0.056374866515398026, 0.0190738495439291, 0.025774065405130386, -0.10116816312074661, 0.00255670677870512, -0.07290647178888321, -0.08539123088121414, -0.2753619849681854, -0.2364479899406433, 0.01485972385853529, -0.16858282685279846, 0.1364811509847641, 0.022946786135435104, 0.13748566806316376, 0.022538572549819946, 0.0017164432210847735, -0.07065504044294357, 0.008933267556130886, 0.059033770114183426, 0.15052630007266998, -0.037811338901519775, 0.01052118930965662, 0.08633996546268463, -0.01465551182627678, 0.17426224052906036, -0.006891021504998207, -0.06251891702413559, -0.14011715352535248, 0.03588925674557686, -0.14835196733474731, 0.058064062148332596, -0.07415324449539185, 0.09226538240909576, 0.007299465127289295, -0.03683634474873543, 0.02104177139699459, -0.04722871631383896, 0.08755902200937271, 0.0548739954829216, -0.038217149674892426, -0.029820801690220833, -0.07939750701189041, -0.03844919428229332, 0.10409272462129593, -0.07116661965847015, -0.2574564218521118, 0.004636699799448252, -0.06107069179415703, -0.05072440579533577, 0.05435701459646225, 0.11342854797840118, -0.0005688961828127503, 0.08299652487039566, 0.012853486463427544, 0.0839618444442749, 0.04649544134736061, 0.08339142054319382, -0.07167763262987137, -0.04219416156411171 ]
b49ebb467fb96b1480e07ea89398fa57ce01312d
# Dataset Card for "OxfordPets_test_facebook_opt_6.7b_Visclues_ns_3669" [More Information needed](https://github.com/huggingface/datasets/blob/main/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
Multimodal-Fatima/OxfordPets_test_facebook_opt_6.7b_Visclues_ns_3669
[ "region:us" ]
2023-02-06T19:32:27+00:00
{"dataset_info": {"features": [{"name": "id", "dtype": "int64"}, {"name": "image", "dtype": "image"}, {"name": "prompt", "dtype": "string"}, {"name": "true_label", "dtype": "string"}, {"name": "prediction", "dtype": "string"}, {"name": "scores", "sequence": "float64"}], "splits": [{"name": "fewshot_0_bs_16", "num_bytes": 121471156.375, "num_examples": 3669}, {"name": "fewshot_1_bs_16", "num_bytes": 122822613.375, "num_examples": 3669}, {"name": "fewshot_3_bs_16", "num_bytes": 125537094.375, "num_examples": 3669}], "download_size": 359034680, "dataset_size": 369830864.125}}
2023-02-06T20:32:16+00:00
[]
[]
TAGS #region-us
# Dataset Card for "OxfordPets_test_facebook_opt_6.7b_Visclues_ns_3669" More Information needed
[ "# Dataset Card for \"OxfordPets_test_facebook_opt_6.7b_Visclues_ns_3669\"\n\nMore Information needed" ]
[ "TAGS\n#region-us \n", "# Dataset Card for \"OxfordPets_test_facebook_opt_6.7b_Visclues_ns_3669\"\n\nMore Information needed" ]
[ 6, 32 ]
[ "passage: TAGS\n#region-us \n# Dataset Card for \"OxfordPets_test_facebook_opt_6.7b_Visclues_ns_3669\"\n\nMore Information needed" ]
[ -0.1747554987668991, 0.11158446222543716, -0.0018562180921435356, 0.04602513834834099, 0.015086740255355835, 0.09126750379800797, 0.028360292315483093, 0.10732509195804596, 0.35782644152641296, 0.03597366809844971, 0.21123941242694855, 0.008034395053982735, 0.013450183905661106, 0.164264976978302, -0.09774491935968399, 0.05790034309029579, 0.037998054176568985, 0.04580896347761154, -0.06999792158603668, 0.1079847663640976, -0.0458965003490448, -0.05953571945428848, 0.13896116614341736, -0.07651754468679428, -0.16861028969287872, 0.16535790264606476, 0.0069926404394209385, -0.05546034127473831, 0.11540583521127701, -0.008806913159787655, 0.10194023698568344, 0.02302609384059906, -0.01490653958171606, -0.07393056899309158, 0.021916627883911133, 0.00925075076520443, -0.05820944160223007, 0.04096902906894684, 0.04044421762228012, -0.055187638849020004, -0.06126987934112549, 0.08052469789981842, 0.01960080862045288, 0.028214432299137115, -0.16430680453777313, -0.13721609115600586, -0.07059144973754883, -0.056996043771505356, 0.009426242671906948, 0.07806667685508728, 0.012181962840259075, 0.21800626814365387, -0.14588315784931183, 0.048094794154167175, 0.10077095031738281, -0.09248533844947815, 0.0066845230758190155, 0.10198549181222916, 0.003166596172377467, 0.07522520422935486, -0.024991793558001518, 0.043983470648527145, 0.15738309919834137, 0.03593864664435387, -0.18855789303779602, -0.05283726379275322, -0.010535393841564655, 0.029564954340457916, -0.03847796842455864, -0.11150028556585312, 0.2849309742450714, 0.1225089356303215, -0.05285502225160599, 0.06086939945816994, -0.014262489043176174, 0.06056554615497589, 0.1185784563422203, -0.0360446572303772, -0.02175651118159294, 0.025175105780363083, -0.057366132736206055, -0.0050375573337078094, -0.11317044496536255, -0.1065731942653656, -0.12224996834993362, -0.09958011656999588, -0.047129563987255096, 0.14191138744354248, -0.1647360622882843, 0.01888546533882618, 0.009120353497564793, -0.03566473349928856, -0.002280500018969178, -0.13487188518047333, -0.040758054703474045, -0.05634776130318642, 0.004335676785558462, -0.005119930952787399, 0.13322557508945465, -0.05398554354906082, -0.0006267187418416142, 0.06988292932510376, -0.0993768721818924, 0.03803936764597893, 0.13385972380638123, -0.0749809741973877, 0.03186440095305443, 0.07996207475662231, -0.03490707650780678, 0.04238242283463478, -0.12585613131523132, -0.002568942029029131, 0.022851159796118736, -0.06679161638021469, -0.05300052836537361, 0.03838583081960678, -0.004644142929464579, -0.13741451501846313, -0.09838434308767319, -0.00943623948842287, 0.09978600591421127, -0.05639480799436569, 0.06102572754025459, 0.05983031913638115, -0.09346894174814224, -0.05601926147937775, 0.04783821105957031, -0.11943299323320389, 0.024939021095633507, -0.0884038433432579, -0.06111934781074524, -0.03018803894519806, 0.017204809933900833, -0.0017812947044149041, 0.0841905027627945, -0.06994815915822983, 0.05859263613820076, -0.0866733193397522, -0.22575780749320984, -0.040221765637397766, 0.02804257720708847, -0.03092389740049839, 0.1516444832086563, 0.024657107889652252, 0.07454297691583633, -0.02091556042432785, -0.02195480652153492, 0.060750655829906464, -0.06958234310150146, 0.08335407823324203, 0.055916860699653625, 0.03966797888278961, -0.07088141143321991, 0.045068949460983276, -0.15289974212646484, -0.0038082848768681288, 0.1666119396686554, 0.056657858192920685, -0.1722750961780548, 0.07119399309158325, -0.06141429767012596, -0.0564122311770916, -0.10981947183609009, 0.05503787472844124, 0.03611542284488678, 0.16642434895038605, -0.2067188322544098, -0.06326323747634888, 0.1025361567735672, -0.134784534573555, -0.2278040498495102, 0.0646468922495842, -0.01834176480770111, 0.03531668335199356, 0.07421108335256577, 0.16212472319602966, 0.1644846647977829, -0.12726938724517822, -0.015777792781591415, 0.07644417881965637, -0.16631504893302917, -0.15882417559623718, 0.007186470087617636, -0.06981553137302399, -0.16671012341976166, 0.04420895874500275, 0.16198250651359558, 0.00963923055678606, -0.05727090686559677, -0.03638744354248047, -0.06732309609651566, -0.07774023711681366, 0.12012661248445511, 0.11860489845275879, -0.015381569042801857, -0.15193787217140198, 0.030236927792429924, -0.06644760817289352, 0.025190288200974464, 0.006883617024868727, -0.07018545269966125, -0.022253360599279404, 0.09785284101963043, -0.07406269758939743, -0.04168253019452095, -0.12844179570674896, -0.04884890839457512, 0.015915993601083755, -0.07469383627176285, 0.024625269696116447, 0.1561127007007599, 0.08704749494791031, -0.08669671416282654, 0.03285543620586395, -0.02179139479994774, 0.005889602471143007, -0.023585572838783264, -0.018668130040168762, 0.021402474492788315, 0.014477420598268509, -0.09734877943992615, -0.135649636387825, -0.14400920271873474, -0.07687113434076309, 0.09485815465450287, 0.07853201776742935, 0.009914902970194817, 0.007329440675675869, 0.06231653690338135, -0.012663696892559528, 0.01871531829237938, -0.040865957736968994, -0.011415277607738972, -0.06597036123275757, 0.04931310936808586, -0.17051367461681366, 0.09492091089487076, 0.14352336525917053, 0.10585366934537888, -0.0025805518962442875, -0.04073048755526543, 0.051693957298994064, -0.0412423275411129, 0.03932803124189377, -0.12721802294254303, 0.039796795696020126, 0.04759307950735092, -0.06984591484069824, -0.01293235458433628, -0.09324806928634644, 0.018993088975548744, 0.05370454490184784, -0.02258816361427307, -0.17010581493377686, 0.10873912274837494, 0.06957489252090454, -0.32749634981155396, 0.10238184034824371, 0.1830739676952362, 0.13177058100700378, 0.10017726570367813, -0.05973915755748749, -0.11946924775838852, 0.04125392436981201, 0.04040495678782463, -0.08757034689188004, 0.20567721128463745, -0.1799226850271225, 0.08782464265823364, 0.05355454236268997, 0.00025221527903340757, 0.06274844706058502, -0.07278630137443542, -0.07807091623544693, -0.002249381970614195, -0.015504555776715279, -0.15780237317085266, 0.025561414659023285, 0.06018700450658798, 0.08216796815395355, -0.054495684802532196, -0.02293545939028263, 0.13367986679077148, -0.003848178079351783, -0.13019044697284698, 0.12207039445638657, -0.12289092689752579, -0.2904581129550934, -0.035104505717754364, 0.11782628297805786, 0.06558898836374283, -0.00875514093786478, 0.027674587443470955, -0.23714792728424072, -0.012791760265827179, -0.027012135833501816, -0.05480571463704109, -0.06773691624403, -0.013227593153715134, -0.0004537048807833344, 0.06433619558811188, 0.023184403777122498, -0.07181793451309204, 0.005077584180980921, -0.05739676207304001, 0.14503219723701477, 0.07752189040184021, -0.1186366081237793, 0.002115644048899412, -0.06441658735275269, -0.05538263916969299, 0.07994099706411362, 0.004929997026920319, 0.19156576693058014, -0.020327581092715263, -0.04581598564982414, 0.05567184090614319, 0.030444910749793053, -0.019021788612008095, 0.023187872022390366, -0.04672874137759209, -0.17670013010501862, 0.032246023416519165, -0.007107984274625778, -0.08087583631277084, -0.2658427953720093, -0.06969164311885834, 0.00487093860283494, 0.14528720080852509, 0.12150003015995026, 0.038566287606954575, -0.06880012899637222, 0.1272243708372116, 0.1233132928609848, -0.11986087262630463, -0.15046967566013336, -0.10145644843578339, -0.0008386082481592894, 0.013121742755174637, -0.046850159764289856, -0.137608602643013, 0.05344598740339279, 0.12751224637031555, -0.03657985106110573, 0.1125238761305809, 0.0416034534573555, -0.13943159580230713, 0.016769692301750183, 0.22191122174263, 0.07956019788980484, 0.10994921624660492, 0.11800293624401093, -0.08306527137756348, 0.061573415994644165, 0.045835766941308975, -0.10960149765014648, -0.013756044209003448, 0.15919573605060577, -0.013699350878596306, -0.06643679738044739, -0.08894036710262299, -0.03808877617120743, -0.11278345435857773, 0.21739694476127625, -0.23684647679328918, -0.0016823417972773314, -0.041710689663887024, 0.0463889054954052, -0.14358079433441162, 0.07477205246686935, 0.12021206319332123, -0.07253743708133698, 0.08789393305778503, -0.012893492355942726, 0.06908732652664185, 0.12766364216804504, 0.031060626730322838, -0.059033870697021484, -0.1632499396800995, -0.06962401419878006, 0.11571350693702698, -0.22749705612659454, 0.26234135031700134, 0.01922505721449852, -0.0033696910832077265, -0.08462727814912796, -0.03217669948935509, -0.00871935673058033, -0.0012867266777902842, 0.19662439823150635, -0.007078772410750389, -0.12547633051872253, -0.07373670488595963, -0.010459412820637226, 0.07963167876005173, -0.0011569939088076353, 0.06406231224536896, -0.08589509129524231, 0.06542854756116867, 0.0524493008852005, -0.05754731222987175, -0.0019465003861114383, -0.1586625725030899, 0.0005973655497655272, -0.06253429502248764, -0.04879714176058769, -0.08067208528518677, 0.019856661558151245, -0.024875760078430176, -0.03070976957678795, 0.10972820967435837, 0.01583477482199669, -0.023530179634690285, -0.11176947504281998, 0.16864916682243347, 0.15728700160980225, -0.04834548011422157, -0.055887073278427124, 0.018562186509370804, -0.04776142165064812, -0.04350089281797409, -0.2043381929397583, 0.09820511192083359, -0.06516003608703613, 0.015043552033603191, -0.07469813525676727, 0.1753741204738617, 0.06112518161535263, 0.0038533189799636602, 0.07459397614002228, -0.014783542603254318, -0.027361776679754257, 0.005018537864089012, 0.2675454616546631, -0.23506014049053192, -0.038342610001564026, 0.18215733766555786, 0.11937462538480759, -0.11396874487400055, 0.06625701487064362, 0.04174012690782547, 0.1233302503824234, 0.15287108719348907, 0.0089360186830163, 0.06328751891851425, 0.1455739289522171, -0.056368034332990646, -0.1085032969713211, 0.16441957652568817, -0.06369058042764664, 0.019924363121390343, 0.05231395363807678, -0.17672541737556458, 0.11817561835050583, 0.11744137108325958, -0.0032711538951843977, 0.2178565412759781, -0.08236456662416458, -0.018851444125175476, 0.24441419541835785, 0.05800289288163185, 0.2738212049007416, -0.04273145645856857, -0.05218886211514473, -0.05685173347592354, -0.09678486734628677, 0.1771034598350525, -0.03896740451455116, -0.0019553147722035646, -0.07396307587623596, 0.09478286653757095, 0.016588205471634865, -0.010101180523633957, 0.17743650078773499, 0.001714221783913672, 0.14778205752372742, -0.05820998549461365, 0.04909428954124451, 0.03496062755584717, 0.00807878840714693, 0.10363160818815231, 0.04852626845240593, 0.07477929443120956, -0.20865803956985474, 0.013914184644818306, -0.07610522955656052, 0.12165800482034683, 0.020554404705762863, -0.0041888924315571785, -0.10841435194015503, -0.007064159959554672, -0.12616412341594696, -0.03093678131699562, -0.008559701032936573, -0.012579299509525299, 0.17812974750995636, 0.0906829982995987, 0.1077856793999672, -0.04098312556743622, 0.0202541071921587, 0.022535454481840134, -0.07782036811113358, 0.06777334213256836, -0.14823810756206512, 0.00009537098230794072, 0.17641538381576538, 0.0314200259745121, 0.052913933992385864, -0.0021647061221301556, -0.11132705956697464, 0.06727498769760132, 0.09365214407444, -0.13697129487991333, 0.009998934343457222, 0.0007292951340787113, -0.20326030254364014, -0.02463725581765175, -0.03250441327691078, 0.04552363231778145, 0.050895508378744125, 0.004143121652305126, -0.0658315122127533, -0.0020963263232260942, -0.055765096098184586, 0.12239377945661545, 0.07374362647533417, 0.030960088595747948, -0.1576608270406723, 0.15869995951652527, -0.060269374400377274, -0.2076272964477539, 0.08179856091737747, 0.023029504343867302, -0.03991904854774475, -0.09515320509672165, 0.004615128040313721, 0.2533082067966461, -0.0001259488781215623, -0.05508461594581604, -0.0370398685336113, -0.07220853120088577, 0.07082964479923248, 0.24311277270317078, 0.04389799013733864, 0.05409551411867142, 0.07743007689714432, -0.1027643233537674, -0.029974954202771187, -0.023102492094039917, -0.0032631237991154194, -0.015119560994207859, -0.07266032695770264, -0.17073027789592743, -0.07914399355649948, 0.12702348828315735, -0.06951451301574707, -0.05240625515580177, -0.07609914988279343, 0.06033796817064285, -0.24811574816703796, 0.005914187058806419, 0.0003711886238306761, -0.0204593725502491, 0.031104303896427155, -0.06932525336742401, -0.030757734552025795, -0.03616617992520332, -0.11049920320510864, 0.1109805554151535, 0.14214691519737244, 0.062184661626815796, -0.15266850590705872, -0.002355943899601698, 0.12498798966407776, 0.039096400141716, 0.07153205573558807, 0.10960260033607483, -0.04725632071495056, 0.07529040426015854, -0.08818167448043823, -0.1200663149356842, 0.1134345754981041, 0.04756380245089531, 0.07473251968622208, 0.016424866393208504, 0.04741448163986206, 0.08503231406211853, -0.02960781566798687, 0.09657575935125351, 0.03510431945323944, -0.028622442856431007, -0.014369974844157696, -0.04967626929283142, -0.09265492856502533, 0.015908004716038704, -0.018442688509821892, 0.20533053576946259, 0.03317658230662346, 0.06567295640707016, -0.04298363998532295, 0.009044085629284382, -0.15646736323833466, -0.09613340348005295, 0.004243012052029371, -0.015505190007388592, 0.04302677512168884, 0.08638430386781693, 0.08333080261945724, -0.08151762932538986, 0.23445208370685577, -0.024306152015924454, -0.021216358989477158, -0.0018119869055226445, -0.054634734988212585, 0.04389939829707146, 0.016813743859529495, 0.1616300791501999, -0.02253890037536621, -0.053875889629125595, 0.024658240377902985, -0.009137900546193123, 0.02306940406560898, 0.044513702392578125, 0.12712301313877106, 0.08902940154075623, -0.06027362495660782, 0.02959359809756279, 0.04601678624749184, -0.04190855845808983, 0.18176747858524323, -0.13132867217063904, -0.0626358613371849, 0.07282259315252304, 0.11954756826162338, -0.15711070597171783, 0.01300094835460186, -0.04250164330005646, 0.01823652908205986, -0.07937315851449966, -0.07529345154762268, -0.08729056268930435, -0.07852643728256226, -0.07887240499258041, -0.13176992535591125, 0.11813651770353317, -0.053697966039180756, -0.030460920184850693, 0.1298658698797226, 0.037196751683950424, -0.048216015100479126, 0.06753384321928024, 0.05797198787331581, 0.001156779588200152, 0.13603851199150085, -0.025129690766334534, -0.10381568223237991, 0.05661783367395401, -0.020408209413290024, 0.08312486112117767, -0.030663669109344482, -0.09844402968883514, -0.01863851770758629, -0.06105596199631691, 0.008051957003772259, -0.0980684757232666, -0.05263686180114746, -0.04653818905353546, 0.06307420134544373, -0.09294050931930542, 0.012768742628395557, 0.05478974059224129, 0.0751989409327507, 0.020512906834483147, 0.09127555787563324, 0.030872652307152748, 0.15933126211166382, -0.09191391617059708, -0.00988390389829874, -0.03731925040483475, 0.08185812085866928, 0.04604080691933632, -0.02898607961833477, 0.02607307769358158, 0.03935768082737923, 0.09184697270393372, -0.015295575372874737, -0.017365457490086555, -0.023362241685390472, 0.027050789445638657, 0.03744754195213318, 0.10477343201637268, -0.008161972276866436, -0.03338576480746269, -0.10215896368026733, -0.1251421719789505, 0.005849059205502272, -0.08841732889413834, 0.02598060853779316, 0.018012866377830505, 0.09913580864667892, -0.024609407410025597, -0.09892990440130234, 0.14939042925834656, -0.08743057399988174, 0.12963707745075226, 0.12790943682193756, -0.10174892097711563, -0.13271015882492065, -0.04459765553474426, -0.031134584918618202, 0.034360092133283615, 0.038581520318984985, -0.09661683440208435, -0.0028275656513869762, -0.04549499601125717, -0.09415644407272339, -0.29144296050071716, -0.24327634274959564, -0.004213301930576563, -0.19017605483531952, 0.12168379127979279, 0.03702263534069061, 0.13561241328716278, 0.013428191654384136, -0.00596789363771677, -0.09521368145942688, 0.010038056410849094, 0.07190295308828354, 0.15046007931232452, -0.03873274847865105, 0.013521157205104828, 0.08283649384975433, -0.011731878854334354, 0.14437457919120789, 0.005724514368921518, -0.05937667191028595, -0.07998977601528168, 0.041798777878284454, -0.11154290288686752, 0.07557377964258194, -0.06839067488908768, 0.08588684350252151, 0.02108706720173359, -0.038951653987169266, 0.01619621366262436, -0.04820649325847626, 0.11594891548156738, 0.051579996943473816, -0.06866228580474854, -0.029547935351729393, -0.07253025472164154, -0.03745519369840622, 0.07206850498914719, -0.06603316217660904, -0.1851334422826767, -0.018911704421043396, -0.09912034124135971, -0.049322277307510376, 0.0662565678358078, 0.09894643723964691, 0.029380830004811287, 0.08741336315870285, 0.024721767753362656, 0.0702056884765625, 0.0670897588133812, 0.07189244031906128, -0.048278193920850754, -0.06852326542139053 ]
6a7c3281bf85095260f4bc6710b4b6d435d53f09
# Dataset Card for "test_americanas" [More Information needed](https://github.com/huggingface/datasets/blob/main/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
ricardo-filho/test_americanas
[ "region:us" ]
2023-02-06T20:53:18+00:00
{"dataset_info": {"features": [{"name": "Unnamed: 0", "dtype": "int64"}, {"name": "sentence", "dtype": "string"}, {"name": "label", "dtype": "string"}], "splits": [{"name": "test", "num_bytes": 83378, "num_examples": 961}], "download_size": 50417, "dataset_size": 83378}}
2023-02-06T20:53:20+00:00
[]
[]
TAGS #region-us
# Dataset Card for "test_americanas" More Information needed
[ "# Dataset Card for \"test_americanas\"\n\nMore Information needed" ]
[ "TAGS\n#region-us \n", "# Dataset Card for \"test_americanas\"\n\nMore Information needed" ]
[ 6, 14 ]
[ "passage: TAGS\n#region-us \n# Dataset Card for \"test_americanas\"\n\nMore Information needed" ]
[ -0.24366778135299683, 0.23059888184070587, -0.005019675474613905, -0.04551704600453377, 0.07436919212341309, 0.1481446921825409, 0.12401175498962402, 0.07700156420469284, 0.19137699902057648, -0.045519184321165085, 0.15642672777175903, 0.037315111607313156, 0.0311566274613142, 0.158829003572464, -0.11371555924415588, 0.06270814687013626, -0.0095845190808177, 0.060242217034101486, -0.011556506156921387, 0.10454808920621872, -0.04303337261080742, -0.046702791005373, 0.045424554497003555, -0.09603595733642578, -0.19914068281650543, 0.10001107305288315, 0.014546153135597706, -0.0894332155585289, 0.08038043975830078, -0.0869627594947815, 0.21995346248149872, 0.03425799682736397, -0.03670840337872505, -0.18999642133712769, -0.006930602248758078, -0.07265079766511917, 0.0444461889564991, 0.05010911822319031, 0.029771292582154274, -0.08542712777853012, -0.07631926983594894, 0.09834486246109009, 0.04939712956547737, 0.024058198556303978, -0.22611261904239655, -0.24107056856155396, -0.13300038874149323, -0.21710079908370972, -0.024729786440730095, 0.000031281884730560705, 0.06064143776893616, 0.22443382441997528, -0.1797361969947815, -0.013271058909595013, 0.09022492170333862, 0.028684690594673157, 0.054740142077207565, 0.13770852982997894, 0.04904961585998535, 0.002098067430779338, 0.003034377470612526, 0.05516430735588074, 0.1499437689781189, 0.0077789598144590855, -0.17427994310855865, -0.0813104435801506, -0.040454939007759094, 0.11415674537420273, -0.03800111636519432, -0.10330764204263687, 0.36554232239723206, 0.007228700909763575, -0.019830191507935524, 0.04124553129076958, 0.05549575760960579, -0.04744185134768486, 0.10211875289678574, -0.00791469682008028, 0.023903900757431984, -0.04844975098967552, 0.05289848521351814, 0.03862277418375015, -0.10146885365247726, -0.17081661522388458, -0.19101862609386444, 0.03570651635527611, -0.051173191517591476, 0.11515969038009644, -0.1980917602777481, -0.025225253775715828, -0.019212985411286354, -0.048746634274721146, -0.02838762104511261, -0.12176868319511414, -0.05165212228894234, -0.0545564703643322, -0.020819740369915962, -0.06317392736673355, 0.13784880936145782, 0.1110190749168396, 0.004844952840358019, 0.10198862105607986, -0.12871189415454865, 0.030202098190784454, 0.11039461940526962, 0.0754970982670784, 0.17184855043888092, 0.032101333141326904, -0.10362395644187927, -0.10953518748283386, -0.10289265960454941, -0.026354236528277397, -0.021522963419556618, -0.01324217114597559, -0.013866151683032513, 0.19668757915496826, -0.10265751928091049, -0.18240846693515778, -0.09857887029647827, 0.008998085744678974, -0.03547772020101547, -0.10699639469385147, 0.017018044367432594, 0.05347892642021179, -0.0552954375743866, 0.04709053412079811, -0.10518000274896622, -0.06490106135606766, 0.08181751519441605, -0.04143219813704491, -0.0457293875515461, -0.07113167643547058, -0.08847424387931824, -0.0005663453484885395, 0.0692768320441246, -0.2102358192205429, 0.12951797246932983, -0.07760972529649734, -0.2529371976852417, -0.055447280406951904, 0.026527153328061104, -0.05100540444254875, 0.16681711375713348, -0.029505133628845215, 0.14655768871307373, -0.07441230118274689, -0.054983627051115036, 0.04977668449282646, -0.046352457255125046, 0.10522323846817017, 0.10033586621284485, 0.023849159479141235, -0.04091627895832062, 0.03261056914925575, -0.1313854306936264, 0.03560790792107582, -0.0453234426677227, 0.006008576601743698, -0.09674481302499771, 0.12383058667182922, -0.07849046587944031, -0.07756444066762924, -0.11141163855791092, 0.0482792854309082, -0.01464072335511446, 0.17612862586975098, -0.1498759537935257, -0.04853979870676994, 0.2000662088394165, -0.11145219206809998, -0.18960143625736237, -0.024518035352230072, -0.0439567007124424, 0.11943940073251724, 0.09245040267705917, 0.3954195976257324, 0.025604674592614174, -0.1310676485300064, 0.18669521808624268, 0.0956125482916832, -0.0781392753124237, -0.21356196701526642, 0.1207871064543724, -0.12671296298503876, -0.2624053955078125, 0.05332288518548012, 0.06591515243053436, -0.0034303851425647736, -0.05758515000343323, -0.0411333329975605, 0.0335102416574955, -0.11391955614089966, 0.09076347202062607, 0.09190676361322403, 0.015029455535113811, -0.07070333510637283, 0.1498318761587143, 0.010319635272026062, 0.06737567484378815, 0.012679904699325562, -0.0961616039276123, -0.06722795963287354, 0.1627054661512375, -0.09862930327653885, -0.07838531583547592, -0.16555847227573395, -0.04737018048763275, 0.01594296656548977, 0.032293036580085754, -0.027304016053676605, 0.05224470794200897, 0.07834241539239883, -0.10889244824647903, 0.07556121796369553, 0.019549759104847908, 0.12852676212787628, 0.018930068239569664, 0.00301845814101398, 0.041049182415008545, 0.08453474193811417, -0.056373730301856995, 0.0004705209285020828, -0.1281820684671402, -0.10582795739173889, 0.03350602462887764, -0.02168123610317707, 0.05154378339648247, 0.012219630181789398, 0.06050660088658333, 0.06347694247961044, 0.03549697622656822, -0.08149535208940506, -0.0211772620677948, -0.04706292226910591, 0.019737297669053078, -0.004768894985318184, 0.007694224361330271, 0.1983812302350998, 0.08365312963724136, 0.007111427839845419, -0.0016764290630817413, -0.11306198686361313, 0.02504057250916958, 0.04985721781849861, -0.10333740711212158, 0.050903644412755966, -0.038711681962013245, -0.035672035068273544, 0.048994291573762894, -0.09451112896203995, 0.049713119864463806, 0.0519699901342392, -0.037262268364429474, -0.12371928244829178, 0.08925333619117737, 0.1008366048336029, -0.23286640644073486, 0.12147852033376694, 0.19327469170093536, 0.09389498084783554, 0.14273546636104584, -0.16576524078845978, -0.13077980279922485, 0.00464885076507926, 0.003416799008846283, -0.045902978628873825, 0.24939221143722534, -0.08885981887578964, 0.11901786178350449, 0.09830180555582047, 0.03487556800246239, 0.08552516251802444, -0.11081061512231827, -0.15452921390533447, 0.004186596721410751, 0.01628699339926243, -0.18036587536334991, 0.07293976098299026, 0.020968174561858177, 0.051279518753290176, -0.009236210025846958, -0.013257295824587345, 0.11903717368841171, -0.018849099054932594, -0.10764525085687637, 0.12410584837198257, -0.1388365775346756, -0.2303095906972885, -0.057267237454652786, -0.05344466492533684, 0.13062530755996704, 0.030795656144618988, 0.013570920564234257, -0.18172705173492432, -0.008426879532635212, 0.0588652528822422, -0.106486976146698, -0.11558359861373901, -0.0621560700237751, 0.032529380172491074, 0.08379713445901871, -0.035824935883283615, -0.04213354364037514, 0.016283806413412094, -0.008305108174681664, 0.1569819450378418, 0.14073939621448517, -0.23049646615982056, 0.1197328194975853, 0.11839316040277481, -0.012258422560989857, 0.05990511551499367, -0.03854791447520256, 0.09155108779668808, -0.14987002313137054, -0.12291520833969116, 0.11989027261734009, -0.008195650763809681, -0.03175097703933716, 0.002475212560966611, -0.049139734357595444, -0.1562519669532776, -0.05273469164967537, -0.09439665824174881, -0.1242825910449028, -0.3804372549057007, -0.06942466646432877, -0.019048405811190605, 0.0336180217564106, 0.07957201451063156, -0.010713309049606323, -0.041689276695251465, 0.13308726251125336, 0.1985429972410202, -0.10505058616399765, -0.15296833217144012, -0.08742489665746689, 0.05439217761158943, -0.002579270862042904, -0.07090563327074051, -0.17115454375743866, -0.01578793302178383, 0.1310650110244751, 0.16337919235229492, 0.2261895090341568, 0.15615811944007874, 0.06429276615381241, 0.0355994887650013, 0.12140282243490219, 0.03907440975308418, 0.1548655778169632, 0.07727973908185959, -0.01336099673062563, -0.014853282831609249, 0.01996510662138462, -0.0891435369849205, -0.043520908802747726, 0.07103037089109421, -0.13574309647083282, -0.0646083876490593, -0.17756031453609467, -0.0036659303586930037, -0.15577617287635803, 0.13698311150074005, -0.2238585203886032, 0.0804634690284729, -0.0006544764037244022, 0.11145848035812378, -0.1626538783311844, 0.09572035074234009, 0.068324975669384, -0.1059267446398735, 0.18042071163654327, 0.01474641915410757, 0.07296502590179443, 0.04621081426739693, 0.031667739152908325, -0.08518090844154358, -0.1625496745109558, 0.002833201549947262, 0.1987987756729126, -0.3079209625720978, 0.2929014265537262, 0.01224077120423317, -0.05230383947491646, -0.126983180642128, -0.09494170546531677, -0.055470626801252365, -0.005053184926509857, 0.14505888521671295, -0.061729639768600464, -0.18729834258556366, -0.1577681452035904, 0.0314582921564579, 0.058440834283828735, 0.06036042794585228, 0.08645171672105789, -0.0930713415145874, 0.01148290652781725, 0.06922588497400284, -0.06893172115087509, -0.20247097313404083, -0.10482611507177353, 0.007231866475194693, 0.01072157546877861, -0.09450668096542358, -0.10260502249002457, 0.05169852450489998, 0.02766907773911953, -0.14932255446910858, -0.005404128227382898, 0.0007244981825351715, -0.0002849455922842026, -0.10667964071035385, -0.04880760610103607, 0.21278361976146698, -0.03258395195007324, -0.05344504117965698, 0.02779952436685562, -0.028583243489265442, 0.012433275580406189, -0.13235187530517578, 0.06634347140789032, -0.03325609862804413, 0.0430956594645977, -0.0736631527543068, 0.05593077465891838, -0.07792942970991135, 0.047873277217149734, 0.06166967377066612, -0.013994459062814713, -0.01608251966536045, -0.05366211012005806, 0.15613825619220734, -0.1848820000886917, 0.06659867614507675, 0.21743154525756836, 0.046889226883649826, 0.026990259066224098, 0.046823278069496155, -0.08668168634176254, 0.21027588844299316, 0.12661702930927277, 0.0019172882894054055, 0.15718327462673187, 0.1088208332657814, -0.14918068051338196, -0.17425298690795898, 0.15174104273319244, -0.16048748791217804, 0.059669483453035355, 0.19097720086574554, -0.23227141797542572, 0.027356239035725594, 0.17924274504184723, -0.0535566471517086, 0.20619897544384003, -0.2195369452238083, 0.03150501474738121, 0.20204854011535645, 0.04311130568385124, 0.2752348482608795, -0.1484609693288803, -0.10449091345071793, -0.09511158615350723, -0.03869195282459259, 0.07406624406576157, -0.07685678452253342, -0.02416759543120861, -0.0479147844016552, 0.10460653901100159, 0.07864212244749069, -0.06981968134641647, 0.2489655464887619, -0.03738445043563843, 0.12388334423303604, -0.045596566051244736, -0.04650701954960823, 0.0708964467048645, -0.045749008655548096, 0.0974721685051918, 0.010039662942290306, 0.05119972303509712, -0.17785078287124634, -0.009387165307998657, 0.04695168137550354, 0.037563491612672806, 0.055382926017045975, -0.01675437204539776, -0.07688242942094803, -0.034628357738256454, -0.13421578705310822, -0.04317745193839073, 0.08091206103563309, -0.02652767486870289, 0.08454221487045288, -0.039977893233299255, 0.1871827244758606, -0.044925253838300705, -0.009194699116051197, -0.03127730265259743, -0.019856922328472137, 0.049320708960294724, -0.15286943316459656, 0.04785442352294922, 0.2090245932340622, -0.014210757799446583, 0.08265086263418198, -0.0024634224828332663, -0.09115120023488998, 0.0627635195851326, 0.1472676545381546, -0.017050787806510925, 0.04158351942896843, 0.04720303416252136, -0.04938508942723274, -0.028348371386528015, 0.02986532263457775, 0.0309233907610178, 0.14816683530807495, 0.004366637207567692, -0.10411771386861801, 0.04104739427566528, -0.05621373653411865, 0.1515357494354248, 0.11474588513374329, 0.02900835871696472, -0.15143778920173645, 0.13417001068592072, 0.033837541937828064, -0.12365839630365372, 0.001656202133744955, -0.03281346708536148, -0.05218474939465523, -0.05112027749419212, -0.0033563822507858276, 0.30600666999816895, -0.09498777985572815, -0.16112220287322998, -0.08783775568008423, -0.057482004165649414, 0.022301241755485535, 0.18265657126903534, 0.055736999958753586, 0.12906606495380402, 0.10369623452425003, -0.12388680130243301, 0.017796633765101433, -0.08149149268865585, -0.08592447638511658, -0.013241049833595753, -0.0767759382724762, -0.17424698173999786, -0.03434773534536362, 0.17609508335590363, -0.07986986637115479, -0.08447722345590591, -0.15487419068813324, 0.18291784822940826, -0.28337594866752625, 0.07602367550134659, 0.020876815542578697, 0.008350652642548084, 0.05405610799789429, -0.019294114783406258, -0.022312788292765617, -0.05085313320159912, -0.15541234612464905, 0.18835358321666718, 0.08322534710168839, 0.03949756547808647, -0.04079815745353699, 0.011552329175174236, 0.12534457445144653, 0.020838141441345215, 0.0852624848484993, 0.015370476059615612, -0.0060674273408949375, 0.09513599425554276, -0.06028599664568901, -0.08551160246133804, 0.06839733570814133, 0.11187627166509628, 0.049486104398965836, -0.08087357133626938, 0.005747975781559944, 0.15354706346988678, -0.01717679761350155, 0.13101200759410858, -0.0873458981513977, -0.07456167787313461, -0.008742920123040676, -0.039843570441007614, -0.15453647077083588, 0.027616947889328003, -0.03789268806576729, 0.17463058233261108, -0.00975110288709402, 0.015367777086794376, 0.08691086620092392, 0.04444447159767151, -0.026132067665457726, -0.06466840952634811, -0.0313093326985836, -0.05961257219314575, -0.0345921516418457, 0.08435564488172531, 0.06330715864896774, -0.013922938145697117, 0.49110403656959534, 0.006989097688347101, 0.029012054204940796, -0.05612168833613396, 0.07056751102209091, 0.06921745091676712, 0.00771549204364419, 0.2554594576358795, 0.032453540712594986, -0.01789979077875614, -0.05148191750049591, 0.018716230988502502, -0.06298480182886124, 0.060418952256441116, 0.04384853318333626, 0.1490732878446579, -0.004204664845019579, -0.012173370458185673, -0.08579034358263016, 0.005547227803617716, 0.17877770960330963, -0.04634616896510124, 0.009680231101810932, 0.023381799459457397, 0.16935710608959198, -0.014276616275310516, 0.009320984594523907, -0.0686110258102417, 0.04460655152797699, -0.1346830129623413, -0.06035546958446503, -0.1428689956665039, -0.05993635579943657, -0.03650907054543495, -0.11610579490661621, 0.07899043709039688, -0.010300256311893463, -0.010165425948798656, 0.23031997680664062, 0.06889886409044266, -0.04409069940447807, 0.01486140862107277, -0.006361105944961309, -0.012307822704315186, 0.06128488853573799, 0.008409698493778706, -0.03968682885169983, -0.050293684005737305, -0.00923413410782814, 0.05708691477775574, -0.03773830458521843, 0.004155078437179327, -0.022068997845053673, 0.008572314865887165, -0.029475271701812744, -0.15606029331684113, -0.02303636074066162, -0.04689997807145119, 0.10835912823677063, -0.09105890989303589, -0.014546703547239304, 0.015118206851184368, 0.12761680781841278, 0.03152748569846153, 0.09671477228403091, 0.07998254150152206, 0.024695737287402153, -0.09687099605798721, 0.04837382957339287, -0.08350219577550888, 0.08120585232973099, -0.05052371323108673, -0.04154815152287483, 0.06952280551195145, 0.27226006984710693, 0.19230936467647552, -0.00716714421287179, -0.05758358910679817, -0.041253555566072464, 0.027611324563622475, 0.04080642759799957, 0.1314995437860489, -0.048093412071466446, 0.07259280234575272, -0.025734877213835716, -0.1150258481502533, -0.004497405141592026, -0.013234607875347137, 0.05825912952423096, 0.04822832718491554, 0.04186417534947395, -0.034883324056863785, -0.056295961141586304, 0.24897699058055878, -0.14214912056922913, 0.13014023005962372, 0.12063553929328918, -0.07483404874801636, -0.16696178913116455, -0.059328317642211914, 0.15863288938999176, -0.05967271700501442, -0.019550656899809837, -0.08170350641012192, -0.1184593215584755, -0.1191839948296547, -0.04434160515666008, -0.24929749965667725, -0.2676505744457245, 0.04917324706912041, -0.003241869853809476, 0.13655436038970947, 0.028340132907032967, 0.19898229837417603, -0.019675489515066147, 0.06159944459795952, -0.08966336399316788, 0.05072025954723358, 0.10190314054489136, 0.11644739657640457, 0.008147996850311756, -0.03389166295528412, 0.014464770443737507, 0.0039766826666891575, 0.08546320348978043, 0.04616260156035423, -0.025699950754642487, 0.00040411329246126115, 0.024378320202231407, -0.08294118195772171, -0.02506929077208042, -0.09570006281137466, 0.08090293407440186, 0.019290795549750328, -0.030373254790902138, 0.0523439459502697, -0.020110001787543297, 0.1556880921125412, 0.05725862458348274, -0.07280654460191727, -0.047622840851545334, -0.07429772615432739, -0.06589344888925552, 0.12281128764152527, -0.05355236306786537, -0.14604152739048004, 0.10585635900497437, -0.06928078085184097, -0.0313459187746048, 0.0681709498167038, 0.06021839380264282, 0.041957009583711624, 0.12016228586435318, -0.030027607455849648, -0.015478032641112804, 0.03894297406077385, 0.04801510274410248, -0.03843175247311592, -0.06413621455430984 ]
0dc4c326436b30f901b484ecaabb0962d7a97ca7
https://github.com/facebookresearch/dadc-limit ``` @inproceedings{Wallace2022Dynamic, Title = {Analyzing Dynamic Adversarial Training Data in the Limit}, Author = {Eric Wallace and Adina Williams and Robin Jia and Douwe Kiela}, Booktitle={Findings of the Association for Computational Linguistics}, Year = {2022} } ```
tasksource/dadc-limit-nli
[ "task_ids:natural-language-inference", "language:en", "license:cc", "region:us" ]
2023-02-06T21:03:12+00:00
{"language": ["en"], "license": "cc", "task_ids": ["natural-language-inference"]}
2023-05-31T07:45:20+00:00
[]
[ "en" ]
TAGS #task_ids-natural-language-inference #language-English #license-cc #region-us
URL
[]
[ "TAGS\n#task_ids-natural-language-inference #language-English #license-cc #region-us \n" ]
[ 28 ]
[ "passage: TAGS\n#task_ids-natural-language-inference #language-English #license-cc #region-us \n" ]
[ -0.02575576677918434, -0.015368610620498657, -0.008574146777391434, -0.02471833862364292, 0.00047324830666184425, 0.06584255397319794, 0.14583198726177216, 0.04689476639032364, 0.27820831537246704, -0.05024174600839615, 0.10981892794370651, 0.1033284068107605, 0.01206441130489111, -0.08154972642660141, -0.04831245541572571, -0.181310772895813, 0.014480454847216606, -0.041649166494607925, 0.07064308226108551, 0.029759950935840607, 0.07446498423814774, -0.03528492897748947, 0.01761329360306263, -0.05290058255195618, -0.01874253898859024, 0.014114180579781532, 0.031017936766147614, -0.058432430028915405, 0.16110560297966003, 0.05509120970964432, 0.12788726389408112, 0.054882392287254333, -0.023783443495631218, -0.27897655963897705, 0.0026344959624111652, -0.08942891657352448, -0.0521998405456543, 0.015310305170714855, 0.015880268067121506, 0.03356790170073509, 0.06755128502845764, 0.06910330057144165, -0.000029357150197029114, 0.06809122115373611, -0.21067410707473755, -0.040094442665576935, 0.004682579077780247, -0.021185800433158875, -0.03286672383546829, 0.08188389241695404, 0.034755393862724304, 0.07168418169021606, -0.2125757485628128, 0.015548484399914742, -0.045379363000392914, -0.2468504011631012, 0.048176296055316925, 0.23928380012512207, 0.07997708022594452, 0.11364822089672089, -0.0641116201877594, 0.04541785269975662, 0.04757236689329147, -0.01970273070037365, -0.15730410814285278, -0.10211071372032166, -0.07729440927505493, 0.09565331041812897, -0.07448083162307739, -0.06009198725223541, 0.26614442467689514, -0.008346608839929104, 0.013746749609708786, -0.0057547325268387794, -0.007517995312809944, 0.04388865828514099, 0.01388116367161274, -0.001088603399693966, -0.01544240117073059, 0.15344297885894775, 0.25267624855041504, -0.08824212104082108, -0.11255727708339691, -0.030399911105632782, -0.1977350115776062, 0.08359961211681366, 0.02910226210951805, 0.060123443603515625, -0.07433851063251495, 0.00595582090318203, -0.04971453547477722, -0.051611967384815216, -0.03709356114268303, -0.07048247754573822, -0.01917482726275921, -0.011793171055614948, 0.03967049717903137, 0.10390147566795349, 0.08518283069133759, 0.07724057137966156, -0.043683215975761414, 0.018451573327183723, -0.1378009021282196, 0.19086992740631104, 0.06470461189746857, 0.09845186769962311, 0.09968975186347961, 0.09525489807128906, 0.0015818523243069649, -0.10600699484348297, -0.05736473202705383, -0.032058291137218475, -0.1299644112586975, -0.020327789708971977, -0.16424977779388428, 0.2043486386537552, 0.04124697297811508, -0.05705202370882034, -0.12050652503967285, 0.04020233079791069, 0.1445775330066681, -0.04456808418035507, -0.0648062527179718, 0.04182398319244385, 0.007804444059729576, 0.031869783997535706, -0.1009187400341034, 0.03595264256000519, -0.01744183897972107, -0.03812391310930252, -0.06253094226121902, -0.020246995612978935, -0.02162519097328186, -0.028957176953554153, 0.082232266664505, -0.09928548336029053, 0.05948721617460251, -0.07994303107261658, -0.18284395337104797, -0.009254785254597664, -0.0014043129049241543, -0.03963185474276543, 0.009100123308598995, -0.043716151267290115, 0.033535510301589966, -0.03930339962244034, -0.08121757954359055, -0.16658949851989746, -0.12988421320915222, 0.0952017679810524, -0.11846575886011124, -0.019639980047941208, -0.1993221938610077, -0.029694046825170517, -0.1591474711894989, 0.007032864727079868, -0.006339346989989281, 0.020464537665247917, -0.0895187258720398, 0.12075722217559814, -0.04634546488523483, 0.019780071452260017, -0.06967994570732117, 0.09340029209852219, -0.16883325576782227, 0.17890039086341858, -0.12468001246452332, -0.03941607475280762, 0.10688450932502747, -0.06714066863059998, -0.08935873210430145, 0.07446005195379257, 0.02290857955813408, 0.142454594373703, 0.07067495584487915, 0.29445040225982666, -0.09450921416282654, -0.10583297908306122, 0.12316010892391205, 0.19201889634132385, -0.0406041294336319, -0.05963093787431717, 0.06204317510128021, -0.11831827461719513, -0.11050285398960114, -0.011927916668355465, 0.0026515312492847443, 0.02165866270661354, -0.03944609686732292, -0.11293581128120422, 0.023148857057094574, 0.03500312194228172, 0.035988207906484604, 0.05945751443505287, 0.0570894256234169, -0.05985589325428009, 0.0495077520608902, -0.032786160707473755, -0.01654650829732418, 0.0894407331943512, -0.009889171458780766, -0.05588257312774658, 0.0008317777537740767, 0.09543140977621078, 0.017931437119841576, -0.09186752140522003, -0.10156029462814331, 0.053754813969135284, 0.15437382459640503, 0.1716654896736145, 0.22600680589675903, 0.0018912195228040218, -0.07530800253152847, -0.00618656724691391, 0.02961752936244011, 0.03352469578385353, 0.017726778984069824, 0.01087300106883049, -0.15617798268795013, 0.13593780994415283, -0.028872592374682426, -0.06841802597045898, -0.2216065227985382, -0.036994509398937225, 0.08995389938354492, -0.036375828087329865, 0.032748449593782425, 0.09631069004535675, -0.07053791731595993, 0.08468842506408691, -0.015823010355234146, 0.05240070819854736, 0.08687159419059753, -0.060669977217912674, -0.07461094856262207, 0.2246379554271698, -0.02314644306898117, 0.1625232696533203, 0.159671351313591, -0.20194368064403534, 0.03302499279379845, -0.12769770622253418, -0.013904649764299393, 0.008315622806549072, 0.0606529526412487, -0.09016738831996918, 0.13294486701488495, 0.031027063727378845, 0.0005316585302352905, -0.07661976665258408, 0.030696600675582886, -0.056258976459503174, -0.03834962472319603, -0.05413252115249634, 0.09448257833719254, 0.18108105659484863, -0.11987508833408356, 0.16690480709075928, 0.26164424419403076, 0.10964703559875488, 0.23333585262298584, -0.12325587123632431, -0.053677111864089966, 0.028861314058303833, 0.06223516911268234, -0.044774290174245834, 0.1319582313299179, -0.1675317883491516, -0.021622439846396446, 0.06592560559511185, 0.07251139730215073, 0.04480401426553726, -0.17237630486488342, -0.13695663213729858, -0.05196273326873779, -0.07411433756351471, -0.13483774662017822, 0.01994963362812996, -0.008615242317318916, 0.04491886496543884, -0.042946603149175644, -0.14987128973007202, 0.11376677453517914, -0.0314449816942215, -0.06630421429872513, 0.100733682513237, -0.1501627266407013, -0.15742920339107513, -0.14463549852371216, -0.0334823876619339, 0.0285114124417305, 0.0346207469701767, 0.0561627559363842, -0.0709448978304863, -0.07370463013648987, 0.02087976224720478, 0.06831351667642593, -0.1369224637746811, -0.15250231325626373, -0.1274227797985077, 0.10745751857757568, -0.16609452664852142, -0.07098932564258575, -0.06235397607088089, 0.01957540027797222, 0.004366560839116573, 0.08397665619850159, -0.17930462956428528, 0.029747426509857178, 0.20952323079109192, 0.0776987224817276, 0.001473048236221075, -0.09466199576854706, 0.2069908082485199, -0.11490669846534729, -0.04651213064789772, 0.11521538347005844, -0.010368062183260918, 0.0010940406937152147, 0.2637784779071808, 0.06888292729854584, -0.114395372569561, -0.013320885598659515, -0.05997587740421295, -0.09489002078771591, -0.3478444218635559, -0.10738259553909302, -0.1270252913236618, 0.1210651844739914, -0.01089977566152811, 0.07550646364688873, 0.19130322337150574, -0.04455553740262985, 0.014658916741609573, -0.018686208873987198, 0.08091264963150024, 0.013272400014102459, 0.280802458524704, -0.06020600348711014, 0.059699662029743195, -0.07173943519592285, -0.03670977056026459, 0.08367960900068283, 0.1548718810081482, 0.12585397064685822, 0.2984374761581421, 0.2522805333137512, 0.05370809882879257, 0.12491701543331146, 0.08645294606685638, 0.03098241612315178, 0.05772329866886139, 0.0029621804133057594, -0.059214286506175995, -0.0445261225104332, 0.007592916488647461, 0.08340751379728317, 0.2029610425233841, -0.23065055906772614, 0.12081938982009888, -0.23271647095680237, 0.025982102379202843, 0.05656040087342262, 0.07184833288192749, 0.01668122224509716, 0.1144760400056839, 0.0928964614868164, 0.035907164216041565, -0.10073640942573547, 0.19879822432994843, 0.04042661190032959, -0.05497318506240845, -0.05716449394822121, 0.08720238506793976, 0.12074791640043259, -0.04194628447294235, 0.09055376052856445, -0.19702333211898804, -0.22651168704032898, 0.05976516380906105, 0.11946485191583633, -0.22673678398132324, 0.2973394989967346, 0.06034371256828308, -0.03810810297727585, -0.0939805805683136, -0.06499171257019043, -0.015479877591133118, 0.16856208443641663, 0.13599251210689545, 0.028814207762479782, -0.15009866654872894, -0.16948524117469788, -0.041262187063694, -0.023998409509658813, 0.08314754068851471, 0.014810055494308472, -0.112417072057724, -0.02973427250981331, 0.045322369784116745, -0.005989374592900276, -0.08602970838546753, -0.13449355959892273, -0.1023876965045929, 0.02368161827325821, 0.0725252777338028, 0.08255978673696518, -0.01683095656335354, 0.019639555364847183, -0.06418760865926743, 0.07552222162485123, -0.17500180006027222, -0.01236654818058014, -0.07102251052856445, -0.23531191051006317, 0.09889625012874603, -0.013233772478997707, -0.038660913705825806, -0.026458509266376495, -0.10870572179555893, -0.09705468267202377, -0.06388220191001892, 0.17722763121128082, -0.04235795885324478, 0.0034148460254073143, -0.08491317927837372, 0.14188915491104126, -0.04454150050878525, 0.08761213719844818, -0.00012925593182444572, 0.04882534593343735, -0.01837589219212532, -0.10075706988573074, 0.03579988703131676, -0.1244993507862091, -0.059902045875787735, 0.13935449719429016, -0.12494513392448425, -0.02826118841767311, -0.03517822176218033, -0.1411793828010559, 0.23544567823410034, 0.3034231960773468, 0.0136343352496624, 0.11597368121147156, 0.2858845293521881, -0.1570231020450592, -0.2948920726776123, -0.00046462658792734146, -0.21910294890403748, -0.012982259504497051, 0.062349699437618256, -0.20482772588729858, 0.030066274106502533, 0.11148767173290253, -0.06554588675498962, 0.21022450923919678, -0.24925662577152252, -0.06063041090965271, 0.09979166835546494, -0.027034131810069084, 0.2783079445362091, -0.1471632421016693, -0.11714695394039154, -0.020782101899385452, -0.13753576576709747, 0.12106266617774963, 0.010110113769769669, 0.03597244620323181, 0.014881044626235962, -0.05085715651512146, 0.025823427364230156, -0.0025270823389291763, 0.19420135021209717, -0.0322934091091156, 0.06996884942054749, -0.008324500173330307, -0.11335167288780212, 0.14690488576889038, 0.07813436537981033, -0.008074008859694004, -0.004488040693104267, -0.023450735956430435, -0.07301522046327591, -0.030620472505688667, -0.06319477409124374, 0.077135369181633, -0.030374474823474884, -0.09552548825740814, -0.07458730787038803, 0.01620761677622795, -0.09275226294994354, 0.005857889540493488, 0.35643044114112854, -0.11553411930799484, -0.02368735894560814, 0.09032896161079407, 0.10623790323734283, -0.08508743345737457, 0.022533761337399483, -0.038444701582193375, -0.04926634579896927, 0.08914779126644135, -0.09077663719654083, -0.019206365570425987, 0.164820596575737, -0.04614591598510742, 0.1380232721567154, 0.034203991293907166, -0.02630867436528206, 0.005006595514714718, 0.07194846868515015, 0.02438068576157093, -0.1274058222770691, -0.002410931047052145, 0.012684240005910397, 0.12973833084106445, -0.1032894030213356, 0.06444531679153442, 0.05936819314956665, 0.04701228439807892, 0.02138226106762886, -0.04298765957355499, -0.06960225105285645, -0.021148188039660454, 0.04953177645802498, 0.005090216174721718, -0.08141802251338959, 0.09827126562595367, 0.10829351097345352, -0.09263947606086731, -0.05786749720573425, 0.08212393522262573, -0.04179930314421654, -0.07897312194108963, -0.14087700843811035, 0.011025642044842243, -0.1134072095155716, -0.07132941484451294, -0.0007179146632552147, -0.1926426738500595, -0.012492598965764046, 0.1874023973941803, -0.014747561886906624, 0.08287155628204346, -0.0016848305240273476, -0.051641203463077545, 0.16370360553264618, -0.016972526907920837, -0.214199960231781, -0.016885388642549515, -0.0109145138412714, -0.10021288692951202, 0.02638361230492592, 0.056713998317718506, -0.05925462394952774, -0.1075645312666893, -0.21831128001213074, 0.11483359336853027, -0.10508665442466736, 0.0421946719288826, -0.07246482372283936, 0.0013252400094643235, 0.04338936507701874, -0.046981554478406906, 0.0002399953082203865, -0.07522392272949219, -0.16503936052322388, 0.05770055949687958, 0.04104696959257126, 0.17164763808250427, -0.011328627355396748, -0.07090418040752411, 0.11853550374507904, 0.022136883810162544, 0.08091641217470169, 0.02201046794652939, -0.05459211394190788, 0.1909210979938507, -0.1503303050994873, 0.04863652214407921, 0.15850841999053955, 0.09972542524337769, 0.026090441271662712, 0.07567500323057175, -0.07173621654510498, 0.0788726732134819, 0.017717838287353516, 0.056935910135507584, -0.20271256566047668, -0.12191661447286606, -0.03483766317367554, -0.00005251355469226837, -0.2506455183029175, 0.06938531249761581, -0.10131242871284485, 0.13876231014728546, -0.05616872012615204, 0.11550767719745636, 0.038467489182949066, 0.02825324423611164, 0.01405274961143732, 0.02423894591629505, 0.00002056686207652092, -0.052214764058589935, -0.04475080966949463, -0.10886716842651367, -0.021278606727719307, 0.005285755265504122, 0.3678407669067383, -0.013458101078867912, -0.07787012308835983, 0.06727460026741028, 0.03534035012125969, -0.025278354063630104, 0.013800358399748802, 0.21314013004302979, 0.1288582682609558, 0.000672193244099617, -0.12098494172096252, -0.002346787601709366, -0.07795590162277222, -0.014604401774704456, 0.09302851557731628, 0.08294080197811127, 0.16017502546310425, 0.06274011731147766, 0.08683298528194427, -0.03822445869445801, 0.08556658774614334, -0.06519895792007446, 0.1618858277797699, 0.014456067234277725, -0.035349711775779724, 0.15895316004753113, 0.17932212352752686, -0.07338632643222809, 0.05929889529943466, -0.0728549137711525, -0.06273910403251648, -0.15206295251846313, -0.08100555092096329, -0.009323589503765106, -0.03979096934199333, 0.027251046150922775, -0.05831348896026611, 0.07130438834428787, 0.15827903151512146, 0.05384369194507599, -0.03515485301613808, -0.01408495381474495, -0.02678578719496727, -0.07454344630241394, -0.03847184777259827, -0.059249624609947205, 0.11984409391880035, -0.1807178258895874, -0.061019621789455414, -0.07004596292972565, -0.10131455212831497, -0.0632287859916687, 0.0327381007373333, -0.08733449876308441, -0.06187344342470169, -0.14827169477939606, -0.04921796917915344, -0.038968298584222794, 0.11758208274841309, -0.035470522940158844, 0.26024794578552246, 0.05039553344249725, 0.003500966355204582, 0.08373574912548065, 0.09279300272464752, 0.024411343038082123, -0.18110020458698273, 0.0023981796111911535, 0.19235435128211975, 0.031003691256046295, 0.09738965332508087, -0.059703417122364044, -0.025215383619070053, 0.01106647402048111, 0.1641514003276825, 0.22663353383541107, -0.08829110860824585, 0.0027247294783592224, -0.021242352202534676, 0.04271591454744339, 0.021150028333067894, 0.11666116118431091, -0.0033119742292910814, 0.2578775882720947, -0.06443893909454346, -0.052263516932725906, -0.047896191477775574, 0.03800839185714722, -0.13322967290878296, -0.018991287797689438, 0.05701621621847153, -0.0995289608836174, -0.046303533017635345, 0.1331590712070465, -0.1962938904762268, 0.14209316670894623, 0.09073417633771896, -0.10908554494380951, -0.0003701841924339533, -0.05163110792636871, 0.00708884559571743, -0.01441226340830326, 0.055406056344509125, -0.08839486539363861, -0.14443504810333252, -0.10371872037649155, -0.013821226544678211, -0.23320341110229492, -0.07493568956851959, 0.09138989448547363, 0.09506143629550934, 0.14206913113594055, 0.012588763609528542, 0.18402820825576782, -0.008410735055804253, 0.0791638046503067, 0.011423616670072079, 0.12675996124744415, 0.06842203438282013, 0.014658857136964798, -0.11404938995838165, -0.11740255355834961, 0.007210807409137487, 0.11810991168022156, 0.10462954640388489, -0.02161560207605362, 0.07613568007946014, 0.14823698997497559, -0.11143959313631058, -0.04709627851843834, -0.015848420560359955, -0.12213412672281265, 0.033250678330659866, 0.014521727338433266, 0.08882322907447815, -0.07996819913387299, -0.0007051408756524324, -0.02138501964509487, 0.040383413434028625, -0.054256413131952286, -0.15407812595367432, 0.03745930269360542, -0.027246516197919846, 0.173257976770401, 0.02767297998070717, -0.06622037291526794, -0.023245031014084816, -0.03815038874745369, 0.12638436257839203, -0.09810887277126312, 0.06002891808748245, 0.09214082360267639, -0.04354851692914963, 0.06405412405729294, -0.30587470531463623, 0.06403590738773346, 0.02405015379190445, -0.019945813342928886, -0.050822481513023376 ]
c49bb5bbfc47be587c7dc1df0da10c3d1d44bf94
# Dataset Card for "SNLI-VE_train" [More Information needed](https://github.com/huggingface/datasets/blob/main/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
Multimodal-Fatima/SNLI-VE_train
[ "region:us" ]
2023-02-07T00:32:32+00:00
{"dataset_info": {"features": [{"name": "image", "dtype": "image"}, {"name": "filename", "dtype": "string"}, {"name": "premise", "dtype": "string"}, {"name": "hypothesis", "dtype": "string"}, {"name": "label", "dtype": {"class_label": {"names": {"0": "entailment", "1": "neutral", "2": "contradiction"}}}}, {"name": "id", "dtype": "int64"}, {"name": "id_image", "dtype": "int64"}, {"name": "clip_tags_ViT_L_14", "sequence": "string"}, {"name": "blip_caption", "dtype": "string"}, {"name": "LLM_Description_gpt3_downstream_tasks_visual_genome_ViT_L_14", "sequence": "string"}], "splits": [{"name": "train", "num_bytes": 73634118251.385, "num_examples": 529527}], "download_size": 27853612384, "dataset_size": 73634118251.385}}
2023-02-07T23:21:35+00:00
[]
[]
TAGS #region-us
# Dataset Card for "SNLI-VE_train" More Information needed
[ "# Dataset Card for \"SNLI-VE_train\"\n\nMore Information needed" ]
[ "TAGS\n#region-us \n", "# Dataset Card for \"SNLI-VE_train\"\n\nMore Information needed" ]
[ 6, 17 ]
[ "passage: TAGS\n#region-us \n# Dataset Card for \"SNLI-VE_train\"\n\nMore Information needed" ]
[ -0.12365561723709106, 0.17592233419418335, -0.002876730402931571, 0.04579148441553116, 0.12797047197818756, 0.059451598674058914, 0.11914093047380447, 0.03517255559563637, 0.03198648616671562, -0.03036268800497055, 0.12906892597675323, 0.07310381531715393, 0.009681482799351215, 0.227452352643013, 0.0024462330620735884, -0.03853044658899307, 0.09196628630161285, -0.0057401093654334545, -0.10936996340751648, 0.02326635830104351, 0.07892349362373352, -0.05768607184290886, 0.076347716152668, -0.09010325372219086, -0.29343104362487793, 0.16933181881904602, -0.07429920881986618, -0.007920931093394756, 0.09995359182357788, -0.084304079413414, 0.1830427497625351, 0.06665269285440445, 0.09946674853563309, -0.09557827562093735, 0.013863492757081985, -0.02527059055864811, -0.04377928748726845, 0.04302717000246048, -0.027240881696343422, -0.013281023129820824, -0.08922079205513, 0.0484919473528862, 0.026619963347911835, -0.020924368873238564, -0.06874074786901474, -0.18844439089298248, -0.07982966303825378, -0.0033613652922213078, -0.037803344428539276, 0.015579856932163239, 0.1050325334072113, 0.10476652532815933, -0.2661949694156647, 0.045681580901145935, 0.13247928023338318, -0.07966969907283783, 0.06797119230031967, 0.15753664076328278, -0.06088197976350784, 0.1320222020149231, -0.0030267287511378527, 0.047374702990055084, 0.0536862351000309, -0.10729776322841644, -0.02207063138484955, 0.01478834729641676, -0.07340701669454575, 0.16679534316062927, -0.08926159888505936, -0.048433829098939896, 0.31462663412094116, -0.06255347281694412, 0.028680382296442986, 0.12541930377483368, -0.07205824553966522, -0.14624670147895813, 0.07584033161401749, -0.05384175851941109, 0.08812130987644196, -0.0380496084690094, 0.08948851376771927, -0.04952746257185936, -0.12114744633436203, -0.12378115206956863, -0.10318640619516373, 0.08378873020410538, 0.010239694267511368, 0.1240932047367096, -0.15202921628952026, 0.047129057347774506, 0.014446977525949478, -0.059622056782245636, 0.005847840569913387, -0.10883704572916031, -0.14810457825660706, -0.01795845292508602, -0.043725259602069855, -0.10947161167860031, 0.06508924067020416, 0.1173914447426796, 0.05870218947529793, -0.04752547666430473, -0.004880392923951149, 0.09771893918514252, 0.1050233244895935, -0.10159911215305328, -0.07695385813713074, 0.05315456539392471, -0.05642981082201004, -0.07397106289863586, -0.022058473899960518, -0.08996401727199554, -0.19502423703670502, -0.10522308945655823, -0.10098221898078918, 0.13782967627048492, -0.08070475608110428, -0.12193809449672699, 0.007580526638776064, -0.006061995401978493, -0.014852847903966904, -0.11868014931678772, 0.0005301181809045374, -0.032068490982055664, -0.10040610283613205, -0.022021107375621796, -0.1153615191578865, -0.05462883412837982, 0.02365870587527752, 0.16578783094882965, -0.16058138012886047, -0.03822067752480507, -0.07774025201797485, 0.04695497453212738, 0.04985979199409485, -0.34786802530288696, 0.03085876815021038, -0.1476253867149353, -0.2663821876049042, 0.04676946625113487, 0.004807662218809128, -0.037197284400463104, 0.1482028067111969, -0.01856006123125553, 0.10421919077634811, 0.008973823860287666, -0.11587692052125931, 0.09889926016330719, -0.05317996069788933, 0.030986733734607697, -0.03202616050839424, 0.033626947551965714, -0.20583276450634003, -0.003053845139220357, -0.11699145287275314, -0.054486434906721115, 0.10457506775856018, -0.04313335567712784, -0.15129368007183075, 0.10258017480373383, 0.00636763870716095, 0.007590094115585089, -0.07868533581495285, 0.034309666603803635, 0.03438032418489456, 0.06932191550731659, -0.2048361450433731, -0.04651171341538429, 0.10090923309326172, -0.1977735310792923, -0.09860143065452576, 0.08725779503583908, -0.02050296775996685, -0.12237878888845444, -0.014858836308121681, 0.3728364408016205, 0.12859776616096497, -0.07385284453630447, 0.039942022413015366, 0.15729857981204987, -0.17262384295463562, -0.3108178675174713, 0.05395420268177986, 0.03346189111471176, -0.14281100034713745, 0.03509792312979698, 0.03217408433556557, 0.022707315161824226, -0.002198948059231043, -0.11105739325284958, -0.059255339205265045, -0.17375266551971436, 0.09044104069471359, 0.01421720627695322, 0.11922655999660492, 0.026626406237483025, 0.09156238287687302, 0.015857813879847527, 0.12166409939527512, 0.0602557398378849, -0.014827030710875988, 0.009236222133040428, 0.2362544983625412, -0.03869517520070076, -0.018114985898137093, -0.10413971543312073, -0.04130172356963158, 0.004028643015772104, -0.013903339393436909, 0.019038386642932892, 0.18654583394527435, 0.06461704522371292, -0.009146308526396751, -0.022132424637675285, 0.005486987065523863, 0.08222857117652893, 0.04927024245262146, 0.044846564531326294, -0.02656392753124237, 0.0061453259550035, -0.01455387007445097, -0.10098271071910858, -0.06045655533671379, 0.0031064567156136036, 0.10935061424970627, 0.09843940287828445, 0.02290239743888378, 0.012094689533114433, -0.018047789111733437, 0.00038006791146472096, -0.05102593079209328, 0.008435215801000595, -0.006254304200410843, -0.039401888847351074, 0.03353901952505112, 0.06798246502876282, 0.02915710024535656, 0.3374288082122803, 0.0352984182536602, -0.03173798695206642, -0.015481559559702873, -0.06588970869779587, 0.0007119995425455272, 0.008959813043475151, -0.057513102889060974, -0.04568379372358322, -0.24868477880954742, -0.14189396798610687, 0.09333877265453339, -0.07223042100667953, 0.058067772537469864, 0.011775599792599678, -0.02337673120200634, -0.03974773362278938, 0.029425563290715218, 0.03870439529418945, -0.1340346485376358, 0.20250850915908813, 0.08520020544528961, -0.0820639580488205, 0.24722975492477417, -0.052524857223033905, -0.06954709440469742, -0.07263965904712677, -0.07882067561149597, -0.10747513920068741, 0.26221558451652527, -0.1537034809589386, -0.024023445323109627, 0.052734021097421646, 0.07628703117370605, 0.08448395133018494, -0.08320169895887375, -0.11845918744802475, 0.05599210411310196, 0.049186643213033676, -0.15557485818862915, 0.048551127314567566, -0.02178410068154335, 0.09055585414171219, -0.007859720848500729, -0.0765693187713623, 0.08292260766029358, -0.06400027871131897, -0.007021903060376644, 0.11838234961032867, -0.1921306699514389, -0.22369258105754852, -0.10816539078950882, -0.13846908509731293, 0.0507965013384819, 0.06432680040597916, -0.030735058709979057, -0.22443319857120514, -0.01905830018222332, 0.029033763334155083, -0.07089720666408539, -0.2759363055229187, 0.019816318526864052, -0.11687259376049042, 0.0705617368221283, -0.1186840832233429, -0.09550925344228745, 0.09303700178861618, -0.08386413007974625, 0.10632428526878357, 0.04132232442498207, -0.01997806318104267, 0.15090526640415192, 0.13995800912380219, -0.03835735470056534, 0.09326067566871643, -0.03360993415117264, -0.016115861013531685, 0.019160648807883263, -0.0548224113881588, 0.04457623511552811, 0.012385450303554535, 0.030544139444828033, 0.12615421414375305, 0.07092787325382233, -0.038669660687446594, -0.02741481550037861, -0.1190028041601181, -0.18997453153133392, -0.2909349203109741, -0.07713879644870758, -0.03856956586241722, 0.08310993760824203, -0.013840924948453903, 0.08254582434892654, 0.030053164809942245, 0.10791291296482086, 0.15622669458389282, 0.0022962726652622223, -0.17191638052463531, -0.062144700437784195, -0.03286117687821388, -0.012428509071469307, 0.015898777171969414, -0.13721932470798492, -0.013360601849853992, 0.1690012663602829, 0.15486867725849152, 0.2657504975795746, -0.026681968942284584, 0.13587796688079834, 0.04596447944641113, 0.16827495396137238, 0.13127265870571136, 0.10365604609251022, 0.039244189858436584, -0.017545238137245178, 0.05322433263063431, 0.025914691388607025, 0.01876598782837391, -0.003928592894226313, 0.10462675988674164, -0.061879441142082214, -0.018397411331534386, -0.02542794682085514, 0.03662184253334999, -0.11794446408748627, 0.09779294580221176, -0.1648983359336853, 0.15635614097118378, -0.04624471813440323, 0.09822036325931549, -0.03619050234556198, 0.1287427544593811, 0.1750439554452896, 0.021850287914276123, -0.010231759399175644, 0.05973589047789574, -0.026603106409311295, -0.07534807175397873, -0.010002361610531807, -0.015452764928340912, -0.04627979174256325, -0.012699774466454983, 0.14198647439479828, -0.22017480432987213, 0.259665310382843, -0.015586679801344872, -0.08892618864774704, -0.03669502213597298, -0.04542512074112892, -0.009545153006911278, 0.1614776849746704, 0.16428986191749573, 0.06306005269289017, -0.11439517885446548, -0.19072380661964417, -0.049569301307201385, -0.07273684442043304, 0.1432066708803177, -0.01102255005389452, -0.13308604061603546, 0.034688521176576614, -0.0017167063197121024, -0.06924000382423401, -0.0338144525885582, -0.1009112074971199, -0.17825378477573395, 0.0699787363409996, 0.08919326215982437, -0.12204166501760483, -0.015035445801913738, -0.007960175164043903, -0.08434196561574936, 0.09100063890218735, -0.040085963904857635, 0.036473169922828674, -0.1253480315208435, 0.020945442840456963, 0.04394850879907608, 0.01913919858634472, 0.03519628942012787, 0.02909865230321884, 0.04955485835671425, -0.01899004727602005, -0.1263570934534073, 0.034556273370981216, -0.02170262672007084, 0.09511493146419525, -0.17342831194400787, 0.05145447328686714, -0.031504902988672256, -0.023353012278676033, 0.00782053917646408, -0.015486731193959713, -0.05792132392525673, -0.04458441957831383, 0.14871244132518768, -0.05114821717143059, 0.06821732968091965, 0.3014414608478546, -0.028603991493582726, -0.014182276092469692, 0.15615300834178925, -0.07945642620325089, 0.2082265466451645, 0.07949846982955933, -0.09988712519407272, 0.22059263288974762, 0.19933605194091797, -0.10614068061113358, -0.29924795031547546, 0.026380710303783417, -0.15874727070331573, -0.0009177062311209738, 0.08621059358119965, -0.2231275737285614, 0.06087152659893036, 0.19943886995315552, -0.043219566345214844, 0.0886596068739891, -0.19840821623802185, -0.04120907932519913, 0.13191638886928558, 0.049015142023563385, 0.38817307353019714, -0.049704648554325104, -0.06826487928628922, -0.10639932751655579, -0.029757164418697357, 0.16138476133346558, -0.09022263437509537, 0.010653235018253326, -0.07071074843406677, 0.03797442466020584, 0.020858492702245712, -0.07714461535215378, 0.13825231790542603, 0.07762504369020462, 0.10969441384077072, -0.12050458788871765, -0.08610916882753372, 0.12055397778749466, -0.12595801055431366, 0.06247253715991974, 0.03173546865582466, 0.08937302231788635, -0.16933606564998627, -0.016899732872843742, 0.03553460165858269, 0.027519486844539642, 0.023750998079776764, -0.09138529747724533, -0.12425932288169861, 0.017987016588449478, -0.04085300490260124, -0.061329081654548645, 0.06671678274869919, 0.03157002106308937, -0.036539893597364426, 0.04588022083044052, 0.005245506763458252, -0.09277275204658508, -0.02304103597998619, -0.03847208619117737, -0.008514020591974258, 0.07435327023267746, -0.13976088166236877, 0.01841353066265583, 0.12493576854467392, 0.06018170714378357, 0.02650320902466774, 0.1102806031703949, -0.01959746889770031, -0.009486339055001736, 0.15228070318698883, -0.12072301656007767, -0.04634522646665573, 0.01837150566279888, -0.09165364503860474, 0.07358194142580032, 0.12003003060817719, -0.024306142702698708, 0.026341494172811508, 0.03624718636274338, 0.040374644100666046, 0.0339224599301815, -0.030792832374572754, 0.1199677437543869, 0.13366615772247314, 0.0804472416639328, -0.14038054645061493, 0.2165204882621765, 0.06970750540494919, -0.04643788933753967, -0.00989249162375927, 0.02057689055800438, -0.11673923581838608, -0.10221151262521744, -0.07340186834335327, 0.19557952880859375, -0.04931053891777992, -0.14697077870368958, 0.0076009370386600494, -0.06705385446548462, 0.029109928756952286, 0.115075021982193, 0.09043458849191666, 0.12219897657632828, -0.005199905019253492, -0.021545087918639183, -0.016519133001565933, 0.02136886492371559, -0.056311123073101044, 0.15432994067668915, -0.1503622680902481, -0.16136254370212555, -0.09115010499954224, 0.14789295196533203, -0.086574487388134, -0.04326147586107254, -0.14083029329776764, 0.10045542567968369, -0.141551673412323, 0.0425080731511116, 0.08689337968826294, -0.03713236376643181, -0.01624143123626709, -0.012575228698551655, -0.020424330607056618, 0.024331066757440567, -0.11493020504713058, 0.12734276056289673, 0.08955072611570358, -0.007018056232482195, -0.05140647292137146, 0.003954261541366577, 0.013049714267253876, 0.03950049355626106, 0.11314769834280014, 0.10735717415809631, 0.0006663310923613608, 0.12098235636949539, -0.11978858709335327, -0.09916135668754578, -0.01661768928170204, 0.07362481206655502, 0.08561566472053528, 0.05536859855055809, 0.018282460048794746, 0.06065838411450386, -0.051620882004499435, 0.024966513738036156, -0.0643480196595192, -0.08856429159641266, 0.06951752305030823, -0.020953567698597908, -0.15083763003349304, -0.03876471519470215, -0.04972030967473984, 0.17584925889968872, 0.0664609968662262, 0.0624508336186409, 0.08176389336585999, 0.005610371008515358, 0.0571858249604702, -0.0035133901983499527, 0.0820171907544136, -0.11827206611633301, -0.08148708939552307, 0.04009833559393883, -0.038826003670692444, -0.08639445900917053, 0.409938246011734, 0.022500088438391685, -0.13558429479599, -0.025301598012447357, 0.014992985874414444, 0.03243831917643547, 0.006458135787397623, 0.2210221141576767, 0.08882211148738861, -0.04549195617437363, -0.07116762548685074, 0.02376898191869259, 0.016959503293037415, 0.1690758317708969, 0.06493797153234482, 0.006160232704132795, 0.06901470571756363, 0.05438554659485817, 0.07024723291397095, -0.07113099843263626, -0.040219034999608994, -0.03934039920568466, -0.10941199213266373, 0.019483275711536407, -0.00048355149920098484, -0.0058312187902629375, 0.07171749323606491, 0.05979902669787407, 0.03275938332080841, 0.003218412399291992, -0.10159743577241898, -0.16819041967391968, -0.10207322984933853, 0.007104074582457542, -0.13774345815181732, 0.026563473045825958, -0.012519867159426212, -0.005351692903786898, 0.23732827603816986, 0.090902179479599, 0.0515376552939415, 0.07606204599142075, -0.000226053933147341, 0.14153845608234406, -0.000630854454357177, -0.023100685328245163, -0.1069679781794548, -0.05548626556992531, -0.04548485949635506, 0.014829562976956367, -0.17214401066303253, -0.05417124554514885, -0.05044906958937645, 0.04302049055695534, -0.04675688222050667, -0.03066227026283741, 0.031143484637141228, -0.0469001941382885, 0.016144104301929474, -0.1004956066608429, 0.0109943225979805, 0.006087120622396469, 0.009258687496185303, -0.009413233958184719, 0.14741437137126923, 0.018362076953053474, 0.0703733041882515, -0.010250406339764595, -0.08043421059846878, 0.057587865740060806, 0.1191546618938446, -0.022266440093517303, -0.08640637993812561, -0.09084871411323547, 0.1250307559967041, 0.2465338557958603, 0.026505304500460625, 0.0238321665674448, 0.08508787304162979, 0.02720296010375023, -0.04275601729750633, 0.17432396113872528, 0.007036047056317329, 0.10422955453395844, 0.038962677121162415, -0.02448870800435543, 0.0392693430185318, -0.0624745637178421, 0.0024746411945670843, 0.11312899738550186, 0.03952426463365555, -0.006505555473268032, -0.17732983827590942, 0.018295742571353912, -0.18319444358348846, 0.07494615018367767, 0.17599226534366608, -0.01026841625571251, -0.09260619431734085, 0.013958733528852463, 0.2128845900297165, -0.13694483041763306, -0.0034792551305145025, -0.07655373215675354, -0.0748305469751358, -0.03878366947174072, -0.007755649741739035, -0.30823442339897156, -0.24951718747615814, 0.06396304070949554, 0.09789752960205078, 0.15687976777553558, -0.07288409024477005, 0.11237262934446335, 0.01726705953478813, 0.07279076427221298, -0.13283903896808624, 0.0376678928732872, -0.02777203358709812, -0.05996386706829071, -0.05296279862523079, 0.08620820194482803, -0.08052719384431839, 0.0037922209594398737, -0.01682601310312748, 0.007189827971160412, -0.04535328969359398, 0.12559117376804352, 0.016215356066823006, -0.029931731522083282, 0.02758433111011982, -0.022993026301264763, 0.09729766845703125, 0.008757875300943851, 0.0033444741275161505, -0.0030999844893813133, -0.07210960984230042, 0.03514503687620163, 0.00181728252209723, -0.13647444546222687, 0.02803034521639347, -0.04635005444288254, -0.049047987908124924, 0.21869955956935883, 0.00991568062454462, -0.0838814377784729, 0.06604046374559402, -0.09388603270053864, 0.03318387269973755, -0.026502955704927444, 0.04737359657883644, 0.2214491069316864, 0.17394192516803741, -0.018878815695643425, 0.01241961307823658, 0.053641557693481445, -0.000042862360714934766, -0.09587521106004715, -0.1639471799135208 ]
136197d1fdd50e82e7cb3228fc2cace5b8fe208a
# Dataset Card for 🥤SODA Synthetic Dialogue ## Dataset Description - **Repository:** [Code](https://github.com/LAION-AI/Open-Assistant/openassistant/datasets/soda_synthetic_dialogue/) ## Dataset Summary 🥤SODA Synthetic Dialogue is a set of synthetic dialogues between Assistant and User. In each conversation, User asks Assistant to perform summarization or story generation tasks based on a snippet of an existing dialogue, story, or from a title or theme. This data was created by synthesizing the dialogues in [🥤Soda](https://huggingface.co/datasets/allenai/soda) and applying a set of templates to generate the conversation. The original research paper can be found [here](https://arxiv.org/pdf/2212.10465v1.pdf). Example: ``` User: Can you write the next few lines of dialogue for this scene: Cornell: I know what you're thinking, Dontrell. I can sense your feelings and know exactly what you're going to say or do next. You're thinking about how much you miss your family, and how you wish you could see them again. You're wondering if there's anything you can do to make that happen. And you're also feeling a little guilty, because you know that if you could see them again, it would only be for a short while before they died. Dontrell: Cornell, how can you possibly know all that? It's like you can read my mind! Assistant: Sure, the next dialogue for this scene could be: Cornell: I told you, I can sense your feelings. It's like I have a connection to your thoughts and emotions. I'm not sure why or how it works, but ever since we met, I've been able to understand what you're thinking and feeling pretty easily. Dontrell: Wow...that's amazing! And a little bit scary too. But it does explain why we've always been so close - even though we've only known each other for a few months. Cornell: Yeah, I guess our connection is pretty strong. But don't worry, Dontrell - I'll never use it to manipulate or control you in any way. I promise." Dontrell: That's a relief! I was starting to feel a little bit like you could read my mind, and it was kind of creepy. But if you promise not to use your abilities to control me, then I'm okay with it. Cornell: I swear, Dontrell. I'll never use my abilities to control or manipulate you in any way. You have my word. User: And a title? Assistant: Sure, a title for this dialogue could be: Cornell is intuitive. Cornell reads Dontrell's mind. User: How about a short description? Assistant: Sure, a short description for this dialogue could be: Cornell knows what Dontrell is thinking. He can sense her feelings and know exactly what she is going to say or do next. User: What would be one theme of this story? Assistant: One theme of this story could be: being intuitive ``` ## Usage The dataset contains one configuration, `dialogue_modeling`, which has a single text `conversation` feature. ## Source data The script to synthesize this dataset was originally created by [ontocord](https://github.com/ontocord) in [this Colab notebook](https://colab.research.google.com/drive/1Sw3px5dP8whdqT7QMNoqwmqIasZkMbJi?usp=sharing) and prepared for Hugging Face by [Jeffrey Quesnelle](https://github.com/jquesnelle/). ## Citation Please cite our work if you find the resources in this repository useful: ``` @article{ontocord2023sodasynth, author = {ontocord and Jeffrey Quesnelle}, title = {SODA Synthetic Dialogue}, year = {2023} } ```
emozilla/soda_synthetic_dialogue
[ "task_categories:conversational", "task_ids:dialogue-generation", "annotations_creators:no-annotation", "language_creators:machine-generated", "multilinguality:monolingual", "size_categories:1M<n<10M", "source_datasets:extended|allenai/soda", "language:en", "license:mit", "open-assistant", "conversations-summarization", "arxiv:2212.10465", "region:us" ]
2023-02-07T01:55:49+00:00
{"annotations_creators": ["no-annotation"], "language_creators": ["machine-generated"], "language": ["en"], "license": ["mit"], "multilinguality": ["monolingual"], "size_categories": ["1M<n<10M"], "source_datasets": ["extended|allenai/soda"], "task_categories": ["conversational"], "task_ids": ["dialogue-generation"], "pretty_name": "SODA Synthetic Dialogue", "tags": ["open-assistant", "conversations-summarization"], "dataset_info": {"features": [{"name": "conversation", "dtype": "string"}], "config_name": "soda_synthetic_dialogue_dialogue_modeling", "splits": [{"name": "train", "num_bytes": 1524941476, "num_examples": 1191582}, {"name": "test", "num_bytes": 190565707, "num_examples": 148968}, {"name": "validation", "num_bytes": 187161878, "num_examples": 146346}], "download_size": 1952926579, "dataset_size": 1902669061}}
2023-02-07T03:54:33+00:00
[ "2212.10465" ]
[ "en" ]
TAGS #task_categories-conversational #task_ids-dialogue-generation #annotations_creators-no-annotation #language_creators-machine-generated #multilinguality-monolingual #size_categories-1M<n<10M #source_datasets-extended|allenai/soda #language-English #license-mit #open-assistant #conversations-summarization #arxiv-2212.10465 #region-us
# Dataset Card for SODA Synthetic Dialogue ## Dataset Description - Repository: Code ## Dataset Summary SODA Synthetic Dialogue is a set of synthetic dialogues between Assistant and User. In each conversation, User asks Assistant to perform summarization or story generation tasks based on a snippet of an existing dialogue, story, or from a title or theme. This data was created by synthesizing the dialogues in Soda and applying a set of templates to generate the conversation. The original research paper can be found here. Example: ## Usage The dataset contains one configuration, 'dialogue_modeling', which has a single text 'conversation' feature. ## Source data The script to synthesize this dataset was originally created by ontocord in this Colab notebook and prepared for Hugging Face by Jeffrey Quesnelle. Please cite our work if you find the resources in this repository useful:
[ "# Dataset Card for SODA Synthetic Dialogue", "## Dataset Description\n\n- Repository:\n Code", "## Dataset Summary\n\nSODA Synthetic Dialogue is a set of synthetic dialogues between Assistant and\nUser. In each conversation, User asks Assistant to perform summarization or\nstory generation tasks based on a snippet of an existing dialogue, story, or\nfrom a title or theme.\n\nThis data was created by synthesizing the dialogues in\nSoda and applying a set of\ntemplates to generate the conversation. The original research paper can be found\nhere.\n\nExample:", "## Usage\n\nThe dataset contains one configuration, 'dialogue_modeling', which has a single\ntext 'conversation' feature.", "## Source data\n\nThe script to synthesize this dataset was originally created by\nontocord in\nthis Colab notebook\nand prepared for Hugging Face by\nJeffrey Quesnelle.\n\nPlease cite our work if you find the resources in this repository useful:" ]
[ "TAGS\n#task_categories-conversational #task_ids-dialogue-generation #annotations_creators-no-annotation #language_creators-machine-generated #multilinguality-monolingual #size_categories-1M<n<10M #source_datasets-extended|allenai/soda #language-English #license-mit #open-assistant #conversations-summarization #arxiv-2212.10465 #region-us \n", "# Dataset Card for SODA Synthetic Dialogue", "## Dataset Description\n\n- Repository:\n Code", "## Dataset Summary\n\nSODA Synthetic Dialogue is a set of synthetic dialogues between Assistant and\nUser. In each conversation, User asks Assistant to perform summarization or\nstory generation tasks based on a snippet of an existing dialogue, story, or\nfrom a title or theme.\n\nThis data was created by synthesizing the dialogues in\nSoda and applying a set of\ntemplates to generate the conversation. The original research paper can be found\nhere.\n\nExample:", "## Usage\n\nThe dataset contains one configuration, 'dialogue_modeling', which has a single\ntext 'conversation' feature.", "## Source data\n\nThe script to synthesize this dataset was originally created by\nontocord in\nthis Colab notebook\nand prepared for Hugging Face by\nJeffrey Quesnelle.\n\nPlease cite our work if you find the resources in this repository useful:" ]
[ 119, 12, 10, 103, 32, 53 ]
[ "passage: TAGS\n#task_categories-conversational #task_ids-dialogue-generation #annotations_creators-no-annotation #language_creators-machine-generated #multilinguality-monolingual #size_categories-1M<n<10M #source_datasets-extended|allenai/soda #language-English #license-mit #open-assistant #conversations-summarization #arxiv-2212.10465 #region-us \n# Dataset Card for SODA Synthetic Dialogue## Dataset Description\n\n- Repository:\n Code## Dataset Summary\n\nSODA Synthetic Dialogue is a set of synthetic dialogues between Assistant and\nUser. In each conversation, User asks Assistant to perform summarization or\nstory generation tasks based on a snippet of an existing dialogue, story, or\nfrom a title or theme.\n\nThis data was created by synthesizing the dialogues in\nSoda and applying a set of\ntemplates to generate the conversation. The original research paper can be found\nhere.\n\nExample:## Usage\n\nThe dataset contains one configuration, 'dialogue_modeling', which has a single\ntext 'conversation' feature.## Source data\n\nThe script to synthesize this dataset was originally created by\nontocord in\nthis Colab notebook\nand prepared for Hugging Face by\nJeffrey Quesnelle.\n\nPlease cite our work if you find the resources in this repository useful:" ]
[ -0.0800369456410408, 0.17859295010566711, -0.005441886372864246, -0.017490236088633537, 0.10176805406808853, -0.022270649671554565, 0.21561472117900848, 0.08098351210355759, -0.019910458475351334, 0.08335654437541962, -0.03419792652130127, 0.013449650257825851, 0.09725373983383179, 0.19069601595401764, 0.02198760397732258, -0.1671370267868042, 0.049759071320295334, -0.05621839314699173, -0.08559319376945496, 0.0711461678147316, 0.07523583620786667, -0.03582402691245079, 0.07573345303535461, 0.03892797976732254, -0.1094885915517807, 0.004025029018521309, -0.023994997143745422, -0.05302314832806587, 0.06044882535934448, 0.07342620939016342, 0.06570956110954285, 0.08523944765329361, 0.03173905238509178, -0.17797712981700897, 0.03168670833110809, 0.027369078248739243, 0.023046882823109627, 0.03678352013230324, 0.04052960127592087, -0.05567067861557007, 0.11902319639921188, -0.0028358132112771273, 0.07482074946165085, 0.13232845067977905, -0.1408613622188568, -0.07098572701215744, -0.04896070435643196, -0.11816573888063431, 0.1178581714630127, 0.0770796686410904, -0.03674902394413948, -0.025907814502716064, 0.04948941990733147, 0.02378818579018116, 0.04897519573569298, 0.0008639396401122212, -0.0431385412812233, 0.06567911803722382, 0.037769850343465805, 0.0402531623840332, -0.03334236145019531, -0.04240186884999275, -0.06481225788593292, -0.03523244336247444, 0.032141949981451035, -0.08889719843864441, -0.03453722596168518, -0.04367142915725708, -0.06555115431547165, 0.0025235081557184458, 0.2709125876426697, 0.005542269442230463, -0.06199437752366066, -0.10169193148612976, -0.0923832431435585, 0.07799564301967621, -0.020794574171304703, -0.04918045923113823, -0.018663374707102776, -0.006992940790951252, 0.05332724750041962, -0.1620033085346222, -0.11832233518362045, -0.020832035690546036, 0.0021933482494205236, 0.032175857573747635, -0.007926193997263908, 0.052307672798633575, -0.07422511279582977, 0.055916402488946915, 0.022312920540571213, -0.04385961592197418, 0.010448980145156384, -0.0312809944152832, -0.16538269817829132, -0.018839357420802116, -0.004724551923573017, -0.17186616361141205, 0.06961263716220856, 0.12842242419719696, 0.10645610094070435, 0.031629662960767746, 0.005698795430362225, -0.0492648109793663, 0.10179942846298218, 0.12641961872577667, 0.03760576620697975, -0.03343595564365387, 0.06668829172849655, 0.031914375722408295, 0.006263566669076681, -0.061038002371788025, -0.1278819739818573, 0.05618051812052727, -0.0958239808678627, 0.032203879207372665, 0.12196895480155945, 0.04615357518196106, -0.03294472396373749, -0.04900621622800827, 0.09868331998586655, -0.1384042501449585, 0.028482457622885704, 0.042299721390008926, -0.028558164834976196, -0.0299111008644104, 0.06344345957040787, 0.05173421651124954, -0.09580540657043457, -0.016475819051265717, -0.07948191463947296, -0.0023986913729459047, -0.09128402173519135, -0.00798511877655983, 0.029108064249157906, -0.052912577986717224, -0.03563965484499931, -0.051213521510362625, -0.16552838683128357, -0.05988067388534546, 0.07670942693948746, -0.06316050887107849, -0.07721298933029175, -0.11588867753744125, 0.08406072109937668, -0.0010835353750735521, 0.036824245005846024, -0.0815223976969719, 0.010353348217904568, -0.011030490510165691, 0.0037206336855888367, 0.06583548337221146, -0.11361619830131531, 0.050878699868917465, -0.11477089673280716, 0.06009489670395851, -0.06478576362133026, 0.1482999175786972, -0.015003391541540623, 0.006876311730593443, -0.09917350113391876, 0.02880183234810829, -0.01993471011519432, -0.028510306030511856, -0.0019684662111103535, 0.1951054036617279, -0.18573181331157684, -0.051631536334753036, 0.11672557890415192, -0.09333613514900208, -0.041024450212717056, 0.05406372249126434, -0.021580396220088005, 0.2023606151342392, 0.07010301202535629, 0.15164238214492798, 0.052330564707517624, -0.089845672249794, -0.014043874107301235, -0.06305750459432602, -0.04009658843278885, 0.09091637283563614, 0.11018139868974686, -0.04610664024949074, 0.16711296141147614, 0.02292451076209545, 0.11147955805063248, 0.011911245062947273, 0.031275223940610886, -0.059662602841854095, 0.018579261377453804, 0.03948415815830231, -0.06878291815519333, -0.05888569355010986, -0.04338529333472252, 0.06335324794054031, -0.07312212139368057, 0.11817454546689987, 0.037254802882671356, -0.08196616172790527, 0.03139728307723999, -0.0889207199215889, 0.016069892793893814, -0.012559599243104458, 0.038180410861968994, -0.12717626988887787, -0.15592345595359802, 0.0024949093349277973, -0.0979735404253006, 0.14793314039707184, 0.022596009075641632, -0.0022841908503323793, 0.07171093672513962, 0.039023853838443756, 0.06832271814346313, -0.04819453880190849, 0.0031965868547558784, 0.045549552887678146, -0.07307758927345276, -0.039753492921590805, -0.04969768226146698, 0.2943008840084076, -0.025017352774739265, 0.08801621198654175, 0.0809750109910965, 0.05449581891298294, 0.03859628736972809, -0.08645633608102798, 0.07280704379081726, -0.030183220282197, -0.044751446694135666, -0.032489221543073654, 0.01766933500766754, 0.03324754908680916, -0.06841667741537094, 0.01289298664778471, -0.1964305341243744, -0.23851312696933746, 0.02221059612929821, 0.08032991737127304, 0.012324406765401363, -0.18458107113838196, -0.03535987436771393, -0.02244594134390354, -0.0030813952907919884, -0.07197800278663635, 0.07654906064271927, 0.03444254770874977, 0.07889506965875626, -0.0843636617064476, 0.02912089228630066, 0.0007116218330338597, -0.07966987788677216, -0.0353819876909256, 0.027284562587738037, 0.07009460777044296, -0.05592675507068634, 0.10410288721323013, -0.01706332340836525, 0.11237054318189621, 0.139565110206604, 0.026577651500701904, -0.04929766803979874, -0.07782816141843796, -0.00366225722245872, -0.010562081821262836, 0.0363435223698616, -0.12878501415252686, 0.072724349796772, 0.06297914683818817, -0.012977654114365578, 0.03709520027041435, -0.05205319821834564, 0.03512798622250557, 0.034605707973241806, -0.012575528584420681, -0.02669317089021206, -0.0009892347734421492, 0.03326354920864105, 0.04615442082285881, 0.022616645321249962, 0.0808417871594429, -0.01047196052968502, -0.029058948159217834, -0.07654700428247452, 0.10179521143436432, -0.15441669523715973, -0.27608370780944824, -0.20969001948833466, -0.07773800939321518, -0.07850852608680725, 0.0581105500459671, 0.0449206605553627, 0.007564286235719919, 0.001410575583577156, -0.05750477313995361, 0.20320962369441986, 0.05631914734840393, -0.08529449999332428, -0.049060504883527756, 0.05813515931367874, -0.029798191040754318, -0.06609191745519638, 0.011466734111309052, 0.053465332835912704, -0.10070087760686874, 0.026672566309571266, -0.03815990686416626, 0.08670403063297272, 0.0943746343255043, 0.04636799171566963, -0.014978861436247826, -0.01173652708530426, 0.22772443294525146, -0.07494214177131653, 0.15524619817733765, 0.16237647831439972, -0.06390932947397232, 0.03100377321243286, 0.15594588220119476, -0.001308552222326398, -0.0698709636926651, 0.02051066979765892, 0.01153072901070118, -0.08063614368438721, -0.17354223132133484, -0.08474526554346085, -0.06122945621609688, 0.042845409363508224, -0.007277730852365494, 0.017714478075504303, 0.024920446798205376, 0.0438263900578022, -0.060861390084028244, -0.07720018178224564, 0.10643720626831055, 0.06868765503168106, 0.13551346957683563, -0.0397791787981987, 0.024612365290522575, -0.03072456270456314, -0.019225068390369415, 0.0866750031709671, 0.12295301258563995, 0.1915472447872162, 0.04813520982861519, 0.3064216375350952, 0.03438187390565872, -0.0013599805533885956, 0.009110848419368267, 0.045023929327726364, 0.0634923130273819, 0.06851750612258911, -0.025981025770306587, -0.0794353038072586, -0.020165449008345604, 0.11141666769981384, -0.015161176212131977, -0.0841934010386467, 0.029036277905106544, 0.06504969298839569, 0.0037860816810280085, 0.1732567846775055, 0.01949053257703781, -0.15146960318088531, -0.02488665282726288, 0.04735393822193146, 0.024108029901981354, -0.12521721422672272, -0.04379410669207573, 0.1003275141119957, -0.09721014648675919, 0.06078525260090828, -0.018633505329489708, 0.08593612164258957, -0.01804279163479805, -0.005106802564114332, -0.02161751687526703, -0.002840620931237936, -0.01745612546801567, 0.10918474942445755, -0.07504994422197342, 0.08748077601194382, 0.030957281589508057, 0.009884190745651722, -0.06293848901987076, 0.038502488285303116, -0.1168791875243187, 0.016564613208174706, 0.11197533458471298, 0.011060093529522419, -0.07087685912847519, -0.04425263777375221, -0.18807515501976013, 0.03442002087831497, 0.014357060194015503, -0.0999315083026886, 0.0464450865983963, -0.028516089543700218, -0.003264965256676078, -0.05534070357680321, 0.019495094195008278, 0.050814397633075714, -0.27650049328804016, 0.10637164115905762, -0.006760088726878166, 0.01331538800150156, 0.010593977756798267, 0.05319691449403763, 0.19316589832305908, 0.1831875741481781, -0.04549198970198631, -0.05305438116192818, -0.13593760132789612, 0.010281641036272049, 0.0953151136636734, -0.0500514954328537, 0.039855170994997025, -0.04834279790520668, 0.11199499666690826, -0.0599207878112793, -0.14279749989509583, 0.03848174214363098, -0.035031627863645554, -0.05092252790927887, -0.04755421355366707, 0.13903763890266418, 0.06705767661333084, 0.01065604668110609, 0.01884562149643898, 0.04531474411487579, -0.05388248711824417, -0.026882879436016083, -0.010066214948892593, 0.12327946722507477, 0.05510010942816734, 0.011639973148703575, -0.07479792833328247, -0.14151884615421295, -0.07981795817613602, -0.019393961876630783, 0.07861294597387314, 0.19774989783763885, -0.019975870847702026, 0.13706161081790924, 0.07006508857011795, -0.0876767560839653, -0.15129457414150238, -0.06156501919031143, 0.035826828330755234, 0.029252078384160995, -0.009911632165312767, -0.245381161570549, 0.04794229939579964, 0.10271211713552475, -0.01328406110405922, 0.01032176148146391, -0.2102854996919632, -0.1405280977487564, 0.03737499192357063, -0.04589692875742912, 0.031579796224832535, -0.1325266808271408, -0.033778510987758636, -0.051714230328798294, -0.0633612871170044, 0.19422638416290283, 0.03167101740837097, 0.03920649364590645, 0.022915294393897057, 0.08705008774995804, 0.07482650876045227, 0.005430110730230808, 0.13675782084465027, -0.0027745901606976986, -0.023334991186857224, -0.050321292132139206, -0.09850304573774338, 0.09049965441226959, -0.03215915337204933, 0.09074758738279343, 0.03997190296649933, 0.007339417934417725, -0.03297817334532738, -0.06099193915724754, -0.05818045511841774, 0.06653209775686264, -0.04833477735519409, -0.04364033415913582, -0.08237168192863464, 0.0014207554049789906, 0.016253761947155, 0.006767507642507553, 0.06880863755941391, -0.12931986153125763, 0.030992470681667328, 0.26776406168937683, 0.09318611770868301, -0.013611771166324615, -0.05619976297020912, 0.044918619096279144, 0.009110038168728352, -0.004939808044582605, -0.07076163589954376, 0.04666590318083763, 0.10031816363334656, -0.00871011521667242, 0.14250797033309937, -0.0265226848423481, -0.1301020085811615, 0.030270472168922424, 0.07350657880306244, -0.09659164398908615, -0.26883602142333984, -0.06469345092773438, 0.12045002728700638, -0.12205886840820312, -0.02471012808382511, 0.13286933302879333, 0.04393678903579712, -0.047429878264665604, 0.012542342767119408, 0.11392481625080109, -0.02021353505551815, 0.03097260184586048, -0.09208965301513672, 0.028812488541007042, -0.06102375313639641, 0.08748811483383179, 0.2026340216398239, -0.16548077762126923, -0.015769613906741142, 0.10566973686218262, -0.0682268962264061, -0.026858456432819366, -0.05958014354109764, 0.03389425948262215, -0.06260839849710464, -0.017394980415701866, -0.045163560658693314, -0.05604247748851776, -0.03751102462410927, 0.07557065784931183, -0.04220159351825714, 0.07928898185491562, 0.011522718705236912, -0.02107390947639942, -0.046342067420482635, 0.04827842488884926, -0.026416845619678497, -0.019079338759183884, 0.012406324967741966, 0.029725907370448112, -0.03529263287782669, 0.052024416625499725, -0.017615683376789093, -0.11605235189199448, -0.05075361207127571, -0.03595535084605217, -0.015373614616692066, -0.016051089391112328, -0.1367061287164688, -0.03490285202860832, 0.011656626127660275, -0.01903877779841423, 0.018482446670532227, -0.02517010271549225, -0.04189964011311531, -0.019254593178629875, -0.1047113910317421, 0.03368091955780983, -0.09309025853872299, 0.0179582592099905, 0.05995092913508415, -0.07898430526256561, 0.1129935160279274, 0.10619053989648819, -0.05196794867515564, -0.05066657066345215, -0.015271764248609543, 0.014452526345849037, 0.019231053069233894, 0.07003109902143478, 0.023360464721918106, -0.08682908862829208, -0.057581644505262375, 0.0355968214571476, -0.023336755111813545, -0.056154459714889526, 0.046776093542575836, -0.07244444638490677, 0.07259250432252884, 0.04513590782880783, -0.12059099972248077, -0.04772147908806801, 0.004233413375914097, 0.045475736260414124, 0.03697426617145538, 0.06482752412557602, 0.00882757268846035, 0.09046677500009537, -0.13460132479667664, -0.03327863663434982, 0.02563857100903988, 0.007478625047951937, -0.02817530557513237, -0.11907263100147247, 0.013959153555333614, 0.039810970425605774, 0.059074945747852325, -0.0072364057414233685, -0.018411004915833473, 0.023788228631019592, 0.028130842372775078, 0.03462895378470421, 0.0714174285531044, -0.03516695275902748, 0.018734732642769814, -0.012191325426101685, 0.06936319172382355, 0.012888369150459766, -0.044015780091285706, 0.09782751649618149, 0.08695080876350403, 0.0181594155728817, 0.07704782485961914, 0.029976489022374153, 0.07780204713344574, -0.017930204048752785, -0.025716640055179596, 0.03912440314888954, -0.07831727713346481, 0.009270092472434044, -0.08529362827539444, 0.08847589790821075, 0.10242891311645508, -0.1142105981707573, 0.11499342322349548, 0.036749664694070816, -0.10557708144187927, -0.12693336606025696, -0.18839877843856812, -0.061279620975255966, -0.037815723568201065, -0.07018537074327469, -0.10680659115314484, 0.042926888912916183, -0.0341167226433754, -0.027790991589426994, -0.044811129570007324, 0.19010937213897705, -0.034443873912096024, -0.11053916066884995, -0.03884626552462578, 0.03193851187825203, 0.038440365344285965, -0.026891229674220085, 0.03180619701743126, 0.05539555102586746, 0.1469663381576538, 0.07332929968833923, 0.09005377441644669, 0.1035754382610321, 0.04426857829093933, -0.1485387235879898, -0.03718748688697815, -0.030044909566640854, -0.005162270274013281, -0.035399869084358215, 0.053093619644641876, 0.03245098516345024, -0.03472425416111946, 0.021102331578731537, 0.19274091720581055, 0.0037179142236709595, -0.02006136253476143, -0.15735632181167603, 0.08099465817213058, -0.06561518460512161, 0.02410098910331726, 0.002441718941554427, -0.08870528638362885, -0.08895192295312881, 0.06797809898853302, 0.20458130538463593, 0.018653536215424538, -0.036081235855817795, -0.05617847666144371, 0.041542284190654755, -0.030326297506690025, 0.034896120429039, -0.014565179124474525, 0.21897082030773163, -0.015612689778208733, 0.05778926610946655, 0.045927852392196655, -0.03491360321640968, -0.07687411457300186, 0.037524718791246414, -0.06184052303433418, 0.022977514192461967, 0.021349668502807617, 0.10025496780872345, -0.05512615665793419, -0.17475062608718872, -0.04933531582355499, -0.08710367977619171, -0.09064240753650665, -0.03840642422437668, -0.010748201981186867, -0.05530732497572899, 0.06158831715583801, 0.0004301117151044309, -0.05612529069185257, 0.15728449821472168, 0.012750543653964996, -0.08176486939191818, -0.02965547889471054, 0.15030576288700104, -0.2837796211242676, 0.08910837024450302, -0.01650109700858593, 0.031442563980817795, 0.05343279242515564, -0.006518366746604443, -0.10318342596292496, 0.03883295878767967, 0.040520187467336655, 0.0015543954214081168, 0.026252031326293945, 0.07836394757032394, -0.028718221932649612, 0.08709973841905594, 0.03385616093873978, -0.06397140026092529, 0.045205581933259964, 0.02553693577647209, -0.01688610203564167, -0.004371051210910082, 0.07416509836912155, -0.14146576821804047, 0.09885380417108536, 0.09981855750083923, -0.059605225920677185, 0.040734969079494476, 0.0024500133004039526, 0.04032551497220993, 0.025407038629055023, 0.05182310938835144, -0.034846462309360504, -0.17861764132976532, -0.022073153406381607, -0.12879207730293274, 0.046604618430137634, -0.16683925688266754, -0.003582631004974246, -0.024260874837636948, 0.0002054119249805808, -0.009568854235112667, 0.1196838766336441, 0.016819072887301445, -0.0134675158187747, -0.04882890731096268, -0.04286409169435501, 0.05300731211900711, 0.10409259796142578, -0.06767579913139343, -0.034430745989084244 ]
17501f72697cf8018aaf496162e9dc1408a64e67
# 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://towardsdatascience.com/counsel-chat-bootstrapping-high-quality-therapy-data-971b419f33da** - **Repository: https://github.com/nbertagnolli/counsel-chat** - **Paper: https://towardsdatascience.com/counsel-chat-bootstrapping-high-quality-therapy-data-971b419f33da** - **Leaderboard: NA** - **Point of Contact: nbertagnolli** ### Dataset Summary Scrape of Counselchat.com's forum. CounselChat.com is an example of an expert community. It is a platform to help counselors build their reputation and make meaningful contact with potential clients. On the site, therapists respond to questions posed by clients, and users can like responses that they find most helpful. It’s a nice idea and lends itself to some interesting data. This data contains expert responses by licensed clinicialns to questions posed by individuals. ### Supported Tasks and Leaderboards NA ### Languages English ## Dataset Structure ### Data Instances [More Information Needed] ### Data Fields * questionID — A unique question identifier which is distinct for every question * questionTitle — The title of the question on counsel chat * questionText — The body of the individual’s question to counselors * questionLink — A URL to the last location of that question (might not still be active) * topic — The topic the question was listed under * therapistInfo — The summary of each therapist, usually a name and specialty * therapistURL — a link to the therapist’s bio on counselchat * answerText — The therapist response to the question * upvotes — The number of upvotes the answerText received * split — The data split for training, validation, and testing. ### Data Splits [More Information Needed] ## Dataset Creation ### Curation Rationale There is a lack of high quality open source mental health data available for study in NLP. Most datasets revolve around forums like Reddit, which can provide great insights, but don't capture the type of language often used by counselors. This dataset seeks to help bridge that gap and provide some additional data of counselors interacting with patients in need. ### Source Data The dataset was scraped on 20220401 from counselchat.com. #### Initial Data Collection and Normalization The dataset was scraped on 20220401 from counselchat.com. The data is in it's raw form and has not been normalized. #### Who are the source language producers? The text was written by licensed counselors in the United States and annonymous individuals. ### Annotations The dataset does not contain any additional annotations. ### Personal and Sensitive Information This data is not anonymized, so individuals' names can be found in the dataset. CounselChat.com allows therapists to advertise for their clinics by providing sound publicly available advise. The therapist names have been kept as part of the original dataset. ## Considerations for Using the Data ### Social Impact of Dataset [More Information Needed] ### Discussion of Biases [More Information Needed] ### Other Known Limitations [More Information Needed] ## Additional Information ### Dataset Curators nicolas bertagnolli ### Licensing Information MIT ### Citation Information Bertagnolli, N. Counsel Chat: Bootstrapping High-Quality Therapy Data. Available online: https://towardsdatascience.com/counsel-chat-bootstrapping-high-quality-therapy-data-971b419f33da ``` @misc{bertagnolli2020counsel, title={Counsel chat: Bootstrapping high-quality therapy data}, author={Bertagnolli, Nicolas}, year={2020}, publisher={Towards Data Science. https://towardsdatascience. com/counsel-chat~…} } ``` ### Contributions Thanks to [@nbertagnolli](https://github.com/nbertagnolli) for adding this dataset.
nbertagnolli/counsel-chat
[ "region:us" ]
2023-02-07T03:51:53+00:00
{}
2023-06-17T16:55:38+00:00
[]
[]
TAGS #region-us
# Dataset Card for [Dataset Name] ## Table of Contents - Table of Contents - Dataset Description - Dataset Summary - Supported Tasks and Leaderboards - Languages - Dataset Structure - Data Instances - Data Fields - Data Splits - Dataset Creation - Curation Rationale - Source Data - Annotations - Personal and Sensitive Information - Considerations for Using the Data - Social Impact of Dataset - Discussion of Biases - Other Known Limitations - Additional Information - Dataset Curators - Licensing Information - Citation Information - Contributions ## Dataset Description - Homepage: URL - Repository: URL - Paper: URL - Leaderboard: NA - Point of Contact: nbertagnolli ### Dataset Summary Scrape of URL's forum. URL is an example of an expert community. It is a platform to help counselors build their reputation and make meaningful contact with potential clients. On the site, therapists respond to questions posed by clients, and users can like responses that they find most helpful. It’s a nice idea and lends itself to some interesting data. This data contains expert responses by licensed clinicialns to questions posed by individuals. ### Supported Tasks and Leaderboards NA ### Languages English ## Dataset Structure ### Data Instances ### Data Fields * questionID — A unique question identifier which is distinct for every question * questionTitle — The title of the question on counsel chat * questionText — The body of the individual’s question to counselors * questionLink — A URL to the last location of that question (might not still be active) * topic — The topic the question was listed under * therapistInfo — The summary of each therapist, usually a name and specialty * therapistURL — a link to the therapist’s bio on counselchat * answerText — The therapist response to the question * upvotes — The number of upvotes the answerText received * split — The data split for training, validation, and testing. ### Data Splits ## Dataset Creation ### Curation Rationale There is a lack of high quality open source mental health data available for study in NLP. Most datasets revolve around forums like Reddit, which can provide great insights, but don't capture the type of language often used by counselors. This dataset seeks to help bridge that gap and provide some additional data of counselors interacting with patients in need. ### Source Data The dataset was scraped on 20220401 from URL. #### Initial Data Collection and Normalization The dataset was scraped on 20220401 from URL. The data is in it's raw form and has not been normalized. #### Who are the source language producers? The text was written by licensed counselors in the United States and annonymous individuals. ### Annotations The dataset does not contain any additional annotations. ### Personal and Sensitive Information This data is not anonymized, so individuals' names can be found in the dataset. URL allows therapists to advertise for their clinics by providing sound publicly available advise. The therapist names have been kept as part of the original dataset. ## Considerations for Using the Data ### Social Impact of Dataset ### Discussion of Biases ### Other Known Limitations ## Additional Information ### Dataset Curators nicolas bertagnolli ### Licensing Information MIT Bertagnolli, N. Counsel Chat: Bootstrapping High-Quality Therapy Data. Available online: URL ### Contributions Thanks to @nbertagnolli for adding this dataset.
[ "# Dataset Card for [Dataset Name]", "## Table of Contents\n- Table of Contents\n- Dataset Description\n - Dataset Summary\n - Supported Tasks and Leaderboards\n - Languages\n- Dataset Structure\n - Data Instances\n - Data Fields\n - Data Splits\n- Dataset Creation\n - Curation Rationale\n - Source Data\n - Annotations\n - Personal and Sensitive Information\n- Considerations for Using the Data\n - Social Impact of Dataset\n - Discussion of Biases\n - Other Known Limitations\n- Additional Information\n - Dataset Curators\n - Licensing Information\n - Citation Information\n - Contributions", "## Dataset Description\n\n- Homepage: URL\n- Repository: URL\n- Paper: URL\n- Leaderboard: NA\n- Point of Contact: nbertagnolli", "### Dataset Summary\n\nScrape of URL's forum. URL is an example of an expert community.\nIt is a platform to help counselors build their reputation and make meaningful contact with potential clients. \nOn the site, therapists respond to questions posed by clients, and users can like responses that they find most helpful. \nIt’s a nice idea and lends itself to some interesting data. This data contains expert responses by licensed clinicialns\nto questions posed by individuals.", "### Supported Tasks and Leaderboards\n\nNA", "### Languages\n\nEnglish", "## Dataset Structure", "### Data Instances", "### Data Fields\n\n* questionID — A unique question identifier which is distinct for every question\n\n* questionTitle — The title of the question on counsel chat\n* questionText — The body of the individual’s question to counselors\n* questionLink — A URL to the last location of that question (might not still be active)\n* topic — The topic the question was listed under\n* therapistInfo — The summary of each therapist, usually a name and specialty\n* therapistURL — a link to the therapist’s bio on counselchat\n* answerText — The therapist response to the question\n* upvotes — The number of upvotes the answerText received\n* split — The data split for training, validation, and testing.", "### Data Splits", "## Dataset Creation", "### Curation Rationale\n\nThere is a lack of high quality open source mental health data available for study in NLP. Most datasets revolve around\nforums like Reddit, which can provide great insights, but don't capture the type of language often used by counselors. \nThis dataset seeks to help bridge that gap and provide some additional data of counselors interacting with patients in \nneed.", "### Source Data\nThe dataset was scraped on 20220401 from URL.", "#### Initial Data Collection and Normalization\n\nThe dataset was scraped on 20220401 from URL. The data is in it's raw form and has not been normalized.", "#### Who are the source language producers?\n\nThe text was written by licensed counselors in the United States and annonymous individuals.", "### Annotations\nThe dataset does not contain any additional annotations.", "### Personal and Sensitive Information\n\nThis data is not anonymized, so individuals' names can be found in the dataset. URL allows therapists to advertise for their clinics\nby providing sound publicly available advise. The therapist names have been kept as part of the original dataset.", "## Considerations for Using the Data", "### Social Impact of Dataset", "### Discussion of Biases", "### Other Known Limitations", "## Additional Information", "### Dataset Curators\n\nnicolas bertagnolli", "### Licensing Information\n\nMIT\n\n\n\nBertagnolli, N. Counsel Chat: Bootstrapping High-Quality Therapy Data. Available online: URL", "### Contributions\n\nThanks to @nbertagnolli for adding this dataset." ]
[ "TAGS\n#region-us \n", "# Dataset Card for [Dataset Name]", "## Table of Contents\n- Table of Contents\n- Dataset Description\n - Dataset Summary\n - Supported Tasks and Leaderboards\n - Languages\n- Dataset Structure\n - Data Instances\n - Data Fields\n - Data Splits\n- Dataset Creation\n - Curation Rationale\n - Source Data\n - Annotations\n - Personal and Sensitive Information\n- Considerations for Using the Data\n - Social Impact of Dataset\n - Discussion of Biases\n - Other Known Limitations\n- Additional Information\n - Dataset Curators\n - Licensing Information\n - Citation Information\n - Contributions", "## Dataset Description\n\n- Homepage: URL\n- Repository: URL\n- Paper: URL\n- Leaderboard: NA\n- Point of Contact: nbertagnolli", "### Dataset Summary\n\nScrape of URL's forum. URL is an example of an expert community.\nIt is a platform to help counselors build their reputation and make meaningful contact with potential clients. \nOn the site, therapists respond to questions posed by clients, and users can like responses that they find most helpful. \nIt’s a nice idea and lends itself to some interesting data. This data contains expert responses by licensed clinicialns\nto questions posed by individuals.", "### Supported Tasks and Leaderboards\n\nNA", "### Languages\n\nEnglish", "## Dataset Structure", "### Data Instances", "### Data Fields\n\n* questionID — A unique question identifier which is distinct for every question\n\n* questionTitle — The title of the question on counsel chat\n* questionText — The body of the individual’s question to counselors\n* questionLink — A URL to the last location of that question (might not still be active)\n* topic — The topic the question was listed under\n* therapistInfo — The summary of each therapist, usually a name and specialty\n* therapistURL — a link to the therapist’s bio on counselchat\n* answerText — The therapist response to the question\n* upvotes — The number of upvotes the answerText received\n* split — The data split for training, validation, and testing.", "### Data Splits", "## Dataset Creation", "### Curation Rationale\n\nThere is a lack of high quality open source mental health data available for study in NLP. Most datasets revolve around\nforums like Reddit, which can provide great insights, but don't capture the type of language often used by counselors. \nThis dataset seeks to help bridge that gap and provide some additional data of counselors interacting with patients in \nneed.", "### Source Data\nThe dataset was scraped on 20220401 from URL.", "#### Initial Data Collection and Normalization\n\nThe dataset was scraped on 20220401 from URL. The data is in it's raw form and has not been normalized.", "#### Who are the source language producers?\n\nThe text was written by licensed counselors in the United States and annonymous individuals.", "### Annotations\nThe dataset does not contain any additional annotations.", "### Personal and Sensitive Information\n\nThis data is not anonymized, so individuals' names can be found in the dataset. URL allows therapists to advertise for their clinics\nby providing sound publicly available advise. The therapist names have been kept as part of the original dataset.", "## Considerations for Using the Data", "### Social Impact of Dataset", "### Discussion of Biases", "### Other Known Limitations", "## Additional Information", "### Dataset Curators\n\nnicolas bertagnolli", "### Licensing Information\n\nMIT\n\n\n\nBertagnolli, N. Counsel Chat: Bootstrapping High-Quality Therapy Data. Available online: URL", "### Contributions\n\nThanks to @nbertagnolli for adding this dataset." ]
[ 6, 10, 125, 33, 103, 11, 5, 6, 6, 161, 5, 5, 86, 17, 39, 29, 17, 62, 8, 7, 8, 7, 5, 11, 33, 19 ]
[ "passage: TAGS\n#region-us \n# Dataset Card for [Dataset Name]## Table of Contents\n- Table of Contents\n- Dataset Description\n - Dataset Summary\n - Supported Tasks and Leaderboards\n - Languages\n- Dataset Structure\n - Data Instances\n - Data Fields\n - Data Splits\n- Dataset Creation\n - Curation Rationale\n - Source Data\n - Annotations\n - Personal and Sensitive Information\n- Considerations for Using the Data\n - Social Impact of Dataset\n - Discussion of Biases\n - Other Known Limitations\n- Additional Information\n - Dataset Curators\n - Licensing Information\n - Citation Information\n - Contributions## Dataset Description\n\n- Homepage: URL\n- Repository: URL\n- Paper: URL\n- Leaderboard: NA\n- Point of Contact: nbertagnolli### Dataset Summary\n\nScrape of URL's forum. URL is an example of an expert community.\nIt is a platform to help counselors build their reputation and make meaningful contact with potential clients. \nOn the site, therapists respond to questions posed by clients, and users can like responses that they find most helpful. \nIt’s a nice idea and lends itself to some interesting data. This data contains expert responses by licensed clinicialns\nto questions posed by individuals.### Supported Tasks and Leaderboards\n\nNA### Languages\n\nEnglish## Dataset Structure### Data Instances### Data Fields\n\n* questionID — A unique question identifier which is distinct for every question\n\n* questionTitle — The title of the question on counsel chat\n* questionText — The body of the individual’s question to counselors\n* questionLink — A URL to the last location of that question (might not still be active)\n* topic — The topic the question was listed under\n* therapistInfo — The summary of each therapist, usually a name and specialty\n* therapistURL — a link to the therapist’s bio on counselchat\n* answerText — The therapist response to the question\n* upvotes — The number of upvotes the answerText received\n* split — The data split for training, validation, and testing.### Data Splits## Dataset Creation" ]
[ -0.03279028832912445, 0.21582774817943573, -0.0059060510247945786, 0.0074440957978367805, 0.07410674542188644, 0.02812032587826252, 0.11962927877902985, 0.14621400833129883, 0.06769529730081558, 0.11330384016036987, -0.06388679146766663, 0.026606231927871704, 0.11762701719999313, 0.061885930597782135, 0.07014124095439911, -0.20978109538555145, 0.031582169234752655, -0.05725693330168724, 0.03434101492166519, 0.0704922005534172, 0.10051703453063965, -0.05886311084032059, 0.05798114091157913, -0.021546747535467148, -0.005635217763483524, 0.0218699611723423, -0.020232118666172028, -0.0037240013480186462, 0.05697517842054367, 0.021195415407419205, 0.06575696170330048, -0.05897831544280052, 0.011954017914831638, -0.31341981887817383, 0.02353404089808464, 0.09689174592494965, 0.004832915496081114, 0.03296530991792679, 0.09111310541629791, -0.06681255251169205, 0.1351451575756073, -0.15696249902248383, 0.05059540644288063, 0.0832112729549408, -0.1253855675458908, -0.1531422883272171, -0.11946973949670792, 0.06477408111095428, 0.08093226701021194, 0.08574788272380829, -0.056740716099739075, 0.08853346854448318, -0.02176288142800331, 0.026570627465844154, 0.08738823980093002, -0.08284564316272736, -0.042330287396907806, -0.07313071191310883, -0.024794697761535645, 0.08383376151323318, -0.1618368923664093, -0.007591020781546831, -0.05245407298207283, 0.012446894310414791, -0.06433887779712677, -0.020704932510852814, -0.0843157097697258, 0.019305264577269554, -0.08298999816179276, -0.05150773376226425, 0.17196939885616302, -0.0037264320999383926, -0.04395853355526924, -0.20641234517097473, -0.04041130095720291, 0.09990774840116501, 0.009663250297307968, 0.0006759946118108928, 0.04542843624949455, 0.003702361136674881, 0.07670518010854721, -0.08006163686513901, -0.07652179151773453, -0.02719937264919281, -0.052089229226112366, -0.0389355905354023, 0.02616574615240097, 0.029582761228084564, -0.005988315679132938, 0.0883881151676178, 0.04684377834200859, -0.07490550726652145, -0.049535591155290604, -0.03922617435455322, -0.15966829657554626, -0.007232227362692356, 0.012724656611680984, -0.08312409371137619, 0.02981560118496418, 0.13513468205928802, -0.03320753574371338, 0.026412848383188248, -0.08329841494560242, -0.038864605128765106, 0.08268328756093979, 0.1136627271771431, 0.022987524047493935, -0.09236198663711548, -0.09562400728464127, -0.020747052505612373, -0.014185214415192604, 0.014357149600982666, 0.025041241198778152, 0.034314606338739395, 0.01226776372641325, 0.11131090670824051, 0.13489991426467896, 0.007578602526336908, -0.07538338005542755, -0.02540922351181507, 0.11684679239988327, -0.11263895034790039, 0.05155981704592705, 0.03324039280414581, -0.01141055766493082, 0.07462752610445023, -0.0007181292166933417, -0.031146040186285973, -0.09927760809659958, 0.044550821185112, -0.03240910917520523, -0.01827498897910118, -0.10481877624988556, -0.030740922316908836, 0.0659247562289238, -0.030366765335202217, -0.09605070948600769, 0.016591202467679977, -0.12122512608766556, -0.10795858502388, 0.028367485851049423, -0.06864769756793976, 0.02573075145483017, -0.030653398483991623, 0.026473969221115112, 0.016052518039941788, 0.014531171880662441, 0.025669630616903305, -0.029058586806058884, 0.004451329819858074, -0.10369063913822174, 0.04409610480070114, 0.056942734867334366, 0.039068762212991714, -0.07793685048818588, 0.025564417243003845, -0.12975789606571198, 0.08012460172176361, -0.10661831498146057, -0.01217010710388422, -0.1041184589266777, 0.03555579110980034, 0.0032150435727089643, 0.009023304097354412, -0.04635213688015938, 0.10526847094297409, -0.19377997517585754, -0.0225695688277483, 0.2048003077507019, -0.09821517020463943, -0.0673854723572731, 0.07356909662485123, -0.03615695983171463, 0.08683137595653534, 0.09452280402183533, 0.08955273032188416, 0.13193507492542267, -0.04580884054303169, -0.08090736716985703, -0.05883031338453293, -0.027108842507004738, 0.10951121896505356, 0.04257392883300781, -0.14661027491092682, 0.14655160903930664, 0.027504807338118553, -0.06164383888244629, -0.06356853991746902, 0.020762823522090912, -0.04543616250157356, 0.009078731760382652, -0.01406022533774376, -0.07849481701850891, 0.017010461539030075, -0.08341890573501587, -0.03227436542510986, -0.08410882204771042, 0.05558547005057335, 0.05367186293005943, -0.0016103810630738735, 0.04036746546626091, -0.06479763239622116, -0.07676154375076294, 0.04732365161180496, 0.017442522570490837, -0.15834103524684906, -0.1352492719888687, 0.0312275942414999, -0.10483155399560928, 0.11361681669950485, 0.003170421114191413, 0.031378407031297684, -0.03809056058526039, -0.054995469748973846, -0.009773369878530502, 0.023589657619595528, 0.016246629878878593, -0.027645254507660866, -0.16941630840301514, 0.03683862090110779, -0.037927333265542984, 0.0868019387125969, 0.03438962250947952, -0.024676702916622162, 0.12149693816900253, 0.155570849776268, 0.0880059152841568, -0.0633791983127594, 0.0465933196246624, 0.025063199922442436, 0.0262342169880867, -0.0239522997289896, 0.032791510224342346, -0.05959410220384598, 0.06751029938459396, 0.06298893690109253, -0.0896967202425003, -0.18221381306648254, 0.07235356420278549, 0.09565486758947372, -0.01738603413105011, -0.035150352865457535, -0.04848041757941246, -0.006185335107147694, -0.09427794814109802, -0.11478479951620102, 0.08407902717590332, 0.06569550186395645, 0.0008602086454629898, -0.03381960466504097, -0.08270059525966644, -0.07134035974740982, 0.01401586178690195, -0.05066858232021332, 0.09446540474891663, 0.05605041980743408, -0.11624538153409958, 0.1218835711479187, 0.07009503245353699, 0.1220802292227745, 0.16351021826267242, -0.05233336240053177, -0.11297016590833664, -0.013966883532702923, -0.0010567901190370321, 0.03797653689980507, 0.08381232619285583, -0.07555007934570312, 0.02039814367890358, 0.05355637148022652, 0.035447899252176285, 0.01628926396369934, -0.07536598294973373, 0.034599289298057556, -0.00897604413330555, -0.028727224096655846, -0.004837353248149157, -0.0009108631056733429, 0.05315753445029259, 0.10409223288297653, 0.016849325969815254, 0.10912436246871948, -0.05510427802801132, -0.06637439131736755, -0.1013331413269043, 0.09092478454113007, -0.19267675280570984, -0.2309059500694275, -0.1561998575925827, -0.03770056366920471, -0.02260529063642025, -0.008299209177494049, 0.02054801769554615, -0.08908140659332275, -0.09022638201713562, -0.09099036455154419, 0.11262326687574387, 0.07453945279121399, -0.14920014142990112, -0.09113980829715729, 0.03597874939441681, -0.0011338185286149383, -0.14679376780986786, 0.02114620804786682, 0.038386039435863495, -0.0704236850142479, -0.014510276727378368, -0.012697946280241013, 0.07140185683965683, 0.08395165950059891, 0.09648282825946808, -0.03418510779738426, -0.0228782519698143, 0.16320447623729706, -0.1362932324409485, 0.1639963984489441, 0.11495250463485718, 0.004572638776153326, 0.08527182787656784, 0.13357268273830414, 0.03007124923169613, -0.04254908487200737, 0.028511354699730873, 0.10366128385066986, 0.011574718169867992, -0.2783850133419037, -0.0904623419046402, -0.07115115970373154, -0.019193772226572037, 0.04899250343441963, 0.07423427700996399, 0.004688322078436613, -0.009796155616641045, -0.09878230839967728, -0.0994274690747261, 0.042356811463832855, 0.07788553833961487, 0.09565391391515732, -0.03003796376287937, 0.03247250244021416, -0.10465648770332336, 0.022267725318670273, 0.11337171494960785, 0.07108073681592941, 0.18619579076766968, 0.042404916137456894, 0.22968167066574097, 0.1002935916185379, 0.018573343753814697, -0.020960887894034386, 0.05637228861451149, -0.024380924180150032, 0.06369470804929733, 0.0006915323319844902, -0.052614010870456696, 0.004454214125871658, 0.07191696017980576, 0.08484897017478943, -0.08248454332351685, 0.04687083512544632, -0.12374354898929596, 0.09783865511417389, 0.13185787200927734, 0.04732401669025421, 0.00043694343185052276, -0.006897358223795891, 0.08854828774929047, -0.09165571630001068, -0.10570551455020905, 0.002702409867197275, 0.04614083096385002, -0.16325196623802185, 0.05352301895618439, -0.023129858076572418, 0.13206803798675537, -0.09944706410169601, -0.032969407737255096, 0.00823836587369442, 0.00997607596218586, -0.0327429473400116, 0.08465710282325745, -0.14346836507320404, 0.06880967319011688, 0.012938302010297775, 0.03171989321708679, -0.06763611733913422, 0.04064906761050224, 0.0073949736542999744, -0.013679342344403267, 0.1370900273323059, 0.027599133551120758, -0.1140652596950531, 0.03592664748430252, 0.006323446519672871, 0.004666616674512625, 0.1268179714679718, -0.12263862043619156, 0.08990039676427841, -0.04227761924266815, -0.02611459605395794, -0.058272719383239746, -0.04090173915028572, -0.07090996950864792, -0.24871477484703064, 0.027569936588406563, -0.033243875950574875, 0.10485424846410751, -0.06535570323467255, 0.025919586420059204, -0.045495450496673584, 0.04687873274087906, -0.16002725064754486, -0.07038523256778717, -0.12525244057178497, -0.11624252796173096, 0.15443676710128784, -0.04662398248910904, 0.041190069168806076, -0.04740826413035393, 0.13170026242733002, -0.01706012897193432, -0.03635004162788391, -0.0024594785645604134, -0.03908243402838707, -0.18478940427303314, -0.07838495075702667, 0.20814763009548187, 0.08353245258331299, 0.035180360078811646, 0.0010790228843688965, 0.09156662970781326, -0.044447559863328934, -0.08193870633840561, 0.06623795628547668, 0.17781126499176025, 0.030697010457515717, 0.09487026184797287, -0.029701832681894302, -0.07962672412395477, -0.12453006953001022, -0.04168391600251198, 0.09919305890798569, 0.05332052335143089, -0.01187082938849926, 0.18244680762290955, 0.0829366073012352, -0.1349501758813858, -0.21178936958312988, -0.008086176589131355, -0.009346764534711838, -0.050075963139534, 0.0465240553021431, -0.20627716183662415, 0.09219320118427277, 0.0014310003025457263, -0.004664560779929161, 0.027852602303028107, -0.15833571553230286, -0.10677356272935867, 0.02718433551490307, 0.0338633693754673, -0.22378036379814148, -0.14141108095645905, -0.06951333582401276, -0.05942866951227188, -0.19203703105449677, 0.19012340903282166, -0.05406101047992706, 0.002849963726475835, -0.0490737110376358, 0.09897123277187347, 0.007926367223262787, -0.016746273264288902, 0.12280302494764328, 0.016368888318538666, 0.04595581069588661, -0.05649270489811897, 0.02927468530833721, 0.12610302865505219, -0.03280589357018471, 0.06265339255332947, -0.027270672842860222, 0.0044796280562877655, -0.12138176709413528, -0.04509929195046425, -0.07921188324689865, -0.020292334258556366, -0.08179192990064621, -0.049426235258579254, -0.08867210894823074, 0.085367850959301, 0.07093522697687149, -0.03625212237238884, 0.012138305231928825, -0.07734199613332748, 0.024912238121032715, 0.12105365842580795, 0.1376969814300537, 0.10536965727806091, -0.15596145391464233, -0.03774835169315338, -0.011634956113994122, -0.0026147684548050165, -0.11871712654829025, 0.06264948844909668, 0.08658775687217712, 0.009016061201691628, 0.14087536931037903, -0.046927064657211304, -0.18935349583625793, -0.03241313621401787, 0.07552304863929749, -0.039920683950185776, -0.31196433305740356, 0.015262776985764503, 0.04592837765812874, -0.1435115933418274, -0.025467107072472572, 0.0628027468919754, 0.06957404315471649, -0.045214783400297165, 0.041866742074489594, 0.07932440936565399, 0.02803964540362358, 0.05380864813923836, 0.016271496191620827, 0.03742075338959694, -0.07546847313642502, 0.11095752567052841, 0.08348417282104492, -0.12451756000518799, -0.03535224124789238, 0.15857920050621033, -0.049506671726703644, -0.052695732563734055, 0.05970235541462898, 0.08182830363512039, 0.02636946178972721, -0.03304029628634453, 0.03895273432135582, -0.1354409009218216, 0.04077877104282379, 0.11515349894762039, -0.039756208658218384, 0.041783202439546585, 0.0015415800735354424, -0.008681386709213257, -0.03634777292609215, 0.11390256881713867, -0.04414863884449005, 0.016175447031855583, 0.006916419602930546, -0.005707323085516691, -0.011824842542409897, -0.07504383474588394, 0.03126387670636177, -0.06527427583932877, -0.05798650532960892, 0.010799282230436802, -0.1570342481136322, -0.053394854068756104, -0.09455758333206177, -0.027132203802466393, 0.027050286531448364, -0.022270986810326576, 0.042367201298475266, -0.0011743692448362708, -0.029627839103341103, -0.050563085824251175, -0.022103190422058105, 0.11663743108510971, -0.21670210361480713, 0.035182058811187744, 0.1278243511915207, -0.05890963599085808, 0.0932786613702774, -0.0294277872890234, -0.05028269812464714, 0.06071920692920685, -0.11741965264081955, -0.024134214967489243, -0.07459165155887604, 0.03522191941738129, 0.01813935488462448, -0.14236260950565338, -0.023467741906642914, -0.0005027271690778434, -0.0510108657181263, 0.04397006705403328, 0.018216485157608986, -0.06260012835264206, 0.11546271294355392, 0.04038716480135918, -0.07058873027563095, -0.05276155844330788, 0.028409993276000023, 0.07753666490316391, -0.008017719723284245, 0.12226811796426773, -0.02679257094860077, 0.08403550833463669, -0.12128552049398422, -0.009714835323393345, 0.040880195796489716, 0.019348328933119774, 0.04452934488654137, -0.04789751395583153, 0.0379762277007103, -0.004225574433803558, 0.16359280049800873, -0.021712813526391983, -0.013024606741964817, 0.0780690535902977, 0.05271501466631889, -0.134211465716362, 0.022965004667639732, 0.028893226757645607, -0.015708990395069122, -0.012113322503864765, -0.04101933538913727, -0.09813451766967773, -0.10300299525260925, -0.006661653984338045, 0.13888868689537048, 0.20932801067829132, 0.20413263142108917, -0.0352010652422905, 0.06527628004550934, -0.03271494060754776, -0.06536608934402466, -0.019250230863690376, -0.019534941762685776, -0.020912187173962593, -0.08616123348474503, 0.12251710891723633, 0.055562715977430344, -0.17685836553573608, 0.13947130739688873, -0.04567135497927666, -0.054807551205158234, -0.022444231435656548, -0.19922687113285065, -0.02107694000005722, -0.039983395487070084, -0.007114349398761988, -0.09176265448331833, 0.09567495435476303, 0.06746549159288406, 0.005187929607927799, -0.038268886506557465, 0.12036459892988205, -0.14626836776733398, -0.10178453475236893, 0.06631941348314285, 0.0617668442428112, 0.05722736939787865, 0.027344563975930214, 0.12374608218669891, -0.032934751361608505, 0.033193573355674744, 0.06847470998764038, 0.11438122391700745, -0.032817766070365906, -0.024935195222496986, -0.07264583557844162, -0.0675157755613327, 0.03988569229841232, -0.016265830025076866, -0.0960957482457161, 0.27206185460090637, 0.0529545396566391, 0.029171915724873543, 0.006022532936185598, 0.22478976845741272, -0.051261596381664276, -0.10397190600633621, -0.1253156214952469, 0.09794817864894867, -0.028117148205637932, -0.017568795010447502, 0.04511115700006485, -0.13481704890727997, 0.01769697107374668, 0.14068061113357544, 0.1461053490638733, -0.005218505859375, 0.021506983786821365, 0.014629282057285309, 0.03223951533436775, 0.0035248869098722935, 0.05067717656493187, -0.004343865904957056, 0.26186293363571167, -0.03406843543052673, 0.14312811195850372, 0.007595614995807409, -0.05945858731865883, -0.02447686716914177, 0.08651014417409897, -0.03976765275001526, -0.04482218995690346, -0.06980480998754501, 0.14227959513664246, -0.08732912689447403, -0.24895238876342773, 0.08670425415039062, -0.07126376777887344, -0.10281343013048172, -0.023280398920178413, 0.08620208501815796, 0.019431108608841896, -0.005354116205126047, 0.0830240324139595, -0.012728284113109112, 0.2741200625896454, 0.038109730929136276, -0.05339252948760986, -0.06351694464683533, 0.12405307590961456, -0.21700330078601837, 0.14224925637245178, 0.024475621059536934, 0.02259940467774868, 0.08352573215961456, -0.03643933683633804, -0.12357781827449799, 0.04992860183119774, 0.0664093941450119, -0.07729247212409973, 0.003933123778551817, 0.16121062636375427, 0.040013205260038376, 0.11726392805576324, 0.09314695745706558, -0.01846933551132679, 0.08263351023197174, 0.0842478945851326, -0.01574990525841713, -0.11637260764837265, 0.12698522210121155, -0.1381799280643463, 0.10195477306842804, 0.13041603565216064, -0.028589187189936638, 0.02462431788444519, -0.017527703195810318, -0.001408352516591549, -0.017082756385207176, 0.11059636622667313, -0.006185013335198164, -0.04524649679660797, 0.01026055496186018, 0.034509897232055664, 0.08543150126934052, -0.1813548058271408, -0.07922857254743576, 0.04188808426260948, -0.023500913754105568, -0.017602574080228806, 0.12914927303791046, 0.06836561858654022, 0.03159693256020546, -0.03378447890281677, -0.11091136187314987, 0.03819956257939339, 0.11170276999473572, -0.027420246973633766, 0.04249479994177818 ]
c7badfe00b1477ce672f50ee353b3b4129ee3fa0
# Dataset Card for "pytorch-issues" [More Information needed](https://github.com/huggingface/datasets/blob/main/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
BigTimeCoderSean/pytorch-issues
[ "region:us" ]
2023-02-07T04:10:39+00:00
{"dataset_info": {"features": [{"name": "url", "dtype": "string"}, {"name": "repository_url", "dtype": "string"}, {"name": "labels_url", "dtype": "string"}, {"name": "comments_url", "dtype": "string"}, {"name": "events_url", "dtype": "string"}, {"name": "html_url", "dtype": "string"}, {"name": "id", "dtype": "int64"}, {"name": "node_id", "dtype": "string"}, {"name": "number", "dtype": "int64"}, {"name": "title", "dtype": "string"}, {"name": "user", "struct": [{"name": "login", "dtype": "string"}, {"name": "id", "dtype": "int64"}, {"name": "node_id", "dtype": "string"}, {"name": "avatar_url", "dtype": "string"}, {"name": "gravatar_id", "dtype": "string"}, {"name": "url", "dtype": "string"}, {"name": "html_url", "dtype": "string"}, {"name": "followers_url", "dtype": "string"}, {"name": "following_url", "dtype": "string"}, {"name": "gists_url", "dtype": "string"}, {"name": "starred_url", "dtype": "string"}, {"name": "subscriptions_url", "dtype": "string"}, {"name": "organizations_url", "dtype": "string"}, {"name": "repos_url", "dtype": "string"}, {"name": "events_url", "dtype": "string"}, {"name": "received_events_url", "dtype": "string"}, {"name": "type", "dtype": "string"}, {"name": "site_admin", "dtype": "bool"}]}, {"name": "labels", "list": [{"name": "id", "dtype": "int64"}, {"name": "node_id", "dtype": "string"}, {"name": "url", "dtype": "string"}, {"name": "name", "dtype": "string"}, {"name": "color", "dtype": "string"}, {"name": "default", "dtype": "bool"}, {"name": "description", "dtype": "string"}]}, {"name": "state", "dtype": "string"}, {"name": "locked", "dtype": "bool"}, {"name": "assignee", "struct": [{"name": "login", "dtype": "string"}, {"name": "id", "dtype": "int64"}, {"name": "node_id", "dtype": "string"}, {"name": "avatar_url", "dtype": "string"}, {"name": "gravatar_id", "dtype": "string"}, {"name": "url", "dtype": "string"}, {"name": "html_url", "dtype": "string"}, {"name": "followers_url", "dtype": "string"}, {"name": "following_url", "dtype": "string"}, {"name": "gists_url", "dtype": "string"}, {"name": "starred_url", "dtype": "string"}, {"name": "subscriptions_url", "dtype": "string"}, {"name": "organizations_url", "dtype": "string"}, {"name": "repos_url", "dtype": "string"}, {"name": "events_url", "dtype": "string"}, {"name": "received_events_url", "dtype": "string"}, {"name": "type", "dtype": "string"}, {"name": "site_admin", "dtype": "bool"}]}, {"name": "assignees", "list": [{"name": "login", "dtype": "string"}, {"name": "id", "dtype": "int64"}, {"name": "node_id", "dtype": "string"}, {"name": "avatar_url", "dtype": "string"}, {"name": "gravatar_id", "dtype": "string"}, {"name": "url", "dtype": "string"}, {"name": "html_url", "dtype": "string"}, {"name": "followers_url", "dtype": "string"}, {"name": "following_url", "dtype": "string"}, {"name": "gists_url", "dtype": "string"}, {"name": "starred_url", "dtype": "string"}, {"name": "subscriptions_url", "dtype": "string"}, {"name": "organizations_url", "dtype": "string"}, {"name": "repos_url", "dtype": "string"}, {"name": "events_url", "dtype": "string"}, {"name": "received_events_url", "dtype": "string"}, {"name": "type", "dtype": "string"}, {"name": "site_admin", "dtype": "bool"}]}, {"name": "milestone", "dtype": "null"}, {"name": "comments", "dtype": "int64"}, {"name": "created_at", "dtype": "timestamp[s]"}, {"name": "updated_at", "dtype": "timestamp[s]"}, {"name": "closed_at", "dtype": "timestamp[s]"}, {"name": "author_association", "dtype": "string"}, {"name": "active_lock_reason", "dtype": "null"}, {"name": "body", "dtype": "string"}, {"name": "reactions", "struct": [{"name": "url", "dtype": "string"}, {"name": "total_count", "dtype": "int64"}, {"name": "+1", "dtype": "int64"}, {"name": "-1", "dtype": "int64"}, {"name": "laugh", "dtype": "int64"}, {"name": "hooray", "dtype": "int64"}, {"name": "confused", "dtype": "int64"}, {"name": "heart", "dtype": "int64"}, {"name": "rocket", "dtype": "int64"}, {"name": "eyes", "dtype": "int64"}]}, {"name": "timeline_url", "dtype": "string"}, {"name": "performed_via_github_app", "dtype": "null"}, {"name": "state_reason", "dtype": "string"}, {"name": "draft", "dtype": "bool"}, {"name": "pull_request", "struct": [{"name": "url", "dtype": "string"}, {"name": "html_url", "dtype": "string"}, {"name": "diff_url", "dtype": "string"}, {"name": "patch_url", "dtype": "string"}, {"name": "merged_at", "dtype": "timestamp[s]"}]}, {"name": "is_pull_request", "dtype": "bool"}], "splits": [{"name": "train", "num_bytes": 1524374.916, "num_examples": 492}], "download_size": 540539, "dataset_size": 1524374.916}}
2023-02-07T06:38:06+00:00
[]
[]
TAGS #region-us
# Dataset Card for "pytorch-issues" More Information needed
[ "# Dataset Card for \"pytorch-issues\"\n\nMore Information needed" ]
[ "TAGS\n#region-us \n", "# Dataset Card for \"pytorch-issues\"\n\nMore Information needed" ]
[ 6, 16 ]
[ "passage: TAGS\n#region-us \n# Dataset Card for \"pytorch-issues\"\n\nMore Information needed" ]
[ -0.14554491639137268, 0.09563693404197693, -0.005919759161770344, 0.05061514675617218, 0.09442391991615295, 0.08725441247224808, 0.08528128266334534, 0.08119253069162369, 0.13183866441249847, -0.033630769699811935, 0.1316399872303009, 0.09580148011445999, 0.025456596165895462, 0.1419086903333664, -0.021759726107120514, -0.11676652729511261, 0.04824736341834068, 0.06989046931266785, 0.061022914946079254, 0.12258446961641312, 0.03223893418908119, -0.10670634359121323, 0.03303185850381851, -0.058588966727256775, -0.18461474776268005, 0.01928381249308586, -0.01757507398724556, -0.059542324393987656, 0.13699032366275787, -0.13204818964004517, 0.1672726720571518, 0.012353098951280117, 0.008221291936933994, -0.09861942380666733, 0.04125978425145149, 0.01711101643741131, -0.043149955570697784, 0.10885737836360931, 0.07753241062164307, -0.09782660752534866, -0.028317149728536606, -0.006141222547739744, 0.021241378039121628, -0.02911967970430851, -0.09085341542959213, -0.30286771059036255, -0.1226557046175003, 0.03526468947529793, 0.02023606188595295, 0.034180864691734314, 0.047861479222774506, 0.23407088220119476, -0.15726026892662048, 0.058144450187683105, 0.17357096076011658, -0.10902213305234909, 0.056648410856723785, 0.0965222641825676, 0.011659517884254456, 0.06701409816741943, -0.013563156127929688, 0.03589979186654091, 0.03756909817457199, 0.006258698180317879, -0.039510808885097504, -0.021887032315135002, -0.20900164544582367, 0.07188115268945694, -0.044158633798360825, -0.12253381311893463, 0.27561110258102417, -0.02049548737704754, 0.0054996726103127, 0.026359034702181816, -0.02633500285446644, -0.040312156081199646, 0.07699722796678543, 0.06380731612443924, -0.027458203956484795, -0.040231090039014816, 0.1293536126613617, -0.017847122624516487, -0.12433648854494095, -0.10228660702705383, -0.13668113946914673, 0.11943630129098892, -0.012937774881720543, 0.19120441377162933, -0.20040489733219147, 0.04917038232088089, 0.045033372938632965, -0.051509253680706024, 0.030789729207754135, -0.09916296601295471, 0.0074944100342690945, 0.024948399513959885, -0.004849563352763653, 0.10789816081523895, 0.09063602238893509, 0.039036475121974945, -0.018517976626753807, -0.01172956358641386, -0.001967195188626647, 0.1338135153055191, 0.17620013654232025, -0.08402793109416962, -0.038508519530296326, 0.0897284671664238, 0.02746383100748062, -0.06911123543977737, -0.008838102221488953, -0.09945574402809143, -0.07471218705177307, -0.026927750557661057, -0.0016237563686445355, 0.15109632909297943, 0.0202188678085804, -0.1478424072265625, -0.04707815870642662, -0.05522498860955238, 0.15043465793132782, -0.10317249596118927, -0.023769637569785118, 0.048094794154167175, -0.04890055954456329, 0.06378615647554398, -0.06158924475312233, -0.03682645410299301, -0.023415375500917435, 0.1265125274658203, -0.08386348187923431, -0.0016532597364857793, -0.045879069715738297, -0.005633609835058451, 0.0695798397064209, -0.22205445170402527, 0.04042401537299156, -0.057687778025865555, -0.2519634962081909, 0.06489378958940506, 0.007046555634588003, -0.011665656231343746, 0.0934797152876854, 0.0885414183139801, 0.08230634033679962, -0.07979925721883774, -0.06299208104610443, 0.1099531501531601, -0.06038442999124527, 0.11238104850053787, -0.05314029008150101, 0.0366663932800293, -0.15508879721164703, 0.04064358025789261, -0.12433683127164841, -0.018316172063350677, 0.030172081664204597, -0.033454734832048416, -0.07800798118114471, 0.024572597816586494, -0.024519290775060654, -0.0862666517496109, -0.05581321939826012, -0.011898040771484375, -0.007650247775018215, 0.08471458405256271, -0.1261240690946579, -0.0817791074514389, 0.12787841260433197, -0.15808311104774475, -0.16417741775512695, 0.017570123076438904, -0.034830205142498016, -0.0624474436044693, 0.01271525863558054, 0.2655373513698578, 0.018886657431721687, -0.0477961041033268, -0.0045579951256513596, 0.12328203022480011, -0.20334039628505707, -0.2603759467601776, 0.06876885145902634, -0.032648537307977676, -0.13612890243530273, 0.02116416208446026, 0.0675358921289444, -0.01091993972659111, -0.10585539042949677, -0.08511002361774445, -0.020076364278793335, -0.10392140597105026, 0.09676603972911835, 0.03740215674042702, 0.02157236821949482, -0.0022933173459023237, 0.10913451015949249, -0.01412350032478571, 0.07977312058210373, 0.023735500872135162, -0.020230896770954132, -0.007353412453085184, 0.16894054412841797, -0.04772413149476051, -0.03973762318491936, -0.2322891354560852, -0.15804368257522583, 0.0010721945436671376, -0.03334193676710129, -0.038142986595630646, -0.024106644093990326, 0.07082033902406693, 0.03563190996646881, 0.03339602053165436, 0.04701518267393112, 0.05143941193819046, 0.011625664308667183, 0.027995605021715164, -0.012147204950451851, -0.030184607952833176, -0.0924939215183258, 0.005295460112392902, 0.008725766092538834, -0.053173620253801346, 0.04797457903623581, 0.028055716305971146, -0.031090259552001953, -0.01578241027891636, 0.06148065626621246, -0.0098933270201087, 0.02160685323178768, -0.01421450451016426, 0.05935509502887726, -0.08341258019208908, -0.01207695435732603, -0.01543683186173439, -0.01446132455021143, 0.28473764657974243, 0.14418986439704895, -0.04177359491586685, 0.05548004060983658, -0.1065102145075798, -0.03291865810751915, -0.006295790430158377, -0.0811813697218895, 0.054538242518901825, -0.0339042954146862, 0.00556214340031147, 0.02977604977786541, -0.058336351066827774, 0.019183874130249023, 0.049026090651750565, -0.006042480934411287, -0.053979936987161636, 0.06854826211929321, 0.15918907523155212, -0.11816496402025223, 0.11974994838237762, 0.14473620057106018, 0.07174105942249298, 0.11841190606355667, -0.05473468080163002, -0.08289149403572083, 0.021073702722787857, -0.08871058374643326, -0.06823474913835526, 0.22224916517734528, -0.0790071114897728, 0.05445258319377899, 0.14204511046409607, -0.03557556867599487, 0.0841774120926857, -0.1317954808473587, -0.13079403340816498, -0.054878585040569305, -0.015196112915873528, -0.24949568510055542, 0.05240907147526741, 0.0756426751613617, 0.12779241800308228, -0.027782298624515533, -0.012067154981195927, 0.10403414815664291, 0.008780967444181442, -0.04956447705626488, 0.16189712285995483, -0.1530659794807434, -0.3370774984359741, -0.03062320686876774, 0.011960281059145927, 0.030479013919830322, -0.016656922176480293, -0.022526107728481293, -0.14436230063438416, -0.013412988744676113, 0.058924462646245956, -0.09394364804029465, -0.11851310729980469, -0.007513935677707195, 0.023815494030714035, 0.014451668597757816, -0.0934513509273529, -0.12282618880271912, 0.01052325963973999, -0.1118345782160759, 0.05840166658163071, 0.1552823930978775, -0.041114725172519684, 0.09228487312793732, 0.12823183834552765, -0.0003970412944909185, 0.08516127616167068, -0.05500142276287079, 0.07693082839250565, -0.06111593544483185, -0.05693573132157326, 0.1957346498966217, -0.042754631489515305, 0.05662420764565468, 0.004830252844840288, 0.08056950569152832, -0.06695734709501266, -0.046066299080848694, -0.08249177038669586, -0.18084827065467834, -0.3001653552055359, -0.1653851866722107, -0.06964801251888275, 0.07347310334444046, 0.022312898188829422, 0.05910853296518326, -0.008574909530580044, 0.07905341684818268, 0.08951488882303238, -0.14692407846450806, -0.11123736202716827, -0.035383619368076324, -0.025693567469716072, -0.016235005110502243, 0.021104935556650162, -0.09798720479011536, -0.006952438037842512, 0.1330696940422058, 0.11088249087333679, 0.34457552433013916, 0.03636825084686279, 0.020845068618655205, 0.05706661567091942, 0.24244552850723267, 0.10735682398080826, 0.2126992791891098, 0.036557793617248535, 0.004547331016510725, 0.034937430173158646, -0.01260377373546362, -0.062065720558166504, -0.08488572388887405, 0.0799909383058548, -0.10358235239982605, 0.001020360505208373, -0.14501914381980896, 0.023344865068793297, -0.10216113179922104, 0.010610570199787617, -0.18897779285907745, 0.07962992787361145, -0.04592901095747948, 0.1618369221687317, -0.07511545717716217, 0.03534778952598572, 0.027813155204057693, -0.11842731386423111, 0.02675173431634903, -0.04161657765507698, 0.0460226871073246, -0.055611416697502136, -0.007315775379538536, -0.0772189348936081, -0.06743362545967102, -0.01906525529921055, 0.14589284360408783, -0.1099444329738617, 0.3164983093738556, 0.0016252660425379872, -0.08724340051412582, -0.1353907436132431, -0.06810961663722992, -0.017936179414391518, 0.0423290990293026, 0.16111311316490173, 0.04809242859482765, 0.008926892653107643, -0.1660580337047577, -0.0817783996462822, 0.025914665311574936, 0.09612100571393967, 0.02370278909802437, -0.14815190434455872, 0.07492800056934357, 0.02367260865867138, -0.07184222340583801, -0.2041817456483841, -0.025554032996296883, -0.061517342925071716, 0.054541029036045074, -0.01150771789252758, -0.14588244259357452, -0.006496310234069824, -0.07771415263414383, -0.004934496711939573, 0.0383431650698185, 0.026044905185699463, -0.10424799472093582, -0.0930427759885788, -0.05247828736901283, 0.19836997985839844, -0.05876271426677704, 0.024165263399481773, 0.0002856417850125581, -0.024082748219370842, -0.054413195699453354, -0.20586098730564117, 0.05489368736743927, -0.11411639302968979, 0.029698072001338005, -0.06731779873371124, 0.17634835839271545, 0.023446518927812576, 0.012498731724917889, 0.009039768017828465, -0.004430131521075964, -0.11957003176212311, -0.0867956355214119, 0.14293496310710907, -0.050153110176324844, 0.16989777982234955, 0.23620595037937164, 0.05800023302435875, -0.0546371266245842, 0.05324061959981918, -0.008643854409456253, 0.20612724125385284, 0.07322688400745392, -0.06519775092601776, 0.22823303937911987, 0.21630708873271942, -0.016324304044246674, -0.22454527020454407, -0.015900174155831337, -0.09345006942749023, -0.04613979533314705, 0.08121303468942642, -0.22101990878582, 0.13560765981674194, 0.18621309101581573, -0.0484401173889637, 0.2898865342140198, -0.20060744881629944, -0.000026730391255114228, 0.1908532828092575, 0.04307359829545021, 0.35615774989128113, -0.07715511322021484, -0.04202466830611229, 0.009496026672422886, -0.18950894474983215, 0.22064541280269623, -0.06485751271247864, 0.011300206184387207, -0.05376680567860603, 0.10414982587099075, 0.0004681334539782256, -0.10499589145183563, 0.177015483379364, 0.07673273980617523, 0.0516931377351284, -0.04365505278110504, -0.13221599161624908, 0.0962822288274765, -0.006883996073156595, 0.08281512558460236, 0.042484357953071594, 0.06237885728478432, -0.20065133273601532, 0.0021163260098546743, -0.05528654903173447, 0.07292389124631882, 0.05235947668552399, -0.09068508446216583, -0.055860500782728195, -0.025016117841005325, -0.14944173395633698, -0.02196504920721054, 0.06991342455148697, 0.07248055189847946, 0.04584626853466034, 0.03844868764281273, 0.04835609346628189, -0.13482257723808289, -0.14450408518314362, -0.08900678902864456, -0.06913632899522781, 0.07649814337491989, -0.09863308817148209, -0.0031202961690723896, 0.15180155634880066, 0.05438608303666115, 0.006889829412102699, 0.07300346344709396, -0.027422385290265083, 0.017182448878884315, 0.13378767669200897, -0.19306789338588715, 0.03564118966460228, 0.07707856595516205, -0.08454355597496033, 0.022547708824276924, 0.10371369868516922, -0.01633622869849205, 0.06770888715982437, -0.04673425853252411, -0.040455061942338943, 0.08296588808298111, -0.03290310874581337, 0.08709722012281418, 0.13348500430583954, 0.06521030515432358, -0.17164193093776703, 0.17680178582668304, 0.04437541961669922, -0.06666062027215958, -0.04548408463597298, 0.031233590096235275, -0.11428062617778778, -0.08645640313625336, -0.0815669596195221, 0.11538254469633102, -0.07555942982435226, -0.09460702538490295, 0.0007620201795361936, -0.08545663952827454, 0.004312244709581137, 0.07990129292011261, 0.0635828822851181, 0.07790250331163406, -0.032140277326107025, -0.048454027622938156, -0.07168258726596832, -0.04633086919784546, -0.04778387024998665, -0.011470981873571873, -0.028057286515831947, -0.09511740505695343, 0.039242230355739594, 0.2376679629087448, -0.07765435427427292, -0.10493303835391998, -0.05667645111680031, 0.11166688799858093, -0.11775775253772736, 0.020160872489213943, -0.0050691599026322365, -0.024194594472646713, -0.02910405769944191, -0.011565858498215675, 0.03060470148921013, 0.011424140073359013, -0.10428162664175034, 0.12843917310237885, 0.060672834515571594, -0.016545725986361504, -0.15153445303440094, -0.02970057912170887, 0.09046896547079086, 0.0523732528090477, 0.18366940319538116, 0.19782641530036926, -0.00030279962811619043, 0.1007872074842453, -0.06948458403348923, -0.12022341042757034, 0.06927960366010666, 0.10354381054639816, 0.06286918371915817, 0.04800792783498764, 0.018474599346518517, 0.0812089815735817, -0.06251456588506699, 0.07367322593927383, -0.031188176944851875, -0.10129941999912262, 0.01621796377003193, -0.054318688809871674, -0.10414401441812515, 0.0023422441445291042, -0.09753279387950897, 0.14728814363479614, 0.04019594565033913, -0.0058784568682312965, 0.10605061799287796, 0.11019153147935867, -0.05929019674658775, -0.07015626132488251, -0.05735497176647186, -0.12733986973762512, -0.07505520433187485, 0.05524066835641861, 0.06454596668481827, -0.04634029045701027, 0.4007970690727234, 0.01370219700038433, -0.09485888481140137, -0.05051897093653679, 0.18194738030433655, -0.0054451520554721355, -0.02970147505402565, 0.21358922123908997, 0.033706314861774445, -0.03366486355662346, -0.0039194850251078606, 0.05014578253030777, -0.029309937730431557, -0.012603932991623878, 0.18770568072795868, 0.03522016853094101, 0.1379602998495102, -0.07585060596466064, 0.08143120259046555, -0.07091306895017624, -0.01053478755056858, -0.20003938674926758, 0.01675141230225563, -0.019145945087075233, 0.09325636178255081, -0.029237104579806328, 0.05819185823202133, -0.01732858642935753, 0.05337579548358917, -0.011058405973017216, -0.07422538846731186, -0.09604188799858093, -0.04793111979961395, 0.01359174307435751, -0.03596091642975807, 0.032477620989084244, -0.08452541381120682, -0.04774920642375946, 0.283629834651947, 0.07226863503456116, -0.012564143165946007, 0.05900966376066208, 0.03715089336037636, 0.08187217265367508, 0.013501586392521858, 0.04265104979276657, -0.026260655373334885, 0.02513965778052807, -0.03938323259353638, 0.004212066996842623, -0.0688944160938263, 0.021389713510870934, -0.020924706012010574, -0.017068149521946907, -0.000009946955287887249, -0.11302115023136139, -0.05027266964316368, -0.07453778386116028, 0.06556740403175354, -0.05055897682905197, 0.15021048486232758, 0.013856377452611923, 0.07671456038951874, 0.0013694696826860309, 0.12712685763835907, 0.03980713337659836, 0.020506855100393295, 0.054514192044734955, 0.11538907885551453, -0.050588853657245636, 0.009718935936689377, 0.06911399960517883, -0.04279481619596481, -0.037354353815317154, 0.1945587694644928, 0.33397671580314636, -0.026328343898057938, -0.003110849531367421, 0.00518410699442029, 0.046307481825351715, 0.05148927867412567, 0.16798049211502075, 0.11253153532743454, 0.20960360765457153, -0.044070858508348465, -0.021816793829202652, -0.05940590053796768, -0.013735266402363777, -0.07379894703626633, 0.002537322696298361, 0.05890543758869171, -0.06744804978370667, -0.10961219668388367, 0.13811944425106049, -0.15308089554309845, 0.062266070395708084, 0.08444322645664215, -0.13315390050411224, -0.13835707306861877, -0.006689125671982765, 0.13706755638122559, -0.0044892942532896996, 0.017465082928538322, -0.08791343122720718, -0.03991756588220596, 0.0010738670825958252, 0.008894670754671097, -0.3477857708930969, -0.2113942950963974, 0.07270371913909912, -0.030470211058855057, 0.15220114588737488, 0.001536432420834899, 0.21804608404636383, -0.025308122858405113, 0.04744721204042435, -0.10463263094425201, 0.023959768936038017, 0.023132123053073883, 0.018881406635046005, -0.05440232530236244, 0.01395822037011385, -0.019107580184936523, -0.18099990487098694, 0.019734730944037437, -0.028127333149313927, -0.07022111117839813, 0.09467317163944244, 0.046385690569877625, -0.00028169498546049, 0.030743172392249107, -0.04882237687706947, 0.0872652530670166, 0.005747471936047077, -0.03053325042128563, -0.037029996514320374, -0.04776384308934212, 0.05687561258673668, 0.04942549020051956, -0.1353982537984848, -0.07188421487808228, 0.0057656592689454556, -0.04862403869628906, 0.022770868614315987, -0.02868845872581005, -0.07426318526268005, 0.03360280022025108, -0.10285702347755432, -0.025566227734088898, -0.06192166358232498, -0.024195116013288498, 0.020749012008309364, 0.054107580333948135, 0.008369491435587406, 0.1477482169866562, 0.04175066947937012, -0.012335477396845818, -0.11971871554851532, -0.05924128741025925 ]
fa19528ee0b05304746e821bb5024be49ac5e980
# Dataset Card for "350k_dataset_health_ar_en_th_tokenized" [More Information needed](https://github.com/huggingface/datasets/blob/main/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
HealthTeam/350k_dataset_health_ar_en_th_tokenized
[ "region:us" ]
2023-02-07T04:20:00+00:00
{"dataset_info": {"features": [{"name": "inputs", "dtype": "string"}, {"name": "targets", "dtype": "string"}, {"name": "input_ids", "sequence": "int32"}, {"name": "attention_mask", "sequence": "int8"}, {"name": "labels", "sequence": "int64"}], "splits": [{"name": "train", "num_bytes": 744995253, "num_examples": 1075552}, {"name": "validation", "num_bytes": 26752860, "num_examples": 40432}, {"name": "test", "num_bytes": 26752860, "num_examples": 40432}], "download_size": 294054766, "dataset_size": 798500973}}
2023-02-07T04:20:31+00:00
[]
[]
TAGS #region-us
# Dataset Card for "350k_dataset_health_ar_en_th_tokenized" More Information needed
[ "# Dataset Card for \"350k_dataset_health_ar_en_th_tokenized\"\n\nMore Information needed" ]
[ "TAGS\n#region-us \n", "# Dataset Card for \"350k_dataset_health_ar_en_th_tokenized\"\n\nMore Information needed" ]
[ 6, 27 ]
[ "passage: TAGS\n#region-us \n# Dataset Card for \"350k_dataset_health_ar_en_th_tokenized\"\n\nMore Information needed" ]
[ -0.143746480345726, 0.1692415177822113, -0.0010451625566929579, -0.02063954994082451, 0.13156141340732574, 0.15410536527633667, 0.025976331904530525, 0.0967995896935463, 0.19857178628444672, 0.02029443345963955, 0.13393890857696533, 0.07062583416700363, 0.06998240947723389, 0.25978705286979675, -0.029347658157348633, -0.07297523319721222, 0.057763565331697464, 0.0326651968061924, -0.008238879963755608, 0.09485892206430435, -0.021913152188062668, -0.03628126531839371, 0.08325906842947006, -0.08296333253383636, -0.11071054637432098, 0.09183254837989807, 0.028767447918653488, -0.031298935413360596, 0.08367374539375305, -0.1380922943353653, 0.1398533433675766, 0.022180747240781784, 0.06652459502220154, -0.15129242837429047, 0.0014279680326581001, -0.01686229184269905, -0.03252951055765152, 0.09893278032541275, -0.07636841386556625, -0.06662303954362869, 0.027784688398241997, -0.12626436352729797, -0.00015174779400695115, -0.025194793939590454, -0.09483398497104645, -0.23054136335849762, -0.1292262226343155, -0.09804961085319519, 0.011646135710179806, -0.024547487497329712, 0.033329397439956665, 0.16033720970153809, -0.07006534934043884, 0.01179033424705267, 0.0016189193120226264, -0.11496346443891525, 0.0891370177268982, 0.22112418711185455, 0.016205808147788048, 0.12290064990520477, -0.029024343937635422, 0.07701766490936279, 0.1039101779460907, -0.00293152523227036, 0.012417063117027283, -0.030574282631278038, -0.06406088173389435, 0.08879949897527695, -0.03729290887713432, -0.022266846150159836, 0.3074200451374054, 0.038979556411504745, 0.04238606244325638, 0.038586605340242386, -0.0505823977291584, -0.10527487844228745, 0.04706484451889992, -0.03381142392754555, 0.012916384264826775, -0.01305267121642828, -0.050651952624320984, 0.058358799666166306, -0.04233528673648834, -0.13655276596546173, -0.16373497247695923, -0.10173146426677704, -0.04019344598054886, 0.10803733766078949, -0.12549252808094025, 0.015189548023045063, -0.12677232921123505, -0.02842072583734989, -0.002862925175577402, -0.08255431801080704, -0.07785804569721222, -0.060529980808496475, 0.01956946775317192, 0.01538209617137909, 0.1315934956073761, 0.08943937718868256, 0.04193885251879692, -0.004184359218925238, -0.013479255139827728, 0.0032018523197621107, 0.17070652544498444, -0.1216779425740242, -0.1342114359140396, -0.12240100651979446, -0.04995333030819893, -0.009196692146360874, 0.01293505635112524, -0.05622487515211105, -0.11602749675512314, 0.0059027597308158875, -0.11739478260278702, 0.10005234181880951, -0.1294112652540207, -0.05170515552163124, -0.05490833520889282, -0.016166090965270996, 0.2324974536895752, -0.044354770332574844, -0.020922096446156502, -0.026815662160515785, 0.006560204084962606, 0.0030848360620439053, -0.013928985223174095, 0.0006254871259443462, 0.04131558910012245, 0.08478280901908875, -0.10346289724111557, -0.0433211512863636, 0.006472719367593527, -0.03428715467453003, 0.07100590318441391, -0.1164383515715599, 0.09980949014425278, -0.10395870357751846, -0.1474105715751648, 0.02460530400276184, -0.0065854741260409355, -0.049691975116729736, 0.1399768888950348, -0.03760493919253349, 0.11217416077852249, -0.006706370506435633, -0.03693665191531181, 0.02373703569173813, -0.06242100149393082, 0.06996152549982071, -0.058911360800266266, 0.07189352810382843, -0.1630479246377945, -0.004292300436645746, -0.09270347654819489, 0.010765410959720612, 0.10478522628545761, -0.04378948360681534, -0.06621009856462479, -0.007969141006469727, -0.1088281199336052, -0.007848745211958885, -0.16190943121910095, 0.03905823454260826, 0.03156309202313423, 0.07887002825737, -0.08713649958372116, -0.03819693252444267, 0.21887528896331787, -0.051718130707740784, -0.24696823954582214, 0.0007987062563188374, -0.0016053072176873684, 0.1124611422419548, 0.06449775397777557, 0.22304728627204895, 0.0028163741808384657, -0.14866656064987183, -0.04731367528438568, 0.08039135485887527, -0.18510042130947113, -0.291402131319046, 0.03453188017010689, -0.05013261362910271, -0.14482730627059937, -0.00658252090215683, 0.16175015270709991, 0.007210863754153252, -0.07362692058086395, -0.08176963031291962, 0.0008502036798745394, -0.1759117841720581, 0.05472496896982193, -0.053059302270412445, -0.0009995833970606327, -0.008031799457967281, 0.14628005027770996, 0.07509788870811462, 0.09808669239282608, 0.019724398851394653, -0.041796933859586716, -0.051569778472185135, -0.040277257561683655, -0.18537956476211548, -0.012142445892095566, -0.10727906972169876, -0.07817909121513367, -0.015413672663271427, 0.0008951618801802397, -0.0666363537311554, 0.03158583864569664, 0.09244734793901443, -0.018477952107787132, -0.07309574633836746, 0.07646915316581726, 0.11218922585248947, 0.09201929718255997, -0.01364084705710411, 0.018721360713243484, 0.056213509291410446, -0.09443917870521545, -0.0233011357486248, -0.07290421426296234, -0.061906106770038605, 0.03505513444542885, 0.02073114924132824, -0.0015619068872183561, -0.02090989612042904, 0.08242867141962051, 0.020949192345142365, 0.0321284718811512, -0.022118335589766502, -0.041627187281847, -0.056614577770233154, -0.07003750652074814, -0.01987074874341488, -0.039350029081106186, 0.20371577143669128, 0.07875678688287735, 0.045787084847688675, -0.014453839510679245, -0.09914539009332657, 0.026888277381658554, -0.02232620306313038, -0.15290087461471558, -0.0503716841340065, -0.22429600358009338, -0.03846217691898346, 0.033075034618377686, 0.01878940872848034, 0.0369136705994606, 0.04377248138189316, -0.042683206498622894, -0.08089255541563034, -0.0222853422164917, 0.15134882926940918, -0.2612685561180115, 0.08867539465427399, 0.1681371033191681, 0.085175521671772, 0.08377745747566223, -0.0016398418229073286, -0.09901412576436996, -0.0392744280397892, -0.0770021453499794, -0.05619662627577782, 0.15716877579689026, -0.05073390528559685, 0.07118577510118484, 0.0636836588382721, 0.025972552597522736, 0.07192327827215195, -0.031131822615861893, -0.09594854712486267, -0.03609570115804672, -0.013902491889894009, -0.27401795983314514, 0.09272963553667068, -0.010237944312393665, 0.10680267959833145, 0.03269988298416138, 0.030164802446961403, 0.14420971274375916, 0.027327559888362885, -0.0686238557100296, 0.10594845563173294, -0.16234387457370758, -0.24818363785743713, -0.03945229575037956, -0.13058912754058838, 0.14892838895320892, 0.01849820464849472, -0.05579032748937607, -0.21082161366939545, -0.053060319274663925, 0.056007180362939835, -0.06335686147212982, -0.06538178771734238, -0.010340089909732342, 0.040874067693948746, 0.046387575566768646, -0.004931258037686348, -0.02968074195086956, 0.02788657136261463, -0.09484636783599854, 0.07303320616483688, 0.14203490316867828, -0.10948522388935089, 0.16831302642822266, 0.12346583604812622, 0.01137892622500658, 0.07782292366027832, -0.015110366977751255, 0.0771067813038826, -0.03947644680738449, 0.05486563593149185, 0.05565592274069786, 0.06925422698259354, 0.0025699364487081766, 0.1307615041732788, 0.08751964569091797, -0.1291799396276474, 0.02792331390082836, -0.02059916779398918, -0.16426341235637665, -0.26347801089286804, -0.0954510048031807, -0.05308406427502632, -0.06505873799324036, 0.07011635601520538, 0.03229137510061264, -0.024307280778884888, 0.10894633829593658, 0.11557042598724365, -0.03815750032663345, -0.1846315711736679, -0.08377935737371445, -0.06875412166118622, -0.011592644266784191, -0.005478106439113617, -0.11172036826610565, -0.029682649299502373, 0.16845561563968658, 0.24481745064258575, 0.1924227923154831, 0.09025366604328156, 0.12607382237911224, 0.08027766644954681, 0.11718723922967911, 0.07280582934617996, 0.11487254500389099, 0.11770810186862946, -0.04057857021689415, 0.0029371718410402536, -0.0018973458791151643, -0.04092065244913101, 0.014367034658789635, 0.0486033596098423, -0.15658625960350037, 0.06700368225574493, -0.04555422067642212, 0.06328177452087402, -0.2096056044101715, 0.15356583893299103, -0.20368734002113342, 0.08545059710741043, 0.005090705584734678, 0.1775284707546234, -0.14642402529716492, 0.06179412454366684, 0.14385810494422913, -0.019669249653816223, 0.11779659986495972, -0.004363078158348799, 0.026933563873171806, -0.060360148549079895, -0.010365210473537445, -0.02033810317516327, -0.057367194443941116, -0.05536757409572601, 0.11323356628417969, -0.19646649062633514, 0.21299727261066437, 0.032940573990345, -0.03149886056780815, -0.08969193696975708, -0.08111002296209335, -0.009183832444250584, 0.08359935134649277, 0.15748180449008942, 0.06853413581848145, -0.21120426058769226, -0.21642522513866425, -0.05843300372362137, 0.02062246762216091, 0.07786376774311066, 0.044237859547138214, -0.13533560931682587, 0.07271969318389893, -0.030696634203195572, -0.04387114569544792, -0.2260960191488266, -0.08663714677095413, -0.09190993756055832, 0.029696602374315262, 0.06560800224542618, -0.0854569524526596, 0.08152352273464203, 0.027551444247364998, -0.037645693868398666, 0.08319725841283798, 0.015300747938454151, -0.04466943070292473, -0.1381940096616745, 0.12680764496326447, 0.15268735587596893, -0.05377610772848129, -0.007455967366695404, 0.09346766769886017, -0.08173330873250961, -0.013762670569121838, -0.14852964878082275, 0.09181350469589233, -0.04739532247185707, 0.08622875809669495, -0.0953095406293869, 0.07849758863449097, 0.05752174183726311, 0.006408931687474251, -0.018847566097974777, 0.01682054065167904, -0.011027965694665909, -0.05721313878893852, 0.2085457593202591, -0.05989040061831474, 0.13471925258636475, 0.1990288645029068, 0.029878541827201843, 0.02012030780315399, 0.07872733473777771, -0.059698961675167084, 0.09827530384063721, 0.04119376838207245, -0.03691093623638153, 0.11190580576658249, 0.2488975077867508, -0.04044622927904129, -0.21884608268737793, 0.005673093255609274, -0.15765991806983948, -0.02896743267774582, 0.044803742319345474, -0.2559907138347626, 0.12886321544647217, 0.1655338853597641, -0.02679763175547123, 0.20716573297977448, -0.16044265031814575, -0.044828563928604126, 0.17112071812152863, 0.09557624906301498, 0.37367677688598633, -0.025680338963866234, -0.0746547132730484, -0.03676554560661316, -0.13354288041591644, 0.1573479175567627, -0.11017986387014389, 0.0126846544444561, -0.04193996638059616, 0.12281534075737, -0.017190296202898026, -0.055103644728660583, 0.1728440374135971, 0.11572601646184921, 0.09367727488279343, -0.06729290634393692, -0.03620646893978119, 0.09133074432611465, -0.05250323936343193, 0.12719228863716125, 0.0011502665001899004, 0.011169413104653358, -0.04075651615858078, -0.03397352620959282, -0.004213623236864805, 0.003305264515802264, 0.06112391874194145, -0.12765264511108398, -0.10889247804880142, -0.006078733131289482, -0.04593285173177719, -0.0896318256855011, 0.08928713947534561, 0.010617450810968876, -0.0053906128741800785, -0.11433710902929306, 0.020607909187674522, -0.08498289436101913, 0.04206617921590805, -0.03163151070475578, -0.13585305213928223, 0.08984219282865524, -0.15876981616020203, 0.024902623146772385, 0.13382448256015778, 0.01426544040441513, 0.049604080617427826, -0.0139623349532485, -0.03450574353337288, -0.01742107793688774, 0.17377609014511108, -0.08137574791908264, 0.05266052484512329, 0.07071821391582489, -0.1428644210100174, -0.06083416938781738, 0.06260866671800613, 0.04806525632739067, 0.08920388668775558, -0.00808346550911665, -0.060860149562358856, 0.1093868538737297, -0.0891023576259613, 0.18412765860557556, 0.16235391795635223, 0.023067757487297058, -0.16530710458755493, 0.10382488369941711, 0.03122076392173767, -0.06482207775115967, 0.04594309628009796, -0.05583283677697182, -0.14317911863327026, -0.0778639167547226, 0.0031022783368825912, 0.15825124084949493, -0.07935218513011932, -0.14412222802639008, 0.04017206281423569, -0.01388107892125845, -0.019372861832380295, 0.06957217305898666, 0.0019403357291594148, 0.088536337018013, 0.011211582459509373, -0.08508560806512833, -0.08911902457475662, -0.016007566824555397, -0.08702719211578369, 0.08070507645606995, -0.021150771528482437, -0.20142947137355804, -0.018962843343615532, 0.17393708229064941, -0.07977614551782608, 0.000009838390724326018, -0.0660715103149414, 0.03944586589932442, -0.12441877275705338, 0.031317148357629776, -0.032802652567625046, -0.03906094282865524, -0.03140994906425476, -0.001642891438677907, -0.03568635880947113, -0.0009616095921956003, -0.09292501211166382, 0.12111533433198929, 0.07684695720672607, 0.012945448979735374, -0.08702801913022995, -0.004019218496978283, 0.08529073745012283, 0.03431501239538193, 0.12178660929203033, 0.06667602807283401, -0.030111510306596756, 0.09113726019859314, 0.010281973518431187, -0.07297305017709732, 0.12435515224933624, 0.1146041601896286, 0.07272108644247055, 0.0040945084765553474, 0.00622344808652997, 0.08338001370429993, -0.0361056923866272, 0.08327315747737885, -0.04726717621088028, -0.07158034294843674, -0.011410556733608246, -0.15424741804599762, -0.038359273225069046, -0.03272780030965805, -0.058764033019542694, 0.154201939702034, -0.035359323024749756, -0.006157297641038895, 0.04464394971728325, -0.04998641833662987, -0.06988517194986343, -0.08385758846998215, -0.0012783281272277236, -0.09497660398483276, -0.09410269558429718, 0.07962949573993683, 0.08205320686101913, -0.0426599346101284, 0.41729268431663513, -0.09677163511514664, -0.17134878039360046, -0.06965675950050354, 0.18958982825279236, -0.020815620198845863, -0.07608193159103394, 0.27276596426963806, 0.06659672409296036, -0.07454408705234528, -0.0890936478972435, 0.03728870302438736, 0.02161252498626709, 0.026566214859485626, 0.1262500286102295, -0.021485764533281326, 0.20105701684951782, -0.056792620569467545, -0.030633874237537384, -0.06794130802154541, 0.0065605295822024345, -0.043888065963983536, -0.0991884097456932, -0.05686914548277855, 0.1611538827419281, -0.1936025768518448, 0.026661301031708717, -0.0334053672850132, 0.005985359661281109, -0.012799938209354877, -0.0973137840628624, -0.11599528789520264, -0.1785014569759369, -0.05218365415930748, -0.07230552285909653, 0.05330348759889603, -0.06499612331390381, -0.03211090713739395, 0.2517382502555847, 0.07318762689828873, 0.009820781648159027, 0.13500526547431946, -0.03508343920111656, 0.11338069289922714, -0.04379832372069359, 0.012443013489246368, -0.048431143164634705, 0.045056235045194626, -0.04217514395713806, 0.10047785192728043, 0.03890730440616608, 0.019238848239183426, -0.05774002522230148, 0.04080864042043686, -0.019585303962230682, -0.08217770606279373, -0.007057474926114082, -0.07404756546020508, 0.08993236720561981, -0.1413818746805191, 0.06946626305580139, 0.0867241621017456, 0.015383461490273476, 0.03854064643383026, 0.09366533905267715, 0.03061305545270443, 0.004663263447582722, -0.13031022250652313, 0.08747713267803192, 0.006003234535455704, 0.06687852740287781, -0.007115038577467203, -0.07788687944412231, -0.00516712199896574, 0.1629699468612671, 0.1747082620859146, -0.011820587329566479, -0.020100358873605728, -0.016219763085246086, 0.048970628529787064, 0.06464102119207382, 0.1633535921573639, 0.02790159173309803, -0.033451925963163376, 0.008148153312504292, -0.14749675989151, -0.030536100268363953, -0.08115546405315399, 0.0371939092874527, 0.052173130214214325, 0.07313518226146698, -0.06530415266752243, -0.09517182409763336, 0.1458442360162735, -0.0653180330991745, 0.09299283474683762, 0.04803464934229851, -0.02500484511256218, -0.06959943473339081, -0.036796510219573975, 0.03731279447674751, 0.028636353090405464, -0.08995918184518814, -0.06914892047643661, -0.01257888413965702, 0.05308230593800545, -0.013840082101523876, -0.2809542417526245, -0.16202512383460999, -0.016523391008377075, -0.018814722076058388, 0.14633291959762573, 0.05076243728399277, 0.06600448489189148, 0.020811229944229126, 0.014238170348107815, -0.058147359639406204, 0.19543372094631195, -0.04219244047999382, 0.15083011984825134, 0.011077008210122585, 0.043011460453271866, -0.022432684898376465, -0.0958578959107399, 0.05400368571281433, -0.05830387771129608, -0.09047996997833252, 0.06339549273252487, -0.00013142744137439877, -0.03700866550207138, 0.040719836950302124, -0.02363564819097519, 0.12959639728069305, 0.01846620813012123, 0.012513469904661179, 0.09569006413221359, -0.00979055929929018, 0.10867874324321747, 0.04278463497757912, -0.0890134945511818, -0.03964662924408913, -0.027552463114261627, -0.03396572172641754, -0.0004779640003107488, -0.014970703981816769, -0.09256844967603683, 0.045369356870651245, -0.10957827419042587, 0.024856790900230408, -0.035009048879146576, 0.072807677090168, 0.016064628958702087, 0.10567674785852432, -0.03364429622888565, 0.15346497297286987, 0.06771038472652435, 0.004560835659503937, -0.1508408635854721, -0.07134421169757843 ]
d963778e31e7e0ed2329c0f4cbe493be532f0e71
--- task_categories: - image-segmentation tags: - Earth Observation
burakekim/mapinwild
[ "task_categories:image-segmentation", "size_categories:1K<n<10K", "Earth Observation", "region:us" ]
2023-02-07T08:23:28+00:00
{"size_categories": ["1K<n<10K"], "task_categories": ["image-segmentation"], "pretty_name": "MapInWild", "tags": ["Earth Observation"]}
2023-09-25T08:43:12+00:00
[]
[]
TAGS #task_categories-image-segmentation #size_categories-1K<n<10K #Earth Observation #region-us
--- task_categories: - image-segmentation tags: - Earth Observation
[]
[ "TAGS\n#task_categories-image-segmentation #size_categories-1K<n<10K #Earth Observation #region-us \n" ]
[ 35 ]
[ "passage: TAGS\n#task_categories-image-segmentation #size_categories-1K<n<10K #Earth Observation #region-us \n" ]
[ -0.03775928542017937, 0.02547985129058361, -0.004692642483860254, 0.05092862620949745, 0.08542658388614655, 0.03857441619038582, 0.050977516919374466, 0.0252806656062603, 0.1978399008512497, 0.09534604102373123, 0.14027900993824005, 0.03297518193721771, -0.04953799024224281, 0.09749795496463776, -0.038572948426008224, -0.4005368649959564, 0.06228220835328102, -0.08178317546844482, 0.02026182971894741, 0.06176047399640083, -0.051961496472358704, -0.22045734524726868, 0.029969295486807823, -0.1836036592721939, -0.12487787008285522, 0.017264405265450478, -0.05336668714880943, -0.07785975933074951, 0.0998641774058342, -0.047261618077754974, 0.11890297383069992, 0.030000681057572365, 0.0045575848780572414, -0.11728983372449875, 0.0012460920261219144, -0.03059433400630951, -0.03152953460812569, 0.05736154690384865, 0.12489762902259827, 0.11090795695781708, -0.06808095425367355, -0.10654830932617188, -0.0034082592464983463, -0.03082873858511448, -0.173370823264122, -0.07818438112735748, -0.005576948169618845, 0.052781086415052414, 0.09076907485723495, -0.026382671669125557, 0.003323656739667058, 0.17219318449497223, -0.1583324521780014, 0.03504228591918945, 0.15129277110099792, -0.1088826134800911, -0.048904214054346085, 0.2500569820404053, -0.04542017728090286, 0.2584344148635864, -0.08473151922225952, 0.1510939747095108, 0.09444916248321533, -0.03143368661403656, -0.054860394448041916, -0.07193628698587418, -0.06045494228601456, 0.0347512885928154, -0.07153423875570297, -0.12914112210273743, 0.30760830640792847, 0.19169367849826813, 0.06824485957622528, -0.059454306960105896, -0.08704693615436554, -0.12044283002614975, -0.10011361539363861, 0.14535795152187347, 0.0834379717707634, -0.0441519059240818, -0.044933415949344635, -0.020962337031960487, -0.18670368194580078, 0.017541928216814995, -0.16053777933120728, 0.14003300666809082, -0.05213252082467079, 0.055140044540166855, -0.1423949897289276, 0.09556284546852112, -0.15026196837425232, -0.08008857071399689, 0.044259946793317795, -0.10120110958814621, -0.08386439830064774, 0.023146292194724083, 0.021095162257552147, 0.013726267963647842, 0.07195920497179031, 0.04972382262349129, 0.045651718974113464, 0.08763665705919266, 0.04909235239028931, 0.1847546398639679, 0.14560312032699585, 0.15251094102859497, -0.10086563229560852, -0.06866317242383957, -0.027566011995077133, -0.059091947972774506, 0.04117746651172638, -0.057776376605033875, -0.07596024125814438, -0.10471826046705246, -0.003078775480389595, 0.037655141204595566, 0.12038324773311615, -0.11004471033811569, -0.02092098258435726, -0.018277382478117943, 0.06889936327934265, 0.023966174572706223, -0.025156546384096146, -0.06669028848409653, -0.0015405479352921247, 0.04595634713768959, -0.1112215593457222, 0.034627579152584076, 0.17779020965099335, 0.07175784558057785, -0.10886924713850021, 0.010255211964249611, 0.020341698080301285, 0.015746697783470154, 0.032292839139699936, -0.12614421546459198, 0.10691164433956146, -0.18238629400730133, -0.14557971060276031, -0.011459171772003174, -0.009494287893176079, -0.06281568855047226, -0.04001191258430481, 0.08161178976297379, 0.010571909137070179, -0.04650929197669029, -0.030137844383716583, 0.135763019323349, -0.0909232571721077, 0.10884582251310349, -0.026085639372467995, 0.18954811990261078, -0.10205814242362976, -0.038720034062862396, -0.0762832835316658, 0.08308083564043045, -0.24184086918830872, 0.09624767303466797, -0.0036045212764292955, 0.25414401292800903, -0.05379995331168175, -0.012606452219188213, -0.2076772004365921, -0.021925220265984535, -0.01030480582267046, 0.18900029361248016, -0.07992683351039886, -0.004284917376935482, -0.08867380023002625, 0.008663184940814972, -0.05559580773115158, -0.006254118401557207, 0.04163341596722603, 0.08518131822347641, 0.009923810139298439, 0.295684278011322, -0.11017118394374847, 0.09684567898511887, -0.021333541721105576, 0.11007191240787506, -0.07973577082157135, -0.09504298865795135, 0.06079735979437828, 0.029087232425808907, -0.05951981619000435, -0.03847968950867653, 0.05538071691989899, 0.059753887355327606, -0.12696826457977295, -0.06678621470928192, -0.059090688824653625, -0.01690615527331829, 0.09818685054779053, 0.04572978988289833, 0.1390719711780548, -0.06206332892179489, 0.08689559996128082, -0.04059721529483795, 0.011233413591980934, 0.0847957655787468, 0.010783026926219463, 0.09347377717494965, 0.078386589884758, -0.27737513184547424, -0.03292747214436531, -0.20789816975593567, -0.06619410216808319, 0.054769180715084076, 0.053293563425540924, 0.06786666065454483, 0.17947234213352203, 0.07321993261575699, -0.1495722383260727, -0.03700733929872513, -0.054245226085186005, -0.03697197511792183, -0.018218403682112694, -0.13013556599617004, -0.0320524238049984, -0.006541469134390354, -0.03231015428900719, -0.10231012105941772, -0.1382099688053131, -0.036457158625125885, 0.0900423601269722, -0.017567405477166176, 0.06799037754535675, 0.06955335289239883, 0.04925798252224922, -0.03182600066065788, -0.001636573113501072, -0.017443113029003143, 0.021090826019644737, -0.041991036385297775, -0.0843454971909523, -0.013997313566505909, -0.03186345472931862, 0.06453545391559601, 0.09761025011539459, -0.21370738744735718, 0.008794882334768772, 0.007715834304690361, 0.0014185205800458789, -0.07313930988311768, -0.08770667016506195, -0.07734090089797974, -0.06983831524848938, -0.0346706360578537, 0.007425413001328707, -0.009688668884336948, 0.008334859274327755, 0.012000900693237782, -0.04677889123558998, -0.1025882288813591, 0.12123189866542816, 0.09572660177946091, -0.10825292766094208, 0.12596957385540009, 0.24695542454719543, 0.041460420936346054, 0.08785497397184372, 0.0086127407848835, -0.1490004062652588, 0.11704961210489273, -0.020078502595424652, -0.07246720790863037, 0.1723763346672058, -0.18154563009738922, 0.00041199722909368575, 0.10023093223571777, 0.01658177375793457, 0.11698523908853531, -0.12424921244382858, -0.06243676319718361, 0.021067244932055473, 0.0854065790772438, -0.10974857211112976, 0.0284511037170887, 0.007165157701820135, 0.09035567194223404, -0.006799829192459583, 0.02433040551841259, -0.0023923690896481276, -0.02390429563820362, -0.007896555587649345, 0.11833864450454712, 0.06347505003213882, -0.3155696988105774, -0.1215774193406105, 0.031702231615781784, 0.004065040498971939, 0.03083712048828602, 0.06053050234913826, -0.1838940680027008, -0.04163205623626709, -0.007963035255670547, -0.016081485897302628, -0.039599016308784485, 0.03890218585729599, 0.07764962315559387, 0.0244878139346838, -0.1147540882229805, 0.004601132590323687, -0.03313865885138512, -0.06996562331914902, 0.07117967307567596, 0.22200007736682892, -0.06552351266145706, 0.10628633946180344, 0.20064103603363037, -0.03287709504365921, 0.02195773459970951, 0.04812994226813316, 0.15350152552127838, -0.15789583325386047, 0.037325840443372726, 0.1626991331577301, 0.08978677541017532, -0.028282856568694115, 0.15998110175132751, 0.08906111866235733, -0.10348498821258545, -0.01061321422457695, 0.010200390592217445, -0.16408024728298187, -0.15553002059459686, -0.04067731648683548, -0.07629086077213287, 0.0898410826921463, 0.10930824279785156, 0.04865150898694992, 0.11871833354234695, 0.13658608496189117, 0.030506810173392296, 0.05332815274596214, -0.09742168337106705, 0.026752373203635216, -0.0024707471020519733, -0.08536680787801743, 0.01833420619368553, -0.07629348337650299, -0.07841862738132477, 0.0557708740234375, 0.11484645307064056, 0.24622654914855957, 0.1943909376859665, -0.02574172429740429, -0.07120272517204285, -0.07662872970104218, 0.13580523431301117, 0.1315184384584427, 0.07597915828227997, -0.07045105844736099, 0.0028512077406048775, -0.01921735145151615, 0.042294327169656754, 0.08576778322458267, 0.14745406806468964, -0.10549198091030121, -0.031034456565976143, -0.15250171720981598, 0.024956803768873215, 0.09141208231449127, 0.15587694942951202, -0.11731509864330292, 0.067300945520401, 0.13458289206027985, 0.049196209758520126, -0.006597014609724283, 0.053741905838251114, 0.2624751329421997, -0.12075208872556686, -0.023100119084119797, 0.0041505685076117516, 0.06111910939216614, -0.06017646566033363, 0.02177990786731243, -0.11766540259122849, -0.20690901577472687, -0.0402669757604599, -0.018812278285622597, 0.08663268387317657, 0.28190165758132935, 0.014075083658099174, -0.13660183548927307, -0.0716627687215805, -0.09084024280309677, 0.0030819152016192675, 0.14493775367736816, 0.1374959945678711, 0.0369001105427742, 0.027375411242246628, -0.12126125395298004, -0.16934256255626678, -0.04755598306655884, 0.03412341699004173, -0.14152203500270844, -0.0494212731719017, 0.08518344163894653, 0.005004366859793663, -0.03787793964147568, 0.0009751977049745619, 0.009426997043192387, -0.0013456428423523903, -0.06894563138484955, 0.04465938359498978, -0.04430277273058891, -0.01226289663463831, -0.04044273868203163, -0.0737743228673935, -0.043072283267974854, 0.034534282982349396, -0.07444281876087189, -0.05578497797250748, 0.015664199367165565, 0.1849983185529709, -0.02372613549232483, 0.07166417688131332, -0.009514007717370987, -0.10944574326276779, 0.04595881327986717, -0.06655900180339813, 0.20100761950016022, -0.04886118695139885, -0.006027632858604193, -0.061530448496341705, 0.022236023098230362, -0.0604214072227478, 0.09665246307849884, -0.11237569898366928, 0.0783485397696495, -0.07573902606964111, -0.06980054080486298, 0.07764323800802231, -0.1196470633149147, 0.10287286341190338, 0.2169644832611084, 0.016441505402326584, 0.03459818661212921, 0.0638953447341919, -0.015676865354180336, 0.2064484804868698, 0.2233867645263672, -0.07067371904850006, -0.022930797189474106, 0.21260550618171692, 0.09309705346822739, -0.29050713777542114, 0.11768293380737305, -0.08596793562173843, 0.014430494979023933, 0.06587731093168259, -0.10309868305921555, 0.10821668803691864, 0.22734397649765015, -0.06219685450196266, 0.254608690738678, -0.4040130376815796, -0.023840857669711113, 0.07376812398433685, 0.044187746942043304, 0.32245683670043945, -0.16478779911994934, -0.014546834863722324, -0.0629705935716629, -0.14722417294979095, -0.061059415340423584, 0.037250544875860214, 0.10888846963644028, -0.046457115560770035, 0.04404956474900246, 0.07670990377664566, -0.023339731618762016, 0.21005794405937195, 0.06288867443799973, 0.12209579348564148, -0.0663473829627037, -0.2700834572315216, 0.13381847739219666, -0.09167468547821045, -0.023127559572458267, 0.16420526802539825, 0.023919546976685524, -0.18717975914478302, 0.01373923011124134, -0.10125476866960526, -0.019723936915397644, 0.036151476204395294, -0.06474976986646652, -0.015469901263713837, -0.03039720095694065, -0.1002943366765976, 0.07793939858675003, 0.4609712064266205, -0.08489295095205307, -0.09096287190914154, -0.018335433676838875, 0.025587251409888268, -0.10031235218048096, -0.14377379417419434, -0.09974140673875809, 0.0013764003524556756, 0.07990232855081558, -0.318778395652771, 0.05149538815021515, 0.05293805152177811, 0.12099580466747284, -0.03606829047203064, 0.07843320071697235, 0.06881974637508392, 0.08114290237426758, 0.15594050288200378, -0.05027212202548981, -0.17085978388786316, -0.010648287832736969, -0.06126851961016655, 0.05174800753593445, 0.05815939977765083, -0.008181502111256123, 0.06270566582679749, 0.003182369051501155, 0.001165662775747478, -0.053094808012247086, -0.0016015827422961593, 0.12209077924489975, 0.1042480319738388, 0.033363647758960724, -0.06617142260074615, 0.17182804644107819, 0.12283987551927567, -0.057690296322107315, -0.18673008680343628, 0.13032925128936768, 0.011492015793919563, -0.10240927338600159, 0.003953926265239716, -0.08431746810674667, -0.04074595496058464, 0.05648893117904663, 0.02080462872982025, -0.016594508662819862, 0.05560225620865822, 0.0508948415517807, 0.02380659431219101, -0.08509739488363266, 0.034041035920381546, 0.007150095887482166, 0.057850249111652374, -0.05993090569972992, -0.07457664608955383, 0.14752928912639618, -0.2054620087146759, -0.18837818503379822, -0.03533453121781349, 0.13278208673000336, -0.08329325914382935, -0.06789138913154602, -0.13513533771038055, 0.0014886055141687393, -0.09470422565937042, 0.006510429549962282, 0.0025364328175783157, -0.04764215648174286, -0.030133314430713654, -0.020746462047100067, -0.02735050767660141, -0.06680994480848312, -0.14167635142803192, -0.045225195586681366, -0.00435781991109252, 0.07298694550991058, 0.10166553407907486, -0.015137855894863605, 0.030369482934474945, -0.04063707962632179, 0.12134075164794922, 0.07058511674404144, 0.0594678670167923, 0.02327789179980755, -0.09273818135261536, -0.06702379137277603, 0.1556941121816635, 0.010660405270755291, 0.029832197353243828, 0.13377165794372559, 0.002650412730872631, -0.09031020849943161, 0.1268392652273178, 0.07055243104696274, -0.11832235008478165, -0.17491504549980164, 0.04906003549695015, -0.15836705267429352, -0.17251543700695038, -0.014985978603363037, -0.07215292751789093, 0.036665719002485275, 0.043689679354429245, -0.01841939426958561, 0.06345386058092117, 0.015379505231976509, -0.12333480268716812, 0.014459974132478237, -0.024075355380773544, -0.11032214760780334, 0.09823807328939438, 0.0024838463868945837, 0.05676881596446037, -0.04130720719695091, 0.15174826979637146, 0.03701271116733551, -0.05614779517054558, -0.00811693724244833, 0.218307226896286, 0.09463950246572495, 0.049366384744644165, 0.32116541266441345, 0.13067714869976044, -0.060212552547454834, 0.027507299557328224, 0.16246944665908813, 0.12516818940639496, 0.03685321658849716, 0.15880677103996277, 0.1079648807644844, -0.1862076073884964, 0.08411073684692383, 0.013597083278000355, -0.0050241765566170216, -0.01570870541036129, 0.02579122968018055, -0.020909767597913742, 0.02109675295650959, -0.06208774447441101, 0.012831473723053932, 0.21153439581394196, -0.0845782458782196, 0.04285789653658867, 0.012817377224564552, 0.009536895900964737, 0.012163015082478523, -0.09524986147880554, -0.07527195662260056, -0.10566426813602448, 0.0536288358271122, -0.044286176562309265, -0.04518809914588928, 0.24189209938049316, -0.026561623439192772, 0.005606356542557478, 0.10909031331539154, -0.01910272426903248, -0.05506127327680588, 0.10013553500175476, 0.045617442578077316, -0.03507911413908005, -0.09046687185764313, -0.07302134484052658, 0.05151352658867836, -0.0809548944234848, -0.09213835000991821, 0.0013921440113335848, -0.053061626851558685, -0.07997051626443863, -0.04806859791278839, -0.09085801243782043, -0.07397807389497757, -0.009223558939993382, -0.046928513795137405, -0.05593433603644371, 0.016728540882468224, -0.015507765114307404, 0.0011358109768480062, 0.2329486906528473, -0.10602772235870361, 0.001242585713043809, 0.045726485550403595, 0.014227676205337048, -0.1124434843659401, 0.09823967516422272, -0.016302034258842468, -0.17669104039669037, -0.0467597171664238, 0.08280704915523529, 0.09780684858560562, -0.06413654237985611, -0.0007592510082758963, 0.013556943275034428, 0.0035354525316506624, -0.02407861314713955, 0.08803161978721619, 0.0308390986174345, 0.08981838077306747, -0.048029519617557526, -0.006811210885643959, 0.002286297734826803, 0.0017523139249533415, -0.08501514047384262, 0.04569145292043686, 0.0943717285990715, -0.05785759165883064, -0.18952669203281403, 0.13319653272628784, -0.03359006345272064, 0.2696051597595215, 0.20479512214660645, -0.20647038519382477, -0.12300535291433334, 0.016883855685591698, 0.027415813878178596, -0.060956794768571854, 0.05778772383928299, -0.13141131401062012, -0.0941556766629219, -0.20948781073093414, 0.03033789061009884, -0.2520950734615326, -0.16408459842205048, -0.01469115074723959, 0.07506264001131058, 0.18232838809490204, -0.048455800861120224, 0.031046224758028984, -0.005024505779147148, -0.010693559423089027, -0.03373033553361893, 0.04966682568192482, 0.0032047140412032604, -0.04381687194108963, -0.06301166117191315, 0.12528039515018463, 0.025210928171873093, -0.08927322179079056, 0.09262056648731232, -0.06124294549226761, -0.05139845609664917, 0.17152778804302216, 0.07900134474039078, -0.02932550013065338, -0.024953071027994156, -0.05254069343209267, 0.06598596274852753, -0.07548841089010239, -0.03558710590004921, -0.06441652029752731, -0.0260009765625, 0.029527101665735245, 0.14928248524665833, 0.0038900859653949738, -0.11770561337471008, 0.01624283380806446, -0.05782217159867287, -0.060318563133478165, -0.008466673083603382, -0.07220844179391861, -0.04855285584926605, -0.06336653977632523, 0.05927161127328873, 0.043554339557886124, 0.026239776983857155, 0.06774178892374039, -0.09686876833438873, 0.035851165652275085, -0.2774641215801239, 0.08853454887866974, 0.1543550342321396, -0.09750737249851227, -0.09147252142429352 ]
81c8662aabd34f1c7456883b317c6b6097cfe2bb
# Dataset Card for Unsilencing Colonial Archives via Automated Entity Recognition ## 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/budh333/UnSilence_VOC/tree/v1.3 - **Repository:** https://doi.org/10.5281/zenodo.6958524 - **Paper:** https://arxiv.org/abs/2210.02194 - **Leaderboard:** - **Point of Contact:** * [Mrinalini Luthra](mailto:[email protected]) ### Dataset Summary **Note**: this data card was adapted from documentation and a [data card](https://github.com/budh333/UnSilence_VOC/blob/main/Datacard.pdf) written by the creators of the dataset. > Colonial archives are at the center of increased interest from a variety of perspectives, as they contain traces of historically marginalized people. Unfortunately, like most archives, they remain difficult to access due to significant persisting barriers. We focus here on one of them: the biases to be found in historical findings aids, such as indices of person names, which remain in use to this day. In colonial archives, indexes can perpetrate silences by omitting to include mentions of historically marginalized persons. In order to overcome such limitation and pluralize the scope of existing finding aids, we propose using automated entity recognition. To this end, we contribute a fit-for-purpose annotation typology and apply it on the colonial archive of the Dutch East India Company (VOC). We release a corpus of nearly 70,000 annotations as a shared task, for which we provide strong baselines using state-of-the-art neural network models. This dataset is based on the digitized collection of the Dutch East India Company (VOC) Testaments under the custody of the Dutch National Archives. These testaments of VOC-servants are mainly from the 18th century, for the most part drawn up in the Asian VOC-settlements and to a lesser extent on the VOC ships and in the Republic. The testaments have a fixed order in the text structure and the language is 18th century Dutch. The dataset has 68,429 annotations spanning over 79,797 tokens across 2193 unique pages. 47% of the total annotations correspond to entities and 53% to attributes of those entities. Of the 32,203 entity annotations, 11,715 (36.3%) correspond to instances that represent persons with associated attributes of gender, legal status and notarial role, 4,510 (14%) correspond to instances of places, 1,080 (3.5%) correspond to organizations with attribute beneficiary and 14,898 (46.2%) correspond to proper names (of places, organizations and persons). ### Supported Tasks and Leaderboards - named-entity-recognition: This dataset can be used to train a model for Named Entity Recognition. In particular, the dataset was designed to detect mentions of people in archival documents. ### Languages The dataset contains 18th Century Dutch. The text in the dataset was produced via handwritten text recognition so contains some errors. ## Dataset Structure ### Data Instances Each datapoint refers to a central entity that can be a person, place, organization or proper name or their attributes such as gender, legal status and notarial role of a person. ### Data Fields - tokens: tokens being annotated - NE-MAIN: main entity type, i.e. person, place, Organization, ProperName - NE-PER-NAME: person name entity - NE-PER-GENDER: When the mention of a person is followed or preceded by trigger words which reveal their gender, the text is annotated as a Person with the appropriate value of the attribute Gender. When a person is mentioned without a gender trigger word, their gender is marked as Unspecified. - NE-PER-LEGAL-STATUS: legal status where known, i.e. Free(d), Enslaved, Unspecified - NE-PER-ROLE: The attribute Role refers to roles specific to testaments in notarial archives, which may take exactly one of the following values: Testator, Notary, Witness, Beneficiary, Acting Notary, Testator Beneficiary or Other - NE-ORG-BENEFICIARY: Organizations have the attribute Beneficiary which can take the value Yes or No depending on whether the testator decides an organization to be their beneficiary. - MISC: other annotations not fitting into the above labels. - document_id: id for the document being annotated ### Data Splits [More Information Needed] ## Dataset Creation ### Curation Rationale This dataset was created for training entity recognition models to create more inclusive content based indexes on the collection of VOC testaments. ### Source Data #### Initial Data Collection and Normalization This dataset is based on the digitized collection of the Dutch East India Company (VOC) Testaments under the custody of the Dutch National Archives. #### Who are the source language producers? [More Information Needed] ### Annotations | Entity | # | % | |--------------|--------|------| | Person | 11,715 | 36.4 | | Place | 4,510 | 14 | | Organization | 1,080 | 3.4 | | ProperName | 14,898 | 46.2 | #### Annotation process Annotations were created as a shared annotation task on the Brat annotation software. Annotations were created by highlighting the relevant span of text and choosing its entity type and where applicable exactly one attribute value through a drop down menu. To tag the same span as two entities, the span must be selected two times and labelled accordingly. For example: ‘Adam Domingo’ has been labelled twice as a Person and ProperName. #### Who are the annotators? ### 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 [@davanstrien](https://github.com/davanstrien) for adding this dataset.
biglam/unsilence_voc
[ "task_categories:token-classification", "task_ids:named-entity-recognition", "size_categories:1K<n<10K", "language:nl", "license:cc-by-4.0", "lam ", "arxiv:2210.02194", "region:us" ]
2023-02-07T09:33:34+00:00
{"language": ["nl"], "license": "cc-by-4.0", "size_categories": ["1K<n<10K"], "task_categories": ["token-classification"], "task_ids": ["named-entity-recognition"], "pretty_name": "Unsilencing Colonial Archives via Automated Entity Recognition", "dataset_info": {"features": [{"name": "tokens", "sequence": "string"}, {"name": "NE-MAIN", "sequence": {"class_label": {"names": {"0": "B-Organization", "1": "B-Organization,B-Place", "2": "B-Organization,I-Person", "3": "B-Organization,I-Place", "4": "B-Person", "5": "B-Person,B-Place", "6": "B-Person,I-Place", "7": "B-Place", "8": "I-Organization", "9": "I-Organization,B-Place", "10": "I-Organization,I-Person", "11": "I-Organization,I-Person,B-Place", "12": "I-Organization,I-Person,I-Place", "13": "I-Organization,I-Place", "14": "I-Person", "15": "I-Person,B-Place", "16": "I-Person,I-Place", "17": "I-Place", "18": "O"}}}}, {"name": "NE-PER-NAME", "sequence": {"class_label": {"names": {"0": "I-ProperName", "1": "O", "2": "B-ProperName", "3": ""}}}}, {"name": "NE-PER-GENDER", "sequence": {"class_label": {"names": {"0": "B-Group", "1": "B-Man", "2": "B-Man,B-Unspecified", "3": "B-Man,I-Woman", "4": "B-Unspecified", "5": "B-Unspecified,I-Woman", "6": "B-Woman", "7": "I-Group", "8": "I-Man", "9": "I-Man,I-Unspecified", "10": "I-Man,I-Woman", "11": "I-Unspecified", "12": "I-Unspecified,I-Woman", "13": "I-Woman", "14": "NE-PER-GENDER", "15": "O"}}}}, {"name": "NE-PER-LEGAL-STATUS", "sequence": {"class_label": {"names": {"0": "B-Enslaved", "1": "B-Freed", "2": "B-Unspecified", "3": "I-Enslaved", "4": "I-Freed", "5": "I-Unspecified", "6": "NE-PER-LEGAL-STATUS", "7": "O"}}}}, {"name": "NE-PER-ROLE", "sequence": {"class_label": {"names": {"0": "B-Acting_Notary", "1": "B-Beneficiary", "2": "B-Notary", "3": "B-Other", "4": "B-Testator", "5": "B-Testator_Beneficiary", "6": "B-Witness", "7": "I-Acting_Notary", "8": "I-Beneficiary", "9": "I-Beneficiary,B-Other", "10": "I-Beneficiary,I-Other", "11": "I-Notary", "12": "I-Other", "13": "I-Testator", "14": "I-Testator_Beneficiary", "15": "I-Witness", "16": "NE-PER-ROLE", "17": "O"}}}}, {"name": "NE-ORG-BENEFICIARY", "sequence": {"class_label": {"names": {"0": "B-No", "1": "B-Yes", "2": "I-No", "3": "I-Yes", "4": "NE-ORG-BENEFICIARY", "5": "O"}}}}, {"name": "MISC", "dtype": "string"}, {"name": "document_id", "dtype": "string"}], "splits": [{"name": "train", "num_bytes": 31436367, "num_examples": 2199}], "download_size": 2148172, "dataset_size": 31436367}, "tags": ["lam "], "configs": [{"config_name": "default", "data_files": [{"split": "train", "path": "data/train-*"}]}]}
2023-11-16T10:33:53+00:00
[ "2210.02194" ]
[ "nl" ]
TAGS #task_categories-token-classification #task_ids-named-entity-recognition #size_categories-1K<n<10K #language-Dutch #license-cc-by-4.0 #lam #arxiv-2210.02194 #region-us
Dataset Card for Unsilencing Colonial Archives via Automated Entity Recognition =============================================================================== Table of Contents ----------------- * Table of Contents * Dataset Description + Dataset Summary + Supported Tasks and Leaderboards + Languages * Dataset Structure + Data Instances + Data Fields + Data Splits * Dataset Creation + Curation Rationale + Source Data + Annotations + Personal and Sensitive Information * Considerations for Using the Data + Social Impact of Dataset + Discussion of Biases + Other Known Limitations * Additional Information + Dataset Curators + Licensing Information + Citation Information + Contributions Dataset Description ------------------- * Homepage: URL * Repository: URL * Paper: URL * Leaderboard: * Point of Contact: \* Mrinalini Luthra ### Dataset Summary Note: this data card was adapted from documentation and a data card written by the creators of the dataset. > > Colonial archives are at the center of increased interest from a variety of perspectives, as they contain traces of historically marginalized people. Unfortunately, like most archives, they remain difficult to access due to significant persisting barriers. We focus here on one of them: the biases to be found in historical findings aids, such as indices of person names, which remain in use to this day. In colonial archives, indexes can perpetrate silences by omitting to include mentions of historically marginalized persons. In order to overcome such limitation and pluralize the scope of existing finding aids, we propose using automated entity recognition. To this end, we contribute a fit-for-purpose annotation typology and apply it on the colonial archive of the Dutch East India Company (VOC). We release a corpus of nearly 70,000 annotations as a shared task, for which we provide strong baselines using state-of-the-art neural network models. > > > This dataset is based on the digitized collection of the Dutch East India Company (VOC) Testaments under the custody of the Dutch National Archives. These testaments of VOC-servants are mainly from the 18th century, for the most part drawn up in the Asian VOC-settlements and to a lesser extent on the VOC ships and in the Republic. The testaments have a fixed order in the text structure and the language is 18th century Dutch. The dataset has 68,429 annotations spanning over 79,797 tokens across 2193 unique pages. 47% of the total annotations correspond to entities and 53% to attributes of those entities. Of the 32,203 entity annotations, 11,715 (36.3%) correspond to instances that represent persons with associated attributes of gender, legal status and notarial role, 4,510 (14%) correspond to instances of places, 1,080 (3.5%) correspond to organizations with attribute beneficiary and 14,898 (46.2%) correspond to proper names (of places, organizations and persons). ### Supported Tasks and Leaderboards * named-entity-recognition: This dataset can be used to train a model for Named Entity Recognition. In particular, the dataset was designed to detect mentions of people in archival documents. ### Languages The dataset contains 18th Century Dutch. The text in the dataset was produced via handwritten text recognition so contains some errors. Dataset Structure ----------------- ### Data Instances Each datapoint refers to a central entity that can be a person, place, organization or proper name or their attributes such as gender, legal status and notarial role of a person. ### Data Fields * tokens: tokens being annotated * NE-MAIN: main entity type, i.e. person, place, Organization, ProperName * NE-PER-NAME: person name entity * NE-PER-GENDER: When the mention of a person is followed or preceded by trigger words which reveal their gender, the text is annotated as a Person with the appropriate value of the attribute Gender. When a person is mentioned without a gender trigger word, their gender is marked as Unspecified. * NE-PER-LEGAL-STATUS: legal status where known, i.e. Free(d), Enslaved, Unspecified * NE-PER-ROLE: The attribute Role refers to roles specific to testaments in notarial archives, which may take exactly one of the following values: Testator, Notary, Witness, Beneficiary, Acting Notary, Testator Beneficiary or Other * NE-ORG-BENEFICIARY: Organizations have the attribute Beneficiary which can take the value Yes or No depending on whether the testator decides an organization to be their beneficiary. * MISC: other annotations not fitting into the above labels. * document\_id: id for the document being annotated ### Data Splits Dataset Creation ---------------- ### Curation Rationale This dataset was created for training entity recognition models to create more inclusive content based indexes on the collection of VOC testaments. ### Source Data #### Initial Data Collection and Normalization This dataset is based on the digitized collection of the Dutch East India Company (VOC) Testaments under the custody of the Dutch National Archives. #### Who are the source language producers? ### Annotations Entity: Person, #: 11,715, %: 36.4 Entity: Place, #: 4,510, %: 14 Entity: Organization, #: 1,080, %: 3.4 Entity: ProperName, #: 14,898, %: 46.2 #### Annotation process Annotations were created as a shared annotation task on the Brat annotation software. Annotations were created by highlighting the relevant span of text and choosing its entity type and where applicable exactly one attribute value through a drop down menu. To tag the same span as two entities, the span must be selected two times and labelled accordingly. For example: ‘Adam Domingo’ has been labelled twice as a Person and ProperName. #### Who are the annotators? ### Personal and Sensitive Information Considerations for Using the Data --------------------------------- ### Social Impact of Dataset ### Discussion of Biases ### Other Known Limitations Additional Information ---------------------- ### Dataset Curators ### Licensing Information ### Contributions Thanks to @davanstrien for adding this dataset.
[ "### Dataset Summary\n\n\nNote: this data card was adapted from documentation and a data card written by the creators of the dataset.\n\n\n\n> \n> Colonial archives are at the center of increased interest from a variety of perspectives, as they contain traces of historically marginalized people. Unfortunately, like most archives, they remain difficult to access due to significant persisting barriers. We focus here on one of them: the biases to be found in historical findings aids, such as indices of person names, which remain in use to this day. In colonial archives, indexes can perpetrate silences by omitting to include mentions of historically marginalized persons. In order to overcome such limitation and pluralize the scope of existing finding aids, we propose using automated entity recognition. To this end, we contribute a fit-for-purpose annotation typology and apply it on the colonial archive of the Dutch East India Company (VOC). We release a corpus of nearly 70,000 annotations as a shared task, for which we provide strong baselines using state-of-the-art neural network models.\n> \n> \n> \n\n\nThis dataset is based on the digitized collection of the Dutch East India\nCompany (VOC) Testaments under the custody of the Dutch National\nArchives. These testaments of VOC-servants are mainly from the 18th\ncentury, for the most part drawn up in the Asian VOC-settlements and\nto a lesser extent on the VOC ships and in the Republic. The\ntestaments have a fixed order in the text structure and the language is\n18th century Dutch.\n\n\nThe dataset has 68,429 annotations spanning over 79,797 tokens\nacross 2193 unique pages. 47% of the total annotations correspond to\nentities and 53% to attributes of those entities. Of the 32,203 entity\nannotations, 11,715 (36.3%) correspond to instances that represent\npersons with associated attributes of gender, legal status and notarial\nrole, 4,510 (14%) correspond to instances of places, 1,080 (3.5%)\ncorrespond to organizations with attribute beneficiary and 14,898\n(46.2%) correspond to proper names (of places, organizations and\npersons).", "### Supported Tasks and Leaderboards\n\n\n* named-entity-recognition: This dataset can be used to train a model for Named Entity Recognition. In particular, the dataset was designed to detect mentions of people in archival documents.", "### Languages\n\n\nThe dataset contains 18th Century Dutch. The text in the dataset was produced via handwritten text recognition so contains some errors.\n\n\nDataset Structure\n-----------------", "### Data Instances\n\n\nEach datapoint refers to a central entity that can be a person, place, organization or proper name or their attributes such as gender, legal\nstatus and notarial role of a person.", "### Data Fields\n\n\n* tokens: tokens being annotated\n* NE-MAIN: main entity type, i.e. person, place, Organization, ProperName\n* NE-PER-NAME: person name entity\n* NE-PER-GENDER: When the mention of a person is followed or preceded by\ntrigger words which reveal their gender, the text is annotated\nas a Person with the appropriate value of the attribute Gender.\nWhen a person is mentioned without a gender trigger word,\ntheir gender is marked as Unspecified.\n* NE-PER-LEGAL-STATUS: legal status where known, i.e. Free(d), Enslaved, Unspecified\n* NE-PER-ROLE: The attribute Role refers to roles specific to testaments in notarial archives, which may take exactly one of the following\nvalues: Testator, Notary, Witness, Beneficiary, Acting Notary, Testator Beneficiary or Other\n* NE-ORG-BENEFICIARY: Organizations have the attribute Beneficiary which can take the value Yes or No depending on\nwhether the testator decides an organization to be their beneficiary.\n* MISC: other annotations not fitting into the above labels.\n* document\\_id: id for the document being annotated", "### Data Splits\n\n\nDataset Creation\n----------------", "### Curation Rationale\n\n\nThis dataset was created for training entity recognition models to create more inclusive content based indexes on the collection of VOC testaments.", "### Source Data", "#### Initial Data Collection and Normalization\n\n\nThis dataset is based on the digitized collection of the Dutch East India\nCompany (VOC) Testaments under the custody of the Dutch National\nArchives.", "#### Who are the source language producers?", "### Annotations\n\n\nEntity: Person, #: 11,715, %: 36.4\nEntity: Place, #: 4,510, %: 14\nEntity: Organization, #: 1,080, %: 3.4\nEntity: ProperName, #: 14,898, %: 46.2", "#### Annotation process\n\n\nAnnotations were created as a shared annotation task on the Brat annotation software. Annotations were created by highlighting the relevant span of\ntext and choosing its entity type and where applicable exactly one attribute value through a drop down menu. To tag the same span as two entities, the span must be selected two times and labelled accordingly. For example: ‘Adam Domingo’ has been labelled twice as a Person and ProperName.", "#### Who are the annotators?", "### Personal and Sensitive Information\n\n\nConsiderations for Using the Data\n---------------------------------", "### Social Impact of Dataset", "### Discussion of Biases", "### Other Known Limitations\n\n\nAdditional Information\n----------------------", "### Dataset Curators", "### Licensing Information", "### Contributions\n\n\nThanks to @davanstrien for adding this dataset." ]
[ "TAGS\n#task_categories-token-classification #task_ids-named-entity-recognition #size_categories-1K<n<10K #language-Dutch #license-cc-by-4.0 #lam #arxiv-2210.02194 #region-us \n", "### Dataset Summary\n\n\nNote: this data card was adapted from documentation and a data card written by the creators of the dataset.\n\n\n\n> \n> Colonial archives are at the center of increased interest from a variety of perspectives, as they contain traces of historically marginalized people. Unfortunately, like most archives, they remain difficult to access due to significant persisting barriers. We focus here on one of them: the biases to be found in historical findings aids, such as indices of person names, which remain in use to this day. In colonial archives, indexes can perpetrate silences by omitting to include mentions of historically marginalized persons. In order to overcome such limitation and pluralize the scope of existing finding aids, we propose using automated entity recognition. To this end, we contribute a fit-for-purpose annotation typology and apply it on the colonial archive of the Dutch East India Company (VOC). We release a corpus of nearly 70,000 annotations as a shared task, for which we provide strong baselines using state-of-the-art neural network models.\n> \n> \n> \n\n\nThis dataset is based on the digitized collection of the Dutch East India\nCompany (VOC) Testaments under the custody of the Dutch National\nArchives. These testaments of VOC-servants are mainly from the 18th\ncentury, for the most part drawn up in the Asian VOC-settlements and\nto a lesser extent on the VOC ships and in the Republic. The\ntestaments have a fixed order in the text structure and the language is\n18th century Dutch.\n\n\nThe dataset has 68,429 annotations spanning over 79,797 tokens\nacross 2193 unique pages. 47% of the total annotations correspond to\nentities and 53% to attributes of those entities. Of the 32,203 entity\nannotations, 11,715 (36.3%) correspond to instances that represent\npersons with associated attributes of gender, legal status and notarial\nrole, 4,510 (14%) correspond to instances of places, 1,080 (3.5%)\ncorrespond to organizations with attribute beneficiary and 14,898\n(46.2%) correspond to proper names (of places, organizations and\npersons).", "### Supported Tasks and Leaderboards\n\n\n* named-entity-recognition: This dataset can be used to train a model for Named Entity Recognition. In particular, the dataset was designed to detect mentions of people in archival documents.", "### Languages\n\n\nThe dataset contains 18th Century Dutch. The text in the dataset was produced via handwritten text recognition so contains some errors.\n\n\nDataset Structure\n-----------------", "### Data Instances\n\n\nEach datapoint refers to a central entity that can be a person, place, organization or proper name or their attributes such as gender, legal\nstatus and notarial role of a person.", "### Data Fields\n\n\n* tokens: tokens being annotated\n* NE-MAIN: main entity type, i.e. person, place, Organization, ProperName\n* NE-PER-NAME: person name entity\n* NE-PER-GENDER: When the mention of a person is followed or preceded by\ntrigger words which reveal their gender, the text is annotated\nas a Person with the appropriate value of the attribute Gender.\nWhen a person is mentioned without a gender trigger word,\ntheir gender is marked as Unspecified.\n* NE-PER-LEGAL-STATUS: legal status where known, i.e. Free(d), Enslaved, Unspecified\n* NE-PER-ROLE: The attribute Role refers to roles specific to testaments in notarial archives, which may take exactly one of the following\nvalues: Testator, Notary, Witness, Beneficiary, Acting Notary, Testator Beneficiary or Other\n* NE-ORG-BENEFICIARY: Organizations have the attribute Beneficiary which can take the value Yes or No depending on\nwhether the testator decides an organization to be their beneficiary.\n* MISC: other annotations not fitting into the above labels.\n* document\\_id: id for the document being annotated", "### Data Splits\n\n\nDataset Creation\n----------------", "### Curation Rationale\n\n\nThis dataset was created for training entity recognition models to create more inclusive content based indexes on the collection of VOC testaments.", "### Source Data", "#### Initial Data Collection and Normalization\n\n\nThis dataset is based on the digitized collection of the Dutch East India\nCompany (VOC) Testaments under the custody of the Dutch National\nArchives.", "#### Who are the source language producers?", "### Annotations\n\n\nEntity: Person, #: 11,715, %: 36.4\nEntity: Place, #: 4,510, %: 14\nEntity: Organization, #: 1,080, %: 3.4\nEntity: ProperName, #: 14,898, %: 46.2", "#### Annotation process\n\n\nAnnotations were created as a shared annotation task on the Brat annotation software. Annotations were created by highlighting the relevant span of\ntext and choosing its entity type and where applicable exactly one attribute value through a drop down menu. To tag the same span as two entities, the span must be selected two times and labelled accordingly. For example: ‘Adam Domingo’ has been labelled twice as a Person and ProperName.", "#### Who are the annotators?", "### Personal and Sensitive Information\n\n\nConsiderations for Using the Data\n---------------------------------", "### Social Impact of Dataset", "### Discussion of Biases", "### Other Known Limitations\n\n\nAdditional Information\n----------------------", "### Dataset Curators", "### Licensing Information", "### Contributions\n\n\nThanks to @davanstrien for adding this dataset." ]
[ 72, 485, 59, 42, 46, 283, 11, 34, 4, 42, 10, 63, 99, 9, 18, 7, 8, 14, 6, 6, 18 ]
[ "passage: TAGS\n#task_categories-token-classification #task_ids-named-entity-recognition #size_categories-1K<n<10K #language-Dutch #license-cc-by-4.0 #lam #arxiv-2210.02194 #region-us \n", "passage: ### Dataset Summary\n\n\nNote: this data card was adapted from documentation and a data card written by the creators of the dataset.\n\n\n\n> \n> Colonial archives are at the center of increased interest from a variety of perspectives, as they contain traces of historically marginalized people. Unfortunately, like most archives, they remain difficult to access due to significant persisting barriers. We focus here on one of them: the biases to be found in historical findings aids, such as indices of person names, which remain in use to this day. In colonial archives, indexes can perpetrate silences by omitting to include mentions of historically marginalized persons. In order to overcome such limitation and pluralize the scope of existing finding aids, we propose using automated entity recognition. To this end, we contribute a fit-for-purpose annotation typology and apply it on the colonial archive of the Dutch East India Company (VOC). We release a corpus of nearly 70,000 annotations as a shared task, for which we provide strong baselines using state-of-the-art neural network models.\n> \n> \n> \n\n\nThis dataset is based on the digitized collection of the Dutch East India\nCompany (VOC) Testaments under the custody of the Dutch National\nArchives. These testaments of VOC-servants are mainly from the 18th\ncentury, for the most part drawn up in the Asian VOC-settlements and\nto a lesser extent on the VOC ships and in the Republic. The\ntestaments have a fixed order in the text structure and the language is\n18th century Dutch.\n\n\nThe dataset has 68,429 annotations spanning over 79,797 tokens\nacross 2193 unique pages. 47% of the total annotations correspond to\nentities and 53% to attributes of those entities. Of the 32,203 entity\nannotations, 11,715 (36.3%) correspond to instances that represent\npersons with associated attributes of gender, legal status and notarial\nrole, 4,510 (14%) correspond to instances of places, 1,080 (3.5%)\ncorrespond to organizations with attribute beneficiary and 14,898\n(46.2%) correspond to proper names (of places, organizations and\npersons).### Supported Tasks and Leaderboards\n\n\n* named-entity-recognition: This dataset can be used to train a model for Named Entity Recognition. In particular, the dataset was designed to detect mentions of people in archival documents.### Languages\n\n\nThe dataset contains 18th Century Dutch. The text in the dataset was produced via handwritten text recognition so contains some errors.\n\n\nDataset Structure\n-----------------### Data Instances\n\n\nEach datapoint refers to a central entity that can be a person, place, organization or proper name or their attributes such as gender, legal\nstatus and notarial role of a person.### Data Fields\n\n\n* tokens: tokens being annotated\n* NE-MAIN: main entity type, i.e. person, place, Organization, ProperName\n* NE-PER-NAME: person name entity\n* NE-PER-GENDER: When the mention of a person is followed or preceded by\ntrigger words which reveal their gender, the text is annotated\nas a Person with the appropriate value of the attribute Gender.\nWhen a person is mentioned without a gender trigger word,\ntheir gender is marked as Unspecified.\n* NE-PER-LEGAL-STATUS: legal status where known, i.e. Free(d), Enslaved, Unspecified\n* NE-PER-ROLE: The attribute Role refers to roles specific to testaments in notarial archives, which may take exactly one of the following\nvalues: Testator, Notary, Witness, Beneficiary, Acting Notary, Testator Beneficiary or Other\n* NE-ORG-BENEFICIARY: Organizations have the attribute Beneficiary which can take the value Yes or No depending on\nwhether the testator decides an organization to be their beneficiary.\n* MISC: other annotations not fitting into the above labels.\n* document\\_id: id for the document being annotated### Data Splits\n\n\nDataset Creation\n----------------### Curation Rationale\n\n\nThis dataset was created for training entity recognition models to create more inclusive content based indexes on the collection of VOC testaments.### Source Data" ]
[ -0.0387507826089859, 0.025510422885417938, -0.005369909107685089, 0.04913783818483353, 0.015258300118148327, -0.0055692605674266815, 0.07213371992111206, 0.0409388542175293, 0.11680704355239868, 0.06567075848579407, 0.02537372149527073, -0.027414321899414062, 0.05799165740609169, -0.05801067501306534, 0.0015148799866437912, -0.19539417326450348, 0.08803829550743103, -0.04090818762779236, -0.03512909635901451, 0.023182429373264313, 0.1040063351392746, -0.055908460170030594, 0.04798996448516846, -0.031958840787410736, -0.03999464213848114, 0.041628770530223846, -0.016755808144807816, -0.053546544164419174, 0.11637410521507263, 0.07373281568288803, 0.09088962525129318, 0.020304078236222267, 0.02894679456949234, -0.16480250656604767, -0.013439196161925793, -0.02734839916229248, -0.027167726308107376, -0.02323073148727417, 0.06259600818157196, 0.08794991672039032, 0.1405685842037201, -0.10143598169088364, -0.030149508267641068, -0.029688380658626556, -0.09210380911827087, -0.13121315836906433, -0.04933088645339012, 0.023561682552099228, 0.044183097779750824, 0.04559139907360077, 0.03432776778936386, 0.11319251358509064, -0.10019559413194656, 0.03031410463154316, 0.045492250472307205, -0.226978600025177, -0.028210975229740143, 0.13159626722335815, 0.044546689838171005, 0.04358549043536186, -0.03742656856775284, -0.0012745121493935585, 0.0037365583702921867, 0.03560473769903183, -0.04193935915827751, -0.0998816043138504, -0.1103605329990387, -0.0036094915121793747, -0.05170836299657822, -0.07568700611591339, 0.2891770899295807, 0.07143095135688782, -0.012502836994826794, -0.01982194185256958, -0.002159210853278637, 0.07777245342731476, 0.008985769934952259, -0.0027871886268258095, 0.03178907558321953, 0.005350641906261444, 0.1687423288822174, 0.04535942152142525, -0.09349197149276733, -0.00906052254140377, -0.13999933004379272, 0.049614567309617996, 0.0031161271035671234, 0.04410751163959503, -0.014322701841592789, -0.030753683298826218, -0.17921259999275208, -0.04846770316362381, -0.07024495303630829, 0.0019714515656232834, -0.07700729370117188, -0.007204437628388405, 0.04274319112300873, -0.015057392418384552, 0.060256652534008026, 0.011007075197994709, -0.024674933403730392, 0.008375299163162708, -0.19095182418823242, 0.12775002419948578, 0.03553277999162674, 0.14150266349315643, -0.05816728621721268, 0.021326422691345215, -0.005161473527550697, -0.13760648667812347, 0.06782612204551697, 0.015527966432273388, -0.11441250145435333, -0.01292126439511776, -0.00003039371222257614, 0.08894787728786469, -0.03550015017390251, 0.014984396286308765, -0.010794522240757942, 0.022883988916873932, 0.19015467166900635, -0.04243168979883194, 0.007302621845155954, -0.039104171097278595, -0.04225555807352066, -0.0008072154596447945, -0.09976896643638611, -0.007916774600744247, -0.06511412560939789, 0.09546659886837006, -0.028658675029873848, -0.0072866505943238735, -0.03988303989171982, -0.16798076033592224, 0.10398639738559723, -0.0159735307097435, -0.02709118463099003, -0.10852654278278351, -0.16002841293811798, -0.006160363554954529, -0.004872138146311045, -0.06470423936843872, 0.03380874916911125, -0.023782454431056976, -0.039305180311203, -0.03070090338587761, -0.025235377252101898, 0.024592796340584755, -0.05483844876289368, 0.022279489785432816, -0.11334007978439331, 0.06543076038360596, -0.1565517783164978, -0.006426556967198849, -0.09581161290407181, 0.06307661533355713, -0.1728399693965912, -0.007845628075301647, -0.12381725013256073, -0.0032028593122959137, -0.07408370822668076, -0.051223594695329666, -0.03233378008008003, 0.02421845681965351, -0.04520983248949051, 0.034612514078617096, -0.13819926977157593, -0.009212790057063103, 0.03772316500544548, -0.13078266382217407, -0.004779523238539696, 0.06524228304624557, 0.0421660915017128, 0.028656532987952232, 0.016300063580274582, 0.24332104623317719, -0.013195082545280457, 0.007608324289321899, -0.043331295251846313, 0.07695020735263824, -0.03868912160396576, -0.08673541992902756, 0.07004798948764801, -0.03667622059583664, 0.04962674900889397, 0.014421442523598671, -0.005993682891130447, 0.005708342418074608, -0.015269625931978226, -0.008882246911525726, 0.016572365537285805, 0.0037161903455853462, -0.04238753020763397, 0.012248772196471691, 0.02830955572426319, -0.05122223496437073, 0.03437397629022598, 0.019633077085018158, 0.009649654850363731, 0.0005292370915412903, 0.025051461532711983, -0.03825501352548599, -0.02071226015686989, 0.02570773847401142, 0.004774782806634903, -0.10636793822050095, -0.04290490597486496, 0.09321573376655579, -0.03039470687508583, 0.019805755466222763, 0.136764258146286, 0.017827274277806282, 0.0007263049483299255, -0.03767619654536247, 0.05366292595863342, 0.06748077273368835, -0.0043757460080087185, -0.04226747155189514, -0.10040642321109772, 0.008046133443713188, 0.013399701565504074, -0.05263326317071915, -0.04077087342739105, -0.031198836863040924, 0.12739938497543335, 0.024797765538096428, 0.031177498400211334, 0.03256290778517723, 0.022052783519029617, 0.1108478382229805, 0.008732026442885399, -0.017130985856056213, -0.010392416268587112, -0.011555219069123268, -0.009221991524100304, 0.15571898221969604, -0.0831347405910492, 0.07002819329500198, 0.06581687927246094, -0.02430858463048935, 0.042096421122550964, 0.060457922518253326, -0.0021677552722394466, -0.03307585418224335, -0.07348759472370148, -0.058132823556661606, -0.02359153889119625, 0.02210320346057415, 0.04417027160525322, -0.06717885285615921, -0.02815937250852585, 0.030673762783408165, 0.005688143894076347, -0.05687246471643448, 0.09787256270647049, 0.10018938779830933, -0.16970250010490417, 0.10051071643829346, 0.10939303785562515, -0.010088510811328888, 0.07102753221988678, -0.0009437315165996552, -0.024584606289863586, 0.002113679423928261, 0.04194823279976845, 0.007963248528540134, 0.1596354842185974, -0.19157204031944275, 0.010044688358902931, 0.07986222952604294, 0.09850018471479416, -0.03169652447104454, -0.05657745897769928, -0.004890210926532745, -0.007765024900436401, -0.06222214922308922, -0.030575066804885864, -0.007449405267834663, 0.0057903677225112915, 0.09326204657554626, 0.0028965920209884644, -0.11710578203201294, 0.02635769732296467, -0.06910531222820282, -0.05029263719916344, 0.13324123620986938, -0.11460576951503754, -0.28708887100219727, -0.15147610008716583, 0.034659210592508316, -0.06853266805410385, -0.005077223293483257, 0.025286484509706497, -0.018846837803721428, -0.11536264419555664, -0.06488437950611115, 0.005799386650323868, -0.08262889087200165, -0.062443722039461136, -0.06631669402122498, 0.04596767574548721, -0.07982942461967468, -0.11356378346681595, -0.053196847438812256, -0.015395954251289368, -0.028148114681243896, 0.12142500281333923, -0.059288039803504944, 0.09442425519227982, 0.06546054780483246, -0.029253166168928146, -0.005022134631872177, -0.0758373960852623, 0.02921391651034355, -0.09557083249092102, 0.06875884532928467, 0.0765884667634964, 0.008051460608839989, 0.010092122480273247, 0.18098875880241394, 0.021962936967611313, -0.07601159811019897, -0.008009524084627628, 0.02635769546031952, -0.08880290389060974, -0.19437837600708008, -0.13174599409103394, -0.10518544912338257, 0.12300600111484528, 0.021085664629936218, 0.05913553386926651, 0.07362896203994751, -0.04812880605459213, -0.003319939598441124, 0.11223257333040237, -0.015089343301951885, 0.04072495177388191, 0.2346349060535431, 0.017627885565161705, 0.052363671362400055, -0.07289639115333557, -0.0020701810717582703, 0.09874588251113892, 0.025217615067958832, 0.2047061026096344, 0.12628251314163208, 0.11036056280136108, 0.017377128824591637, 0.09736350923776627, 0.06933858245611191, 0.09684508293867111, 0.00657879002392292, 0.014842492528259754, -0.058639127761125565, -0.0757034420967102, 0.018280811607837677, 0.05103000998497009, -0.006935454905033112, -0.08708663284778595, 0.00536881759762764, -0.13216632604599, 0.01563967391848564, 0.12403377890586853, 0.058502718806266785, -0.01578359678387642, -0.010391708463430405, 0.05255502089858055, -0.052640918642282486, -0.09897354990243912, 0.05612315982580185, 0.1787579357624054, -0.09071028232574463, 0.021494392305612564, 0.04144199192523956, 0.07377538830041885, -0.09720449894666672, 0.06509877741336823, -0.06624440848827362, -0.13965198397636414, 0.0051057785749435425, 0.0905887559056282, -0.1979374885559082, 0.3274327516555786, 0.037488777190446854, -0.037434954196214676, -0.11635687947273254, -0.05367957428097725, -0.02857694774866104, 0.0553181916475296, 0.13199126720428467, 0.07488853484392166, -0.19569188356399536, -0.04745312035083771, -0.0228133462369442, 0.03841419517993927, 0.020242158323526382, 0.0012189019471406937, -0.02762220799922943, 0.043101344257593155, -0.00667649507522583, -0.010014485567808151, 0.04611065238714218, -0.0373300239443779, -0.039856091141700745, 0.002193700522184372, 0.09057087451219559, 0.0023773927241563797, -0.06409908831119537, 0.010960550978779793, -0.037663981318473816, 0.13093896210193634, -0.18122737109661102, -0.04039788618683815, -0.05928719788789749, -0.029616866260766983, 0.07599639147520065, -0.031726133078336716, -0.030002065002918243, -0.009100863710045815, 0.022433757781982422, -0.03667404502630234, -0.022306092083454132, 0.1046280562877655, -0.04106529802083969, -0.04677766561508179, -0.04766661673784256, 0.0471639521420002, -0.003220580518245697, 0.05298513174057007, -0.018061481416225433, 0.04877885431051254, 0.06900450587272644, -0.09293781220912933, 0.03370866924524307, 0.046536773443222046, 0.004639348015189171, 0.08600163459777832, -0.05132513865828514, 0.019298532977700233, 0.010212911292910576, -0.07834723591804504, 0.1233479231595993, 0.193229079246521, -0.04689047485589981, 0.0594479963183403, 0.17744478583335876, -0.10038366913795471, -0.2837387025356293, 0.001319583971053362, -0.08759341388940811, 0.016802946105599403, -0.04757023975253105, -0.11512087285518646, 0.07827948033809662, 0.19599148631095886, -0.028638450428843498, 0.0003285519778728485, -0.19328981637954712, -0.07388108223676682, 0.05632365867495537, -0.05112248286604881, 0.19975855946540833, -0.07122591137886047, -0.05836482346057892, -0.06806805729866028, -0.14432525634765625, 0.06785177439451218, -0.004091252572834492, 0.021066203713417053, -0.03460390865802765, -0.01871752180159092, -0.0013573244214057922, 0.00027382373809814453, 0.13029901683330536, 0.11573734134435654, 0.10115386545658112, -0.048315733671188354, -0.028683222830295563, 0.14172980189323425, -0.013598833233118057, 0.07508264482021332, 0.025605080649256706, -0.049389444291591644, -0.12530407309532166, 0.011849618516862392, -0.08950413763523102, 0.0909355953335762, 0.002783196046948433, -0.05998365581035614, -0.0862521156668663, 0.07251602411270142, -0.026213854551315308, 0.04085239768028259, 0.17743530869483948, -0.0276479609310627, -0.022324610501527786, 0.11688017845153809, 0.12183888256549835, -0.066530741751194, 0.022052224725484848, 0.02882210910320282, -0.022019347175955772, 0.07713694870471954, -0.061629146337509155, 0.017374685034155846, 0.135202556848526, -0.012423032894730568, 0.05462062358856201, 0.014443797990679741, -0.02729613706469536, -0.0006799641996622086, 0.0688067302107811, 0.002942827995866537, -0.1561790257692337, 0.04020918160676956, 0.09005994349718094, 0.05132656171917915, -0.07381521165370941, 0.06779641658067703, -0.04001033678650856, 0.05071959272027016, 0.01787150837481022, 0.007966614328324795, -0.02231602929532528, 0.06600019335746765, -0.011131285689771175, 0.06794023513793945, -0.07247424125671387, 0.12890625, 0.11276127398014069, -0.11787667125463486, -0.01805756613612175, 0.07971937209367752, -0.11958733201026917, -0.05923710763454437, -0.05173617601394653, 0.06236215680837631, -0.06505677103996277, -0.11271090805530548, 0.004315253347158432, -0.12537866830825806, 0.007125156000256538, 0.17679458856582642, 0.0017686719074845314, 0.05846847966313362, 0.015734359622001648, -0.027394380420446396, 0.0032600797712802887, 0.006250840611755848, -0.10163156688213348, 0.05458291620016098, -0.02851337566971779, -0.06038016825914383, -0.02787153050303459, 0.0463981069624424, -0.011284226551651955, -0.038194768130779266, -0.09202897548675537, 0.03385031223297119, -0.11747987568378448, 0.042876236140728, -0.06184813007712364, -0.030832838267087936, 0.025512851774692535, -0.02615540102124214, -0.008874727413058281, -0.03665139526128769, -0.08168994635343552, 0.022066568955779076, -0.018913622945547104, 0.10825268924236298, -0.03747142478823662, -0.0809149444103241, 0.061599403619766235, -0.02250075712800026, 0.07263298332691193, 0.011681308969855309, -0.017962124198675156, 0.0758112370967865, -0.054836273193359375, 0.023223280906677246, 0.07891201227903366, 0.07583066821098328, 0.0611523799598217, 0.011844051070511341, -0.037426237016916275, 0.057686641812324524, 0.005878932774066925, 0.050791289657354355, -0.0830153226852417, -0.08251398801803589, 0.07768670469522476, -0.08026259392499924, -0.12336385995149612, -0.0029846783727407455, 0.024623600766062737, 0.10382667928934097, 0.009640500880777836, 0.047202758491039276, -0.007031124550849199, -0.03927305340766907, -0.05310259386897087, 0.001760297454893589, 0.002843271940946579, -0.06873434782028198, -0.047553326934576035, -0.056930433958768845, 0.01756691001355648, -0.004896685015410185, 0.197480246424675, 0.08266299962997437, -0.0475790798664093, 0.062335506081581116, -0.05199989676475525, -0.06627827882766724, 0.006925411522388458, 0.06507383286952972, 0.06735465675592422, -0.023439347743988037, -0.027708929032087326, -0.05405769869685173, -0.04841550439596176, 0.061079241335392, 0.1947905570268631, 0.13834276795387268, 0.13905686140060425, 0.027415914461016655, 0.09909960627555847, -0.07957106083631516, -0.08531364798545837, -0.007921604439616203, 0.07057522237300873, 0.10572154819965363, 0.0030520744621753693, 0.026155762374401093, 0.05729600042104721, -0.11525511741638184, 0.09002195298671722, -0.06363807618618011, -0.042360901832580566, -0.038736049085855484, -0.11056147515773773, -0.05412702262401581, -0.0698431208729744, -0.007696554530411959, -0.08437971025705338, 0.05959542840719223, 0.15669196844100952, 0.060999881476163864, 0.020640287548303604, -0.01817801594734192, -0.1585473269224167, -0.0072691235691308975, 0.061232663691043854, -0.02378850430250168, 0.02171821892261505, -0.07927069067955017, 0.024413535371422768, -0.014706257730722427, 0.011497382074594498, -0.01045643724501133, 0.10219676047563553, 0.050436437129974365, -0.0572650283575058, -0.07908856868743896, -0.05225864425301552, -0.01899605803191662, 0.014668396674096584, -0.026654917746782303, 0.14950352907180786, 0.05370636284351349, -0.03475111722946167, 0.061335548758506775, 0.08342669159173965, -0.015446105040609837, -0.17848971486091614, -0.016669102013111115, 0.29046282172203064, 0.01343638263642788, 0.02921515330672264, -0.0005412660539150238, -0.04702632501721382, 0.007830286398530006, 0.1353796273469925, 0.14805105328559875, 0.07955364137887955, -0.02447989210486412, -0.04077734798192978, -0.011240100488066673, -0.016658173874020576, 0.06867378950119019, 0.00878769252449274, 0.21566155552864075, -0.06297841668128967, -0.007909467443823814, -0.020982347428798676, 0.02219271846115589, -0.11809574067592621, 0.013273542746901512, 0.028597166761755943, -0.07333066314458847, -0.10424496233463287, 0.11637462675571442, -0.08822934329509735, -0.0797838494181633, 0.11286471039056778, -0.06304247677326202, -0.06279242038726807, 0.017618661746382713, -0.027583085000514984, 0.02356594428420067, 0.046426236629486084, -0.09035000950098038, -0.037373870611190796, 0.008778020739555359, 0.017558971419930458, -0.13183613121509552, -0.11863609403371811, 0.0615827739238739, 0.0651569664478302, 0.09064019471406937, 0.008601471781730652, 0.14542201161384583, 0.07274292409420013, 0.028190696612000465, -0.04533406347036362, 0.06549392640590668, 0.03688602149486542, 0.04642988741397858, -0.0545211136341095, 0.05238207429647446, -0.007990083657205105, 0.13566681742668152, 0.04099755734205246, -0.08041413128376007, 0.002689187414944172, 0.08854220062494278, 0.007748717442154884, -0.08634082973003387, 0.013880438171327114, -0.02695617452263832, 0.0771360844373703, 0.10111524164676666, 0.041101373732089996, -0.028993936255574226, -0.03708287701010704, -0.034469638019800186, -0.007113359868526459, -0.0091923289000988, -0.037008970975875854, -0.027424555271863937, 0.015993595123291016, -0.03869639337062836, 0.02496519312262535, -0.11134355515241623, -0.022325903177261353, 0.022441618144512177, 0.02983403578400612, 0.0006727036088705063, 0.03512726351618767, 0.047485023736953735, -0.01747150719165802, -0.02013453096151352, -0.1782526969909668, 0.051821980625391006, 0.05939140543341637, 0.032484885305166245, -0.055216215550899506 ]
acfd45f22d4638f6b7264886ac0f3d8456f32316
# Danbooru 2021 SQLite ## Dataset Description - **Homepage:** - **Repository:** - **Paper:** - **Leaderboard:** - **Point of Contact:** ### Dataset Summary This is the metadata of danbooru 2021 dataset in SQLite format. https://gwern.net/danbooru2021 ### Supported Tasks and Leaderboards [More Information Needed] ### Languages [More Information Needed] ## Dataset Structure ### Data Instances [More Information Needed] ### Data Fields [More Information Needed] ### Data Splits [More Information Needed] ## Dataset Creation ### Curation Rationale [More Information Needed] ### Source Data #### Initial Data Collection and Normalization [More Information Needed] #### Who are the source language producers? [More Information Needed] ### Annotations #### Annotation process [More Information Needed] #### Who are the annotators? [More Information Needed] ### Personal and Sensitive Information [More Information Needed] ## Considerations for Using the Data ### Social Impact of Dataset [More Information Needed] ### Discussion of Biases [More Information Needed] ### Other Known Limitations [More Information Needed] ## Additional Information ### Dataset Curators [More Information Needed] ### Licensing Information [More Information Needed] ### Citation Information [More Information Needed] ### Contributions [More Information Needed]
KBlueLeaf/Danbooru2021-SQLite
[ "task_categories:text-generation", "task_categories:zero-shot-classification", "size_categories:1M<n<10M", "region:us" ]
2023-02-07T10:31:58+00:00
{"size_categories": ["1M<n<10M"], "task_categories": ["text-generation", "zero-shot-classification"]}
2023-02-25T13:32:36+00:00
[]
[]
TAGS #task_categories-text-generation #task_categories-zero-shot-classification #size_categories-1M<n<10M #region-us
# Danbooru 2021 SQLite ## Dataset Description - Homepage: - Repository: - Paper: - Leaderboard: - Point of Contact: ### Dataset Summary This is the metadata of danbooru 2021 dataset in SQLite format. URL ### Supported Tasks and Leaderboards ### Languages ## Dataset Structure ### Data Instances ### Data Fields ### Data Splits ## Dataset Creation ### Curation Rationale ### Source Data #### Initial Data Collection and Normalization #### Who are the source language producers? ### Annotations #### Annotation process #### Who are the annotators? ### Personal and Sensitive Information ## Considerations for Using the Data ### Social Impact of Dataset ### Discussion of Biases ### Other Known Limitations ## Additional Information ### Dataset Curators ### Licensing Information ### Contributions
[ "# Danbooru 2021 SQLite", "## Dataset Description\n\n- Homepage: \n- Repository: \n- Paper: \n- Leaderboard: \n- Point of Contact:", "### Dataset Summary\nThis is the metadata of danbooru 2021 dataset in SQLite format.\nURL", "### Supported Tasks and Leaderboards", "### Languages", "## Dataset Structure", "### Data Instances", "### Data Fields", "### Data Splits", "## Dataset Creation", "### Curation Rationale", "### Source Data", "#### Initial Data Collection and Normalization", "#### Who are the source language producers?", "### Annotations", "#### Annotation process", "#### Who are the annotators?", "### Personal and Sensitive Information", "## Considerations for Using the Data", "### Social Impact of Dataset", "### Discussion of Biases", "### Other Known Limitations", "## Additional Information", "### Dataset Curators", "### Licensing Information", "### Contributions" ]
[ "TAGS\n#task_categories-text-generation #task_categories-zero-shot-classification #size_categories-1M<n<10M #region-us \n", "# Danbooru 2021 SQLite", "## Dataset Description\n\n- Homepage: \n- Repository: \n- Paper: \n- Leaderboard: \n- Point of Contact:", "### Dataset Summary\nThis is the metadata of danbooru 2021 dataset in SQLite format.\nURL", "### Supported Tasks and Leaderboards", "### Languages", "## Dataset Structure", "### Data Instances", "### Data Fields", "### Data Splits", "## Dataset Creation", "### Curation Rationale", "### Source Data", "#### Initial Data Collection and Normalization", "#### Who are the source language producers?", "### Annotations", "#### Annotation process", "#### Who are the annotators?", "### Personal and Sensitive Information", "## Considerations for Using the Data", "### Social Impact of Dataset", "### Discussion of Biases", "### Other Known Limitations", "## Additional Information", "### Dataset Curators", "### Licensing Information", "### Contributions" ]
[ 42, 7, 24, 24, 10, 4, 6, 6, 5, 5, 5, 7, 4, 10, 10, 5, 5, 9, 8, 8, 7, 8, 7, 5, 6, 6, 5 ]
[ "passage: TAGS\n#task_categories-text-generation #task_categories-zero-shot-classification #size_categories-1M<n<10M #region-us \n# Danbooru 2021 SQLite## Dataset Description\n\n- Homepage: \n- Repository: \n- Paper: \n- Leaderboard: \n- Point of Contact:### Dataset Summary\nThis is the metadata of danbooru 2021 dataset in SQLite format.\nURL### Supported Tasks and Leaderboards### Languages## Dataset Structure### Data Instances### Data Fields### Data Splits## Dataset Creation### Curation Rationale### Source Data#### Initial Data Collection and Normalization#### Who are the source language producers?### Annotations#### Annotation process#### Who are the annotators?### Personal and Sensitive Information## Considerations for Using the Data### Social Impact of Dataset### Discussion of Biases### Other Known Limitations## Additional Information### Dataset Curators### Licensing Information### Contributions" ]
[ -0.017720786854624748, 0.29592588543891907, -0.0035329144448041916, 0.03482484072446823, 0.10526318848133087, 0.020849408581852913, 0.08579462021589279, 0.09561195224523544, -0.01122216135263443, 0.13372282683849335, 0.058537427335977554, 0.10991833359003067, 0.14346115291118622, 0.17199748754501343, -0.05102843418717384, -0.25467121601104736, 0.0062779816798865795, -0.05789034441113472, -0.02972886525094509, 0.0861399918794632, 0.14397579431533813, -0.10488814115524292, 0.06708041578531265, -0.10193221271038055, -0.01297795306891203, 0.003977120388299227, -0.08598005771636963, -0.05111949145793915, 0.04640377312898636, 0.07274890691041946, 0.002115808194503188, 0.03275593742728233, 0.07756348699331284, -0.2476220577955246, 0.0251409150660038, -0.005278208293020725, 0.013817860744893551, 0.0672055035829544, 0.06868576258420944, -0.03937700390815735, 0.06906946003437042, -0.16705162823200226, 0.06331268697977066, 0.053547780960798264, -0.12484108656644821, -0.08352465182542801, -0.1546979546546936, 0.06399010866880417, 0.06862013041973114, 0.053091175854206085, -0.04328244552016258, 0.09379004687070847, -0.07412572205066681, 0.039170946925878525, 0.0859389528632164, -0.12878577411174774, -0.05427585169672966, 0.14336445927619934, 0.029766825959086418, 0.05446663871407509, -0.11454934626817703, 0.027319010347127914, 0.003696391824632883, 0.03759738430380821, 0.027227992191910744, -0.043655652552843094, -0.015759510919451714, 0.03396940603852272, -0.11813059449195862, -0.08187689632177353, 0.23732294142246246, 0.03955492004752159, 0.0048594907857477665, -0.18072830140590668, 0.0006826609023846686, 0.023111937567591667, -0.06293457746505737, 0.018733154982328415, 0.014715702272951603, -0.020104970782995224, 0.09297900646924973, -0.03347478434443474, -0.04982409626245499, -0.014675147831439972, -0.004567490890622139, 0.042045414447784424, 0.028453418985009193, -0.011977857910096645, 0.015637146309018135, 0.007929466664791107, -0.0066028982400894165, -0.12281209230422974, -0.020195605233311653, -0.02356988936662674, -0.09077732264995575, -0.015622387640178204, 0.08861223608255386, 0.04114597663283348, 0.15389057993888855, 0.16578304767608643, -0.12210587412118912, 0.031848613172769547, -0.06578555703163147, 0.013341265730559826, 0.11864159256219864, 0.07412857562303543, -0.12319696694612503, -0.12780235707759857, 0.04820194095373154, 0.001562193501740694, 0.033719394356012344, -0.027152327820658684, -0.04285762459039688, 0.05115849897265434, 0.032725583761930466, 0.1276092678308487, 0.16664233803749084, 0.014731928706169128, -0.10527585446834564, -0.012944821268320084, 0.15977443754673004, -0.10232362151145935, 0.007720711641013622, 0.03334702551364899, -0.04909820109605789, -0.06892171502113342, -0.09368963539600372, 0.041363880038261414, -0.07992976158857346, 0.05243666470050812, -0.066523976624012, -0.07044944167137146, -0.06842879951000214, -0.0950031578540802, 0.1047256737947464, -0.06486596167087555, 0.020953739061951637, 0.017029279842972755, -0.19281363487243652, -0.06894324719905853, 0.015508392825722694, -0.13122178614139557, -0.11961488425731659, -0.0017783797811716795, -0.06600968539714813, -0.008530725724995136, -0.031274404376745224, 0.04102490469813347, -0.09609059244394302, 0.022064950317144394, -0.001796787604689598, 0.025234421715140343, -0.040269967168569565, 0.03183196485042572, -0.09381835907697678, 0.09044573456048965, -0.0549304224550724, 0.09809593856334686, -0.17381897568702698, 0.04210219159722328, -0.1321134716272354, -0.05559708923101425, 0.035239607095718384, -0.021415477618575096, -0.018258102238178253, 0.20334695279598236, -0.25830695033073425, 0.0003842171863652766, 0.09692694991827011, -0.0697309672832489, -0.13214030861854553, 0.0695190355181694, -0.02252311073243618, 0.011700548231601715, 0.02343197725713253, 0.1363660842180252, -0.01137214619666338, 0.0028725373558700085, -0.06873980164527893, -0.029884593561291695, 0.04303920641541481, 0.13392505049705505, 0.13619190454483032, -0.07800519466400146, 0.1351483315229416, 0.019268078729510307, 0.015789559110999107, -0.07919444143772125, -0.0544130876660347, -0.09450649470090866, 0.02216148003935814, -0.013973590917885303, 0.008017128333449364, 0.060531504452228546, -0.039368778467178345, -0.024075062945485115, -0.03542781621217728, -0.03202160447835922, 0.012831555679440498, 0.014094442129135132, -0.04396434128284454, -0.062332283705472946, 0.04364727810025215, -0.03546931967139244, 0.031030118465423584, -0.1976267546415329, -0.12469606846570969, 0.05306673422455788, 0.014569585211575031, 0.11013799905776978, 0.004116761032491922, 0.007492478005588055, -0.039058275520801544, -0.021727606654167175, 0.002885667374357581, 0.010028562508523464, 0.03895974159240723, -0.014795191586017609, -0.23644743859767914, -0.008609565906226635, -0.07195394486188889, 0.09905616194009781, -0.1930258721113205, 0.014052302576601505, 0.1292310208082199, 0.16069643199443817, 0.03728381544351578, -0.043027427047491074, 0.08962207287549973, 0.040874022990465164, -0.04364593327045441, -0.06785622239112854, 0.014651302248239517, -0.05413533002138138, -0.057614006102085114, 0.010710443370044231, -0.07793952524662018, 0.024783486500382423, 0.07960764318704605, 0.06318141520023346, -0.026804007589817047, -0.0623665377497673, -0.05915829911828041, -0.034116681665182114, -0.03466631844639778, -0.018181970342993736, 0.04522375017404556, 0.052302781492471695, -0.00026017724303528666, -0.06448878347873688, -0.02542993053793907, -0.01185828261077404, -0.01048843190073967, -0.10125426948070526, 0.16973407566547394, 0.07048342376947403, -0.18748940527439117, 0.19715790450572968, 0.02317725494503975, 0.13726374506950378, 0.09731340408325195, -0.06458041816949844, -0.0677047148346901, -0.021616019308567047, -0.008248199708759785, 0.007593043148517609, 0.1543283611536026, -0.13906289637088776, 0.029218940064311028, 0.058784641325473785, 0.008256633765995502, 0.039862021803855896, -0.06660936027765274, 0.017080094665288925, -0.026540683582425117, -0.06733428686857224, 0.004791920073330402, -0.018880091607570648, 0.026383602991700172, 0.116643525660038, 0.08212500065565109, 0.09158937633037567, -0.0018367102602496743, -0.059211812913417816, -0.09951910376548767, 0.15063221752643585, -0.10447809845209122, -0.26574164628982544, -0.05808493494987488, -0.03504132479429245, -0.06940621137619019, -0.008615564554929733, 0.003987149801105261, 0.010520477779209614, -0.08709757775068283, -0.056357819586992264, 0.05199414864182472, -0.02501526102423668, -0.12008803337812424, -0.00782812014222145, 0.021299833431839943, -0.04582526907324791, -0.11656045913696289, 0.021400002762675285, 0.07306170463562012, 0.018797552213072777, 0.026018887758255005, 0.030544178560376167, 0.1761731654405594, 0.11064551770687103, 0.049278147518634796, -0.009253943338990211, -0.05233223736286163, 0.28766387701034546, -0.12422540783882141, 0.08329775929450989, 0.1093265637755394, -0.032500024884939194, 0.010580500587821007, 0.26593172550201416, 0.026540035381913185, -0.10781564563512802, 0.015051042661070824, 0.063127800822258, -0.05103747919201851, -0.24252623319625854, -0.14145134389400482, -0.10724096745252609, 0.05518454313278198, 0.05758694186806679, 0.07340721786022186, 0.0028501260094344616, 0.00039535804535262287, -0.07385272532701492, -0.0035096965730190277, 0.04250040277838707, 0.08914893120527267, 0.10797913372516632, 0.00026966063887812197, 0.04554209113121033, -0.04388352856040001, 0.011117547750473022, 0.10882122814655304, 0.10020975768566132, 0.16690510511398315, 0.044634103775024414, 0.2538563907146454, 0.070869080722332, 0.09605124592781067, -0.030578497797250748, 0.0016279284609481692, 0.02463371679186821, 0.0692654624581337, -0.02904254011809826, -0.061184972524642944, -0.03971215710043907, 0.060896746814250946, 0.07929530739784241, -0.09069893509149551, 0.04601765796542168, -0.08086861670017242, 0.054064422845840454, 0.13987615704536438, 0.02999441884458065, -0.1294737309217453, -0.06529993563890457, 0.16300711035728455, -0.010782400146126747, -0.0955888107419014, 0.02333001233637333, 0.041725240647792816, -0.13716310262680054, 0.08789580315351486, -0.0139618543908, 0.1614270955324173, -0.1054331436753273, -0.023628242313861847, -0.10597109794616699, -0.026749130338430405, -0.00640562130138278, 0.12403255701065063, -0.2534218430519104, 0.23301732540130615, 0.04281820356845856, 0.03172014281153679, -0.1418633610010147, 0.04223227500915527, -0.033510979264974594, 0.014739821664988995, 0.17099304497241974, -0.013404039666056633, -0.08197126537561417, 0.006412415765225887, -0.08558148145675659, 0.004572116769850254, 0.03372182324528694, -0.07713703066110611, 0.1081034243106842, 0.012225132435560226, 0.011904415674507618, -0.02535988949239254, -0.06151474639773369, -0.16519734263420105, -0.19175948202610016, 0.07054853439331055, -0.03796716034412384, 0.04819736257195473, -0.05161905661225319, -0.01944168284535408, -0.015129242092370987, 0.1453639715909958, -0.13253499567508698, -0.07976339012384415, -0.16294702887535095, 0.11834905296564102, 0.16261468827724457, -0.04924272373318672, 0.025344790890812874, -0.04421655833721161, 0.148326575756073, 0.023816803470253944, -0.02587239257991314, 0.08618965744972229, -0.07106712460517883, -0.2225005328655243, -0.016986843198537827, 0.1326082944869995, 0.021636752411723137, 0.08406691998243332, 0.007224544882774353, 0.05144360288977623, 0.032352015376091, -0.13572850823402405, 0.07281791418790817, 0.03699915111064911, 0.10345571488142014, 0.1270545870065689, -0.012434638105332851, -0.2230634242296219, -0.0780889019370079, -0.085780568420887, 0.1687268614768982, 0.2194993942975998, -0.04753291234374046, 0.14607112109661102, 0.10357590764760971, -0.0911731943488121, -0.24016709625720978, 0.018124565482139587, -0.04310975596308708, -0.007914907298982143, 0.07439928501844406, -0.1710301786661148, -0.01284672413021326, 0.04141678288578987, -0.038855768740177155, 0.024028141051530838, -0.24724255502223969, -0.09429913014173508, 0.034183844923973083, 0.0492720752954483, -0.17552582919597626, -0.19863027334213257, -0.10872002691030502, -0.055221620947122574, -0.22898010909557343, 0.14958615601062775, 0.002483153250068426, -0.007373101077973843, -0.024787312373518944, 0.03900653123855591, 0.006495506037026644, -0.06323115527629852, 0.14695477485656738, -0.04019795358181, 0.02431669645011425, -0.08054918795824051, -0.0985560417175293, 0.13450273871421814, 0.029752980917692184, 0.08936358243227005, 0.011898031458258629, 0.02585805021226406, -0.13295027613639832, -0.021220402792096138, -0.08430600166320801, 0.040031932294368744, -0.0972963273525238, -0.08175528794527054, -0.08007092028856277, 0.11155985295772552, 0.07215272635221481, 0.003049566876143217, 0.19766809046268463, -0.07281399518251419, 0.08300479501485825, 0.11244324594736099, 0.163764089345932, 0.055729955434799194, 0.007065422832965851, 0.002729977248236537, -0.017051879316568375, -0.03912252560257912, -0.1321718543767929, 0.03866063803434372, 0.1629204899072647, 0.042306311428546906, 0.15000805258750916, -0.009245270863175392, -0.1102876216173172, 0.0187970120459795, 0.031550027430057526, -0.06067598983645439, -0.3157644271850586, 0.030024778097867966, 0.03809395432472229, -0.1524038016796112, -0.024711597710847855, 0.051779504865407944, 0.011722293682396412, -0.04431801661849022, 0.01403474248945713, 0.11251179128885269, 0.014575263485312462, 0.09875907748937607, 0.05072709918022156, 0.05653087794780731, -0.14064514636993408, 0.1031874269247055, 0.16371241211891174, -0.11766618490219116, 0.01643478497862816, 0.14605629444122314, -0.06081714853644371, -0.05040106549859047, 0.059168003499507904, 0.07846395671367645, 0.0385221391916275, -0.04658620059490204, -0.016784479841589928, -0.11104675382375717, 0.0439838208258152, 0.13160257041454315, -0.01722484827041626, 0.02299410291016102, 0.02677026018500328, -0.03289395570755005, -0.058221954852342606, 0.1378503292798996, 0.013978882692754269, -0.008080949075520039, -0.0817120149731636, -0.05262823775410652, -0.03308422863483429, 0.016343669965863228, -0.02671775408089161, 0.0016859578900039196, -0.1457894742488861, -0.011656256392598152, -0.15249605476856232, 0.037506528198719025, -0.15382283926010132, 0.007957732304930687, -0.023429621011018753, -0.09305381029844284, -0.04759598150849342, -0.020450126379728317, -0.06853514164686203, -0.03827373683452606, -0.030038438737392426, 0.12403260171413422, -0.1529851257801056, -0.04818883165717125, 0.0723743587732315, -0.015175219625234604, 0.12151395529508591, -0.004557123873382807, -0.029978172853589058, -0.003074356820434332, -0.11703309416770935, 0.0512823611497879, 0.014577826485037804, 0.05590859055519104, 0.08030366152524948, -0.1306973546743393, -0.04813959822058678, 0.027013743296265602, -0.04000864550471306, 0.0336698554456234, -0.014663058333098888, -0.11138232052326202, 0.015510636381804943, -0.06985010206699371, -0.08442158997058868, 0.012250999920070171, 0.05649047717452049, 0.11005682498216629, -0.005025713238865137, 0.13129165768623352, -0.02158670499920845, 0.08189262449741364, -0.13190890848636627, -0.011833075433969498, -0.04321148246526718, -0.028212446719408035, -0.06374174356460571, 0.029801255092024803, 0.08314871042966843, -0.004662908613681793, 0.2865184247493744, 0.003972587175667286, 0.02164223976433277, 0.07972332835197449, 0.027335036545991898, 0.00490940734744072, 0.04228787496685982, 0.07989361882209778, 0.007077353075146675, -0.05713232606649399, 0.04760115221142769, -0.016767026856541634, -0.07811020314693451, -0.079747274518013, 0.14985164999961853, 0.1609346866607666, 0.1549965739250183, -0.03795764222741127, 0.08162366598844528, -0.13932010531425476, -0.06424418836832047, 0.08993884921073914, 0.03381184861063957, 0.04591203108429909, -0.057976383715867996, 0.05842196196317673, 0.1023685485124588, -0.18978753685951233, 0.09758555144071579, -0.12543269991874695, -0.08140148222446442, -0.03580279275774956, -0.1294734925031662, -0.08038919419050217, 0.0013528370764106512, -0.003056660294532776, -0.17055743932724, 0.06862834841012955, 0.10563112050294876, -0.030204055830836296, -0.0548185370862484, 0.06902693957090378, -0.011044326238334179, -0.044397976249456406, 0.01164266187697649, 0.06199246272444725, 0.031183049082756042, -0.05598343163728714, 0.06577780097723007, -0.05356661602854729, 0.05333230644464493, 0.061992645263671875, 0.06413843482732773, -0.048927098512649536, 0.010840149596333504, -0.05667882040143013, -0.07652335613965988, 0.011033725924789906, 0.02593947760760784, -0.015960361808538437, 0.24619552493095398, 0.0200301893055439, 0.024630380794405937, 0.04546256363391876, 0.25338980555534363, -0.05113133415579796, -0.10379916429519653, -0.11579564213752747, 0.0721963569521904, -0.03033060021698475, -0.006037059240043163, 0.043240487575531006, -0.1419731080532074, 0.030269887298345566, 0.09633525460958481, 0.21843425929546356, -0.02687649615108967, -0.005814260803163052, -0.048587311059236526, 0.025637652724981308, 0.0050098770298063755, 0.0004155763890594244, 0.06365042924880981, 0.20924265682697296, -0.07484966516494751, -0.0076577323488891125, -0.05421615019440651, 0.001555899390950799, -0.1138371005654335, 0.0788600817322731, 0.05536980926990509, -0.03536968305706978, -0.05007968842983246, 0.17732366919517517, -0.14884890615940094, -0.2377675175666809, -0.009061165153980255, -0.19068369269371033, -0.15994912385940552, -0.049897149205207825, -0.041940875351428986, 0.01995972916483879, -0.006986419204622507, 0.0498058907687664, 0.019685573875904083, 0.02879931405186653, 0.06210961565375328, -0.06498372554779053, 0.03706851974129677, 0.11757081747055054, 0.03230798617005348, 0.22675788402557373, -0.03370465710759163, 0.058371204882860184, 0.1397508978843689, -0.05839391425251961, -0.14533567428588867, 0.039407212287187576, 0.11739397794008255, 0.030927829444408417, 0.02566070854663849, 0.1255621761083603, 0.007524328771978617, 0.11381344497203827, 0.12176413834095001, -0.05949368327856064, 0.00463128462433815, 0.06413526833057404, -0.021434897556900978, -0.10060248523950577, 0.09186946600675583, -0.12485527992248535, 0.11367525905370712, 0.06130408123135567, -0.07244353741407394, -0.00827799178659916, -0.036470457911491394, 0.07369536906480789, -0.017704887315630913, 0.18516671657562256, -0.033195868134498596, -0.17317290604114532, 0.0016376161947846413, -0.04105183482170105, 0.055571548640728, -0.19733290374279022, 0.016208503395318985, -0.007377229165285826, 0.025309748947620392, -0.06322439759969711, 0.11568613350391388, 0.07588808238506317, -0.03174273297190666, -0.057989589869976044, -0.17915114760398865, -0.01059465017169714, 0.12578383088111877, -0.0814875066280365, 0.0017386769177392125 ]
8ed740fa66c9d97dd3ffe0b7c4197f7c71d1983c
<strong>Lexicon of words for investigating the political personalization phenomenon in Italian language</strong></br> List of 3,303 personalizing words in Italian language, annotated with the corresponding sentiment classification as referred to political offices.</br> Words are group by category: Moral and behavioral, Physical, Social and economic. <strong>Citation info and BibTeX entry</strong></br> <a href="" target="_blank"></a> ```bibtex @article{Bru2023, title={Combining NLP techniques and statistical modeling to analyze gender gaps in the mediated personalization of politics}, author={Brugnoli, Emanuele and Simone, Rosaria and Delmastro, Marco}, journal={}, year={2023}, volume={} } ```
brema76/political_personalization_it
[ "license:mit", "region:us" ]
2023-02-07T10:46:42+00:00
{"license": "mit"}
2023-02-07T11:00:36+00:00
[]
[]
TAGS #license-mit #region-us
<strong>Lexicon of words for investigating the political personalization phenomenon in Italian language</strong></br> List of 3,303 personalizing words in Italian language, annotated with the corresponding sentiment classification as referred to political offices.</br> Words are group by category: Moral and behavioral, Physical, Social and economic. <strong>Citation info and BibTeX entry</strong></br> <a href="" target="_blank"></a>
[]
[ "TAGS\n#license-mit #region-us \n" ]
[ 11 ]
[ "passage: TAGS\n#license-mit #region-us \n" ]
[ 0.026221778243780136, -0.033018264919519424, -0.008281232789158821, -0.05295303836464882, 0.052470896393060684, 0.06768012046813965, 0.1598525494337082, 0.04655371606349945, 0.23683255910873413, -0.05407243221998215, 0.11752297729253769, 0.08923697471618652, 0.004284696187824011, -0.0009730930323712528, 0.014216204173862934, -0.17134642601013184, 0.04864625632762909, -0.02878100797533989, 0.08764812350273132, 0.032233644276857376, -0.006205103360116482, -0.03845774009823799, -0.0022142508532851934, -0.03178790956735611, -0.057939812541007996, 0.03869890421628952, 0.045729056000709534, -0.02754949778318405, 0.14189864695072174, -0.021783310920000076, 0.13335508108139038, 0.046146418899297714, -0.011738095432519913, -0.2486042082309723, 0.008575023151934147, -0.07252951711416245, -0.11333522200584412, 0.016201216727495193, 0.035761721432209015, -0.010069100186228752, 0.032174937427043915, 0.11049123108386993, -0.011680051684379578, 0.06288356333971024, -0.2015703022480011, -0.20486389100551605, -0.07508610188961029, -0.07555478066205978, 0.0589042492210865, 0.030872387811541557, 0.05628744140267372, 0.1426718831062317, -0.18022038042545319, -0.0018841808196157217, 0.04129622131586075, -0.3510737717151642, 0.09011197835206985, 0.19666501879692078, 0.06407395005226135, 0.07872317731380463, -0.04774639382958412, 0.06726468354463577, 0.07745297998189926, -0.02402484230697155, -0.10679105669260025, -0.06142130121588707, 0.040939174592494965, 0.15604156255722046, -0.03852643445134163, -0.10356393456459045, 0.2591084837913513, -0.023262828588485718, -0.04234466329216957, 0.08201269060373306, -0.02980397455394268, -0.040379155427217484, 0.04404358193278313, 0.044016025960445404, 0.036236923187971115, 0.182089164853096, 0.1260262131690979, -0.03375067934393883, -0.16269677877426147, -0.030629513785243034, -0.2528207004070282, 0.07418664544820786, -0.003647059667855501, 0.10666298121213913, -0.20037521421909332, 0.03286786004900932, -0.15483668446540833, -0.009493621066212654, -0.02952384203672409, -0.059835705906152725, 0.05229754373431206, -0.0237403754144907, -0.04600388556718826, 0.07238677144050598, 0.08390641957521439, 0.2046167105436325, 0.023024363443255424, 0.016697337850928307, -0.10405295342206955, 0.15052515268325806, 0.019140364602208138, 0.024860305711627007, 0.179348424077034, 0.07677878439426422, -0.04891882464289665, -0.2251969277858734, 0.027894439175724983, -0.03671982139348984, -0.1441805064678192, 0.015881337225437164, -0.1542915552854538, 0.1736440360546112, -0.04078168794512749, -0.06919530034065247, -0.08578147739171982, 0.09790384024381638, 0.07768166810274124, -0.021921472623944283, -0.023105677217245102, -0.01381723117083311, 0.03522264584898949, -0.048196230083703995, -0.11687057465314865, 0.018241960555315018, 0.11869648098945618, 0.12573401629924774, -0.1483907401561737, -0.008189842104911804, -0.017200417816638947, 0.019065292552113533, 0.09696817398071289, -0.112403005361557, 0.028845038264989853, -0.09672309458255768, -0.13033071160316467, 0.036653537303209305, 0.017736904323101044, -0.019008556380867958, 0.1340927630662918, 0.061849117279052734, 0.056560322642326355, -0.011025321669876575, -0.07250872999429703, -0.14035539329051971, -0.08679798245429993, 0.1058693379163742, -0.046787332743406296, 0.010320915840566158, -0.24556252360343933, -0.014234079979360104, -0.14995723962783813, 0.059662189334630966, -0.0037668521981686354, -0.08819212019443512, -0.07740068435668945, 0.21408265829086304, 0.0018596589798107743, 0.04301392287015915, -0.1078512966632843, 0.054903753101825714, -0.06764797121286392, 0.10065380483865738, -0.12895582616329193, -0.06441528350114822, 0.1613781899213791, -0.13135331869125366, -0.14002031087875366, 0.0033312994055449963, -0.009472889825701714, 0.12053907662630081, 0.0802001804113388, 0.44566696882247925, -0.058881040662527084, -0.16201181709766388, 0.1270403116941452, 0.17969723045825958, -0.13685379922389984, -0.25928929448127747, 0.12393020838499069, -0.1636963188648224, -0.16647985577583313, 0.0040023741312325, -0.006962866988033056, 0.08049977570772171, -0.03446655720472336, -0.056274134665727615, 0.042339932173490524, 0.024350708350539207, 0.029094615951180458, 0.01740112341940403, 0.07037191838026047, -0.1023021712899208, 0.08444856107234955, 0.058610700070858, -0.014111426658928394, 0.15077349543571472, 0.011494536884129047, -0.05393160134553909, 0.014761670492589474, 0.044013332575559616, -0.015627963468432426, -0.05899091437458992, -0.09661509096622467, 0.019826244562864304, -0.031149597838521004, 0.08229395002126694, 0.1699674129486084, 0.023824702948331833, -0.02797185815870762, 0.028922779485583305, 0.028606392443180084, 0.1009954959154129, 0.06960704177618027, 0.03099375218153, -0.04839283227920532, 0.04952205345034599, -0.0417071171104908, -0.11430390179157257, -0.004862460307776928, -0.011735930107533932, 0.11975742131471634, -0.08906009048223495, -0.01223952230066061, 0.05951591953635216, -0.04513183981180191, 0.0019881438929587603, 0.0428374819457531, 0.0035966038703918457, 0.1388600617647171, 0.004440935328602791, -0.04352007433772087, 0.17440910637378693, -0.05288633331656456, 0.15533447265625, 0.1715822070837021, -0.07049662619829178, 0.015605369582772255, -0.1273636519908905, 0.003230511210858822, -0.014480113983154297, 0.05292887985706329, -0.05400136485695839, -0.05201306566596031, -0.01274962443858385, 0.014292534440755844, -0.03134604170918465, 0.01711403578519821, -0.06057267636060715, -0.08167021721601486, -0.10849859565496445, 0.018649224191904068, 0.20683221518993378, -0.22544461488723755, 0.1609548032283783, 0.40251004695892334, 0.15190774202346802, 0.21155193448066711, -0.12478897720575333, -0.002471078187227249, -0.06630261242389679, 0.026115071028470993, -0.024814706295728683, 0.13782677054405212, -0.13174867630004883, -0.01413064356893301, 0.03880728408694267, 0.0454997681081295, 0.0661163181066513, -0.17195898294448853, -0.15260353684425354, -0.0034879595041275024, -0.020591814070940018, -0.1749730259180069, 0.04874620959162712, -0.07595308125019073, 0.02181261032819748, 0.018216799944639206, -0.10832522064447403, 0.16837291419506073, -0.033566512167453766, -0.06695768237113953, 0.052613962441682816, -0.20581911504268646, -0.07900715619325638, -0.17772749066352844, -0.18375012278556824, 0.06050071492791176, 0.05760138854384422, 0.07903145253658295, -0.05951719731092453, -0.01922747679054737, 0.061719246208667755, -0.009363299235701561, -0.13802112638950348, -0.04235544428229332, -0.06993678212165833, 0.08744155615568161, -0.09474305808544159, -0.07518411427736282, -0.07833878695964813, -0.046996138989925385, -0.020961694419384003, 0.08125963062047958, -0.1039251759648323, 0.08903530240058899, 0.1493726521730423, 0.03651920333504677, 0.05440247058868408, -0.08271230012178421, 0.12693379819393158, -0.037743739783763885, -0.09459595382213593, 0.07307634502649307, 0.004350725095719099, 0.04920351505279541, 0.24039287865161896, 0.08962162584066391, -0.10578162968158722, -0.01780811697244644, -0.0968487411737442, -0.16405464708805084, -0.2553846538066864, -0.06823288649320602, -0.08744750916957855, 0.14417944848537445, 0.014636521227657795, 0.10712126642465591, 0.14313316345214844, 0.01343101728707552, 0.10255914181470871, -0.08983208239078522, -0.018939344212412834, 0.031209396198391914, 0.2135104089975357, -0.05208220332860947, 0.00838248711079359, -0.13684824109077454, -0.0256142970174551, 0.14601100981235504, 0.13798639178276062, 0.14503207802772522, 0.31421369314193726, 0.15292863547801971, 0.13410434126853943, 0.13474710285663605, 0.12333164364099503, 0.07403261214494705, 0.03444362059235573, -0.015304201282560825, -0.06035377085208893, -0.003846159903332591, 0.02816268615424633, 0.05421729013323784, 0.06724072247743607, -0.22906480729579926, 0.041139665991067886, -0.2661744952201843, 0.03544611483812332, -0.0854712724685669, 0.1161833181977272, -0.028890252113342285, 0.11051984131336212, 0.11386284977197647, 0.05553818494081497, -0.023278791457414627, 0.16036942601203918, 0.032686375081539154, -0.07703183591365814, 0.020292721688747406, 0.024695809930562973, 0.06633034348487854, 0.08606193959712982, 0.09550496190786362, -0.020778406411409378, -0.1831783503293991, 0.025963841006159782, 0.12212833017110825, -0.20747940242290497, 0.289523184299469, 0.013651901856064796, -0.0743619054555893, -0.01690039224922657, -0.06958060711622238, 0.008433517068624496, 0.12829731404781342, 0.10406835377216339, 0.05508929491043091, -0.2613787055015564, -0.13299626111984253, 0.046764206141233444, -0.00873907096683979, 0.11356569826602936, -0.0052223424427211285, -0.14201195538043976, -0.06640999764204025, 0.05814211815595627, -0.006591420155018568, 0.13023322820663452, -0.018290361389517784, -0.08173255622386932, -0.010230090469121933, 0.055564697831869125, -0.001312803477048874, -0.04580084979534149, 0.07523149996995926, 0.009008137509226799, 0.02259289287030697, -0.08178020268678665, 0.03887253627181053, -0.08071476966142654, -0.25375792384147644, 0.019298138096928596, -0.04987313598394394, 0.004092312417924404, -0.04684043675661087, -0.15448936820030212, -0.1129264086484909, -0.15445278584957123, 0.13100723922252655, -0.03675999864935875, 0.091565802693367, -0.0817658007144928, 0.13736046850681305, -0.08521489799022675, 0.05375019088387489, 0.00614814180880785, 0.03918716683983803, -0.017955513671040535, -0.1031481996178627, 0.09334362298250198, -0.1874227225780487, 0.023863423615694046, 0.010427716188132763, -0.056847453117370605, -0.01354232057929039, 0.03918023407459259, -0.08763083070516586, 0.21879427134990692, 0.3331502079963684, -0.011948764324188232, 0.22546616196632385, 0.35863226652145386, -0.13763751089572906, -0.23258967697620392, -0.1205512136220932, -0.3263251483440399, -0.09005610644817352, 0.17321562767028809, -0.18057219684123993, 0.04850830137729645, 0.16150830686092377, -0.10868281871080399, 0.22499866783618927, -0.22723928093910217, -0.04793389141559601, 0.1823979914188385, -0.038322996348142624, 0.4527989625930786, -0.1144307404756546, -0.1784561723470688, -0.03637253865599632, -0.16285361349582672, 0.12426037341356277, -0.026553882285952568, 0.06700495630502701, 0.02416347898542881, -0.011372359469532967, -0.009014161303639412, -0.04529716446995735, 0.2216065675020218, 0.0522729866206646, 0.10468899458646774, -0.09159468114376068, -0.17199653387069702, 0.1907423883676529, -0.0004908236442133784, -0.003372655250132084, -0.05411549657583237, -0.04850282520055771, -0.06871756166219711, 0.033092137426137924, -0.0334564633667469, 0.06195882335305214, 0.03364093229174614, -0.11903523653745651, -0.10248823463916779, 0.034111104905605316, -0.13155671954154968, -0.054850947111845016, 0.26421889662742615, -0.02080743946135044, 0.09609334170818329, 0.04959092289209366, -0.05474294349551201, -0.13538943231105804, 0.005736751481890678, -0.07534020394086838, -0.05711410939693451, 0.06573604047298431, -0.11453206837177277, -0.024341827258467674, 0.1293732225894928, -0.029497180134058, 0.09674722701311111, 0.08061115443706512, -0.07585363835096359, 0.02032829262316227, 0.15617427229881287, -0.07247176766395569, -0.10849180817604065, 0.04999847710132599, 0.04640531167387962, 0.17256882786750793, 0.004101871978491545, 0.02018604800105095, 0.08726977556943893, 0.045959215611219406, -0.007486662827432156, 0.007311292923986912, -0.11321697384119034, -0.04241771996021271, 0.0387241393327713, -0.005273692775517702, -0.10946331918239594, 0.16008898615837097, 0.056837860494852066, 0.004653505515307188, -0.06027700752019882, 0.09720424562692642, -0.06709636747837067, -0.07046061009168625, -0.1753035932779312, 0.018511172384023666, -0.12734080851078033, -0.09874535351991653, 0.06846235692501068, -0.09371624886989594, -0.04084605351090431, 0.08152704685926437, 0.046927981078624725, 0.14401860535144806, -0.006597559433430433, -0.023080874234437943, 0.149825319647789, -0.0884878933429718, -0.2241756170988083, 0.01969664730131626, -0.04083063453435898, -0.07065816223621368, -0.0007070365245454013, 0.06069544702768326, -0.0663156732916832, -0.11958606541156769, -0.20477768778800964, 0.10412076860666275, -0.12043121457099915, -0.03954985365271568, -0.1041841059923172, -0.053260523825883865, 0.07891252636909485, -0.02613759972155094, -0.04122013971209526, -0.047595683485269547, -0.16630595922470093, 0.054254453629255295, 0.07140932232141495, 0.11125344783067703, -0.0759999230504036, -0.018354382365942, 0.1398727148771286, 0.048581548035144806, 0.08479110151529312, 0.07578440010547638, 0.026255371049046516, 0.16728560626506805, -0.1708206981420517, -0.0542997270822525, 0.1068294569849968, -0.026716172695159912, 0.01994573324918747, 0.10631280392408371, -0.04839588701725006, 0.07042654603719711, -0.05095988139510155, 0.05859163776040077, -0.15704534947872162, -0.13073866069316864, -0.04184387996792793, 0.023728877305984497, -0.2260182797908783, 0.015071595087647438, -0.1769561767578125, 0.19692228734493256, -0.024228032678365707, 0.11490963399410248, 0.08052190393209457, 0.02052290178835392, 0.03539382666349411, -0.006019921973347664, 0.00946811307221651, -0.10524865239858627, -0.05784677714109421, -0.07560300827026367, -0.1168874129652977, -0.009665017947554588, 0.36614301800727844, 0.02430291846394539, -0.19682736694812775, 0.051222387701272964, 0.18285293877124786, 0.023639049381017685, -0.0073763905093073845, 0.26180747151374817, 0.08150359988212585, -0.023175053298473358, -0.1782374382019043, 0.0396091528236866, -0.08699734508991241, -0.15269799530506134, 0.11385007947683334, 0.09347525984048843, 0.05813581123948097, 0.022930078208446503, 0.10404518246650696, -0.035940010100603104, -0.05509711429476738, -0.13301853835582733, 0.13368983566761017, -0.001790675800293684, 0.0193882267922163, 0.0897885113954544, 0.19249756634235382, -0.045275162905454636, 0.05437124893069267, -0.07336640357971191, -0.001598604372702539, -0.15740543603897095, -0.13358698785305023, 0.06194563955068588, -0.08269550651311874, 0.06342913210391998, 0.050261519849300385, 0.04341990500688553, 0.31786394119262695, 0.039095040410757065, -0.046439893543720245, 0.003166865324601531, -0.14845187962055206, -0.08075450360774994, -0.06024569645524025, -0.03110554814338684, 0.028620192781090736, -0.13928957283496857, -0.09898591786623001, -0.06917677819728851, -0.130235955119133, -0.06539803743362427, 0.025270747020840645, 0.014251931570470333, -0.053083837032318115, -0.17625881731510162, -0.04808593541383743, -0.06644169986248016, 0.10105955600738525, -0.08462738990783691, 0.1516820639371872, 0.0022449472453445196, 0.030281953513622284, 0.07627002149820328, 0.09585131704807281, 0.018900424242019653, -0.06975197046995163, 0.05599058046936989, 0.12436293810606003, 0.01323844213038683, 0.1259988248348236, -0.06034265458583832, -0.019420607015490532, -0.014145253226161003, 0.14038437604904175, 0.304447740316391, -0.01856905221939087, -0.013814439997076988, -0.022110093384981155, 0.021388787776231766, 0.10893569141626358, 0.19800719618797302, -0.03437356278300285, 0.2551359534263611, -0.058974795043468475, 0.0756678432226181, -0.013180435635149479, -0.005362013820558786, -0.053146667778491974, 0.06074550002813339, 0.06268858164548874, -0.06877048313617706, -0.10191375762224197, 0.15178529918193817, -0.14985080063343048, 0.13306055963039398, 0.14678068459033966, -0.06057753041386604, 0.03797250986099243, 0.0007459368789568543, 0.19896264374256134, -0.03570213168859482, 0.0984780564904213, -0.10653308779001236, -0.10261140763759613, -0.14764924347400665, 0.037690844386816025, -0.36797797679901123, -0.1756322830915451, 0.11731542646884918, 0.14115898311138153, 0.1759258657693863, -0.012341637164354324, 0.056479312479496, 0.0033020609989762306, 0.08296097069978714, -0.04232487455010414, 0.1519634872674942, 0.0612073615193367, -0.017103128135204315, -0.15296664834022522, -0.20328094065189362, -0.0012039330322295427, -0.058561209589242935, 0.055583830922842026, -0.02269243635237217, 0.025347469374537468, 0.07746459543704987, -0.06768939644098282, -0.029180381447076797, -0.02352982573211193, -0.13262848556041718, 0.052229251712560654, -0.04354005306959152, 0.0320255309343338, -0.03958037868142128, -0.022394726052880287, -0.039987675845623016, 0.10721533745527267, -0.22402705252170563, -0.08517231047153473, 0.1422796994447708, -0.03421911224722862, 0.1542559564113617, -0.02848726324737072, -0.12159585952758789, -0.024955326691269875, -0.06977712363004684, 0.10887379199266434, -0.1419300138950348, 0.038592495024204254, 0.13747453689575195, 0.008710617199540138, 0.031119761988520622, -0.2533661723136902, 0.050644006580114365, -0.03556957095861435, -0.016733208671212196, -0.057031940668821335 ]
854788e4a332543769f895eb7c8b3afb8622ab82
# Dataset Card for "dreambooth-lego" [More Information needed](https://github.com/huggingface/datasets/blob/main/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
Zenodia/dreambooth-lego
[ "region:us" ]
2023-02-07T12:17:23+00:00
{"dataset_info": {"features": [{"name": "image", "dtype": "image"}], "splits": [{"name": "train", "num_bytes": 14731012.0, "num_examples": 12}], "download_size": 14673354, "dataset_size": 14731012.0}}
2023-02-07T12:17:30+00:00
[]
[]
TAGS #region-us
# Dataset Card for "dreambooth-lego" More Information needed
[ "# Dataset Card for \"dreambooth-lego\"\n\nMore Information needed" ]
[ "TAGS\n#region-us \n", "# Dataset Card for \"dreambooth-lego\"\n\nMore Information needed" ]
[ 6, 16 ]
[ "passage: TAGS\n#region-us \n# Dataset Card for \"dreambooth-lego\"\n\nMore Information needed" ]
[ -0.02540014311671257, 0.26671361923217773, -0.005821950733661652, 0.0628751590847969, 0.08259267359972, 0.040317073464393616, 0.15681344270706177, 0.03707394376397133, 0.04361562430858612, -0.020465632900595665, 0.1091834008693695, 0.03193783015012741, 0.04612230509519577, 0.19672203063964844, -0.0018315269844606519, -0.16139629483222961, 0.07304874062538147, 0.04454848915338516, -0.21740072965621948, 0.051699526607990265, 0.001470874180085957, -0.05987918749451637, 0.04613577947020531, -0.03673110157251358, -0.10837246477603912, 0.03229245916008949, -0.07144686579704285, -0.06570751219987869, 0.07287416607141495, -0.1115378811955452, 0.1739901751279831, -0.030563166365027428, -0.023724587634205818, -0.12250567227602005, 0.029076676815748215, 0.022988885641098022, -0.03581831231713295, 0.03804369643330574, -0.04496610909700394, -0.03927556052803993, -0.04719654098153114, 0.1145051047205925, 0.029704762622714043, 0.062345921993255615, -0.10075679421424866, -0.2580640912055969, -0.037838079035282135, 0.03537268564105034, -0.010123398154973984, -0.07027896493673325, 0.0804477259516716, 0.14124032855033875, -0.028388377279043198, 0.061687275767326355, 0.14684276282787323, -0.12713631987571716, -0.025640415027737617, 0.23966798186302185, 0.060880862176418304, 0.06942044198513031, 0.007575542666018009, 0.10981066524982452, 0.08211027830839157, 0.021160069853067398, 0.023723142221570015, -0.09180807322263718, -0.09490415453910828, 0.06580479443073273, -0.04355213791131973, -0.001563963945955038, 0.28459876775741577, -0.036344099789857864, 0.01806572824716568, 0.08617106080055237, -0.00868353433907032, 0.0479094423353672, -0.04687708988785744, 0.02720469981431961, 0.03908812254667282, -0.007010062225162983, -0.0227222740650177, -0.10108344256877899, -0.07860536128282547, -0.11735149472951889, 0.01364239864051342, -0.02984287589788437, -0.06560016423463821, 0.1677076816558838, -0.3232862055301666, -0.04124925285577774, -0.0035953728947788477, -0.06175782158970833, -0.014980072155594826, -0.1290881484746933, 0.013387740589678288, -0.029927300289273262, -0.01375945471227169, 0.0691487118601799, 0.12244252860546112, 0.05882203206419945, 0.3205787241458893, 0.09521475434303284, -0.043702367693185806, 0.11030688881874084, 0.1747729778289795, -0.060997072607278824, -0.011925377883017063, -0.016202088445425034, -0.02443261258304119, -0.09092659503221512, 0.002089218469336629, -0.14269649982452393, -0.15993070602416992, 0.08165119588375092, -0.15052443742752075, 0.08533280342817307, 0.02831437438726425, -0.1251467764377594, 0.032194044440984726, -0.03540034964680672, 0.14766499400138855, -0.028738392516970634, 0.034665778279304504, -0.009283127263188362, -0.06940187513828278, 0.024914182722568512, -0.15192125737667084, 0.012351787649095058, 0.09378837049007416, 0.00036376944626681507, -0.10124246031045914, 0.013003303669393063, -0.050729576498270035, 0.01242853607982397, 0.09742549806833267, -0.1711980551481247, 0.05740349739789963, -0.08545780181884766, -0.22317203879356384, 0.05883488431572914, 0.07091891765594482, -0.05278649553656578, 0.18899273872375488, -0.007194324396550655, -0.010515852831304073, -0.05285576358437538, -0.03721478581428528, 0.13287432491779327, -0.007996256463229656, 0.06683655083179474, -0.0178742166608572, 0.10745999217033386, -0.15822634100914001, -0.0041636875830590725, -0.1231231540441513, 0.053243204951286316, -0.06886439770460129, 0.00930603314191103, -0.13205553591251373, 0.10147254168987274, -0.02047092840075493, 0.014803925529122353, 0.042175233364105225, 0.005834548734128475, -0.03260387107729912, 0.009853229857981205, -0.2847299873828888, -0.08538572490215302, 0.162936270236969, -0.13657045364379883, -0.2840547561645508, -0.04018070176243782, -0.09271964430809021, 0.0945306345820427, 0.02034606598317623, 0.201608344912529, 0.04546954855322838, -0.03555493801832199, -0.03363541513681412, 0.06344546377658844, -0.14860889315605164, -0.2619042694568634, 0.03343217819929123, 0.08532516658306122, -0.10968761891126633, 0.006596662569791079, 0.06485749781131744, 0.05122252553701401, -0.039184968918561935, -0.05739084631204605, 0.0313476026058197, -0.17518457770347595, 0.1263962835073471, 0.0025329343043267727, 0.06867606192827225, -0.03317813575267792, 0.14030495285987854, 0.0602719709277153, 0.012709368020296097, 0.034254029393196106, -0.03573567420244217, 0.03243468701839447, 0.09342928975820541, -0.039826445281505585, 0.00481707789003849, -0.14103010296821594, -0.09883923083543777, 0.031032156199216843, -0.047333452850580215, 0.06359350681304932, -0.011247899383306503, 0.139319509267807, 0.03626743704080582, 0.021286655217409134, 0.08304169774055481, 0.019167518243193626, 0.08033992350101471, 0.09499644488096237, 0.030662568286061287, -0.0727500393986702, -0.11982624232769012, -0.13597707450389862, 0.05245610326528549, 0.0066193947568535805, -0.024550478905439377, 0.15038026869297028, 0.02580542489886284, -0.0554647222161293, 0.0005818307399749756, -0.019361115992069244, 0.020770447328686714, -0.09225983917713165, -0.003098954912275076, 0.012059473432600498, -0.050193849951028824, -0.040664270520210266, -0.03477140888571739, 0.1719369888305664, 0.11063465476036072, -0.07181286066770554, 0.05176936089992523, -0.0670572966337204, 0.05437313765287399, 0.005755644757300615, -0.028150498867034912, 0.04009220749139786, 0.012361601926386356, 0.03977075591683388, 0.13161802291870117, -0.05670909583568573, 0.009130486287176609, 0.04401528835296631, -0.09254531562328339, -0.12280619889497757, -0.018771907314658165, 0.06937535107135773, -0.16122601926326752, 0.17887748777866364, 0.19069840013980865, 0.09020324796438217, 0.18808911740779877, -0.054253675043582916, -0.01732092909514904, -0.055024366825819016, -0.11607129871845245, -0.05621528625488281, 0.17373114824295044, -0.1436253935098648, -0.05327297002077103, 0.08383802324533463, -0.03757725656032562, 0.053597815334796906, -0.10252891480922699, -0.08252565562725067, 0.017810586839914322, 0.05468571186065674, -0.09754853695631027, 0.00458399998024106, -0.05204656347632408, 0.036115862429142, -0.021150190383195877, -0.11204688251018524, 0.12565571069717407, -0.018052352592349052, 0.022985786199569702, 0.06477101892232895, -0.14473263919353485, -0.30583932995796204, -0.07396384328603745, -0.29133516550064087, 0.0158047117292881, 0.03165961056947708, -0.056852493435144424, -0.1669769436120987, 0.021891381591558456, 0.03598031774163246, -0.053954124450683594, -0.19036833941936493, -0.04482705891132355, 0.01995920017361641, 0.0722178965806961, -0.11829523742198944, -0.0782850980758667, 0.0687071830034256, -0.04761425405740738, 0.17620731890201569, 0.13325728476047516, -0.08369223773479462, 0.05818459764122963, 0.19041667878627777, -0.011580104939639568, 0.13321931660175323, -0.03972893953323364, 0.11865747720003128, -0.030123788863420486, 0.0003494906995911151, 0.16746243834495544, -0.002121292520314455, 0.026865102350711823, 0.05420368164777756, 0.1068568229675293, -0.06011013314127922, -0.01880447007715702, -0.09853680431842804, -0.22496798634529114, -0.17991629242897034, -0.05237292870879173, -0.03884946554899216, 0.12856866419315338, 0.0962650403380394, 0.053588565438985825, 0.1070413738489151, 0.11326375603675842, 0.200567826628685, 0.014617898501455784, -0.0947541818022728, -0.009573888033628464, -0.15228965878486633, -0.0586964413523674, -0.004985432140529156, -0.10768476128578186, -0.10610910505056381, 0.07791130989789963, 0.2572290301322937, 0.16434162855148315, 0.14675511419773102, 0.07681861519813538, -0.011140743270516396, -0.019847800955176353, 0.09661927819252014, 0.13390900194644928, 0.09818167239427567, -0.03997479006648064, 0.018048610538244247, -0.03337715566158295, -0.011796284466981888, 0.0712425485253334, 0.07178118824958801, -0.13478340208530426, 0.048592984676361084, -0.10120567679405212, 0.008232471533119678, -0.0876428633928299, 0.07497487962245941, -0.1368882805109024, 0.12882423400878906, 0.08564773201942444, 0.20617197453975677, -0.15882062911987305, 0.08090774714946747, 0.11733730137348175, -0.011007765308022499, 0.0638415515422821, -0.03669152036309242, 0.05456957593560219, 0.047930680215358734, -0.042165979743003845, -0.02209526300430298, -0.044563814997673035, -0.007564790081232786, 0.05506221950054169, -0.11226800829172134, 0.16841815412044525, 0.010328804142773151, -0.053174689412117004, -0.12334765493869781, -0.0407564640045166, 0.039187055081129074, -0.05837349593639374, 0.13947859406471252, 0.026141736656427383, -0.07642333954572678, -0.21996106207370758, -0.055556520819664, -0.025808585807681084, 0.12095431983470917, 0.02592449076473713, -0.1063854843378067, 0.07677251845598221, -0.002117679687216878, -0.038726236671209335, -0.12834514677524567, 0.025623103603720665, -0.06787452101707458, -0.022461188957095146, 0.18283292651176453, -0.2014288306236267, 0.000011931317203561775, -0.013733102940022945, -0.058833323419094086, 0.08134117722511292, 0.14404357969760895, -0.03247206658124924, -0.04580201208591461, -0.058487195521593094, 0.16586953401565552, 0.026775814592838287, 0.0424603596329689, -0.04300406202673912, 0.09809336066246033, -0.1322244107723236, -0.21320679783821106, 0.06639058142900467, -0.05707571282982826, 0.1317102611064911, -0.1767340749502182, 0.10590669512748718, -0.013313192874193192, 0.060851745307445526, -0.0508863665163517, 0.01947210542857647, -0.06281619518995285, -0.059418145567178726, 0.13556264340877533, -0.16328312456607819, 0.046343207359313965, 0.19742368161678314, 0.15856419503688812, 0.1745428740978241, 0.02159137837588787, 0.05697641149163246, 0.14370642602443695, 0.14997504651546478, -0.09149140864610672, 0.1328369677066803, 0.10242196917533875, 0.0024349449668079615, -0.20260795950889587, -0.043745007365942, -0.15793800354003906, -0.06358932703733444, -0.017077812924981117, -0.22554434835910797, 0.11505860835313797, 0.03771550953388214, -0.08614110201597214, 0.3104642629623413, -0.11886236071586609, 0.012680851854383945, 0.21238575875759125, 0.10060708224773407, 0.2644800543785095, -0.1376890391111374, -0.03182901442050934, -0.05986880883574486, -0.04431425780057907, 0.19631272554397583, -0.20394757390022278, -0.002108667977154255, -0.006956334225833416, 0.08219942450523376, -0.008780979551374912, -0.06702029705047607, 0.1661936342716217, 0.06434439867734909, 0.0776723250746727, -0.011415923945605755, -0.10438085347414017, 0.1809757798910141, -0.08880627900362015, -0.011395876295864582, 0.026093440130352974, 0.013635807670652866, 0.06487875431776047, 0.01782168820500374, -0.015517940744757652, 0.0018750532763078809, 0.04853878542780876, -0.13601525127887726, -0.12498391419649124, 0.008079387247562408, -0.1929197609424591, 0.02139882929623127, 0.15646353363990784, 0.04932759702205658, 0.02848655916750431, 0.20408675074577332, -0.06076464429497719, -0.15081995725631714, -0.07532335072755814, -0.07485183328390121, -0.0977587029337883, 0.07060404121875763, -0.15656283497810364, -0.027318738400936127, 0.10844668000936508, 0.030168022960424423, 0.07865112274885178, 0.0812269002199173, -0.06684783101081848, 0.0377417616546154, 0.08651979267597198, 0.009055190719664097, -0.05416077747941017, 0.026302136480808258, 0.08420825004577637, 0.011037626303732395, 0.06676764786243439, 0.009884423576295376, 0.009937344118952751, 0.0021068963687866926, -0.04485352337360382, -0.009074892848730087, -0.03454182296991348, -0.034291673451662064, 0.1506560891866684, 0.06712288409471512, -0.1938222050666809, 0.16728438436985016, 0.0011235247366130352, 0.08893673121929169, 0.041981689631938934, -0.0015526001807302237, 0.0016492719296365976, -0.06702602654695511, -0.05260755866765976, 0.23751193284988403, 0.017360877245664597, -0.11156744509935379, 0.0019919127225875854, -0.11638356745243073, 0.0010103638051077724, 0.1527182161808014, 0.04982221871614456, 0.014652270823717117, -0.08520788699388504, -0.045249368995428085, -0.03524553403258324, -0.017698874697089195, -0.127802312374115, 0.0469810776412487, -0.16724206507205963, -0.08875539898872375, 0.025652693584561348, 0.17157022655010223, -0.1075887680053711, -0.12369807064533234, -0.042773544788360596, 0.12862996757030487, -0.1235969141125679, 0.05665702000260353, -0.076961949467659, -0.022924084216356277, 0.01483986247330904, 0.03894328325986862, -0.03142571076750755, -0.053283605724573135, -0.11592435836791992, 0.10716120153665543, 0.09941693395376205, -0.05729608237743378, -0.10054445266723633, -0.043132636696100235, 0.09803572297096252, -0.037779103964567184, 0.04158512130379677, 0.07000600546598434, -0.045060478150844574, 0.1403285562992096, -0.16848237812519073, -0.09749320149421692, 0.13545116782188416, 0.0812254473567009, 0.07854542136192322, 0.10952896624803543, -0.035160042345523834, -0.020081359893083572, -0.04531778395175934, 0.06150783598423004, -0.14659328758716583, -0.04755911976099014, -0.0669211894273758, -0.0719713494181633, -0.09790310263633728, 0.043760932981967926, -0.06355718523263931, 0.20026738941669464, -0.0035059538204222918, -0.06332298368215561, 0.10193443298339844, 0.1163192167878151, -0.06501584500074387, -0.026175588369369507, -0.0178950447589159, -0.1372958868741989, 0.02549903281033039, 0.043066781014204025, -0.016954999417066574, -0.08147072046995163, 0.39737099409103394, -0.05218527093529701, -0.11621112376451492, -0.0928855836391449, 0.014862913638353348, 0.036100029945373535, 0.06713087111711502, 0.28973740339279175, 0.09000853449106216, -0.07714034616947174, -0.024045486003160477, 0.08763992786407471, 0.07573539763689041, 0.2263072282075882, 0.11767185479402542, -0.08340223878622055, 0.03631141409277916, 0.016081303358078003, 0.09500472247600555, 0.042063601315021515, 0.08743546903133392, -0.012761015444993973, 0.12539760768413544, 0.04434182122349739, 0.06860648095607758, -0.07250536978244781, 0.04891062527894974, 0.042965807020664215, -0.0062807900831103325, -0.005886701866984367, -0.07728990912437439, -0.07955332845449448, 0.019783737137913704, -0.03656669333577156, -0.04128861427307129, 0.05066592991352081, -0.043744318187236786, -0.09272471815347672, 0.08485810458660126, 0.024795083329081535, 0.007330888882279396, -0.036099597811698914, 0.04941164702177048, 0.1447470784187317, 0.01070844754576683, -0.010077320970594883, -0.0801771953701973, -0.03825781121850014, -0.05847221240401268, -0.007371585350483656, -0.06306370347738266, -0.06485948711633682, -0.018921487033367157, 0.0023806393146514893, 0.042952414602041245, -0.11061502248048782, -0.10314290225505829, -0.04106573015451431, 0.004272252321243286, -0.08432097733020782, -0.02530929259955883, 0.05366852506995201, -0.019454549998044968, -0.006717068608850241, 0.005324205383658409, 0.030863922089338303, 0.03814826160669327, -0.03357013314962387, 0.0008935630321502686, -0.11054354161024094, 0.035378772765398026, -0.0139855882152915, -0.044197916984558105, -0.19822581112384796, 0.12045032531023026, 0.21871282160282135, -0.07779310643672943, -0.03524412959814072, -0.024685729295015335, 0.001441792817786336, -0.04638677462935448, 0.1763964742422104, 0.02368202432990074, 0.13642099499702454, -0.08159061521291733, -0.10137061774730682, 0.010402511805295944, -0.09155082702636719, 0.004175535868853331, 0.05229896306991577, 0.13699905574321747, -0.03569053113460541, -0.1306113451719284, 0.11195777356624603, -0.2745107412338257, 0.22319118678569794, 0.11061304062604904, -0.0871904194355011, -0.10165055096149445, 0.0193001888692379, 0.04698220640420914, 0.021760981529951096, 0.04757538065314293, -0.06004691869020462, -0.06466729193925858, -0.03128083422780037, -0.030636388808488846, -0.29665568470954895, -0.1344277262687683, 0.05093550309538841, -0.0832824632525444, 0.22465689480304718, -0.047568175941705704, 0.00034545475500635803, 0.07342500239610672, 0.06715476512908936, -0.06993565708398819, 0.005865325219929218, 0.01828884892165661, 0.11991572380065918, -0.08009187132120132, 0.016786692664027214, -0.03107200749218464, -0.11067916452884674, 0.07229037582874298, -0.015841014683246613, -0.050928376615047455, 0.17844408750534058, 0.034332625567913055, -0.051970142871141434, -0.03062497265636921, -0.012189310044050217, 0.0556458905339241, -0.06367912888526917, -0.019882261753082275, 0.016951676458120346, 0.023278556764125824, 0.036668408662080765, 0.04656949266791344, -0.11800543963909149, -0.10507431626319885, 0.09328098595142365, -0.13132919371128082, 0.09971730411052704, -0.0770958811044693, -0.2236214429140091, 0.04930755868554115, -0.12079198658466339, 0.01859678328037262, 0.03320101648569107, -0.04199958220124245, 0.0624413937330246, 0.11270646750926971, -0.007757495157420635, 0.24201859533786774, 0.007694645784795284, 0.005063463933765888, -0.03190616890788078, -0.09562880545854568 ]
5c1297a9eb6c91714ea77c0d4ac5aca9b6a952e5
# Speaker embeddings extracted from CMU ARCTIC There is one `.npy` file for each utterance in the dataset, 7931 files in total. The speaker embeddings are 512-element X-vectors. The [CMU ARCTIC](http://www.festvox.org/cmu_arctic/) dataset divides the utterances among the following speakers: - bdl (US male) - slt (US female) - jmk (Canadian male) - awb (Scottish male) - rms (US male) - clb (US female) - ksp (Indian male) The X-vectors were extracted using [this script](https://huggingface.co/mechanicalsea/speecht5-vc/blob/main/manifest/utils/prep_cmu_arctic_spkemb.py), which uses the `speechbrain/spkrec-xvect-voxceleb` model. Usage: ```python from datasets import load_dataset embeddings_dataset = load_dataset("Matthijs/cmu-arctic-xvectors", split="validation") speaker_embeddings = embeddings_dataset[7306]["xvector"] speaker_embeddings = torch.tensor(speaker_embeddings).unsqueeze(0) ```
Matthijs/cmu-arctic-xvectors
[ "task_categories:text-to-speech", "task_categories:audio-to-audio", "license:mit", "region:us" ]
2023-02-07T12:39:22+00:00
{"license": "mit", "task_categories": ["text-to-speech", "audio-to-audio"], "pretty_name": "CMU ARCTIC X-Vectors"}
2023-02-07T14:04:48+00:00
[]
[]
TAGS #task_categories-text-to-speech #task_categories-audio-to-audio #license-mit #region-us
# Speaker embeddings extracted from CMU ARCTIC There is one '.npy' file for each utterance in the dataset, 7931 files in total. The speaker embeddings are 512-element X-vectors. The CMU ARCTIC dataset divides the utterances among the following speakers: - bdl (US male) - slt (US female) - jmk (Canadian male) - awb (Scottish male) - rms (US male) - clb (US female) - ksp (Indian male) The X-vectors were extracted using this script, which uses the 'speechbrain/spkrec-xvect-voxceleb' model. Usage:
[ "# Speaker embeddings extracted from CMU ARCTIC\n\nThere is one '.npy' file for each utterance in the dataset, 7931 files in total. The speaker embeddings are 512-element X-vectors.\n\nThe CMU ARCTIC dataset divides the utterances among the following speakers:\n\n- bdl (US male)\n- slt (US female)\n- jmk (Canadian male)\n- awb (Scottish male)\n- rms (US male)\n- clb (US female)\n- ksp (Indian male)\n\nThe X-vectors were extracted using this script, which uses the 'speechbrain/spkrec-xvect-voxceleb' model.\n\nUsage:" ]
[ "TAGS\n#task_categories-text-to-speech #task_categories-audio-to-audio #license-mit #region-us \n", "# Speaker embeddings extracted from CMU ARCTIC\n\nThere is one '.npy' file for each utterance in the dataset, 7931 files in total. The speaker embeddings are 512-element X-vectors.\n\nThe CMU ARCTIC dataset divides the utterances among the following speakers:\n\n- bdl (US male)\n- slt (US female)\n- jmk (Canadian male)\n- awb (Scottish male)\n- rms (US male)\n- clb (US female)\n- ksp (Indian male)\n\nThe X-vectors were extracted using this script, which uses the 'speechbrain/spkrec-xvect-voxceleb' model.\n\nUsage:" ]
[ 38, 168 ]
[ "passage: TAGS\n#task_categories-text-to-speech #task_categories-audio-to-audio #license-mit #region-us \n# Speaker embeddings extracted from CMU ARCTIC\n\nThere is one '.npy' file for each utterance in the dataset, 7931 files in total. The speaker embeddings are 512-element X-vectors.\n\nThe CMU ARCTIC dataset divides the utterances among the following speakers:\n\n- bdl (US male)\n- slt (US female)\n- jmk (Canadian male)\n- awb (Scottish male)\n- rms (US male)\n- clb (US female)\n- ksp (Indian male)\n\nThe X-vectors were extracted using this script, which uses the 'speechbrain/spkrec-xvect-voxceleb' model.\n\nUsage:" ]
[ -0.04162167012691498, -0.10532542318105698, -0.0019694827497005463, -0.0009333709604106843, 0.06498810648918152, 0.009230026043951511, 0.045923564583063126, 0.004744545090943575, 0.15227393805980682, 0.07664884626865387, 0.0815490186214447, -0.02120964787900448, 0.03808027505874634, 0.014150045812129974, 0.03375948593020439, -0.16389481723308563, 0.030375592410564423, -0.05841631814837456, 0.10024016350507736, 0.0610378123819828, 0.044774286448955536, -0.00962720438838005, -0.032623760402202606, -0.02316790074110031, -0.12001119554042816, 0.0011961872223764658, -0.006574559025466442, -0.012958316132426262, 0.0514901764690876, 0.06915662437677383, 0.11209740489721298, 0.0369742289185524, -0.012321984395384789, -0.2421656847000122, 0.0030296631157398224, -0.05660342425107956, -0.001697384170256555, 0.010143337771296501, 0.04363371431827545, -0.0021993587724864483, 0.13227596879005432, -0.042987432330846786, 0.015638219192624092, 0.037198953330516815, -0.012693830765783787, -0.1632392406463623, 0.0454460047185421, 0.018842050805687904, -0.006828831508755684, 0.04315446317195892, -0.04788807034492493, 0.15797016024589539, -0.16591139137744904, 0.09689430147409439, 0.025931691750884056, -0.1366969794034958, 0.037829577922821045, 0.038992781192064285, 0.06919141858816147, 0.22249464690685272, -0.13343358039855957, -0.02511982060968876, -0.011345942504703999, -0.0006660278304480016, -0.05375516042113304, -0.018677253276109695, 0.012413089163601398, 0.016341397538781166, -0.11071278899908066, -0.0010331799276173115, 0.32817256450653076, 0.04781217500567436, 0.03342192620038986, 0.009267333894968033, -0.030947810038924217, -0.06727615743875504, 0.09311920404434204, 0.09448711574077606, -0.10887353122234344, -0.06922924518585205, 0.003269927343353629, -0.04219331592321396, -0.10732115060091019, -0.046409811824560165, -0.07471858710050583, 0.24877196550369263, -0.0010942559456452727, 0.08240284025669098, -0.030393516644835472, -0.02187851257622242, -0.0959659293293953, -0.05267986282706261, -0.011407827027142048, -0.07276348024606705, -0.05057888105511665, 0.060306817293167114, -0.002296175342053175, -0.1360892504453659, 0.04482732340693474, -0.04848960414528847, 0.023319264873862267, 0.05098680034279823, -0.08026275038719177, 0.12733331322669983, 0.049439989030361176, 0.15896880626678467, 0.11102452129125595, 0.0019724939484149218, 0.014181043021380901, -0.10373833775520325, -0.016101336106657982, -0.06556475162506104, -0.11964209377765656, -0.06104019656777382, -0.028968455269932747, 0.08885792642831802, -0.0595032162964344, 0.013181651942431927, 0.03471451625227928, -0.03825414925813675, 0.0838380828499794, -0.06799948960542679, -0.005329878069460392, 0.07696472108364105, 0.07073535025119781, 0.066985584795475, -0.005373836494982243, 0.008368942886590958, -0.05032728612422943, 0.04193895310163498, 0.0007442585192620754, 0.06635772436857224, -0.016442425549030304, -0.15600836277008057, 0.018724137917160988, -0.12650184333324432, 0.012966624461114407, -0.12437489628791809, -0.03329186514019966, -0.0172877199947834, -0.11303814500570297, 0.03158887103199959, -0.004021523054689169, -0.10520622879266739, 0.044607117772102356, 0.051507577300071716, -0.05510581657290459, -0.062335290014743805, -0.05654432997107506, 0.027494926005601883, -0.06423152983188629, 0.08864009380340576, -0.07278496772050858, 0.052744824439287186, 0.0034607178531587124, -0.021199340000748634, -0.05282377451658249, 0.09181670844554901, -0.11089418828487396, -0.0042148008942604065, 0.006257303524762392, -0.02499525621533394, -0.08810792863368988, 0.02571229077875614, -0.0570540614426136, 0.08214908838272095, -0.15918698906898499, -0.08201324939727783, 0.14118511974811554, -0.0832839086651802, 0.06815205514431, 0.10984175652265549, 0.011376721784472466, -0.018243780359625816, 0.09461721032857895, 0.3211391568183899, 0.013484016060829163, -0.09197986871004105, 0.07633586972951889, 0.006029611453413963, -0.013055779039859772, -0.03300075605511665, 0.11672298610210419, -0.05005815625190735, -0.04868074879050255, 0.005703497678041458, 0.017656605690717697, 0.045843303203582764, -0.004966443404555321, -0.012712082825601101, 0.0074107833206653595, 0.00252797594293952, 0.012200466357171535, -0.06100568175315857, -0.035218413919210434, -0.0998644158244133, -0.0070970673114061356, -0.011480310000479221, 0.05296985059976578, -0.050304241478443146, 0.07786937057971954, 0.016265003010630608, 0.03956981003284454, -0.13144263625144958, -0.033654894679784775, -0.07103190571069717, 0.016964811831712723, -0.0010214595822617412, 0.0636875182390213, 0.12859271466732025, 0.07231862843036652, 0.0069534447975456715, 0.021361088380217552, -0.02632109820842743, -0.009067010134458542, 0.03759858384728432, 0.0345207117497921, -0.042577266693115234, -0.14204204082489014, 0.07903994619846344, -0.06158788874745369, -0.1450800746679306, -0.041946034878492355, -0.050408799201250076, 0.037779223173856735, 0.029399355873465538, 0.026855627074837685, 0.0052291518077254295, 0.029308700934052467, 0.07969854772090912, 0.0021412319038063288, 0.07608286291360855, 0.007950284518301487, -0.051663924008607864, -0.14108482003211975, 0.222256600856781, -0.030022017657756805, -0.11713218688964844, 0.11679806560277939, -0.012187951244413853, 0.05862980708479881, -0.030130820348858833, 0.0207078754901886, -0.06263503432273865, 0.032602351158857346, -0.11578293144702911, 0.14533451199531555, 0.06333667039871216, 0.020383143797516823, -0.049595627933740616, -0.007707465440034866, 0.01392580196261406, -0.04382743313908577, -0.07728299498558044, 0.14097629487514496, 0.09239247441291809, -0.16659751534461975, 0.1059618666768074, 0.016941141337156296, 0.008362027816474438, 0.38654083013534546, 0.030780809000134468, -0.09841898828744888, -0.021066104993224144, 0.0018013668013736606, -0.07180283218622208, 0.12091769278049469, -0.15450768172740936, -0.0069387927651405334, 0.03949899598956108, 0.07537415623664856, 0.07561103254556656, -0.07430268824100494, -0.05681892856955528, 0.024911386892199516, -0.030344290658831596, -0.24919480085372925, 0.03711545467376709, -0.02215801365673542, 0.050580378621816635, -0.04356560856103897, 0.009403997100889683, 0.01100096944719553, -0.06569935381412506, -0.08800278604030609, 0.01225526537746191, -0.27600932121276855, -0.19190098345279694, -0.2360144704580307, 0.035860586911439896, -0.05011427402496338, -0.015143655240535736, 0.10085660964250565, -0.15697777271270752, -0.05824470520019531, -0.02189556322991848, 0.23367242515087128, -0.08269360661506653, -0.04610101506114006, -0.02905711904168129, -0.023961365222930908, -0.12774021923542023, -0.0865011066198349, -0.003206188790500164, -0.01535146776586771, 0.11593051254749298, 0.13207882642745972, -0.06936249881982803, 0.066954605281353, 0.08490444719791412, 0.035396166145801544, -0.03860309720039368, -0.009330108761787415, 0.12726150453090668, -0.04425207898020744, -0.04688889533281326, -0.07222195714712143, -0.07368074357509613, 0.007789261173456907, 0.10538309812545776, -0.006771018262952566, 0.04548094794154167, -0.02308012917637825, -0.054200854152441025, -0.07073716074228287, -0.23786047101020813, -0.11526820063591003, -0.1160903349518776, 0.0004354288103058934, -0.09269151836633682, 0.0020279819145798683, 0.047947365790605545, -0.059587232768535614, -0.06073228642344475, -0.103291817009449, 0.026517631486058235, 0.06628932803869247, 0.11145024746656418, -0.014345277100801468, 0.04343825578689575, -0.05640587955713272, 0.03974854573607445, 0.029181048274040222, 0.05821437016129494, 0.26693835854530334, 0.1426779329776764, 0.20710347592830658, 0.030945220962166786, 0.0671151876449585, 0.12492263317108154, 0.13440974056720734, -0.022643771022558212, 0.004579043015837669, 0.02542942762374878, -0.06651946902275085, -0.010284094139933586, 0.06347338110208511, 0.2422427237033844, -0.09484885632991791, 0.045357368886470795, -0.06900342553853989, 0.027492115274071693, 0.011967871338129044, -0.024298368021845818, 0.041938118636608124, -0.05900120362639427, 0.06984811276197433, -0.031874943524599075, -0.07137318700551987, 0.05397697165608406, 0.24219302833080292, -0.0016338533023372293, 0.0014647007919847965, 0.07294333726167679, 0.04877797141671181, 0.10934555530548096, 0.018783044070005417, -0.0953291580080986, 0.004697746131569147, -0.034164488315582275, 0.048954010009765625, -0.15564000606536865, 0.21021252870559692, 0.019934073090553284, -0.04960165172815323, -0.016637394204735756, -0.059424035251140594, -0.08247049152851105, 0.03357814624905586, 0.05503103509545326, 0.09048344939947128, -0.2385132610797882, -0.08977819234132767, -0.08813008666038513, 0.037910547107458115, 0.08289870619773865, 0.012377452105283737, 0.02120387926697731, 0.08768631517887115, 0.03875131160020828, 0.021925577893853188, -0.06048503518104553, -0.04569776728749275, -0.07936644554138184, 0.019103098660707474, 0.12238486111164093, -0.06452810019254684, 0.03606709837913513, -0.07050160318613052, -0.060887981206178665, -0.06683550029993057, -0.30546653270721436, -0.1382017284631729, -0.04480241239070892, -0.09341941028833389, 0.12139597535133362, -0.0820091962814331, -0.04387401416897774, 0.030106712132692337, 0.06488745659589767, -0.03727538511157036, -0.05245356634259224, 0.043258924037218094, -0.007533616852015257, -0.01488125417381525, -0.019827160984277725, 0.2219688445329666, 0.08471070975065231, 0.09798520058393478, -0.08379907160997391, 0.07701019197702408, -0.07430079579353333, -0.07305320352315903, 0.005992223042994738, 0.09099101275205612, -0.11765924841165543, 0.17476490139961243, -0.08692616969347, -0.07054727524518967, -0.10739557445049286, -0.15458694100379944, 0.25141796469688416, 0.13782921433448792, -0.06190885230898857, 0.17872589826583862, 0.1678929477930069, -0.05267541483044624, -0.1624813824892044, -0.028449518606066704, 0.0184547770768404, 0.11150436103343964, -0.01448879949748516, -0.1373836249113083, 0.020928241312503815, 0.024806495755910873, 0.08590113371610641, 0.11086460202932358, -0.11473827064037323, -0.12440909445285797, 0.06496302038431168, -0.021213971078395844, 0.1693534106016159, -0.011831113137304783, -0.05687553808093071, -0.07476707547903061, -0.043884944170713425, 0.06828522682189941, -0.03478625789284706, 0.09902501851320267, -0.00623018154874444, 0.2784748375415802, 0.04833267256617546, -0.02182086370885372, 0.10797309875488281, 0.08064243942499161, -0.03405521437525749, -0.0391835942864418, -0.024886755272746086, -0.02538057044148445, 0.006313970312476158, 0.07186014205217361, -0.1955130696296692, -0.08932947367429733, -0.12982094287872314, -0.04736759513616562, -0.10417207330465317, 0.03977746516466141, -0.017078785225749016, -0.04450817406177521, -0.011210611090064049, -0.031465329229831696, 0.03886345773935318, -0.030645383521914482, 0.11876075714826584, -0.0835031047463417, 0.03544336184859276, 0.057256050407886505, 0.10451976954936981, 0.025427259504795074, -0.0941588282585144, -0.015601858496665955, -0.03509970381855965, 0.10015618801116943, -0.07148357480764389, 0.011570564471185207, 0.13821081817150116, 0.011316072195768356, 0.09383188188076019, 0.003783342894166708, -0.07697977125644684, 0.004816767293959856, 0.03720175474882126, -0.06655272841453552, -0.09857600927352905, 0.0035703221801668406, -0.02095635049045086, 0.10734342038631439, -0.09081930667161942, 0.12350421398878098, -0.023543737828731537, 0.003824320388957858, -0.07600832730531693, 0.03892561048269272, -0.09262962639331818, 0.16495680809020996, 0.07181420922279358, 0.061192840337753296, -0.09001117944717407, -0.006351797375828028, -0.04287836328148842, 0.010857056826353073, 0.008895005099475384, 0.08667444437742233, -0.055369094014167786, -0.0733865350484848, -0.003961191978305578, 0.13350890576839447, -0.07268771529197693, -0.01968778669834137, 0.046587880700826645, -0.11609894037246704, 0.030696094036102295, 0.20412671566009521, -0.0676475316286087, 0.012368770316243172, -0.04246937856078148, -0.03854736313223839, -0.0073334346525371075, 0.06975726038217545, -0.10850613564252853, 0.0032799700275063515, -0.06823030114173889, 0.05513226240873337, -0.015432262793183327, 0.005596980452537537, -0.019781582057476044, -0.048246778547763824, -0.09794662147760391, 0.039778485894203186, -0.07099691033363342, 0.04778731241822243, -0.0049636224284768105, 0.024816587567329407, 0.008494401350617409, -0.01719450205564499, -0.00887319166213274, 0.07391825318336487, -0.08867523819208145, 0.04774636775255203, -0.022672364488244057, 0.05506357178092003, 0.029359061270952225, -0.02034355327486992, 0.04712849110364914, -0.01963639259338379, 0.0727255791425705, 0.1748344898223877, -0.04806903749704361, 0.12019488215446472, -0.11165720969438553, 0.10983431339263916, 0.02906656451523304, 0.06287126988172531, -0.0000965313010965474, -0.043263647705316544, -0.030174583196640015, 0.03806523233652115, 0.04286408796906471, 0.02372010610997677, 0.09446876496076584, -0.04875217750668526, -0.026983164250850677, -0.10280722379684448, -0.11960414797067642, -0.06386706978082657, 0.0024074940010905266, 0.01775411143898964, 0.13036178052425385, 0.1466057151556015, -0.02957572229206562, 0.07366939634084702, -0.015500730834901333, 0.0027306608390063047, 0.04724662005901337, -0.026284122839570045, -0.015895238146185875, -0.04438924416899681, 0.013157632201910019, -0.04264836385846138, 0.17716757953166962, -0.04437417536973953, 0.011374782770872116, -0.03286387026309967, -0.022694183513522148, -0.13853304088115692, -0.023583391681313515, 0.13746358454227448, 0.009143633767962456, -0.000847320188768208, -0.03978198766708374, -0.05533550679683685, -0.04843749850988388, 0.04705416411161423, 0.0873754620552063, 0.08878296613693237, 0.19367390871047974, 0.025091199204325676, 0.15870097279548645, -0.04466003179550171, -0.014104614034295082, -0.10321450233459473, 0.038626447319984436, 0.010157394222915173, -0.02150004543364048, 0.2104405015707016, 0.06476997584104538, -0.11708354949951172, 0.05663105100393295, -0.03084338642656803, -0.07295993715524673, -0.09145022183656693, -0.08325103670358658, -0.010448138229548931, -0.08399800956249237, 0.06810969859361649, -0.10850140452384949, 0.022808631882071495, -0.09879399091005325, 0.06431721150875092, -0.040133118629455566, 0.059728313237428665, -0.014006092213094234, -0.13749468326568604, -0.008031720295548439, 0.004037084057927132, -0.020671680569648743, -0.008022947236895561, 0.03303300589323044, 0.12328018248081207, -0.08711837232112885, -0.00794284325093031, 0.032105665653944016, -0.018594222143292427, -0.04476919025182724, -0.1634189635515213, -0.07006586343050003, -0.014715449884533882, 0.04467505216598511, 0.0137750543653965, 0.26387837529182434, 0.08049674332141876, -0.04880351200699806, -0.01919429562985897, -0.058027852326631546, 0.0697600468993187, -0.05805110186338425, -0.039740029722452164, -0.03238508477807045, -0.054936185479164124, 0.045029062777757645, -0.06770728528499603, -0.04988221079111099, -0.009843635372817516, 0.06141114607453346, 0.17754165828227997, 0.05289746820926666, 0.023612771183252335, -0.09695994108915329, 0.023895109072327614, -0.02392353117465973, 0.04431523382663727, 0.0708911195397377, 0.0802154690027237, 0.07660344243049622, 0.0018403694266453385, -0.13272549211978912, 0.029883138835430145, 0.06028791889548302, -0.15998458862304688, -0.04109392687678337, -0.12441777437925339, -0.09312650561332703, 0.08420783281326294, -0.1655290275812149, -0.00482109235599637, -0.009345726110041142, -0.14372818171977997, 0.0027727934066206217, -0.007127783261239529, 0.13968834280967712, -0.0030063032172620296, -0.029901206493377686, -0.047165948897600174, -0.11282052844762802, 0.04541584476828575, -0.004272650461643934, -0.14570951461791992, -0.02700131945312023, 0.03660121560096741, -0.08837653696537018, -0.062476180493831635, 0.006422374863177538, 0.20040477812290192, -0.013980353251099586, 0.13749921321868896, 0.03740084543824196, 0.1587700992822647, 0.014161134138703346, -0.01939953863620758, -0.07460619509220123, 0.23750007152557373, -0.024048225954174995, 0.18338628113269806, 0.06875170767307281, -0.018207324668765068, -0.0212099552154541, 0.007979942485690117, 0.028726255521178246, 0.02421857975423336, 0.07228095084428787, -0.11614222824573517, 0.13621008396148682, 0.0989336371421814, 0.01563323475420475, -0.09620285779237747, -0.056521885097026825, -0.050993695855140686, -0.05494915321469307, 0.11499787122011185, -0.06218253821134567, -0.11726773530244827, -0.049108002334833145, 0.034203868359327316, 0.030429132282733917, -0.20450657606124878, -0.05894520506262779, -0.13493181765079498, -0.03780698403716087, 0.048835787922143936, 0.08117452263832092, 0.05905873328447342, -0.010210160166025162, -0.010218956507742405, -0.25692319869995117, 0.1214597076177597, 0.08715187013149261, -0.05568203330039978, -0.037361521273851395 ]
8ccd836cbbe1e32c8d9f4a0859e09753ee6797e9
# Dataset Card for Dataset Name ## Dataset Description ### Dataset Summary The dataset provides a mapping between [TV Tropes](https://tvtropes.org/) and [IMDb](https://www.imdb.com/) entries for about 10K movies. ### Supported Tasks and Leaderboards No particular task is supported, because the dataset is intended to enrich other datasets (for instance, [Movielens](https://grouplens.org/datasets/movielens/)) ### Languages Movie titles are provided in English the way they are present on TV Tropes. ## Dataset Structure The dataset is comprised of two columns: `tvtropes` and `imdb`. The former can be used to access the movie's page on TV Tropes using the following url template: `https://tvtropes.org/pmwiki/pmwiki.php/Film/{tvtropes}`. The latter can be used to acces the movie's page on IMDb using the following url template `https://www.imdb.com/title/tt{imdb}/` (note that the imbd id has to be padded to the left with zeroes if it contains less than seven digits). ### Data Instances [More Information Needed] ### Data Fields [More Information Needed] ### Data Splits There is only one split. The data is not meant to be used directly for training/evaluation. ## Dataset Creation The dataset was created semi-automatically: [Cinemagoer](https://github.com/cinemagoer/cinemagoer) was used to query IMDb for movies with matching titles, then the resulting output was manually verified. ### Curation Rationale [More Information Needed] ### Source Data #### Initial Data Collection and Normalization [More Information Needed] ### Annotations #### Annotation process The annotation only involved manually verifying that a given TV Tropes entry corresponds to a correct IMDb entry. However, some are inaccuracies may be still present due to the sheer volume of data. #### Who are the annotators? The correctness of the mapping was verified by me (Aleksei Dorkin) personally. ### Personal and Sensitive Information Not applicable. ## Considerations for Using the Data ### Social Impact of Dataset Not applicable. The impact may potentially come from the data that is linked using the dataset. ### Discussion of Biases Not applicable. The datasets only links together entries for movies on different web resources. ### Other Known Limitations One potential limitation of the dataset may come from the way TV Tropes pages are organized. It is not always possible to automatically distinguish a page related to a franchise in general and a paged related to a particular movie in a franchise. Another thing to consider is that it's pretty common for movies to share the exact same title. At the same time, they can also be quite similar in content. Thus, it's not always trivial to distinguish movies with the same title if no year is given. As a result, some inaccuries of this nature may be present in the data. ## Additional Information ### Dataset Curators [More Information Needed] ### Licensing Information CC0 ### Citation Information [More Information Needed] ### Contributions Contributions are welcome on this dataset page using the Community tab.
adorkin/tvtropes2imdb
[ "size_categories:1K<n<10K", "language:en", "license:cc0-1.0", "tropes", "movies", "recommender", "region:us" ]
2023-02-07T12:40:17+00:00
{"language": ["en"], "license": "cc0-1.0", "size_categories": ["1K<n<10K"], "tags": ["tropes", "movies", "recommender"]}
2023-02-07T13:20:43+00:00
[]
[ "en" ]
TAGS #size_categories-1K<n<10K #language-English #license-cc0-1.0 #tropes #movies #recommender #region-us
# Dataset Card for Dataset Name ## Dataset Description ### Dataset Summary The dataset provides a mapping between TV Tropes and IMDb entries for about 10K movies. ### Supported Tasks and Leaderboards No particular task is supported, because the dataset is intended to enrich other datasets (for instance, Movielens) ### Languages Movie titles are provided in English the way they are present on TV Tropes. ## Dataset Structure The dataset is comprised of two columns: 'tvtropes' and 'imdb'. The former can be used to access the movie's page on TV Tropes using the following url template: 'URL The latter can be used to acces the movie's page on IMDb using the following url template 'URL (note that the imbd id has to be padded to the left with zeroes if it contains less than seven digits). ### Data Instances ### Data Fields ### Data Splits There is only one split. The data is not meant to be used directly for training/evaluation. ## Dataset Creation The dataset was created semi-automatically: Cinemagoer was used to query IMDb for movies with matching titles, then the resulting output was manually verified. ### Curation Rationale ### Source Data #### Initial Data Collection and Normalization ### Annotations #### Annotation process The annotation only involved manually verifying that a given TV Tropes entry corresponds to a correct IMDb entry. However, some are inaccuracies may be still present due to the sheer volume of data. #### Who are the annotators? The correctness of the mapping was verified by me (Aleksei Dorkin) personally. ### Personal and Sensitive Information Not applicable. ## Considerations for Using the Data ### Social Impact of Dataset Not applicable. The impact may potentially come from the data that is linked using the dataset. ### Discussion of Biases Not applicable. The datasets only links together entries for movies on different web resources. ### Other Known Limitations One potential limitation of the dataset may come from the way TV Tropes pages are organized. It is not always possible to automatically distinguish a page related to a franchise in general and a paged related to a particular movie in a franchise. Another thing to consider is that it's pretty common for movies to share the exact same title. At the same time, they can also be quite similar in content. Thus, it's not always trivial to distinguish movies with the same title if no year is given. As a result, some inaccuries of this nature may be present in the data. ## Additional Information ### Dataset Curators ### Licensing Information CC0 ### Contributions Contributions are welcome on this dataset page using the Community tab.
[ "# Dataset Card for Dataset Name", "## Dataset Description", "### Dataset Summary\n\nThe dataset provides a mapping between TV Tropes and IMDb entries for about 10K movies.", "### Supported Tasks and Leaderboards\n\nNo particular task is supported, because the dataset is intended to enrich other datasets\n(for instance, Movielens)", "### Languages\n\nMovie titles are provided in English the way they are present on TV Tropes.", "## Dataset Structure\n\nThe dataset is comprised of two columns: 'tvtropes' and 'imdb'. The former can be used to access the movie's page on TV Tropes\nusing the following url template: 'URL The latter can be used to acces the\nmovie's page on IMDb using the following url template 'URL (note that the imbd id has to be\npadded to the left with zeroes if it contains less than seven digits).", "### Data Instances", "### Data Fields", "### Data Splits\n\nThere is only one split. The data is not meant to be used directly for training/evaluation.", "## Dataset Creation\n\nThe dataset was created semi-automatically: Cinemagoer was used to query IMDb for movies with\nmatching titles, then the resulting output was manually verified.", "### Curation Rationale", "### Source Data", "#### Initial Data Collection and Normalization", "### Annotations", "#### Annotation process\n\nThe annotation only involved manually verifying that a given TV Tropes entry corresponds to a correct IMDb entry.\nHowever, some are inaccuracies may be still present due to the sheer volume of data.", "#### Who are the annotators?\n\nThe correctness of the mapping was verified by me (Aleksei Dorkin) personally.", "### Personal and Sensitive Information\n\nNot applicable.", "## Considerations for Using the Data", "### Social Impact of Dataset\n\nNot applicable. The impact may potentially come from the data that is linked using the dataset.", "### Discussion of Biases\n\nNot applicable. The datasets only links together entries for movies on different web resources.", "### Other Known Limitations\n\nOne potential limitation of the dataset may come from the way TV Tropes pages are organized. It is not always possible to automatically\ndistinguish a page related to a franchise in general and a paged related to a particular movie in a franchise.\n\nAnother thing to consider is that it's pretty common for movies to share the exact same title. At the same time, they can also be quite\nsimilar in content. Thus, it's not always trivial to distinguish movies with the same title if no year is given.\n\nAs a result, some inaccuries of this nature may be present in the data.", "## Additional Information", "### Dataset Curators", "### Licensing Information\n\nCC0", "### Contributions\n\nContributions are welcome on this dataset page using the Community tab." ]
[ "TAGS\n#size_categories-1K<n<10K #language-English #license-cc0-1.0 #tropes #movies #recommender #region-us \n", "# Dataset Card for Dataset Name", "## Dataset Description", "### Dataset Summary\n\nThe dataset provides a mapping between TV Tropes and IMDb entries for about 10K movies.", "### Supported Tasks and Leaderboards\n\nNo particular task is supported, because the dataset is intended to enrich other datasets\n(for instance, Movielens)", "### Languages\n\nMovie titles are provided in English the way they are present on TV Tropes.", "## Dataset Structure\n\nThe dataset is comprised of two columns: 'tvtropes' and 'imdb'. The former can be used to access the movie's page on TV Tropes\nusing the following url template: 'URL The latter can be used to acces the\nmovie's page on IMDb using the following url template 'URL (note that the imbd id has to be\npadded to the left with zeroes if it contains less than seven digits).", "### Data Instances", "### Data Fields", "### Data Splits\n\nThere is only one split. The data is not meant to be used directly for training/evaluation.", "## Dataset Creation\n\nThe dataset was created semi-automatically: Cinemagoer was used to query IMDb for movies with\nmatching titles, then the resulting output was manually verified.", "### Curation Rationale", "### Source Data", "#### Initial Data Collection and Normalization", "### Annotations", "#### Annotation process\n\nThe annotation only involved manually verifying that a given TV Tropes entry corresponds to a correct IMDb entry.\nHowever, some are inaccuracies may be still present due to the sheer volume of data.", "#### Who are the annotators?\n\nThe correctness of the mapping was verified by me (Aleksei Dorkin) personally.", "### Personal and Sensitive Information\n\nNot applicable.", "## Considerations for Using the Data", "### Social Impact of Dataset\n\nNot applicable. The impact may potentially come from the data that is linked using the dataset.", "### Discussion of Biases\n\nNot applicable. The datasets only links together entries for movies on different web resources.", "### Other Known Limitations\n\nOne potential limitation of the dataset may come from the way TV Tropes pages are organized. It is not always possible to automatically\ndistinguish a page related to a franchise in general and a paged related to a particular movie in a franchise.\n\nAnother thing to consider is that it's pretty common for movies to share the exact same title. At the same time, they can also be quite\nsimilar in content. Thus, it's not always trivial to distinguish movies with the same title if no year is given.\n\nAs a result, some inaccuries of this nature may be present in the data.", "## Additional Information", "### Dataset Curators", "### Licensing Information\n\nCC0", "### Contributions\n\nContributions are welcome on this dataset page using the Community tab." ]
[ 41, 8, 4, 29, 38, 21, 107, 6, 5, 26, 45, 7, 4, 10, 5, 52, 30, 11, 8, 28, 27, 135, 5, 6, 8, 20 ]
[ "passage: TAGS\n#size_categories-1K<n<10K #language-English #license-cc0-1.0 #tropes #movies #recommender #region-us \n# Dataset Card for Dataset Name## Dataset Description### Dataset Summary\n\nThe dataset provides a mapping between TV Tropes and IMDb entries for about 10K movies.### Supported Tasks and Leaderboards\n\nNo particular task is supported, because the dataset is intended to enrich other datasets\n(for instance, Movielens)### Languages\n\nMovie titles are provided in English the way they are present on TV Tropes.## Dataset Structure\n\nThe dataset is comprised of two columns: 'tvtropes' and 'imdb'. The former can be used to access the movie's page on TV Tropes\nusing the following url template: 'URL The latter can be used to acces the\nmovie's page on IMDb using the following url template 'URL (note that the imbd id has to be\npadded to the left with zeroes if it contains less than seven digits).### Data Instances### Data Fields### Data Splits\n\nThere is only one split. The data is not meant to be used directly for training/evaluation.## Dataset Creation\n\nThe dataset was created semi-automatically: Cinemagoer was used to query IMDb for movies with\nmatching titles, then the resulting output was manually verified.### Curation Rationale### Source Data#### Initial Data Collection and Normalization### Annotations#### Annotation process\n\nThe annotation only involved manually verifying that a given TV Tropes entry corresponds to a correct IMDb entry.\nHowever, some are inaccuracies may be still present due to the sheer volume of data.#### Who are the annotators?\n\nThe correctness of the mapping was verified by me (Aleksei Dorkin) personally.### Personal and Sensitive Information\n\nNot applicable.## Considerations for Using the Data### Social Impact of Dataset\n\nNot applicable. The impact may potentially come from the data that is linked using the dataset." ]
[ -0.0510992556810379, 0.11088959872722626, -0.001401800662279129, 0.042414139956235886, 0.1575632095336914, 0.0352817140519619, 0.09803492575883865, 0.11800020188093185, -0.050633978098630905, 0.08108770847320557, -0.04923608526587486, -0.04561572149395943, 0.08129949122667313, 0.10710474848747253, 0.07950963079929352, -0.18376944959163666, 0.011446592397987843, -0.06444526463747025, 0.062347427010536194, 0.0727476254105568, 0.10762598365545273, -0.06028822809457779, 0.07252799719572067, -0.09889276325702667, -0.18441510200500488, -0.00872444175183773, 0.02315990813076496, 0.0003665443218778819, 0.08650059252977371, 0.09010542184114456, 0.006993686780333519, -0.0088839465752244, 0.12041597068309784, -0.1904957890510559, -0.005445751361548901, 0.0828951746225357, 0.018878184258937836, -0.012804441154003143, 0.10668006539344788, 0.04729778692126274, 0.12317793816328049, -0.08939910680055618, 0.06075147166848183, 0.05224619805812836, -0.10193340480327606, -0.14446470141410828, -0.08246729522943497, -0.037918999791145325, -0.032027386128902435, 0.09768225997686386, -0.0743894949555397, 0.014038962312042713, 0.017464937642216682, 0.03770218417048454, 0.06492007523775101, -0.082469142973423, -0.02312449924647808, 0.11505871266126633, 0.02555154822766781, 0.07800725102424622, -0.11829353868961334, 0.01210840791463852, 0.031011706218123436, 0.021017422899603844, 0.0936824306845665, -0.008964200504124165, -0.08954424411058426, -0.08347634971141815, -0.106131412088871, -0.0538274347782135, 0.23869194090366364, -0.01823592372238636, -0.0941934883594513, -0.1242554560303688, -0.002128819702193141, 0.08282242715358734, 0.0023331870324909687, -0.017507066950201988, 0.045044854283332825, 0.00485389307141304, 0.01589357480406761, -0.000985750462859869, -0.10101953148841858, 0.019159412011504173, 0.0011270149843767285, 0.01383819617331028, -0.011452716775238514, -0.001351471757516265, -0.09752611815929413, 0.10423985123634338, -0.01861593686044216, -0.07721716165542603, -0.0052178301848471165, -0.02314494177699089, -0.022127918899059296, -0.03999794274568558, -0.03818507120013237, -0.08756047487258911, -0.060110386461019516, 0.07282184064388275, -0.04141756892204285, 0.057195402681827545, -0.08911605924367905, 0.029582522809505463, 0.10387936979532242, 0.13919371366500854, -0.10520912706851959, -0.10631068795919418, 0.01905200444161892, 0.06612192094326019, 0.018044020980596542, -0.024405987933278084, -0.04323635622859001, 0.06786665320396423, 0.09273876994848251, 0.04593900591135025, 0.09123217314481735, 0.028402986004948616, -0.11976175755262375, -0.03333061560988426, 0.11918623745441437, -0.11928257346153259, 0.049949031323194504, 0.0005827020504511893, -0.04050919786095619, 0.09803838282823563, 0.03982727229595184, -0.018169881775975227, -0.050623297691345215, 0.0697358250617981, -0.040941160172224045, 0.020593900233507156, -0.055795036256313324, -0.10084039717912674, 0.07437016814947128, -0.022923657670617104, -0.07135587185621262, -0.1017080619931221, -0.059829358011484146, -0.09447871893644333, 0.059254683554172516, -0.07972071319818497, 0.041285235434770584, -0.042509518563747406, 0.001287439838051796, 0.02364317700266838, 0.0349457710981369, 0.0021939207799732685, -0.028094181790947914, 0.014225193299353123, -0.008127856999635696, 0.01957428641617298, -0.024346014484763145, 0.0631602481007576, -0.11510519683361053, 0.013050083070993423, -0.1597730666399002, 0.12841057777404785, -0.014494923874735832, -0.05970161035656929, -0.06586573272943497, -0.015709612518548965, -0.002394331619143486, 0.01930943690240383, 0.024105792865157127, 0.18033641576766968, -0.29830899834632874, -0.013229992240667343, 0.13957543671131134, -0.12366099655628204, -0.09430297464132309, 0.10712935775518417, -0.05130307376384735, 0.11569499224424362, 0.06919098645448685, 0.05848853290081024, -0.06494500488042831, -0.019100474193692207, -0.1011221632361412, -0.06334370374679565, 0.006571886595338583, 0.2032051980495453, 0.08640946447849274, -0.03201334550976753, 0.04820158705115318, 0.007801454979926348, -0.026894476264715195, -0.05691090226173401, -0.031889695674180984, -0.02216218039393425, 0.008176368661224842, 0.02990706078708172, -0.0037178443744778633, 0.04707421734929085, -0.060895051807165146, 0.0031358583364635706, -0.11009266972541809, 0.026404395699501038, 0.015983205288648605, -0.026940567418932915, 0.09690344333648682, -0.03271949291229248, 0.0027527993079274893, -0.07087324559688568, 0.016917172819375992, -0.17612779140472412, -0.12304674834012985, 0.020195795223116875, -0.015303592197597027, 0.10211113840341568, -0.009606648236513138, -0.0027405836153775454, 0.06711247563362122, -0.09746158868074417, 0.004137754440307617, -0.025587035343050957, 0.02562817744910717, -0.0014653794933110476, -0.1977507770061493, -0.04545673355460167, -0.09250675141811371, 0.12755747139453888, -0.13325582444667816, -0.021127553656697273, 0.03488701954483986, 0.14150086045265198, 0.028358111158013344, -0.1043475791811943, 0.023177700117230415, 0.028799982741475105, -0.03121468611061573, -0.1021965816617012, 0.03355873003602028, 0.005853240843862295, -0.00456394674256444, 0.02582501620054245, -0.17045532166957855, -0.18319667875766754, 0.06741584092378616, 0.0059927403926849365, -0.10130249708890915, 0.023993797600269318, -0.007269835565239191, -0.01254612859338522, -0.0715857669711113, -0.06175672635436058, 0.04299477860331535, 0.037037596106529236, 0.06083529442548752, -0.028285160660743713, 0.013763087801635265, 0.05287404730916023, -0.058136921375989914, -0.10533899068832397, 0.01065792329609394, 0.0980277806520462, -0.18607798218727112, 0.0958544909954071, 0.04692458361387253, 0.10296440869569778, 0.1400606483221054, 0.05226218327879906, -0.08877445757389069, -0.025322960689663887, -0.04492424055933952, 0.048548340797424316, 0.11716120690107346, -0.032404810190200806, 0.012883015908300877, 0.023391269147396088, 0.009192670695483685, -0.00736382557079196, -0.07727132737636566, 0.014194373041391373, 0.06726571917533875, 0.022866597399115562, -0.05951975658535957, -0.0395505353808403, -0.04465779289603233, 0.11500270664691925, 0.03774937242269516, 0.11497686803340912, 0.03209858015179634, -0.054478708654642105, -0.18555177748203278, 0.13424724340438843, -0.0972493439912796, -0.2741023004055023, -0.10544891655445099, 0.023129405453801155, -0.01928682066500187, -0.015725234523415565, 0.037491001188755035, -0.06843552738428116, -0.051745712757110596, -0.10696403682231903, 0.019850974902510643, -0.08319977670907974, -0.09516192972660065, -0.0849241390824318, -0.009252012707293034, 0.024534765630960464, -0.0651865005493164, 0.019881367683410645, 0.06935082376003265, -0.08459670841693878, 0.05752294883131981, -0.021316910162568092, 0.11454019695520401, 0.10371318459510803, -0.02333984151482582, -0.027050703763961792, -0.033939141780138016, 0.1874508112668991, -0.08732452988624573, 0.1262233853340149, 0.09465289115905762, -0.03690202161669731, 0.06438977271318436, 0.20420698821544647, 0.012239675037562847, -0.07329318672418594, 0.005963299889117479, 0.02539227157831192, -0.05829031392931938, -0.16881057620048523, -0.04642338678240776, -0.04604174941778183, -0.0007677858811803162, 0.06467489153146744, 0.0026612200308591127, -0.005236845929175615, 0.024395907297730446, -0.08009472489356995, 0.02831185981631279, 0.03564603999257088, 0.11425954103469849, 0.03965464234352112, 0.044399112462997437, 0.046833060681819916, -0.0250446405261755, 0.08217369019985199, 0.1068820208311081, -0.038465190678834915, 0.17625732719898224, -0.03368523716926575, 0.05710192769765854, 0.06264666467905045, 0.03309222310781479, -0.029886696487665176, -0.012972830794751644, 0.012279408052563667, 0.04689788818359375, -0.04175235331058502, -0.04237746074795723, -0.00681817764416337, 0.07122664898633957, -0.010246056132018566, -0.08484695106744766, -0.008724001236259937, 0.04388603940606117, 0.04504682496190071, 0.05310240015387535, 0.018169255927205086, -0.16971005499362946, -0.03969743475317955, 0.03232594206929207, 0.09336240589618683, -0.10518772155046463, -0.032857462763786316, 0.14072130620479584, -0.1628275066614151, 0.09599296003580093, -0.026312749832868576, 0.0552358515560627, -0.0698639452457428, -0.04788122698664665, 0.0445537269115448, -0.014096244238317013, 0.000994625617749989, 0.10331624746322632, -0.24560335278511047, 0.018194111064076424, -0.007572869770228863, 0.0650181770324707, -0.045957449823617935, -0.019267776980996132, 0.005384030286222696, 0.064757339656353, 0.17938737571239471, 0.049405310302972794, -0.01176371704787016, -0.047972578555345535, 0.0096530606970191, 0.034881576895713806, 0.14646050333976746, -0.10479546338319778, 0.10014799237251282, -0.02081720344722271, 0.010464146733283997, 0.0026597552932798862, 0.011483516544103622, -0.15397325158119202, -0.21029172837734222, 0.06865262985229492, -0.04084952175617218, 0.05430394783616066, -0.04082614928483963, -0.037851348519325256, -0.023692190647125244, 0.17061342298984528, -0.1121145710349083, -0.05709709972143173, -0.11892779171466827, 0.04995878040790558, 0.10487191379070282, -0.053114425390958786, 0.06327857077121735, -0.036881133913993835, 0.1740194857120514, -0.037568025290966034, -0.09070532023906708, 0.09453774243593216, -0.09011060744524002, -0.15976274013519287, -0.10545258969068527, 0.061122529208660126, 0.06711806356906891, 0.05323821306228638, -0.017998168244957924, 0.08582470566034317, 0.07548665255308151, -0.05903477594256401, 0.02165588177740574, 0.16780532896518707, 0.04731497913599014, 0.0014357034815475345, -0.05346493795514107, -0.15617914497852325, -0.11775221675634384, -0.1172516718506813, 0.056333526968955994, 0.16863436996936798, -0.0823143944144249, 0.03139222413301468, 0.09707503765821457, -0.1455521136522293, -0.18585196137428284, 0.038142941892147064, 0.011733041144907475, -0.02400057576596737, 0.05664774775505066, -0.2138012796640396, 0.06717963516712189, -0.04069395735859871, 0.03151310607790947, 0.05364406481385231, -0.23229338228702545, -0.1373761147260666, -0.04199020192027092, 0.09721776843070984, -0.09380514919757843, -0.09080561995506287, -0.020771821960806847, -0.0036160077434033155, -0.03334354981780052, 0.13282640278339386, -0.07355308532714844, 0.03295079991221428, 0.019483771175146103, 0.006659052800387144, -0.004458020441234112, -0.03151277080178261, 0.0744868740439415, 0.009559576399624348, 0.011827711015939713, -0.03463428467512131, -0.11541137844324112, 0.0945509746670723, -0.04184318333864212, 0.1372273564338684, 0.02549280971288681, -0.005802478175610304, -0.041140709072351456, -0.022364089265465736, -0.07170421630144119, -0.022922979667782784, -0.05864319950342178, -0.0572950504720211, -0.07395075261592865, 0.11116692423820496, 0.09089557826519012, -0.05660966411232948, -0.04425773769617081, -0.09640707820653915, 0.02862211875617504, 0.1633218675851822, 0.0843234732747078, 0.05171963572502136, -0.0681498646736145, -0.029273441061377525, -0.01905752345919609, 0.03893657401204109, -0.06752471625804901, 0.025877686217427254, 0.10346183180809021, 0.023108981549739838, 0.18964345753192902, 0.008315365761518478, -0.11249732226133347, 0.007535404060035944, 0.0880913957953453, -0.039917752146720886, -0.1956559270620346, 0.000972794892732054, 0.13427667319774628, -0.1424422413110733, -0.08851577341556549, 0.03586152568459511, -0.1186756119132042, -0.01168118230998516, -0.03371662274003029, 0.07816725969314575, 0.0067499009892344475, 0.026959221810102463, 0.026514774188399315, 0.03246146813035011, -0.09874433279037476, 0.19606651365756989, 0.08252891898155212, -0.14436377584934235, 0.07715074717998505, 0.0926375463604927, -0.10675202310085297, -0.0172044038772583, 0.030413877218961716, 0.06346065551042557, -0.061465878039598465, -0.06693965196609497, 0.03436029329895973, -0.07692243903875351, 0.009943144395947456, 0.012700721621513367, -0.035599417984485626, 0.08234427869319916, -0.08033350110054016, 0.01492653600871563, -0.12939122319221497, 0.0905151292681694, 0.10838813334703445, 0.047190528362989426, -0.05694684758782387, 0.11713261157274246, 0.07062419503927231, -0.011708958074450493, -0.015455259941518307, -0.03452024981379509, 0.02246890775859356, -0.04131840914487839, -0.05863768607378006, -0.014401447027921677, -0.042720258235931396, -0.011790137737989426, -0.015824101865291595, -0.01792467199265957, 0.05455988273024559, 0.0010188333690166473, -0.022759195417165756, -0.08272567391395569, -0.05489901080727577, 0.0505535788834095, -0.1993221789598465, -0.023454591631889343, 0.05227304995059967, -0.07670962065458298, 0.017561636865139008, 0.0006762109696865082, -0.014795583672821522, 0.00886153057217598, -0.09797080606222153, -0.05232885479927063, -0.03293760493397713, -0.0006650830619037151, 0.007099065463989973, -0.08915100991725922, -0.022692380473017693, -0.0007798215374350548, -0.06178230792284012, -0.005632385611534119, 0.03563222289085388, -0.09224072843790054, 0.03120717965066433, -0.011042981408536434, 0.008754492737352848, -0.019861511886119843, 0.11713852733373642, 0.004543006885796785, 0.002180884126573801, 0.07298478484153748, -0.06379427760839462, 0.04298248142004013, -0.1582886427640915, -0.0424482487142086, 0.009907348081469536, 0.0562196709215641, -0.08036287873983383, -0.0059450119733810425, 0.03339112177491188, -0.0015333624323830009, 0.06543922424316406, 0.014768345281481743, 0.0076979403384029865, 0.0350387804210186, 0.013139237649738789, -0.08396272361278534, -0.0014892930630594492, -0.032293662428855896, -0.013828769326210022, -0.054039761424064636, -0.07221604883670807, 0.019039124250411987, -0.02155551314353943, 0.06970227509737015, 0.10791891068220139, 0.06338564306497574, 0.0695660188794136, 0.0221982654184103, -0.037833668291568756, -0.0951894223690033, -0.08710633218288422, 0.09298180788755417, -0.008044485934078693, 0.03870049864053726, -0.04836678504943848, 0.12343394756317139, 0.11114802956581116, -0.11722718924283981, 0.1035226508975029, -0.05181466042995453, -0.06843265891075134, 0.015147953294217587, -0.1904183179140091, -0.02561403438448906, -0.022101473063230515, -0.019626691937446594, -0.12088308483362198, 0.14301136136054993, 0.10959692299365997, 0.04782542586326599, -0.028292393311858177, 0.17537429928779602, -0.05518017336726189, -0.1361384391784668, 0.10111206024885178, 0.04115713760256767, 0.031706176698207855, 0.08411885797977448, 0.10744839161634445, 0.06467803567647934, 0.03760325163602829, 0.10714191198348999, 0.14869481325149536, 0.060422517359256744, 0.05864140763878822, 0.018461599946022034, -0.1160135418176651, 0.012652767822146416, 0.007828773930668831, -0.02237977460026741, 0.192475825548172, 0.04111749678850174, 0.05256950482726097, 0.004452873952686787, 0.16377705335617065, -0.08272753655910492, -0.04772384092211723, -0.09197651594877243, 0.12796522676944733, -0.05733466520905495, 0.024066736921668053, -0.042535386979579926, -0.1467595100402832, 0.04045074060559273, 0.08435210585594177, 0.08365023136138916, -0.07140247523784637, -0.05474795773625374, -0.0031070541590452194, 0.013425299897789955, -0.028412871062755585, 0.08341296017169952, -0.023915832862257957, 0.2031155824661255, -0.11118286103010178, 0.13998843729496002, -0.07883299887180328, -0.001408150652423501, 0.08032561838626862, 0.03295832872390747, 0.001954995561391115, 0.026865500956773758, -0.1413087099790573, 0.07878148555755615, -0.07363481819629669, -0.22817005217075348, 0.06726408004760742, -0.052508506923913956, -0.045946840196847916, -0.023617561906576157, -0.0023837601765990257, 0.002234033076092601, 0.06621623039245605, 0.04289281368255615, 0.05046742781996727, 0.16105546057224274, 0.02320198342204094, -0.05298300459980965, -0.027420470491051674, 0.031040195375680923, -0.03802929073572159, 0.17154082655906677, -0.026912951841950417, 0.13034972548484802, 0.034381717443466187, 0.02404716983437538, -0.12154217809438705, -0.0003521373146213591, 0.01689925044775009, 0.10091979801654816, 0.015740910544991493, 0.17626020312309265, -0.011142203584313393, 0.13758477568626404, 0.08455687761306763, 0.049098026007413864, 0.07818269729614258, 0.08743824064731598, -0.08253712207078934, -0.09943976998329163, 0.038232896476984024, -0.08473308384418488, 0.16451528668403625, 0.17078813910484314, -0.03240779787302017, 0.003049467923119664, -0.06819921731948853, 0.004515940323472023, 0.058376844972372055, 0.13557912409305573, 0.05286002159118652, -0.08789798617362976, 0.018199512735009193, -0.019302135333418846, 0.06922709196805954, -0.18247906863689423, -0.021661868318915367, 0.03648450970649719, -0.036399565637111664, 0.02750641107559204, 0.09290052205324173, 0.005997294094413519, 0.017660468816757202, -0.09125646203756332, -0.07687094807624817, 0.045517515391111374, 0.14046387374401093, -0.0439617894589901, -0.002116047078743577 ]
eec562f4d2b341b85e7a21be6fc4e41eaad4a1da
In May 2020, I programmed a [bot](https://twitter.com/venceralcovid) that analyzed a live stream of Twitter headlines and retrieved only those with positive stories in the COVID-19 pandemic. I stopped the bot shortly after the advent of the vaccine. In this dataset, you will find some of the tweets that I used for training, labeled as ```pos_news``` (good or positive news), and ```not_pos_news``` (negative or neutral news). This dataset would be useful to make similar news classifiers for other diseases, perhaps replacing some of its entities (e.g. replacing COVID disease mentions for other disease terms).
jnferfer/spanish_good_covid_news
[ "language:es", "region:us" ]
2023-02-07T12:56:46+00:00
{"language": ["es"]}
2023-02-09T09:05:38+00:00
[]
[ "es" ]
TAGS #language-Spanish #region-us
In May 2020, I programmed a bot that analyzed a live stream of Twitter headlines and retrieved only those with positive stories in the COVID-19 pandemic. I stopped the bot shortly after the advent of the vaccine. In this dataset, you will find some of the tweets that I used for training, labeled as (good or positive news), and (negative or neutral news). This dataset would be useful to make similar news classifiers for other diseases, perhaps replacing some of its entities (e.g. replacing COVID disease mentions for other disease terms).
[]
[ "TAGS\n#language-Spanish #region-us \n" ]
[ 11 ]
[ "passage: TAGS\n#language-Spanish #region-us \n" ]
[ -0.05355963483452797, 0.003880634205415845, -0.010979834012687206, 0.005151693243533373, 0.09229989349842072, 0.056707777082920074, -0.03565450757741928, -0.011524482630193233, 0.2022569328546524, 0.017488444223999977, 0.033187638968229294, 0.07390580326318741, -0.016019433736801147, -0.13503465056419373, -0.054217301309108734, -0.26535242795944214, -0.002715782029554248, -0.07482225447893143, 0.04042922705411911, 0.015159768052399158, -0.06829617917537689, -0.02419193834066391, 0.012570826336741447, -0.06263232976198196, -0.046271566301584244, 0.13869015872478485, 0.043055687099695206, -0.0906577780842781, 0.12098885327577591, 0.02069447748363018, 0.18844826519489288, 0.008566340431571007, -0.09714815020561218, -0.18395337462425232, 0.002152374479919672, -0.035797182470560074, -0.04084385931491852, -0.015391577035188675, 0.10315421968698502, -0.179938405752182, 0.025795096531510353, 0.040573880076408386, 0.025269420817494392, 0.073892742395401, -0.30103206634521484, -0.17443744838237762, 0.004605527501553297, -0.17752021551132202, 0.01351005770266056, -0.024188794195652008, -0.013750721700489521, 0.04314069449901581, -0.17405372858047485, -0.05561703443527222, 0.09979178011417389, -0.16351436078548431, -0.02434225007891655, 0.06257613748311996, 0.1679215133190155, 0.18338285386562347, -0.030752351507544518, 0.10643808543682098, 0.03753878176212311, -0.04671985283493996, -0.2213248908519745, -0.16189129650592804, -0.18201802670955658, 0.09738559275865555, -0.06712707877159119, -0.06869953125715256, 0.17928771674633026, -0.04304731264710426, 0.051074251532554626, 0.09313121438026428, -0.09331285953521729, 0.008911830373108387, 0.025205083191394806, -0.0447830930352211, 0.023422738537192345, 0.12675787508487701, 0.24424466490745544, -0.042264342308044434, -0.09801653027534485, 0.049449507147073746, -0.2451687753200531, 0.2150631844997406, 0.0066183279268443584, 0.0630168616771698, -0.11048857867717743, -0.03305526822805405, -0.13179929554462433, -0.0597102977335453, 0.079937644302845, -0.06189354881644249, 0.022460810840129852, 0.010739714838564396, -0.027057429775595665, -0.01216672733426094, 0.08993453532457352, 0.000014235823982744478, -0.17496661841869354, 0.023633085191249847, -0.11573968827724457, 0.10875117033720016, 0.09844473749399185, 0.07338724285364151, 0.12549330294132233, 0.023509979248046875, -0.08877584338188171, -0.20632681250572205, -0.0016334732063114643, -0.04326002299785614, -0.15212304890155792, -0.005961207672953606, -0.15954284369945526, 0.1795215904712677, 0.011146889999508858, -0.12531627714633942, -0.10235057771205902, 0.015982920303940773, -0.03773512691259384, -0.04796062409877777, 0.0011707341764122248, 0.0031040720641613007, 0.04398620128631592, 0.10167623311281204, -0.2058400809764862, -0.034803129732608795, 0.020198823884129524, -0.05512269586324692, -0.07899871468544006, -0.030459308996796608, -0.09940337389707565, 0.012645919807255268, 0.07142054289579391, -0.16054494678974152, 0.05024566501379013, -0.14010389149188995, -0.0014009299920871854, -0.08087766915559769, -0.03871878236532211, -0.10580626130104065, 0.16370783746242523, -0.10581285506486893, 0.1481628268957138, -0.006331710144877434, -0.05121564492583275, -0.10791315138339996, -0.1125662624835968, 0.11318736523389816, 0.08316133916378021, 0.06105834245681763, -0.16707798838615417, -0.005266535095870495, -0.07876446843147278, 0.10345198959112167, -0.18134358525276184, 0.06759002804756165, -0.029460279271006584, 0.13190127909183502, 0.0016102289082482457, 0.08016077429056168, -0.16732995212078094, 0.13771577179431915, -0.13182245194911957, 0.1728043407201767, -0.1485777199268341, -0.08102055639028549, 0.2588208317756653, -0.017383689060807228, -0.03121660277247429, 0.013014956377446651, 0.047520656138658524, 0.09182008355855942, 0.10119041055440903, 0.4512622058391571, -0.11116150766611099, -0.09145346283912659, 0.16774941980838776, 0.18012268841266632, -0.005852418951690197, -0.09188465774059296, 0.10622632503509521, -0.18589119613170624, -0.1093125119805336, 0.01600305363535881, 0.026214271783828735, -0.005455829203128815, -0.058310531079769135, -0.03658544644713402, 0.132089301943779, 0.06929909437894821, 0.08571846783161163, 0.05688175931572914, 0.08068948239088058, -0.06736507266759872, 0.038573820143938065, 0.03167582303285599, -0.04187191277742386, 0.12692739069461823, 0.0023615299724042416, -0.03991817310452461, 0.09582558274269104, 0.004341823980212212, 0.06787356734275818, -0.16073288023471832, -0.03610185161232948, -0.014895198866724968, 0.2100689560174942, 0.03852831572294235, 0.09937869757413864, 0.032055798918008804, -0.08284684270620346, -0.0006002351874485612, 0.07368853688240051, 0.055669449269771576, 0.030200369656085968, 0.06369084864854813, -0.10357574373483658, 0.14359112083911896, -0.05956077575683594, -0.11571932584047318, -0.12087440490722656, -0.038224563002586365, 0.1721978783607483, -0.054617058485746384, 0.04451288655400276, 0.02244637720286846, -0.06600124388933182, 0.15699806809425354, 0.032156944274902344, -0.029793789610266685, 0.09856273233890533, -0.04376066476106644, -0.013002621941268444, 0.15681011974811554, -0.13942168653011322, 0.11820381134748459, 0.13145464658737183, -0.22726386785507202, 0.014172166585922241, -0.16545997560024261, 0.03972678259015083, 0.04174207150936127, 0.08226711302995682, -0.11230914294719696, 0.09647981822490692, 0.04332101345062256, 0.025740619748830795, -0.11387712508440018, 0.041917379945516586, -0.07162778079509735, -0.1066027358174324, -0.08301183581352234, 0.12120114266872406, 0.06770595163106918, -0.09506312757730484, 0.1953907459974289, 0.30943724513053894, 0.13089436292648315, 0.30070340633392334, -0.06295884400606155, 0.0027701768558472395, 0.006649594288319349, 0.002590451156720519, -0.02276628650724888, 0.09265510737895966, -0.1803853064775467, -0.0039012967608869076, 0.014178618788719177, 0.049381908029317856, 0.11136141419410706, -0.13892892003059387, -0.1293230503797531, -0.0508025698363781, 0.027672110125422478, -0.07003311812877655, 0.017450673505663872, -0.050961729139089584, 0.023621654137969017, 0.1052732989192009, -0.11415247619152069, 0.06754709035158157, -0.0007599625969305634, -0.032477784901857376, 0.07937006652355194, -0.20355482399463654, -0.23625262081623077, -0.13395075500011444, -0.15475274622440338, 0.03731738403439522, 0.13434627652168274, 0.061171457171440125, -0.2028486430644989, 0.05529843270778656, 0.16880783438682556, 0.18509523570537567, -0.10800230503082275, -0.14112499356269836, -0.054071180522441864, 0.11811335384845734, -0.18949033319950104, 0.03221893683075905, -0.02609642967581749, -0.057238902896642685, -0.0048522367142140865, -0.020900070667266846, -0.21563774347305298, 0.1470654010772705, 0.2560466527938843, 0.17538532614707947, 0.02470470778644085, -0.06473102420568466, 0.09127149730920792, -0.17314118146896362, -0.16585850715637207, 0.13171716034412384, -0.00986558385193348, 0.001279398100450635, 0.1733701378107071, 0.05752650648355484, -0.12597550451755524, -0.09180929511785507, 0.0183071531355381, -0.09444762021303177, -0.230880007147789, -0.12810373306274414, -0.10341664403676987, 0.06763952225446701, 0.012136758305132389, -0.0003586113452911377, 0.0698121041059494, -0.016052596271038055, 0.14893922209739685, -0.12679333984851837, -0.02659648284316063, 0.01033226028084755, 0.2625957429409027, -0.1028251200914383, -0.02525261417031288, -0.025975355878472328, -0.06496497988700867, 0.11887375265359879, 0.2083057016134262, 0.03924481198191643, 0.26592427492141724, 0.14745260775089264, 0.0594172403216362, 0.040634527802467346, 0.018406014889478683, -0.06200402230024338, 0.01607106253504753, -0.03035261295735836, -0.07003116607666016, -0.038393620401620865, -0.04140479490160942, -0.06276004761457443, 0.11361772567033768, -0.1934041827917099, -0.06390568614006042, -0.2507926821708679, 0.10561074316501617, -0.14028026163578033, 0.05653867498040199, 0.014241230674088001, 0.13206639885902405, 0.14047473669052124, 0.0443384125828743, -0.09298275411128998, 0.14918513596057892, 0.08637727051973343, -0.12053895741701126, 0.05869411304593086, 0.07049082219600677, 0.1204637736082077, -0.04169520363211632, 0.17491336166858673, -0.16417546570301056, -0.14391964673995972, 0.04290904104709625, 0.09083743393421173, -0.07558062672615051, 0.3355650007724762, 0.05133768171072006, -0.11997611075639725, -0.0014587859623134136, -0.0814819261431694, -0.07051543146371841, 0.13240055739879608, 0.09453459829092026, 0.059176456183195114, -0.11870765686035156, -0.11844394356012344, 0.03099086321890354, -0.006219489499926567, 0.1507183015346527, -0.05483932048082352, -0.1071639433503151, -0.014218289405107498, 0.021074235439300537, -0.08101941645145416, 0.05365782976150513, 0.03282339498400688, -0.1910371035337448, -0.014108319766819477, -0.018516231328248978, 0.0030566833447664976, 0.0345686674118042, 0.04240766912698746, -0.03836944326758385, 0.013129590079188347, -0.061437539756298065, 0.03723277896642685, -0.0764591321349144, -0.15673057734966278, 0.09358177334070206, -0.03781820461153984, -0.036567769944667816, -0.07362424582242966, -0.12325601279735565, -0.10965756326913834, -0.00870539341121912, 0.18063132464885712, -0.0650293380022049, 0.12737609446048737, -0.08974640816450119, 0.16463153064250946, -0.09367158263921738, 0.04406534880399704, 0.02875453047454357, -0.004799217917025089, 0.015664109960198402, -0.020615560933947563, 0.057351429015398026, -0.14420178532600403, 0.02290758304297924, 0.12231700867414474, -0.12918061017990112, 0.0005659759044647217, -0.014546230435371399, -0.14124137163162231, 0.18764667212963104, 0.14138206839561462, 0.0678446814417839, 0.16340671479701996, 0.30424514412879944, -0.12402398884296417, -0.1444389373064041, -0.07677639275789261, -0.15573832392692566, -0.015483765862882137, 0.09562627226114273, -0.2575684189796448, -0.008026241324841976, 0.11346008628606796, -0.04883482679724693, 0.1629130095243454, -0.37011346220970154, 0.027886198833584785, 0.0646720603108406, -0.07478975504636765, 0.5096047520637512, -0.10557997971773148, -0.22323021292686462, -0.07675741612911224, -0.01627408154308796, 0.1173178181052208, -0.005499838851392269, 0.03641383722424507, 0.021035755053162575, -0.029214274138212204, 0.0980798527598381, 0.03872258961200714, 0.21533003449440002, -0.041425418108701706, 0.00749963941052556, -0.024934669956564903, -0.2564402222633362, 0.08134757727384567, -0.00656838808208704, -0.18341463804244995, 0.08708645403385162, -0.14130239188671112, -0.1297757774591446, -0.04337238147854805, -0.059819672256708145, -0.03937342390418053, 0.03522225469350815, 0.01911836490035057, 0.015458466485142708, -0.01845717802643776, -0.17097772657871246, -0.00045424079871736467, 0.23587894439697266, -0.11832650750875473, 0.1614597588777542, 0.037934932857751846, 0.0547432117164135, -0.01794649288058281, 0.03251371160149574, -0.08758243173360825, 0.013865727931261063, 0.1039794459939003, 0.02706274576485157, -0.022367767989635468, 0.10289111733436584, -0.11706582456827164, 0.011813342571258545, 0.0076698497869074345, -0.07211688905954361, 0.027213752269744873, 0.18719582259655, -0.010698697529733181, -0.1131027415394783, -0.07065830379724503, -0.051526281982660294, 0.15106874704360962, -0.059180162847042084, 0.09861843287944794, 0.2548687160015106, -0.028773002326488495, -0.016324693337082863, -0.04751427471637726, -0.04800576716661453, 0.0005511532071977854, 0.05421561375260353, 0.0046352786011993885, -0.08796688169240952, 0.13096922636032104, 0.0959528386592865, -0.16941528022289276, -0.045294858515262604, 0.20247438549995422, -0.008774841204285622, -0.036578886210918427, -0.10211877524852753, 0.13248270750045776, -0.21487018465995789, -0.0897306352853775, -0.04064701125025749, -0.0767851173877716, -0.005548895336687565, 0.23551353812217712, -0.019130690023303032, 0.08308116346597672, 0.03541475906968117, -0.010474774986505508, 0.2632210850715637, -0.10127685964107513, -0.11867937445640564, -0.06622274219989777, -0.06552315503358841, -0.09476747363805771, 0.00640664529055357, 0.11147623509168625, -0.08922583609819412, -0.12385068833827972, -0.36147525906562805, 0.10076143592596054, -0.11860332638025284, -0.048022493720054626, -0.020881574600934982, -0.06021396815776825, 0.02600165642797947, 0.006948431488126516, -0.01003008708357811, -0.11694831401109695, -0.12800219655036926, 0.08580198138952255, 0.057557687163352966, 0.10590500384569168, 0.006005014292895794, -0.005968853365629911, 0.08873176574707031, 0.05192222818732262, 0.03843323513865471, 0.02816646918654442, -0.0028982667718082666, 0.2253582924604416, -0.22647447884082794, -0.02755584567785263, 0.14677567780017853, 0.020862944424152374, 0.11365275084972382, 0.16491778194904327, -0.07173026353120804, 0.011713937856256962, -0.0007388021913357079, 0.05442918837070465, -0.10260678082704544, -0.14302502572536469, 0.019044438377022743, 0.08286794275045395, -0.3597770035266876, 0.06456943601369858, -0.06287183612585068, 0.16449962556362152, -0.1082569807767868, -0.024430839344859123, 0.05926256626844406, 0.08667263388633728, 0.08572910726070404, -0.007372879423201084, 0.021287711337208748, -0.0330984927713871, 0.03049444779753685, -0.05542946234345436, -0.00735900504514575, 0.08901917189359665, 0.28908783197402954, 0.1283903270959854, 0.158016636967659, -0.0265122652053833, 0.11102204769849777, -0.007379904855042696, 0.04378620907664299, 0.137867271900177, 0.1570584625005722, -0.05326078087091446, -0.13630355894565582, 0.06275708228349686, -0.007353750988841057, 0.01731698028743267, 0.018207097426056862, 0.096134714782238, 0.1938323676586151, 0.11833313852548599, 0.06284593790769577, -0.0019597113132476807, 0.09084735810756683, -0.08395007252693176, 0.10244999080896378, -0.01746642030775547, -0.058213911950588226, -0.016666093841195107, 0.06443687528371811, -0.007472160272300243, 0.10375862568616867, -0.038762468844652176, 0.0187198705971241, -0.15555338561534882, -0.0643991008400917, 0.08242545276880264, -0.14018386602401733, -0.000665362342260778, -0.0019304188899695873, 0.03859187662601471, 0.13094277679920197, -0.024316491559147835, -0.04304959252476692, 0.08351630717515945, -0.035511624068021774, -0.22064584493637085, -0.03124699555337429, 0.006614028476178646, 0.27232083678245544, -0.08952561020851135, -0.009076948277652264, -0.1181241050362587, -0.010721122846007347, -0.0662127360701561, 0.06478659808635712, -0.013461311347782612, -0.07641558349132538, -0.18984529376029968, -0.0115274079144001, 0.007157343439757824, 0.10340874642133713, -0.04027266055345535, 0.1916552037000656, 0.008613714948296547, -0.013371849432587624, 0.0032019878271967173, 0.23856037855148315, 0.025897901505231857, 0.058678969740867615, 0.023616135120391846, 0.09016501903533936, -0.015506446361541748, 0.18818892538547516, -0.1527731567621231, -0.0555066354572773, -0.032955706119537354, 0.18716247379779816, 0.21459969878196716, -0.09972689300775528, -0.046883296221494675, 0.03533530980348587, 0.08017822355031967, 0.15546700358390808, 0.14439664781093597, -0.06723584234714508, 0.37707895040512085, 0.030761176720261574, -0.04189767315983772, 0.016427388414740562, 0.0847005620598793, -0.1010797992348671, 0.07319114357233047, 0.03466584533452988, -0.02399405464529991, 0.013925032690167427, 0.23189346492290497, -0.18697090446949005, 0.08369190990924835, 0.11091925948858261, -0.2592514157295227, -0.07758376002311707, -0.10361980646848679, 0.2143496721982956, 0.001310389838181436, 0.1859782338142395, 0.011131529696285725, -0.25885096192359924, -0.1952725052833557, 0.034760233014822006, -0.286277711391449, -0.2390614151954651, 0.09268607944250107, 0.0842994898557663, 0.10751577466726303, -0.05063255876302719, -0.005459809210151434, 0.0011001029051840305, 0.05926801636815071, 0.03768886998295784, 0.012350965291261673, 0.05515265464782715, 0.05524672567844391, -0.05759291723370552, -0.1346958577632904, 0.014010508544743061, -0.07233405858278275, 0.09305503219366074, -0.06516813486814499, -0.0018097060965374112, 0.15676729381084442, -0.013531971722841263, 0.0070110587403178215, 0.06816628575325012, -0.20539912581443787, -0.02722742035984993, 0.057598184794187546, 0.05770479515194893, -0.02004157565534115, -0.03194553405046463, -0.01700231432914734, 0.09995513409376144, 0.028794443234801292, -0.16473980247974396, 0.022869080305099487, -0.08907707035541534, 0.20935799181461334, -0.07833398878574371, -0.09730778634548187, 0.0800146833062172, 0.02095833048224449, 0.16901904344558716, -0.11441931873559952, -0.009093457832932472, 0.06105302646756172, 0.019741233438253403, 0.07185627520084381, -0.24376635253429413, 0.09801482409238815, -0.002468518912792206, 0.0014054551720619202, 0.01524753961712122 ]
818eabd29dcfa56d9569a43eb2a2e9f53b74a88c
# Dataset Card for "SNLI-VE_test" [More Information needed](https://github.com/huggingface/datasets/blob/main/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
Multimodal-Fatima/SNLI-VE_test
[ "region:us" ]
2023-02-07T14:50:42+00:00
{"dataset_info": {"features": [{"name": "image", "dtype": "image"}, {"name": "filename", "dtype": "string"}, {"name": "premise", "dtype": "string"}, {"name": "hypothesis", "dtype": "string"}, {"name": "label", "dtype": {"class_label": {"names": {"0": "entailment", "1": "neutral", "2": "contradiction"}}}}, {"name": "id", "dtype": "int64"}, {"name": "id_image", "dtype": "int64"}, {"name": "clip_tags_ViT_L_14", "sequence": "string"}, {"name": "blip_caption", "dtype": "string"}, {"name": "LLM_Description_gpt3_downstream_tasks_visual_genome_ViT_L_14", "sequence": "string"}], "splits": [{"name": "test", "num_bytes": 2483209080.488, "num_examples": 17901}], "download_size": 911606574, "dataset_size": 2483209080.488}}
2023-02-07T22:33:34+00:00
[]
[]
TAGS #region-us
# Dataset Card for "SNLI-VE_test" More Information needed
[ "# Dataset Card for \"SNLI-VE_test\"\n\nMore Information needed" ]
[ "TAGS\n#region-us \n", "# Dataset Card for \"SNLI-VE_test\"\n\nMore Information needed" ]
[ 6, 16 ]
[ "passage: TAGS\n#region-us \n# Dataset Card for \"SNLI-VE_test\"\n\nMore Information needed" ]
[ -0.1627569943666458, 0.11508823931217194, -0.0036963766906410456, -0.027909088879823685, 0.03395344316959381, 0.05616690590977669, 0.13824735581874847, 0.10873070359230042, 0.18091270327568054, -0.007294484414160252, 0.15617230534553528, 0.07820721715688705, -0.0010647911112755537, 0.21382342278957367, -0.04580860957503319, 0.10802192240953445, 0.07990800589323044, 0.05208476632833481, -0.059010669589042664, 0.06988446414470673, 0.05652056634426117, -0.07922005653381348, 0.09637283533811569, -0.06235756725072861, -0.1894472986459732, 0.12846404314041138, -0.03797322139143944, -0.02286665327847004, 0.11201401799917221, -0.12816122174263, 0.1705785095691681, 0.0931592732667923, 0.048201415687799454, -0.17648322880268097, -0.005472799297422171, -0.05500946566462517, 0.03164016455411911, -0.0002694657305255532, -0.03831184282898903, 0.039827700704336166, -0.12537437677383423, 0.042141951620578766, -0.008031422272324562, -0.02175445668399334, -0.04362491890788078, -0.2155824601650238, -0.09064467251300812, -0.10619533061981201, -0.04526142403483391, 0.007961764931678772, 0.053641535341739655, 0.25960221886634827, -0.31768110394477844, 0.02719002217054367, 0.1521388739347458, -0.011991345323622227, 0.08967949450016022, 0.16322626173496246, -0.0017730972031131387, 0.06729720532894135, 0.04149830341339111, 0.058008790016174316, 0.07870317995548248, -0.050877198576927185, -0.11820655316114426, -0.007817498408257961, -0.03415509685873985, 0.16012229025363922, -0.08698149770498276, -0.07350898534059525, 0.30326783657073975, -0.020641569048166275, -0.04899740591645241, 0.0868464782834053, -0.05198166146874428, -0.07578156143426895, 0.13764995336532593, -0.060728512704372406, 0.09071341156959534, -0.10530313849449158, 0.08959010243415833, 0.0023952533956617117, -0.11067166924476624, -0.2103474736213684, -0.13507424294948578, 0.06544847041368484, 0.013576271012425423, 0.10076569020748138, -0.15123359858989716, 0.021275965496897697, 0.019278554245829582, -0.05749461427330971, -0.07660334557294846, -0.0792495459318161, -0.14691805839538574, -0.037954188883304596, -0.0778689831495285, -0.1251620352268219, 0.21721945703029633, 0.14110736548900604, -0.0216907300055027, -0.02844979614019394, -0.04214630648493767, 0.05792596563696861, 0.10409794747829437, -0.08340013027191162, 0.02590349316596985, 0.09412316232919693, -0.06978289783000946, -0.037155602127313614, -0.045304302126169205, -0.03615584596991539, -0.05024627223610878, -0.12663914263248444, 0.010215938091278076, 0.14407286047935486, -0.06591910868883133, -0.14551295340061188, 0.022895140573382378, 0.012404097244143486, -0.07809270173311234, -0.14131085574626923, -0.04375992342829704, 0.02166629210114479, -0.06020887941122055, -0.024468902498483658, -0.10543955117464066, -0.08772291243076324, 0.02376968041062355, 0.03386113420128822, -0.07918182015419006, -0.03614688664674759, -0.05636095255613327, 0.04988617077469826, 0.06846547871828079, -0.29843398928642273, 0.050747618079185486, -0.1199100911617279, -0.26307904720306396, -0.018433626741170883, -0.02849387750029564, 0.012501521967351437, 0.1953086107969284, -0.02228645794093609, 0.12935639917850494, -0.02669217810034752, -0.1115322858095169, 0.07258600741624832, -0.05226379632949829, 0.0992836058139801, 0.0751795768737793, 0.022014370188117027, -0.11980339884757996, -0.017132245004177094, -0.16722749173641205, -0.040246643126010895, 0.16036462783813477, -0.04617345333099365, -0.16259314119815826, 0.05125913769006729, -0.05525372922420502, -0.03800638020038605, -0.07858971506357193, 0.04173656925559044, 0.027358056977391243, 0.16414549946784973, -0.19462555646896362, -0.008650636300444603, 0.10765482485294342, -0.17546385526657104, -0.19183066487312317, 0.11878446489572525, 0.004151815548539162, -0.10547197610139847, 0.01818528026342392, 0.4023784399032593, 0.08443929255008698, -0.12687167525291443, 0.04349127039313316, 0.16172800958156586, -0.09195274859666824, -0.21905869245529175, 0.16727367043495178, -0.03857723996043205, -0.19524677097797394, 0.050458330661058426, -0.09649447351694107, -0.011035354807972908, -0.03505534678697586, -0.10126926004886627, -0.10475723445415497, -0.1563788205385208, 0.11025765538215637, 0.04033925011754036, 0.09339400380849838, -0.04308785870671272, 0.08207111060619354, -0.04889827221632004, 0.13852748274803162, 0.00988935399800539, -0.020279673859477043, -0.04444025456905365, 0.32513099908828735, -0.07545164227485657, -0.039760880172252655, -0.11287180334329605, -0.003100620349869132, 0.016695242375135422, -0.06983713060617447, -0.005424873903393745, 0.098917655646801, 0.05681982263922691, -0.06339216977357864, 0.057029154151678085, 0.016586335375905037, 0.09153732657432556, 0.01828031614422798, 0.06439793854951859, 0.030911333858966827, -0.0005239465972408652, -0.017007824033498764, -0.07377446442842484, -0.06255443394184113, -0.07214298099279404, 0.06656162440776825, 0.06305983662605286, -0.027849115431308746, 0.017846930772066116, 0.016064859926700592, -0.04078199341893196, -0.04041599854826927, 0.016274450346827507, -0.03907092288136482, -0.06495814025402069, -0.015959246084094048, -0.0013180931564420462, 0.14485913515090942, 0.2487015426158905, 0.038328610360622406, -0.03558929264545441, 0.015739141032099724, -0.08508951961994171, -0.016708390787243843, 0.05232997238636017, -0.13057073950767517, -0.017155535519123077, -0.25107815861701965, -0.13233815133571625, 0.01659531518816948, -0.10296324640512466, 0.05025239661335945, 0.015910044312477112, -0.06187974661588669, -0.009587433189153671, 0.07453969120979309, 0.011026606895029545, -0.18477743864059448, 0.13505181670188904, 0.10131518542766571, -0.10422154515981674, 0.1520155519247055, -0.1537802368402481, -0.12646977603435516, -0.011167103424668312, 0.03322288766503334, -0.09119845926761627, 0.25638774037361145, -0.20345211029052734, 0.07890185713768005, 0.08226006478071213, 0.06033078581094742, 0.04338090121746063, -0.055789168924093246, -0.1064465194940567, 0.04092377796769142, -0.013527627103030682, -0.24403657019138336, 0.07923999428749084, 0.026704834774136543, 0.11194850504398346, -0.029981397092342377, -0.056180477142333984, 0.06807412207126617, -0.05824209749698639, -0.09465252608060837, 0.18405525386333466, -0.11420588195323944, -0.13686083257198334, -0.0188678577542305, -0.04052800312638283, 0.07595863193273544, 0.03778083994984627, -0.00912923738360405, -0.2351061999797821, 0.013890975154936314, -0.01716792583465576, -0.05703399330377579, -0.11134864389896393, 0.044962506741285324, -0.0760001614689827, 0.06504248827695847, -0.049295585602521896, -0.07353121787309647, 0.06667650490999222, -0.07570089399814606, 0.12511779367923737, 0.09237753599882126, -0.07433836162090302, 0.16355077922344208, 0.10734517127275467, -0.058595314621925354, 0.07589514553546906, -0.0014233464607968926, 0.10504008084535599, -0.020477838814258575, -0.07401836663484573, 0.08727455884218216, -0.0028121494688093662, -0.041270799934864044, 0.045697469264268875, 0.007061535492539406, -0.07896947860717773, -0.02576042152941227, -0.12067044526338577, -0.14771002531051636, -0.30974748730659485, -0.060483165085315704, -0.0038725431077182293, 0.018949858844280243, -0.03638233244419098, 0.045818861573934555, -0.04106304422020912, 0.12558449804782867, 0.14820629358291626, -0.10572560131549835, -0.17574475705623627, -0.12141136825084686, 0.0328255370259285, -0.014499773271381855, -0.031498830765485764, -0.12582182884216309, -0.02162005379796028, 0.11453914642333984, 0.15800721943378448, 0.26455026865005493, -0.011324622668325901, 0.10899817198514938, 0.10526838898658752, 0.15968765318393707, 0.06809047609567642, 0.10296040028333664, 0.06770897656679153, -0.011509246192872524, 0.07393372803926468, -0.030163999646902084, -0.0058298734948039055, -0.04094095528125763, 0.08901229500770569, -0.052757445722818375, -0.04844830185174942, -0.1020626574754715, 0.0594329759478569, -0.1712777316570282, 0.17482100427150726, -0.2185211181640625, 0.10238342732191086, -0.046382494270801544, 0.07721687108278275, -0.05789514631032944, 0.09322582930326462, 0.13395416736602783, 0.010620453394949436, 0.04079403355717659, 0.0321301594376564, -0.0232157614082098, 0.018310388550162315, 0.03565824776887894, -0.07356532663106918, -0.13404765725135803, -0.00938404444605112, 0.15718413889408112, -0.2664273679256439, 0.2677423655986786, -0.03436366096138954, -0.06620831042528152, -0.0760265663266182, -0.060911599546670914, -0.02381720393896103, 0.11420948803424835, 0.24479228258132935, 0.010830296203494072, -0.12326689809560776, -0.18872642517089844, 0.015616288408637047, 0.023897280916571617, 0.11003373563289642, 0.07722726464271545, -0.05722144618630409, 0.03826263174414635, 0.05117153748869896, -0.09967264533042908, -0.038246508687734604, -0.18605846166610718, -0.013227502815425396, 0.0489860363304615, -0.004040759522467852, -0.1403169333934784, -0.04210202023386955, -0.0020963342394679785, -0.12717953324317932, 0.02767110802233219, -0.08447517454624176, 0.020328300073742867, -0.09746270626783371, 0.053822215646505356, 0.1351780742406845, -0.017507432028651237, -0.044791631400585175, 0.0057679140008986, 0.00796908512711525, -0.00478283641859889, -0.14231565594673157, -0.022315919399261475, -0.015437060035765171, 0.03497347980737686, -0.12608972191810608, 0.04915811866521835, -0.036901652812957764, 0.017371680587530136, 0.1058763787150383, -0.0174548476934433, -0.03769756853580475, -0.026301370933651924, 0.15021322667598724, -0.11275852471590042, -0.02398034557700157, 0.26839691400527954, 0.022574786096811295, 0.014726356603205204, 0.09056338667869568, -0.04839744791388512, 0.21472075581550598, 0.09931964427232742, -0.025715870782732964, 0.14656756818294525, 0.15183046460151672, -0.12199044972658157, -0.28275296092033386, 0.06180272996425629, -0.1320265680551529, 0.05574158579111099, 0.13235603272914886, -0.17612391710281372, 0.10882604122161865, 0.17450979351997375, -0.058878812938928604, 0.12363629788160324, -0.20784904062747955, -0.039150215685367584, 0.19858111441135406, 0.07174592465162277, 0.3437756896018982, -0.09259185194969177, -0.07601570338010788, -0.045643217861652374, 0.009813175536692142, 0.11181516200304031, -0.019045641645789146, 0.020736558362841606, -0.09792060405015945, 0.029295118525624275, 0.0655672699213028, -0.09321755915880203, 0.20869611203670502, 0.03576992079615593, 0.08085357397794724, -0.06310023367404938, -0.02034641057252884, -0.004611187148839235, -0.0915660411119461, 0.13571104407310486, -0.005025213118642569, 0.12090642005205154, -0.17763879895210266, -0.012794277630746365, -0.01727956160902977, 0.08165696263313293, 0.027170758694410324, -0.062419913709163666, -0.14504382014274597, 0.0020070259924978018, -0.06675776839256287, -0.03204285353422165, 0.10216474533081055, -0.06822223961353302, -0.00337510509416461, -0.026307186111807823, 0.09961970150470734, -0.09457477182149887, 0.006705623585730791, 0.056538090109825134, -0.011541144922375679, 0.05955274775624275, -0.19015344977378845, 0.025370219722390175, 0.1705627292394638, 0.08313511312007904, -0.015657296404242516, 0.0759034976363182, -0.0950237587094307, -0.011339601129293442, 0.17443019151687622, -0.08730055391788483, -0.03542090207338333, 0.019466636702418327, -0.21503159403800964, 0.006735896226018667, 0.07327554374933243, -0.006607380695641041, 0.033353291451931, 0.050631992518901825, -0.033915646374225616, 0.04582447558641434, -0.07964463531970978, 0.19404469430446625, 0.1313745081424713, 0.09247319400310516, -0.1458292156457901, 0.16267840564250946, 0.008160386234521866, -0.03698958456516266, -0.012098012492060661, -0.05334293842315674, -0.0843014344573021, -0.0987265482544899, -0.06751327216625214, 0.1568996012210846, -0.019432397559285164, -0.15711744129657745, -0.09581427276134491, -0.09383130073547363, 0.020648714154958725, 0.14745670557022095, 0.13594333827495575, 0.1632569581270218, 0.0975862592458725, -0.09011701494455338, 0.007856265641748905, 0.03306629881262779, -0.06329561024904251, 0.09874643385410309, -0.06585797667503357, -0.17555643618106842, -0.10157733410596848, 0.1996155083179474, -0.10684671998023987, -0.027357472106814384, -0.11848314106464386, 0.15728017687797546, -0.23410283029079437, 0.05698532238602638, 0.10141588002443314, -0.05733261629939079, 0.051347795873880386, 0.002604380249977112, -0.019982505589723587, 0.014400100335478783, -0.119089275598526, 0.14856575429439545, 0.1093902513384819, 0.04016359522938728, -0.06925643235445023, 0.02454407699406147, 0.08635227382183075, -0.0070176515728235245, 0.10614718496799469, 0.05742724984884262, -0.014903738163411617, 0.1553725153207779, -0.1713288128376007, -0.11234759539365768, 0.022649593651294708, 0.12542173266410828, 0.012974618934094906, -0.05206963047385216, 0.04573078453540802, 0.1527242511510849, -0.05569525063037872, 0.08934540301561356, -0.07966554164886475, -0.04068966582417488, 0.017204158008098602, -0.08540572226047516, -0.10480991005897522, -0.016102531924843788, -0.0535353347659111, 0.12933064997196198, 0.09138162434101105, 0.047419071197509766, 0.059969767928123474, -0.0007458661566488445, -0.010584359057247639, -0.024001900106668472, 0.034860655665397644, -0.11257708072662354, -0.16182240843772888, 0.08116935938596725, 0.031966570764780045, -0.0781196802854538, 0.39518630504608154, -0.061638958752155304, -0.03390734642744064, -0.016515232622623444, 0.028711190447211266, 0.09786146134138107, -0.009626769460737705, 0.2766924202442169, 0.05430065840482712, -0.03831648826599121, -0.06051178276538849, -0.059369709342718124, -0.05872424319386482, 0.07866954058408737, 0.07185539603233337, 0.11373189836740494, 0.000429004430770874, 0.07351855933666229, 0.026968497782945633, -0.03848883882164955, 0.0739467591047287, -0.03350198268890381, -0.05189108848571777, 0.04631977528333664, 0.10815532505512238, 0.0016751083312556148, 0.05416645109653473, -0.015829365700483322, 0.024923305958509445, -0.05187520757317543, -0.0967128723859787, -0.20625847578048706, -0.07815475761890411, -0.034475259482860565, -0.11567534506320953, 0.055622704327106476, -0.0086072301492095, -0.01563926599919796, 0.23963047564029694, 0.08216525614261627, -0.0067449091002345085, 0.08964045345783234, 0.021348141133785248, 0.1451820433139801, 0.029131365939974785, -0.04590102657675743, -0.12393106520175934, 0.041000016033649445, -0.06425046920776367, 0.11123638600111008, -0.1430807262659073, -0.007936831563711166, -0.06106376275420189, -0.0036153863184154034, -0.040569305419921875, -0.06642287224531174, -0.0024505469482392073, -0.0441398061811924, 0.013555069454014301, -0.09919590502977371, 0.032114073634147644, 0.034063223749399185, 0.06609027832746506, -0.003606064710766077, 0.10819993913173676, 0.09049622714519501, 0.02867165021598339, -0.034936703741550446, -0.009581787511706352, 0.04101928323507309, 0.08973284065723419, 0.013691275380551815, -0.06661254912614822, -0.053270623087882996, 0.1678801327943802, 0.14913758635520935, 0.06452399492263794, -0.009635859169065952, 0.04765117168426514, 0.03767234832048416, -0.05569548159837723, 0.15093369781970978, -0.028435824438929558, 0.1244208961725235, -0.00008048174640862271, -0.04126177728176117, 0.012229123152792454, -0.06383912265300751, 0.011843759566545486, 0.04911428317427635, 0.07393254339694977, 0.006616647355258465, -0.1237788274884224, 0.0750315859913826, -0.15835072100162506, 0.08475891500711441, 0.2095489799976349, 0.04735223948955536, -0.10384179651737213, -0.014936272986233234, 0.12628905475139618, -0.17237159609794617, -0.046554211527109146, -0.13234053552150726, -0.0388040728867054, -0.05257367342710495, -0.0508042648434639, -0.2418835312128067, -0.20954972505569458, 0.06285262852907181, 0.1041356772184372, 0.13257566094398499, 0.004998321644961834, 0.28189194202423096, -0.010267255827784538, 0.03294648975133896, -0.1550309658050537, 0.1190190315246582, 0.04981732368469238, 0.005248899105936289, 0.0006664888351224363, 0.07884840667247772, -0.007127214688807726, 0.027842151001095772, 0.04221043363213539, 0.04987327381968498, -0.03619590774178505, 0.11513131111860275, 0.010487773455679417, -0.12101168930530548, 0.022615935653448105, -0.06562180817127228, 0.0790172815322876, 0.007557327393442392, -0.016874682158231735, 0.047160957008600235, -0.09299062192440033, 0.13063152134418488, 0.011006133630871773, -0.16776043176651, 0.012660047970712185, -0.0660054013133049, -0.007705633528530598, 0.119841068983078, -0.06627850234508514, -0.11623512208461761, 0.07116783410310745, -0.07447578012943268, 0.011670590378344059, 0.057500600814819336, 0.0645342618227005, 0.21132060885429382, 0.14500781893730164, -0.0053362068720161915, -0.03767756000161171, 0.07282590866088867, 0.010447689332067966, -0.09082155674695969, -0.1664176881313324 ]
f55f490265170e69073ae2d62c9c79ff405be6e6
# Dataset Card for `BanglaRQA` ## Table of Contents - [Dataset Card for `BanglaRQA`](#dataset-card-for-BanglaRQA) - [Table of Contents](#table-of-contents) - [Dataset Description](#dataset-description) - [Dataset Summary](#dataset-summary) - [Languages](#languages) - [Usage](#usage) - [Dataset Structure](#dataset-structure) - [Data Instances](#data-instances) - [Data Fields](#data-fields) - [Data Splits](#data-splits) - [Dataset Creation](#dataset-creation) - [Additional Information](#additional-information) - [Licensing Information](#licensing-information) - [Citation Information](#citation-information) ## Dataset Description - **Repository:** [https://github.com/sartajekram419/BanglaRQA](https://github.com/sartajekram419/BanglaRQA) - **Paper:** [BanglaRQA: A Benchmark Dataset for Under-resourced Bangla Language Reading Comprehension-based Question Answering with Diverse Question-Answer Types](https://aclanthology.org/2022.findings-emnlp.186) ### Dataset Summary This is a human-annotated Bangla Question Answering (QA) dataset with diverse question-answer types. ### Languages * `Bangla` ### Usage ```python from datasets import load_dataset dataset = load_dataset("sartajekram/BanglaRQA") ``` ## Dataset Structure ### Data Instances One example from the dataset is given below in JSON format. ``` { 'passage_id': 'bn_wiki_2977', 'title': 'ফাজিল পরীক্ষা', 'context': 'ফাজিল পরীক্ষা বাংলাদেশ ও ভারতের আলিয়া মাদ্রাসায় অনুষ্ঠিত একটি সরকারি পরীক্ষা। ফাজিল পরীক্ষা বাংলাদেশে ডিগ্রি সমমানের, কখনো স্নাতক সমমানের একটি পরীক্ষা, যা একটি ফাজিল মাদ্রাসায় অনুষ্ঠিত হয়ে থাকে। তবে ভারতে ফাজিল পরীক্ষাকে উচ্চ মাধ্যমিক শ্রেণীর (১১ বা ১২ ক্লাস) মান বলে বিবেচিত করা হয়। ফাজিল পরীক্ষা বাংলাদেশ ভারত ও পাকিস্তানের সরকারি স্বীকৃত আলিয়া মাদরাসায় প্রচলিত রয়েছে। বাংলাদেশের ফাজিল পরীক্ষা ইসলামি আরবি বিশ্ববিদ্যালয়ের অধীনে অনুষ্ঠিত হয়ে থাকে ও ভারতের ফাজিল পরীক্ষা পশ্চিমবঙ্গ মাদ্রাসা শিক্ষা পর্ষদের অধীনে অনুষ্ঠিত হয়ে থাকে।\n\n১৯৪৭ সালে ঢাকা আলিয়া মাদ্রাসা ঢাকায় স্থানান্তরের পূর্বে বাংলাদেশ ও ভারতের ফাজিল পরীক্ষা কলকাতা আলিয়া মাদ্রাসার অধীনে অনুষ্ঠিত হতো। ফাযিল পরীক্ষা বর্তমানে ইসলামি আরবী বিশ্ববিদ্যালয়ের অধীনে অনুষ্ঠিত হয়। যা পূর্বে মাদরাসা বোর্ড ও ইসলামি বিশ্ববিদ্যালয়ের আধীনে অনুষ্ঠিত হত। মাদ্রাসা-ই-আলিয়া ঢাকায় স্থানান্তরিত হলে ১৯৪৮ সালে মাদ্রাসা বোর্ডের ফাজিলগুলো পরীক্ষা ঢাকা বিশ্ববিদ্যালয় কর্তৃক গৃহীত হতো। ১৯৭৫ সালের কুদরত-এ-খুদা শিক্ষা কমিশনের সুপারিশে মাদ্রাসা বোর্ড নিয়ন্ত্রিত আলিয়া মাদ্রাসাসমূহে জাতীয় শিক্ষাক্রম ও বহুমুখী পাঠ্যসূচি প্রবর্তিত করা হয়। ১৯৮০ সালে অনুষ্ঠিত ফাজিল পরীক্ষায় এই পাঠ্যসুচী কার্যকর হয়। এই শিক্ষা কমিশন অনুসারে ফাজিল শ্রেণীতে ইসলামি শিক্ষার পাশাপাশি সাধারণ পাঠ্যসূচী অন্তর্ভুক্ত করে ফাজিল পরীক্ষাকে সাধারণ উচ্চ মাধ্যমিক এইচ এস সির সমমান ঘোষণা করা হয়।\n\n১৯৭৮ সালে অধ্যাপক মুস্তফা বিন কাসিমের নেতৃত্বে সিনিয়র মাদ্রাসা শিক্ষা ব্যবস্থা কমিটি গঠিত হয়। এই কমিটির নির্দেশনায় ১৯৮৪ সালে সাধারণ শিক্ষার স্তরের সঙ্গে বাংলাদেশ মাদ্রাসা বোর্ড নিয়ন্ত্রিত আলিয়া মাদ্রাসা শিক্ষা স্তরের সামঞ্জস্য করা হয়। ফাজিল স্তরকে ২ বছর মেয়াদী কোর্সে উন্নিত করে, মোট ১৬ বছর ব্যাপী আলিয়া মাদ্রাসার পূর্ণাঙ্গ আধুনিক শিক্ষা ব্যবস্থা প্রবর্তন করা হয়। এই কমিশনের মাধ্যমেই সরকার ফাজিল পরীক্ষাকে সাধারণ ডিগ্রি মান ঘোষণা করে।', 'question_id': 'bn_wiki_2977_01', 'question_text': 'ফাজিল পরীক্ষা বাংলাদেশ ও ভারতের আলিয়া মাদ্রাসায় অনুষ্ঠিত একটি সরকারি পরীক্ষা ?', 'is_answerable': '1', 'question_type': 'confirmation', 'answers': { 'answer_text': ['হ্যাঁ', 'হ্যাঁ '], 'answer_type': ['yes/no', 'yes/no'] }, } ``` ### Data Splits | split |count | |----------|--------| |`train`| 11,912 | |`validation`| 1,484 | |`test`| 1,493 | ## Additional Information ### Licensing Information Contents of this repository are restricted to only non-commercial research purposes under the [Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (CC BY-NC-SA 4.0)](https://creativecommons.org/licenses/by-nc-sa/4.0/). Copyright of the dataset contents belongs to the original copyright holders. ### Citation Information If you use the dataset, please cite the following paper: ``` @inproceedings{ekram-etal-2022-banglarqa, title = "{B}angla{RQA}: A Benchmark Dataset for Under-resourced {B}angla Language Reading Comprehension-based Question Answering with Diverse Question-Answer Types", author = "Ekram, Syed Mohammed Sartaj and Rahman, Adham Arik and Altaf, Md. Sajid and Islam, Mohammed Saidul and Rahman, Mehrab Mustafy and Rahman, Md Mezbaur and Hossain, Md Azam and Kamal, Abu Raihan Mostofa", booktitle = "Findings of the Association for Computational Linguistics: EMNLP 2022", month = dec, year = "2022", address = "Abu Dhabi, United Arab Emirates", publisher = "Association for Computational Linguistics", url = "https://aclanthology.org/2022.findings-emnlp.186", pages = "2518--2532", abstract = "High-resource languages, such as English, have access to a plethora of datasets with various question-answer types resembling real-world reading comprehension. However, there is a severe lack of diverse and comprehensive question-answering datasets in under-resourced languages like Bangla. The ones available are either translated versions of English datasets with a niche answer format or created by human annotations focusing on a specific domain, question type, or answer type. To address these limitations, this paper introduces BanglaRQA, a reading comprehension-based Bangla question-answering dataset with various question-answer types. BanglaRQA consists of 3,000 context passages and 14,889 question-answer pairs created from those passages. The dataset comprises answerable and unanswerable questions covering four unique categories of questions and three types of answers. In addition, this paper also implemented four different Transformer models for question-answering on the proposed dataset. The best-performing model achieved an overall 62.42{\%} EM and 78.11{\%} F1 score. However, detailed analyses showed that the performance varies across question-answer types, leaving room for substantial improvement of the model performance. Furthermore, we demonstrated the effectiveness of BanglaRQA as a training resource by showing strong results on the bn{\_}squad dataset. Therefore, BanglaRQA has the potential to contribute to the advancement of future research by enhancing the capability of language models. The dataset and codes are available at https://github.com/sartajekram419/BanglaRQA", } ```
sartajekram/BanglaRQA
[ "task_categories:question-answering", "task_ids:open-domain-qa", "task_ids:extractive-qa", "annotations_creators:human", "size_categories:10K<n<100K", "language:bn", "license:cc-by-nc-sa-4.0", "region:us" ]
2023-02-07T14:56:06+00:00
{"annotations_creators": ["human"], "language": ["bn"], "license": "cc-by-nc-sa-4.0", "size_categories": ["10K<n<100K"], "task_categories": ["question-answering"], "task_ids": ["open-domain-qa", "extractive-qa"]}
2023-05-06T18:04:32+00:00
[]
[ "bn" ]
TAGS #task_categories-question-answering #task_ids-open-domain-qa #task_ids-extractive-qa #annotations_creators-human #size_categories-10K<n<100K #language-Bengali #license-cc-by-nc-sa-4.0 #region-us
Dataset Card for 'BanglaRQA' ============================ Table of Contents ----------------- * Dataset Card for 'BanglaRQA' + Table of Contents + Dataset Description - Dataset Summary - Languages - Usage + Dataset Structure - Data Instances - Data Fields - Data Splits + Dataset Creation + Additional Information - Licensing Information - Citation Information Dataset Description ------------------- * Repository: URL * Paper: BanglaRQA: A Benchmark Dataset for Under-resourced Bangla Language Reading Comprehension-based Question Answering with Diverse Question-Answer Types ### Dataset Summary This is a human-annotated Bangla Question Answering (QA) dataset with diverse question-answer types. ### Languages * 'Bangla' ### Usage Dataset Structure ----------------- ### Data Instances One example from the dataset is given below in JSON format. ### Data Splits Additional Information ---------------------- ### Licensing Information Contents of this repository are restricted to only non-commercial research purposes under the Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (CC BY-NC-SA 4.0). Copyright of the dataset contents belongs to the original copyright holders. If you use the dataset, please cite the following paper:
[ "### Dataset Summary\n\n\nThis is a human-annotated Bangla Question Answering (QA) dataset with diverse question-answer types.", "### Languages\n\n\n* 'Bangla'", "### Usage\n\n\nDataset Structure\n-----------------", "### Data Instances\n\n\nOne example from the dataset is given below in JSON format.", "### Data Splits\n\n\n\nAdditional Information\n----------------------", "### Licensing Information\n\n\nContents of this repository are restricted to only non-commercial research purposes under the Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (CC BY-NC-SA 4.0). Copyright of the dataset contents belongs to the original copyright holders.\n\n\nIf you use the dataset, please cite the following paper:" ]
[ "TAGS\n#task_categories-question-answering #task_ids-open-domain-qa #task_ids-extractive-qa #annotations_creators-human #size_categories-10K<n<100K #language-Bengali #license-cc-by-nc-sa-4.0 #region-us \n", "### Dataset Summary\n\n\nThis is a human-annotated Bangla Question Answering (QA) dataset with diverse question-answer types.", "### Languages\n\n\n* 'Bangla'", "### Usage\n\n\nDataset Structure\n-----------------", "### Data Instances\n\n\nOne example from the dataset is given below in JSON format.", "### Data Splits\n\n\n\nAdditional Information\n----------------------", "### Licensing Information\n\n\nContents of this repository are restricted to only non-commercial research purposes under the Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (CC BY-NC-SA 4.0). Copyright of the dataset contents belongs to the original copyright holders.\n\n\nIf you use the dataset, please cite the following paper:" ]
[ 81, 31, 9, 11, 20, 12, 80 ]
[ "passage: TAGS\n#task_categories-question-answering #task_ids-open-domain-qa #task_ids-extractive-qa #annotations_creators-human #size_categories-10K<n<100K #language-Bengali #license-cc-by-nc-sa-4.0 #region-us \n### Dataset Summary\n\n\nThis is a human-annotated Bangla Question Answering (QA) dataset with diverse question-answer types.### Languages\n\n\n* 'Bangla'### Usage\n\n\nDataset Structure\n-----------------### Data Instances\n\n\nOne example from the dataset is given below in JSON format.### Data Splits\n\n\n\nAdditional Information\n----------------------### Licensing Information\n\n\nContents of this repository are restricted to only non-commercial research purposes under the Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (CC BY-NC-SA 4.0). Copyright of the dataset contents belongs to the original copyright holders.\n\n\nIf you use the dataset, please cite the following paper:" ]
[ -0.023190630599856377, 0.15240629017353058, 0.002035310724750161, 0.06748587638139725, 0.00659926189109683, 0.04718421772122383, 0.18825528025627136, 0.0536700040102005, 0.10407879203557968, 0.023240357637405396, 0.00964597798883915, 0.037345096468925476, 0.0672149807214737, 0.015602423809468746, -0.020467327907681465, -0.14493317902088165, -0.03183387219905853, 0.015252728946506977, 0.05551636964082718, 0.06860502809286118, 0.08728529512882233, -0.05471223592758179, 0.06680849939584732, -0.038685526698827744, -0.04119128733873367, 0.03266159072518349, 0.034821946173906326, -0.07007724791765213, 0.08297497779130936, 0.010216856375336647, 0.023220112547278404, 0.1301237791776657, 0.07339409738779068, -0.19043530523777008, 0.016440128907561302, -0.04468611627817154, -0.03884913772344589, 0.027768073603510857, 0.07029890269041061, -0.02198002114892006, 0.0426027737557888, 0.06937926262617111, -0.031559113413095474, 0.06815008819103241, -0.11097611486911774, -0.12931479513645172, -0.08331069350242615, 0.10088475793600082, 0.03709876909852028, 0.08356654644012451, -0.02847776561975479, 0.045126091688871384, -0.05451546609401703, 0.027500217780470848, 0.18407617509365082, -0.20416609942913055, 0.0021605549845844507, 0.16864153742790222, 0.09245080500841141, 0.10694023221731186, -0.06416045129299164, 0.04782329127192497, 0.024475380778312683, 0.03128901124000549, 0.02324693650007248, -0.17699475586414337, -0.16821371018886566, 0.033800508826971054, -0.03802260756492615, 0.010651499964296818, 0.41211724281311035, 0.01926160603761673, -0.05996013060212135, -0.06913118064403534, 0.011312892660498619, 0.1334776133298874, -0.0309832114726305, 0.10806610435247421, 0.024455152451992035, -0.013122094795107841, 0.006672168616205454, -0.05689654499292374, -0.07241596281528473, -0.053333453834056854, -0.036218348890542984, -0.09034305810928345, -0.03919128701090813, 0.028795909136533737, -0.05845123529434204, 0.006741053890436888, -0.0575418658554554, -0.06103350222110748, -0.015478561632335186, -0.10104995965957642, 0.037932977080345154, 0.012686277739703655, -0.018563756719231606, -0.12008488923311234, 0.03744916245341301, 0.0653827041387558, -0.04626394435763359, -0.04641486704349518, -0.1478596329689026, 0.10212483257055283, 0.12783153355121613, 0.025326799601316452, -0.14066855609416962, -0.00040501588955521584, 0.0984262004494667, -0.05520433187484741, 0.01828886941075325, -0.06984884291887283, -0.10201507061719894, 0.03854404389858246, -0.06541585922241211, 0.06373666226863861, 0.07482534646987915, -0.0011953717330470681, -0.04589152708649635, -0.03483341261744499, 0.07051670551300049, -0.06031482294201851, 0.01343558356165886, 0.001351004233583808, -0.04644068703055382, -0.11523784697055817, 0.02407071553170681, 0.03846922889351845, -0.027032537385821342, 0.002384707797318697, -0.09603322297334671, -0.00684044323861599, -0.02809065580368042, -0.13014757633209229, 0.10832267999649048, -0.12368806451559067, 0.010433954186737537, -0.06571353226900101, -0.18974748253822327, -0.026323191821575165, 0.05064425989985466, -0.03649366647005081, -0.0572395883500576, 0.05882265418767929, 0.05740473046898842, 0.017696572467684746, -0.08900536596775055, -0.11236954480409622, -0.10643404722213745, 0.09467664361000061, -0.14938470721244812, 0.056796178221702576, -0.10816220939159393, 0.052447762340307236, -0.1066109910607338, 0.07325587421655655, -0.15524619817733765, -0.03729618713259697, -0.10839149355888367, -0.008401337079703808, -0.10710012167692184, -0.0747683122754097, 0.09159857034683228, -0.009894592687487602, -0.057158127427101135, 0.13294127583503723, -0.09616128355264664, -0.0010813955450430512, 0.11290261894464493, -0.08007114380598068, -0.16167733073234558, 0.027030756697058678, 0.002594452351331711, 0.1912803053855896, 0.01347692497074604, 0.3063255548477173, -0.09962201118469238, -0.05595069006085396, -0.11094087362289429, -0.004639958497136831, 0.11157984286546707, -0.025733008980751038, 0.10825168341398239, -0.060997124761343, 0.06966459006071091, -0.035505522042512894, 0.013175582513213158, -0.04095396026968956, 0.0240965336561203, -0.05232011526823044, 0.022120021283626556, -0.0024606273509562016, -0.0176615621894598, 0.04482964426279068, -0.004917444661259651, 0.033726029098033905, 0.03095293790102005, 0.041620273143053055, -0.009885791689157486, -0.0652812123298645, 0.03901180252432823, -0.03874494135379791, 0.04414770379662514, -0.09924845397472382, -0.010593937709927559, -0.13574720919132233, -0.03867964819073677, 0.032427217811346054, -0.051551174372434616, 0.0854879692196846, -0.046364251524209976, -0.016070116311311722, -0.03529147431254387, -0.05525491014122963, 0.043846357613801956, -0.062028106302022934, -0.01214027963578701, 0.008032233454287052, -0.1999966949224472, -0.01438243966549635, 0.006692139431834221, 0.10999187082052231, -0.06102782115340233, -0.03367902338504791, 0.020473532378673553, 0.004859506618231535, 0.04562020301818848, 0.002115523675456643, 0.12913848459720612, 0.06539510190486908, -0.051655352115631104, 0.03404862433671951, 0.01447171438485384, -0.0517246313393116, -0.09945790469646454, 0.19720359146595, -0.03697087988257408, -0.05101402476429939, 0.07214008271694183, -0.03893032670021057, 0.025518616661429405, -0.037224140018224716, -0.0025672405026853085, -0.03076227195560932, -0.06894531100988388, -0.011951638385653496, -0.05991247296333313, 0.010331825353205204, 0.047361038625240326, -0.14004530012607574, -0.03218340873718262, 0.002375774085521698, -0.06294842809438705, -0.016903767362236977, 0.05439326539635658, 0.22954964637756348, -0.1630309373140335, 0.15044017136096954, 0.07685000449419022, 0.0700332373380661, 0.21944870054721832, -0.015218988060951233, -0.08859549462795258, -0.017966553568840027, -0.0947064608335495, 0.02277206815779209, 0.2649464011192322, -0.04408121481537819, 0.063414067029953, 0.09078304469585419, 0.03182835131883621, -0.04248994216322899, -0.08319245278835297, -0.09534791857004166, -0.054163988679647446, -0.06490600109100342, -0.28991225361824036, -0.004061859101057053, 0.01065636333078146, 0.07983538508415222, -0.029533283784985542, 0.07580819725990295, -0.012619837187230587, -0.0413704589009285, -0.15879444777965546, 0.1240297183394432, -0.10270882397890091, -0.155824214220047, -0.1081431433558464, -0.08287810534238815, -0.11497259140014648, -0.01666196808218956, 0.058694709092378616, 0.07943989336490631, -0.08846956491470337, -0.11861718446016312, 0.010260156355798244, -0.0011564554879441857, -0.15890225768089294, -0.08996023237705231, -0.03924509882926941, -0.05503354221582413, -0.09049802273511887, 0.02426995150744915, 0.04026727005839348, -0.03943420201539993, 0.08737002313137054, -0.04754600301384926, 0.18469126522541046, 0.10485199838876724, 0.06307512521743774, -0.038678254932165146, -0.08202841877937317, 0.21081674098968506, -0.10716179758310318, 0.11847352236509323, 0.08666392415761948, -0.01021516788750887, 0.016197994351387024, 0.2533719539642334, 0.03898859769105911, -0.03884323313832283, -0.006750657223165035, 0.049195751547813416, -0.031652651727199554, -0.20575843751430511, -0.022167740389704704, -0.08406209200620651, 0.14860600233078003, 0.055483464151620865, -0.0046915169805288315, 0.08301661908626556, 0.04913528263568878, -0.07031584531068802, 0.03079453855752945, 0.05319652333855629, 0.06398916989564896, 0.03709975257515907, 0.021611206233501434, 0.06734323501586914, -0.07842320203781128, 0.04713047668337822, 0.1265559196472168, 0.138391375541687, 0.2630842924118042, 0.04237498715519905, 0.2375180572271347, 0.08021865785121918, 0.11208095401525497, 0.010411141440272331, 0.139180526137352, -0.05894385650753975, 0.07211469858884811, -0.027413923293352127, -0.07371947914361954, 0.06397692114114761, 0.04443376883864403, -0.017630238085985184, -0.12724345922470093, 0.052750974893569946, -0.17950867116451263, 0.006634552963078022, 0.20681245625019073, 0.07016846537590027, 0.025450648739933968, 0.0163459163159132, 0.06794426590204239, 0.05082108825445175, -0.084786057472229, 0.04449734091758728, 0.19129067659378052, -0.08171592652797699, 0.10407010465860367, -0.007371419109404087, 0.11596126854419708, 0.06356017291545868, -0.05682351067662239, -0.05235258489847183, -0.24250569939613342, -0.05666119232773781, 0.09006696194410324, -0.11893858760595322, 0.20697785913944244, 0.06024736911058426, -0.051106106489896774, -0.07451318204402924, -0.045496877282857895, -0.011176546104252338, 0.10829060524702072, 0.16109733283519745, 0.05048831179738045, -0.01748444139957428, -0.04431498050689697, -0.0495857372879982, 0.007680496200919151, -0.0340360663831234, -0.09652061760425568, 0.059249043464660645, 0.04845409095287323, 0.04868942126631737, -0.03974753990769386, 0.07683595269918442, -0.07253412902355194, -0.10999251902103424, 0.051611315459012985, 0.02178414911031723, 0.056143857538700104, -0.02242404967546463, 0.030806567519903183, 0.04035266861319542, -0.07420016825199127, -0.16888658702373505, -0.07508619129657745, -0.08352183550596237, -0.08617840707302094, 0.09609144926071167, -0.019263796508312225, 0.006480569485574961, -0.008230336010456085, 0.0018970363307744265, -0.10245535522699356, -0.10194409638643265, 0.07354293763637543, -0.03683196008205414, -0.06265626102685928, -0.015075144357979298, -0.012106092646718025, -0.028437374159693718, 0.0782613456249237, 0.014039862900972366, 0.042733803391456604, -0.0499725416302681, -0.0998234674334526, 0.0270474124699831, -0.0650758445262909, 0.11665977537631989, 0.09516917169094086, -0.14659589529037476, 0.009375805966556072, -0.051428839564323425, -0.13718727231025696, 0.10348934680223465, 0.1975291520357132, -0.07051459699869156, 0.12471438199281693, 0.1520259827375412, -0.12249334156513214, -0.30430880188941956, -0.014710973016917706, -0.08984629064798355, -0.04218699038028717, 0.09446883946657181, -0.20063744485378265, 0.01982281543314457, 0.05830879509449005, -0.03384782001376152, 0.024334190413355827, -0.2761409282684326, -0.11099318414926529, -0.01383762527257204, 0.06829703599214554, 0.007169701159000397, -0.19036167860031128, -0.025041203945875168, -0.07184245437383652, -0.1934126764535904, 0.09482618421316147, -0.1323866993188858, 0.06882434338331223, -0.033936142921447754, 0.11132317781448364, -0.055629171431064606, -0.02580476738512516, 0.10937564074993134, 0.019416535273194313, 0.10547395050525665, -0.0480826273560524, -0.002926003187894821, 0.167039692401886, -0.006709252018481493, 0.08566577732563019, -0.01482557412236929, -0.028414802625775337, -0.11674151569604874, -0.018961302936077118, -0.10110625624656677, 0.08517365157604218, -0.06141242757439613, -0.10201224684715271, -0.08085301518440247, 0.07580596953630447, 0.01639368198812008, -0.017663365229964256, 0.17377428710460663, -0.12144637107849121, 0.041526857763528824, 0.09362133592367172, 0.1620558649301529, 0.02820449136197567, -0.062163807451725006, -0.010506557300686836, -0.04444589465856552, 0.057997096329927444, -0.19561640918254852, 0.014800731092691422, 0.0812070220708847, 0.040000155568122864, 0.14638297259807587, -0.0000011169738627359038, -0.023956425487995148, 0.08048398047685623, 0.0966305360198021, -0.03233816474676132, -0.17907629907131195, 0.006211644038558006, -0.037740495055913925, -0.1040106937289238, -0.0846417248249054, 0.076516292989254, -0.028788013383746147, -0.021598542109131813, 0.009061901830136776, 0.06907162815332413, 0.003722157096490264, 0.003596905153244734, -0.018545331433415413, 0.01648063398897648, -0.1051878035068512, 0.1587449163198471, 0.17164777219295502, -0.07931884378194809, -0.0014746400993317366, 0.06737681478261948, -0.042621415108442307, -0.03842870146036148, -0.048790398985147476, 0.10916206240653992, -0.16088125109672546, -0.007394705433398485, -0.011981482617557049, -0.10050257295370102, -0.04287295415997505, 0.24235856533050537, -0.08189556747674942, 0.023132946342229843, 0.11493471264839172, -0.07317477464675903, -0.05736517533659935, 0.10585201531648636, -0.10824573785066605, 0.04239276051521301, -0.05991071090102196, -0.07422687858343124, 0.013570334762334824, 0.0777185708284378, -0.014151436276733875, 0.010894132778048515, -0.10250189900398254, -0.0040862164460122585, -0.14622420072555542, 0.02740306593477726, -0.1387414187192917, -0.031759705394506454, -0.06186709553003311, 0.007299491204321384, -0.05417322739958763, -0.055618420243263245, -0.0899810940027237, -0.021311933174729347, 0.0058172959834337234, 0.11688981205224991, -0.12197454273700714, -0.06097510829567909, 0.0990883857011795, -0.00572576280683279, 0.11441860347986221, 0.03910321369767189, -0.04824085906147957, 0.030474865809082985, -0.028392398729920387, 0.04245302081108093, -0.05727420002222061, 0.06734949350357056, 0.016087066382169724, -0.04885638505220413, -0.037430401891469955, -0.010037007741630077, -0.07522385567426682, 0.052655212581157684, -0.06774100661277771, -0.11571560800075531, 0.010718694888055325, -0.05703999474644661, -0.056222233921289444, -0.04912019148468971, 0.09576345980167389, 0.08205345273017883, 0.005160881206393242, 0.05900247022509575, -0.0632171779870987, 0.05870449170470238, -0.12312181293964386, -0.013369417749345303, 0.020041121169924736, -0.02645237185060978, -0.0798768550157547, -0.06538373976945877, -0.03064519725739956, -0.06691674888134003, 0.2590077221393585, 0.06448732316493988, -0.11840879172086716, 0.01480068452656269, 0.005408479366451502, 0.007212343160063028, -0.016542216762900352, 0.14483119547367096, -0.016905559226870537, -0.04634721204638481, 0.06383983045816422, 0.07347895205020905, -0.08173870295286179, 0.184659942984581, 0.11630475521087646, 0.11511404812335968, 0.202127143740654, -0.05495192110538483, 0.08845945447683334, -0.13795457780361176, 0.06362343579530716, 0.05938286334276199, 0.1492709070444107, 0.13426709175109863, -0.05138058215379715, -0.0005592653178609908, 0.13060955703258514, -0.13659660518169403, 0.12785542011260986, -0.04465668648481369, -0.08373357355594635, -0.10347333550453186, -0.1006036326289177, -0.034567832946777344, -0.06277036666870117, 0.012427753768861294, -0.17178671061992645, 0.03402061387896538, 0.10949777811765671, 0.019198063760995865, -0.0238601416349411, 0.06362681835889816, -0.16107043623924255, -0.09977682679891586, 0.01631315052509308, 0.0299555454403162, -0.02016168087720871, -0.0609498955309391, 0.08178824931383133, 0.05817680060863495, -0.03821650147438049, 0.05258918181061745, 0.08057797700166702, 0.025898462161421776, 0.010181779973208904, -0.13315445184707642, -0.0842805951833725, -0.017592599615454674, 0.053093310445547104, 0.039086129516363144, 0.22392110526561737, 0.0379762165248394, 0.03188193589448929, 0.036994386464357376, 0.23060055077075958, -0.013441940769553185, -0.0637160986661911, -0.10433822125196457, 0.06583189219236374, -0.0648968443274498, -0.07527027279138565, 0.032851751893758774, -0.11690311133861542, 0.05424375459551811, 0.17549313604831696, 0.1477595567703247, -0.039887167513370514, -0.03924976661801338, -0.0673627033829689, 0.013549044728279114, 0.025083400309085846, 0.010893614962697029, 0.03765831142663956, 0.24727539718151093, -0.06906512379646301, 0.042123943567276, -0.0578121580183506, 0.04078534245491028, -0.13675044476985931, 0.13451528549194336, 0.08193808048963547, -0.09600548446178436, -0.05776169151067734, 0.14320485293865204, -0.12389589846134186, -0.030338790267705917, 0.06778766959905624, -0.0708431601524353, -0.03230287507176399, -0.03971830755472183, -0.035754866898059845, -0.04475671052932739, -0.013179910369217396, -0.01814323663711548, 0.0031983719673007727, 0.0658307820558548, 0.061405569314956665, -0.07725653052330017, -0.0020943658892065287, 0.11586877703666687, -0.07943650335073471, 0.1780962347984314, -0.017566854134202003, 0.02946159429848194, 0.03177962452173233, -0.016866251826286316, -0.07475708425045013, 0.047688212245702744, 0.09700664132833481, 0.023433735594153404, -0.08301820605993271, 0.10874231904745102, -0.022136900573968887, 0.17896655201911926, 0.010057616978883743, 0.030519841238856316, 0.01762336492538452, 0.16277410089969635, -0.016681073233485222, -0.05698643997311592, -0.006499990820884705, -0.1249876320362091, 0.12931108474731445, 0.05370820686221123, -0.03306129574775696, -0.030011218041181564, -0.07722505927085876, -0.037462349981069565, 0.00037856752169318497, -0.036722686141729355, -0.008810590021312237, -0.012327278032898903, 0.004171357024461031, -0.011706318706274033, 0.07485973834991455, -0.2920241057872772, 0.09973448514938354, 0.06727583706378937, -0.01721074804663658, -0.0534743070602417, 0.048064205795526505, 0.15952439606189728, -0.028484096750617027, -0.05700955167412758, -0.1501816362142563, 0.053678542375564575, 0.049067508429288864, -0.024341829121112823, -0.03391921520233154 ]
a9efda74e8f163519080cf04fed145c93ce04970
# Dataset Card for "davinci-pairwise" [More Information needed](https://github.com/huggingface/datasets/blob/main/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
AlekseyKorshuk/davinci-pairwise
[ "region:us" ]
2023-02-07T15:17:38+00:00
{"dataset_info": {"features": [{"name": "prompt", "dtype": "string"}, {"name": "chosen", "dtype": "string"}, {"name": "rejected", "dtype": "string"}], "splits": [{"name": "train", "num_bytes": 3835512036, "num_examples": 143908}], "download_size": 800758913, "dataset_size": 3835512036}}
2023-02-07T17:33:13+00:00
[]
[]
TAGS #region-us
# Dataset Card for "davinci-pairwise" More Information needed
[ "# Dataset Card for \"davinci-pairwise\"\n\nMore Information needed" ]
[ "TAGS\n#region-us \n", "# Dataset Card for \"davinci-pairwise\"\n\nMore Information needed" ]
[ 6, 15 ]
[ "passage: TAGS\n#region-us \n# Dataset Card for \"davinci-pairwise\"\n\nMore Information needed" ]
[ -0.11064798384904861, 0.15944060683250427, -0.0061361538246273994, 0.02178592048585415, 0.05182785168290138, 0.10986264050006866, 0.11587995290756226, 0.06305718421936035, 0.13278907537460327, -0.004438823089003563, 0.10247925668954849, 0.052417267113924026, 0.058419495820999146, 0.22753456234931946, -0.040264856070280075, -0.11151783168315887, 0.052968911826610565, 0.05352061241865158, -0.05238981172442436, 0.03944879025220871, 0.016672682017087936, -0.07457233965396881, 0.03534036874771118, -0.11178888380527496, -0.17448177933692932, 0.0399797260761261, -0.05387916415929794, -0.011720684356987476, 0.0747932642698288, -0.06311693787574768, 0.17905616760253906, 0.026842080056667328, 0.010100457817316055, -0.14239323139190674, 0.024973072111606598, 0.011645298451185226, -0.04993929713964462, 0.06849215179681778, 0.05646803230047226, -0.08991523087024689, -0.11622004210948944, 0.03218257799744606, 0.03465874120593071, -0.02092820592224598, -0.13913756608963013, -0.2177300602197647, -0.11965589225292206, -0.06320352852344513, 0.04340284690260887, -0.05760260671377182, 0.055134791880846024, 0.062493856996297836, -0.10485158860683441, 0.020319364964962006, 0.04932120442390442, -0.06843126565217972, 0.04368641972541809, 0.15433277189731598, -0.048020247370004654, 0.10488153249025345, -0.02865230105817318, 0.05637457221746445, 0.0861314982175827, -0.019986476749181747, -0.022132210433483124, -0.03518279641866684, -0.0916321650147438, 0.10489416122436523, -0.027312463149428368, -0.07656324654817581, 0.3111638128757477, -0.012908208183944225, 0.005552309099584818, 0.00872081145644188, -0.027344612404704094, -0.025212980806827545, -0.01650676317512989, 0.044884029775857925, 0.01979542337357998, 0.025020547211170197, 0.08193094283342361, 0.029434652999043465, -0.09209843724966049, -0.12368357926607132, -0.18291553854942322, 0.06335975974798203, -0.027212774381041527, 0.14108595252037048, -0.1867271065711975, -0.0157138854265213, -0.07337399572134018, -0.021870207041502, -0.005307457409799099, -0.1137310191988945, -0.06243741139769554, -0.01840878464281559, -0.006773384753614664, 0.07068563252687454, 0.10571601241827011, 0.08346374332904816, 0.07046426832675934, 0.0609891414642334, -0.06488415598869324, 0.06394723802804947, 0.19831596314907074, -0.10328435152769089, -0.014300815761089325, -0.008048991672694683, -0.08145924657583237, -0.11908785998821259, -0.029346594586968422, -0.09958608448505402, -0.07714377343654633, -0.004634316079318523, -0.09185311198234558, 0.10477347671985626, -0.018135447055101395, -0.11528808623552322, -0.06793949007987976, -0.04713249206542969, 0.17852669954299927, -0.08499858528375626, 0.03198040649294853, -0.0009925493504852057, -0.04191623628139496, 0.015705563127994537, -0.14686135947704315, -0.0031459934543818235, 0.06668409705162048, 0.07758636027574539, -0.07511427998542786, -0.02013746090233326, -0.06550602614879608, -0.03240707889199257, 0.0528920441865921, -0.19556064903736115, 0.06303247809410095, -0.06966035068035126, -0.2178109586238861, 0.06198759377002716, 0.03588000312447548, -0.06655978411436081, 0.16969436407089233, -0.010731704533100128, 0.12206512689590454, -0.020517198368906975, -0.061820268630981445, 0.09173736721277237, -0.0719301849603653, 0.047706808894872665, -0.01845470815896988, 0.1029713824391365, -0.1934969276189804, 0.034567952156066895, -0.08744502812623978, 0.0402652733027935, -0.02670302428305149, 0.03215339779853821, -0.11703536659479141, 0.036559026688337326, -0.06124311313033104, 0.013015501201152802, -0.14503422379493713, 0.01948850043118, -0.016365263611078262, 0.07195262610912323, -0.251325786113739, -0.042693886905908585, 0.1655154675245285, -0.14589093625545502, -0.1641255021095276, 0.007682942319661379, -0.05217690393328667, 0.0252437312155962, 0.021566441282629967, 0.3206571936607361, 0.10198473185300827, -0.021727699786424637, 0.025587696582078934, 0.137474924325943, -0.15279631316661835, -0.2351529449224472, 0.07330223172903061, -0.02690153196454048, -0.09773750603199005, 0.02686346136033535, 0.13168923556804657, -0.01083755400031805, -0.060004882514476776, -0.05265742912888527, 0.040941011160612106, -0.12224071472883224, 0.08286754786968231, 0.02453196980059147, 0.017208004370331764, 0.0023409677669405937, 0.18009242415428162, -0.006871662102639675, 0.08128271996974945, -0.00518307089805603, -0.039550792425870895, -0.013048895634710789, 0.11495573073625565, -0.0988231673836708, -0.008121438324451447, -0.18851320445537567, -0.11831086128950119, 0.036405306309461594, 0.011948109604418278, -0.010850448161363602, 0.03898169472813606, 0.0826505720615387, -0.032496292144060135, 0.013255209662020206, 0.06490156799554825, 0.1485745757818222, 0.04637986794114113, 0.017781736329197884, -0.0033048915211111307, 0.019913407042622566, -0.11707312613725662, -0.055449213832616806, -0.032419972121715546, -0.06201188266277313, 0.10267341881990433, 0.045977894216775894, 0.031351495534181595, 0.0023257106076925993, 0.04140734672546387, 0.02344561740756035, 0.010225347243249416, -0.041191644966602325, 0.043984442949295044, -0.05616869777441025, 0.03004465065896511, -0.0016999721992760897, -0.036381687968969345, 0.17163601517677307, 0.11320909857749939, -0.044050443917512894, 0.045424941927194595, -0.13657903671264648, 0.049654096364974976, -0.016434522345662117, -0.06317152082920074, 0.035483285784721375, -0.1314856857061386, -0.034341949969530106, 0.03883632272481918, -0.057988621294498444, 0.046604979783296585, 0.045448120683431625, -0.014913732185959816, -0.10800981521606445, 0.023424949496984482, 0.1044422835111618, -0.20055557787418365, 0.14489489793777466, 0.19736097753047943, 0.15537934005260468, 0.11537095159292221, -0.06787045300006866, -0.08815567195415497, -0.0012861895374953747, -0.035865820944309235, -0.062447093427181244, 0.18545782566070557, -0.04281071573495865, 0.015571355819702148, 0.0985865592956543, 0.04173992574214935, 0.07820263504981995, -0.0996895581483841, -0.08988336473703384, -0.017861373722553253, -0.00775044085457921, -0.16975708305835724, 0.006048313342034817, -0.00799376517534256, 0.05785214528441429, 0.010731406509876251, -0.016247956082224846, 0.14100155234336853, -0.011349115520715714, -0.01687558740377426, 0.11038530617952347, -0.17550057172775269, -0.25619742274284363, -0.02917979285120964, -0.18091236054897308, 0.05421009659767151, 0.042424168437719345, -0.0384426973760128, -0.10132238268852234, -0.04478083550930023, 0.045896247029304504, -0.0696575939655304, -0.18007610738277435, -0.011698616668581963, -0.0009380733827129006, 0.015232925303280354, -0.10057946294546127, -0.0888686403632164, 0.03790033236145973, -0.055219631642103195, 0.1736966073513031, 0.13600830733776093, -0.13293452560901642, 0.12222238630056381, 0.10477802157402039, -0.0015578663442283869, 0.09671443700790405, -0.04470830038189888, 0.053444862365722656, -0.05532768368721008, -0.05971799045801163, 0.09115017205476761, -0.003734724596142769, 0.046731144189834595, 0.08372031897306442, 0.07751104235649109, -0.13642121851444244, -0.037984538823366165, -0.0558161735534668, -0.17609775066375732, -0.2063002735376358, -0.13994382321834564, -0.06957489252090454, 0.11064150929450989, 0.09221481531858444, 0.04701590538024902, -0.027607688680291176, 0.09216318279504776, 0.11132072657346725, -0.008253838866949081, -0.11878633499145508, -0.03697187453508377, -0.0044334083795547485, -0.007943782024085522, 0.0011509141186252236, -0.13017986714839935, -0.0020549315959215164, 0.13856324553489685, 0.20827695727348328, 0.2610425651073456, 0.11108163744211197, 0.1291913539171219, 0.0169866643846035, 0.1471690535545349, 0.10893549025058746, 0.16660119593143463, 0.06248410791158676, -0.02030268684029579, 0.006617275532335043, 0.02436991222202778, -0.06446750462055206, -0.02342522330582142, 0.09815426915884018, -0.19892379641532898, 0.048654813319444656, -0.10935227572917938, 0.01570086181163788, -0.15919962525367737, 0.08904770016670227, -0.18701745569705963, 0.11171898245811462, 0.005891518667340279, 0.1614348590373993, -0.11941126734018326, 0.06971602886915207, 0.04927608370780945, -0.028232116252183914, 0.05350717529654503, -0.009090710431337357, 0.06832299381494522, -0.11062946915626526, -0.03656352683901787, -0.05241953209042549, -0.07419651746749878, -0.011346711777150631, 0.12217123806476593, -0.18036706745624542, 0.23159295320510864, 0.023522071540355682, -0.050753336399793625, -0.10842792689800262, -0.041338756680488586, -0.043857671320438385, 0.003257903503254056, 0.12729622423648834, 0.008131822571158409, -0.12709462642669678, -0.16528141498565674, -0.028470266610383987, -0.0281421709805727, 0.14440025389194489, -0.006468251813203096, -0.11209730058908463, 0.06093677505850792, 0.015941869467496872, -0.039393100887537, -0.17306499183177948, -0.0067540123127400875, -0.13132742047309875, 0.02466895617544651, 0.02233634516596794, -0.13702945411205292, 0.04072599485516548, 0.008844823576509953, -0.10872964560985565, 0.014176969416439533, 0.014057577587664127, -0.036727551370859146, -0.11187668889760971, -0.028445951640605927, 0.14024606347084045, 0.007734513841569424, 0.029717428609728813, 0.01582750305533409, 0.011531312018632889, -0.03061331994831562, -0.17928294837474823, 0.06069634109735489, -0.06251522153615952, 0.13142910599708557, -0.11286541074514389, 0.09280698746442795, -0.008473587222397327, -0.009497785940766335, 0.004854119382798672, 0.03393537551164627, -0.03003343753516674, -0.06753383576869965, 0.14970356225967407, -0.10340818762779236, 0.13179144263267517, 0.20807990431785583, 0.06681536138057709, 0.029372256249189377, 0.08779440820217133, -0.009629769250750542, 0.1385660022497177, 0.11832790076732635, -0.07422226667404175, 0.21192242205142975, 0.19195608794689178, -0.03839441388845444, -0.25370439887046814, -0.026663098484277725, -0.15493372082710266, -0.032677482813596725, 0.06605441123247147, -0.2635496258735657, 0.09344279021024704, 0.10534019768238068, -0.03946031257510185, 0.21305888891220093, -0.10497848689556122, 0.00117882015183568, 0.18314357101917267, 0.059845734387636185, 0.28975415229797363, -0.08853678405284882, -0.10007264465093613, -0.06225374713540077, -0.1333322376012802, 0.2103586196899414, -0.051551684737205505, 0.01790475845336914, 0.001892943400889635, 0.0895036906003952, -0.012961284257471561, -0.043473124504089355, 0.18651337921619415, 0.06750552356243134, 0.10947246849536896, -0.06673723459243774, -0.06503663212060928, 0.1451069414615631, -0.041357845067977905, 0.012980682775378227, 0.04861747846007347, 0.03164424002170563, -0.10475900769233704, -0.013354157097637653, 0.057959068566560745, -0.032217301428318024, 0.06656594574451447, -0.07580842822790146, -0.07672881335020065, 0.010019063949584961, -0.10479024797677994, -0.02649519592523575, 0.09363391250371933, 0.04021250084042549, -0.046709999442100525, 0.03543630614876747, 0.048215169459581375, -0.0824277400970459, -0.02813049778342247, -0.11712700873613358, -0.07288554310798645, 0.059824418276548386, -0.20972318947315216, 0.046416398137807846, 0.10992060601711273, 0.023018132895231247, 0.047884389758110046, 0.07341364771127701, -0.029270930215716362, 0.024342980235815048, 0.1461874544620514, -0.09341155737638474, -0.06012409180402756, 0.1056908443570137, -0.06863726675510406, -0.0027925395406782627, 0.08864429593086243, -0.02313554845750332, 0.11213871091604233, -0.0040853796526789665, -0.020195987075567245, 0.04583177715539932, -0.04211669787764549, 0.09106054157018661, 0.09099767357110977, 0.04255351051688194, -0.17482075095176697, 0.21572379767894745, 0.043135110288858414, -0.08058029413223267, -0.01243251096457243, -0.045350875705480576, -0.10436292737722397, -0.08029823005199432, -0.0526595264673233, 0.2087022215127945, -0.02017967775464058, -0.12986405193805695, 0.033616580069065094, -0.060491763055324554, 0.023652639240026474, 0.10637292265892029, 0.05584914609789848, 0.11929754167795181, -0.002035379409790039, -0.04262411221861839, -0.018812544643878937, -0.03260679543018341, -0.06399975717067719, 0.039056241512298584, -0.07646472752094269, -0.19569891691207886, -0.0520758181810379, 0.1437818855047226, -0.07155612111091614, -0.10057812929153442, -0.05937715992331505, 0.0863831490278244, -0.15087145566940308, 0.04717094078660011, -0.022090241312980652, 0.003868409898132086, 0.012408302165567875, 0.025706853717565536, 0.0008933866047300398, -0.04903563857078552, -0.09022670984268188, 0.14191952347755432, 0.03715565428137779, 0.02290155738592148, -0.08910870552062988, -0.035766538232564926, 0.05841178819537163, 0.04340161010622978, 0.09251435101032257, 0.11425597220659256, 0.03396686911582947, 0.07234562188386917, -0.05399118363857269, -0.10827378183603287, 0.04536513239145279, 0.06337340176105499, 0.0799562856554985, 0.024023517966270447, -0.036443307995796204, 0.07111599296331406, -0.07989110797643661, 0.04897671192884445, -0.0198681503534317, -0.06118202582001686, 0.019688958302140236, -0.17806123197078705, -0.09184908866882324, -0.008193589746952057, -0.0391245037317276, 0.19714832305908203, 0.06394881010055542, -0.028690246865153313, 0.11621832102537155, 0.01797173172235489, -0.000690880639012903, -0.05670821666717529, 0.006032956764101982, -0.1250968724489212, -0.022687530145049095, 0.04020334780216217, 0.03614351898431778, -0.03342948481440544, 0.43264856934547424, -0.014419913291931152, -0.1254291832447052, -0.06054781749844551, 0.09484117478132248, -0.02617291919887066, 0.02501453459262848, 0.3156753480434418, 0.06752850860357285, -0.06487695127725601, -0.0598280131816864, 0.1040719524025917, -0.010384280234575272, 0.20281901955604553, 0.0640055313706398, 0.09098527580499649, 0.03020050749182701, -0.02800467424094677, -0.009459047578275204, -0.08200585097074509, 0.02853476069867611, 0.021557645872235298, 0.006415060721337795, -0.021328024566173553, 0.088070809841156, -0.059953778982162476, 0.018360549584031105, -0.040833767503499985, 0.05048028379678726, -0.03908133506774902, -0.09220185875892639, -0.057769082486629486, -0.14242501556873322, -0.026700906455516815, -0.0833280012011528, 0.02774304896593094, -0.06905201077461243, -0.021644778549671173, 0.2902575433254242, 0.07049409300088882, 0.04272408038377762, 0.049596481025218964, -0.06159525364637375, 0.07783564180135727, 0.018568186089396477, -0.012560575269162655, -0.048161331564188004, 0.03059176728129387, -0.09064921736717224, 0.0128667326644063, -0.059345223009586334, -0.009655153378844261, -0.03211662918329239, 0.09005756676197052, 0.014925944618880749, -0.13256637752056122, -0.06651771813631058, -0.06271632015705109, 0.053584303706884384, -0.09313011169433594, 0.09005644172430038, 0.02716408669948578, 0.050024498254060745, 0.04737802594900131, 0.10049943625926971, 0.04145702347159386, 0.056142523884773254, -0.0386275053024292, 0.016787860542535782, -0.041945066303014755, 0.09131726622581482, 0.023773999884724617, -0.05732439085841179, -0.027501504868268967, 0.15784262120723724, 0.21818658709526062, -0.053730279207229614, -0.03444730117917061, 0.038429323583841324, 0.03669248893857002, 0.06493750214576721, 0.17574180662631989, -0.006589740514755249, 0.08944351971149445, -0.029132485389709473, -0.10606563836336136, -0.02026207186281681, -0.05200999230146408, -0.011321492493152618, 0.05726558342576027, 0.06370808929204941, -0.0376611202955246, -0.1249258741736412, 0.1621941179037094, -0.12629923224449158, 0.10676952451467514, 0.11276061832904816, -0.09185589849948883, -0.10295657813549042, -0.019996952265501022, 0.08723045140504837, -0.018207548186182976, -0.006661796942353249, -0.09173587709665298, -0.0013084543170407414, -0.0507274754345417, 0.004446462728083134, -0.2870478332042694, -0.12873858213424683, 0.007736245170235634, 0.0006327295559458435, 0.060466617345809937, -0.028271984308958054, 0.1302957981824875, 0.015749681740999222, 0.0614924319088459, -0.07964149862527847, 0.023744964972138405, 0.0039707813411951065, 0.1105337142944336, -0.03987320885062218, 0.035221513360738754, -0.05001606047153473, -0.11442123353481293, 0.07171563804149628, -0.025913750752806664, -0.03374703228473663, 0.07501587271690369, -0.0023401903454214334, 0.008313849568367004, -0.004559382330626249, -0.06911884248256683, 0.12654216587543488, -0.03534683585166931, -0.0010495269671082497, -0.0053447457030415535, 0.02083432674407959, 0.06463102251291275, 0.007390031591057777, -0.08824273943901062, -0.07539649307727814, 0.019917430356144905, -0.11207065731287003, 0.12290051579475403, -0.01619037613272667, -0.08692565560340881, 0.05478258058428764, -0.0870608314871788, 0.04150737449526787, 0.0017537534004077315, 0.056961897760629654, 0.10549630969762802, 0.05714128166437149, -0.04935861751437187, 0.0018375980434939265, 0.04259553924202919, 0.00203008484095335, -0.011830895207822323, -0.08785267919301987 ]
77fa5d755c1f1108d8079e01bfe16c0a3ad0f343
# Dataset Card for Open Assistant Cornell Movies Dialog ## Dataset Summary The dataset was created using [Cornell Movies Dialog Corpus](https://www.cs.cornell.edu/~cristian/Cornell_Movie-Dialogs_Corpus.html) which contains a large metadata-rich collection of fictional conversations extracted from raw movie scripts. Dialogs and meta-data from the underlying Corpus were used to design a dataset that can be used to InstructGPT based models to learn movie scripts. Example : ``` User: Assume RICK and ALICE are characters from a fantasy-horror movie, continue the conversation between them RICK: I heard you screaming. Was it a bad one? ALICE: It was bad. RICK: Doesn't the dream master work for you anymore? Assistant: Sure ALICE: I can't find him. RICK: Hey, since when do you play Thomas Edison? This looks like Sheila's. ALICE: It is...was. It's a zapper, it might help me stay awake. RICK: Yeah, or turn you into toast. ``` ## Citations ``` @InProceedings{Danescu-Niculescu-Mizil+Lee:11a, author={Cristian Danescu-Niculescu-Mizil and Lillian Lee}, title={Chameleons in imagined conversations: A new approach to understanding coordination of linguistic style in dialogs.}, booktitle={Proceedings of the Workshop on Cognitive Modeling and Computational Linguistics, ACL 2011}, year={2011} } ```
shahules786/OA-cornell-movies-dialog
[ "region:us" ]
2023-02-07T15:21:28+00:00
{"dataset_info": {"features": [{"name": "conversation", "dtype": "string"}], "splits": [{"name": "train", "num_bytes": 9476338, "num_examples": 20959}], "download_size": 4859997, "dataset_size": 9476338}}
2023-02-10T05:34:43+00:00
[]
[]
TAGS #region-us
# Dataset Card for Open Assistant Cornell Movies Dialog ## Dataset Summary The dataset was created using Cornell Movies Dialog Corpus which contains a large metadata-rich collection of fictional conversations extracted from raw movie scripts. Dialogs and meta-data from the underlying Corpus were used to design a dataset that can be used to InstructGPT based models to learn movie scripts. Example : s
[ "# Dataset Card for Open Assistant Cornell Movies Dialog", "## Dataset Summary\n\nThe dataset was created using Cornell Movies Dialog Corpus which contains a large metadata-rich collection of fictional conversations extracted from raw movie scripts.\nDialogs and meta-data from the underlying Corpus were used to design a dataset that can be used to InstructGPT based models to learn movie scripts.\n\nExample :\n\n\n\n\n\ns" ]
[ "TAGS\n#region-us \n", "# Dataset Card for Open Assistant Cornell Movies Dialog", "## Dataset Summary\n\nThe dataset was created using Cornell Movies Dialog Corpus which contains a large metadata-rich collection of fictional conversations extracted from raw movie scripts.\nDialogs and meta-data from the underlying Corpus were used to design a dataset that can be used to InstructGPT based models to learn movie scripts.\n\nExample :\n\n\n\n\n\ns" ]
[ 6, 11, 79 ]
[ "passage: TAGS\n#region-us \n# Dataset Card for Open Assistant Cornell Movies Dialog## Dataset Summary\n\nThe dataset was created using Cornell Movies Dialog Corpus which contains a large metadata-rich collection of fictional conversations extracted from raw movie scripts.\nDialogs and meta-data from the underlying Corpus were used to design a dataset that can be used to InstructGPT based models to learn movie scripts.\n\nExample :\n\n\n\n\n\ns" ]
[ -0.10785458236932755, 0.1951637715101242, 0.005037353839725256, 0.025678256526589394, 0.133840411901474, 0.0800183042883873, 0.22732438147068024, 0.10914181917905807, 0.1337568610906601, -0.08952462673187256, 0.03041056916117668, 0.03983895480632782, 0.07587376981973648, 0.21720166504383087, -0.03082732856273651, -0.023950038477778435, -0.06778545677661896, -0.02713431417942047, 0.0317390002310276, -0.002656816504895687, -0.003249881789088249, -0.017322886735200882, 0.05842406675219536, -0.10739892721176147, -0.22091808915138245, -0.023712167516350746, 0.01664530113339424, -0.012598630040884018, 0.09454860538244247, 0.024830812588334084, 0.004575454164296389, -0.04496544972062111, 0.04242286458611488, -0.018706990405917168, 0.04548662528395653, -0.08487636595964432, 0.014497032389044762, 0.002952649723738432, -0.007068396080285311, -0.006375582423061132, 0.0819479376077652, 0.15950794517993927, 0.06664758920669556, -0.014908742159605026, -0.05405954271554947, -0.20331119000911713, -0.017969965934753418, -0.2419043481349945, -0.16609588265419006, 0.07440432161092758, -0.027197670191526413, -0.011959672905504704, -0.027714677155017853, 0.01642797514796257, -0.0018863864243030548, -0.009440462104976177, -0.032600704580545425, 0.10455908626317978, 0.05302320793271065, 0.06292527914047241, -0.09096062183380127, -0.02359447069466114, -0.032646141946315765, -0.03337477520108223, -0.0579448938369751, -0.05730842053890228, -0.20915551483631134, -0.07012345641851425, -0.02150869369506836, -0.022912396118044853, 0.34618332982063293, -0.07878827303647995, -0.09491469711065292, -0.05615720525383949, 0.05444908142089844, 0.14932523667812347, -0.05881723016500473, 0.11828126013278961, -0.05018393322825432, 0.0015141163021326065, -0.16235706210136414, -0.04940170422196388, -0.06149417534470558, -0.044669024646282196, 0.05464639887213707, 0.07033739984035492, 0.0016006409423425794, 0.13627710938453674, -0.24392284452915192, 0.026954825967550278, 0.016784993931651115, -0.027813391759991646, 0.08159122616052628, -0.09944208711385727, 0.02671080455183983, 0.02156750112771988, 0.0010536484187468886, -0.05120624229311943, 0.03687266260385513, 0.20359215140342712, 0.2049446702003479, -0.023230507969856262, -0.020504750311374664, 0.09441222995519638, 0.14784185588359833, -0.002968986053019762, 0.03727950155735016, -0.07879602909088135, 0.10383821278810501, -0.040779098868370056, 0.02041362226009369, -0.045299313962459564, -0.107473224401474, 0.10854479670524597, -0.12119738012552261, 0.06154835596680641, 0.17016050219535828, 0.01914011687040329, -0.066495880484581, -0.05077376589179039, 0.062239907681941986, -0.03866208717226982, -0.036860596388578415, -0.05260820314288139, -0.16116398572921753, -0.050241272896528244, 0.05733368173241615, -0.017809875309467316, 0.05901767686009407, -0.018758058547973633, -0.043959859758615494, -0.037211913615465164, -0.04946708679199219, -0.05648608133196831, 0.08834654837846756, -0.09071644395589828, 0.04885738715529442, -0.04586739465594292, -0.10926999896764755, -0.019389398396015167, 0.11041343212127686, -0.03635336458683014, 0.033560045063495636, -0.07307973504066467, 0.1525401473045349, 0.03705613315105438, -0.0011450651800259948, 0.009586934000253677, -0.02355128526687622, -0.014095041900873184, -0.08663952350616455, 0.12714773416519165, -0.20210695266723633, 0.045080482959747314, -0.046332020312547684, -0.051844678819179535, -0.07173121720552444, 0.07351795583963394, -0.028509465977549553, 0.057076241821050644, 0.03135861083865166, 0.10609397292137146, 0.009762185625731945, 0.026743873953819275, -0.0002478386159054935, 0.21853475272655487, -0.2202158421278, -0.01732734590768814, 0.12223708629608154, -0.12628278136253357, -0.2288041114807129, 0.09782803058624268, -0.07588459551334381, 0.14266978204250336, 0.04392961040139198, 0.226438507437706, -0.06279744952917099, -0.11649347096681595, 0.01683640480041504, 0.1604347974061966, -0.0509704165160656, -0.07230477780103683, 0.1337917298078537, 0.09639251232147217, 0.03830338269472122, -0.020222824066877365, 0.024854598566889763, 0.09936755895614624, -0.05952725186944008, -0.057301029562950134, 0.07731448858976364, -0.058914877474308014, -0.10555553436279297, 0.0009636650211177766, 0.022420505061745644, 0.026734555140137672, 0.012452488765120506, -0.12316018342971802, 0.11917989701032639, -0.07023189216852188, 0.07487957924604416, -0.0607210248708725, 0.043642785400152206, 0.12223605066537857, 0.030605927109718323, -0.057234182953834534, -0.15715977549552917, -0.030441289767622948, 0.1616741567850113, 0.02342890202999115, 0.0517718531191349, -0.039469845592975616, 0.06282705813646317, -0.06240328773856163, 0.13427673280239105, 0.07595974206924438, -0.032733261585235596, 0.07591322064399719, -0.16490745544433594, -0.05797608569264412, -0.13020923733711243, 0.148055762052536, -0.09962049126625061, -0.015808042138814926, -0.07573606818914413, -0.026407906785607338, 0.10622866451740265, -0.08853115141391754, 0.07603611052036285, -0.003074892098084092, -0.001473198994062841, -0.08376552909612656, 0.05488342419266701, 0.05233386531472206, -0.022419815883040428, 0.09241637587547302, -0.04699508845806122, -0.0003440139698795974, 0.07064630836248398, -0.1464579999446869, -0.04059566184878349, -0.023755479604005814, -0.06463419646024704, -0.011522270739078522, -0.07104966044425964, -0.018703369423747063, 0.02600391022861004, -0.04920774698257446, 0.04728503152728081, 0.01127283088862896, 0.09921219199895859, -0.046426307410001755, -0.07244082540273666, -0.047900568693876266, 0.03995941951870918, 0.1317003071308136, -0.0726233497262001, 0.09661085903644562, -0.08207079768180847, 0.07412443310022354, 0.2225688099861145, 0.03732304647564888, -0.007948929443955421, -0.02491096220910549, -0.02062528394162655, 0.0034265252761542797, 0.15115700662136078, -0.20782291889190674, -0.0815475657582283, 0.03716025874018669, -0.13718274235725403, 0.04455864802002907, -0.07972992956638336, -0.14494383335113525, -0.03477044776082039, 0.06322057545185089, 0.006373174488544464, 0.03296580910682678, -0.12874436378479004, 0.0988718792796135, 0.03235256299376488, -0.07182273268699646, 0.07762987166643143, -0.1175534650683403, -0.14736035466194153, 0.10066778212785721, -0.0502658374607563, -0.19176237285137177, 0.04029741510748863, -0.11944877356290817, 0.19576962292194366, 0.0765848457813263, -0.008375381119549274, 0.0016518079210072756, 0.026678986847400665, 0.022535644471645355, 0.007132064085453749, -0.09340997040271759, -0.06778214126825333, -0.0749395415186882, 0.021314965561032295, -0.162297785282135, -0.034463685005903244, 0.02104719541966915, -0.09181339293718338, -0.1342807114124298, 0.09425842016935349, -0.13168251514434814, 0.08756541460752487, 0.01342275831848383, -0.0013440577313303947, -0.0009861360304057598, -0.08481916785240173, 0.11352071911096573, -0.0621538870036602, -0.04918426647782326, 0.07106567174196243, -0.13146068155765533, -0.01968257874250412, 0.08733153343200684, 0.03917975351214409, -0.09120958298444748, -0.007299800869077444, -0.16737596690654755, -0.15327207744121552, -0.19701839983463287, -0.060794491320848465, -0.10473452508449554, 0.21645554900169373, 0.03412730246782303, -0.02568589337170124, 0.016073349863290787, 0.07859081774950027, 0.03009994700551033, 0.03082333505153656, 0.02392720617353916, 0.026958292350172997, -0.0880703330039978, 0.03916746750473976, 0.00025406540953554213, -0.07708191871643066, 0.10846434533596039, 0.05317368358373642, 0.06822746247053146, 0.289902001619339, 0.002760646864771843, 0.17219175398349762, 0.014051866717636585, 0.04011889547109604, 0.06803028285503387, 0.005086289253085852, 0.07587085664272308, 0.02672303467988968, -0.05326274782419205, -0.022600777447223663, -0.09012974798679352, 0.11193870007991791, -0.05363033339381218, -0.2823573648929596, 0.05751732736825943, 0.22096045315265656, -0.005846409592777491, -0.12828363478183746, 0.05401286110281944, -0.11054696142673492, 0.02003345638513565, 0.003907244652509689, 0.1426134705543518, 0.0005979601992294192, 0.0204746276140213, 0.16409063339233398, -0.16347667574882507, 0.009135954082012177, 0.04093514382839203, 0.04496883973479271, -0.2294897735118866, -0.06268314272165298, -0.054920461028814316, -0.14043273031711578, 0.03675194829702377, 0.05635039135813713, -0.11396961659193039, 0.10928723216056824, -0.002093829680234194, -0.009800009429454803, -0.09789536148309708, -0.0986643135547638, 0.022199492901563644, -0.17808468639850616, 0.24496211111545563, 0.04097175598144531, -0.07373813539743423, 0.06117504462599754, -0.07325402647256851, 0.1122945100069046, 0.025925496593117714, -0.03551828861236572, -0.03407089039683342, 0.05326097458600998, -0.008751084096729755, -0.011973362416028976, 0.07330294698476791, 0.07116194069385529, -0.15257886052131653, 0.023604143410921097, 0.025140181183815002, -0.15537627041339874, 0.04111502319574356, -0.02458406612277031, 0.1884751319885254, 0.1345289945602417, 0.0891609862446785, -0.05919600650668144, -0.055365175008773804, 0.07958324998617172, -0.02161349356174469, -0.035586558282375336, 0.10735755413770676, 0.0047582113184034824, -0.014225355349481106, -0.1256416290998459, -0.1500638872385025, 0.14695537090301514, -0.10453213006258011, 0.10474243015050888, -0.10108669847249985, 0.010056119412183762, 0.07920649647712708, 0.05491209402680397, -0.024958735331892967, -0.01661844179034233, -0.03260019049048424, 0.00407978193834424, 0.043014537543058395, -0.008055556565523148, 0.07670654356479645, 0.09114739298820496, -0.07519982755184174, -0.21998654305934906, 0.0328119732439518, -0.08623288571834564, 0.2340013086795807, 0.061474431306123734, -0.069520965218544, -0.007993021048605442, 0.09025013446807861, -0.09078008681535721, -0.2942453622817993, 0.015983283519744873, -0.00425516813993454, -0.08492513000965118, -0.03037709929049015, -0.39521774649620056, 0.07815941423177719, -0.0008621762972325087, -0.005644951947033405, 0.1762544959783554, -0.13592331111431122, -0.11380860209465027, 0.15749840438365936, 0.07857222855091095, 0.33492669463157654, -0.026858780533075333, -0.003940403927117586, -0.028398187831044197, 0.012580947950482368, 0.2734951972961426, -0.06597087532281876, 0.050825335085392, -0.015835396945476532, -0.008490284904837608, -0.03411411494016647, -0.030738944187760353, 0.014762402512133121, 0.11038295179605484, 0.008362947031855583, -0.022982297465205193, -0.26696574687957764, 0.02390192076563835, 0.049501873552799225, 0.1260257512331009, 0.037490829825401306, -0.07347375154495239, -0.08594752103090286, -0.007536668796092272, -0.039793360978364944, -0.062429849058389664, 0.06434421986341476, -0.07628021389245987, -0.13271132111549377, 0.08835659176111221, -0.04617215320467949, 0.0786600410938263, 0.08458539098501205, -0.023433798924088478, 0.08022993057966232, 0.031128739938139915, 0.054299332201480865, 0.04659661278128624, 0.03748403862118721, 0.02482309378683567, -0.0210293959826231, 0.011316986754536629, -0.030669288709759712, -0.08028846979141235, 0.1140243336558342, 0.046243369579315186, 0.13581177592277527, 0.0160880945622921, 0.0012419737176969647, 0.11750352382659912, 0.11530303955078125, -0.08571995794773102, -0.1531887948513031, -0.047998182475566864, 0.14770305156707764, -0.024428367614746094, -0.05995960161089897, -0.02613430842757225, -0.048528365790843964, -0.022679751738905907, -0.0728832557797432, 0.04663259536027908, 0.012117251753807068, 0.01000820193439722, 0.036019790917634964, 0.0044176033698022366, -0.15910200774669647, 0.20552018284797668, 0.024531450122594833, -0.023277655243873596, 0.00627009104937315, 0.133329376578331, -0.08262015879154205, -0.0185677632689476, -0.14846864342689514, 0.13197922706604004, -0.15978842973709106, -0.04992922395467758, 0.0627976804971695, 0.00409238925203681, -0.002646037144586444, -0.017048554494976997, 0.01266645360738039, 0.1511077731847763, -0.005961080547422171, -0.008566444739699364, -0.007124412804841995, 0.03174196183681488, 0.007274755276739597, -0.01546775083988905, 0.09541906416416168, -0.026667386293411255, 0.011220434680581093, 0.049046192318201065, -0.06689313054084778, -0.13036584854125977, -0.05795515701174736, 0.05049683153629303, 0.012787758372724056, 0.07706892490386963, -0.062372561544179916, -0.007051704917103052, -0.06432972103357315, -0.00926849152892828, 0.007154230959713459, -0.015364350751042366, -0.09943283349275589, 0.03570736572146416, -0.027964942157268524, -0.08063908666372299, -0.08382292836904526, -0.025483911857008934, -0.00037775698001496494, -0.04040287062525749, 0.08567134290933609, 0.1956987828016281, -0.005733152385801077, -0.022896958515048027, -0.15629257261753082, -0.19693751633167267, 0.009576644748449326, 0.025731459259986877, -0.044658906757831573, 0.02857942320406437, -0.06912211328744888, 0.04490770027041435, -0.0059294551610946655, -0.007090245373547077, 0.049295779317617416, -0.07863884419202805, 0.08055045455694199, 0.06485143303871155, 0.02791181020438671, -0.02012106403708458, 0.044643107801675797, 0.10474836826324463, 0.05498674511909485, -0.054434992372989655, 0.001471319468691945, 0.03584277629852295, -0.10639329254627228, -0.00000453504299002816, 0.03955597057938576, -0.04381619021296501, -0.005192503333091736, -0.00533924950286746, 0.009504551999270916, 0.009092711843550205, 0.19496656954288483, 0.028171492740511894, -0.17263031005859375, -0.0149308480322361, 0.14308372139930725, 0.09084708988666534, 0.010051135905086994, -0.00012900053116027266, 0.05274686589837074, -0.028260143473744392, -0.10131129622459412, 0.074361652135849, 0.027351921424269676, 0.26558274030685425, 0.1112009584903717, -0.0447540283203125, 0.20196163654327393, -0.010342544876039028, -0.011211127042770386, -0.03237620368599892, -0.012208581902086735, -0.049972616136074066, -0.06849334388971329, 0.00439666910097003, -0.04946896433830261, 0.006803132593631744, 0.0729367807507515, 0.021058177575469017, 0.08158054202795029, 0.04357229918241501, -0.1013081818819046, -0.04883452132344246, -0.17281851172447205, 0.010694930329918861, -0.010698013007640839, -0.0031276987865567207, -0.08909288048744202, -0.0009971540421247482, 0.11570572853088379, 0.12080984562635422, -0.04676812142133713, 0.14521878957748413, -0.046597957611083984, -0.09234899282455444, 0.11429718881845474, -0.00018865331367123872, 0.013552805408835411, -0.053800247609615326, -0.012506733648478985, 0.0016068299300968647, 0.055610764771699905, 0.06412158906459808, 0.10485397279262543, 0.08346016705036163, 0.13351784646511078, 0.004967403132468462, -0.07075916975736618, -0.07884900271892548, 0.02647944539785385, 0.024951430037617683, 0.10277891904115677, -0.00306833372451365, 0.11183307319879532, 0.06130458042025566, 0.13412947952747345, 0.027174916118383408, 0.05008783936500549, -0.06209826096892357, -0.049687594175338745, -0.17460888624191284, 0.006535093300044537, -0.05353877693414688, -0.027181554585695267, -0.02654220163822174, 0.0470624640583992, 0.4309021234512329, -0.09601838886737823, -0.074799545109272, -0.034476883709430695, 0.016032472252845764, -0.06279225647449493, 0.10860678553581238, -0.039601244032382965, 0.2636808753013611, -0.13493157923221588, -0.07635795325040817, 0.018102576956152916, -0.04011385887861252, 0.16066259145736694, -0.1317400485277176, 0.052539315074682236, 0.04720517247915268, -0.16833148896694183, 0.05682309344410896, -0.25285980105400085, -0.15041343867778778, -0.024022480472922325, -0.16352863609790802, -0.03314404562115669, -0.014870072714984417, -0.03551756590604782, 0.0726395770907402, 0.10682670027017593, -0.03294810652732849, 0.028147997334599495, -0.10547185689210892, 0.05153946205973625, -0.2769406735897064, -0.17572827637195587, 0.14253371953964233, -0.039220768958330154, 0.07553556561470032, -0.09250323474407196, 0.15221500396728516, -0.033119384199380875, 0.021233972162008286, -0.07075744867324829, -0.09528118371963501, 0.01719488948583603, 0.08601106703281403, -0.05416523292660713, 0.08626247942447662, -0.12340543419122696, 0.2033216506242752, 0.05389492213726044, 0.1156482920050621, -0.01667025126516819, 0.05640028789639473, -0.01877579651772976, -0.012708572670817375, -0.09482554346323013, -0.1328856348991394, 0.06539890915155411, 0.0599217414855957, -0.029707608744502068, 0.0290134958922863, 0.03423139452934265, -0.06522124260663986, 0.07478781044483185, -0.10563503205776215, -0.032622404396533966, -0.1149647980928421, -0.0491909459233284, -0.06418868154287338, 0.037999723106622696, -0.012643907219171524, 0.09651239216327667, -0.15142805874347687, -0.017647596076130867, -0.009585668332874775, 0.010111287236213684, 0.06257646530866623, 0.022552762180566788, -0.06256012618541718, 0.03538025543093681, 0.1318415105342865, -0.03313593566417694, 0.01372505072504282, -0.09571851789951324 ]
8d69489969be8948b775d7ee8bd03dd8f4e40056
# Dataset Card for "diana_uribe_large_ada_embeddings" [More Information needed](https://github.com/huggingface/datasets/blob/main/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
juancopi81/diana_uribe_large_ada_embeddings
[ "region:us" ]
2023-02-07T15:32:35+00:00
{"dataset_info": {"features": [{"name": "TITLE", "dtype": "string"}, {"name": "URL", "dtype": "string"}, {"name": "TRANSCRIPTION", "dtype": "string"}, {"name": "transcription_length", "dtype": "int64"}, {"name": "text", "dtype": "string"}, {"name": "ada_embedding", "dtype": "string"}], "splits": [{"name": "train", "num_bytes": 128412971, "num_examples": 3215}], "download_size": 83354282, "dataset_size": 128412971}}
2023-02-07T15:32:43+00:00
[]
[]
TAGS #region-us
# Dataset Card for "diana_uribe_large_ada_embeddings" More Information needed
[ "# Dataset Card for \"diana_uribe_large_ada_embeddings\"\n\nMore Information needed" ]
[ "TAGS\n#region-us \n", "# Dataset Card for \"diana_uribe_large_ada_embeddings\"\n\nMore Information needed" ]
[ 6, 23 ]
[ "passage: TAGS\n#region-us \n# Dataset Card for \"diana_uribe_large_ada_embeddings\"\n\nMore Information needed" ]
[ -0.062131404876708984, 0.13923805952072144, -0.004879452753812075, 0.06818554550409317, 0.16443407535552979, 0.10619965195655823, 0.15213069319725037, 0.046435628086328506, 0.16550233960151672, 0.044963788241147995, 0.10439972579479218, -0.02916755899786949, 0.01045212522149086, 0.12659955024719238, -0.027151601389050484, -0.03663235530257225, 0.0031252859625965357, 0.04796527326107025, -0.11735823005437851, 0.007737635634839535, 0.011901031248271465, -0.11727875471115112, 0.127031147480011, -0.08935850858688354, -0.15127459168434143, 0.07117386162281036, -0.10043761879205704, -0.03646565601229668, 0.001526462845504284, -0.060233067721128464, 0.15040361881256104, -0.01614815555512905, 0.03500189259648323, -0.10525140911340714, 0.013557150959968567, -0.04305099695920944, -0.029177982360124588, 0.04719122499227524, 0.003997159656137228, -0.0005890453467145562, -0.20284104347229004, -0.07556823641061783, 0.019707776606082916, -0.010649917647242546, -0.0862559974193573, -0.104056715965271, -0.03150620311498642, -0.03272441029548645, -0.026934465393424034, -0.036820054054260254, 0.06258498132228851, 0.07725903391838074, -0.13933566212654114, -0.0272044837474823, 0.062131427228450775, -0.1137654110789299, 0.04792351648211479, 0.10563518106937408, -0.07850314676761627, 0.18336693942546844, 0.0021215081214904785, 0.012999887578189373, 0.10148671269416809, -0.020501885563135147, -0.05888907238841057, -0.0259394571185112, -0.06564725190401077, 0.07566218823194504, 0.011734746396541595, -0.0886746495962143, 0.3418583869934082, 0.05351508408784866, 0.03000630997121334, 0.062048736959695816, -0.03245579078793526, -0.04029608145356178, -0.03390532732009888, 0.08249834924936295, 0.08566585183143616, 0.014454253017902374, -0.052665747702121735, -0.0376104898750782, -0.08937231451272964, -0.04994186758995056, -0.15999382734298706, 0.005111335776746273, -0.026435596868395805, 0.11913833022117615, -0.20305027067661285, -0.04102605953812599, -0.08965883404016495, -0.07989583164453506, -0.005224910099059343, -0.08031190931797028, 0.05345311388373375, 0.0021857954561710358, -0.0026013755705207586, 0.01871013082563877, 0.14745427668094635, 0.11028491705656052, 0.14657439291477203, 0.039476219564676285, -0.08021414279937744, 0.11452530324459076, 0.10297445952892303, 0.017349915578961372, -0.06791844964027405, -0.0501038022339344, 0.03976083919405937, -0.04883427545428276, 0.037924155592918396, -0.06545870006084442, -0.16390708088874817, -0.0020064006093889475, -0.13428187370300293, 0.05925638973712921, -0.06587493419647217, -0.08640473335981369, -0.06659112870693207, -0.004007815849035978, 0.18315033614635468, -0.05171145126223564, 0.060520969331264496, -0.01982758194208145, -0.01869579777121544, 0.05731846019625664, -0.04990960285067558, -0.02404225803911686, 0.10587670654058456, 0.057234663516283035, -0.11049442738294601, -0.037269819527864456, -0.02585015259683132, 0.0014988193288445473, 0.08995754271745682, -0.15526066720485687, 0.10949083417654037, -0.1494988054037094, -0.17329798638820648, 0.07772541046142578, 0.02170727588236332, -0.0883929654955864, 0.1470729112625122, 0.0015790772158652544, 0.07224927097558975, 0.01259697787463665, -0.06049525365233421, 0.0036536874249577522, -0.04737887904047966, 0.008538741618394852, 0.07230307161808014, 0.12132097035646439, -0.19811834394931793, 0.05046362057328224, -0.12670208513736725, 0.02278156206011772, -0.00879238173365593, 0.03269684687256813, -0.0270363911986351, 0.14936470985412598, -0.0482783243060112, -0.007535362616181374, -0.20077601075172424, 0.029754063114523888, 0.05032608285546303, 0.06737730652093887, -0.12308365106582642, -0.050871364772319794, 0.17803123593330383, -0.06915318220853806, -0.18627049028873444, 0.061491675674915314, -0.020365938544273376, 0.008760436438024044, 0.04409763589501381, 0.2009982168674469, -0.08707741647958755, 0.012851975858211517, -0.007040758617222309, 0.09355197101831436, -0.04571441560983658, -0.29122230410575867, 0.08926020562648773, -0.022399701178073883, 0.0039611803367733955, 0.026397930458188057, 0.1658361852169037, 0.07404808700084686, -0.037264879792928696, -0.062129195779561996, -0.035992976278066635, -0.1635829508304596, -0.02164093777537346, 0.015284397639334202, 0.04123855382204056, -0.006725215818732977, 0.07586882263422012, 0.10713022202253342, 0.05766285955905914, 0.01325207483023405, -0.010374159552156925, -0.040437351912260056, 0.18067671358585358, -0.2084699273109436, -0.014688088558614254, -0.15702131390571594, 0.004249766934663057, -0.0034262612462043762, 0.031258951872587204, 0.060669124126434326, 0.004878609906882048, 0.10615324974060059, -0.05350261926651001, 0.007970014587044716, 0.08644763380289078, 0.04798527806997299, 0.01244242675602436, 0.04106602072715759, 0.021145770326256752, 0.07235050946474075, -0.06884369254112244, -0.0635414868593216, -0.026135221123695374, -0.0734713152050972, 0.03003913350403309, 0.049709949642419815, 0.062027860432863235, -0.013537387363612652, 0.010764461010694504, 0.006069919094443321, -0.045896295458078384, -0.038804348558187485, -0.0029248669743537903, -0.05145632103085518, 0.010981080122292042, -0.02766161598265171, -0.01879613660275936, 0.21594922244548798, 0.1400347352027893, 0.02573270909488201, 0.06517253816127777, -0.015602187253534794, 0.038705747574567795, 0.020855356007814407, 0.04395740106701851, 0.0065710642375051975, -0.0653100237250328, -0.06731719523668289, 0.09737004339694977, -0.07378526777029037, 0.053810637444257736, 0.0666285827755928, -0.041657812893390656, -0.12144314497709274, 0.02678614668548107, 0.18085312843322754, -0.24632780253887177, 0.1625807285308838, 0.2265676110982895, -0.015905966982245445, 0.13742424547672272, -0.03996037319302559, -0.11841077357530594, 0.02802576683461666, -0.05250338092446327, -0.026439879089593887, 0.1488439440727234, -0.09631755203008652, 0.015115211717784405, 0.08706071972846985, -0.01363985612988472, 0.058079782873392105, -0.025494452565908432, -0.06091044098138809, 0.021598154678940773, 0.05380290374159813, -0.18357501924037933, -0.006076782010495663, 0.016959665343165398, 0.0735388696193695, 0.038809504359960556, 0.03182640299201012, 0.08966344594955444, -0.005926157347857952, 0.009706942364573479, 0.10557319223880768, -0.1038200855255127, -0.19486108422279358, -0.11251925677061081, -0.1205843836069107, 0.06961993128061295, 0.024409862235188484, -0.0161213930696249, -0.20426176488399506, -0.033418361097574234, 0.019112106412649155, -0.0989479348063469, -0.07002180069684982, 0.006703464780002832, 0.108090840280056, 0.0632537454366684, -0.01768290437757969, -0.07236539572477341, -0.013931166380643845, -0.06030969321727753, 0.16523079574108124, 0.07873141020536423, -0.07304508984088898, 0.15783415734767914, 0.08459790050983429, -0.03032257780432701, 0.06413301080465317, 0.048037074506282806, 0.09154828637838364, -0.021731318905949593, -0.06736835837364197, 0.12693381309509277, -0.06012672930955887, 0.00917505007237196, 0.10780778527259827, 0.07788249850273132, -0.11280233412981033, -0.04083150252699852, -0.05064171925187111, -0.19311955571174622, -0.19815339148044586, -0.12052762508392334, -0.11312279850244522, 0.018394477665424347, 0.08742868900299072, 0.050856854766607285, -0.12038614600896835, 0.08775138854980469, 0.10364029556512833, 0.04241272062063217, -0.1840577870607376, -0.04283585399389267, 0.009705393575131893, 0.04257741570472717, -0.032805703580379486, -0.14390501379966736, -0.08595377206802368, 0.12240008264780045, 0.17118030786514282, 0.16807380318641663, 0.07005415111780167, 0.1460929960012436, 0.001887560705654323, 0.0160708986222744, 0.10507488995790482, 0.13742737472057343, 0.021948575973510742, -0.04695868119597435, -0.013907593674957752, 0.0016676342347636819, -0.009203309193253517, 0.025214793160557747, 0.0940278097987175, -0.11289452761411667, 0.05804714933037758, -0.042064979672431946, 0.017558041960000992, -0.16354432702064514, 0.12135373055934906, -0.31316694617271423, 0.0811205580830574, 0.04725067690014839, 0.16719074547290802, -0.07602628320455551, 0.01986490562558174, 0.08327092230319977, 0.02137089893221855, 0.046618878841400146, 0.04105903580784798, 0.05373663082718849, -0.05220578983426094, -0.007828251458704472, -0.015181828290224075, 0.024203790351748466, 0.02094602957367897, 0.0871913731098175, -0.21130388975143433, 0.16900764405727386, 0.026304809376597404, -0.08039210736751556, -0.07752560824155807, -0.040159672498703, -0.01583358831703663, -0.06093228980898857, 0.0979543998837471, 0.024103479459881783, -0.05992666631937027, -0.1757502555847168, -0.13501738011837006, 0.02885066717863083, 0.078069306910038, 0.06644784659147263, -0.0759047344326973, 0.06338633596897125, -0.01305292546749115, -0.0008774553425610065, -0.0885615423321724, -0.06204507499933243, -0.20273010432720184, -0.07095974683761597, 0.0680105984210968, -0.20787914097309113, 0.08201833814382553, -0.004088293295353651, -0.02355288155376911, 0.0795273631811142, 0.08482889086008072, -0.04803035408258438, -0.028879733756184578, 0.019201992079615593, 0.17043960094451904, -0.04895767197012901, 0.04808167740702629, -0.03114296868443489, 0.00780662102624774, -0.023736564442515373, -0.16081593930721283, 0.10644597560167313, -0.06421010196208954, 0.09113336354494095, -0.1171984001994133, 0.033822037279605865, -0.047700267285108566, 0.015719376504421234, -0.013340279459953308, 0.007581720594316721, -0.041351448744535446, -0.024710191413760185, 0.11842351406812668, -0.020892154425382614, 0.10641805827617645, 0.1631448119878769, -0.017243683338165283, 0.06347634643316269, 0.12400524318218231, 0.01735851541161537, 0.23352034389972687, 0.09362810850143433, -0.036421433091163635, 0.11969020962715149, 0.16350845992565155, -0.0013708812184631824, -0.233550563454628, -0.024058111011981964, -0.13340312242507935, 0.005193809978663921, 0.09935920685529709, -0.23829428851604462, 0.122665636241436, 0.08642492443323135, -0.030269337818026543, 0.19066759943962097, -0.09635094553232193, -0.00570424972102046, 0.15390577912330627, -0.006266792770475149, 0.41286274790763855, -0.10865996778011322, -0.056648992002010345, -0.12072676420211792, -0.12230689823627472, 0.13782310485839844, 0.03866902366280556, 0.03328736498951912, -0.029717475175857544, 0.1155451089143753, 0.014469501562416553, -0.06345285475254059, 0.13909317553043365, 0.004108463879674673, 0.05083669349551201, -0.09708859026432037, -0.0907956212759018, 0.1332215815782547, -0.06852871924638748, 0.06312219053506851, -0.11296185106039047, -0.00192282535135746, -0.101676806807518, -0.02810952067375183, 0.05869594216346741, -0.01497532520443201, 0.10716024786233902, -0.039582591503858566, -0.08324742317199707, -0.024571886286139488, -0.07859048992395401, 0.009269787929952145, 0.17190544307231903, 0.08314581215381622, -0.09422484785318375, 0.025639206171035767, 0.04464152455329895, -0.103279709815979, -0.009275296702980995, -0.050085484981536865, -0.06945480406284332, 0.08555392920970917, -0.30150601267814636, 0.07327431440353394, 0.08212096244096756, -0.0021701822988688946, 0.0009501150925643742, 0.06404708325862885, -0.03208854794502258, 0.07528546452522278, 0.20216016471385956, -0.019741294905543327, 0.042461179196834564, 0.08820037543773651, -0.04076680541038513, -0.03236963972449303, -0.01850416511297226, 0.004943448584526777, 0.07940863817930222, -0.006888332776725292, -0.011583944782614708, 0.06516844034194946, -0.06165013089776039, 0.06602513790130615, 0.11793377995491028, 0.012393864803016186, -0.13774308562278748, 0.21114681661128998, 0.06184219568967819, -0.05467986315488815, 0.06390494853258133, -0.0867791399359703, -0.06113206967711449, -0.04978117346763611, 0.03243020921945572, 0.1903279721736908, -0.0240972600877285, -0.09876357018947601, -0.07588725537061691, -0.01453105453401804, 0.015625489875674248, -0.06458288431167603, 0.048442889004945755, 0.028666090220212936, 0.002952542155981064, -0.033804476261138916, -0.06212136149406433, 0.015381811186671257, -0.061297062784433365, 0.056077826768159866, -0.11691328138113022, -0.3074576258659363, -0.07229487597942352, 0.14238782227039337, -0.041556842625141144, -0.002612699754536152, -0.11166184395551682, 0.045220162719488144, -0.206503763794899, 0.02605833113193512, 0.007960282266139984, -0.009446491487324238, -0.02473467029631138, 0.030926913022994995, -0.0630616620182991, -0.0065568313002586365, -0.09183523803949356, 0.04183975234627724, 0.06624510884284973, 0.05530821904540062, -0.05564647912979126, -0.007993481121957302, 0.05487868934869766, 0.02116476744413376, 0.09178446978330612, 0.04948505014181137, -0.00905182957649231, -0.018119484186172485, -0.08245262503623962, -0.12866508960723877, 0.10566446185112, 0.08269617706537247, 0.07222554832696915, 0.1796635538339615, 0.05664559826254845, 0.06481330096721649, -0.015793215483427048, 0.004117452073842287, 0.03015880286693573, -0.028897346928715706, 0.09749700129032135, -0.16193890571594238, -0.07965712994337082, 0.014501350000500679, -0.0289451964199543, 0.15274189412593842, 0.001105680363252759, -0.016202306374907494, 0.061392415314912796, -0.006151845213025808, -0.05538037419319153, -0.038103342056274414, 0.009968921542167664, -0.08962563425302505, -0.12306340783834457, -0.010867958888411522, 0.02150777541100979, -0.03558848798274994, 0.451810359954834, -0.004034707788378, -0.16928839683532715, -0.041272539645433426, 0.18840625882148743, 0.044317878782749176, -0.0022858295124024153, 0.25961828231811523, 0.055118486285209656, -0.0605398528277874, -0.07716836035251617, 0.051886625587940216, 0.06957611441612244, 0.17045556008815765, 0.05902274325489998, 0.18325142562389374, 0.03625686094164848, 0.015003877691924572, 0.09501013904809952, -0.027446718886494637, -0.03957844525575638, 0.020577773451805115, 0.006793496198952198, 0.02708747237920761, 0.06863708794116974, -0.034889329224824905, 0.012151158414781094, 0.01703009009361267, -0.02867097035050392, -0.06510434299707413, -0.01589283160865307, -0.059394050389528275, -0.08354585617780685, -0.08627000451087952, -0.1306474208831787, 0.07606621086597443, -0.05743272602558136, -0.07450693845748901, 0.27180615067481995, -0.002809688216075301, -0.022932788357138634, 0.04910700395703316, -0.000582410313654691, 0.029457634314894676, -0.02208373136818409, -0.00904129073023796, -0.05302245542407036, 0.08312667906284332, -0.07465872168540955, 0.022894922643899918, -0.03391113132238388, -0.01111498475074768, 0.017334992066025734, 0.06419166922569275, 0.02728312648832798, -0.10547704249620438, -0.05211874470114708, -0.11023629456758499, 0.07274921238422394, -0.07520920783281326, 0.04001243785023689, -0.0040139323100447655, 0.007699513807892799, 0.014028283767402172, -0.0020929088350385427, 0.046624042093753815, 0.11611735075712204, -0.00020458475046325475, -0.10327869653701782, -0.05521441623568535, 0.09683362394571304, -0.04927749186754227, -0.10815810412168503, -0.08281056582927704, 0.19560813903808594, 0.2292846441268921, -0.09918432682752609, -0.022475719451904297, 0.03908843547105789, 0.04064209759235382, -0.03434959799051285, 0.14362160861492157, 0.04262680560350418, 0.08091981709003448, -0.00401640497148037, -0.1624438762664795, 0.012635710649192333, -0.025327583774924278, -0.03408235311508179, 0.04523312672972679, 0.032263439148664474, -0.04178062453866005, -0.10966048389673233, 0.08054434508085251, -0.17452114820480347, 0.12027546763420105, 0.12528681755065918, -0.23761869966983795, -0.12098386138677597, -0.024246934801340103, 0.08000865578651428, 0.04434655234217644, 0.002825972158461809, -0.11136604100465775, -0.07406073808670044, -0.12015587836503983, -0.01066612359136343, -0.28013667464256287, -0.07978060096502304, -0.039908867329359055, 0.02023620717227459, 0.1297609806060791, -0.014577009715139866, 0.05074446648359299, 0.04355031996965408, 0.052492544054985046, -0.07502543926239014, -0.03796188533306122, 0.014338543638586998, 0.11883800476789474, -0.020699748769402504, -0.016588175669312477, -0.09083443135023117, -0.09342949837446213, 0.11726290732622147, 0.03484839200973511, -0.0841732919216156, 0.04719473049044609, 0.015734929591417313, -0.061355698853731155, -0.05036429688334465, -0.0897219330072403, 0.12157389521598816, -0.02564077265560627, -0.017120322212576866, -0.05693016201257706, 0.028989257290959358, 0.11653504520654678, 0.0939919501543045, -0.07239814102649689, -0.09735096246004105, -0.034495748579502106, -0.09723710268735886, 0.052478473633527756, 0.02315208502113819, -0.207741841673851, 0.04571983963251114, -0.10121103376150131, 0.027091454714536667, -0.04920966550707817, 0.04799185320734978, 0.24749819934368134, 0.0663684606552124, -0.04046500474214554, -0.04114806279540062, 0.0651174783706665, -0.005631581414490938, -0.03725346922874451, -0.071769118309021 ]
0819062721f16014431557c2df35f3bbaca17fe6
# Dataset Card for "ABSA_LCF" [More Information needed](https://github.com/huggingface/datasets/blob/main/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
qbaro/ABSA_LCF
[ "region:us" ]
2023-02-07T16:34:11+00:00
{"dataset_info": {"features": [{"name": "name_data", "dtype": "string"}, {"name": "sentence", "sequence": "string"}, {"name": "aspect", "sequence": "string"}, {"name": "sentence_label", "sequence": "string"}, {"name": "aspect_label", "sequence": "string"}, {"name": "polarity", "sequence": "int64"}], "splits": [{"name": "train", "num_bytes": 16064944, "num_examples": 34648}, {"name": "test", "num_bytes": 3331953, "num_examples": 7462}], "download_size": 2584799, "dataset_size": 19396897}}
2023-02-07T16:37:54+00:00
[]
[]
TAGS #region-us
# Dataset Card for "ABSA_LCF" More Information needed
[ "# Dataset Card for \"ABSA_LCF\"\n\nMore Information needed" ]
[ "TAGS\n#region-us \n", "# Dataset Card for \"ABSA_LCF\"\n\nMore Information needed" ]
[ 6, 15 ]
[ "passage: TAGS\n#region-us \n# Dataset Card for \"ABSA_LCF\"\n\nMore Information needed" ]
[ -0.148508682847023, 0.11077883094549179, -0.002326283371075988, 0.028636937960982323, 0.11622143536806107, 0.09285323321819305, 0.12189483642578125, 0.045511964708566666, 0.1529223471879959, -0.022333407774567604, 0.1056148111820221, -0.060901470482349396, 0.052694935351610184, 0.26506248116493225, -0.10891256481409073, -0.0035592294298112392, 0.022704780101776123, 0.001962300855666399, -0.05718250200152397, 0.007433031685650349, 0.006218607537448406, -0.03745565935969353, 0.08025984466075897, -0.11722704023122787, -0.19355827569961548, 0.12186823040246964, -0.02612152136862278, -0.09795906394720078, 0.07851880043745041, 0.026808740571141243, 0.16969481110572815, 0.00640440545976162, 0.03293515369296074, -0.15148334205150604, 0.01934162899851799, -0.04920901358127594, -0.04180283844470978, 0.07005913555622101, -0.024203315377235413, -0.045036010444164276, -0.015466490760445595, 0.10489469766616821, 0.0029931007884442806, -0.011952401138842106, -0.15272504091262817, -0.1983264982700348, -0.09231772273778915, -0.04801756888628006, 0.05768180266022682, -0.038755420595407486, 0.10814779251813889, 0.04038258641958237, -0.08593742549419403, 0.0008193004177883267, 0.029027147218585014, -0.06605501472949982, 0.0457901656627655, 0.10824397206306458, -0.10571526736021042, 0.09678106009960175, 0.004373223055154085, 0.08526453375816345, 0.11945735663175583, -0.030161136761307716, -0.020031437277793884, -0.046395961195230484, -0.2212291657924652, 0.11294006556272507, 0.015604902058839798, -0.07914325594902039, 0.4446527063846588, -0.0365014374256134, -0.026051940396428108, 0.06030784547328949, 0.031147707253694534, -0.0061914799734950066, -0.027124658226966858, 0.06719286739826202, 0.01189053151756525, 0.020137635990977287, 0.10441044718027115, -0.028807001188397408, -0.107889823615551, -0.14530277252197266, -0.16979944705963135, 0.043452393263578415, -0.06334416568279266, 0.18077918887138367, -0.16449818015098572, -0.013469784520566463, -0.24345093965530396, -0.061385512351989746, -0.002408011816442013, -0.08127059787511826, 0.0042184083722531796, 0.022389698773622513, 0.017880434170365334, 0.04932120442390442, 0.1071954071521759, 0.08967011421918869, 0.09264461696147919, 0.01394221093505621, -0.1493980586528778, 0.08520923554897308, 0.09384574741125107, -0.06046707183122635, 0.033841267228126526, 0.055807169526815414, 0.003020340809598565, -0.07558441162109375, -0.02584157884120941, -0.10231481492519379, -0.10125535726547241, 0.02435476705431938, -0.15764497220516205, 0.12230043113231659, -0.06488612294197083, -0.15335479378700256, -0.07119474560022354, 0.027240075170993805, 0.18547973036766052, -0.12421774864196777, 0.0317707359790802, 0.00510029960423708, -0.06813310831785202, -0.0797630250453949, -0.004729145672172308, 0.010945772752165794, 0.11256878077983856, 0.11677107214927673, -0.07747620344161987, -0.06300894916057587, -0.050137873739004135, 0.016304602846503258, 0.08870456367731094, -0.16420970857143402, 0.11481168866157532, -0.14680908620357513, -0.2951289713382721, 0.0641525387763977, 0.004050299525260925, -0.09080611914396286, 0.14696869254112244, 0.04772774875164032, 0.06063472852110863, 0.011694913730025291, -0.08457618951797485, 0.09544853121042252, -0.07316392660140991, 0.02214377373456955, 0.0924968346953392, 0.08217412233352661, -0.2398654818534851, 0.057236507534980774, -0.0947088971734047, 0.028137408196926117, -0.07395415008068085, 0.034051887691020966, -0.17597241699695587, 0.10574249178171158, -0.06303414702415466, 0.060259975492954254, -0.1888420283794403, 0.04512008652091026, 0.01920289918780327, 0.07463011145591736, -0.20449687540531158, -0.05001133307814598, 0.09284202754497528, -0.1920795440673828, -0.176274374127388, -0.033656489104032516, -0.023233924061059952, 0.013379671610891819, 0.022735031321644783, 0.3212478756904602, 0.009922430850565434, -0.06133038178086281, -0.007535943761467934, 0.12363843619823456, -0.06290565431118011, -0.32664477825164795, 0.09799092262983322, 0.004612034652382135, -0.13474969565868378, 0.050190623849630356, 0.04684041813015938, 0.07690789550542831, -0.025241611525416374, -0.08804912865161896, -0.015096750110387802, -0.14331932365894318, -0.07449499517679214, 0.010862168855965137, 0.040225859731435776, 0.01841944083571434, 0.17611360549926758, 0.010818946175277233, 0.08245088905096054, 0.03504536300897598, -0.058465536683797836, -0.015365378931164742, 0.11917854100465775, -0.13524693250656128, 0.0026215941179543734, -0.1325899213552475, -0.15560869872570038, -0.04229528456926346, 0.05365545675158501, 0.039451856166124344, -0.004783852957189083, 0.05479203537106514, -0.027383064851164818, 0.03720390424132347, 0.08163655549287796, 0.09105048328638077, 0.023341596126556396, 0.04666494205594063, -0.028378458693623543, 0.012100725434720516, -0.10791221261024475, 0.005876011680811644, -0.10657265037298203, -0.03644249588251114, 0.03897714614868164, 0.024823930114507675, 0.05153980106115341, 0.02018323354423046, 0.058845505118370056, 0.04247327893972397, 0.012516669929027557, -0.022216612473130226, -0.017313608899712563, -0.06606438010931015, -0.0494474358856678, 0.05724876746535301, -0.012580608949065208, 0.2983890473842621, 0.11567413061857224, 0.08431605994701385, 0.011911729350686073, -0.1306450217962265, 0.052183762192726135, -0.009937061928212643, -0.048019617795944214, 0.026611896231770515, 0.00244451523758471, -0.04706285893917084, 0.09674491733312607, -0.06714259833097458, 0.06715145707130432, 0.030747339129447937, -0.04806986451148987, -0.13073939085006714, 0.05763845518231392, 0.20880462229251862, -0.14027607440948486, 0.1600751131772995, 0.19652973115444183, 0.09584232419729233, 0.16191452741622925, -0.07756535708904266, -0.11921616643667221, 0.030746065080165863, -0.020501883700489998, -0.027210783213377, 0.2122095227241516, 0.06674192100763321, 0.0037743395660072565, 0.09543651342391968, -0.03061196394264698, 0.07975319027900696, -0.10920406132936478, -0.11583282798528671, 0.01976729929447174, -0.016941286623477936, -0.16391673684120178, 0.0029982863925397396, -0.0374857634305954, 0.10804136097431183, -0.018710704520344734, -0.08289140462875366, 0.0873519703745842, 0.0012062513269484043, -0.0061502717435359955, 0.11741992831230164, -0.16885730624198914, -0.24023312330245972, -0.09018056094646454, -0.04017320275306702, 0.06296592950820923, 0.04783889278769493, -0.04024433717131615, -0.10356752574443817, -0.06719556450843811, 0.031137757003307343, -0.08896200358867645, -0.06464754045009613, -0.05873659625649452, 0.11007306724786758, 0.004224967211484909, -0.02280931919813156, -0.09422443062067032, -0.0007701185531914234, -0.011182529851794243, 0.09781238436698914, 0.11738874763250351, -0.0631178766489029, 0.1736459881067276, 0.06045851856470108, -0.01662403903901577, 0.07838985323905945, -0.020296962931752205, -0.012076125480234623, -0.041206151247024536, -0.08780425041913986, 0.11916791647672653, -0.04906083270907402, -0.030867790803313255, 0.049087658524513245, 0.06568761169910431, -0.13685010373592377, -0.040487032383680344, -0.04563629627227783, -0.2376239001750946, -0.19823361933231354, -0.1245265007019043, -0.07630284130573273, 0.07516589760780334, 0.02455305866897106, 0.08899324387311935, -0.014378953725099564, 0.08561991900205612, 0.15328975021839142, -0.032677218317985535, -0.14835120737552643, -0.06953668594360352, 0.04289747402071953, 0.0005477106315083802, 0.0315609946846962, -0.18112459778785706, -0.0119639215990901, 0.1471920758485794, 0.2086518406867981, 0.220412939786911, 0.07804402709007263, 0.040511731058359146, -0.0054407245479524136, 0.06924968957901001, 0.11244842410087585, 0.16986887156963348, 0.03345658630132675, -0.06228899583220482, -0.0054494827054440975, -0.007878784090280533, -0.09107500314712524, 0.04153486341238022, -0.039018210023641586, -0.1378716379404068, 0.009061680175364017, -0.10420181602239609, -0.015889044851064682, -0.19454826414585114, 0.032383065670728683, -0.21419914066791534, 0.10841577500104904, 0.04286353662610054, 0.13521797955036163, -0.12189894914627075, 0.05906519293785095, 0.10540414601564407, -0.018435588106513023, 0.06818478554487228, 0.05621631070971489, 0.09116727113723755, -0.036713458597660065, -0.01979661174118519, -0.058265604078769684, -0.10430359840393066, -0.008275005966424942, 0.09960280358791351, -0.2399289309978485, 0.21590840816497803, 0.04962253198027611, -0.06450815498828888, -0.05874128267168999, -0.030795682221651077, -0.0254839900881052, 0.05829710140824318, 0.135217547416687, -0.01706456020474434, -0.23966655135154724, -0.2737651467323303, -0.11945176124572754, 0.023104814812541008, 0.01835860125720501, 0.030894851312041283, -0.1620550900697708, 0.06924771517515182, 0.030326537787914276, -0.0302041657269001, -0.10845893621444702, -0.03438297659158707, -0.12929897010326385, 0.022994356229901314, 0.14617669582366943, -0.1659460812807083, 0.022920943796634674, 0.0237556342035532, 0.044718917459249496, -0.018216704949736595, 0.08373977988958359, -0.053974032402038574, -0.17064109444618225, -0.013248017057776451, 0.15464358031749725, -0.015024797059595585, 0.03752520680427551, 0.04999035969376564, -0.06758927553892136, -0.04456593841314316, -0.22350139915943146, 0.08915679901838303, -0.075841523706913, 0.1408335566520691, -0.057121314108371735, 0.06291290372610092, -0.0516846664249897, 0.02436762861907482, -0.01974284090101719, 0.03312380239367485, 0.022415490821003914, -0.06989775598049164, 0.13357765972614288, -0.07591159641742706, 0.09747035056352615, 0.20069803297519684, 0.014744527637958527, 0.02693762816488743, 0.14508399367332458, -0.030654167756438255, 0.1221328154206276, 0.1373492181301117, -0.06498386710882187, 0.20365554094314575, 0.13067851960659027, -0.05596236139535904, -0.23239395022392273, 0.0029427206609398127, -0.13514412939548492, 0.032602231949567795, 0.06316468119621277, -0.2658565640449524, 0.12137813866138458, 0.15175622701644897, -0.07001437991857529, 0.3284279704093933, -0.06927216798067093, -0.003766927169635892, 0.2680065929889679, -0.04585272818803787, 0.33528247475624084, -0.17093364894390106, -0.08196979761123657, -0.09808476269245148, -0.14402075111865997, 0.127784863114357, -0.03926600515842438, -0.0025098472833633423, -0.04160792753100395, 0.11892793327569962, 0.01613640785217285, -0.033554766327142715, 0.20387955009937286, 0.04949875921010971, 0.12549319863319397, -0.07005708664655685, -0.021457936614751816, 0.06650329381227493, -0.03080163709819317, 0.15654833614826202, -0.06173928827047348, 0.006110170856118202, -0.2278086543083191, 0.002913120901212096, 0.09236549586057663, 0.0679190531373024, 0.08471580594778061, -0.03150894120335579, -0.04634995386004448, -0.04016701132059097, -0.18221862614154816, -0.03174363449215889, 0.09587345272302628, -0.02720796875655651, 0.06386232376098633, 0.13881923258304596, 0.03993724659085274, -0.07061617821455002, 0.07387875765562057, -0.023693503811955452, -0.06640207022428513, 0.10595247149467468, -0.2745022475719452, 0.08287951350212097, 0.11776889115571976, -0.023934200406074524, 0.055383749306201935, 0.01880033127963543, -0.016499703750014305, 0.02730020135641098, 0.1920362114906311, -0.11443721503019333, 0.13665923476219177, 0.03127200901508331, 0.006590398494154215, 0.07996673882007599, 0.04119350016117096, 0.06206100061535835, -0.01051940955221653, 0.03461306169629097, -0.049163900315761566, 0.04571881145238876, -0.08926163613796234, 0.12196337431669235, 0.1199006661772728, 0.005099286325275898, -0.1755896359682083, 0.18272581696510315, 0.037717267870903015, -0.0054648397490382195, 0.05618342384696007, -0.02776116132736206, -0.024020185694098473, -0.08886852115392685, -0.07595270872116089, 0.3039090633392334, -0.16363857686519623, -0.14255230128765106, 0.014892884530127048, -0.08652452379465103, 0.006989181507378817, 0.1178857609629631, -0.008791144005954266, 0.0451212115585804, 0.011581042781472206, -0.06130611523985863, -0.022451823577284813, -0.04718426614999771, -0.09806110709905624, 0.05924627184867859, -0.09432651847600937, -0.20222726464271545, -0.06872692704200745, 0.1356925368309021, -0.0699753686785698, -0.03156869113445282, -0.08574454486370087, 0.08021017163991928, -0.15962575376033783, 0.04066171124577522, 0.06192277744412422, 0.0036501579452306032, 0.03096839226782322, -0.012246820144355297, -0.028098415583372116, -0.02468535676598549, -0.11680193245410919, 0.12013425678014755, 0.02096863090991974, 0.024671204388141632, -0.131320059299469, -0.06199438124895096, 0.05485204607248306, 0.08454397320747375, 0.08165521919727325, 0.16515424847602844, 0.05564472824335098, 0.06816031783819199, -0.06834764778614044, -0.05681496486067772, 0.13912886381149292, 0.045572444796562195, 0.0699073001742363, 0.08769439905881882, 0.03170028701424599, 0.09942950308322906, -0.07617752999067307, 0.06090366467833519, -0.0068487320095300674, -0.0929017961025238, -0.0684768557548523, -0.10131143778562546, -0.11198889464139938, 0.018808072432875633, -0.033389803022146225, 0.2619469463825226, 0.1046624556183815, -0.07431028038263321, 0.08596436679363251, -0.016967792063951492, -0.019804207608103752, -0.057668257504701614, -0.023538680747151375, -0.14357809722423553, -0.042780227959156036, 0.01824364811182022, 0.02284947596490383, -0.08025902509689331, 0.4623359441757202, 0.05223642289638519, -0.17125074565410614, -0.05754454433917999, 0.08742401003837585, 0.1349729597568512, 0.018474258482456207, 0.26641714572906494, 0.10607019066810608, -0.001411778386682272, -0.037032004445791245, 0.1000673770904541, -0.03194967657327652, 0.020881449803709984, 0.053430214524269104, 0.0862177312374115, -0.03713919222354889, -0.025772590190172195, 0.12098941951990128, -0.12957265973091125, 0.13962656259536743, -0.07118816673755646, -0.0950673297047615, -0.0041490220464766026, 0.06488445401191711, -0.08261840790510178, 0.09212066978216171, -0.05701658874750137, 0.04197748750448227, -0.04285040870308876, -0.05606392025947571, -0.149227112531662, -0.09417764842510223, -0.026855939999222755, -0.0761847048997879, 0.05115121975541115, -0.08455972373485565, -0.025287745520472527, 0.27662286162376404, -0.003250641282647848, 0.03669584169983864, 0.07322069257497787, -0.046756330877542496, 0.07809580117464066, 0.018143247812986374, 0.007188184652477503, -0.03368000686168671, -0.09182725846767426, -0.022663764655590057, 0.07714405655860901, -0.020139914005994797, -0.06962578743696213, -0.028208279982209206, 0.1110195741057396, 0.05679217353463173, -0.1074279397726059, -0.01509971171617508, -0.08600634336471558, 0.053064823150634766, -0.06180553138256073, 0.021443435922265053, -0.007488510105758905, 0.028523609042167664, 0.03090570494532585, 0.15080145001411438, 0.006751940120011568, 0.10545312613248825, -0.0408637709915638, -0.06125623732805252, -0.05944467708468437, 0.1101880669593811, -0.0927974209189415, -0.04389938339591026, -0.02087932638823986, 0.093292735517025, 0.2740505039691925, -0.10867264121770859, 0.0016155537450686097, -0.06959834694862366, 0.051646746695041656, 0.00728464312851429, 0.17486387491226196, 0.05393841862678528, 0.09400122612714767, -0.011737997643649578, -0.11031565070152283, -0.02167118340730667, -0.007957112044095993, -0.04369005560874939, 0.10835719853639603, 0.035409241914749146, -0.0549682155251503, -0.09179630875587463, 0.07847820967435837, -0.021072521805763245, 0.12771320343017578, 0.07176446169614792, -0.11287461221218109, -0.10481534153223038, -0.0500633604824543, 0.02363414689898491, 0.004416786599904299, -0.09115991741418839, -0.13046817481517792, -0.0024166153743863106, -0.061064910143613815, -0.005006818566471338, -0.3118290603160858, -0.18851016461849213, -0.017980439588427544, -0.0066561088897287846, 0.05460246652364731, -0.009901385754346848, 0.03972185030579567, -0.04347985237836838, 0.04518638923764229, -0.07356391102075577, 0.08722757548093796, -0.0022463209461420774, 0.030207699164748192, -0.042936552315950394, 0.016375331208109856, -0.06723370403051376, 0.016216574236750603, 0.08112746477127075, -0.012736053206026554, -0.05071225017309189, 0.04363109543919563, -0.03685508295893669, 0.023801174014806747, -0.01080816425383091, -0.12257534265518188, 0.11639707535505295, 0.0006612336728721857, 0.010240158066153526, -0.00992626417428255, -0.027506522834300995, 0.10887409001588821, 0.05463210120797157, -0.07485070079565048, -0.041067223995923996, 0.0651756078004837, -0.0842847228050232, 0.11603479087352753, -0.005191354546695948, -0.13837900757789612, 0.06478437781333923, -0.1539630889892578, 0.009853706695139408, 0.012898705899715424, 0.05434173718094826, 0.1881917417049408, 0.06108131259679794, -0.050436269491910934, -0.13516925275325775, 0.10557875037193298, 0.002932063303887844, 0.017804432660341263, -0.06632848083972931 ]
1d554dc6a22e16ece32fe00f5b35a62e056b7f14
# Dataset Card for "davinci-pairwise-all" [More Information needed](https://github.com/huggingface/datasets/blob/main/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
AlekseyKorshuk/davinci-pairwise-all
[ "region:us" ]
2023-02-07T16:37:56+00:00
{"dataset_info": {"features": [{"name": "chosen", "dtype": "string"}, {"name": "rejected", "sequence": "string"}, {"name": "prompt", "dtype": "string"}, {"name": "api_prompt", "dtype": "string"}], "splits": [{"name": "train", "num_bytes": 1866932601, "num_examples": 47954}], "download_size": 820468098, "dataset_size": 1866932601}}
2023-02-07T17:32:26+00:00
[]
[]
TAGS #region-us
# Dataset Card for "davinci-pairwise-all" More Information needed
[ "# Dataset Card for \"davinci-pairwise-all\"\n\nMore Information needed" ]
[ "TAGS\n#region-us \n", "# Dataset Card for \"davinci-pairwise-all\"\n\nMore Information needed" ]
[ 6, 17 ]
[ "passage: TAGS\n#region-us \n# Dataset Card for \"davinci-pairwise-all\"\n\nMore Information needed" ]
[ -0.10862469673156738, 0.15182481706142426, -0.00590054877102375, 0.04756391793489456, 0.0677739679813385, 0.12520258128643036, 0.0783781185746193, 0.08514466136693954, 0.10775699466466904, -0.036166515201330185, 0.10038165003061295, 0.03806857392191887, 0.034387316554784775, 0.2084881067276001, -0.017778120934963226, -0.02922622114419937, 0.02838893234729767, 0.07728439569473267, -0.05071254447102547, 0.04094390571117401, -0.01660825125873089, -0.07493048906326294, 0.025905251502990723, -0.13378246128559113, -0.1726391762495041, 0.04060545936226845, -0.08386150747537613, 0.008012471720576286, 0.05254029482603073, -0.09258504956960678, 0.15945325791835785, 0.03119920752942562, -0.004425558727234602, -0.13121601939201355, 0.029142554849386215, 0.02447260543704033, -0.07548856735229492, 0.075461246073246, 0.04816032946109772, -0.10350225865840912, -0.10571149736642838, 0.04804815351963043, 0.043683867901563644, 0.005429417826235294, -0.12940871715545654, -0.18887890875339508, -0.10885879397392273, -0.09740405529737473, 0.06365139037370682, -0.04866454005241394, 0.037194665521383286, 0.06784889847040176, -0.06930308789014816, 0.06258095800876617, 0.04382172226905823, -0.061623308807611465, 0.054723553359508514, 0.11182695627212524, -0.02168397419154644, 0.05699305981397629, -0.04227721318602562, 0.07073737680912018, 0.0939980149269104, 0.010463698767125607, -0.023251807317137718, -0.05580570176243782, -0.1091909259557724, 0.05962715297937393, -0.038818590342998505, -0.004509299527853727, 0.28559044003486633, 0.002295245649293065, -0.009211440570652485, 0.024215806275606155, -0.0295273344963789, -0.12263412773609161, -0.05841086804866791, 0.07009632140398026, 0.031068764626979828, 0.005883253179490566, 0.07989030331373215, 0.03999349847435951, -0.09385058283805847, -0.11863895505666733, -0.20808817446231842, 0.09753669053316116, -0.042139358818531036, 0.13272425532341003, -0.1651839315891266, -0.002719887997955084, -0.04810953885316849, 0.0008627813658677042, -0.020890654996037483, -0.10282804071903229, -0.09569583088159561, -0.04864387959241867, -0.02556191384792328, 0.06318359822034836, 0.12884151935577393, 0.09409397840499878, 0.07012064009904861, 0.06453841924667358, -0.05868452414870262, 0.0647568628191948, 0.2228870391845703, -0.1702757626771927, 0.013399604707956314, -0.0435539186000824, -0.04376588389277458, -0.14822141826152802, -0.013995714485645294, -0.10955797880887985, -0.06162094324827194, 0.005730606149882078, -0.12320751696825027, 0.09546279907226562, 0.016566356644034386, -0.1094769537448883, -0.08176298439502716, -0.07230276614427567, 0.2104228138923645, -0.09026292711496353, 0.007295497227460146, 0.006988582666963339, -0.02467019483447075, 0.025714119896292686, -0.1392582803964615, 0.0027315798215568066, 0.05001586303114891, 0.052835799753665924, -0.09139067679643631, -0.017382614314556122, -0.059200577437877655, 0.0033710056450217962, 0.07248163968324661, -0.16381962597370148, 0.05744333192706108, -0.06223904713988304, -0.2543250620365143, 0.05927698686718941, 0.0015448364429175854, -0.07688415795564651, 0.19354498386383057, -0.007839865982532501, 0.17003315687179565, -0.025616146624088287, -0.049370747059583664, 0.16846580803394318, -0.08829733729362488, 0.03181794285774231, 0.02010735496878624, 0.08791492879390717, -0.1705435961484909, 0.03420677036046982, -0.08017038553953171, 0.021000085398554802, -0.027086591348052025, 0.04811720550060272, -0.10752581059932709, 0.07240725308656693, -0.0877898558974266, 0.018070584163069725, -0.13932953774929047, 0.03847723826766014, -0.004841403104364872, 0.14007185399532318, -0.22067473828792572, -0.034890249371528625, 0.1725890040397644, -0.14074909687042236, -0.17228259146213531, -0.03141842037439346, -0.03923005983233452, 0.0055334302596747875, 0.017455115914344788, 0.24128980934619904, 0.11081263422966003, 0.014966831542551517, 0.012463843449950218, 0.13768838346004486, -0.1258309930562973, -0.24636031687259674, 0.06683627516031265, -0.03118438832461834, -0.09185031056404114, 0.06062190607190132, 0.16087466478347778, -0.00027558731380850077, -0.05960240960121155, -0.03330783173441887, 0.03700859844684601, -0.12989585101604462, 0.0963054746389389, 0.019015662372112274, 0.048090048134326935, 0.021968809887766838, 0.16185952723026276, -0.028509903699159622, 0.1208219900727272, -0.005825749598443508, -0.03592861443758011, -0.026463916525244713, 0.0861784815788269, -0.13342489302158356, 0.01731531135737896, -0.18254557251930237, -0.12657395005226135, 0.00438471557572484, 0.05643017962574959, -0.004761476069688797, -0.01855587214231491, 0.09736257046461105, -0.044921498745679855, -0.0518827959895134, 0.045314863324165344, 0.1682952642440796, 0.055716853588819504, 0.05601057782769203, -0.0648055151104927, 0.0019760585855692625, -0.1341158002614975, -0.0633256584405899, -0.046419452875852585, -0.05018433555960655, 0.09223867207765579, 0.05679449439048767, 0.021249720826745033, -0.026489539071917534, 0.04751810431480408, 0.007543798536062241, -0.009319507516920567, -0.027009407058358192, 0.0417131744325161, -0.045448917895555496, -0.042878344655036926, -0.006396904122084379, -0.051719699054956436, 0.17590688169002533, 0.1288449913263321, -0.06551260501146317, 0.009855366311967373, -0.14053486287593842, 0.06814249604940414, -0.02799837291240692, -0.055715661495923996, 0.07063087075948715, -0.16171219944953918, 0.01656445488333702, 0.04661228507757187, -0.01426844671368599, 0.022441821172833443, 0.056517716497182846, 0.011875932104885578, -0.05916714668273926, 0.02532876841723919, 0.11406560987234116, -0.23236165940761566, 0.12967537343502045, 0.20846949517726898, 0.12373720854520798, 0.11230417340993881, -0.06767860800027847, -0.08255273848772049, -0.016414161771535873, -0.03798161447048187, -0.07590992003679276, 0.17511117458343506, -0.07659703493118286, 0.0258597694337368, 0.0922088623046875, 0.0016450396506115794, 0.05567217245697975, -0.04948761314153671, -0.08888055384159088, -0.02163507789373398, 0.022716987878084183, -0.202580988407135, -0.013506540097296238, -0.030501995235681534, 0.05589626356959343, -0.026822589337825775, 0.009441792964935303, 0.13353756070137024, 0.006117192097008228, -0.032242484390735626, 0.10476082563400269, -0.13514530658721924, -0.22472141683101654, 0.006698414217680693, -0.16826626658439636, 0.012739362195134163, 0.025064537301659584, -0.05055859684944153, -0.09275860339403152, -0.04735042527318001, 0.03463323414325714, -0.12067842483520508, -0.16031469404697418, -0.004729946609586477, -0.003548618871718645, 0.00635412335395813, -0.075921930372715, -0.10200734436511993, 0.05834120139479637, -0.021705441176891327, 0.16787198185920715, 0.13409003615379333, -0.07505118101835251, 0.09554056078195572, 0.11978495866060257, 0.022022662684321404, 0.07306437939405441, -0.07386165857315063, -0.00631165923550725, -0.09992537647485733, -0.050478555262088776, 0.05449869856238365, -0.021985666826367378, 0.022005852311849594, 0.06546486169099808, 0.08700376003980637, -0.12483736872673035, -0.025602806359529495, -0.03547462075948715, -0.15543149411678314, -0.19075138866901398, -0.16384723782539368, -0.0884842723608017, 0.13411439955234528, 0.10141051560640335, 0.054857634007930756, -0.07348942011594772, 0.06713692843914032, 0.06281164288520813, -0.058737799525260925, -0.11737828701734543, -0.01669967547059059, -0.026106925681233406, -0.034791335463523865, 0.0548420287668705, -0.13283275067806244, 0.010755429975688457, 0.13959307968616486, 0.19987434148788452, 0.23677727580070496, 0.050618529319763184, 0.11400095373392105, -0.007268247660249472, 0.09769409894943237, 0.09635741263628006, 0.17198446393013, 0.07165661454200745, -0.022514041513204575, 0.021297512575984, 0.03260904923081398, -0.079822838306427, -0.02007339708507061, 0.08881989121437073, -0.234380304813385, 0.030889498069882393, -0.16386187076568604, 0.00577385351061821, -0.11214648187160492, 0.09003762900829315, -0.16308456659317017, 0.10828600823879242, 0.0059363446198403835, 0.1513352245092392, -0.11756282299757004, 0.04432378336787224, 0.030195152387022972, -0.005441632121801376, 0.13556253910064697, 0.005551037844270468, 0.05004332214593887, -0.09429249167442322, -0.04354109615087509, -0.039305418729782104, -0.1158440038561821, -0.028621425852179527, 0.11259294301271439, -0.2343139350414276, 0.16844040155410767, 0.013135138899087906, -0.07565376162528992, -0.05520695820450783, -0.04097127169370651, -0.028857214376330376, 0.0393538698554039, 0.13123317062854767, 0.019183771684765816, -0.15727370977401733, -0.1648065447807312, 0.01175342034548521, -0.02950611338019371, 0.09668426960706711, -0.0048279729671776295, -0.1337585598230362, 0.0699564591050148, 0.01399550586938858, -0.019460272043943405, -0.15473192930221558, 0.060274846851825714, -0.13441897928714752, 0.039296574890613556, -0.014945142902433872, -0.11428161710500717, 0.07794160395860672, -0.0009063294855877757, -0.1299542486667633, 0.017706096172332764, 0.06316040456295013, -0.02737010270357132, -0.10576852411031723, -0.04730909317731857, 0.10539819300174713, 0.031313855201005936, 0.06390327215194702, 0.029445018619298935, -0.003713095560669899, 0.0029290362726897, -0.17436687648296356, 0.0753273293375969, -0.05065762624144554, 0.11601065844297409, -0.10558805614709854, 0.06560025364160538, -0.01906362920999527, -0.01720314845442772, 0.006584796588867903, 0.028713807463645935, -0.002582856919616461, -0.07077617943286896, 0.1696293205022812, -0.12195546180009842, 0.1578199714422226, 0.21442241966724396, 0.045700885355472565, 0.013477792032063007, 0.11073808372020721, -0.038054853677749634, 0.15093828737735748, 0.19141274690628052, -0.060893718153238297, 0.20285923779010773, 0.14650045335292816, -0.05521106719970703, -0.25701937079429626, -0.04349241778254509, -0.16715417802333832, -0.059566348791122437, 0.0842452198266983, -0.2421187311410904, 0.10941925644874573, 0.12995456159114838, -0.03328743204474449, 0.29521697759628296, -0.04792666807770729, -0.011694060638546944, 0.22302576899528503, 0.05339889973402023, 0.33235904574394226, -0.07586830854415894, -0.07234414666891098, -0.07049308717250824, -0.0638350397348404, 0.21679306030273438, -0.05682462081313133, 0.026233430951833725, -0.009453938342630863, 0.06765078008174896, -0.01535921823233366, -0.03693827614188194, 0.13778573274612427, 0.06415107846260071, 0.10373174399137497, -0.04469927027821541, 0.00035958379157818854, 0.0903576910495758, -0.04569997265934944, 0.006134618539363146, -0.014797589741647243, 0.01612742431461811, -0.055060677230358124, -0.0016297929687425494, 0.035995569080114365, 0.012227521277964115, 0.06696274131536484, -0.0722687840461731, -0.033393461257219315, 0.011027778498828411, -0.1012607142329216, -0.036461133509874344, 0.0901779979467392, 0.014695936813950539, -0.0565120130777359, 0.07603848725557327, 0.017677228897809982, -0.12114959210157394, -0.038776107132434845, -0.12137237936258316, -0.07826255261898041, 0.07326032966375351, -0.17459575831890106, 0.08862444013357162, 0.10205154865980148, 0.05976095050573349, 0.011429482139647007, 0.07470374554395676, 0.0259808748960495, -0.00718150706961751, 0.14552730321884155, -0.07931310683488846, -0.06833068281412125, 0.11218665540218353, -0.1118554100394249, -0.0071810572408139706, 0.14619463682174683, 0.010916364379227161, 0.15289337933063507, -0.015750814229249954, 0.03041880950331688, 0.06256352365016937, -0.045851681381464005, 0.09838362038135529, 0.05077410116791725, 0.0307021401822567, -0.19774122536182404, 0.18119028210639954, 0.05501500889658928, -0.11368546634912491, 0.02273591421544552, -0.06176352873444557, -0.09174109995365143, -0.10680268704891205, -0.027895374223589897, 0.17770130932331085, -0.03141016885638237, -0.09209513664245605, 0.05028939247131348, -0.035797279328107834, 0.028092296794056892, 0.08300408720970154, 0.04432082176208496, 0.13156670331954956, 0.021826907992362976, -0.014316033571958542, -0.03346250206232071, -0.022782184183597565, -0.05049038305878639, 0.06954371184110641, -0.06805171072483063, -0.20069542527198792, -0.041160132735967636, 0.11489298939704895, -0.09332870692014694, -0.10247960686683655, -0.058107003569602966, 0.09595469385385513, -0.15393345057964325, 0.023680856451392174, -0.033829957246780396, 0.02747931331396103, 0.004746226593852043, 0.03406086936593056, -0.0010073438752442598, -0.07107076048851013, -0.05264866352081299, 0.14104042947292328, 0.07661363482475281, 0.020425738766789436, -0.11332425475120544, -0.04094034060835838, 0.03385079652070999, 0.04153404384851456, 0.08115378022193909, 0.13061663508415222, 0.022603830322623253, 0.06432932615280151, 0.03379938751459122, -0.0600023977458477, 0.07570341974496841, 0.05677439644932747, 0.038178037852048874, 0.0036739762872457504, -0.02088000997900963, 0.0883508026599884, -0.0910365879535675, 0.06214966997504234, -0.03324856981635094, -0.10239265859127045, -0.01743740402162075, -0.14148689806461334, -0.0915350541472435, -0.024360237643122673, -0.055899232625961304, 0.15217067301273346, 0.06511715799570084, 0.018254652619361877, 0.11389875411987305, 0.03778417035937309, -0.01263174507766962, -0.05477511137723923, 0.030096424743533134, -0.11267489194869995, -0.03268580883741379, 0.0676233097910881, 0.0299431923776865, -0.07941088825464249, 0.418783962726593, -0.08468057215213776, -0.11518315970897675, -0.04087710380554199, 0.11897587031126022, -0.05255391448736191, 0.03811793774366379, 0.3404267728328705, 0.02428961731493473, -0.07888451218605042, -0.07539757341146469, 0.15178772807121277, 0.01606159284710884, 0.15491734445095062, 0.010980401188135147, 0.04332743585109711, -0.01633886620402336, -0.05348670110106468, -0.04264514520764351, -0.1027037501335144, 0.033743176609277725, 0.055468425154685974, -0.008241090923547745, -0.018881775438785553, 0.09717743843793869, -0.07584653794765472, 0.008296526968479156, -0.0689198449254036, 0.08325039595365524, -0.04993858188390732, -0.07869834452867508, -0.023544123396277428, -0.13934755325317383, 0.006573480553925037, -0.10642233490943909, 0.03396672382950783, -0.04279455170035362, -0.05433990806341171, 0.27876418828964233, 0.08456266671419144, 0.021433960646390915, 0.05179877579212189, -0.055678848177194595, 0.08451346307992935, 0.011677275411784649, 0.014154956676065922, -0.05681588500738144, 0.03667496144771576, -0.05542716011404991, 0.021420052275061607, -0.012475515715777874, -0.008951602503657341, -0.03165668994188309, 0.07476085424423218, 0.0398222990334034, -0.1274397373199463, -0.07686977088451385, -0.06056463345885277, 0.03873836249113083, -0.08875684440135956, 0.10570653527975082, 0.007103126961737871, 0.062365464866161346, 0.046304669231176376, 0.14617608487606049, 0.005343747325241566, 0.06280062347650528, -0.03660239279270172, 0.04523584246635437, -0.01165060419589281, 0.06991218030452728, 0.022796154022216797, -0.07058002054691315, -0.039336591958999634, 0.10034222900867462, 0.28279611468315125, -0.023226797580718994, -0.023452581837773323, 0.03460592404007912, 0.03445431590080261, 0.09777574241161346, 0.131874680519104, -0.018112609162926674, 0.0319276861846447, -0.04473162442445755, -0.08079465478658676, 0.026710761711001396, -0.03201458230614662, 0.036108408123254776, 0.11482366174459457, 0.07633785903453827, -0.010399670340120792, -0.11441835016012192, 0.12506450712680817, -0.16530054807662964, 0.07615586370229721, 0.07289339601993561, -0.059966109693050385, -0.1058012992143631, -0.02733563259243965, 0.07269574701786041, -0.01808532141149044, -0.0369865708053112, -0.056852880865335464, 0.004376857541501522, -0.01580776646733284, -0.01706760749220848, -0.24804164469242096, -0.18078458309173584, 0.020582405850291252, -0.004590217024087906, 0.015091072767972946, -0.04050934687256813, 0.1315687894821167, 0.007404756732285023, 0.08013243973255157, -0.07751861959695816, -0.02422785758972168, -0.02948542684316635, 0.1044645756483078, -0.0072856480255723, 0.04342222958803177, -0.04016108810901642, -0.061617162078619, 0.0520254410803318, -0.024405717849731445, -0.05758426710963249, 0.04339446872472763, 0.006010228302329779, 0.02249663881957531, 0.03963438794016838, -0.04280791059136391, 0.1224256083369255, -0.07162746042013168, 0.00701880780979991, -0.018664678558707237, 0.015030761249363422, 0.05208628997206688, 0.019838126376271248, -0.08932889252901077, -0.06748353689908981, 0.01174462866038084, -0.08550813794136047, 0.13963854312896729, -0.013708210550248623, -0.14815188944339752, 0.057569291442632675, -0.04038023203611374, 0.013600325211882591, -0.006190842017531395, 0.0610615499317646, 0.11079046130180359, 0.06900076568126678, -0.07816307991743088, -0.03858257085084915, 0.056157611310482025, -0.03186232969164848, -0.018416153267025948, -0.11785422265529633 ]
2011d3ba2f5473a88d27f882fc8951700e974639
# Dataset Card for "movie" [More Information needed](https://github.com/huggingface/datasets/blob/main/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
yvs007/movie
[ "region:us" ]
2023-02-07T17:14:28+00:00
{"dataset_info": {"features": [{"name": "Title", "dtype": "string"}, {"name": "Genre", "dtype": "string"}, {"name": "PlotSummary", "dtype": "string"}, {"name": "input_ids", "sequence": "int32"}, {"name": "token_type_ids", "sequence": "int8"}, {"name": "attention_mask", "sequence": "int8"}, {"name": "special_tokens_mask", "sequence": "int8"}], "splits": [{"name": "train", "num_bytes": 7415818, "num_examples": 5964}], "download_size": 0, "dataset_size": 7415818}}
2023-02-08T06:27:04+00:00
[]
[]
TAGS #region-us
# Dataset Card for "movie" More Information needed
[ "# Dataset Card for \"movie\"\n\nMore Information needed" ]
[ "TAGS\n#region-us \n", "# Dataset Card for \"movie\"\n\nMore Information needed" ]
[ 6, 11 ]
[ "passage: TAGS\n#region-us \n# Dataset Card for \"movie\"\n\nMore Information needed" ]
[ -0.13926224410533905, 0.26013219356536865, -0.0005783705855719745, 0.01400430966168642, 0.17641162872314453, 0.11511919647455215, 0.15385805070400238, 0.09856505692005157, 0.112888403236866, -0.05255386233329773, 0.0763770267367363, 0.013927658088505268, 0.08500015735626221, 0.22599084675312042, -0.024611923843622208, -0.14274205267429352, -0.04723503068089485, 0.004976422525942326, 0.04416877403855324, 0.036075759679079056, 0.005529283080250025, -0.08291725069284439, 0.10270025581121445, -0.1537289172410965, -0.27714937925338745, 0.054283902049064636, 0.040805164724588394, -0.026198843494057655, 0.11939498037099838, -0.0806824117898941, 0.09554295241832733, -0.05298110470175743, 0.1626196801662445, -0.0727657750248909, 0.01860690489411354, -0.056989625096321106, -0.013954423367977142, -0.032315582036972046, 0.09677271544933319, -0.052561208605766296, -0.05789150670170784, 0.05842655152082443, 0.06476419419050217, -0.06710149347782135, -0.09674131125211716, -0.21938097476959229, -0.030186085030436516, -0.1861976832151413, -0.14190612733364105, -0.007668976206332445, 0.0313490554690361, 0.016318175941705704, -0.10610201209783554, 0.03861252963542938, 0.08684065192937851, 0.02040286362171173, 0.014815449714660645, 0.21133621037006378, 0.14082428812980652, 0.11917132139205933, -0.17937394976615906, 0.08325320482254028, 0.03972093388438225, -0.019329631701111794, -0.041227299720048904, -0.06123500317335129, -0.191939577460289, -0.021954145282506943, -0.005994975566864014, -0.08821196854114532, 0.31816840171813965, 0.00030361328390426934, -0.03850580006837845, 0.041515011340379715, 0.0639636442065239, -0.0740986093878746, -0.06145389750599861, 0.13042618334293365, 0.02567843534052372, -0.0052119046449661255, -0.027239149436354637, 0.03163554146885872, -0.0516756996512413, -0.13927337527275085, -0.010614600032567978, -0.021576497703790665, -0.04695313796401024, 0.18562424182891846, -0.2879941463470459, -0.033450763672590256, -0.050590407103300095, -0.0028379554860293865, 0.04257960617542267, -0.11686958372592926, 0.055505525320768356, 0.020219262689352036, 0.01228210050612688, 0.1413281261920929, -0.02929675206542015, 0.08461470901966095, 0.061003394424915314, 0.028800353407859802, -0.11779848486185074, 0.16250960528850555, 0.154359370470047, 0.0011957791866734624, 0.03669608384370804, -0.05146919935941696, 0.04528694599866867, -0.0931185632944107, -0.00267303129658103, -0.09729628264904022, -0.13823464512825012, 0.06435388326644897, -0.0916127860546112, 0.12060156464576721, 0.006948189344257116, -0.08328620344400406, -0.08907223492860794, -0.03710506483912468, 0.10612910240888596, -0.07907024770975113, 0.006083336658775806, -0.05991644039750099, -0.1136288270354271, 0.03166918456554413, -0.1254446655511856, -0.05787920951843262, 0.08824929594993591, 0.08865902572870255, -0.05753183364868164, 0.014170953072607517, -0.055887382477521896, 0.027240628376603127, 0.13920895755290985, -0.17563281953334808, 0.07642313092947006, -0.056214071810245514, -0.1935245394706726, 0.052373796701431274, 0.05113301798701286, -0.09210888296365738, 0.1576918363571167, 0.0010288438061252236, 0.1811700314283371, 0.04921569302678108, -0.07489968836307526, 0.0479024238884449, -0.06482170522212982, -0.002132620895281434, -0.0150192491710186, 0.11959148943424225, -0.1775485724210739, 0.02586516924202442, -0.04146584868431091, 0.02702564373612404, -0.12080671638250351, 0.0203469879925251, -0.10248000174760818, 0.07708285003900528, 0.02883625589311123, 0.021774087101221085, 0.01986403949558735, 0.06257101148366928, -0.10254840552806854, 0.14295841753482819, -0.2587501108646393, -0.04311688244342804, 0.1745266616344452, -0.1373119205236435, -0.2123309075832367, 0.009059760719537735, -0.05306088924407959, -0.015264386311173439, -0.026508759707212448, 0.35730814933776855, -0.011551997624337673, -0.18168236315250397, 0.04123545065522194, 0.2647070586681366, -0.174747496843338, -0.25300103425979614, 0.1380106508731842, 0.06109929829835892, -0.03709223121404648, -0.01859705150127411, 0.031980957835912704, 0.01073097437620163, -0.08429189771413803, -0.040353305637836456, 0.10462254285812378, -0.11196855455636978, 0.04867306351661682, 0.024118179455399513, 0.0730254277586937, -0.011761235073208809, 0.1046697199344635, -0.025600606575608253, 0.14631623029708862, 0.03804665431380272, 0.0744379535317421, 0.03654239699244499, 0.1049499362707138, 0.010903400368988514, -0.02308250218629837, -0.1318807303905487, -0.12827900052070618, -0.041039567440748215, 0.01766601949930191, -0.057294778525829315, 0.0390283465385437, 0.01919894479215145, 0.0746823400259018, -0.07129937410354614, 0.0854351818561554, 0.09063184261322021, 0.041436221450567245, 0.14514954388141632, -0.05954086780548096, -0.020038310438394547, -0.13137924671173096, -0.008194172754883766, -0.05360028147697449, -0.08830348402261734, 0.11614922434091568, 0.018023718148469925, 0.01657663844525814, -0.10900204628705978, 0.04313398525118828, -0.032664552330970764, 0.06889599561691284, -0.13487020134925842, 0.06556078791618347, -0.06755977869033813, 0.057964175939559937, 0.12038354575634003, -0.043247949331998825, 0.17109414935112, 0.13352972269058228, -0.1423969715833664, -0.009231893345713615, -0.02013893984258175, -0.012959805317223072, 0.05321328341960907, -0.10631806403398514, -0.005395504646003246, -0.15738224983215332, 0.015459965914487839, 0.07401100546121597, 0.007818222045898438, 0.09475934505462646, 0.040401674807071686, -0.05797718092799187, -0.15489396452903748, -0.005423576105386019, 0.17811669409275055, -0.12044347077608109, 0.15261581540107727, 0.1648283749818802, 0.16301822662353516, 0.28215527534484863, 0.0073823085986077785, -0.02473888173699379, 0.013189919292926788, -0.07658988237380981, -0.02358662150800228, 0.2408478558063507, -0.10146084427833557, -0.07600301504135132, 0.06829562783241272, -0.026945926249027252, -0.0011679743183776736, -0.0895809754729271, -0.1823076456785202, -0.05854019522666931, 0.013271578587591648, -0.1432681530714035, -0.0004961519152857363, -0.07462383806705475, 0.07210876792669296, 0.06508345901966095, -0.08134665340185165, 0.1620224118232727, -0.08277632296085358, -0.06808601319789886, 0.08926019072532654, -0.16029584407806396, -0.32827070355415344, -0.05330818518996239, -0.1812037080526352, 0.16776128113269806, 0.06581413745880127, -0.08666068315505981, -0.09406766295433044, 0.013626111671328545, 0.1146160289645195, -0.16390712559223175, -0.3068023920059204, -0.10799071937799454, -0.008985614404082298, 0.05670091137290001, -0.11148959398269653, -0.0495479442179203, 0.004901288542896509, -0.03582017868757248, -0.0065978639759123325, 0.11781167984008789, -0.1252330094575882, 0.11736516654491425, 0.047844164073467255, -0.07047510147094727, 0.1342850923538208, -0.08888421952724457, 0.044682301580905914, -0.14708968997001648, -0.08087366819381714, 0.14227303862571716, -0.0374639555811882, -0.015257364138960838, 0.11125741899013519, 0.0967397540807724, -0.12016130983829498, -0.05055449157953262, -0.11535380780696869, -0.20178461074829102, -0.18051722645759583, -0.018537895753979683, -0.08700244873762131, 0.17202310264110565, 0.12116941809654236, 0.037463948130607605, 0.02015695907175541, 0.0353897400200367, 0.1467902958393097, -0.03814064338803291, -0.05741505324840546, 0.013191962614655495, -0.11059804260730743, 0.019142916426062584, -0.06333685666322708, -0.08056413382291794, 0.054399650543928146, 0.12779563665390015, 0.14147315919399261, 0.19432103633880615, 0.15214388072490692, 0.03568034619092941, -0.016128450632095337, 0.06015428900718689, 0.13611310720443726, 0.058530885726213455, 0.15556128323078156, -0.015352834947407246, -0.03681950643658638, 0.023208558559417725, -0.044006697833538055, 0.030711868777871132, 0.06613793224096298, -0.2835072875022888, 0.04713820666074753, -0.04745595157146454, -0.009893752634525299, -0.29144003987312317, 0.06687288731336594, -0.18446744978427887, 0.19403178989887238, 0.028608087450265884, 0.22672058641910553, -0.052881427109241486, 0.08139769732952118, 0.11582399904727936, -0.20076219737529755, 0.15294191241264343, 0.049781639128923416, 0.03462821617722511, -0.1536853164434433, -0.0556461475789547, -0.045511890202760696, -0.18248975276947021, 0.02574032172560692, 0.13338997960090637, -0.13160276412963867, 0.18819250166416168, 0.01676996983587742, -0.01832931861281395, -0.043757256120443344, -0.11334577947854996, 0.023509474471211433, 0.07086139917373657, 0.32260212302207947, 0.07088826596736908, -0.1435151994228363, -0.1623944789171219, 0.003493719268590212, -0.00074574671452865, 0.13896027207374573, -0.06260702013969421, -0.17785783112049103, 0.03258148208260536, -0.06070344150066376, -0.07263628393411636, -0.14091245830059052, 0.06447914987802505, -0.059365760535001755, -0.0038848398253321648, 0.0013079260243102908, -0.0953887552022934, 0.024734053760766983, -0.0265171080827713, 0.0298472810536623, 0.023629391565918922, 0.059647899121046066, 0.03783532232046127, -0.11261142790317535, -0.01694805920124054, 0.03919517993927002, 0.007626017089933157, 0.07911459356546402, -0.010500045493245125, 0.09114760160446167, -0.18753767013549805, -0.18962682783603668, 0.10998110473155975, -0.08908229321241379, 0.15665748715400696, -0.13484203815460205, 0.081117182970047, -0.08966051787137985, 0.03376832604408264, -0.040687210857868195, 0.003121417248621583, 0.015822425484657288, -0.04195137694478035, 0.13749253749847412, -0.10404502600431442, 0.13647383451461792, 0.10499301552772522, 0.00024459476117044687, -0.010057118721306324, 0.0986809954047203, -0.09653028845787048, 0.2300831526517868, 0.21099142730236053, -0.08518237620592117, 0.0568263977766037, 0.12977240979671478, -0.08504162728786469, -0.3000045120716095, 0.014956194907426834, -0.112302266061306, -0.16891981661319733, 0.118431456387043, -0.22737103700637817, 0.04707079380750656, 0.06463389843702316, -0.02968202903866768, 0.2614678740501404, -0.12892529368400574, -0.06106828525662422, 0.10227926820516586, 0.08439429104328156, 0.3757118880748749, -0.038338206708431244, -0.009630066342651844, -0.13418181240558624, -0.0702952966094017, 0.14948658645153046, -0.04470079764723778, 0.03506079688668251, 0.021759364753961563, 0.028874104842543602, -0.06929322332143784, -0.06048032268881798, 0.0965966060757637, 0.04780871048569679, 0.05221173167228699, -0.038758907467126846, -0.27622684836387634, 0.15738332271575928, -0.034515269100666046, 0.027894513681530952, 0.05000007152557373, -0.08564194291830063, -0.1250457465648651, 0.009240568615496159, 0.03821635991334915, -0.006634477525949478, 0.08358398824930191, -0.05436937138438225, -0.10351482778787613, 0.08285586535930634, -0.18097691237926483, -0.0026591867208480835, 0.11334463208913803, -0.025740765035152435, -0.07149559259414673, 0.08228020370006561, -0.04179446026682854, 0.03133804351091385, -0.10003671050071716, -0.06727301329374313, -0.04379752278327942, 0.0286177396774292, -0.059999607503414154, -0.052583131939172745, 0.12658970057964325, 0.010612769052386284, 0.12547680735588074, 0.04521306976675987, 0.036804039031267166, 0.062251023948192596, 0.16961535811424255, -0.006441913079470396, -0.05437207221984863, 0.002840264467522502, 0.011157004162669182, 0.062005236744880676, -0.08827980607748032, -0.09815879911184311, -0.007388065103441477, 0.014329048804938793, -0.0981583371758461, 0.058522336184978485, -0.039459116756916046, -0.0003253022732678801, 0.11916748434305191, 0.050427816808223724, -0.2048036754131317, 0.29275625944137573, 0.009992667473852634, -0.059056054800748825, -0.0014061378315091133, 0.11306089162826538, -0.07125919312238693, -0.052506640553474426, -0.009767229668796062, 0.2598084807395935, -0.11092188209295273, -0.13953420519828796, 0.06634321808815002, -0.027787577360868454, -0.0018021904397755861, 0.03494317829608917, 0.014744599349796772, 0.12650935351848602, -0.046337854117155075, -0.007859895937144756, 0.010182442143559456, -0.01570148952305317, -0.09429316222667694, 0.013901017606258392, -0.10729573667049408, -0.08562677353620529, -0.001815162948332727, 0.16871994733810425, -0.09772644937038422, -0.1208786591887474, -0.03316078335046768, 0.11687798798084259, -0.015249758958816528, 0.07331102341413498, 0.02548384666442871, 0.02702661044895649, -0.06583095341920853, 0.036297958344221115, 0.0011441558599472046, -0.02866239845752716, -0.11594779044389725, 0.05396920070052147, 0.008297262713313103, -0.08219035714864731, -0.11719684302806854, -0.03123571164906025, 0.08960050344467163, 0.005011449102312326, 0.047684140503406525, 0.14858613908290863, 0.04515252634882927, 0.10247915238142014, -0.09377535432577133, -0.27086520195007324, 0.07757724821567535, 0.01808292232453823, 0.039094943553209305, 0.2195071280002594, -0.0233523640781641, 0.055441539734601974, -0.0410960353910923, 0.02776220813393593, -0.13455766439437866, -0.09762879461050034, -0.009614690206944942, -0.023550381883978844, -0.09098745882511139, 0.008284680545330048, 0.03103623166680336, 0.21162734925746918, -0.03470809757709503, -0.09867872297763824, 0.04395747557282448, 0.052176669239997864, -0.02897811494767666, -0.04461156576871872, 0.008660719729959965, -0.11294135451316833, -0.030565818771719933, 0.01252124272286892, 0.03604380786418915, -0.048383984714746475, 0.38431161642074585, 0.07687783241271973, -0.10023940354585648, -0.044292230159044266, 0.17925843596458435, -0.055128637701272964, -0.00882266741245985, 0.19605082273483276, 0.12312072515487671, -0.0306769497692585, -0.10532572120428085, 0.06993871927261353, 0.04581652954220772, 0.1913267821073532, 0.04484512656927109, 0.05174598842859268, -0.025920424610376358, -0.04373392462730408, 0.0441167987883091, -0.01493685133755207, -0.038964297622442245, -0.028372276574373245, 0.016763122752308846, -0.023374412208795547, 0.01014767400920391, -0.09316051751375198, 0.06429196894168854, 0.021227825433015823, 0.11317728459835052, -0.02018977329134941, -0.12415891885757446, -0.08171488344669342, -0.054042261093854904, 0.027864370495080948, -0.11660797148942947, 0.0839361846446991, -0.08151282370090485, 0.12787386775016785, 0.2599569857120514, 0.1549835503101349, -0.04337379336357117, 0.17416070401668549, -0.06036781147122383, -0.013848615810275078, 0.11699006706476212, 0.04706577956676483, 0.007717191241681576, 0.01775747537612915, -0.00893566757440567, 0.05307525768876076, -0.10088920593261719, 0.07727761566638947, 0.013021113350987434, 0.05457427352666855, 0.054420992732048035, -0.08270932734012604, -0.1072079986333847, -0.042375773191452026, 0.04784810543060303, -0.13088740408420563, 0.09373747557401657, -0.01780696026980877, 0.10770794004201889, 0.046149373054504395, 0.10121583938598633, -0.013407744467258453, 0.06507154554128647, 0.06280545145273209, -0.00810856930911541, -0.09311369806528091, 0.1389429271221161, -0.07936037331819534, -0.052880387753248215, -0.05337732285261154, 0.1144116073846817, 0.32323262095451355, -0.1164495125412941, -0.11591049283742905, -0.00014087557792663574, 0.037075504660606384, 0.02395174652338028, 0.16972090303897858, -0.043246790766716, 0.09746883064508438, -0.11936958879232407, -0.016838112846016884, 0.04895014315843582, -0.0356731116771698, 0.07222865521907806, -0.047719188034534454, 0.07915115356445312, 0.05132034793496132, -0.2296353578567505, 0.08853243291378021, -0.1767890900373459, 0.07296194136142731, 0.13759158551692963, -0.1576865017414093, -0.013963740319013596, -0.03344138339161873, 0.0827803909778595, 0.0665246844291687, 0.001757889986038208, -0.053687259554862976, -0.07381148636341095, -0.18459288775920868, 0.06417745351791382, -0.35490530729293823, -0.3002775311470032, 0.08073268830776215, 0.064442478120327, 0.12052620947360992, -0.1038513332605362, 0.10972288995981216, -0.06618038564920425, 0.026539042592048645, -0.033723123371601105, -0.027022914960980415, -0.01611420139670372, 0.1079614982008934, -0.10039103776216507, 0.15433654189109802, -0.16276304423809052, -0.059034042060375214, 0.04937528446316719, 0.10701268166303635, -0.06554661691188812, 0.03627704083919525, 0.0005744908703491092, -0.01603320613503456, -0.05736524239182472, -0.10098849982023239, 0.1147058829665184, -0.0057089123874902725, 0.03315511718392372, 0.048366446048021317, -0.03648976981639862, -0.001897267298772931, 0.13543200492858887, -0.1187739148736, -0.009509113617241383, 0.07402168959379196, -0.15043839812278748, 0.03503212332725525, 0.036274295300245285, -0.07958327233791351, 0.13190175592899323, -0.13027606904506683, 0.053530607372522354, 0.014396261423826218, 0.0105124581605196, 0.03354943171143532, 0.09141234308481216, -0.071830153465271, -0.04168824851512909, 0.14556272327899933, -0.01988680101931095, -0.02600082941353321, -0.06910296529531479 ]
d62e5e026de477fd765224e0fb74958fdc8dba65
# Dataset Card for "italian-literature-corpus-mini" [More Information needed](https://github.com/huggingface/datasets/blob/main/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
scribis/italian-literature-corpus-mini
[ "language:it", "region:us" ]
2023-02-07T17:50:13+00:00
{"language": ["it"], "dataset_info": {"features": [{"name": "review", "dtype": "string"}, {"name": "review_length", "dtype": "int64"}], "splits": [{"name": "train", "num_bytes": 125104611.3227607, "num_examples": 872594}, {"name": "validation", "num_bytes": 13900528.299298717, "num_examples": 96955}], "download_size": 143032707, "dataset_size": 139005139.6220594}}
2023-11-14T10:23:32+00:00
[]
[ "it" ]
TAGS #language-Italian #region-us
# Dataset Card for "italian-literature-corpus-mini" More Information needed
[ "# Dataset Card for \"italian-literature-corpus-mini\"\n\nMore Information needed" ]
[ "TAGS\n#language-Italian #region-us \n", "# Dataset Card for \"italian-literature-corpus-mini\"\n\nMore Information needed" ]
[ 11, 21 ]
[ "passage: TAGS\n#language-Italian #region-us \n# Dataset Card for \"italian-literature-corpus-mini\"\n\nMore Information needed" ]
[ -0.13434353470802307, 0.19744709134101868, -0.0027827704325318336, 0.10667911171913147, 0.09148572385311127, 0.1575869917869568, 0.172868549823761, 0.09810051321983337, 0.14058040082454681, 0.041473694145679474, 0.0013789269141852856, -0.06428217887878418, 0.09530989080667496, 0.088984914124012, -0.08507374674081802, -0.19242742657661438, 0.05293307825922966, -0.02972773090004921, 0.03616653010249138, 0.04965194687247276, 0.08801134675741196, -0.04457543417811394, 0.04384768009185791, -0.14785882830619812, -0.18386325240135193, 0.10068000108003616, -0.018105335533618927, -0.05926157906651497, 0.09072849154472351, 0.026089785620570183, 0.12451159954071045, -0.07187873870134354, 0.07793427258729935, -0.025224830955266953, 0.014155621640384197, 0.00309999892488122, -0.01087931264191866, -0.04688098281621933, 0.02554742433130741, -0.15327276289463043, 0.09151028096675873, -0.0006479140720330179, -0.030874110758304596, -0.0038966445717960596, -0.05123620480298996, -0.09263139218091965, 0.019354619085788727, -0.07869771122932434, -0.09825176000595093, 0.03341056406497955, 0.022981904447078705, 0.12994910776615143, -0.2045486718416214, 0.0056073833256959915, 0.07398125529289246, 0.013595071621239185, -0.05621602013707161, -0.01547663751989603, -0.017035650089383125, 0.2316492646932602, -0.036628108471632004, 0.08308269083499908, 0.017759276553988457, -0.040119096636772156, -0.21470779180526733, -0.010421846061944962, -0.09105413407087326, 0.013754632323980331, -0.018384717404842377, -0.013261331245303154, 0.37741243839263916, -0.11607392877340317, 0.0029695266857743263, -0.007132527884095907, 0.0631234273314476, 0.10165487229824066, -0.06569373607635498, -0.03411928191781044, -0.0068002003245055676, 0.02924923785030842, 0.2209469974040985, 0.025600118562579155, -0.09338903427124023, -0.09212452918291092, -0.11860978603363037, 0.2589975595474243, 0.04266953468322754, 0.05406007543206215, -0.06422749161720276, -0.09343155473470688, -0.07852273434400558, 0.010015424340963364, 0.013444548472762108, -0.045718416571617126, 0.09863287955522537, 0.02338704839348793, -0.01749401167035103, 0.04338932782411575, 0.13592898845672607, 0.057317137718200684, 0.11150455474853516, -0.02773039974272251, -0.06591588258743286, 0.11198137700557709, 0.13879288733005524, -0.0869547575712204, 0.0055474466644227505, -0.07350900769233704, -0.053673580288887024, -0.10226574540138245, 0.040873993188142776, -0.05073090270161629, -0.18985436856746674, -0.015827862545847893, -0.19475027918815613, 0.1334696263074875, 0.008052539080381393, -0.1412884145975113, -0.0808551013469696, -0.049080219119787216, 0.02691945992410183, -0.18749509751796722, 0.07467978447675705, 0.017863804474473, -0.11498317122459412, 0.19007794559001923, -0.21647125482559204, -0.0476616732776165, -0.10420513153076172, 0.03845908120274544, -0.018899640068411827, 0.004107690416276455, -0.054687708616256714, -0.044537253677845, 0.06685051321983337, -0.2147650271654129, 0.05415929853916168, -0.10914292931556702, -0.08875039219856262, 0.03230695053935051, 0.009765718132257462, -0.1732538938522339, 0.16430146992206573, -0.07631275802850723, 0.15727832913398743, 0.0014482620172202587, -0.025954298675060272, -0.019706973806023598, -0.11340709775686264, 0.04479784518480301, -0.014498712494969368, 0.0986081063747406, -0.29098910093307495, -0.006079900544136763, -0.10745703428983688, -0.05827725678682327, 0.06346459686756134, 0.03576431795954704, -0.05141913890838623, -0.01664498634636402, 0.00021110681700520217, 0.009301958605647087, -0.13050177693367004, 0.07128298282623291, 0.01764158345758915, 0.1994403749704361, -0.25757622718811035, -0.10220251977443695, 0.19781702756881714, -0.16980530321598053, -0.126802459359169, 0.1534530222415924, 0.03968731313943863, 0.10835940390825272, 0.1235995814204216, 0.37622207403182983, -0.046263664960861206, -0.04367612302303314, -0.03740080073475838, 0.12455657124519348, -0.018106583505868912, -0.15998251736164093, 0.09862254559993744, 0.004577571526169777, 0.11859945207834244, 0.04795461893081665, -0.0073196375742554665, -0.09551160782575607, -0.058728933334350586, -0.06608712673187256, -0.014400813728570938, -0.14133232831954956, 0.07933812588453293, 0.08084723353385925, 0.0676630511879921, -0.09855764359235764, 0.002403534483164549, -0.058232538402080536, 0.09120745956897736, -0.025483090430498123, 0.0007796154823154211, -0.004588743671774864, 0.20824216306209564, 0.15013311803340912, 0.007382630370557308, -0.09814460575580597, 0.011977104470133781, 0.04901857674121857, 0.12412309646606445, 0.06622184067964554, 0.009744039736688137, 0.09293004870414734, -0.02651418186724186, -0.08235306292772293, 0.1571885198354721, 0.09711387753486633, -0.0030787598807364702, 0.010998792015016079, -0.15600372850894928, 0.04165437072515488, -0.028294745832681656, 0.058554887771606445, -0.16263903677463531, -0.04521767795085907, 0.08756274729967117, 0.06650689989328384, -0.05993347615003586, 0.045248303562402725, -0.1746821403503418, 0.002514075953513384, -0.07253323495388031, -0.03091292269527912, 0.05095084756612778, -0.07278428226709366, 0.018278950825333595, -0.020418157801032066, -0.003197522135451436, 0.1328004002571106, 0.1526951789855957, -0.0580625981092453, 0.06213364377617836, -0.15587922930717468, 0.05411817505955696, 0.027556274086236954, -0.025083957239985466, -0.05781325325369835, -0.0307952631264925, 0.007379358634352684, 0.006433470174670219, -0.12717488408088684, 0.06487234681844711, 0.028418488800525665, -0.01932397298514843, -0.15618163347244263, 0.07335076481103897, 0.13854162395000458, -0.15003995597362518, 0.18094594776630402, 0.19279538094997406, 0.009988361038267612, 0.26829594373703003, 0.010785474441945553, -0.08660019934177399, 0.08673340827226639, -0.04186854138970375, -0.03254513442516327, 0.12396759539842606, -0.22339609265327454, -0.005491987802088261, 0.057256896048784256, 0.045743267983198166, 0.0602673701941967, -0.026625191792845726, -0.09553248435258865, -0.05998316779732704, -0.03795944154262543, -0.08249577134847641, -0.09673178195953369, -0.06781113147735596, 0.15623514354228973, 0.049691811203956604, -0.08031005412340164, 0.039772626012563705, -0.006508912891149521, 0.022882698103785515, 0.08436501771211624, -0.15907731652259827, -0.22604520618915558, 0.022445425391197205, -0.01998443901538849, 0.03588404878973961, 0.0972779393196106, -0.05743430554866791, -0.15404166281223297, 0.02004932425916195, 0.02713080309331417, -0.08208271861076355, -0.16663619875907898, -0.1246195137500763, -0.11588449031114578, 0.12291190028190613, -0.21385647356510162, -0.10344132035970688, 0.021960757672786713, -0.059612493962049484, 0.025927437469363213, -0.040468718856573105, -0.26769718527793884, 0.10859834402799606, 0.16785039007663727, -0.018375027924776077, 0.09885206818580627, -0.055463798344135284, -0.024811509996652603, -0.15579186379909515, -0.054845795035362244, 0.14683572947978973, -0.002302606590092182, -0.059973374009132385, 0.14054712653160095, 0.033422600477933884, -0.08390972763299942, -0.06567239761352539, -0.016711827367544174, -0.10674339532852173, -0.20819425582885742, -0.19089412689208984, -0.07871416211128235, 0.10794924199581146, 0.050418708473443985, 0.01998627930879593, -0.08903585374355316, 0.002421214245259762, 0.037619419395923615, -0.142902210354805, 0.007924292236566544, -0.027023838832974434, 0.030739717185497284, -0.027472330257296562, 0.08595378696918488, -0.07908149063587189, -0.023177040740847588, 0.20140309631824493, 0.17519648373126984, 0.12838494777679443, 0.07200414687395096, 0.28776174783706665, -0.07749596238136292, 0.07611700147390366, 0.005864797625690699, 0.03448004275560379, 0.13539394736289978, -0.02223595231771469, 0.011318378150463104, -0.012170147150754929, -0.040294401347637177, 0.01673153042793274, 0.11852803826332092, -0.19695766270160675, -0.01608770340681076, -0.09240994602441788, 0.12745262682437897, -0.10561264306306839, 0.06127847731113434, -0.14034403860569, 0.051823537796735764, 0.04427153989672661, 0.1181303933262825, -0.15434469282627106, 0.038483425974845886, 0.12482425570487976, -0.056018490344285965, 0.025511011481285095, 0.11404013633728027, 0.08454055339097977, -0.17332780361175537, -0.001702524721622467, -0.08459154516458511, -0.09224960952997208, -0.0006354983197525144, 0.15366272628307343, -0.13195258378982544, 0.24467767775058746, 0.05762331932783127, 0.07261153310537338, -0.15753436088562012, -0.04050293564796448, -0.016783513128757477, 0.15771643817424774, 0.16228801012039185, 0.013713216409087181, -0.058847084641456604, -0.11132442951202393, -0.07279155403375626, 0.03787833824753761, 0.23714357614517212, -0.021400950849056244, -0.1600567102432251, -0.039859529584646225, 0.002520116977393627, -0.04073492810130119, -0.10440316796302795, -0.016325004398822784, -0.20097966492176056, 0.07302147150039673, 0.12138497829437256, -0.23822692036628723, 0.07597969472408295, -0.10982128977775574, 0.03073687106370926, 0.20104335248470306, -0.017322948202490807, -0.004027416463941336, -0.10021579265594482, 0.06960645318031311, 0.03218480944633484, 0.039596233516931534, -0.003796168603003025, -0.018925612792372704, 0.06331439316272736, -0.0741736888885498, -0.025165047496557236, 0.08178908377885818, -0.07527370750904083, 0.13065391778945923, -0.11596682667732239, 0.07843017578125, 0.030907081440091133, 0.027982665225863457, 0.08916789293289185, -0.006219568196684122, 0.012278424575924873, 0.011639035306870937, 0.06276577711105347, -0.10483884811401367, 0.028007589280605316, 0.2405482679605484, -0.10855931788682938, -0.11335720121860504, 0.043554533272981644, -0.08246788382530212, 0.19971127808094025, 0.05150692164897919, -0.005749165546149015, 0.10097778588533401, 0.1647585779428482, -0.13897870481014252, -0.308561772108078, 0.06280239671468735, -0.10310539603233337, -0.006582739297300577, -0.029634706676006317, -0.21989241242408752, 0.058104634284973145, 0.18069325387477875, -0.025235537439584732, 0.187113955616951, -0.3082369565963745, 0.008818031288683414, 0.025818059220910072, 0.007304958067834377, 0.24668461084365845, -0.06370008736848831, -0.010048712603747845, -0.17128479480743408, 0.03760474920272827, 0.08751517534255981, -0.11257004737854004, 0.02308308333158493, 0.037277717143297195, -0.1214231625199318, 0.003184896893799305, 0.029098007827997208, 0.15620224177837372, 0.032513201236724854, -0.021932201460003853, -0.06972824037075043, -0.1641770601272583, 0.11644431948661804, 0.06695554405450821, -0.03037330135703087, -0.07567516714334488, -0.13205038011074066, -0.0458112508058548, -0.06863173097372055, 0.03640882670879364, 0.06693998724222183, 0.005542267579585314, -0.004193129017949104, -0.0658617913722992, 0.05054379999637604, -0.111702099442482, 0.07549701631069183, -0.0005665338831022382, -0.09415005147457123, -0.009603630751371384, 0.04563051462173462, 0.14705373346805573, -0.07675519585609436, 0.08350714296102524, -0.03501701354980469, 0.001811537891626358, 0.015011047013103962, -0.004956254735589027, 0.017187602818012238, 0.13033431768417358, -0.028224550187587738, -0.01967097818851471, 0.03845296427607536, -0.007718456443399191, 0.0006708380533382297, 0.16959291696548462, 0.029505057260394096, -0.008036278188228607, 0.025997450575232506, -0.06078163906931877, -0.022766968235373497, 0.05216548964381218, 0.02911248803138733, 0.06320448964834213, -0.02937684766948223, -0.08756781369447708, 0.05244732275605202, -0.028620608150959015, 0.10056021809577942, 0.04825925827026367, -0.02364773489534855, -0.12461885809898376, 0.23408205807209015, 0.07953763753175735, -0.14495864510536194, 0.0163609329611063, 0.12133043259382248, -0.016945384442806244, -0.06380290538072586, 0.12806719541549683, 0.07929843664169312, 0.010828952305018902, -0.17944948375225067, -0.11940298974514008, -0.11523474752902985, -0.020732184872031212, -0.0008751936256885529, 0.06107163429260254, 0.02590183913707733, -0.044642601162195206, -0.06578130275011063, -0.07178620994091034, 0.033965256065130234, 0.008779237978160381, -0.05228261649608612, 0.06618614494800568, -0.12609562277793884, -0.015615354292094707, -0.011346369050443172, -0.035230111330747604, -0.08897071331739426, -0.11627823859453201, 0.1088319718837738, -0.03838594630360603, 0.042910896241664886, 0.023962046951055527, 0.014274818822741508, -0.024580415338277817, 0.014922509901225567, -0.10447625070810318, -0.08670870959758759, -0.1297461986541748, 0.06359277665615082, 0.027711309492588043, 0.04489605128765106, -0.06233556941151619, 0.04455563426017761, 0.021114163100719452, 0.04212309792637825, 0.0891663134098053, 0.1442307084798813, -0.019953640177845955, 0.08975574374198914, -0.2113310545682907, -0.0269471425563097, -0.057275280356407166, 0.09176167845726013, 0.05590510368347168, 0.08907344937324524, -0.011155398562550545, 0.15303120017051697, -0.017303068190813065, 0.07203460484743118, 0.00991398748010397, 0.026809480041265488, 0.10940037667751312, -0.10600445419549942, -0.21712496876716614, 0.07737880200147629, 0.09536033123731613, 0.1862466186285019, -0.05294407531619072, -0.09656869620084763, 0.06261507421731949, 0.02148868329823017, 0.06063969433307648, 0.02477293461561203, 0.015769263729453087, -0.1409505307674408, -0.07763488590717316, 0.011866007000207901, 0.039857909083366394, 0.043458305299282074, 0.3173144459724426, 0.14587855339050293, 0.008549986407160759, -0.003637289861217141, 0.08969680219888687, -0.026239018887281418, 0.05383102968335152, 0.2566875219345093, 0.10669980198144913, -0.04377518966794014, -0.02438129484653473, -0.008086137473583221, -0.005247758235782385, 0.2690356969833374, 0.09931006282567978, 0.2189285159111023, 0.04910334572196007, 0.11272556334733963, 0.04016168415546417, -0.11608323454856873, 0.04974605143070221, 0.10212641954421997, 0.03214390575885773, 0.05173981189727783, -0.04803285002708435, 0.008730879984796047, 0.016928397119045258, -0.11200780421495438, -0.028521345928311348, -0.10599511116743088, -0.13670216500759125, -0.08530951291322708, -0.1687183976173401, 0.006985425017774105, -0.08487147837877274, -0.02229144051671028, -0.12014428526163101, 0.09582068771123886, 0.0769464448094368, 0.0600326843559742, -0.0886765643954277, 0.027996281161904335, -0.0965823084115982, -0.027190927416086197, 0.1085759699344635, -0.0561588816344738, 0.12431841343641281, -0.10926640033721924, -0.17002807557582855, -0.1190682128071785, -0.027483031153678894, 0.011276723816990852, 0.023781590163707733, 0.07379080355167389, -0.046911317855119705, -0.15038888156414032, -0.05697433650493622, -0.031083567067980766, 0.019862674176692963, -0.020128298550844193, 0.13842807710170746, -0.002016262849792838, -0.011054053902626038, 0.03484385460615158, 0.1133495420217514, 0.08633523434400558, 0.03009001351892948, -0.02360101044178009, -0.06292858719825745, 0.006680183112621307, 0.10287588089704514, -0.06272607296705246, -0.07774873077869415, -0.03711783140897751, 0.16941945254802704, 0.2993619441986084, -0.08926928043365479, -0.04134012758731842, 0.04765695706009865, 0.04941105842590332, 0.09565695375204086, 0.11518267542123795, -0.030033253133296967, 0.06191252917051315, -0.04154282808303833, -0.04384923353791237, 0.03566642478108406, 0.049744948744773865, -0.13011157512664795, 0.14793579280376434, 0.100305937230587, -0.015490084886550903, -0.0891118198633194, 0.162909597158432, -0.050807468593120575, 0.17568150162696838, 0.1261870115995407, -0.23665033280849457, -0.15399570763111115, -0.004683738108724356, 0.015607194975018501, 0.020523861050605774, 0.1241721585392952, -0.0491291768848896, -0.12066442519426346, -0.11274537444114685, 0.02052156627178192, -0.26368263363838196, -0.28290101885795593, 0.04796907678246498, -0.10798709839582443, 0.24275048077106476, -0.06128321588039398, 0.13915401697158813, 0.02641887404024601, 0.09778610616922379, -0.012349323369562626, -0.06909888982772827, 0.04529799520969391, 0.12979713082313538, 0.02063140645623207, 0.02378120832145214, -0.16784296929836273, 0.01918463595211506, 0.12412415444850922, 0.00609559053555131, 0.0606127567589283, 0.03254736214876175, -0.049089785665273666, -0.012806476093828678, 0.014343854039907455, -0.22457286715507507, 0.11763323843479156, 0.07992285490036011, 0.011087300255894661, -0.04801049456000328, -0.03729722648859024, 0.0950988307595253, 0.05089224874973297, 0.03867483139038086, -0.06138584390282631, -0.16835305094718933, -0.12504951655864716, 0.058674249798059464, 0.03880678117275238, -0.06686532497406006, 0.07219287008047104, -0.0823993906378746, 0.08310041576623917, -0.0780707374215126, -0.029943853616714478, 0.13182897865772247, -0.043233513832092285, -0.04707171022891998, -0.17483554780483246, 0.10855966061353683, 0.008919070474803448, 0.05231399089097977, -0.054681479930877686 ]
ef8654222da174866a3add0e81346083d3dc6375
RTTTL Ringtones Dataset ~11k Ringtones/songs gathered from various sources over the internet. --- license: apache-2.0 ---
cosimoiaia/RTTTL-Ringtones
[ "region:us" ]
2023-02-07T18:31:04+00:00
{}
2023-02-07T18:33:46+00:00
[]
[]
TAGS #region-us
RTTTL Ringtones Dataset ~11k Ringtones/songs gathered from various sources over the internet. --- license: apache-2.0 ---
[]
[ "TAGS\n#region-us \n" ]
[ 6 ]
[ "passage: TAGS\n#region-us \n" ]
[ 0.024608636274933815, -0.026205500587821007, -0.009666500613093376, -0.10395516455173492, 0.08638657629489899, 0.059816278517246246, 0.01882290467619896, 0.020661840215325356, 0.23975107073783875, -0.005599027033895254, 0.1219947561621666, 0.0015615287702530622, -0.037353623658418655, 0.03733762726187706, -0.0035912662278860807, -0.17583473026752472, 0.03876631706953049, -0.018274923786520958, 0.01843859627842903, 0.026470553129911423, -0.07776834815740585, -0.07564429938793182, 0.015296397730708122, -0.10247814655303955, -0.083692267537117, 0.11002834886312485, 0.031466204673051834, -0.019670886918902397, 0.10779199749231339, -0.04243955761194229, 0.18699054419994354, -0.011512263678014278, -0.11213519424200058, -0.2536850869655609, 0.021806683391332626, -0.01765260472893715, -0.08747660368680954, 0.01506110467016697, 0.0665089413523674, -0.09014441072940826, -0.0588928684592247, 0.0795099288225174, -0.01132340170443058, 0.04246443510055542, -0.27593839168548584, -0.12684126198291779, -0.05297930911183357, -0.1421966552734375, 0.08651168644428253, 0.04035491496324539, 0.008764253929257393, 0.15506891906261444, -0.20897391438484192, 0.004104613792151213, 0.08255259692668915, -0.2538507878780365, 0.05591634660959244, 0.17671173810958862, 0.03623908758163452, 0.18037272989749908, 0.0060391901060938835, 0.11029672622680664, 0.0716743916273117, -0.024263937026262283, -0.17590197920799255, -0.08127854019403458, -0.04696211963891983, 0.16642488539218903, -0.06727185100317001, -0.14248386025428772, 0.34701237082481384, 0.00015008423360995948, 0.009657775051891804, 0.16921205818653107, -0.059524230659008026, -0.09972117841243744, 0.07259953022003174, 0.016484731808304787, 0.018492350354790688, 0.1471305936574936, 0.16307872533798218, -0.0458691343665123, -0.13837823271751404, -0.018630273640155792, -0.22798998653888702, 0.17510560154914856, -0.03248048573732376, 0.13137903809547424, -0.27447956800460815, 0.01684025302529335, -0.2570667266845703, 0.0032130838371813297, 0.04178816080093384, -0.06004921346902847, -0.0226522795855999, -0.013265985064208508, -0.08018817007541656, 0.004899587947875261, 0.06192673370242119, 0.1266920566558838, -0.06128726154565811, 0.06128238886594772, -0.09319206327199936, 0.141696035861969, 0.07166698575019836, 0.07868369668722153, 0.13037432730197906, 0.041205424815416336, -0.07187089323997498, -0.21872246265411377, -0.0026476888451725245, -0.06275863200426102, -0.09502086788415909, -0.0020165652967989445, -0.11606067419052124, 0.17244569957256317, -0.030802514404058456, -0.09825427830219269, -0.11208184063434601, 0.09148659557104111, -0.032992321997880936, -0.03437839448451996, -0.03552987426519394, -0.020977836102247238, 0.019381176680326462, 0.04704452306032181, -0.1548958420753479, -0.005131472367793322, 0.07039852440357208, 0.11502562463283539, -0.1346137970685959, -0.003783059772104025, -0.07908964157104492, 0.03039063885807991, 0.07654735445976257, -0.16510222852230072, 0.03158547356724739, -0.1124754324555397, -0.07531405985355377, 0.002912673633545637, -0.015710093080997467, -0.016202643513679504, 0.166526660323143, -0.0020451415330171585, 0.0714716836810112, -0.026345307007431984, -0.05890209600329399, -0.11243434250354767, -0.08489254862070084, 0.05390460044145584, 0.03670717030763626, 0.03266148269176483, -0.2193479984998703, 0.014805203303694725, -0.12762966752052307, 0.1360815018415451, -0.10566820204257965, -0.04705966264009476, -0.022842247039079666, 0.20562705397605896, 0.037286072969436646, 0.08762791007757187, -0.22171171009540558, 0.039756543934345245, -0.05404696613550186, 0.18480908870697021, -0.1502426266670227, -0.0799463614821434, 0.20813211798667908, -0.07964949309825897, -0.10115210711956024, 0.021235812455415726, 0.020391687750816345, 0.026287272572517395, 0.0766737088561058, 0.4564172327518463, -0.09766800701618195, -0.09146861732006073, 0.10178250074386597, 0.17055274546146393, -0.12427149713039398, -0.1827561855316162, 0.06446871906518936, -0.16666454076766968, -0.1973118633031845, 0.0018917324487119913, 0.09222044050693512, 0.038269978016614914, -0.07875611633062363, -0.020746968686580658, 0.06325206160545349, -0.0007678253459744155, 0.09095914661884308, 0.03755716234445572, 0.09034032374620438, -0.08716782182455063, 0.11115926504135132, -0.05017651244997978, 0.004037132486701012, 0.1343354731798172, 0.027325427159667015, -0.03223329409956932, 0.08694463223218918, -0.0485352948307991, 0.05295134335756302, -0.1662379503250122, -0.15068690478801727, 0.03398871049284935, 0.06283251196146011, 0.03186952322721481, 0.1280253529548645, 0.08141885697841644, -0.10732853412628174, 0.022690722718834877, -0.004228927195072174, 0.058398615568876266, 0.03891623765230179, 0.006107209715992212, 0.008764320984482765, 0.0961301177740097, -0.10607069730758667, -0.13589619100093842, -0.07336436957120895, -0.014715781435370445, 0.14371353387832642, -0.0302802175283432, 0.07690227776765823, -0.004240254405885935, 0.00013200697139836848, 0.06930823624134064, 0.08137880265712738, 0.016412746161222458, 0.08971183747053146, -0.05237193778157234, -0.05160155147314072, 0.10863113403320312, -0.13533565402030945, 0.17837053537368774, 0.14053137600421906, -0.20532016456127167, 0.029453208670020103, -0.06838275492191315, 0.03670361638069153, -0.008162540383636951, 0.0975119024515152, -0.08272241055965424, -0.02106042578816414, 0.013134466484189034, 0.0052274600602686405, -0.013007243163883686, 0.017682146281003952, -0.07295988500118256, -0.07787393033504486, -0.10233919322490692, 0.08436838537454605, 0.11562882363796234, -0.10282530635595322, 0.14214380085468292, 0.4384984076023102, 0.11495281755924225, 0.21582984924316406, -0.09581480920314789, -0.0412987545132637, 0.007486371789127588, 0.0001535322517156601, -0.04476691037416458, 0.08031861484050751, -0.15973517298698425, -0.038901735097169876, 0.027348900213837624, 0.07128690183162689, 0.11475157737731934, -0.14959022402763367, -0.09639324247837067, -0.00793045200407505, 0.0022841424215584993, -0.1249532699584961, 0.023905446752905846, -0.03974650055170059, 0.04015624523162842, 0.07232289016246796, -0.021535737439990044, 0.13939237594604492, -0.04166141897439957, -0.0639561116695404, 0.07585346698760986, -0.2017085999250412, -0.23179671168327332, -0.12309670448303223, -0.14680525660514832, 0.04366797208786011, 0.05154111236333847, 0.01726446859538555, -0.17635835707187653, -0.015074856579303741, 0.07706750929355621, 0.07820965349674225, -0.20886357128620148, -0.022814949974417686, -0.004290030337870121, 0.0895976573228836, -0.10227091610431671, -0.0017130117630586028, -0.04419664293527603, -0.10150232166051865, 0.0017003051470965147, 0.07279510796070099, -0.137485533952713, 0.13807645440101624, 0.21589438617229462, 0.07225540280342102, 0.07359948754310608, -0.019093448296189308, 0.09936179965734482, -0.10856141895055771, -0.16549113392829895, 0.08348225057125092, -0.06234746053814888, 0.047262318432331085, 0.17534415423870087, 0.03307317942380905, -0.13904969394207, -0.015682822093367577, -0.0402069091796875, -0.15603256225585938, -0.238995760679245, -0.09178274869918823, -0.1182505264878273, 0.16442428529262543, 0.0009358620154671371, 0.06651917099952698, 0.08258313685655594, -0.022042419761419296, 0.16447891294956207, -0.07379321753978729, -0.07578866183757782, -0.006978808436542749, 0.12375060468912125, -0.056660156697034836, -0.03080669604241848, -0.10566964000463486, -0.008295975625514984, 0.1151021271944046, 0.15304014086723328, 0.12214863300323486, 0.2957419455051422, 0.08268889784812927, 0.026645636186003685, 0.08958091586828232, 0.17622539401054382, 0.09495089203119278, 0.07838419824838638, -0.045413073152303696, -0.014814783819019794, 0.014317171648144722, -0.04022889584302902, 0.010141594335436821, 0.14683100581169128, -0.2679629921913147, -0.006678564939647913, -0.2710230350494385, 0.0965198427438736, -0.10913380235433578, 0.11837165057659149, -0.01015760749578476, 0.10194015502929688, 0.11082887649536133, 0.03233652561903, -0.03858073800802231, 0.16613617539405823, 0.08450309932231903, -0.11277695000171661, 0.001758623169735074, 0.03737903758883476, 0.09715615212917328, -0.02818971499800682, 0.12721189856529236, -0.11048974841833115, -0.1464834064245224, 0.013753619976341724, 0.07152791321277618, -0.15373679995536804, 0.3138748109340668, 0.012069208547472954, -0.13481520116329193, -0.01481647603213787, -0.09957809001207352, -0.006440147757530212, 0.1254177987575531, 0.09333524852991104, 0.07935678958892822, -0.2185502052307129, -0.13339371979236603, 0.05872276425361633, -0.00575496768578887, 0.22408108413219452, -0.034034017473459244, -0.11356475204229355, -0.027013886719942093, 0.04241163283586502, -0.06043251231312752, 0.08524788916110992, 0.023536119610071182, -0.08113526552915573, -0.032957352697849274, 0.05323701351881027, 0.012368366122245789, 0.00524376705288887, 0.09360801428556442, 0.020107939839363098, -0.0009265501867048442, 0.01785753294825554, 0.047885000705718994, -0.0675911232829094, -0.1984109878540039, 0.09357594698667526, -0.05215044692158699, 0.0015536568826064467, -0.08013670891523361, -0.15122665464878082, -0.08837161958217621, -0.16009655594825745, 0.12540200352668762, -0.034406669437885284, 0.12700119614601135, -0.06619787961244583, 0.17341409623622894, -0.07871770113706589, 0.04481020197272301, -0.047349292784929276, 0.050332702696323395, -0.007268077693879604, -0.07756082713603973, 0.16585899889469147, -0.15564003586769104, 0.01809087023139, 0.19572502374649048, -0.018915493041276932, 0.07177707552909851, 0.021322092041373253, -0.0636206790804863, 0.23147478699684143, 0.3014698624610901, 0.008138049393892288, 0.1665448248386383, 0.3018903136253357, -0.07466315478086472, -0.2642788887023926, -0.05505012720823288, -0.2841376066207886, -0.05371501296758652, 0.10716094076633453, -0.22523896396160126, 0.06986407935619354, 0.14383509755134583, -0.06471995264291763, 0.30228954553604126, -0.21825523674488068, 0.012589273042976856, 0.15434536337852478, -0.08868814259767532, 0.5515313148498535, -0.1133413165807724, -0.17677772045135498, -0.008122089318931103, -0.08741296827793121, 0.10602109134197235, -0.0340677872300148, 0.06877441704273224, 0.013465235009789467, 0.04797380417585373, 0.048932258039712906, -0.03111894056200981, 0.22701001167297363, 0.008710170164704323, 0.09015397727489471, -0.07378865778446198, -0.18624304234981537, 0.11639340221881866, -0.04359482601284981, -0.08891059458255768, 0.0849778801202774, -0.05942516401410103, -0.11078983545303345, 0.04663389176130295, -0.07950539886951447, -0.024862350896000862, 0.08423490077257156, -0.04678233340382576, -0.042606171220541, -0.008054176345467567, -0.1618063747882843, -0.0002289071271661669, 0.31360217928886414, -0.07096036523580551, 0.16695955395698547, 0.03677211329340935, 0.00038613268407061696, -0.11027684062719345, 0.030288029462099075, -0.05203165486454964, -0.021576624363660812, 0.09578979015350342, -0.11096979677677155, 0.03204701095819473, 0.14160704612731934, -0.04864364117383957, 0.05846960097551346, 0.09256096184253693, -0.0849417969584465, 0.007583672646433115, 0.17753590643405914, -0.17537221312522888, -0.1273445188999176, -0.006135711446404457, -0.09862716495990753, 0.14055661857128143, 0.04394126310944557, 0.05191568285226822, 0.16669964790344238, 0.03967129811644554, -0.029474308714270592, -0.02817419543862343, -0.1153380498290062, -0.0201893113553524, 0.040153320878744125, 0.00045633706031367183, -0.08791285753250122, 0.2262638509273529, 0.06409153342247009, -0.1328488290309906, -0.051157206296920776, 0.2161225974559784, -0.06805316358804703, -0.04911920800805092, -0.223562553524971, 0.10752306133508682, -0.07112517952919006, -0.0965060144662857, 0.05453834682703018, -0.02270081453025341, 0.005106312222778797, 0.181985542178154, 0.03941008821129799, 0.11070270836353302, 0.03738937899470329, -0.02448922023177147, 0.15798696875572205, -0.142850860953331, -0.14191335439682007, -0.025354057550430298, -0.08757315576076508, -0.13844476640224457, -0.026804137974977493, 0.1617041826248169, -0.09177309274673462, -0.14772607386112213, -0.2621181011199951, 0.10968475043773651, -0.16432365775108337, -0.10192688554525375, -0.03469514101743698, -0.08968492597341537, 0.0696166530251503, 0.030301768332719803, -0.03093348816037178, -0.06706760823726654, -0.18593791127204895, 0.0816768929362297, 0.06349513679742813, 0.045533183962106705, -0.017847947776317596, 0.0067379772663116455, 0.1720137596130371, 0.025955144315958023, 0.10040043294429779, 0.16762186586856842, 0.011397695168852806, 0.2246655523777008, -0.1671202927827835, -0.11496317386627197, 0.1336962729692459, -0.026543032377958298, 0.06762003898620605, 0.16792191565036774, -0.0772583931684494, 0.015526676550507545, -0.028136352077126503, 0.07066910713911057, -0.11003983020782471, -0.105624258518219, 0.007937257178127766, 0.02567129209637642, -0.2755882740020752, -0.005599735304713249, -0.19717298448085785, 0.14788752794265747, 0.02579621411859989, 0.03297143429517746, 0.10257530212402344, 0.10404334217309952, 0.08312062919139862, -0.0017710148822516203, 0.03226327523589134, -0.1176818460226059, 0.02753005363047123, -0.059239376336336136, -0.020663779228925705, 0.017624232918024063, 0.36952024698257446, -0.03603357449173927, -0.046802736818790436, 0.003710439894348383, 0.1307835876941681, -0.02139742486178875, 0.017395347356796265, 0.13209912180900574, 0.12607666850090027, -0.08595693111419678, -0.1504845917224884, 0.04888554662466049, -0.04565655067563057, -0.02836887165904045, 0.1464131623506546, 0.05905961990356445, 0.1050296202301979, 0.0908031314611435, -0.014463032595813274, -0.00318976235575974, 0.012856799177825451, -0.15486004948616028, 0.06223496049642563, -0.010558074340224266, 0.012565906159579754, 0.017934376373887062, 0.15238402783870697, -0.005540105979889631, 0.07739730179309845, -0.09889880567789078, 0.004208535887300968, -0.13498884439468384, -0.07913459837436676, 0.03617347031831741, -0.13393273949623108, 0.04141177982091904, -0.01871878281235695, 0.029611799865961075, 0.30386561155319214, 0.02558239921927452, -0.020639164373278618, 0.12512871623039246, -0.1214587539434433, -0.12050267308950424, -0.001594188273884356, -0.029960084706544876, 0.0791488066315651, -0.02633434161543846, -0.0997740775346756, -0.1001306027173996, -0.15166029334068298, -0.09759195148944855, 0.05182836204767227, -0.04993441700935364, -0.059362251311540604, -0.17634081840515137, -0.05707859992980957, -0.05147340148687363, 0.14025864005088806, -0.12263951450586319, 0.15159130096435547, -0.014490418136119843, 0.004084470681846142, 0.04405883327126503, 0.1950942426919937, -0.03644494712352753, 0.08714226633310318, 0.0154351145029068, 0.1522706001996994, -0.05119588226079941, 0.14720745384693146, -0.10931728035211563, -0.04014137014746666, -0.06710435450077057, 0.21513493359088898, 0.25630924105644226, -0.06136954948306084, -0.008937356993556023, -0.012760217301547527, 0.058654606342315674, 0.1073930487036705, 0.16049085557460785, 0.002326392102986574, 0.2802925705909729, -0.03133585304021835, 0.04815128445625305, 0.02901598811149597, 0.013607407920062542, -0.06336209923028946, 0.03397751972079277, 0.07539387792348862, -0.035039983689785004, -0.1412304788827896, 0.15837742388248444, -0.21980468928813934, 0.18157227337360382, 0.11640069633722305, -0.19996967911720276, -0.013728445395827293, -0.04882071167230606, 0.1689416468143463, -0.0856364443898201, 0.1637246012687683, -0.0903693437576294, -0.2108195722103119, -0.2056000679731369, 0.03867346793413162, -0.34623071551322937, -0.254462867975235, 0.10422009229660034, 0.1488201916217804, 0.04015883058309555, -0.018507536500692368, -0.019967829808592796, -0.018367022275924683, 0.04877542704343796, -0.0067357709631323814, 0.06014643982052803, 0.031397558748722076, -0.02988368645310402, -0.24127542972564697, -0.029804671183228493, 0.023964406922459602, -0.07093082368373871, 0.07464958727359772, -0.06874357163906097, -0.022495782002806664, 0.08059766888618469, -0.03066304884850979, 0.03298592567443848, -0.035373736172914505, -0.16326889395713806, 0.027529051527380943, 0.03900543600320816, 0.036012712866067886, 0.00634160777553916, 0.0008072225609794259, -0.03455270454287529, 0.0644603744149208, -0.16716794669628143, -0.16015739738941193, 0.14140215516090393, -0.06745140254497528, 0.2779497504234314, -0.05812826007604599, -0.0809100940823555, 0.04766704887151718, -0.03426874056458473, 0.1807648241519928, -0.07756473124027252, 0.047254521399736404, 0.12766779959201813, 0.011127962730824947, 0.03121316432952881, -0.3092964291572571, 0.11082969605922699, -0.000795336440205574, -0.006093299947679043, -0.07581598311662674 ]
93f3710720bf471a876a78f40e83bb7ff29e424c
# Dataset Card for "stormfront" [More Information needed](https://github.com/huggingface/datasets/blob/main/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
kastan/stormfront
[ "region:us" ]
2023-02-07T18:33:39+00:00
{"dataset_info": {"features": [{"name": "title", "dtype": "string"}, {"name": "content", "dtype": "string"}], "splits": [{"name": "train", "num_bytes": 7548306952, "num_examples": 10458223}, {"name": "test", "num_bytes": 386917, "num_examples": 791}], "download_size": 4688723070, "dataset_size": 7548693869}}
2023-02-07T19:26:09+00:00
[]
[]
TAGS #region-us
# Dataset Card for "stormfront" More Information needed
[ "# Dataset Card for \"stormfront\"\n\nMore Information needed" ]
[ "TAGS\n#region-us \n", "# Dataset Card for \"stormfront\"\n\nMore Information needed" ]
[ 6, 12 ]
[ "passage: TAGS\n#region-us \n# Dataset Card for \"stormfront\"\n\nMore Information needed" ]
[ -0.18393072485923767, 0.15238937735557556, -0.0030425942968577147, 0.08590459078550339, 0.09855525195598602, 0.10431254655122757, 0.0984889343380928, -0.03633059933781624, 0.21730293333530426, -0.025340741500258446, 0.16282114386558533, -0.0012165687512606382, 0.010869172401726246, 0.20140677690505981, -0.046862438321113586, -0.16302847862243652, 0.06789393723011017, 0.014011329039931297, -0.13680654764175415, 0.06143315136432648, 0.04621481895446777, -0.11521248519420624, 0.021546687930822372, -0.14093247056007385, -0.15775775909423828, 0.08823957294225693, -0.030207835137844086, -0.05135525390505791, 0.12271679192781448, -0.060529157519340515, 0.1446446031332016, -0.005799239967018366, 0.023930413648486137, -0.019998179748654366, 0.0465954914689064, -0.029241716489195824, -0.06797290593385696, 0.04360818490386009, 0.061074040830135345, -0.13715142011642456, -0.14726419746875763, 0.020638911053538322, 0.0563235841691494, -0.01654411107301712, -0.1406298726797104, -0.22285209596157074, -0.1254575401544571, 0.050084952265024185, 0.06363997608423233, 0.0539730042219162, 0.08897791057825089, 0.10703060030937195, -0.05892282351851463, 0.044920340180397034, 0.02848409302532673, 0.021194342523813248, -0.017343290150165558, 0.12515932321548462, -0.07827182114124298, 0.05242059379816055, -0.006485633086413145, 0.09197502583265305, 0.10266699641942978, -0.02892736718058586, -0.05618619546294212, 0.007140232250094414, -0.13426145911216736, 0.09055402874946594, -0.05091272294521332, -0.09200454503297806, 0.3208385407924652, 0.03136371448636055, -0.018329840153455734, 0.02686750702559948, 0.015011906623840332, 0.04234924912452698, 0.022758446633815765, 0.06833524256944656, -0.03475997969508171, 0.005185453686863184, 0.07034165412187576, -0.006389567628502846, -0.10641419142484665, -0.10655418038368225, -0.1187933161854744, 0.23482204973697662, -0.07190961390733719, 0.1827172338962555, -0.20142625272274017, 0.024431167170405388, 0.005281723570078611, -0.07461173832416534, -0.01394055224955082, -0.07469601929187775, -0.0829080268740654, 0.013225000351667404, -0.008848732337355614, 0.045006658881902695, 0.0625993087887764, 0.12879958748817444, 0.03320564329624176, 0.0033531845547258854, -0.005453662481158972, 0.09424588829278946, 0.17716777324676514, -0.10746682435274124, 0.04640927165746689, -0.019843222573399544, -0.021076757460832596, -0.17992955446243286, 0.038487400859594345, -0.14796897768974304, -0.06356901675462723, -0.003079534973949194, -0.16665023565292358, 0.13608163595199585, 0.020232103765010834, -0.15244290232658386, -0.0817045271396637, -0.07330918312072754, 0.2617015540599823, -0.11498064547777176, 0.031235462054610252, 0.04799129068851471, -0.05678275600075722, -0.05831965431571007, -0.10803187638521194, 0.0016250156331807375, 0.12245920300483704, 0.013995165005326271, -0.058661773800849915, -0.07066713273525238, -0.056620609015226364, 0.005909949075430632, 0.10692249983549118, -0.13211821019649506, 0.06761765480041504, -0.09845864027738571, -0.3622264266014099, 0.06109100580215454, 0.034314729273319244, -0.04281846806406975, 0.019919313490390778, 0.06597018986940384, 0.06975842267274857, 0.04575888067483902, -0.05538959801197052, 0.11742039024829865, -0.08347129821777344, -0.00884415302425623, -0.06457854062318802, 0.04588289558887482, -0.242014542222023, -0.016870582476258278, -0.09469128400087357, -0.004611104726791382, -0.04764145240187645, -0.001624501426704228, -0.13879887759685516, 0.12262618541717529, -0.08767979592084885, 0.03294126316905022, -0.07290587574243546, 0.02721131034195423, -0.019771724939346313, 0.19326886534690857, -0.24738439917564392, -0.031096218153834343, 0.04407619684934616, -0.1960686296224594, -0.1366037279367447, -0.049356427043676376, -0.06509573012590408, 0.018296444788575172, 0.041191618889570236, 0.1993449330329895, 0.024450205266475677, 0.04320356622338295, 0.02740941010415554, 0.1348145455121994, -0.20962220430374146, -0.2643321752548218, 0.08534105122089386, -0.031728651374578476, -0.2601587474346161, 0.011361570097506046, 0.17609085142612457, 0.0037547284737229347, -0.08846501260995865, -0.038312412798404694, 0.002836052794009447, -0.07899881154298782, 0.005676002707332373, 0.0048506674356758595, -0.021466614678502083, -0.00814987625926733, 0.1091703474521637, -0.021477269008755684, 0.08751916140317917, 0.0322260856628418, -0.014630270190536976, 0.02659965679049492, 0.02644110471010208, -0.06971042603254318, -0.02724645659327507, -0.16432364284992218, -0.1974593549966812, 0.004660926293581724, 0.006843462586402893, -0.015909381210803986, 0.00645777303725481, 0.11860611289739609, -0.0426405668258667, 0.043311599642038345, 0.044759299606084824, 0.12738443911075592, 0.051961686462163925, -0.01596929132938385, -0.07255931198596954, -0.03193536028265953, -0.11381389945745468, -0.01745668798685074, -0.12452886253595352, -0.008005128242075443, 0.20689843595027924, 0.004081909544765949, -0.0077966246753931046, -0.04944927990436554, 0.06285974383354187, -0.09979797154664993, 0.0016321336152032018, -0.05380583181977272, -0.005383397918194532, -0.02358708530664444, -0.08780978620052338, 0.09937556087970734, -0.02685154601931572, 0.14672909677028656, 0.037390321493148804, 0.10379858314990997, 0.024985628202557564, -0.06588124483823776, -0.012913105078041553, -0.03075416013598442, -0.03320496156811714, 0.0446641705930233, -0.12601938843727112, -0.02454182505607605, 0.01416802778840065, 0.01538242306560278, 0.046961236745119095, 0.028994811698794365, 0.045704666525125504, -0.09309589862823486, 0.09386751055717468, 0.10213711112737656, -0.13946472108364105, 0.09649384021759033, 0.1834193617105484, 0.15083324909210205, 0.09201399981975555, -0.04436248168349266, -0.07047314941883087, 0.03046311065554619, -0.16872692108154297, -0.047322120517492294, 0.25339803099632263, 0.034062787890434265, 0.0745469406247139, 0.11649348586797714, 0.03143006190657616, 0.056196559220552444, -0.07754865288734436, -0.13726076483726501, 0.04563659802079201, 0.061248455196619034, -0.15986895561218262, 0.05792073905467987, -0.05607987940311432, 0.09052809327840805, 0.005739320535212755, -0.10258514434099197, 0.13757561147212982, -0.031378522515296936, -0.007831170223653316, 0.13112808763980865, -0.13922692835330963, -0.2973899245262146, -0.05668278783559799, -0.08426440507173538, 0.031041443347930908, -0.0007546977722086012, -0.033851101994514465, -0.11438226699829102, -0.06435947865247726, -0.0028591419104486704, -0.009845077060163021, -0.16277092695236206, 0.013451757840812206, 0.08755867183208466, -0.061460912227630615, -0.08943907916545868, -0.09797487407922745, 0.041814859956502914, -0.037841279059648514, 0.011951684951782227, 0.08791260421276093, -0.04715534672141075, 0.15670062601566315, 0.14069698750972748, 0.029494421556591988, 0.0844007283449173, -0.01092244777828455, 0.05002536624670029, -0.07416415214538574, -0.012551361694931984, 0.06609228253364563, -0.08546721190214157, -0.006817550864070654, 0.075997494161129, 0.15556515753269196, -0.14675544202327728, -0.04283784329891205, -0.055675700306892395, -0.19234323501586914, -0.27145183086395264, -0.13676513731479645, -0.031819213181734085, 0.09845571219921112, 0.04199555888772011, 0.11828678101301193, -0.01962774619460106, 0.09821679443120956, 0.11585522443056107, -0.1607559621334076, -0.10040302574634552, -0.016447467729449272, -0.12283682823181152, -0.0045370603911578655, -0.02807801216840744, -0.16533499956130981, 0.06207861751317978, 0.14965157210826874, 0.15664853155612946, 0.19446921348571777, 0.11788824200630188, 0.10494828224182129, -0.031616367399692535, 0.09459555149078369, 0.08898842334747314, 0.18348442018032074, 0.12719498574733734, -0.017870349809527397, 0.03289816156029701, 0.05398746579885483, 0.007041200529783964, -0.0643000602722168, 0.011117302812635899, -0.03268183022737503, 0.0046122195199131966, -0.15371394157409668, -0.030679674819111824, 0.00021542100876104087, 0.05916115269064903, -0.22588162124156952, 0.021148888394236565, 0.012103966437280178, 0.10601730644702911, -0.0881776288151741, 0.07210742682218552, 0.055834174156188965, -0.03209071233868599, 0.15326547622680664, -0.02886359579861164, 0.060787081718444824, -0.05001052841544151, -0.026203924790024757, -0.049984075129032135, -0.11601001769304276, -0.057234589010477066, 0.11927667260169983, -0.006787953898310661, 0.22766999900341034, 0.021746480837464333, -0.04932303726673126, -0.10492844879627228, -0.08443640917539597, -0.03865264728665352, 0.12623275816440582, 0.1590588539838791, 0.008962834253907204, -0.10312583297491074, -0.12202274799346924, -0.15729433298110962, -0.006020217668265104, 0.059425972402095795, -0.15256434679031372, -0.1398957222700119, 0.11738527566194534, 0.020915312692523003, -0.01722869463264942, -0.1856982558965683, -0.09835819900035858, -0.11343535780906677, -0.03694866970181465, 0.04432638734579086, -0.10631578415632248, -0.030271388590335846, -0.032196082174777985, -0.07174129784107208, 0.0008300752961076796, 0.008725287392735481, -0.014754966832697392, -0.17195244133472443, -0.019936172291636467, 0.1715639978647232, 0.0012720644008368254, 0.02908443659543991, 0.05368492379784584, 0.07245567440986633, -0.036489930003881454, -0.1608695387840271, 0.08223576098680496, -0.13114255666732788, 0.11086691170930862, -0.08642463386058807, 0.08060968667268753, 0.0935501828789711, 0.009572283364832401, -0.02198832482099533, 0.06205853447318077, -0.04459068179130554, -0.07167685776948929, 0.15650437772274017, -0.1482170671224594, 0.07870263606309891, 0.22664442658424377, 0.19791412353515625, 0.023803437128663063, 0.14970292150974274, -0.04045560210943222, 0.1879049688577652, 0.08392958343029022, -0.09473013877868652, 0.21379075944423676, 0.08191730082035065, -0.03975940868258476, -0.31718695163726807, 0.06925833970308304, -0.14369601011276245, -0.015271086245775223, 0.08573198318481445, -0.20389819145202637, 0.11999134719371796, 0.10102105140686035, -0.09762252122163773, 0.31456175446510315, -0.07835837453603745, 0.047029927372932434, 0.2131929248571396, -0.0014874596381559968, 0.39789697527885437, -0.1136636734008789, -0.08007535338401794, -0.08194122463464737, -0.10101644694805145, 0.21948570013046265, -0.13309752941131592, -0.03995899111032486, -0.019734781235456467, 0.011233874596655369, -0.013820943422615528, -0.04322780668735504, 0.22152557969093323, 0.09119541943073273, 0.12707124650478363, -0.06572652608156204, -0.0003542845952324569, 0.0710739716887474, -0.061429932713508606, 0.010453498922288418, 0.13369059562683105, 0.019150279462337494, -0.25106745958328247, -0.004705909173935652, 0.06917960941791534, 0.11174371093511581, 0.07305768132209778, -0.003987850155681372, 0.03469462692737579, -0.05106642469763756, -0.15828227996826172, -0.035256996750831604, 0.24032583832740784, 0.03974849358201027, -0.025409942492842674, 0.01886163093149662, 0.026508359238505363, 0.007548719644546509, -0.06834468245506287, -0.09723898768424988, -0.06315066665410995, 0.10761821269989014, -0.2394692301750183, 0.028609473258256912, 0.03224347531795502, 0.07331816852092743, -0.03203211724758148, 0.056918978691101074, -0.0011804394889622927, 0.005333205685019493, 0.12645460665225983, -0.16503159701824188, -0.07564869523048401, 0.02094288356602192, 0.014187834225594997, 0.03587806597352028, 0.17760376632213593, 0.026622168719768524, 0.04222970828413963, 0.00018855319649446756, -0.05308040231466293, 0.05948203429579735, -0.007330014836043119, 0.02596774697303772, 0.12334099411964417, 0.040761593729257584, -0.21753059327602386, 0.2526549994945526, 0.04522848501801491, -0.13615107536315918, 0.013811915181577206, 0.03980793058872223, -0.04151228442788124, -0.10260993987321854, 0.0018253922462463379, 0.2269737273454666, -0.10994438827037811, -0.14039826393127441, 0.015159901231527328, -0.07327388972043991, 0.05918245390057564, 0.17600752413272858, 0.04399188607931137, 0.04410192370414734, -0.0030944591853767633, -0.030271627008914948, 0.003649875521659851, -0.04909858852624893, 0.007105614058673382, -0.030054740607738495, -0.02602495439350605, -0.28390073776245117, -0.0012861277209594846, 0.1638924479484558, -0.07727721333503723, -0.1363198161125183, -0.015074674040079117, 0.07228954136371613, -0.13854274153709412, 0.013834113255143166, 0.10627122223377228, 0.037401311099529266, -0.013861443847417831, -0.008918216452002525, 0.02961021661758423, -0.047252725809812546, -0.14157544076442719, 0.1551569104194641, 0.015559669584035873, 0.029777120798826218, -0.08245933055877686, -0.014562636613845825, 0.01711694896221161, 0.038290247321128845, 0.1611902117729187, 0.1790439933538437, 0.010889014229178429, 0.05414767190814018, -0.16406656801700592, -0.08560753613710403, -0.005598681513220072, 0.011955426074564457, 0.0753612071275711, 0.11310719698667526, -0.024584410712122917, 0.030050301924347878, -0.06948674470186234, 0.010228008963167667, -0.19207905232906342, -0.09434320777654648, 0.01638038270175457, -0.06919257342815399, -0.07868742942810059, 0.009300833567976952, -0.09458203613758087, 0.1335301548242569, 0.08381591737270355, -0.011761927045881748, 0.11214054375886917, 0.06100476160645485, -0.005656337831169367, -0.06904124468564987, 0.001270453678444028, -0.1009313315153122, -0.20746006071567535, 0.12631483376026154, 0.06782898306846619, -0.04632025584578514, 0.313667893409729, -0.02510382980108261, -0.1435561329126358, -0.061210986226797104, 0.17198102176189423, -0.043669652193784714, 0.025355231016874313, 0.31477221846580505, 0.07272052019834518, 0.03722921386361122, 0.03165152296423912, 0.08900400251150131, 0.03729931265115738, 0.04967853054404259, 0.021914534270763397, 0.045151080936193466, 0.06340546160936356, 0.03024277277290821, 0.04198918119072914, -0.049424801021814346, 0.1423594057559967, -0.04870248958468437, -0.03983050957322121, 0.015792429447174072, 0.10292989760637283, -0.10010062903165817, 0.015862448140978813, 0.020271753892302513, -0.02473350055515766, -0.01939868927001953, -0.03427695110440254, -0.09826119244098663, -0.15706866979599, 0.008910919539630413, -0.04992255941033363, 0.04359852150082588, -0.06197386607527733, 0.022226769477128983, 0.34863317012786865, 0.08336364477872849, 0.07461199164390564, 0.02364598959684372, 0.02370322309434414, 0.14306741952896118, 0.05183279141783714, -0.017623601481318474, -0.06078479439020157, 0.02260649763047695, -0.043444037437438965, 0.016252847388386726, -0.04041796550154686, -0.07548301666975021, -0.009914297610521317, 0.11932356655597687, 0.05585930496454239, -0.11598724871873856, -0.1060057207942009, -0.035275351256132126, 0.10276930779218674, -0.05052145570516586, 0.10471823066473007, 0.022599073126912117, 0.09694728255271912, 0.03915600851178169, 0.13763342797756195, -0.0077361357398331165, 0.07403836399316788, 0.028092356398701668, 0.028676362708210945, -0.06625925749540329, 0.08076704293489456, 0.005962716415524483, -0.03702252730727196, -0.012789948843419552, 0.04633214697241783, 0.19853073358535767, -0.05587565898895264, -0.0022705355659127235, 0.024795591831207275, 0.04642937332391739, 0.07578175514936447, 0.1619001179933548, -0.020207472145557404, 0.07839258015155792, -0.05427151545882225, -0.0649433434009552, 0.01876267045736313, -0.03687415271997452, -0.029820360243320465, 0.07449568063020706, 0.00019485707161948085, -0.05212602764368057, -0.10547981411218643, 0.211070716381073, -0.09940293431282043, 0.010132472962141037, 0.05748554319143295, -0.06570018082857132, -0.11259777843952179, 0.00014688735245727003, 0.1473405510187149, 0.03393402323126793, 0.016031773760914803, -0.0817231610417366, 0.0077477977611124516, -0.03271856531500816, -0.020143093541264534, -0.30656683444976807, -0.20338167250156403, 0.04451701045036316, -0.020925944671034813, 0.17667557299137115, -0.0464114174246788, 0.15882498025894165, -0.01703966222703457, -0.007937699556350708, -0.19034220278263092, -0.06658527255058289, 0.0108461519703269, 0.04073871672153473, -0.02855057828128338, 0.041604332625865936, -0.08061125874519348, -0.1469377875328064, 0.03450481966137886, -0.05211227759718895, -0.04675329104065895, 0.11281605064868927, -0.009639311581850052, 0.02523624151945114, 0.049907997250556946, -0.026035822927951813, 0.10388641804456711, -0.037635501474142075, -0.021296747028827667, -0.0654381513595581, 0.012854322791099548, 0.045294515788555145, 0.039404913783073425, -0.08729115128517151, -0.020843369886279106, 0.039514828473329544, -0.08430428802967072, -0.043574754148721695, 0.01116250455379486, -0.09927953034639359, 0.01216902956366539, -0.12370505928993225, 0.030228495597839355, 0.046706151217222214, 0.022088544443249702, 0.12706078588962555, 0.019912658259272575, -0.04674631729722023, 0.179173082113266, 0.0638008639216423, -0.018093876540660858, -0.027953488752245903, -0.08860354125499725 ]
f40575420823ccfbc55dce92e82d506b041c4abf
# Toloker Graph: Interaction of Crowd Annotators ## Dataset Description - **Repository:** https://github.com/Toloka/TolokerGraph - **Point of Contact:** [email protected] ### Dataset Summary This repository contains a graph representing interactions between crowd annotators on a project labeled on the [Toloka](https://toloka.ai/) crowdsourcing platform (see the [Toloka overview](https://toloka.ai/en/docs/guide/concepts/overview) for the details on the used terminology). The graph contains 11,758 nodes and 519,000 edges. Each node represents an individual annotator; nodes are provided with four numerical and three categorical features. An edge is drawn between a pair of annotators if they annotated the same task. Also, each node is provided with a label showing whether the annotator was banned on this project, or not. ### Nodes Nodes are stored in the [nodes.tsv](nodes.tsv) file in the TSV format of the following structure: - `id`: unique identifier of the annotator - `approved_rate`: percentage of the approved labels of this annotator - `skipped_rate`: percentage of the skipped tasks of this annotator - `expired_rate`: percentage of the expired tasks of this annotator - `rejected_rate`: percentage of the rejected labels of this annotator - `education`: level of education as self-reported by this annotator (`none`, `basic`, `middle`, `high`) - `english_profile`: knowledge of English as self-reported by this annotator (`0` for no, `1` for yes) - `english_tested`: whether the annotator passed the Toloka language test for English (`0` for no, `1` for yes) - `banned`: whether the annotator was banned on this project (`0` for no, `1` for yes) The `*_rate` attributes should sum up to 1. ### Edges Edges are stored in the [edges.tsv](edges.tsv) file in the TSV format of the following structure: - `source`: source identifier of the annotator - `target`: target identifier of the annotator As the graph is undirected, `source` and `target` can be interchanged for the given pair of nodes. ### Citation * Likhobaba, D., Pavlichenko, N., Ustalov, D. (2023). [Toloker Graph: Interaction of Crowd Annotators](https://doi.org/10.5281/zenodo.7620795). Zenodo. <https://doi.org/10.5281/zenodo.7620795> ```bibtex @dataset{Tolokers, author = {Likhobaba, Daniil and Pavlichenko, Nikita and Ustalov, Dmitry}, title = {{Toloker Graph: Interaction of Crowd Annotators}}, year = {2023}, publisher = {Zenodo}, doi = {10.5281/zenodo.7620795}, url = {https://github.com/Toloka/TolokerGraph}, language = {english}, } ``` ### Copyright Licensed under the Creative Commons Attribution 4.0 License. See LICENSE file for more details.
toloka/TolokerGraph
[ "task_categories:graph-ml", "size_categories:10K<n<100K", "license:cc-by-4.0", "toloka", "graph", "node-classification", "region:us" ]
2023-02-07T19:02:45+00:00
{"license": "cc-by-4.0", "size_categories": ["10K<n<100K"], "task_categories": ["graph-ml"], "pretty_name": "Graph of Crowd Annotators", "tags": ["toloka", "graph", "node-classification"], "dataset_info": {"features": [{"name": "id", "dtype": "int32"}, {"name": "approved_rate", "dtype": "float"}, {"name": "skipped_rate", "dtype": "float"}, {"name": "expired_rate", "dtype": "float"}, {"name": "rejected_rate", "dtype": "float"}, {"name": "education", "dtype": "string"}, {"name": "english_profile", "dtype": "bool"}, {"name": "english_tested", "dtype": "bool"}, {"name": "banned", "dtype": "bool"}]}}
2023-02-08T14:16:49+00:00
[]
[]
TAGS #task_categories-graph-ml #size_categories-10K<n<100K #license-cc-by-4.0 #toloka #graph #node-classification #region-us
# Toloker Graph: Interaction of Crowd Annotators ## Dataset Description - Repository: URL - Point of Contact: research@URL ### Dataset Summary This repository contains a graph representing interactions between crowd annotators on a project labeled on the Toloka crowdsourcing platform (see the Toloka overview for the details on the used terminology). The graph contains 11,758 nodes and 519,000 edges. Each node represents an individual annotator; nodes are provided with four numerical and three categorical features. An edge is drawn between a pair of annotators if they annotated the same task. Also, each node is provided with a label showing whether the annotator was banned on this project, or not. ### Nodes Nodes are stored in the URL file in the TSV format of the following structure: - 'id': unique identifier of the annotator - 'approved_rate': percentage of the approved labels of this annotator - 'skipped_rate': percentage of the skipped tasks of this annotator - 'expired_rate': percentage of the expired tasks of this annotator - 'rejected_rate': percentage of the rejected labels of this annotator - 'education': level of education as self-reported by this annotator ('none', 'basic', 'middle', 'high') - 'english_profile': knowledge of English as self-reported by this annotator ('0' for no, '1' for yes) - 'english_tested': whether the annotator passed the Toloka language test for English ('0' for no, '1' for yes) - 'banned': whether the annotator was banned on this project ('0' for no, '1' for yes) The '*_rate' attributes should sum up to 1. ### Edges Edges are stored in the URL file in the TSV format of the following structure: - 'source': source identifier of the annotator - 'target': target identifier of the annotator As the graph is undirected, 'source' and 'target' can be interchanged for the given pair of nodes. * Likhobaba, D., Pavlichenko, N., Ustalov, D. (2023). Toloker Graph: Interaction of Crowd Annotators. Zenodo. <URL ### Copyright Licensed under the Creative Commons Attribution 4.0 License. See LICENSE file for more details.
[ "# Toloker Graph: Interaction of Crowd Annotators", "## Dataset Description\n\n- Repository: URL\n- Point of Contact: research@URL", "### Dataset Summary\n\nThis repository contains a graph representing interactions between crowd annotators on a project labeled on the Toloka crowdsourcing platform (see the Toloka overview for the details on the used terminology).\n\nThe graph contains 11,758 nodes and 519,000 edges. Each node represents an individual annotator; nodes are provided with four numerical and three categorical features. An edge is drawn between a pair of annotators if they annotated the same task. Also, each node is provided with a label showing whether the annotator was banned on this project, or not.", "### Nodes\n\nNodes are stored in the URL file in the TSV format of the following structure:\n\n- 'id': unique identifier of the annotator\n- 'approved_rate': percentage of the approved labels of this annotator\n- 'skipped_rate': percentage of the skipped tasks of this annotator\n- 'expired_rate': percentage of the expired tasks of this annotator\n- 'rejected_rate': percentage of the rejected labels of this annotator\n- 'education': level of education as self-reported by this annotator ('none', 'basic', 'middle', 'high')\n- 'english_profile': knowledge of English as self-reported by this annotator ('0' for no, '1' for yes)\n- 'english_tested': whether the annotator passed the Toloka language test for English ('0' for no, '1' for yes)\n- 'banned': whether the annotator was banned on this project ('0' for no, '1' for yes)\n\nThe '*_rate' attributes should sum up to 1.", "### Edges\n\nEdges are stored in the URL file in the TSV format of the following structure:\n\n- 'source': source identifier of the annotator\n- 'target': target identifier of the annotator\n\nAs the graph is undirected, 'source' and 'target' can be interchanged for the given pair of nodes.\n\n* Likhobaba, D., Pavlichenko, N., Ustalov, D. (2023). Toloker Graph: Interaction of Crowd Annotators. Zenodo. <URL", "### Copyright\n\nLicensed under the Creative Commons Attribution 4.0 License. See LICENSE file for more details." ]
[ "TAGS\n#task_categories-graph-ml #size_categories-10K<n<100K #license-cc-by-4.0 #toloka #graph #node-classification #region-us \n", "# Toloker Graph: Interaction of Crowd Annotators", "## Dataset Description\n\n- Repository: URL\n- Point of Contact: research@URL", "### Dataset Summary\n\nThis repository contains a graph representing interactions between crowd annotators on a project labeled on the Toloka crowdsourcing platform (see the Toloka overview for the details on the used terminology).\n\nThe graph contains 11,758 nodes and 519,000 edges. Each node represents an individual annotator; nodes are provided with four numerical and three categorical features. An edge is drawn between a pair of annotators if they annotated the same task. Also, each node is provided with a label showing whether the annotator was banned on this project, or not.", "### Nodes\n\nNodes are stored in the URL file in the TSV format of the following structure:\n\n- 'id': unique identifier of the annotator\n- 'approved_rate': percentage of the approved labels of this annotator\n- 'skipped_rate': percentage of the skipped tasks of this annotator\n- 'expired_rate': percentage of the expired tasks of this annotator\n- 'rejected_rate': percentage of the rejected labels of this annotator\n- 'education': level of education as self-reported by this annotator ('none', 'basic', 'middle', 'high')\n- 'english_profile': knowledge of English as self-reported by this annotator ('0' for no, '1' for yes)\n- 'english_tested': whether the annotator passed the Toloka language test for English ('0' for no, '1' for yes)\n- 'banned': whether the annotator was banned on this project ('0' for no, '1' for yes)\n\nThe '*_rate' attributes should sum up to 1.", "### Edges\n\nEdges are stored in the URL file in the TSV format of the following structure:\n\n- 'source': source identifier of the annotator\n- 'target': target identifier of the annotator\n\nAs the graph is undirected, 'source' and 'target' can be interchanged for the given pair of nodes.\n\n* Likhobaba, D., Pavlichenko, N., Ustalov, D. (2023). Toloker Graph: Interaction of Crowd Annotators. Zenodo. <URL", "### Copyright\n\nLicensed under the Creative Commons Attribution 4.0 License. See LICENSE file for more details." ]
[ 48, 15, 18, 141, 272, 125, 22 ]
[ "passage: TAGS\n#task_categories-graph-ml #size_categories-10K<n<100K #license-cc-by-4.0 #toloka #graph #node-classification #region-us \n# Toloker Graph: Interaction of Crowd Annotators## Dataset Description\n\n- Repository: URL\n- Point of Contact: research@URL### Dataset Summary\n\nThis repository contains a graph representing interactions between crowd annotators on a project labeled on the Toloka crowdsourcing platform (see the Toloka overview for the details on the used terminology).\n\nThe graph contains 11,758 nodes and 519,000 edges. Each node represents an individual annotator; nodes are provided with four numerical and three categorical features. An edge is drawn between a pair of annotators if they annotated the same task. Also, each node is provided with a label showing whether the annotator was banned on this project, or not.### Nodes\n\nNodes are stored in the URL file in the TSV format of the following structure:\n\n- 'id': unique identifier of the annotator\n- 'approved_rate': percentage of the approved labels of this annotator\n- 'skipped_rate': percentage of the skipped tasks of this annotator\n- 'expired_rate': percentage of the expired tasks of this annotator\n- 'rejected_rate': percentage of the rejected labels of this annotator\n- 'education': level of education as self-reported by this annotator ('none', 'basic', 'middle', 'high')\n- 'english_profile': knowledge of English as self-reported by this annotator ('0' for no, '1' for yes)\n- 'english_tested': whether the annotator passed the Toloka language test for English ('0' for no, '1' for yes)\n- 'banned': whether the annotator was banned on this project ('0' for no, '1' for yes)\n\nThe '*_rate' attributes should sum up to 1." ]
[ -0.03516325727105141, -0.017662083730101585, -0.009135499596595764, 0.05700807645916939, 0.03141448274254799, -0.0356113575398922, 0.04112079367041588, 0.08218123018741608, 0.07571933418512344, 0.19169475138187408, -0.038735222071409225, 0.14271226525306702, 0.054136455059051514, 0.05787227302789688, -0.0580572672188282, -0.07108238339424133, 0.024527251720428467, -0.08715096116065979, 0.07413226366043091, 0.08249714970588684, 0.10564995557069778, -0.07902798801660538, 0.08318569511175156, -0.0378686748445034, 0.04918910190463066, -0.030560338869690895, 0.023233966901898384, -0.03823407366871834, 0.04009293392300606, 0.0749148577451706, 0.03651279956102371, 0.016207750886678696, -0.04080348089337349, -0.15698988735675812, 0.022300539538264275, 0.10902610421180725, 0.043355293571949005, 0.04971956089138985, 0.09950598329305649, -0.0043409960344433784, 0.08167225122451782, -0.1140170767903328, 0.03480604663491249, 0.06343840062618256, -0.14508631825447083, -0.12454789131879807, -0.11104169487953186, 0.03625531122088432, 0.08018867671489716, -0.00336066703312099, -0.07720737904310226, 0.18389257788658142, -0.07721105217933655, 0.11604896932840347, 0.07977617532014847, -0.11338631063699722, -0.06160716712474823, 0.04453711584210396, 0.03251976519823074, 0.1088193729519844, -0.11866328865289688, 0.029609903693199158, 0.002873898483812809, 0.01954847387969494, 0.02393425442278385, -0.036500684916973114, 0.06075149402022362, -0.016542328521609306, -0.07611452043056488, -0.0794927179813385, 0.16421954333782196, 0.07330965250730515, -0.09052907675504684, -0.1820872724056244, -0.058668870478868484, 0.005425536539405584, 0.03224421665072441, -0.07471002638339996, 0.01405353844165802, 0.02621159330010414, -0.018199855461716652, -0.04496222361922264, -0.058659981936216354, 0.012026307173073292, -0.01524160336703062, 0.06544630974531174, -0.05199261009693146, 0.04181713983416557, -0.013622532598674297, 0.06687071174383163, 0.04316318407654762, -0.09355204552412033, -0.023836305364966393, -0.031825460493564606, -0.10705698281526566, -0.04715435951948166, 0.04060281813144684, -0.035702258348464966, 0.05985737591981888, 0.24482031166553497, -0.04901253804564476, 0.023022793233394623, -0.10216645151376724, 0.036877863109111786, 0.08766957372426987, 0.04488079622387886, 0.03666440770030022, -0.04763106629252434, 0.005352119915187359, 0.015077091753482819, 0.06795194745063782, -0.039455391466617584, 0.04633753374218941, 0.017847608774900436, 0.07725085318088531, 0.08515176177024841, 0.12859895825386047, 0.03529862314462662, -0.07334146648645401, -0.04387842118740082, 0.12347158789634705, -0.14925368130207062, 0.048472605645656586, 0.07904428988695145, -0.0334840752184391, 0.016071436926722527, -0.020463692024350166, 0.0322355292737484, -0.07813619822263718, 0.11853340268135071, -0.06567394733428955, -0.013211448676884174, -0.020504096522927284, -0.07677195966243744, 0.0810123011469841, -0.02973991632461548, -0.09019390493631363, -0.09602224081754684, -0.07116545736789703, -0.08356998860836029, 0.0010541552910581231, -0.04008505493402481, -0.006390295457094908, 0.04628517106175423, 0.000979554490186274, 0.0025667299050837755, -0.015617496334016323, 0.07613909989595413, -0.031313106417655945, 0.08207578212022781, -0.015579849481582642, 0.039608392864465714, 0.13741329312324524, -0.028999727219343185, -0.16738440096378326, 0.05456332489848137, -0.2019667774438858, 0.10140545666217804, -0.07129897177219391, 0.06541170924901962, -0.10709066689014435, -0.0008330148411914706, -0.050439875572919846, -0.006454065907746553, 0.007970497943460941, 0.1570853590965271, -0.11213817447423935, -0.05410003662109375, 0.090886190533638, -0.16217179596424103, -0.11274364590644836, 0.164441779255867, 0.01300952397286892, -0.02124142460525036, 0.13034778833389282, 0.13974766433238983, -0.054967354983091354, -0.1323557198047638, -0.17267321050167084, -0.0611080564558506, -0.03606371209025383, 0.2232188582420349, 0.07665567100048065, -0.07423292100429535, -0.004121491685509682, 0.006911708042025566, 0.035464443266391754, -0.11600090563297272, -0.002018530620262027, -0.05825955048203468, -0.04718596488237381, 0.06539840251207352, 0.04021783173084259, -0.002918559592217207, -0.10299530625343323, -0.09587705135345459, -0.13936340808868408, -0.15009306371212006, 0.06490661203861237, 0.020946338772773743, 0.02930987812578678, -0.06419216841459274, 0.11453753709793091, -0.0568523183465004, -0.03295501694083214, -0.1921416074037552, -0.0869223028421402, 0.045138176530599594, -0.21146707236766815, 0.05707110837101936, -0.009846962988376617, -0.030598120763897896, -0.009225315414369106, -0.028356116265058517, 0.03741838037967682, -0.00023744475038256496, -0.048616182059049606, -0.05530063062906265, -0.1281844824552536, -0.006991452071815729, -0.00811391044408083, -0.07602527737617493, -0.20657865703105927, -0.012478934600949287, 0.1682218313217163, 0.1408272683620453, 0.08546548336744308, -0.07342342287302017, 0.02118045650422573, 0.020659709349274635, -0.011251154355704784, -0.03229542821645737, 0.022441299632191658, -0.0036384938284754753, -0.039976608008146286, -0.010585215874016285, -0.17324353754520416, -0.16743575036525726, 0.07738319039344788, -0.00016245036385953426, -0.07678958028554916, -0.010897761210799217, -0.05407816171646118, -0.026080762967467308, -0.12257937341928482, -0.06492430716753006, 0.03593192622065544, 0.05969453230500221, 0.05525956302881241, -0.09043338149785995, -0.06935951858758926, -0.004435684997588396, -0.07000714540481567, -0.044197890907526016, 0.11135286837816238, 0.0525272898375988, -0.20516958832740784, 0.10902224481105804, 0.08575185388326645, 0.00781965907663107, 0.18508280813694, 0.009625652804970741, -0.07317383587360382, -0.09907703846693039, 0.07283216714859009, 0.01683567836880684, 0.018840590491890907, -0.14053641259670258, 0.052809230983257294, 0.055926363915205, 0.04036916047334671, -0.005020766519010067, -0.06190969794988632, 0.0852675810456276, -0.01865030638873577, -0.051912013441324234, 0.0995839461684227, 0.06716439872980118, 0.015054510906338692, 0.1058134213089943, -0.015770282596349716, 0.10425733774900436, -0.035487089306116104, -0.056956660002470016, -0.10319964587688446, 0.07992514222860336, -0.010786144994199276, -0.23108361661434174, -0.08401039987802505, 0.02338215708732605, -0.10373681783676147, -0.019179116934537888, 0.0589355006814003, -0.023659206926822662, -0.05920805409550667, -0.07949686795473099, 0.07136651128530502, -0.004695091862231493, -0.11473682522773743, -0.05218350142240524, 0.1214766800403595, 0.03500068560242653, -0.07056564837694168, -0.043698202818632126, 0.012518506497144699, -0.04225838556885719, 0.013622771017253399, 0.06509153544902802, 0.06785643845796585, 0.043533824384212494, 0.04374198988080025, -0.04125477001070976, -0.017487673088908195, 0.23753784596920013, -0.11728417128324509, 0.11815481632947922, 0.11225327849388123, 0.0132831372320652, 0.09320764243602753, 0.17767930030822754, 0.018865948542952538, -0.055583368986845016, 0.05220717936754227, 0.09772613644599915, -0.026987481862306595, -0.2399851381778717, -0.07343433797359467, -0.05627715215086937, 0.08213109523057938, 0.06441240757703781, 0.031532056629657745, 0.04842087998986244, 0.029079599305987358, -0.11013022065162659, -0.0006583710783161223, 0.015436324290931225, 0.09331277012825012, 0.12666673958301544, 0.024827703833580017, 0.10695160925388336, -0.025300756096839905, 0.007092305924743414, 0.14961086213588715, -0.000231899248319678, 0.1456422060728073, 0.016637399792671204, 0.1821327656507492, 0.08351533114910126, 0.04828248172998428, 0.023260634392499924, -0.05542441084980965, 0.0382801778614521, 0.04255666583776474, -0.023484228178858757, -0.10916990041732788, -0.03828231990337372, 0.062063802033662796, 0.11238270252943039, -0.04751403629779816, 0.04284867271780968, -0.08436859399080276, 0.16347840428352356, 0.21437238156795502, 0.08659198880195618, -0.09132858365774155, -0.047779835760593414, 0.08814281225204468, -0.049902014434337616, -0.04847416654229164, -0.039486490190029144, 0.10877984017133713, -0.1463162899017334, 0.056412771344184875, -0.051156457513570786, 0.0976538211107254, -0.10323330014944077, 0.0042353165335953236, -0.09278059750795364, 0.04471969977021217, -0.05511891469359398, 0.07022566348314285, -0.18865898251533508, 0.11812128126621246, 0.012707531452178955, 0.06246831640601158, -0.046935196965932846, 0.04063820093870163, 0.03206260874867439, -0.018939273431897163, 0.17293518781661987, 0.018177838996052742, -0.2203407883644104, -0.07473727315664291, -0.1289977729320526, 0.01974654197692871, 0.0987529456615448, -0.1424044817686081, 0.05202515050768852, 0.01284707896411419, 0.015321597456932068, -0.06704108417034149, 0.07634136825799942, -0.1149885505437851, -0.031420037150382996, 0.06603650003671646, -0.012577786110341549, -0.027392327785491943, -0.007382362149655819, -0.00031757995020598173, 0.02313690260052681, 0.20756858587265015, -0.16681894659996033, -0.08089663833379745, -0.0952240526676178, -0.005782658699899912, 0.08465221524238586, -0.08009012788534164, -0.05243804678320885, -0.05511653423309326, 0.13200968503952026, -0.01217028871178627, -0.005342788994312286, 0.08434945344924927, -0.0504760816693306, -0.21439120173454285, -0.0774536058306694, 0.12057935446500778, 0.04162726551294327, 0.0064948252402246, -0.007077009882777929, 0.08786236494779587, -0.0033564830664545298, -0.09794280678033829, 0.06361038982868195, 0.07644397765398026, 0.06319896876811981, 0.08996240049600601, -0.03812403976917267, -0.13568872213363647, -0.1384945660829544, -0.10783372074365616, 0.050024956464767456, 0.253583699464798, -0.029403645545244217, 0.0510772243142128, 0.24605326354503632, -0.11271081119775772, -0.11051738262176514, -0.07175542414188385, -0.004299144726246595, -0.007318633142858744, 0.060913171619176865, -0.10797198861837387, 0.07450126856565475, 0.17050278186798096, -0.012457145377993584, 0.09435706585645676, -0.15637849271297455, -0.12409640103578568, -0.0757337436079979, -0.01518400851637125, -0.1369478404521942, -0.1385301798582077, -0.10410004109144211, -0.01799219287931919, -0.019537394866347313, 0.0619463175535202, -0.0058560785837471485, 0.03814854100346565, 0.03922498971223831, -0.012625121511518955, 0.039886146783828735, -0.012721825391054153, 0.15774796903133392, 0.002763814991340041, 0.04620980843901634, -0.051723893731832504, -0.11675100028514862, 0.018673859536647797, -0.0873412936925888, 0.07862360030412674, -0.029078001156449318, 0.02963581681251526, -0.07143930345773697, -0.035566702485084534, -0.05910532549023628, 0.0863131731748581, -0.0855632945895195, -0.06046316400170326, -0.10822601616382599, 0.08899406343698502, 0.05545714870095253, 0.0013219935353845358, 0.10062431544065475, -0.09861241281032562, 0.09933572262525558, 0.19379977881908417, 0.07382645457983017, 0.0253555029630661, -0.22432014346122742, -0.00535625359043479, -0.014469757676124573, 0.06786119192838669, -0.07748465240001678, 0.07686971127986908, 0.07822263240814209, 0.0317515954375267, 0.15827979147434235, -0.022055117413401604, -0.09908168762922287, 0.06436112523078918, 0.013867707923054695, -0.10823596268892288, -0.054328225553035736, 0.041077226400375366, -0.0605524443089962, -0.12159090489149094, -0.08582272380590439, 0.14806243777275085, 0.02819180302321911, 0.018440552055835724, -0.004273747559636831, 0.08442676067352295, 0.02280869334936142, 0.054892927408218384, -0.00384931149892509, 0.07479865849018097, -0.03898154944181442, 0.11754364520311356, 0.13655804097652435, -0.1531580239534378, -0.01352746319025755, 0.07725460082292557, -0.06000028923153877, -0.05137968063354492, -0.14069415628910065, 0.03619535267353058, 0.09889091551303864, -0.022497743368148804, 0.007912851870059967, -0.04402012750506401, 0.07203816622495651, 0.04786338284611702, 0.013965572230517864, 0.0738568902015686, 0.0017718810122460127, -0.01565377600491047, -0.029080279171466827, 0.10343590378761292, 0.030192319303750992, 0.010208215564489365, -0.06361115723848343, 0.06270201504230499, 0.05083874613046646, -0.03752322122454643, 0.020145945250988007, -0.05499152094125748, -0.10805568099021912, 0.0016162038082256913, 0.01644286885857582, 0.08187136799097061, -0.06975656002759933, -0.014078628271818161, -0.010604074224829674, -0.00496689323335886, -0.05837210267782211, 0.0026643064338713884, -0.03244020789861679, -0.036296818405389786, -0.005730065051466227, 0.11500242352485657, -0.15582315623760223, 0.012666959315538406, 0.12745746970176697, -0.11366450041532516, 0.06879351288080215, -0.004975765943527222, -0.04880615696310997, -0.05493932217359543, -0.14608868956565857, 0.0596679151058197, -0.010985777713358402, 0.05082261934876442, -0.00649400195106864, -0.1827806979417801, -0.011404598131775856, -0.027916377410292625, 0.05838274955749512, 0.02550112083554268, -0.015438729897141457, -0.14803312718868256, 0.05128879100084305, 0.08100555092096329, -0.1007387712597847, -0.031120700761675835, 0.04868536815047264, 0.004015359096229076, 0.020421195775270462, 0.10538840293884277, -0.03036295250058174, 0.0796767920255661, -0.19354552030563354, -0.0007639691466465592, 0.048398829996585846, -0.0036221451591700315, 0.0439034104347229, 0.0075477114878594875, 0.06763021647930145, -0.05002918839454651, 0.11174070835113525, 0.07191310822963715, 0.004525126423686743, 0.06970061361789703, -0.023326104506850243, -0.13919979333877563, 0.019862672314047813, 0.005290275905281305, -0.0038184071891009808, -0.0067809103056788445, 0.043898023664951324, -0.09815650433301926, -0.05022130906581879, 0.016592636704444885, 0.09774460643529892, 0.1696552336215973, 0.07992517203092575, -0.04964154586195946, 0.026547523215413094, -0.050753407180309296, -0.1985466182231903, 0.03859609365463257, -0.0384225994348526, 0.13619694113731384, -0.045585691928863525, 0.01928435079753399, 0.10620256513357162, -0.11461947858333588, 0.10583457350730896, -0.01491240318864584, -0.064104825258255, -0.11418598890304565, -0.27177467942237854, -0.07671374827623367, 0.02449573576450348, 0.026208704337477684, -0.1040302962064743, 0.08771426975727081, 0.15698371827602386, 0.02470182254910469, -0.03017478622496128, -0.0136484419927001, -0.07367642223834991, -0.10988470166921616, 0.07180122286081314, -0.005046635400503874, -0.0005852124304510653, -0.01118865143507719, 0.04904508218169212, 0.03571575880050659, 0.03259873762726784, 0.06917677819728851, 0.08752460032701492, 0.02120078168809414, -0.0002656075230333954, -0.04442519694566727, -0.050527531653642654, -0.01403966173529625, -0.01944703422486782, -0.055025797337293625, 0.14436224102973938, 0.03826456144452095, 0.007061125710606575, 0.01502596028149128, 0.19783884286880493, -0.036973919719457626, -0.018715955317020416, -0.1722092479467392, 0.08593395352363586, -0.09787679463624954, 0.008447719737887383, 0.00645382609218359, -0.12496625632047653, 0.05639899522066116, 0.09959612786769867, 0.056210361421108246, 0.06207107752561569, 0.023636801168322563, 0.004368391819298267, 0.005458898842334747, -0.015482909977436066, 0.007360148709267378, -0.013940020464360714, 0.14234818518161774, -0.0492212139070034, 0.1397625207901001, -0.060172103345394135, -0.04401112347841263, -0.01612367294728756, 0.057740792632102966, -0.07229366153478622, 0.01642070896923542, -0.13734720647335052, 0.10346673429012299, 0.015199610963463783, -0.2383493334054947, 0.1288980394601822, -0.054158471524715424, -0.07263533771038055, 0.043976183980703354, 0.039967142045497894, 0.0021896925754845142, 0.06270827353000641, 0.014876939356327057, -0.07627125829458237, 0.0861632227897644, -0.026599660515785217, -0.02123691700398922, -0.07922695577144623, 0.05431846156716347, -0.01236172765493393, 0.18282249569892883, 0.024677472189068794, 0.09869842231273651, 0.11274023354053497, -0.03678332269191742, -0.07175348699092865, 0.10298562794923782, 0.05849645659327507, -0.01661651022732258, 0.03701236471533775, 0.1362856775522232, 0.020529763773083687, 0.19348599016666412, 0.12860038876533508, -0.007896495051681995, 0.015173775143921375, 0.1643606275320053, 0.002443997422233224, -0.11469148099422455, 0.06736704707145691, -0.123109832406044, 0.05480897054076195, 0.14981727302074432, -0.02999115362763405, -0.00930037721991539, -0.04021911323070526, 0.06240496039390564, -0.009152606129646301, 0.021983152255415916, -0.012274244800209999, -0.15437737107276917, 0.07416053861379623, 0.10132689028978348, 0.07809048146009445, -0.14670401811599731, -0.10366157442331314, 0.07026422023773193, -0.019236497581005096, 0.0016802124446257949, 0.059295885264873505, -0.023390784859657288, -0.045623958110809326, -0.013064000755548477, -0.13049359619617462, 0.033489890396595, 0.13598795235157013, -0.034118492156267166, -0.020655937492847443 ]
997840e7933ff50cd7c374a0044e1c3af8674e2a
# Dataset Card for "sidewalk-imagery2" [More Information needed](https://github.com/huggingface/datasets/blob/main/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
shahardekel/sidewalk-imagery2
[ "region:us" ]
2023-02-07T19:56:21+00:00
{"dataset_info": {"features": [{"name": "pixel_values", "dtype": "image"}, {"name": "label", "dtype": "image"}], "splits": [{"name": "train", "num_bytes": 86083036.0, "num_examples": 10}], "download_size": 7069372, "dataset_size": 86083036.0}}
2023-02-07T19:56:33+00:00
[]
[]
TAGS #region-us
# Dataset Card for "sidewalk-imagery2" More Information needed
[ "# Dataset Card for \"sidewalk-imagery2\"\n\nMore Information needed" ]
[ "TAGS\n#region-us \n", "# Dataset Card for \"sidewalk-imagery2\"\n\nMore Information needed" ]
[ 6, 16 ]
[ "passage: TAGS\n#region-us \n# Dataset Card for \"sidewalk-imagery2\"\n\nMore Information needed" ]
[ -0.11446626484394073, 0.2939249873161316, -0.004529758356511593, 0.022629059851169586, 0.07311657816171646, 0.06785155832767487, 0.1479445844888687, 0.054480671882629395, 0.14127326011657715, -0.05136099085211754, 0.15532633662223816, 0.13422533869743347, 0.059503618627786636, 0.16106297075748444, -0.07085055857896805, -0.16856613755226135, 0.00406518904492259, 0.011075382120907307, -0.08241114020347595, 0.07162492722272873, 0.01573745720088482, -0.08683907240629196, 0.07008474320173264, -0.0440901443362236, -0.2423570305109024, 0.06843659281730652, -0.02715892903506756, -0.05660200119018555, 0.09341157972812653, -0.09647449851036072, 0.13632696866989136, 0.09581286460161209, 0.15291918814182281, -0.05091487616300583, 0.008867540396749973, -0.05190170183777809, -0.09693780541419983, 0.058218855410814285, 0.11150726675987244, -0.13548026978969574, -0.08381641656160355, 0.08056771755218506, 0.022148029878735542, -0.04925147816538811, -0.08875684440135956, -0.20168551802635193, -0.03599368780851364, 0.09712067991495132, 0.09129107743501663, -0.07749664038419724, 0.12172125279903412, 0.00790456123650074, -0.07061076909303665, 0.04819853603839874, -0.012247969396412373, 0.09528286755084991, -0.007223871536552906, 0.10211816430091858, -0.08131512999534607, 0.12262247502803802, -0.07280132174491882, 0.07091566920280457, 0.013073368929326534, -0.005017351824790239, -0.038811370730400085, 0.010658049955964088, -0.11572296917438507, 0.08960438519716263, 0.011611049063503742, -0.10244534909725189, 0.20965267717838287, 0.003863394493237138, 0.013202985748648643, 0.05525156110525131, -0.07192664593458176, -0.027246899902820587, -0.03024161607027054, 0.019680259749293327, 0.010594788938760757, 0.027333710342645645, -0.22584305703639984, -0.1010805070400238, -0.11749759316444397, -0.08705157786607742, -0.15733906626701355, -0.004173382185399532, -0.03854013979434967, 0.20875614881515503, -0.18376758694648743, 0.05857110768556595, -0.031239228323101997, -0.025397639721632004, -0.0007625004509463906, -0.11323721706867218, 0.05153731629252434, 0.027577223256230354, 0.1126536950469017, 0.11803053319454193, 0.056825555860996246, 0.07991959154605865, 0.13342788815498352, -0.010299320332705975, -0.09742129594087601, 0.15157538652420044, 0.13567544519901276, -0.11401663720607758, 0.00067861721618101, 0.08481330424547195, -0.05368129909038544, -0.08166120946407318, 0.015025445260107517, -0.09277402609586716, -0.1350245326757431, 0.06137685477733612, -0.10877315700054169, 0.07555730640888214, 0.004786036442965269, -0.13300234079360962, -0.05563909187912941, -0.07062847912311554, 0.1683824211359024, 0.0024525912012904882, 0.052401360124349594, -0.033282678574323654, -0.0126290712505579, -0.05189727991819382, -0.014286322519183159, 0.007822548970580101, 0.11801028251647949, 0.12816502153873444, -0.02707948535680771, 0.03672649711370468, 0.006404954474419355, 0.08382946997880936, 0.047296192497015, -0.15405775606632233, 0.08167663961648941, -0.17488513886928558, -0.28788286447525024, 0.07684484869241714, 0.03685121238231659, -0.061835188418626785, 0.17527884244918823, -0.032175298780202866, 0.09438267350196838, -0.02163761667907238, -0.07407165318727493, 0.08185657858848572, -0.06958572566509247, 0.05748693272471428, -0.0698530301451683, 0.15170834958553314, -0.25174468755722046, 0.0000017606295159566798, -0.06421219557523727, -0.01209686603397131, 0.0423496775329113, 0.041701558977365494, -0.061213452368974686, 0.0649949163198471, 0.0018311646999791265, 0.06113061681389809, -0.18922017514705658, 0.012872493825852871, -0.007297534961253405, 0.1383589804172516, -0.13950173556804657, -0.028934242203831673, 0.10393042117357254, -0.11540409177541733, -0.15400013327598572, 0.045816823840141296, -0.046424951404333115, 0.13708002865314484, 0.02053014375269413, 0.30045968294143677, -0.015674900263547897, -0.14622198045253754, -0.005995588377118111, 0.18617895245552063, -0.2302422821521759, -0.2566288113594055, 0.027034400030970573, -0.015389448963105679, -0.06781420111656189, -0.0254707969725132, 0.04139797016978264, 0.0587557777762413, -0.11113642901182175, -0.07822614163160324, -0.003984270617365837, -0.10517369955778122, 0.11818317323923111, 0.04251726716756821, 0.036499906331300735, -0.050602130591869354, 0.07641606777906418, 0.04609149694442749, 0.021173439919948578, -0.028296079486608505, -0.03205817937850952, -0.04944118112325668, 0.07855052500963211, -0.11650028824806213, -0.07871286571025848, -0.06182905659079552, -0.01286369375884533, -0.03948108106851578, 0.03160259500145912, -0.02085196226835251, -0.02214171551167965, 0.09604637324810028, -0.01398680079728365, -0.03825530782341957, 0.027609050273895264, 0.041865769773721695, 0.040521521121263504, -0.00724934134632349, 0.024827860295772552, 0.046278540045022964, -0.05545661970973015, -0.05261256918311119, -0.05714432895183563, -0.07128694653511047, 0.15929096937179565, 0.09055294096469879, 0.019264431670308113, -0.016688786447048187, -0.04648590832948685, -0.0993913784623146, -0.04224050045013428, -0.06114305928349495, 0.06290091574192047, 0.025412052869796753, 0.045277051627635956, 0.06846046447753906, 0.07204568386077881, 0.150137260556221, 0.13467080891132355, -0.0989590734243393, 0.007490318734198809, -0.07917352020740509, -0.0032628863118588924, 0.011076019145548344, -0.19308486580848694, -0.060875460505485535, -0.08333441615104675, -0.07186928391456604, 0.04871291294693947, -0.040977634489536285, 0.08863183856010437, 0.04806062951683998, -0.03824860602617264, -0.10530953854322433, -0.021044906228780746, 0.18954786658287048, -0.13056641817092896, 0.14369119703769684, 0.26009586453437805, 0.14102739095687866, 0.07225597649812698, 0.027884002774953842, -0.036439672112464905, -0.005128466058522463, -0.0029190501663833857, -0.05984179675579071, 0.2575909495353699, -0.11459168046712875, 0.019559897482395172, 0.06270179152488708, -0.040508922189474106, 0.036220185458660126, -0.15650758147239685, -0.04095468670129776, -0.017431972548365593, -0.002234440529718995, -0.15669754147529602, -0.04540760815143585, -0.016162367537617683, 0.10940006375312805, -0.04732968285679817, -0.05226069316267967, 0.16275016963481903, -0.004639449529349804, -0.014484262093901634, 0.028301486745476723, -0.11896225064992905, -0.35436397790908813, 0.027026060968637466, -0.1114831417798996, 0.12351279705762863, 0.05476779118180275, -0.020789992064237595, -0.08437182009220123, 0.015027403831481934, 0.04874279722571373, -0.0663672685623169, -0.12368675321340561, -0.02136192098259926, 0.009533865377306938, 0.059123896062374115, -0.11408731341362, -0.06518431752920151, 0.011706002987921238, -0.059357184916734695, 0.11067599803209305, 0.1455758512020111, -0.11607743799686432, 0.1167069524526596, 0.03808218985795975, -0.05642545595765114, 0.11028444021940231, -0.018957290798425674, -0.05425763502717018, -0.06528954207897186, 0.0027571336831897497, 0.04283885285258293, -0.0071667092852294445, 0.042943842709064484, 0.08697044104337692, 0.05582752451300621, -0.12688122689723969, -0.045554306358098984, -0.06042144075036049, -0.2319524884223938, -0.09214799851179123, -0.07621322572231293, -0.020859938114881516, 0.14814893901348114, 0.1598353534936905, 0.06587846577167511, 0.020119158551096916, 0.15828506648540497, 0.10173666477203369, -0.10860452055931091, -0.1052638590335846, -0.015860067680478096, -0.11075058579444885, -0.05574379488825798, 0.01087223645299673, -0.11810430139303207, -0.11043638736009598, 0.14632359147071838, 0.19276197254657745, 0.23779289424419403, 0.0725276842713356, -0.0949622318148613, -0.005041986703872681, 0.20854276418685913, 0.1841314435005188, 0.07335173338651657, 0.15619421005249023, -0.022964248433709145, 0.008322937414050102, 0.007715956307947636, 0.0023508903104811907, 0.06311079859733582, 0.2183525711297989, -0.160582035779953, 0.13643285632133484, -0.13476108014583588, -0.001831438159570098, -0.14716799557209015, 0.13280238211154938, -0.27514928579330444, 0.16334976255893707, 0.019896941259503365, 0.1887788474559784, -0.1250055581331253, 0.11181417107582092, 0.15776704251766205, -0.07298806309700012, 0.06611263006925583, -0.04125086963176727, 0.04162830859422684, -0.1502131223678589, -0.030200136825442314, -0.042733095586299896, -0.22614686191082, -0.007642572745680809, 0.06892810761928558, -0.018200289458036423, 0.22505614161491394, 0.03344559296965599, -0.03350451961159706, -0.13255994021892548, -0.07881331443786621, 0.05505349114537239, 0.003234533127397299, 0.2620207369327545, 0.03328561410307884, -0.08498016744852066, -0.12999208271503448, -0.1653563380241394, -0.006389721762388945, 0.1331072449684143, -0.04306882247328758, -0.19210515916347504, 0.09371908009052277, -0.03161212429404259, -0.05097701773047447, -0.1967134326696396, -0.08404262363910675, -0.1425769031047821, -0.03701283037662506, 0.02899475209414959, -0.10168352723121643, 0.04173608496785164, -0.029145805165171623, -0.006573664955794811, 0.024592392146587372, 0.08130907267332077, -0.043280549347400665, -0.11551400274038315, 0.04654805362224579, 0.021832380443811417, 0.030969809740781784, 0.054679788649082184, 0.050243277102708817, -0.0015349433524534106, -0.05363594740629196, -0.17779673635959625, 0.09275441616773605, -0.09971068799495697, 0.09362483769655228, -0.1787072867155075, 0.10632382333278656, 0.03907795250415802, -0.014188971370458603, 0.005449424032121897, 0.08047843724489212, 0.006933442782610655, -0.03196323290467262, 0.22121188044548035, -0.10186208039522171, 0.07536864280700684, 0.15893620252609253, 0.06513622403144836, 0.014732610434293747, 0.12023243308067322, -0.02681877091526985, 0.09437213838100433, 0.09399746358394623, -0.1274619847536087, 0.1989026665687561, 0.08402947336435318, -0.025456925854086876, -0.37866130471229553, 0.02546663023531437, -0.060928426682949066, -0.019728807732462883, 0.1240435540676117, -0.12575763463974, 0.06955026090145111, 0.1385505348443985, -0.11096090823411942, 0.2764626741409302, -0.2722579538822174, -0.03516797721385956, 0.1703997701406479, 0.1125294640660286, 0.31395769119262695, -0.10031601041555405, -0.06743506342172623, -0.056133534759283066, -0.11457692831754684, 0.20005057752132416, 0.02850787527859211, -0.022133519873023033, 0.026340076699852943, 0.027570348232984543, -0.0023018934298306704, -0.013644743710756302, 0.1472146362066269, 0.09898305684328079, 0.08904968202114105, -0.1126810610294342, -0.1515999734401703, 0.20069606602191925, -0.04191732406616211, -0.015290990471839905, 0.16328150033950806, 0.05931858718395233, -0.0806213915348053, 0.006069764029234648, 0.03390757367014885, 0.025587717071175575, 0.08467709273099899, -0.06109514459967613, -0.08887481689453125, -0.04245014488697052, -0.12840452790260315, -0.010030131787061691, 0.20426592230796814, 0.030958212912082672, -0.04713473096489906, 0.20557385683059692, -0.06472522765398026, -0.021583151072263718, -0.07123918831348419, -0.12594708800315857, -0.13804425299167633, 0.032755039632320404, -0.2126789093017578, 0.05923960357904434, 0.06774747371673584, 0.09896755963563919, -0.025594204664230347, 0.0617411807179451, 0.0533338226377964, 0.07425162196159363, 0.14572741091251373, -0.05827394500374794, -0.09250453859567642, 0.0055902753956615925, 0.028556961566209793, 0.10200867056846619, 0.11888404190540314, 0.03263970464468002, 0.042503222823143005, -0.0005097283283248544, -0.06062602251768112, 0.06450597196817398, -0.015941668301820755, 0.05055699497461319, 0.11390270292758942, -0.010760288685560226, -0.14536747336387634, 0.20913292467594147, 0.024922145530581474, -0.10937748849391937, -0.07086445391178131, -0.07629786431789398, -0.04009377583861351, -0.046340301632881165, -0.010883917100727558, 0.1588144600391388, -0.1293717622756958, -0.08454125374555588, 0.027212318032979965, -0.010805131867527962, 0.017435938119888306, 0.05301191285252571, 0.04742100089788437, 0.059661950916051865, 0.02259020321071148, -0.041194695979356766, -0.07886265218257904, -0.006348651368170977, -0.09089528769254684, 0.0416567362844944, -0.06419388949871063, -0.2255014330148697, -0.004631918855011463, 0.19528858363628387, -0.11333467066287994, -0.08679784834384918, -0.0835641622543335, 0.10523249208927155, -0.16670355200767517, 0.047159306704998016, 0.016506923362612724, -0.04854396730661392, -0.016057051718235016, -0.005465648137032986, -0.04722435772418976, -0.039917171001434326, -0.11067916452884674, 0.10203249007463455, 0.052649542689323425, -0.013229594565927982, -0.036711301654577255, -0.057693857699632645, 0.04589696228504181, -0.004051093943417072, 0.0985809713602066, 0.10017717629671097, -0.00656081410124898, -0.026761401444673538, -0.11017731577157974, -0.17192202806472778, 0.07836052775382996, 0.027571160346269608, 0.04065251722931862, 0.12170469760894775, 0.029115034267306328, 0.06943009793758392, 0.013527504168450832, 0.036301806569099426, 0.05901573598384857, -0.10326771438121796, 0.09116633236408234, -0.19306638836860657, -0.11437942087650299, -0.020025160163640976, 0.046511463820934296, 0.10459702461957932, 0.026919089257717133, -0.039251767098903656, 0.0401134267449379, 0.026334213092923164, -0.02735559269785881, -0.050313711166381836, -0.009376981295645237, -0.07307951152324677, -0.03920426592230797, 0.0022647972218692303, -0.00850837491452694, -0.06584026664495468, 0.38376203179359436, 0.01816294714808464, -0.20260636508464813, -0.04084770008921623, 0.18007220327854156, -0.02298167161643505, -0.034946098923683167, 0.30482327938079834, 0.04077329486608505, -0.06290606409311295, -0.022137777879834175, 0.1417580246925354, 0.013278752565383911, 0.03555542975664139, 0.05127306282520294, 0.10677090287208557, -0.07392864674329758, 0.012751517817378044, 0.12318571656942368, -0.06657631695270538, -0.018138207495212555, 0.009847378358244896, -0.020611874759197235, 0.005923524498939514, -0.016911860555410385, -0.1431836485862732, 0.08711370825767517, -0.011073087342083454, -0.019239379093050957, 0.039484791457653046, -0.05650245398283005, -0.06158082187175751, -0.21551553905010223, -0.05752628669142723, -0.1561451256275177, 0.0841081514954567, 0.01809370331466198, -0.029705733060836792, 0.3196891248226166, 0.04620743170380592, 0.005503455176949501, -0.03902943432331085, -0.06120404228568077, -0.02383764646947384, 0.0754389613866806, -0.025147298350930214, 0.03201409429311752, -0.10079549252986908, -0.09737469255924225, 0.05341894179582596, 0.019955383613705635, -0.009051247499883175, 0.0021309794392436743, 0.09585794061422348, -0.02458144910633564, -0.08117657154798508, -0.05911725386977196, -0.08247663080692291, 0.03260822594165802, -0.08670175075531006, -0.009613650850951672, 0.0248308964073658, 0.06386260688304901, 0.042426373809576035, 0.14091190695762634, -0.059114787727594376, 0.09794991463422775, 0.047056104987859726, -0.028888078406453133, -0.0885377824306488, 0.1328783631324768, 0.06984298676252365, -0.05497615039348602, -0.012053067795932293, 0.1063089445233345, 0.21744941174983978, -0.07388992607593536, -0.043180886656045914, 0.023201478645205498, 0.038901492953300476, 0.04246198385953903, 0.12161881476640701, -0.02462080307304859, 0.11695658415555954, -0.08075746148824692, -0.17789053916931152, 0.05301471799612045, -0.050369419157505035, -0.030223984271287918, 0.07495905458927155, 0.01632808893918991, -0.024775464087724686, -0.15948143601417542, 0.169674813747406, -0.056581851094961166, 0.23620206117630005, 0.18457449972629547, -0.12569108605384827, -0.11354787647724152, 0.09639476239681244, 0.11271937191486359, 0.03716912493109703, -0.014510863460600376, -0.1376185268163681, 0.00568652618676424, -0.024143677204847336, -0.034790124744176865, -0.35903722047805786, -0.09261369705200195, -0.07684934139251709, -0.08877570182085037, 0.14910806715488434, -0.05057235807180405, 0.09144050627946854, 0.01344934944063425, 0.01816459186375141, -0.0635315477848053, 0.04508873075246811, -0.023596016690135002, 0.031109251081943512, -0.009380451403558254, 0.03306635841727257, -0.07733511924743652, -0.09391551464796066, 0.0824449434876442, 0.01798243075609207, -0.0544726587831974, 0.09400106966495514, 0.0052185626700520515, -0.07418286055326462, -0.01977786049246788, -0.06166128069162369, 0.07983700931072235, -0.151555597782135, 0.006882737390697002, -0.011369877494871616, 0.01595303602516651, 0.020200341939926147, 0.09701436012983322, -0.11613859236240387, 0.01795801892876625, -0.015321481972932816, -0.12607607245445251, -0.02079390175640583, -0.014356952160596848, -0.061423853039741516, 0.0354861281812191, -0.11208134144544601, -0.0245988667011261, 0.023757576942443848, 0.05926031246781349, 0.09718775004148483, 0.07048185169696808, -0.014781039208173752, 0.043023351579904556, 0.0676703155040741, -0.009791062213480473, 0.02881237119436264, -0.09553003311157227 ]
db5bd349c1403d2470594e697d3bb9bf66d709e3
# Dataset Card for "stormfront-small" [More Information needed](https://github.com/huggingface/datasets/blob/main/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
kastan/stormfront-small
[ "region:us" ]
2023-02-07T20:22:30+00:00
{"dataset_info": {"features": [{"name": "title", "dtype": "string"}, {"name": "content", "dtype": "string"}], "splits": [{"name": "train", "num_bytes": 8997836, "num_examples": 10000}, {"name": "test", "num_bytes": 386917, "num_examples": 791}], "download_size": 5770146, "dataset_size": 9384753}}
2023-02-07T20:22:36+00:00
[]
[]
TAGS #region-us
# Dataset Card for "stormfront-small" More Information needed
[ "# Dataset Card for \"stormfront-small\"\n\nMore Information needed" ]
[ "TAGS\n#region-us \n", "# Dataset Card for \"stormfront-small\"\n\nMore Information needed" ]
[ 6, 15 ]
[ "passage: TAGS\n#region-us \n# Dataset Card for \"stormfront-small\"\n\nMore Information needed" ]
[ -0.16302873194217682, 0.07267540693283081, -0.0027145766653120518, 0.08887119591236115, 0.07488010078668594, 0.08923128992319107, 0.11406923085451126, 0.013712453655898571, 0.18289394676685333, -0.021952733397483826, 0.14355884492397308, -0.052236806601285934, 0.02554151974618435, 0.21533603966236115, -0.07158808410167694, -0.16548870503902435, 0.021564271301031113, 0.06964898854494095, -0.1097598522901535, 0.039261363446712494, 0.09063907712697983, -0.14145530760288239, 0.026442622765898705, -0.11642847210168839, -0.13459394872188568, 0.06936900317668915, -0.010759701952338219, -0.05262354016304016, 0.06618613749742508, -0.06751025468111038, 0.12494221329689026, -0.01609482802450657, 0.024920286610722542, 0.020436901599168777, 0.03609800338745117, -0.04547469690442085, -0.03285360336303711, 0.033666159957647324, 0.08766361325979233, -0.0941610112786293, -0.13059957325458527, -0.023470265790820122, 0.03893136605620384, -0.014167155139148235, -0.06023002043366432, -0.2625535726547241, -0.11193469166755676, 0.04739129915833473, 0.04852745682001114, 0.02246916852891445, 0.10299637913703918, 0.1161356046795845, -0.13282109797000885, 0.0042950985953211784, 0.06873831152915955, 0.06857689470052719, -0.007711529731750488, 0.11679724603891373, -0.0810050219297409, 0.06041337922215462, -0.01839761808514595, 0.04984986409544945, 0.09384367614984512, -0.009254954755306244, -0.03940927982330322, 0.03640725091099739, -0.14668677747249603, 0.11822826415300369, -0.03457174450159073, -0.10707930475473404, 0.3138429820537567, -0.004168565385043621, -0.004768291488289833, -0.05653117597103119, 0.03633928298950195, 0.035341501235961914, -0.03683711215853691, 0.043305158615112305, -0.0015665078535676003, 0.002623559208586812, 0.04867290332913399, -0.000030503273592330515, -0.12491600215435028, -0.11717317253351212, -0.12522082030773163, 0.19690567255020142, -0.0816202163696289, 0.1678873598575592, -0.2509765326976776, -0.037832729518413544, -0.01297171600162983, -0.04675845056772232, -0.01940307207405567, -0.09122756123542786, 0.033879876136779785, -0.0004239761910866946, -0.027753427624702454, 0.0900460034608841, 0.10029840469360352, 0.14700989425182343, 0.04578249529004097, -0.03974141925573349, 0.05844113975763321, 0.06928761303424835, 0.15504837036132812, -0.14353682100772858, 0.05482476204633713, -0.04279126971960068, 0.006426102947443724, -0.15003101527690887, 0.05380073934793472, -0.10382532328367233, -0.08488288521766663, -0.024082330986857414, -0.1716831922531128, 0.12731994688510895, 0.03346104919910431, -0.1730029284954071, -0.05745832994580269, -0.07605268806219101, 0.2645893692970276, -0.08724100142717361, 0.03101837821304798, 0.06451193988323212, -0.0373946875333786, 0.00970517285168171, -0.15747159719467163, -0.027738070115447044, 0.11997875571250916, 0.006170241162180901, -0.038246795535087585, -0.07348445057868958, -0.023542454466223717, -0.019127460196614265, 0.1143878772854805, -0.14460189640522003, 0.08612833172082901, -0.14512871205806732, -0.3111313283443451, 0.10651517659425735, -0.004964787978678942, -0.05836793780326843, 0.0015283203683793545, 0.08037460595369339, 0.026185622438788414, 0.057477425783872604, -0.04686634987592697, 0.11057148873806, -0.07879504561424255, -0.02106156386435032, -0.06536109745502472, 0.07349281013011932, -0.22597095370292664, -0.022423457354307175, -0.09144378453493118, -0.045160774141550064, -0.018168818205595016, -0.02313668467104435, -0.10262241214513779, 0.0813126191496849, -0.09111768752336502, 0.00838960986584425, -0.10349076241254807, 0.039722979068756104, -0.0399017408490181, 0.17479516565799713, -0.25388291478157043, -0.04679594188928604, 0.021185293793678284, -0.16453945636749268, -0.11228940635919571, -0.02049832046031952, -0.047596778720617294, 0.037866316735744476, 0.051669999957084656, 0.2118186205625534, 0.08105434477329254, 0.10587440431118011, -0.01086373534053564, 0.19484055042266846, -0.19348877668380737, -0.3254295289516449, 0.10324785113334656, -0.02231442928314209, -0.23070648312568665, 0.009689352475106716, 0.16806580126285553, -0.01388564147055149, -0.08072860538959503, -0.029743336141109467, -0.0101364366710186, -0.10840549319982529, 0.021731458604335785, 0.020172899588942528, 0.014614867977797985, -0.03671429306268692, 0.1258932501077652, 0.026732783764600754, 0.08522961288690567, 0.04511696845293045, -0.03480655699968338, -0.02518756128847599, 0.06034116819500923, -0.11317525804042816, -0.03271752968430519, -0.1256837099790573, -0.11476253718137741, 0.022365015000104904, 0.0049767885357141495, -0.053386468440294266, 0.06966324895620346, 0.13558058440685272, -0.09844004362821579, 0.010125533677637577, 0.10739101469516754, 0.13168369233608246, 0.0453619509935379, -0.04398280009627342, -0.03620900958776474, -0.04756663367152214, -0.10096792876720428, -0.008825513534247875, -0.10249160975217819, -0.038601115345954895, 0.22656983137130737, -0.01931018754839897, -0.001122640329413116, -0.013687903061509132, 0.0528997927904129, -0.09858539700508118, 0.007533909287303686, -0.04791438207030296, 0.013020510785281658, -0.004805214237421751, -0.03312760964035988, 0.09337158501148224, 0.0016424083150923252, 0.10438995063304901, 0.05112855136394501, 0.15233711898326874, 0.057562317699193954, -0.061383191496133804, -0.022450147196650505, -0.007220851257443428, -0.04871773719787598, 0.018548043444752693, -0.13931813836097717, -0.07223088294267654, 0.019958069548010826, -0.031128281727433205, 0.01841176114976406, 0.030444543808698654, 0.03566529229283333, -0.0636754035949707, 0.0921221524477005, 0.08877964317798615, -0.11700794100761414, 0.11317744851112366, 0.17508089542388916, 0.1341196447610855, 0.08775795251131058, -0.05718539282679558, -0.07858269661664963, 0.066053107380867, -0.1511867195367813, -0.017523614689707756, 0.21716919541358948, 0.08399537950754166, 0.07939692586660385, 0.14907777309417725, 0.01786726713180542, 0.06943775713443756, -0.052726469933986664, -0.09902618080377579, 0.05995790660381317, 0.041443273425102234, -0.1264907419681549, 0.062149133533239365, 0.000039564372855238616, 0.09533169865608215, 0.01088758371770382, -0.0774029940366745, 0.15170924365520477, -0.0020741932094097137, -0.0033581405878067017, 0.1133633628487587, -0.10063495486974716, -0.28645598888397217, -0.04247642681002617, -0.02250395528972149, 0.07849720120429993, 0.01853771135210991, -0.007864048704504967, -0.11259442567825317, -0.05218452587723732, -0.03698965162038803, -0.035284820944070816, -0.13067090511322021, 0.010670364834368229, 0.05749664455652237, -0.026861488819122314, -0.0705215260386467, -0.12196339666843414, 0.050880007445812225, -0.014221405610442162, 0.04412189498543739, 0.10189375281333923, -0.047130391001701355, 0.08142715692520142, 0.13720674812793732, 0.009194123558700085, 0.07450351864099503, -0.013437291607260704, 0.040320441126823425, -0.02492816187441349, 0.016688697040081024, 0.13139604032039642, -0.015602710656821728, -0.03686320781707764, 0.04255872592329979, 0.12607496976852417, -0.1254228949546814, -0.06243852525949478, -0.04569292441010475, -0.19063842296600342, -0.22812461853027344, -0.14269572496414185, -0.03821109980344772, 0.12221887707710266, 0.08092865347862244, 0.11360492557287216, -0.07576111704111099, 0.11200101673603058, 0.08607517182826996, -0.10385216027498245, -0.1361578404903412, -0.020317411050200462, -0.09757190942764282, 0.04002619907259941, -0.009293979033827782, -0.17440328001976013, 0.054337840527296066, 0.188232421875, 0.09519215673208237, 0.14234718680381775, 0.07254330813884735, 0.1572595238685608, -0.04733416065573692, 0.0634416788816452, 0.13175959885120392, 0.20056791603565216, 0.10942638665437698, -0.035048823803663254, 0.022297831252217293, 0.05208117887377739, 0.005627193953841925, -0.07419133186340332, 0.03842560201883316, -0.024637766182422638, -0.013533578254282475, -0.12232042104005814, -0.04017045348882675, 0.02800183929502964, 0.08819012343883514, -0.22333769500255585, -0.029633359983563423, 0.02244045026600361, 0.06789927184581757, -0.07770980149507523, 0.07932807505130768, 0.12970289587974548, -0.009793711826205254, 0.06336482614278793, -0.009688359685242176, 0.03749869018793106, -0.025584183633327484, -0.019655130803585052, -0.032038792967796326, -0.0749969631433487, -0.004152775276452303, 0.11546900123357773, 0.01891079731285572, 0.14909830689430237, 0.01383224967867136, -0.022416219115257263, -0.14462919533252716, -0.07090668380260468, -0.02078157849609852, 0.02669481746852398, 0.11980585008859634, 0.022141285240650177, -0.09123287349939346, -0.12879978120326996, -0.16718897223472595, 0.012245247140526772, 0.06332346796989441, -0.15239310264587402, -0.11955717951059341, 0.049034252762794495, 0.015726061537861824, -0.004332916811108589, -0.24909931421279907, -0.07626417279243469, -0.14743469655513763, -0.050896964967250824, 0.09995559602975845, -0.18541383743286133, -0.04273836314678192, -0.024061115458607674, -0.06052643805742264, -0.021761637181043625, 0.02919296734035015, -0.05176680535078049, -0.14531026780605316, -0.021706726402044296, 0.16279861330986023, 0.02720997855067253, 0.07338691502809525, 0.06904444098472595, 0.10494750738143921, -0.01702575758099556, -0.17233426868915558, 0.045191794633865356, -0.16858483850955963, 0.06441786140203476, -0.03492576628923416, 0.05723804607987404, 0.06427694112062454, 0.0343448780477047, 0.012559186667203903, 0.03241218253970146, -0.04361094906926155, -0.05411141738295555, 0.08180920779705048, -0.07989957183599472, 0.06894975900650024, 0.21913611888885498, 0.20240718126296997, 0.02052176184952259, 0.18957588076591492, -0.03764205798506737, 0.2039855718612671, 0.10065803676843643, -0.10777241736650467, 0.22835181653499603, 0.07677025347948074, 0.002242904854938388, -0.34763216972351074, 0.03328212723135948, -0.14797039330005646, -0.03457967936992645, 0.09888703376054764, -0.14999926090240479, 0.17723695933818817, 0.09181107580661774, -0.0732695683836937, 0.2648974657058716, -0.12570276856422424, 0.06655088067054749, 0.20646440982818604, -0.01440489012748003, 0.4120371639728546, -0.10372147709131241, -0.08099767565727234, -0.08629559725522995, -0.08178601413965225, 0.21616894006729126, -0.11850259453058243, -0.025372155010700226, -0.06255985051393509, -0.008115054108202457, -0.01577381044626236, -0.03499830141663551, 0.21755816042423248, 0.0314776711165905, 0.10748368501663208, -0.08177993446588516, -0.01398277748376131, 0.06604749709367752, -0.05452834069728851, 0.00451823603361845, 0.062417350709438324, 0.020109908655285835, -0.22784380614757538, -0.022572237998247147, 0.05406740680336952, 0.09338953346014023, 0.07948410511016846, -0.01994774304330349, -0.032856229692697525, -0.05879375338554382, -0.1368066519498825, -0.04504382982850075, 0.12678290903568268, 0.022562842816114426, -0.05881432443857193, -0.018755469471216202, 0.09509693086147308, -0.05589958280324936, -0.07524021714925766, -0.09648805856704712, -0.0689191222190857, 0.09803222864866257, -0.238484188914299, 0.04746639356017113, -0.0006149273831397295, 0.08036454021930695, -0.07557771354913712, 0.06663908809423447, 0.03958236053586006, 0.007717001251876354, 0.11591989547014236, -0.09199376404285431, -0.07337849587202072, 0.026385236531496048, 0.05007011443376541, -0.04281711205840111, 0.13714614510536194, -0.002420617500320077, 0.022535383701324463, -0.027348818257451057, -0.059011269360780716, 0.05600462108850479, -0.008011712692677975, 0.028369180858135223, 0.11182078719139099, 0.05122104659676552, -0.21045520901679993, 0.22782589495182037, 0.0178001020103693, -0.14683844149112701, 0.0039008217863738537, 0.016969595104455948, -0.04627609625458717, -0.10616987198591232, 0.09909659624099731, 0.13739342987537384, -0.05107578635215759, -0.134327694773674, 0.01748596876859665, -0.11385191231966019, 0.07591956853866577, 0.09305477142333984, 0.04795900732278824, 0.05270085856318474, -0.008274140767753124, -0.004334589466452599, -0.05243050679564476, -0.042999267578125, 0.03317246586084366, -0.018560249358415604, -0.02011503465473652, -0.252750039100647, -0.06255204230546951, 0.1381208449602127, -0.06614302843809128, -0.08102629333734512, -0.01764628104865551, 0.05078000947833061, -0.18323515355587006, 0.10567696392536163, 0.07728859782218933, 0.03932032734155655, 0.010148427449166775, 0.06638897210359573, -0.015967141836881638, -0.03510621562600136, -0.1410306990146637, 0.15169039368629456, 0.011794004589319229, 0.06522338837385178, 0.0058897207491099834, 0.01902777887880802, 0.008250436745584011, 0.03159656748175621, 0.15637525916099548, 0.13548210263252258, 0.004836565814912319, 0.021146269515156746, -0.14077472686767578, -0.13394664227962494, 0.0020953163038939238, 0.025905657559633255, 0.080149345099926, 0.1157226637005806, 0.003962360788136721, 0.0802130252122879, -0.06328663229942322, 0.014107377268373966, -0.14531488716602325, -0.07301916182041168, 0.05347196012735367, -0.09421396255493164, -0.05322977155447006, -0.004804450087249279, -0.11740751564502716, 0.15573523938655853, 0.06281118094921112, 0.007294012233614922, 0.08473856002092361, 0.029138678684830666, -0.009803267195820808, -0.07291655242443085, -0.044318750500679016, -0.10492229461669922, -0.20707540214061737, 0.14505892992019653, 0.07526497542858124, 0.003799526020884514, 0.3098479211330414, -0.024266861379146576, -0.18304374814033508, -0.06188730150461197, 0.12725798785686493, 0.015785858035087585, 0.02311248704791069, 0.3946686089038849, 0.0790136456489563, 0.00027341529494151473, 0.014593906700611115, 0.09015554189682007, 0.06508246064186096, 0.11374572664499283, 0.08220159262418747, 0.14200256764888763, -0.015359881334006786, 0.06385248899459839, -0.020173760131001472, -0.07197403162717819, 0.12735529243946075, 0.013283666223287582, -0.01575303263962269, 0.012923743575811386, 0.051082342863082886, -0.10025287419557571, 0.03195511922240257, 0.026897072792053223, -0.022585129365324974, -0.08395702391862869, -0.00913089606910944, -0.09585287421941757, -0.17070095241069794, -0.02729780226945877, -0.0636482834815979, 0.005518922116607428, -0.04844485595822334, -0.0035539078526198864, 0.3695262670516968, 0.07341507077217102, 0.04790254682302475, 0.005111603531986475, -0.06112350896000862, 0.14758513867855072, 0.05566435679793358, -0.040285974740982056, -0.06384734809398651, 0.015593771822750568, -0.10226549208164215, -0.0037713584024459124, -0.051123447716236115, -0.049662042409181595, -0.02135571464896202, 0.10978589951992035, 0.023296350613236427, -0.10733068734407425, -0.11777880042791367, -0.037633322179317474, 0.06189217045903206, -0.04301941394805908, 0.08833574503660202, 0.023346533998847008, 0.07633985579013824, 0.04583866521716118, 0.12369022518396378, -0.005622853059321642, -0.036190181970596313, 0.04601322486996651, -0.018790503963828087, -0.08605463057756424, 0.07574928551912308, 0.020587649196386337, -0.052094411104917526, -0.04563486948609352, 0.08563219010829926, 0.22114837169647217, -0.02572477050125599, 0.02356898784637451, 0.016501417383551598, 0.04173438623547554, 0.01174983475357294, 0.20451968908309937, -0.041900213807821274, 0.08480178564786911, -0.04688223823904991, -0.07863976806402206, 0.036725107580423355, -0.0061849141493439674, -0.07517829537391663, 0.1144673153758049, -0.011944910511374474, -0.059913549572229385, -0.08274533599615097, 0.16065318882465363, -0.0595841109752655, 0.08031583577394485, 0.08771119266748428, -0.03988172113895416, -0.07992517203092575, 0.005703866481781006, 0.13998405635356903, 0.022114044055342674, 0.026872150599956512, -0.08525148034095764, -0.004946249071508646, -0.0963142141699791, -0.04739547148346901, -0.3108607530593872, -0.13222293555736542, 0.07515444606542587, -0.016823263838887215, 0.19862878322601318, -0.03839875012636185, 0.1358858346939087, 0.023626210168004036, -0.00007014915172476321, -0.22097660601139069, -0.055571261793375015, 0.007461899891495705, 0.03629462420940399, 0.0223550945520401, 0.06509561836719513, -0.1013401597738266, -0.12102434784173965, 0.013619544915854931, -0.09505670517683029, -0.0598280243575573, 0.16572563350200653, 0.02819431759417057, 0.008638432249426842, -0.010657599195837975, -0.031292423605918884, 0.09506229311227798, -0.08557339757680893, -0.02665071003139019, -0.09698999673128128, 0.0346098430454731, 0.08861036598682404, 0.043334998190402985, -0.051336441189050674, -0.013843267224729061, 0.0018256682669743896, -0.08978915959596634, -0.0546182245016098, 0.035722143948078156, -0.09971699863672256, 0.024883894249796867, -0.12453917413949966, 0.02268165349960327, 0.016881199553608894, 0.010066401213407516, 0.152558371424675, 0.0066886963322758675, -0.03906109929084778, 0.18753181397914886, 0.01582496426999569, 0.014276755973696709, -0.0264890119433403, -0.0638505071401596 ]
97d809c59a90bcbed1a3300328d5f9984ac85d3e
# Dataset Card for "poetry-instructions" A dataset of user-assistant dialogue instructions for guided poetry creation. Poems used were taken from [merve/poetry](https://huggingface.co/datasets/merve/poetry) and [matthh/gutenberg-poetry-corpus](https://huggingface.co/datasets/matthh/gutenberg-poetry-corpus). The dataset contains dialogues in the following formats: - Poetry Completion: ``` User: Can you continue this poem for me? <poem_start> Assistant: Sure, a continuation for this poem could be: <poem end> ``` - Create poem in style of (?): ``` User: Can you write a poem for me in the style of <author>? Assistant: Sure, here's a poem in the style of <author>: <poem> ``` - Creat poem about (?): ``` User: Can you write me a poem about <keywords (extracted using keyphrase model)>? Assistant: Sure, here's a poem about <keywords>: <poem> ``` - Create poem about (?) in the style of (?): ``` User: Can you write me a poem about <keywords> in the style of <author>? Assistant: Sure, here's a poem about <keywords> in the style of <author>: <poem> ```
isaacrehg/poetry-instructions
[ "region:us" ]
2023-02-07T20:41:03+00:00
{"dataset_info": {"features": [{"name": "conversation", "dtype": "string"}], "splits": [{"name": "train", "num_bytes": 87758119, "num_examples": 1322}, {"name": "validation", "num_bytes": 7731418, "num_examples": 111}, {"name": "test", "num_bytes": 27041394, "num_examples": 331}], "download_size": 63044464, "dataset_size": 122530931}}
2023-02-09T20:38:41+00:00
[]
[]
TAGS #region-us
# Dataset Card for "poetry-instructions" A dataset of user-assistant dialogue instructions for guided poetry creation. Poems used were taken from merve/poetry and matthh/gutenberg-poetry-corpus. The dataset contains dialogues in the following formats: - Poetry Completion: - Create poem in style of (?): - Creat poem about (?): - Create poem about (?) in the style of (?):
[ "# Dataset Card for \"poetry-instructions\"\n\nA dataset of user-assistant dialogue instructions for guided poetry creation.\nPoems used were taken from merve/poetry and matthh/gutenberg-poetry-corpus.\n\nThe dataset contains dialogues in the following formats:\n- Poetry Completion:\n\n- Create poem in style of (?):\n\n- Creat poem about (?):\n\n- Create poem about (?) in the style of (?):" ]
[ "TAGS\n#region-us \n", "# Dataset Card for \"poetry-instructions\"\n\nA dataset of user-assistant dialogue instructions for guided poetry creation.\nPoems used were taken from merve/poetry and matthh/gutenberg-poetry-corpus.\n\nThe dataset contains dialogues in the following formats:\n- Poetry Completion:\n\n- Create poem in style of (?):\n\n- Creat poem about (?):\n\n- Create poem about (?) in the style of (?):" ]
[ 6, 103 ]
[ "passage: TAGS\n#region-us \n# Dataset Card for \"poetry-instructions\"\n\nA dataset of user-assistant dialogue instructions for guided poetry creation.\nPoems used were taken from merve/poetry and matthh/gutenberg-poetry-corpus.\n\nThe dataset contains dialogues in the following formats:\n- Poetry Completion:\n\n- Create poem in style of (?):\n\n- Creat poem about (?):\n\n- Create poem about (?) in the style of (?):" ]
[ -0.021651767194271088, 0.2007913440465927, -0.002546288538724184, 0.07910850644111633, 0.08071478456258774, 0.08677839487791061, 0.05145717412233353, 0.05263559892773628, 0.012296615168452263, 0.021151427179574966, 0.19213011860847473, 0.07258816808462143, -0.0251996461302042, 0.0431394949555397, -0.01265746634453535, -0.1809438169002533, -0.05808114632964134, -0.06355013698339462, 0.024519743397831917, 0.08594435453414917, 0.07356186211109161, 0.007430694997310638, 0.0377923846244812, -0.08219430595636368, -0.07768572866916656, -0.010525749064981937, -0.06430729478597641, -0.0057952869683504105, 0.014184300787746906, -0.06066340208053589, 0.09222569316625595, 0.043462853878736496, -0.037166789174079895, -0.2205280065536499, 0.023173512890934944, -0.065049909055233, -0.06765826046466827, -0.03427519276738167, -0.002760577481240034, -0.2041926234960556, 0.0005515164230018854, -0.11636867374181747, 0.034155216068029404, 0.0028533570002764463, -0.11897289007902145, -0.07320287823677063, -0.01604796200990677, -0.09915463626384735, 0.08289851248264313, 0.10519243031740189, -0.004338226746767759, -0.03953574225306511, -0.04470926895737648, 0.007261434569954872, 0.010670310817658901, -0.0686740055680275, -0.04463554173707962, 0.19167247414588928, 0.030631525442004204, 0.1057606115937233, -0.1341048926115036, 0.039740145206451416, -0.007237560115754604, 0.07872859388589859, -0.010416538454592228, -0.1108347550034523, -0.004073170945048332, 0.11336109042167664, -0.07668039202690125, -0.082057885825634, 0.4292411804199219, -0.05718924105167389, -0.051829855889081955, 0.006965667940676212, -0.002949206857010722, 0.03923008218407631, -0.07419885694980621, 0.067859947681427, -0.022775692865252495, 0.012697804719209671, -0.0012554207351058722, -0.11787980049848557, -0.2025579810142517, -0.07306728512048721, 0.06228409335017204, -0.0988694503903389, -0.04513513669371605, 0.00604124553501606, -0.11429531872272491, 0.05222155898809433, -0.06675991415977478, -0.015446823090314865, -0.02280288003385067, -0.10233701020479202, -0.009217713959515095, 0.04866364598274231, -0.10229530185461044, -0.11667347699403763, 0.06242990866303444, 0.13345880806446075, 0.3127347528934479, 0.06646309792995453, 0.09293504059314728, 0.0484372116625309, 0.14346635341644287, -0.03996926173567772, 0.18583302199840546, 0.03322895988821983, -0.06535118073225021, 0.0012512902030721307, -0.001124883652664721, -0.04649314656853676, -0.12431906908750534, 0.04566965997219086, -0.06663302332162857, 0.06324611604213715, 0.012694968841969967, -0.01596798561513424, -0.06160583347082138, -0.000014150399692880455, 0.1293700635433197, -0.045547567307949066, -0.026020066812634468, 0.0028118034824728966, -0.008199885487556458, -0.025173570960760117, 0.005387729965150356, -0.025925099849700928, -0.013608076609671116, 0.038642123341560364, -0.032677896320819855, -0.04805116727948189, -0.04210318624973297, -0.0333978570997715, 0.04525817558169365, -0.0960315465927124, 0.049713511019945145, -0.12169720977544785, -0.23152808845043182, -0.044496793299913406, 0.1595384180545807, -0.07617069035768509, 0.030254309996962547, -0.1422717571258545, 0.0415959358215332, 0.025521287694573402, -0.0007539467769674957, 0.05929800495505333, -0.025556959211826324, 0.06747544556856155, -0.10615965723991394, 0.1026519164443016, -0.21009014546871185, 0.05594126880168915, -0.08385424315929413, 0.010970748029649258, 0.05566636472940445, 0.08496219664812088, -0.025348780676722527, -0.034715935587882996, -0.0218365378677845, 0.08067133277654648, -0.006830870173871517, -0.002919960767030716, -0.01909727044403553, 0.22998709976673126, -0.29741013050079346, 0.0009876069379970431, 0.03924309089779854, -0.010099864564836025, -0.07909107953310013, 0.10422614961862564, -0.08977275341749191, 0.24109335243701935, 0.11172934621572495, 0.3069674074649811, 0.0783340260386467, -0.046151891350746155, 0.07905503362417221, 0.10951527208089828, 0.016022847965359688, -0.13275881111621857, 0.05461224168539047, -0.00040743598947301507, -0.006534254644066095, 0.057217977941036224, 0.09322969615459442, -0.07264900207519531, 0.008988850750029087, -0.07731668651103973, -0.0029649275820702314, -0.0480370819568634, 0.05089329928159714, -0.03551564738154411, -0.0019390848465263844, -0.08473741263151169, 0.01821245811879635, -0.03131319582462311, 0.03360624983906746, -0.03530123829841614, 0.056816112250089645, 0.06387317180633545, 0.05758313462138176, 0.07179215550422668, 0.03397003188729286, -0.09483892470598221, -0.011394412256777287, -0.015358839184045792, 0.09433166682720184, 0.058747559785842896, 0.016488730907440186, 0.04636846110224724, -0.012664816342294216, -0.005211948417127132, 0.1271163523197174, 0.028100106865167618, -0.02503061480820179, -0.1080724447965622, -0.03571409732103348, 0.041406627744436264, -0.11847462505102158, 0.0717809647321701, -0.16615808010101318, -0.013104163110256195, 0.07033563405275345, -0.07876662909984589, 0.025740312412381172, -0.03470952808856964, 0.10145725309848785, 0.031619586050510406, -0.022969886660575867, 0.061103031039237976, 0.0798223689198494, 0.03802252933382988, -0.08321836590766907, 0.09482821077108383, -0.07820799201726913, -0.20550452172756195, 0.12368404120206833, -0.11730965226888657, 0.007567123509943485, -0.10536278039216995, 0.03501059114933014, -0.004538463894277811, 0.06553072482347488, -0.00819462351500988, -0.024693556129932404, -0.00801169965416193, 0.08978209644556046, -0.05663524940609932, -0.013633259572088718, -0.023902766406536102, -0.10081134736537933, -0.09334901720285416, 0.17959976196289062, 0.00044662432628683746, 0.01956801488995552, 0.1191641315817833, 0.1985277682542801, -0.04427612945437431, 0.27829432487487793, 0.035937290638685226, -0.039586421102285385, -0.03891953453421593, -0.005749959032982588, -0.05839671567082405, 0.13743746280670166, -0.16106627881526947, 0.01042016502469778, 0.055734917521476746, -0.017116369679570198, 0.09691440314054489, -0.14174602925777435, -0.1405196338891983, -0.030166208744049072, -0.024070262908935547, -0.08017090708017349, 0.05021114647388458, -0.03963703662157059, 0.00030239400803111494, 0.030262252315878868, 0.037797003984451294, 0.09285829216241837, -0.04629237577319145, -0.0724254846572876, 0.10244622826576233, -0.17838667333126068, -0.27506986260414124, -0.07100540399551392, -0.08990556746721268, 0.07570865750312805, 0.061536602675914764, 0.06671429425477982, -0.14819636940956116, -0.008161060512065887, -0.08708545565605164, -0.045164819806814194, -0.16477812826633453, -0.16113640367984772, -0.114838145673275, 0.052241381257772446, -0.15924201905727386, -0.03963698074221611, 0.017869984731078148, -0.03804919123649597, 0.10011633485555649, 0.12050595879554749, -0.15782013535499573, 0.14660654962062836, 0.10142136365175247, 0.10828718543052673, -0.02017197571694851, -0.03660771995782852, 0.21010535955429077, -0.01888985186815262, 0.00514238141477108, 0.018589787185192108, -0.016616471111774445, 0.06260902434587479, 0.09947255253791809, 0.008643735200166702, -0.11519579589366913, 0.04761043190956116, -0.03242478147149086, -0.13214454054832458, -0.22727061808109283, -0.10810640454292297, -0.12080162018537521, 0.097560815513134, 0.01646944135427475, 0.08532795310020447, -0.1264975666999817, 0.09833782911300659, 0.09350913763046265, 0.012284064665436745, -0.05732643976807594, 0.07974128425121307, 0.11312877386808395, -0.04524204134941101, -0.022858284413814545, -0.11227893084287643, 0.06750272959470749, 0.10515695810317993, 0.17696651816368103, 0.16263505816459656, 0.11853406578302383, 0.3117349445819855, 0.0738840103149414, 0.14550846815109253, 0.05116848275065422, -0.01624736562371254, 0.05635562166571617, 0.05190982669591904, -0.08305142819881439, -0.069593146443367, -0.10092739760875702, 0.1111694797873497, 0.02463044598698616, -0.23193402588367462, 0.012370893731713295, -0.053961608558893204, 0.03050469234585762, -0.09508033841848373, 0.10588390380144119, -0.0743509903550148, 0.05793797969818115, 0.1200561672449112, 0.10446923226118088, -0.035268545150756836, 0.08440279960632324, 0.09903711825609207, -0.058460574597120285, -0.04223344847559929, -0.0474250465631485, 0.08656500279903412, -0.10658236593008041, -0.0009851058712229133, -0.07578455656766891, -0.12189386785030365, 0.014622436836361885, 0.0809367448091507, -0.24468518793582916, 0.21836106479167938, 0.047843389213085175, -0.03165258839726448, -0.0541241392493248, -0.10326770693063736, -0.0502585731446743, -0.09782058000564575, 0.17035232484340668, 0.019936656579375267, -0.09552442282438278, 0.018027108162641525, -0.00955816637724638, 0.08095313608646393, 0.15205876529216766, -0.09300364553928375, -0.014832325279712677, 0.06230813264846802, 0.01156188640743494, -0.05055958405137062, -0.053625356405973434, -0.08353286236524582, -0.28459683060646057, -0.00966491550207138, 0.13164392113685608, -0.06871281564235687, 0.064228855073452, 0.007996341213583946, 0.10026495158672333, 0.047418758273124695, 0.03645092621445656, -0.0906120091676712, -0.03351545333862305, -0.13602124154567719, 0.012624388560652733, -0.008026150986552238, 0.04865732789039612, -0.056286007165908813, -0.08987323939800262, -0.08120263367891312, -0.10373223572969437, 0.007351450622081757, -0.06335338205099106, 0.10969118028879166, -0.07194476574659348, 0.17718569934368134, 0.12538692355155945, 0.04467140510678291, -0.011651141569018364, 0.05526469647884369, -0.14267447590827942, -0.07204528898000717, 0.1119653657078743, -0.16070051491260529, 0.007413096260279417, 0.07580829411745071, -0.08142885565757751, -0.07753521203994751, -0.02713369019329548, -0.07688310742378235, 0.22467714548110962, 0.14897421002388, -0.01672629825770855, 0.21437932550907135, 0.2613772749900818, -0.1456645429134369, -0.2743619680404663, -0.06342297047376633, -0.09318231791257858, 0.007051344960927963, -0.05737171694636345, -0.3779860734939575, -0.11102206259965897, -0.024072883650660515, 0.0017524304566904902, 0.19641442596912384, -0.23485133051872253, -0.0787855014204979, 0.10908430814743042, 0.04233279824256897, 0.22342368960380554, -0.12252050638198853, -0.08834603428840637, -0.07555127143859863, -0.1359964907169342, 0.20605319738388062, 0.004923975560814142, 0.1467367708683014, -0.01578197255730629, 0.20226238667964935, -0.04718639701604843, -0.009644541889429092, 0.18710985779762268, 0.12714914977550507, 0.07598112523555756, -0.03286978602409363, -0.06749336421489716, 0.06526096165180206, -0.04627106338739395, 0.013950657099485397, -0.08372022211551666, -0.009983949363231659, -0.17399290204048157, -0.06120302900671959, -0.10509908199310303, -0.0847030058503151, -0.005211028270423412, -0.12501440942287445, -0.05960104987025261, 0.04916561767458916, -0.07242938131093979, 0.0063418797217309475, -0.032786425203084946, -0.05491301417350769, -0.032206546515226364, 0.08288050442934036, 0.05985205993056297, 0.10190124064683914, -0.10475552082061768, -0.016708500683307648, -0.04830136522650719, 0.0609295517206192, -0.23896357417106628, -0.07056410610675812, 0.08773557841777802, 0.04374212771654129, 0.09758951514959335, 0.0022055869922041893, -0.10529880225658417, 0.0660381093621254, 0.07885640859603882, -0.20170575380325317, -0.15280669927597046, -0.005742405541241169, -0.16662943363189697, 0.0008327271207235754, -0.09902346134185791, 0.08284886181354523, 0.032437559217214584, 0.01056594680994749, -0.01412973739206791, 0.013445569202303886, 0.03822072595357895, 0.025145817548036575, 0.07949021458625793, 0.009915802627801895, -0.0464153029024601, 0.08799489587545395, 0.04181753098964691, -0.17202411592006683, 0.046116456389427185, 0.17735935747623444, -0.0656590610742569, -0.09179581701755524, -0.07673517614603043, 0.09944456070661545, -0.051395345479249954, 0.011470206081867218, 0.038988519459962845, 0.033841636031866074, 0.03010036237537861, 0.11741619557142258, 0.09330878406763077, 0.027528749778866768, 0.004741215147078037, -0.027077099308371544, -0.0014371710130944848, 0.032457105815410614, 0.03222896531224251, -0.07761968672275543, 0.026700899004936218, -0.20110397040843964, -0.020994633436203003, 0.0915331095457077, -0.042743582278490067, -0.13846811652183533, -0.12342078238725662, 0.05882097780704498, -0.1524118185043335, 0.09984195232391357, -0.09167689830064774, -0.032868314534425735, -0.02860078401863575, 0.09584847092628479, -0.062353599816560745, -0.075204037129879, -0.10064097493886948, -0.0021345708519220352, 0.0007052951259538531, 0.048435844480991364, -0.04783964157104492, -0.04577259719371796, 0.0593421496450901, 0.000565638008993119, 0.03055666945874691, 0.08324258029460907, -0.10049055516719818, 0.09024526178836823, -0.3536562919616699, 0.02299814485013485, 0.020149704068899155, 0.029049240052700043, -0.002617513295263052, 0.0290055051445961, -0.09982753545045853, 0.004460679367184639, 0.0911002904176712, 0.04430130869150162, 0.11453820019960403, -0.1048155426979065, 0.032328151166439056, 0.04952825978398323, -0.11243367195129395, -0.05433075875043869, -0.033035919070243835, 0.028768619522452354, 0.046539586037397385, 0.0704532116651535, -0.005952824838459492, 0.10822735726833344, 0.009725662879645824, 0.02391383983194828, 0.029975486919283867, -0.0333331860601902, -0.192453533411026, -0.04640282690525055, -0.008340192027390003, -0.049469977617263794, 0.14988520741462708, -0.03114781528711319, -0.2160215526819229, 0.022582653909921646, 0.1022142618894577, 0.020861927419900894, -0.016557659953832626, 0.06932833045721054, 0.12739156186580658, -0.09327562898397446, -0.07187912613153458, 0.06164795532822609, 0.04959704354405403, 0.14922204613685608, 0.10506705939769745, 0.09995278716087341, 0.3157914876937866, 0.1273736208677292, -0.044386036694049835, 0.0596744567155838, 0.07433892041444778, 0.08484584093093872, 0.05224829167127609, 0.12778712809085846, -0.0547785758972168, 0.03806816041469574, 0.05604357272386551, -0.04026728495955467, 0.06022284924983978, -0.05624091997742653, -0.11316841840744019, -0.03381487354636192, -0.2829636335372925, -0.021872088313102722, 0.04558387026190758, -0.027938764542341232, -0.002488482277840376, 0.013495623134076595, 0.23213358223438263, 0.0447998009622097, 0.004996295552700758, 0.05732939764857292, 0.04421929270029068, -0.06323373317718506, 0.12087446451187134, -0.07994313538074493, 0.009388448670506477, -0.010823918506503105, -0.00938322301954031, -0.025633733719587326, -0.03789602592587471, -0.0207753274589777, 0.10684841126203537, 0.1007324829697609, 0.00849844142794609, -0.14193099737167358, -0.05832495912909508, -0.096912682056427, 0.1460297405719757, 0.05137727037072182, 0.19802744686603546, 0.024950264021754265, -0.04572887718677521, 0.0831604078412056, 0.14411252737045288, 0.0723365768790245, 0.03694158047437668, -0.05296395719051361, 0.016583969816565514, -0.09144429117441177, -0.00911168847233057, 0.029701897874474525, -0.02903865836560726, -0.01698973774909973, 0.20545779168605804, 0.3775172233581543, -0.07445463538169861, -0.037781454622745514, -0.02286710776388645, 0.05584686994552612, 0.053221505135297775, 0.1379399448633194, 0.01606745459139347, 0.19400440156459808, -0.09546985477209091, -0.12284760177135468, -0.0990065410733223, -0.06509210169315338, -0.037123434245586395, 0.08327091485261917, 0.09414751082658768, -0.02012348361313343, -0.06798052042722702, 0.14791220426559448, -0.25860151648521423, 0.03189559653401375, -0.03176160156726837, -0.09652606397867203, -0.08997642248868942, 0.011345654726028442, 0.09406561404466629, 0.0032041294034570456, 0.07291381061077118, -0.03853807598352432, -0.03751138225197792, 0.013412166386842728, -0.02804897539317608, -0.23163047432899475, -0.010023767128586769, 0.13240933418273926, -0.04192246124148369, 0.05882253870368004, -0.00299131590873003, 0.081673264503479, 0.04045470431447029, 0.037917543202638626, 0.0036878292448818684, 0.062389153987169266, 0.10172764956951141, 0.081202931702137, -0.03369532898068428, 0.10438802093267441, -0.041660748422145844, 0.11044912785291672, 0.057389114052057266, 0.08722788840532303, 0.04340018704533577, 0.17493626475334167, 0.014562511816620827, -0.05079466104507446, 0.04695015028119087, -0.19367589056491852, 0.03098992630839348, 0.08075989782810211, 0.01957673951983452, -0.014200083911418915, 0.05819447338581085, -0.018646612763404846, -0.10828876495361328, -0.15155117213726044, -0.020014824345707893, 0.014828190207481384, -0.04893979802727699, 0.12491422891616821, -0.03609062731266022, -0.3786102533340454, -0.007314687129110098, -0.054638538509607315, 0.08633999526500702, 0.0011140616843476892, 0.11608003824949265, 0.007152399979531765, 0.025598447769880295, -0.037964656949043274, 0.041185956448316574, 0.041399769484996796, -0.054953161627054214, -0.03953394666314125, -0.11317755281925201 ]
63b44d107785f60e8ec9cc15e3138fc70ab53f34
# Dataset Card for "cord-v2-custom" [More Information needed](https://github.com/huggingface/datasets/blob/main/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
Nyaaneet/cord-v2-custom
[ "region:us" ]
2023-02-07T21:03:06+00:00
{"dataset_info": {"features": [{"name": "image", "dtype": "image"}, {"name": "original_label", "struct": [{"name": "meta", "struct": [{"name": "image_id", "dtype": "int64"}, {"name": "image_size", "struct": [{"name": "width", "dtype": "int64"}, {"name": "height", "dtype": "int64"}]}]}, {"name": "valid_line", "list": [{"name": "words", "list": [{"name": "quad", "struct": [{"name": "x2", "dtype": "int64"}, {"name": "y3", "dtype": "int64"}, {"name": "x3", "dtype": "int64"}, {"name": "y4", "dtype": "int64"}, {"name": "x1", "dtype": "int64"}, {"name": "y1", "dtype": "int64"}, {"name": "x4", "dtype": "int64"}, {"name": "y2", "dtype": "int64"}]}, {"name": "is_key", "dtype": "int64"}, {"name": "row_id", "dtype": "int64"}, {"name": "text", "dtype": "string"}]}, {"name": "category", "dtype": "string"}, {"name": "group_id", "dtype": "int64"}, {"name": "sub_group_id", "dtype": "int64"}]}, {"name": "roi", "struct": [{"name": "x2", "dtype": "int64"}, {"name": "y3", "dtype": "int64"}, {"name": "x3", "dtype": "int64"}, {"name": "y4", "dtype": "int64"}, {"name": "x1", "dtype": "int64"}, {"name": "y1", "dtype": "int64"}, {"name": "x4", "dtype": "int64"}, {"name": "y2", "dtype": "int64"}]}, {"name": "repeating_symbol", "list": {"list": [{"name": "quad", "struct": [{"name": "x2", "dtype": "int64"}, {"name": "y3", "dtype": "int64"}, {"name": "x3", "dtype": "int64"}, {"name": "y4", "dtype": "int64"}, {"name": "x1", "dtype": "int64"}, {"name": "y1", "dtype": "int64"}, {"name": "x4", "dtype": "int64"}, {"name": "y2", "dtype": "int64"}]}, {"name": "text", "dtype": "string"}]}}, {"name": "dontcare", "list": {"list": [{"name": "x2", "dtype": "int64"}, {"name": "y3", "dtype": "int64"}, {"name": "x3", "dtype": "int64"}, {"name": "y4", "dtype": "int64"}, {"name": "x1", "dtype": "int64"}, {"name": "y1", "dtype": "int64"}, {"name": "x4", "dtype": "int64"}, {"name": "y2", "dtype": "int64"}]}}, {"name": "bboxes", "struct": [{"name": "3", "struct": [{"name": "quad", "struct": [{"name": "xmin", "dtype": "int64"}, {"name": "ymin", "dtype": "int64"}, {"name": "xmax", "dtype": "int64"}, {"name": "ymax", "dtype": "int64"}]}, {"name": "group_id", "dtype": "int64"}, {"name": "category", "dtype": "string"}, {"name": "text", "dtype": "string"}]}, {"name": "4", "struct": [{"name": "quad", "struct": [{"name": "xmin", "dtype": "int64"}, {"name": "ymin", "dtype": "int64"}, {"name": "xmax", "dtype": "int64"}, {"name": "ymax", "dtype": "int64"}]}, {"name": "group_id", "dtype": "int64"}, {"name": "category", "dtype": "string"}, {"name": "text", "dtype": "string"}]}, {"name": "5", "struct": [{"name": "quad", "struct": [{"name": "xmin", "dtype": "int64"}, {"name": "ymin", "dtype": "int64"}, {"name": "xmax", "dtype": "int64"}, {"name": "ymax", "dtype": "int64"}]}, {"name": "group_id", "dtype": "int64"}, {"name": "category", "dtype": "string"}, {"name": "text", "dtype": "string"}]}, {"name": "6", "struct": [{"name": "quad", "struct": [{"name": "xmin", "dtype": "int64"}, {"name": "ymin", "dtype": "int64"}, {"name": "xmax", "dtype": "int64"}, {"name": "ymax", "dtype": "int64"}]}, {"name": "group_id", "dtype": "int64"}, {"name": "category", "dtype": "string"}, {"name": "text", "dtype": "string"}]}, {"name": "7", "struct": [{"name": "quad", "struct": [{"name": "xmin", "dtype": "int64"}, {"name": "ymin", "dtype": "int64"}, {"name": "xmax", "dtype": "int64"}, {"name": "ymax", "dtype": "int64"}]}, {"name": "group_id", "dtype": "int64"}, {"name": "category", "dtype": "string"}, {"name": "text", "dtype": "string"}]}, {"name": "8", "struct": [{"name": "quad", "struct": [{"name": "xmin", "dtype": "int64"}, {"name": "ymin", "dtype": "int64"}, {"name": "xmax", "dtype": "int64"}, {"name": "ymax", "dtype": "int64"}]}, {"name": "group_id", "dtype": "int64"}, {"name": "category", "dtype": "string"}, {"name": "text", "dtype": "string"}]}, {"name": "9", "struct": [{"name": "quad", "struct": [{"name": "xmin", "dtype": "int64"}, {"name": "ymin", "dtype": "int64"}, {"name": "xmax", "dtype": "int64"}, {"name": "ymax", "dtype": "int64"}]}, {"name": "group_id", "dtype": "int64"}, {"name": "category", "dtype": "string"}, {"name": "text", "dtype": "string"}]}, {"name": "10", "struct": [{"name": "quad", "struct": [{"name": "xmin", "dtype": "int64"}, {"name": "ymin", "dtype": "int64"}, {"name": "xmax", "dtype": "int64"}, {"name": "ymax", "dtype": "int64"}]}, {"name": "group_id", "dtype": "int64"}, {"name": "category", "dtype": "string"}, {"name": "text", "dtype": "string"}]}, {"name": "11", "struct": [{"name": "quad", "struct": [{"name": "xmin", "dtype": "int64"}, {"name": "ymin", "dtype": "int64"}, {"name": "xmax", "dtype": "int64"}, {"name": "ymax", "dtype": "int64"}]}, {"name": "group_id", "dtype": "int64"}, {"name": "category", "dtype": "string"}, {"name": "text", "dtype": "string"}]}, {"name": "12", "struct": [{"name": "quad", "struct": [{"name": "xmin", "dtype": "int64"}, {"name": "ymin", "dtype": "int64"}, {"name": "xmax", "dtype": "int64"}, {"name": "ymax", "dtype": "int64"}]}, {"name": "group_id", "dtype": "int64"}, {"name": "category", "dtype": "string"}, {"name": "text", "dtype": "string"}]}, {"name": "13", "struct": [{"name": "quad", "struct": [{"name": "xmin", "dtype": "int64"}, {"name": "ymin", "dtype": "int64"}, {"name": "xmax", "dtype": "int64"}, {"name": "ymax", "dtype": "int64"}]}, {"name": "group_id", "dtype": "int64"}, {"name": "category", "dtype": "string"}, {"name": "text", "dtype": "string"}]}, {"name": "14", "struct": [{"name": "quad", "struct": [{"name": "xmin", "dtype": "int64"}, {"name": "ymin", "dtype": "int64"}, {"name": "xmax", "dtype": "int64"}, {"name": "ymax", "dtype": "int64"}]}, {"name": "group_id", "dtype": "int64"}, {"name": "category", "dtype": "string"}, {"name": "text", "dtype": "string"}]}, {"name": "15", "struct": [{"name": "quad", "struct": [{"name": "xmin", "dtype": "int64"}, {"name": "ymin", "dtype": "int64"}, {"name": "xmax", "dtype": "int64"}, {"name": "ymax", "dtype": "int64"}]}, {"name": "group_id", "dtype": "int64"}, {"name": "category", "dtype": "string"}, {"name": "text", "dtype": "string"}]}, {"name": "16", "struct": [{"name": "quad", "struct": [{"name": "xmin", "dtype": "int64"}, {"name": "ymin", "dtype": "int64"}, {"name": "xmax", "dtype": "int64"}, {"name": "ymax", "dtype": "int64"}]}, {"name": "group_id", "dtype": "int64"}, {"name": "category", "dtype": "string"}, {"name": "text", "dtype": "string"}]}, {"name": "17", "struct": [{"name": "quad", "struct": [{"name": "xmin", "dtype": "int64"}, {"name": "ymin", "dtype": "int64"}, {"name": "xmax", "dtype": "int64"}, {"name": "ymax", "dtype": "int64"}]}, {"name": "group_id", "dtype": "int64"}, {"name": "category", "dtype": "string"}, {"name": "text", "dtype": "string"}]}, {"name": "18", "struct": [{"name": "quad", "struct": [{"name": "xmin", "dtype": "int64"}, {"name": "ymin", "dtype": "int64"}, {"name": "xmax", "dtype": "int64"}, {"name": "ymax", "dtype": "int64"}]}, {"name": "group_id", "dtype": "int64"}, {"name": "category", "dtype": "string"}, {"name": "text", "dtype": "string"}]}, {"name": "19", "struct": [{"name": "quad", "struct": [{"name": "xmin", "dtype": "int64"}, {"name": "ymin", "dtype": "int64"}, {"name": "xmax", "dtype": "int64"}, {"name": "ymax", "dtype": "int64"}]}, {"name": "group_id", "dtype": "int64"}, {"name": "category", "dtype": "string"}, {"name": "text", "dtype": "string"}]}, {"name": "20", "struct": [{"name": "quad", "struct": [{"name": "xmin", "dtype": "int64"}, {"name": "ymin", "dtype": "int64"}, {"name": "xmax", "dtype": "int64"}, {"name": "ymax", "dtype": "int64"}]}, {"name": "group_id", "dtype": "int64"}, {"name": "category", "dtype": "string"}, {"name": "text", "dtype": "string"}]}, {"name": "21", "struct": [{"name": "quad", "struct": [{"name": "xmin", "dtype": "int64"}, {"name": "ymin", "dtype": "int64"}, {"name": "xmax", "dtype": "int64"}, {"name": "ymax", "dtype": "int64"}]}, {"name": "group_id", "dtype": "int64"}, {"name": "category", "dtype": "string"}, {"name": "text", "dtype": "string"}]}, {"name": "22", "struct": [{"name": "quad", "struct": [{"name": "xmin", "dtype": "int64"}, {"name": "ymin", "dtype": "int64"}, {"name": "xmax", "dtype": "int64"}, {"name": "ymax", "dtype": "int64"}]}, {"name": "group_id", "dtype": "int64"}, {"name": "category", "dtype": "string"}, {"name": "text", "dtype": "string"}]}, {"name": "23", "struct": [{"name": "quad", "struct": [{"name": "xmin", "dtype": "int64"}, {"name": "ymin", "dtype": "int64"}, {"name": "xmax", "dtype": "int64"}, {"name": "ymax", "dtype": "int64"}]}, {"name": "group_id", "dtype": "int64"}, {"name": "category", "dtype": "string"}, {"name": "text", "dtype": "string"}]}, {"name": "24", "struct": [{"name": "quad", "struct": [{"name": "xmin", "dtype": "int64"}, {"name": "ymin", "dtype": "int64"}, {"name": "xmax", "dtype": "int64"}, {"name": "ymax", "dtype": "int64"}]}, {"name": "group_id", "dtype": "int64"}, {"name": "category", "dtype": "string"}, {"name": "text", "dtype": "string"}]}, {"name": "25", "struct": [{"name": "quad", "struct": [{"name": "xmin", "dtype": "int64"}, {"name": "ymin", "dtype": "int64"}, {"name": "xmax", "dtype": "int64"}, {"name": "ymax", "dtype": "int64"}]}, {"name": "group_id", "dtype": "int64"}, {"name": "category", "dtype": "string"}, {"name": "text", "dtype": "string"}]}, {"name": "26", "struct": [{"name": "quad", "struct": [{"name": "xmin", "dtype": "int64"}, {"name": "ymin", "dtype": "int64"}, {"name": "xmax", "dtype": "int64"}, {"name": "ymax", "dtype": "int64"}]}, {"name": "group_id", "dtype": "int64"}, {"name": "category", "dtype": "string"}, {"name": "text", "dtype": "string"}]}, {"name": "32", "struct": [{"name": "quad", "struct": [{"name": "xmin", "dtype": "int64"}, {"name": "ymin", "dtype": "int64"}, {"name": "xmax", "dtype": "int64"}, {"name": "ymax", "dtype": "int64"}]}, {"name": "group_id", "dtype": "int64"}, {"name": "category", "dtype": "string"}, {"name": "text", "dtype": "string"}]}, {"name": "33", "struct": [{"name": "quad", "struct": [{"name": "xmin", "dtype": "int64"}, {"name": "ymin", "dtype": "int64"}, {"name": "xmax", "dtype": "int64"}, {"name": "ymax", "dtype": "int64"}]}, {"name": "group_id", "dtype": "int64"}, {"name": "category", "dtype": "string"}, {"name": "text", "dtype": "string"}]}, {"name": "34", "struct": [{"name": "quad", "struct": [{"name": "xmin", "dtype": "int64"}, {"name": "ymin", "dtype": "int64"}, {"name": "xmax", "dtype": "int64"}, {"name": "ymax", "dtype": "int64"}]}, {"name": "group_id", "dtype": "int64"}, {"name": "category", "dtype": "string"}, {"name": "text", "dtype": "string"}]}, {"name": "31", "struct": [{"name": "quad", "struct": [{"name": "xmin", "dtype": "int64"}, {"name": "ymin", "dtype": "int64"}, {"name": "xmax", "dtype": "int64"}, {"name": "ymax", "dtype": "int64"}]}, {"name": "group_id", "dtype": "int64"}, {"name": "category", "dtype": "string"}, {"name": "text", "dtype": "string"}]}, {"name": "35", "struct": [{"name": "quad", "struct": [{"name": "xmin", "dtype": "int64"}, {"name": "ymin", "dtype": "int64"}, {"name": "xmax", "dtype": "int64"}, {"name": "ymax", "dtype": "int64"}]}, {"name": "group_id", "dtype": "int64"}, {"name": "category", "dtype": "string"}, {"name": "text", "dtype": "string"}]}, {"name": "80", "struct": [{"name": "quad", "struct": [{"name": "xmin", "dtype": "int64"}, {"name": "ymin", "dtype": "int64"}, {"name": "xmax", "dtype": "int64"}, {"name": "ymax", "dtype": "int64"}]}, {"name": "group_id", "dtype": "int64"}, {"name": "category", "dtype": "string"}, {"name": "text", "dtype": "string"}]}, {"name": "50", "struct": [{"name": "quad", "struct": [{"name": "xmin", "dtype": "int64"}, {"name": "ymin", "dtype": "int64"}, {"name": "xmax", "dtype": "int64"}, {"name": "ymax", "dtype": "int64"}]}, {"name": "group_id", "dtype": "int64"}, {"name": "category", "dtype": "string"}, {"name": "text", "dtype": "string"}]}, {"name": "81", "struct": [{"name": "quad", "struct": [{"name": "xmin", "dtype": "int64"}, {"name": "ymin", "dtype": "int64"}, {"name": "xmax", "dtype": "int64"}, {"name": "ymax", "dtype": "int64"}]}, {"name": "group_id", "dtype": "int64"}, {"name": "category", "dtype": "string"}, {"name": "text", "dtype": "string"}]}, {"name": "178", "struct": [{"name": "quad", "struct": [{"name": "xmin", "dtype": "int64"}, {"name": "ymin", "dtype": "int64"}, {"name": "xmax", "dtype": "int64"}, {"name": "ymax", "dtype": "int64"}]}, {"name": "group_id", "dtype": "int64"}, {"name": "category", "dtype": "string"}, {"name": "text", "dtype": "string"}]}, {"name": "161", "struct": [{"name": "quad", "struct": [{"name": "xmin", "dtype": "int64"}, {"name": "ymin", "dtype": "int64"}, {"name": "xmax", "dtype": "int64"}, {"name": "ymax", "dtype": "int64"}]}, {"name": "group_id", "dtype": "int64"}, {"name": "category", "dtype": "string"}, {"name": "text", "dtype": "string"}]}, {"name": "167", "struct": [{"name": "quad", "struct": [{"name": "xmin", "dtype": "int64"}, {"name": "ymin", "dtype": "int64"}, {"name": "xmax", "dtype": "int64"}, {"name": "ymax", "dtype": "int64"}]}, {"name": "group_id", "dtype": "int64"}, {"name": "category", "dtype": "string"}, {"name": "text", "dtype": "string"}]}, {"name": "198", "struct": [{"name": "quad", "struct": [{"name": "xmin", "dtype": "int64"}, {"name": "ymin", "dtype": "int64"}, {"name": "xmax", "dtype": "int64"}, {"name": "ymax", "dtype": "int64"}]}, {"name": "group_id", "dtype": "int64"}, {"name": "category", "dtype": "string"}, {"name": "text", "dtype": "string"}]}, {"name": "210", "struct": [{"name": "quad", "struct": [{"name": "xmin", "dtype": "int64"}, {"name": "ymin", "dtype": "int64"}, {"name": "xmax", "dtype": "int64"}, {"name": "ymax", "dtype": "int64"}]}, {"name": "group_id", "dtype": "int64"}, {"name": "category", "dtype": "string"}, {"name": "text", "dtype": "string"}]}, {"name": "211", "struct": [{"name": "quad", "struct": [{"name": "xmin", "dtype": "int64"}, {"name": "ymin", "dtype": "int64"}, {"name": "xmax", "dtype": "int64"}, {"name": "ymax", "dtype": "int64"}]}, {"name": "group_id", "dtype": "int64"}, {"name": "category", "dtype": "string"}, {"name": "text", "dtype": "string"}]}, {"name": "212", "struct": [{"name": "quad", "struct": [{"name": "xmin", "dtype": "int64"}, {"name": "ymin", "dtype": "int64"}, {"name": "xmax", "dtype": "int64"}, {"name": "ymax", "dtype": "int64"}]}, {"name": "group_id", "dtype": "int64"}, {"name": "category", "dtype": "string"}, {"name": "text", "dtype": "string"}]}, {"name": "207", "struct": [{"name": "quad", "struct": [{"name": "xmin", "dtype": "int64"}, {"name": "ymin", "dtype": "int64"}, {"name": "xmax", "dtype": "int64"}, {"name": "ymax", "dtype": "int64"}]}, {"name": "group_id", "dtype": "int64"}, {"name": "category", "dtype": "string"}, {"name": "text", "dtype": "string"}]}, {"name": "208", "struct": [{"name": "quad", "struct": [{"name": "xmin", "dtype": "int64"}, {"name": "ymin", "dtype": "int64"}, {"name": "xmax", "dtype": "int64"}, {"name": "ymax", "dtype": "int64"}]}, {"name": "group_id", "dtype": "int64"}, {"name": "category", "dtype": "string"}, {"name": "text", "dtype": "string"}]}, {"name": "67", "struct": [{"name": "quad", "struct": [{"name": "xmin", "dtype": "int64"}, {"name": "ymin", "dtype": "int64"}, {"name": "xmax", "dtype": "int64"}, {"name": "ymax", "dtype": "int64"}]}, {"name": "group_id", "dtype": "int64"}, {"name": "category", "dtype": "string"}, {"name": "text", "dtype": "string"}]}, {"name": "68", "struct": [{"name": "quad", "struct": [{"name": "xmin", "dtype": "int64"}, {"name": "ymin", "dtype": "int64"}, {"name": "xmax", "dtype": "int64"}, {"name": "ymax", "dtype": "int64"}]}, {"name": "group_id", "dtype": "int64"}, {"name": "category", "dtype": "string"}, {"name": "text", "dtype": "string"}]}, {"name": "64", "struct": [{"name": "quad", "struct": [{"name": "xmin", "dtype": "int64"}, {"name": "ymin", "dtype": "int64"}, {"name": "xmax", "dtype": "int64"}, {"name": "ymax", "dtype": "int64"}]}, {"name": "group_id", "dtype": "int64"}, {"name": "category", "dtype": "string"}, {"name": "text", "dtype": "string"}]}, {"name": "58", "struct": [{"name": "quad", "struct": [{"name": "xmin", "dtype": "int64"}, {"name": "ymin", "dtype": "int64"}, {"name": "xmax", "dtype": "int64"}, {"name": "ymax", "dtype": "int64"}]}, {"name": "group_id", "dtype": "int64"}, {"name": "category", "dtype": "string"}, {"name": "text", "dtype": "string"}]}, {"name": "65", "struct": [{"name": "quad", "struct": [{"name": "xmin", "dtype": "int64"}, {"name": "ymin", "dtype": "int64"}, {"name": "xmax", "dtype": "int64"}, {"name": "ymax", "dtype": "int64"}]}, {"name": "group_id", "dtype": "int64"}, {"name": "category", "dtype": "string"}, {"name": "text", "dtype": "string"}]}, {"name": "179", "struct": [{"name": "quad", "struct": [{"name": "xmin", "dtype": "int64"}, {"name": "ymin", "dtype": "int64"}, {"name": "xmax", "dtype": "int64"}, {"name": "ymax", "dtype": "int64"}]}, {"name": "group_id", "dtype": "int64"}, {"name": "category", "dtype": "string"}, {"name": "text", "dtype": "string"}]}, {"name": "176", "struct": [{"name": "quad", "struct": [{"name": "xmin", "dtype": "int64"}, {"name": "ymin", "dtype": "int64"}, {"name": "xmax", "dtype": "int64"}, {"name": "ymax", "dtype": "int64"}]}, {"name": "group_id", "dtype": "int64"}, {"name": "category", "dtype": "string"}, {"name": "text", "dtype": "string"}]}, {"name": "66", "struct": [{"name": "quad", "struct": [{"name": "xmin", "dtype": "int64"}, {"name": "ymin", "dtype": "int64"}, {"name": "xmax", "dtype": "int64"}, {"name": "ymax", "dtype": "int64"}]}, {"name": "group_id", "dtype": "int64"}, {"name": "category", "dtype": "string"}, {"name": "text", "dtype": "string"}]}, {"name": "82", "struct": [{"name": "quad", "struct": [{"name": "xmin", "dtype": "int64"}, {"name": "ymin", "dtype": "int64"}, {"name": "xmax", "dtype": "int64"}, {"name": "ymax", "dtype": "int64"}]}, {"name": "group_id", "dtype": "int64"}, {"name": "category", "dtype": "string"}, {"name": "text", "dtype": "string"}]}, {"name": "83", "struct": [{"name": "quad", "struct": [{"name": "xmin", "dtype": "int64"}, {"name": "ymin", "dtype": "int64"}, {"name": "xmax", "dtype": "int64"}, {"name": "ymax", "dtype": "int64"}]}, {"name": "group_id", "dtype": "int64"}, {"name": "category", "dtype": "string"}, {"name": "text", "dtype": "string"}]}, {"name": "84", "struct": [{"name": "quad", "struct": [{"name": "xmin", "dtype": "int64"}, {"name": "ymin", "dtype": "int64"}, {"name": "xmax", "dtype": "int64"}, {"name": "ymax", "dtype": "int64"}]}, {"name": "group_id", "dtype": "int64"}, {"name": "category", "dtype": "string"}, {"name": "text", "dtype": "string"}]}, {"name": "69", "struct": [{"name": "quad", "struct": [{"name": "xmin", "dtype": "int64"}, {"name": "ymin", "dtype": "int64"}, {"name": "xmax", "dtype": "int64"}, {"name": "ymax", "dtype": "int64"}]}, {"name": "group_id", "dtype": "int64"}, {"name": "category", "dtype": "string"}, {"name": "text", "dtype": "string"}]}, {"name": "38", "struct": [{"name": "quad", "struct": [{"name": "xmin", "dtype": "int64"}, {"name": "ymin", "dtype": "int64"}, {"name": "xmax", "dtype": "int64"}, {"name": "ymax", "dtype": "int64"}]}, {"name": "group_id", "dtype": "int64"}, {"name": "category", "dtype": "string"}, {"name": "text", "dtype": "string"}]}, {"name": "37", "struct": [{"name": "quad", "struct": [{"name": "xmin", "dtype": "int64"}, {"name": "ymin", "dtype": "int64"}, {"name": "xmax", "dtype": "int64"}, {"name": "ymax", "dtype": "int64"}]}, {"name": "group_id", "dtype": "int64"}, {"name": "category", "dtype": "string"}, {"name": "text", "dtype": "string"}]}, {"name": "93", "struct": [{"name": "quad", "struct": [{"name": "xmin", "dtype": "int64"}, {"name": "ymin", "dtype": "int64"}, {"name": "xmax", "dtype": "int64"}, {"name": "ymax", "dtype": "int64"}]}, {"name": "group_id", "dtype": "int64"}, {"name": "category", "dtype": "string"}, {"name": "text", "dtype": "string"}]}, {"name": "95", "struct": [{"name": "quad", "struct": [{"name": "xmin", "dtype": "int64"}, {"name": "ymin", "dtype": "int64"}, {"name": "xmax", "dtype": "int64"}, {"name": "ymax", "dtype": "int64"}]}, {"name": "group_id", "dtype": "int64"}, {"name": "category", "dtype": "string"}, {"name": "text", "dtype": "string"}]}, {"name": "88", "struct": [{"name": "quad", "struct": [{"name": "xmin", "dtype": "int64"}, {"name": "ymin", "dtype": "int64"}, {"name": "xmax", "dtype": "int64"}, {"name": "ymax", "dtype": "int64"}]}, {"name": "group_id", "dtype": "int64"}, {"name": "category", "dtype": "string"}, {"name": "text", "dtype": "string"}]}, {"name": "94", "struct": [{"name": "quad", "struct": [{"name": "xmin", "dtype": "int64"}, {"name": "ymin", "dtype": "int64"}, {"name": "xmax", "dtype": "int64"}, {"name": "ymax", "dtype": "int64"}]}, {"name": "group_id", "dtype": "int64"}, {"name": "category", "dtype": "string"}, {"name": "text", "dtype": "string"}]}, {"name": "96", "struct": [{"name": "quad", "struct": [{"name": "xmin", "dtype": "int64"}, {"name": "ymin", "dtype": "int64"}, {"name": "xmax", "dtype": "int64"}, {"name": "ymax", "dtype": "int64"}]}, {"name": "group_id", "dtype": "int64"}, {"name": "category", "dtype": "string"}, {"name": "text", "dtype": "string"}]}, {"name": "97", "struct": [{"name": "quad", "struct": [{"name": "xmin", "dtype": "int64"}, {"name": "ymin", "dtype": "int64"}, {"name": "xmax", "dtype": "int64"}, {"name": "ymax", "dtype": "int64"}]}, {"name": "group_id", "dtype": "int64"}, {"name": "category", "dtype": "string"}, {"name": "text", "dtype": "string"}]}, {"name": "92", "struct": [{"name": "quad", "struct": [{"name": "xmin", "dtype": "int64"}, {"name": "ymin", "dtype": "int64"}, {"name": "xmax", "dtype": "int64"}, {"name": "ymax", "dtype": "int64"}]}, {"name": "group_id", "dtype": "int64"}, {"name": "category", "dtype": "string"}, {"name": "text", "dtype": "string"}]}, {"name": "44", "struct": [{"name": "quad", "struct": [{"name": "xmin", "dtype": "int64"}, {"name": "ymin", "dtype": "int64"}, {"name": "xmax", "dtype": "int64"}, {"name": "ymax", "dtype": "int64"}]}, {"name": "group_id", "dtype": "int64"}, {"name": "category", "dtype": "string"}, {"name": "text", "dtype": "string"}]}, {"name": "43", "struct": [{"name": "quad", "struct": [{"name": "xmin", "dtype": "int64"}, {"name": "ymin", "dtype": "int64"}, {"name": "xmax", "dtype": "int64"}, {"name": "ymax", "dtype": "int64"}]}, {"name": "group_id", "dtype": "int64"}, {"name": "category", "dtype": "string"}, {"name": "text", "dtype": "string"}]}, {"name": "59", "struct": [{"name": "quad", "struct": [{"name": "xmin", "dtype": "int64"}, {"name": "ymin", "dtype": "int64"}, {"name": "xmax", "dtype": "int64"}, {"name": "ymax", "dtype": "int64"}]}, {"name": "group_id", "dtype": "int64"}, {"name": "category", "dtype": "string"}, {"name": "text", "dtype": "string"}]}, {"name": "39", "struct": [{"name": "quad", "struct": [{"name": "xmin", "dtype": "int64"}, {"name": "ymin", "dtype": "int64"}, {"name": "xmax", "dtype": "int64"}, {"name": "ymax", "dtype": "int64"}]}, {"name": "group_id", "dtype": "int64"}, {"name": "category", "dtype": "string"}, {"name": "text", "dtype": "string"}]}, {"name": "62", "struct": [{"name": "quad", "struct": [{"name": "xmin", "dtype": "int64"}, {"name": "ymin", "dtype": "int64"}, {"name": "xmax", "dtype": "int64"}, {"name": "ymax", "dtype": "int64"}]}, {"name": "group_id", "dtype": "int64"}, {"name": "category", "dtype": "string"}, {"name": "text", "dtype": "string"}]}, {"name": "61", "struct": [{"name": "quad", "struct": [{"name": "xmin", "dtype": "int64"}, {"name": "ymin", "dtype": "int64"}, {"name": "xmax", "dtype": "int64"}, {"name": "ymax", "dtype": "int64"}]}, {"name": "group_id", "dtype": "int64"}, {"name": "category", "dtype": "string"}, {"name": "text", "dtype": "string"}]}, {"name": "119", "struct": [{"name": "quad", "struct": [{"name": "xmin", "dtype": "int64"}, {"name": "ymin", "dtype": "int64"}, {"name": "xmax", "dtype": "int64"}, {"name": "ymax", "dtype": "int64"}]}, {"name": "group_id", "dtype": "int64"}, {"name": "category", "dtype": "string"}, {"name": "text", "dtype": "string"}]}, {"name": "120", "struct": [{"name": "quad", "struct": [{"name": "xmin", "dtype": "int64"}, {"name": "ymin", "dtype": "int64"}, {"name": "xmax", "dtype": "int64"}, {"name": "ymax", "dtype": "int64"}]}, {"name": "group_id", "dtype": "int64"}, {"name": "category", "dtype": "string"}, {"name": "text", "dtype": "string"}]}, {"name": "121", "struct": [{"name": "quad", "struct": [{"name": "xmin", "dtype": "int64"}, {"name": "ymin", "dtype": "int64"}, {"name": "xmax", "dtype": "int64"}, {"name": "ymax", "dtype": "int64"}]}, {"name": "group_id", "dtype": "int64"}, {"name": "category", "dtype": "string"}, {"name": "text", "dtype": "string"}]}, {"name": "117", "struct": [{"name": "quad", "struct": [{"name": "xmin", "dtype": "int64"}, {"name": "ymin", "dtype": "int64"}, {"name": "xmax", "dtype": "int64"}, {"name": "ymax", "dtype": "int64"}]}, {"name": "group_id", "dtype": "int64"}, {"name": "category", "dtype": "string"}, {"name": "text", "dtype": "string"}]}, {"name": "147", "struct": [{"name": "quad", "struct": [{"name": "xmin", "dtype": "int64"}, {"name": "ymin", "dtype": "int64"}, {"name": "xmax", "dtype": "int64"}, {"name": "ymax", "dtype": "int64"}]}, {"name": "group_id", "dtype": "int64"}, {"name": "category", "dtype": "string"}, {"name": "text", "dtype": "string"}]}, {"name": "148", "struct": [{"name": "quad", "struct": [{"name": "xmin", "dtype": "int64"}, {"name": "ymin", "dtype": "int64"}, {"name": "xmax", "dtype": "int64"}, {"name": "ymax", "dtype": "int64"}]}, {"name": "group_id", "dtype": "int64"}, {"name": "category", "dtype": "string"}, {"name": "text", "dtype": "string"}]}, {"name": "149", "struct": [{"name": "quad", "struct": [{"name": "xmin", "dtype": "int64"}, {"name": "ymin", "dtype": "int64"}, {"name": "xmax", "dtype": "int64"}, {"name": "ymax", "dtype": "int64"}]}, {"name": "group_id", "dtype": "int64"}, {"name": "category", "dtype": "string"}, {"name": "text", "dtype": "string"}]}, {"name": "146", "struct": [{"name": "quad", "struct": [{"name": "xmin", "dtype": "int64"}, {"name": "ymin", "dtype": "int64"}, {"name": "xmax", "dtype": "int64"}, {"name": "ymax", "dtype": "int64"}]}, {"name": "group_id", "dtype": "int64"}, {"name": "category", "dtype": "string"}, {"name": "text", "dtype": "string"}]}, {"name": "46", "struct": [{"name": "quad", "struct": [{"name": "xmin", "dtype": "int64"}, {"name": "ymin", "dtype": "int64"}, {"name": "xmax", "dtype": "int64"}, {"name": "ymax", "dtype": "int64"}]}, {"name": "group_id", "dtype": "int64"}, {"name": "category", "dtype": "string"}, {"name": "text", "dtype": "string"}]}, {"name": "53", "struct": [{"name": "quad", "struct": [{"name": "xmin", "dtype": "int64"}, {"name": "ymin", "dtype": "int64"}, {"name": "xmax", "dtype": "int64"}, {"name": "ymax", "dtype": "int64"}]}, {"name": "group_id", "dtype": "int64"}, {"name": "category", "dtype": "string"}, {"name": "text", "dtype": "string"}]}, {"name": "54", "struct": [{"name": "quad", "struct": [{"name": "xmin", "dtype": "int64"}, {"name": "ymin", "dtype": "int64"}, {"name": "xmax", "dtype": "int64"}, {"name": "ymax", "dtype": "int64"}]}, {"name": "group_id", "dtype": "int64"}, {"name": "category", "dtype": "string"}, {"name": "text", "dtype": "string"}]}, {"name": "40", "struct": [{"name": "quad", "struct": [{"name": "xmin", "dtype": "int64"}, {"name": "ymin", "dtype": "int64"}, {"name": "xmax", "dtype": "int64"}, {"name": "ymax", "dtype": "int64"}]}, {"name": "group_id", "dtype": "int64"}, {"name": "category", "dtype": "string"}, {"name": "text", "dtype": "string"}]}, {"name": "52", "struct": [{"name": "quad", "struct": [{"name": "xmin", "dtype": "int64"}, {"name": "ymin", "dtype": "int64"}, {"name": "xmax", "dtype": "int64"}, {"name": "ymax", "dtype": "int64"}]}, {"name": "group_id", "dtype": "int64"}, {"name": "category", "dtype": "string"}, {"name": "text", "dtype": "string"}]}, {"name": "76", "struct": [{"name": "quad", "struct": [{"name": "xmin", "dtype": "int64"}, {"name": "ymin", "dtype": "int64"}, {"name": "xmax", "dtype": "int64"}, {"name": "ymax", "dtype": "int64"}]}, {"name": "group_id", "dtype": "int64"}, {"name": "category", "dtype": "string"}, {"name": "text", "dtype": "string"}]}, {"name": "79", "struct": [{"name": "quad", "struct": [{"name": "xmin", "dtype": "int64"}, {"name": "ymin", "dtype": "int64"}, {"name": "xmax", "dtype": "int64"}, {"name": "ymax", "dtype": "int64"}]}, {"name": "group_id", "dtype": "int64"}, {"name": "category", "dtype": "string"}, {"name": "text", "dtype": "string"}]}, {"name": "2", "struct": [{"name": "quad", "struct": [{"name": "xmin", "dtype": "int64"}, {"name": "ymin", "dtype": "int64"}, {"name": "xmax", "dtype": "int64"}, {"name": "ymax", "dtype": "int64"}]}, {"name": "group_id", "dtype": "int64"}, {"name": "category", "dtype": "string"}, {"name": "text", "dtype": "string"}]}, {"name": "132", "struct": [{"name": "quad", "struct": [{"name": "xmin", "dtype": "int64"}, {"name": "ymin", "dtype": "int64"}, {"name": "xmax", "dtype": "int64"}, {"name": "ymax", "dtype": "int64"}]}, {"name": "group_id", "dtype": "int64"}, {"name": "category", "dtype": "string"}, {"name": "text", "dtype": "string"}]}, {"name": "133", "struct": [{"name": "quad", "struct": [{"name": "xmin", "dtype": "int64"}, {"name": "ymin", "dtype": "int64"}, {"name": "xmax", "dtype": "int64"}, {"name": "ymax", "dtype": "int64"}]}, {"name": "group_id", "dtype": "int64"}, {"name": "category", "dtype": "string"}, {"name": "text", "dtype": "string"}]}, {"name": "134", "struct": [{"name": "quad", "struct": [{"name": "xmin", "dtype": "int64"}, {"name": "ymin", "dtype": "int64"}, {"name": "xmax", "dtype": "int64"}, {"name": "ymax", "dtype": "int64"}]}, {"name": "group_id", "dtype": "int64"}, {"name": "category", "dtype": "string"}, {"name": "text", "dtype": "string"}]}, {"name": "135", "struct": [{"name": "quad", "struct": [{"name": "xmin", "dtype": "int64"}, {"name": "ymin", "dtype": "int64"}, {"name": "xmax", "dtype": "int64"}, {"name": "ymax", "dtype": "int64"}]}, {"name": "group_id", "dtype": "int64"}, {"name": "category", "dtype": "string"}, {"name": "text", "dtype": "string"}]}, {"name": "127", "struct": [{"name": "quad", "struct": [{"name": "xmin", "dtype": "int64"}, {"name": "ymin", "dtype": "int64"}, {"name": "xmax", "dtype": "int64"}, {"name": "ymax", "dtype": "int64"}]}, {"name": "group_id", "dtype": "int64"}, {"name": "category", "dtype": "string"}, {"name": "text", "dtype": "string"}]}, {"name": "100", "struct": [{"name": "quad", "struct": [{"name": "xmin", "dtype": "int64"}, {"name": "ymin", "dtype": "int64"}, {"name": "xmax", "dtype": "int64"}, {"name": "ymax", "dtype": "int64"}]}, {"name": "group_id", "dtype": "int64"}, {"name": "category", "dtype": "string"}, {"name": "text", "dtype": "string"}]}, {"name": "73", "struct": [{"name": "quad", "struct": [{"name": "xmin", "dtype": "int64"}, {"name": "ymin", "dtype": "int64"}, {"name": "xmax", "dtype": "int64"}, {"name": "ymax", "dtype": "int64"}]}, {"name": "group_id", "dtype": "int64"}, {"name": "category", "dtype": "string"}, {"name": "text", "dtype": "string"}]}, {"name": "70", "struct": [{"name": "quad", "struct": [{"name": "xmin", "dtype": "int64"}, {"name": "ymin", "dtype": "int64"}, {"name": "xmax", "dtype": "int64"}, {"name": "ymax", "dtype": "int64"}]}, {"name": "group_id", "dtype": "int64"}, {"name": "category", "dtype": "string"}, {"name": "text", "dtype": "string"}]}, {"name": "72", "struct": [{"name": "quad", "struct": [{"name": "xmin", "dtype": "int64"}, {"name": "ymin", "dtype": "int64"}, {"name": "xmax", "dtype": "int64"}, {"name": "ymax", "dtype": "int64"}]}, {"name": "group_id", "dtype": "int64"}, {"name": "category", "dtype": "string"}, {"name": "text", "dtype": "string"}]}, {"name": "71", "struct": [{"name": "quad", "struct": [{"name": "xmin", "dtype": "int64"}, {"name": "ymin", "dtype": "int64"}, {"name": "xmax", "dtype": "int64"}, {"name": "ymax", "dtype": "int64"}]}, {"name": "group_id", "dtype": "int64"}, {"name": "category", "dtype": "string"}, {"name": "text", "dtype": "string"}]}, {"name": "170", "struct": [{"name": "quad", "struct": [{"name": "xmin", "dtype": "int64"}, {"name": "ymin", "dtype": "int64"}, {"name": "xmax", "dtype": "int64"}, {"name": "ymax", "dtype": "int64"}]}, {"name": "group_id", "dtype": "int64"}, {"name": "category", "dtype": "string"}, {"name": "text", "dtype": "string"}]}, {"name": "171", "struct": [{"name": "quad", "struct": [{"name": "xmin", "dtype": "int64"}, {"name": "ymin", "dtype": "int64"}, {"name": "xmax", "dtype": "int64"}, {"name": "ymax", "dtype": "int64"}]}, {"name": "group_id", "dtype": "int64"}, {"name": "category", "dtype": "string"}, {"name": "text", "dtype": "string"}]}, {"name": "45", "struct": [{"name": "quad", "struct": [{"name": "xmin", "dtype": "int64"}, {"name": "ymin", "dtype": "int64"}, {"name": "xmax", "dtype": "int64"}, {"name": "ymax", "dtype": "int64"}]}, {"name": "group_id", "dtype": "int64"}, {"name": "category", "dtype": "string"}, {"name": "text", "dtype": "string"}]}, {"name": "56", "struct": [{"name": "quad", "struct": [{"name": "xmin", "dtype": "int64"}, {"name": "ymin", "dtype": "int64"}, {"name": "xmax", "dtype": "int64"}, {"name": "ymax", "dtype": "int64"}]}, {"name": "group_id", "dtype": "int64"}, {"name": "category", "dtype": "string"}, {"name": "text", "dtype": "string"}]}, {"name": "57", "struct": [{"name": "quad", "struct": [{"name": "xmin", "dtype": "int64"}, {"name": "ymin", "dtype": "int64"}, {"name": "xmax", "dtype": "int64"}, {"name": "ymax", "dtype": "int64"}]}, {"name": "group_id", "dtype": "int64"}, {"name": "category", "dtype": "string"}, {"name": "text", "dtype": "string"}]}, {"name": "101", "struct": [{"name": "quad", "struct": [{"name": "xmin", "dtype": "int64"}, {"name": "ymin", "dtype": "int64"}, {"name": "xmax", "dtype": "int64"}, {"name": "ymax", "dtype": "int64"}]}, {"name": "group_id", "dtype": "int64"}, {"name": "category", "dtype": "string"}, {"name": "text", "dtype": "string"}]}, {"name": "30", "struct": [{"name": "quad", "struct": [{"name": "xmin", "dtype": "int64"}, {"name": "ymin", "dtype": "int64"}, {"name": "xmax", "dtype": "int64"}, {"name": "ymax", "dtype": "int64"}]}, {"name": "group_id", "dtype": "int64"}, {"name": "category", "dtype": "string"}, {"name": "text", "dtype": "string"}]}, {"name": "49", "struct": [{"name": "quad", "struct": [{"name": "xmin", "dtype": "int64"}, {"name": "ymin", "dtype": "int64"}, {"name": "xmax", "dtype": "int64"}, {"name": "ymax", "dtype": "int64"}]}, {"name": "group_id", "dtype": "int64"}, {"name": "category", "dtype": "string"}, {"name": "text", "dtype": "string"}]}, {"name": "55", "struct": [{"name": "quad", "struct": [{"name": "xmin", "dtype": "int64"}, {"name": "ymin", "dtype": "int64"}, {"name": "xmax", "dtype": "int64"}, {"name": "ymax", "dtype": "int64"}]}, {"name": "group_id", "dtype": "int64"}, {"name": "category", "dtype": "string"}, {"name": "text", "dtype": "string"}]}, {"name": "150", "struct": [{"name": "quad", "struct": [{"name": "xmin", "dtype": "int64"}, {"name": "ymin", "dtype": "int64"}, {"name": "xmax", "dtype": "int64"}, {"name": "ymax", "dtype": "int64"}]}, {"name": "group_id", "dtype": "int64"}, {"name": "category", "dtype": "string"}, {"name": "text", "dtype": "string"}]}, {"name": "113", "struct": [{"name": "quad", "struct": [{"name": "xmin", "dtype": "int64"}, {"name": "ymin", "dtype": "int64"}, {"name": "xmax", "dtype": "int64"}, {"name": "ymax", "dtype": "int64"}]}, {"name": "group_id", "dtype": "int64"}, {"name": "category", "dtype": "string"}, {"name": "text", "dtype": "string"}]}, {"name": "116", "struct": [{"name": "quad", "struct": [{"name": "xmin", "dtype": "int64"}, {"name": "ymin", "dtype": "int64"}, {"name": "xmax", "dtype": "int64"}, {"name": "ymax", "dtype": "int64"}]}, {"name": "group_id", "dtype": "int64"}, {"name": "category", "dtype": "string"}, {"name": "text", "dtype": "string"}]}, {"name": "109", "struct": [{"name": "quad", "struct": [{"name": "xmin", "dtype": "int64"}, {"name": "ymin", "dtype": "int64"}, {"name": "xmax", "dtype": "int64"}, {"name": "ymax", "dtype": "int64"}]}, {"name": "group_id", "dtype": "int64"}, {"name": "category", "dtype": "string"}, {"name": "text", "dtype": "string"}]}, {"name": "115", "struct": [{"name": "quad", "struct": [{"name": "xmin", "dtype": "int64"}, {"name": "ymin", "dtype": "int64"}, {"name": "xmax", "dtype": "int64"}, {"name": "ymax", "dtype": "int64"}]}, {"name": "group_id", "dtype": "int64"}, {"name": "category", "dtype": "string"}, {"name": "text", "dtype": "string"}]}]}]}, {"name": "bounding_boxes", "list": [{"name": "quad", "struct": [{"name": "xmin", "dtype": "int64"}, {"name": "ymin", "dtype": "int64"}, {"name": "xmax", "dtype": "int64"}, {"name": "ymax", "dtype": "int64"}]}, {"name": "group_id", "dtype": "int64"}, {"name": "category", "dtype": "string"}, {"name": "text", "dtype": "string"}]}, {"name": "receipt_parse", "dtype": "string"}], "splits": [{"name": "train", "num_bytes": 1786745645.1, "num_examples": 1050}, {"name": "test", "num_bytes": 611466170.0, "num_examples": 350}], "download_size": 2391012653, "dataset_size": 2398211815.1}}
2023-02-07T21:08:45+00:00
[]
[]
TAGS #region-us
# Dataset Card for "cord-v2-custom" More Information needed
[ "# Dataset Card for \"cord-v2-custom\"\n\nMore Information needed" ]
[ "TAGS\n#region-us \n", "# Dataset Card for \"cord-v2-custom\"\n\nMore Information needed" ]
[ 6, 16 ]
[ "passage: TAGS\n#region-us \n# Dataset Card for \"cord-v2-custom\"\n\nMore Information needed" ]
[ -0.09314881265163422, 0.013580967672169209, -0.0028904692735522985, -0.0363222174346447, 0.08995600044727325, 0.14150147140026093, 0.08932237327098846, 0.059348516166210175, 0.03740234673023224, -0.08352091908454895, 0.08379281312227249, 0.03861229866743088, 0.08384902775287628, 0.19574469327926636, -0.048608437180519104, 0.0037511689588427544, 0.02414102293550968, 0.07285158336162567, -0.028894374147057533, 0.07408757507801056, 0.05995664745569229, -0.0420270711183548, 0.05594821646809578, -0.1192905530333519, -0.2518967390060425, 0.0739780142903328, 0.06282271444797516, -0.03345808759331703, 0.0713096410036087, -0.08301018178462982, 0.1723361313343048, 0.02237388677895069, 0.07264907658100128, -0.12469585239887238, 0.016034554690122604, 0.01069806981831789, -0.07160276919603348, 0.06800869107246399, -0.005095747299492359, -0.09822619706392288, -0.11807812750339508, 0.10713763535022736, 0.03855743259191513, 0.016066567972302437, -0.0657900720834732, -0.2127351015806198, -0.06775157898664474, -0.002153898123651743, 0.043883588165044785, -0.02516970783472061, 0.09820505231618881, 0.062206514179706573, -0.07716602832078934, -0.030135150998830795, 0.06348791718482971, 0.018172726035118103, 0.10985369235277176, 0.19544993340969086, -0.011048611253499985, 0.07999678701162338, 0.01867036707699299, 0.03877368941903114, 0.08552265167236328, -0.02781045064330101, 0.004821067675948143, -0.002356847980991006, -0.1689610779285431, 0.09626441448926926, -0.036104436963796616, -0.14219141006469727, 0.2639414072036743, -0.009855912998318672, 0.02351618930697441, 0.08325965702533722, -0.06391268223524094, -0.07808251678943634, -0.03113013133406639, 0.052627816796302795, -0.025828810408711433, 0.03982057049870491, 0.053186409175395966, -0.019866427406668663, -0.14056934416294098, -0.1938871443271637, -0.12788379192352295, 0.03796444460749626, -0.006372686941176653, 0.17785263061523438, -0.20042362809181213, 0.033993519842624664, -0.09822212904691696, -0.010088792070746422, 0.039605412632226944, -0.1122133880853653, 0.000011744407856895123, 0.025713006034493446, 0.02494346909224987, -0.07131978869438171, 0.0419556088745594, 0.10575713217258453, 0.12777715921401978, -0.017113476991653442, 0.020563341677188873, 0.06436787545681, 0.14032356441020966, -0.1288943886756897, -0.0019890586845576763, 0.009051011875271797, -0.03963388875126839, -0.07871036976575851, -0.008119728416204453, -0.08794058114290237, -0.14105118811130524, 0.03957314044237137, -0.09631431102752686, 0.12897436320781708, 0.00810740701854229, -0.13987402617931366, -0.08069692552089691, -0.03558780252933502, 0.1363101750612259, -0.08071348071098328, 0.004527974408119917, 0.006848598830401897, -0.03505513444542885, -0.018771033734083176, -0.05315432325005531, -0.011584710329771042, 0.05234595015645027, 0.061536308377981186, -0.0611698292195797, -0.05370630696415901, -0.04835909232497215, -0.04817258566617966, 0.09860405325889587, -0.19604676961898804, 0.06692930310964584, -0.12726841866970062, -0.18005293607711792, 0.07775326818227768, 0.05001525580883026, -0.0285701472312212, 0.18192140758037567, 0.0410282276570797, 0.058940403163433075, 0.003261422272771597, -0.021245727315545082, 0.13767144083976746, -0.06404001265764236, 0.06800556927919388, 0.0407242625951767, 0.056225113570690155, -0.1732475608587265, 0.03658938780426979, -0.0730268657207489, -0.03079557791352272, 0.03331490606069565, -0.06419355422258377, -0.15424948930740356, 0.041189175099134445, -0.10126256942749023, 0.02567509561777115, -0.05798497423529625, 0.017228810116648674, -0.004047001246362925, 0.014137855730950832, -0.20993487536907196, -0.06488179415464401, 0.12692692875862122, -0.1517411172389984, -0.14383231103420258, -0.008591690100729465, 0.008805975317955017, 0.03473133221268654, -0.027423743158578873, 0.2230016589164734, 0.1458519697189331, -0.1510721743106842, 0.030337641015648842, 0.15191885828971863, -0.17871816456317902, -0.30563902854919434, 0.06654217839241028, 6.923309001649613e-7, -0.1111646220088005, 0.021142827346920967, 0.13545364141464233, -0.022376107051968575, -0.05305933207273483, -0.11295922100543976, -0.05295226722955704, -0.12002917379140854, 0.08607354760169983, -0.010874285362660885, -0.06167514622211456, 0.029757123440504074, 0.09384001791477203, 0.019080691039562225, 0.11368130147457123, -0.02602868154644966, -0.017356647178530693, -0.08550585806369781, 0.17093230783939362, -0.14320255815982819, 0.018863508477807045, -0.11207389086484909, -0.05419545993208885, 0.01740223541855812, 0.021931936964392662, 0.030928002670407295, 0.051064494997262955, 0.084224171936512, -0.05819622427225113, -0.009043766185641289, 0.04985959827899933, 0.027720054611563683, 0.054742034524679184, 0.06818162649869919, -0.030395906418561935, -0.020305447280406952, -0.05537673085927963, -0.08432355523109436, -0.008504637517035007, -0.0295173991471529, 0.14176970720291138, 0.12097350507974625, 0.045228637754917145, -0.0012589183170348406, 0.023625480011105537, -0.05261777341365814, -0.009618456475436687, -0.02490781620144844, 0.013611211441457272, -0.08332310616970062, 0.020159069448709488, 0.03822379559278488, -0.03863557055592537, 0.19616931676864624, 0.12709163129329681, -0.12047303467988968, 0.054715391248464584, 0.000017243508409592323, 0.015192738734185696, -0.02087930589914322, -0.1071944385766983, -0.06096541881561279, -0.1559208780527115, -0.05179930478334427, -0.003774637123569846, -0.07148770987987518, 0.030945351347327232, 0.0634319931268692, -0.024091143161058426, -0.05038556829094887, -0.021499238908290863, 0.2748064696788788, -0.17765451967716217, 0.07459870725870132, 0.2013036459684372, 0.06567175686359406, 0.12357193976640701, -0.05698408558964729, -0.09855914115905762, -0.03273793309926987, -0.057120975106954575, -0.049142882227897644, 0.27320295572280884, -0.04168017953634262, 0.026225291192531586, 0.1100853681564331, 0.016696747392416, 0.0973627045750618, -0.13905850052833557, -0.06598885357379913, 0.025243552401661873, -0.04180413857102394, -0.16398432850837708, 0.021569492295384407, 0.009513398632407188, 0.051198121160268784, -0.04457319527864456, -0.022675011307001114, 0.11687849462032318, -0.004673071205615997, -0.04929124563932419, 0.09856819361448288, -0.18564294278621674, -0.28742140531539917, -0.07276418060064316, -0.035653140395879745, 0.08875949680805206, 0.05383312329649925, -0.06683497875928879, -0.10049612820148468, -0.07185420393943787, 0.037040118128061295, -0.008978732861578465, -0.12601682543754578, 0.018297169357538223, -0.0332840159535408, 0.09242856502532959, -0.017838407307863235, -0.12033376097679138, 0.058398183435201645, -0.003966222517192364, 0.07057278603315353, 0.10980536043643951, -0.02428959496319294, 0.12550844252109528, 0.15993492305278778, -0.04742604121565819, 0.04978777840733528, -0.04673934727907181, 0.038218747824430466, -0.03405223786830902, -0.03640059754252434, 0.185939759016037, -0.021010247990489006, -0.00151747465133667, 0.10653965175151825, 0.08035434782505035, -0.08576248586177826, -0.059455715119838715, -0.07854282110929489, -0.16433684527873993, -0.25924813747406006, -0.13278158009052277, -0.047268711030483246, 0.18791037797927856, 0.08515653014183044, 0.06132211908698082, -0.02028626948595047, 0.059646643698215485, 0.05531391128897667, 0.011747376061975956, -0.13214680552482605, -0.045066118240356445, -0.03007897548377514, -0.0436270646750927, -0.02618611790239811, -0.12246958166360855, 0.06766961514949799, 0.15395709872245789, 0.2582460641860962, 0.19307944178581238, 0.09112538397312164, 0.1753796488046646, 0.029637059196829796, 0.18653739988803864, 0.15754906833171844, 0.11953652650117874, 0.04989936202764511, -0.05075768381357193, 0.04572783410549164, 0.0522904172539711, -0.03957786783576012, -0.019355379045009613, 0.15507538616657257, -0.15417912602424622, 0.03217805176973343, -0.04405675083398819, 0.03506473824381828, -0.3041805624961853, 0.07169662415981293, -0.10885000228881836, 0.1151249036192894, 0.005370286293327808, 0.07819506525993347, -0.12073083966970444, 0.06277251243591309, 0.1094820648431778, -0.006191079039126635, -0.005783481057733297, 0.029627464711666107, 0.060798123478889465, -0.1532752960920334, -0.060513075441122055, -0.02115284651517868, -0.06734085828065872, 0.05019409954547882, 0.1628435254096985, -0.1539783477783203, 0.16094528138637543, 0.047989580780267715, -0.019578078761696815, -0.07503262162208557, -0.05474428832530975, -0.11620152741670609, -0.014995879493653774, 0.05468079820275307, 0.03866828233003616, -0.07933999598026276, -0.1262083202600479, -0.05537610873579979, -0.002818241249769926, 0.13915717601776123, 0.01886584237217903, -0.14846333861351013, 0.0014040875248610973, -0.0209199171513319, -0.0033901839051395655, -0.29742196202278137, -0.11348080635070801, -0.11998673528432846, 0.07673893868923187, 0.04456804320216179, -0.08573023974895477, -0.024913493543863297, 0.033455152064561844, 0.029047925025224686, 0.04864571988582611, -0.07371365278959274, -0.03804611414670944, -0.11349835991859436, -0.0525028333067894, 0.1109887883067131, 0.03344947099685669, 0.10135570168495178, 0.061342041939496994, 0.07268887013196945, -0.05245969071984291, -0.17078456282615662, 0.082781121134758, -0.07950590550899506, 0.057067595422267914, -0.10936813801527023, 0.14226794242858887, -0.0708150565624237, 0.025683192536234856, -0.0034613353200256824, -0.06031803786754608, -0.03590252622961998, -0.08967585116624832, 0.14098717272281647, 0.009778172709047794, 0.06725861132144928, 0.1647198349237442, 0.10125163942575455, -0.05385402962565422, 0.14628206193447113, -0.06211184710264206, 0.18651781976222992, 0.11400657147169113, -0.047278936952352524, 0.19571131467819214, 0.15260498225688934, -0.024366918951272964, -0.31376737356185913, -0.046967409551143646, -0.10641435533761978, -0.058369483798742294, 0.026833059266209602, -0.16498613357543945, 0.05515100061893463, 0.013941120356321335, -0.05679576098918915, 0.16471073031425476, -0.1427731066942215, 0.0014758692122995853, 0.11178813874721527, 0.06668693572282791, 0.24421368539333344, 0.003219013102352619, -0.08682151883840561, -0.10873381793498993, -0.32891225814819336, 0.29902708530426025, -0.13865351676940918, 0.008638895116746426, 0.006785101722925901, 0.11009221524000168, -0.07554959505796432, -0.06801461428403854, 0.127059668302536, 0.014863524585962296, 0.043330319225788116, -0.04359825700521469, -0.11940072476863861, 0.21075931191444397, -0.013140950351953506, 0.03858327865600586, 0.00035244686296209693, 0.053276922553777695, -0.11879145354032516, 0.00014924000424798578, 0.06474323570728302, 0.018514007329940796, 0.01917356438934803, -0.10104907304048538, -0.06321923434734344, -0.0548597127199173, -0.12714184820652008, -0.07519374787807465, 0.011378495022654533, 0.05640478804707527, -0.07139254361391068, 0.1365026980638504, -0.0063082072883844376, -0.13876445591449738, -0.05755873769521713, -0.10607194900512695, -0.09464073926210403, 0.1053360179066658, -0.25923022627830505, 0.07632526010274887, 0.08169569075107574, 0.018492193892598152, 0.03637063875794411, 0.03955809772014618, -0.026662258431315422, -0.02410764805972576, 0.1391219198703766, -0.12079567462205887, -0.0049531529657542706, 0.03617539629340172, 0.011829541064798832, -0.01768392324447632, 0.13193151354789734, 0.057727739214897156, 0.004558728076517582, -0.023112764582037926, 0.0092241782695055, 0.052045371383428574, -0.14678432047367096, 0.13198168575763702, 0.14650937914848328, 0.06493599712848663, -0.16724340617656708, 0.23302705585956573, -0.028161678463220596, -0.07701914757490158, -0.023057017475366592, -0.07266386598348618, -0.11620000749826431, -0.08997014164924622, 0.036245197057724, 0.20122353732585907, -0.11038386076688766, -0.12491457164287567, 0.007357577793300152, -0.06138000264763832, 0.033495284616947174, 0.13818325102329254, 0.03355593979358673, 0.13295115530490875, 0.024762440472841263, -0.016146430745720863, -0.06242680922150612, -0.028800813481211662, -0.048996906727552414, 0.0320771299302578, -0.12142500281333923, -0.11541055887937546, -0.03675876930356026, 0.12054535746574402, -0.08991960436105728, -0.03221222758293152, -0.04599375277757645, 0.08804350346326828, -0.17179438471794128, 0.0073438067920506, 0.13784733414649963, 0.014123682864010334, 0.04984749108552933, 0.007485663518309593, 0.00751838181167841, 0.03679385036230087, -0.10403653979301453, 0.0888444110751152, 0.05865665525197983, -0.027562536299228668, -0.10781151801347733, 0.0753876268863678, 0.054413504898548126, 0.0898541510105133, 0.05709562823176384, 0.10550989210605621, 0.045650627464056015, 0.11085494607686996, -0.07111955434083939, -0.14668551087379456, 0.06411851942539215, 0.07855835556983948, 0.07426667958498001, 0.08581723272800446, -0.0024232668802142143, 0.08208085596561432, -0.10356884449720383, 0.03656722605228424, -0.03401973471045494, -0.05540589988231659, 0.00870226789265871, -0.1929936558008194, -0.028383778408169746, -0.032315608114004135, -0.06951761990785599, 0.13990990817546844, 0.0726534053683281, 0.037573400884866714, 0.14129720628261566, -0.004995868541300297, -0.0013396579306572676, -0.028570692986249924, -0.004207519348710775, -0.11521846801042557, -0.12470317631959915, 0.08469045907258987, -0.003079046495258808, -0.06984435021877289, 0.3517165780067444, -0.0341186560690403, -0.14979316294193268, -0.03985795006155968, 0.13190816342830658, -0.048646844923496246, 0.011856162920594215, 0.272727906703949, 0.06460238993167877, 0.027578802779316902, -0.15122315287590027, 0.047175802290439606, 0.06384487450122833, 0.028460972011089325, 0.027588559314608574, -0.023368537425994873, 0.060213103890419006, -0.03151844069361687, 0.07534396648406982, -0.0905051976442337, -0.10519349575042725, -0.003962479066103697, -0.03291977196931839, 0.0209108404815197, 0.05354463309049606, 0.02120622619986534, 0.08332366496324539, 0.005423719994723797, -0.014732087031006813, 0.0008687995723448694, -0.09839531034231186, -0.07178953289985657, -0.1503879427909851, -0.022997934371232986, -0.18074266612529755, 0.03384893015027046, -0.01915893144905567, -0.03873227536678314, 0.21525932848453522, 0.022580228745937347, 0.04653039202094078, 0.10982554405927658, -0.0376465879380703, 0.0865086168050766, -0.02316483110189438, 0.004526290576905012, -0.09536029398441315, 0.03562114015221596, -0.05396071821451187, 0.05622447282075882, -0.023220684379339218, -0.012467552907764912, -0.0372169055044651, 0.03177240863442421, 0.053092680871486664, -0.06978064030408859, -0.0578155592083931, -0.06911896169185638, 0.01944960467517376, -0.1320667415857315, 0.09989757090806961, -0.009110444225370884, 0.06505303084850311, 0.07720120996236801, 0.19360843300819397, -0.02512379363179207, -0.11356338858604431, -0.029080715030431747, -0.07644619047641754, -0.05806627497076988, 0.15078260004520416, 0.03730675205588341, -0.06739507615566254, -0.0725569874048233, 0.20743733644485474, 0.2293754369020462, 0.017582355067133904, 0.04855651035904884, 0.08518807590007782, 0.029014257714152336, -0.019658071920275688, 0.16066782176494598, -0.03305042162537575, 0.11022131145000458, -0.030797608196735382, -0.1370316594839096, 0.014883790165185928, -0.06343656778335571, 0.06470690667629242, 0.08438174426555634, 0.0116421515122056, -0.08198945224285126, -0.074891597032547, 0.07827559113502502, -0.14099280536174774, 0.02502707950770855, 0.042531829327344894, -0.05606846138834953, 0.0013275158125907183, -0.04660971462726593, 0.2919292747974396, -0.02824861742556095, -0.055253855884075165, -0.078032486140728, 0.012509999796748161, -0.0060132946819067, 0.013021785765886307, -0.3250885307788849, -0.16412128508090973, -0.002138411859050393, -0.047631844878196716, 0.10930915921926498, -0.026314089074730873, 0.14000511169433594, 0.01634487509727478, 0.026332415640354156, -0.06838269531726837, 0.06771710515022278, 0.004270527977496386, -0.012415507808327675, -0.05255628377199173, 0.13081006705760956, -0.06839758902788162, 0.04998626932501793, -0.018878130242228508, -0.07869015634059906, -0.06654075533151627, 0.01685703545808792, 0.03436126187443733, 0.016101060435175896, -0.05123158171772957, -0.03142090141773224, 0.11099660396575928, -0.0632958859205246, -0.00866631232202053, -0.01719101145863533, -0.04126507416367531, 0.1174587681889534, 0.02284424751996994, -0.03642204776406288, 0.01582358218729496, -0.03482421115040779, -0.10216890275478363, 0.18570774793624878, 0.023958712816238403, 0.07712934911251068, 0.03997581824660301, -0.08589136600494385, 0.012851474806666374, -0.0862702950835228, 0.07531651854515076, 0.22445109486579895, 0.07745855301618576, -0.07336623221635818, 0.04166197031736374, 0.030721258372068405, -0.01521302666515112, -0.08219693601131439, -0.11307450383901596 ]
34ae32e7f7bd21338018e0369d325de66dad708d
# Dataset Card for Beans ## Table of Contents - [Table of Contents](#table-of-contents) - [Dataset Description](#dataset-description) - [Dataset Summary](#dataset-summary) - [Supported Tasks and Leaderboards](#supported-tasks-and-leaderboards) - [Languages](#languages) - [Dataset Structure](#dataset-structure) - [Data Instances](#data-instances) - [Data Fields](#data-fields) - [Data Splits](#data-splits) - [Dataset Creation](#dataset-creation) - [Curation Rationale](#curation-rationale) - [Source Data](#source-data) - [Annotations](#annotations) - [Personal and Sensitive Information](#personal-and-sensitive-information) - [Considerations for Using the Data](#considerations-for-using-the-data) - [Social Impact of Dataset](#social-impact-of-dataset) - [Discussion of Biases](#discussion-of-biases) - [Other Known Limitations](#other-known-limitations) - [Additional Information](#additional-information) - [Dataset Curators](#dataset-curators) - [Licensing Information](#licensing-information) - [Citation Information](#citation-information) - [Contributions](#contributions) ## Dataset Description - **Homepage:** - **Repository:** - **Paper:** N/A - **Leaderboard:** N/A - **Point of Contact:** N/A ### Dataset Summary Coffee Beans Grading ### Supported Tasks and Leaderboards - `image-classification`: Based on a coffee bean grading, the goal of this task is to grade single beans for clusterization. ### Languages Indonesia ## Dataset Structure ### Data Instances A sample from the training set is provided below: ``` { 'image_file_path': '/root/.cache/huggingface/datasets/downloads/extracted/0aaa78294d4bf5114f58547e48d91b7826649919505379a167decb629aa92b0a/train/bean_rust/bean_rust_train.109.jpg', 'image': <PIL.JpegImagePlugin.JpegImageFile image mode=RGB size=500x500 at 0x16BAA72A4A8>, 'labels': 1 } ``` ### Data Fields The data instances have the following fields: - `image_file_path`: a `string` filepath to an image. - `image`: A `PIL.Image.Image` object containing the image. Note that when accessing the image column: `dataset[0]["image"]` the image file is automatically decoded. Decoding of a large number of image files might take a significant amount of time. Thus it is important to first query the sample index before the `"image"` column, *i.e.* `dataset[0]["image"]` should **always** be preferred over `dataset["image"][0]`. - `labels`: an `int` classification label. Class Label Mappings: ```json { "1": 0, "2": 1, "3": 2, } ``` ### Data Splits | |train|validation|test| |-------------|----:|---------:|---:| |# of examples|1400 |400 |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 [More Information Needed] ### Citation Information ### Contributions
rasyidf/coffee-beans
[ "task_categories:image-classification", "task_ids:multi-class-image-classification", "annotations_creators:expert-generated", "language_creators:expert-generated", "size_categories:n<1K", "source_datasets:original", "language:id", "license:mit", "region:us" ]
2023-02-07T21:19:08+00:00
{"annotations_creators": ["expert-generated"], "language_creators": ["expert-generated"], "language": ["id"], "license": "mit", "size_categories": ["n<1K"], "source_datasets": ["original"], "task_categories": ["image-classification"], "task_ids": ["multi-class-image-classification"], "pretty_name": "Cofee Beans Grading", "dataset_info": {"features": [{"name": "image_file_path", "dtype": "string"}, {"name": "image", "dtype": "image"}, {"name": "labels", "dtype": {"class_label": {"names": {"1": 0, "2": 1, "3": 2, "0": 3}}}}], "splits": [{"name": "train", "num_bytes": "202.173.747", "num_examples": 200}, {"name": "validation", "num_bytes": "57.633.053", "num_examples": 400}, {"name": "test", "num_bytes": "28.985.470", "num_examples": 1400}], "download_size": 288792270, "dataset_size": 2000}}
2023-02-07T22:06:44+00:00
[]
[ "id" ]
TAGS #task_categories-image-classification #task_ids-multi-class-image-classification #annotations_creators-expert-generated #language_creators-expert-generated #size_categories-n<1K #source_datasets-original #language-Indonesian #license-mit #region-us
Dataset Card for Beans ====================== Table of Contents ----------------- * Table of Contents * Dataset Description + Dataset Summary + Supported Tasks and Leaderboards + Languages * Dataset Structure + Data Instances + Data Fields + Data Splits * Dataset Creation + Curation Rationale + Source Data + Annotations + Personal and Sensitive Information * Considerations for Using the Data + Social Impact of Dataset + Discussion of Biases + Other Known Limitations * Additional Information + Dataset Curators + Licensing Information + Citation Information + Contributions Dataset Description ------------------- * Homepage: * Repository: * Paper: N/A * Leaderboard: N/A * Point of Contact: N/A ### Dataset Summary Coffee Beans Grading ### Supported Tasks and Leaderboards * 'image-classification': Based on a coffee bean grading, the goal of this task is to grade single beans for clusterization. ### Languages Indonesia Dataset Structure ----------------- ### Data Instances A sample from the training set is provided below: ### Data Fields The data instances have the following fields: * 'image\_file\_path': a 'string' filepath to an image. * 'image': A 'PIL.Image.Image' object containing the image. Note that when accessing the image column: 'dataset[0]["image"]' the image file is automatically decoded. Decoding of a large number of image files might take a significant amount of time. Thus it is important to first query the sample index before the '"image"' column, *i.e.* 'dataset[0]["image"]' should always be preferred over 'dataset["image"][0]'. * 'labels': an 'int' classification label. Class Label Mappings: ### Data Splits Dataset Creation ---------------- ### Curation Rationale ### Source Data #### Initial Data Collection and Normalization #### Who are the source language producers? ### Annotations #### Annotation process #### Who are the annotators? ### Personal and Sensitive Information Considerations for Using the Data --------------------------------- ### Social Impact of Dataset ### Discussion of Biases ### Other Known Limitations Additional Information ---------------------- ### Dataset Curators ### Licensing Information ### Contributions
[ "### Dataset Summary\n\n\nCoffee Beans Grading", "### Supported Tasks and Leaderboards\n\n\n* 'image-classification': Based on a coffee bean grading, the goal of this task is to grade single beans for clusterization.", "### Languages\n\n\nIndonesia\n\n\nDataset Structure\n-----------------", "### Data Instances\n\n\nA sample from the training set is provided below:", "### Data Fields\n\n\nThe data instances have the following fields:\n\n\n* 'image\\_file\\_path': a 'string' filepath to an image.\n* 'image': A 'PIL.Image.Image' object containing the image. Note that when accessing the image column: 'dataset[0][\"image\"]' the image file is automatically decoded. Decoding of a large number of image files might take a significant amount of time. Thus it is important to first query the sample index before the '\"image\"' column, *i.e.* 'dataset[0][\"image\"]' should always be preferred over 'dataset[\"image\"][0]'.\n* 'labels': an 'int' classification label.\n\n\nClass Label Mappings:", "### Data Splits\n\n\n\nDataset Creation\n----------------", "### Curation Rationale", "### Source Data", "#### Initial Data Collection and Normalization", "#### Who are the source language producers?", "### Annotations", "#### Annotation process", "#### Who are the annotators?", "### Personal and Sensitive Information\n\n\nConsiderations for Using the Data\n---------------------------------", "### Social Impact of Dataset", "### Discussion of Biases", "### Other Known Limitations\n\n\nAdditional Information\n----------------------", "### Dataset Curators", "### Licensing Information", "### Contributions" ]
[ "TAGS\n#task_categories-image-classification #task_ids-multi-class-image-classification #annotations_creators-expert-generated #language_creators-expert-generated #size_categories-n<1K #source_datasets-original #language-Indonesian #license-mit #region-us \n", "### Dataset Summary\n\n\nCoffee Beans Grading", "### Supported Tasks and Leaderboards\n\n\n* 'image-classification': Based on a coffee bean grading, the goal of this task is to grade single beans for clusterization.", "### Languages\n\n\nIndonesia\n\n\nDataset Structure\n-----------------", "### Data Instances\n\n\nA sample from the training set is provided below:", "### Data Fields\n\n\nThe data instances have the following fields:\n\n\n* 'image\\_file\\_path': a 'string' filepath to an image.\n* 'image': A 'PIL.Image.Image' object containing the image. Note that when accessing the image column: 'dataset[0][\"image\"]' the image file is automatically decoded. Decoding of a large number of image files might take a significant amount of time. Thus it is important to first query the sample index before the '\"image\"' column, *i.e.* 'dataset[0][\"image\"]' should always be preferred over 'dataset[\"image\"][0]'.\n* 'labels': an 'int' classification label.\n\n\nClass Label Mappings:", "### Data Splits\n\n\n\nDataset Creation\n----------------", "### Curation Rationale", "### Source Data", "#### Initial Data Collection and Normalization", "#### Who are the source language producers?", "### Annotations", "#### Annotation process", "#### Who are the annotators?", "### Personal and Sensitive Information\n\n\nConsiderations for Using the Data\n---------------------------------", "### Social Impact of Dataset", "### Discussion of Biases", "### Other Known Limitations\n\n\nAdditional Information\n----------------------", "### Dataset Curators", "### Licensing Information", "### Contributions" ]
[ 83, 11, 43, 12, 16, 182, 11, 7, 4, 10, 10, 5, 5, 9, 18, 7, 8, 14, 6, 6, 5 ]
[ "passage: TAGS\n#task_categories-image-classification #task_ids-multi-class-image-classification #annotations_creators-expert-generated #language_creators-expert-generated #size_categories-n<1K #source_datasets-original #language-Indonesian #license-mit #region-us \n### Dataset Summary\n\n\nCoffee Beans Grading### Supported Tasks and Leaderboards\n\n\n* 'image-classification': Based on a coffee bean grading, the goal of this task is to grade single beans for clusterization.### Languages\n\n\nIndonesia\n\n\nDataset Structure\n-----------------### Data Instances\n\n\nA sample from the training set is provided below:### Data Fields\n\n\nThe data instances have the following fields:\n\n\n* 'image\\_file\\_path': a 'string' filepath to an image.\n* 'image': A 'PIL.Image.Image' object containing the image. Note that when accessing the image column: 'dataset[0][\"image\"]' the image file is automatically decoded. Decoding of a large number of image files might take a significant amount of time. Thus it is important to first query the sample index before the '\"image\"' column, *i.e.* 'dataset[0][\"image\"]' should always be preferred over 'dataset[\"image\"][0]'.\n* 'labels': an 'int' classification label.\n\n\nClass Label Mappings:### Data Splits\n\n\n\nDataset Creation\n----------------### Curation Rationale### Source Data#### Initial Data Collection and Normalization#### Who are the source language producers?### Annotations#### Annotation process#### Who are the annotators?### Personal and Sensitive Information\n\n\nConsiderations for Using the Data\n---------------------------------### Social Impact of Dataset### Discussion of Biases### Other Known Limitations\n\n\nAdditional Information\n----------------------### Dataset Curators### Licensing Information### Contributions" ]
[ 0.013015261851251125, 0.1518593430519104, -0.005051303654909134, 0.03527726233005524, 0.09907324612140656, 0.024266600608825684, 0.03176455944776535, 0.08159719407558441, -0.026125622913241386, 0.11314599215984344, -0.0007355561247095466, 0.05542265251278877, 0.16864539682865143, 0.06566976755857468, -0.015248358249664307, -0.2547677159309387, 0.061758559197187424, -0.0741375982761383, 0.10187673568725586, 0.12467806041240692, 0.11476106941699982, -0.09450427442789078, 0.09639102220535278, -0.05343405902385712, -0.01848333328962326, 0.009165004827082157, -0.07842784374952316, -0.05273580551147461, 0.021469751372933388, 0.029475092887878418, 0.044912632554769516, 0.036392372101545334, 0.022440791130065918, -0.2566815912723541, 0.025356194004416466, 0.05002761259675026, -0.003537936368957162, 0.008044139482080936, 0.12011652439832687, -0.025103695690631866, 0.07553862035274506, -0.12836873531341553, 0.03871778026223183, -0.0017799054039642215, -0.1297140270471573, -0.1567929983139038, -0.1633770614862442, 0.07638715952634811, 0.1769763082265854, 0.029895110055804253, -0.05748077854514122, -0.023462718352675438, -0.10834827274084091, 0.03080601803958416, 0.05930982530117035, -0.14403335750102997, -0.05398087576031685, 0.018028084188699722, -0.002356591634452343, 0.1197022870182991, -0.11708854883909225, -0.020150724798440933, 0.009114348329603672, -0.0018946565687656403, 0.04011780396103859, -0.07398005574941635, -0.06417140364646912, -0.028703883290290833, -0.08340746909379959, -0.1145566776394844, 0.1832602471113205, 0.04859023541212082, -0.05788688734173775, -0.1280316263437271, 0.0369703471660614, -0.024501677602529526, -0.01727111078798771, -0.08194398880004883, 0.045374564826488495, 0.014126013964414597, 0.16260051727294922, -0.032414134591817856, -0.11727133393287659, 0.05453423783183098, -0.0012055637780576944, 0.00004104575054952875, 0.009624150581657887, -0.015661081299185753, 0.05403013899922371, 0.07818516343832016, -0.007797624450176954, -0.13316531479358673, -0.05347824841737747, 0.0027708366978913546, -0.09493464976549149, -0.01293233036994934, 0.09853432327508926, -0.024159979075193405, 0.05918314307928085, 0.12636332213878632, -0.12108633667230606, 0.06834883242845535, -0.032287657260894775, 0.007468107622116804, 0.07186879962682724, 0.14126448333263397, -0.11634353548288345, -0.10364677757024765, -0.016203531995415688, -0.008419379591941833, 0.027553603053092957, -0.04861430451273918, -0.016566650941967964, 0.02207469753921032, 0.10266143083572388, 0.09355875104665756, 0.057207003235816956, 0.026619844138622284, -0.06358760595321655, -0.02962297387421131, 0.17115545272827148, -0.12390310317277908, -0.007913256995379925, 0.01934892311692238, -0.031991757452487946, 0.02555833011865616, 0.004209995269775391, 0.06307724863290787, -0.08360790461301804, 0.11591038107872009, -0.025273770093917847, -0.0016606596764177084, -0.07179238647222519, -0.006410572677850723, 0.042115822434425354, -0.03255309909582138, -0.08939758688211441, -0.04552390053868294, -0.09465930610895157, -0.0966879203915596, 0.036819491535425186, -0.0980968177318573, -0.023215094581246376, 0.02903025597333908, -0.054197728633880615, -0.000016910651538637467, 0.00029798844479955733, 0.0909322053194046, -0.0649716705083847, 0.05409911647439003, -0.04779745265841484, 0.05660558491945267, 0.09491903334856033, 0.05713852867484093, -0.09431762248277664, 0.10570070892572403, -0.21931566298007965, 0.11738818138837814, -0.0567956306040287, 0.011361843906342983, -0.1600090116262436, -0.057863082736730576, -0.04777965322136879, -0.04858722910284996, -0.045672040432691574, 0.12208208441734314, -0.20734818279743195, 0.048410095274448395, 0.0630769431591034, -0.11806649714708328, -0.1135367825627327, 0.09524060785770416, -0.03259698674082756, 0.06904750317335129, 0.019153982400894165, 0.15822282433509827, -0.017482707276940346, 0.012931729666888714, -0.10474923998117447, -0.03799380734562874, -0.02788836695253849, 0.20030102133750916, 0.11172329634428024, -0.013079742901027203, 0.12568069994449615, 0.010029871016740799, -0.023847760632634163, -0.06384088099002838, 0.020658506080508232, -0.07894118875265121, 0.019676953554153442, -0.001522252568975091, -0.04085405170917511, 0.01993594877421856, -0.06313499063253403, -0.0067430054768919945, -0.057907842099666595, -0.07418835163116455, 0.017351005226373672, -0.007855216041207314, -0.004591857548803091, -0.03993004932999611, 0.03641833737492561, -0.06026541441679001, 0.011568482965230942, -0.16433262825012207, -0.048804737627506256, 0.06878367066383362, -0.03647556155920029, 0.06440804153680801, -0.1028338298201561, -0.03456231206655502, -0.011532585136592388, -0.03277047723531723, -0.03625188022851944, 0.08109652996063232, 0.01024909969419241, 0.00009446030162507668, -0.15447047352790833, -0.0006646100082434714, -0.002762541174888611, 0.15554717183113098, -0.1467164009809494, -0.0179391298443079, 0.15761496126651764, 0.14394918084144592, 0.001978361513465643, -0.012849015183746815, 0.07665412873029709, -0.006807988043874502, -0.034601666033267975, -0.06754858046770096, -0.019535772502422333, -0.017931070178747177, 0.02671205997467041, 0.07613124698400497, -0.1829671412706375, -0.10074042528867722, 0.05929861590266228, -0.02112461067736149, -0.14724420011043549, -0.048167236149311066, -0.04870080202817917, -0.07742046564817429, -0.08940129727125168, -0.018618658185005188, 0.085493303835392, 0.003890847321599722, 0.051284030079841614, -0.08665595203638077, -0.058591339737176895, -0.008980434387922287, -0.05183088034391403, -0.09459342062473297, 0.06856098771095276, 0.02901686355471611, -0.20005516707897186, 0.13465476036071777, 0.03316477686166763, 0.059515442699193954, 0.0900094285607338, 0.01911989599466324, -0.0778089314699173, -0.07768143713474274, 0.1043119952082634, 0.01428740844130516, 0.0781242698431015, -0.11197944730520248, 0.03347194567322731, 0.06292031705379486, 0.006617724895477295, 0.016996348276734352, -0.09418121725320816, 0.050364330410957336, 0.009464377537369728, -0.06047463417053223, 0.09263278543949127, -0.03415563702583313, 0.0463203564286232, 0.12123716622591019, 0.035625334829092026, 0.12735293805599213, -0.03157336637377739, -0.06841565668582916, -0.12526467442512512, 0.16034476459026337, -0.06491871178150177, -0.29191163182258606, -0.053433358669281006, -0.008539821952581406, -0.03370371833443642, -0.0344846136868, 0.052129969000816345, -0.0642654225230217, -0.05942683666944504, -0.10435010492801666, -0.046946048736572266, 0.06187494844198227, -0.08427894115447998, -0.16508983075618744, 0.011078142561018467, -0.023695778101682663, -0.07078909873962402, 0.006546984892338514, 0.06986624002456665, 0.0003373566141817719, 0.03669443354010582, 0.043096572160720825, 0.14119987189769745, 0.13760651648044586, -0.015490921214222908, -0.013892868533730507, 0.024290012195706367, 0.203152135014534, -0.16106903553009033, 0.14975067973136902, 0.11298775672912598, -0.08010289818048477, 0.08680423349142075, 0.24405132234096527, -0.014545842073857784, -0.05808209255337715, 0.0476691760122776, 0.06845475733280182, -0.057543303817510605, -0.24226991832256317, -0.02578316070139408, -0.05662030354142189, -0.03225936368107796, 0.01546438317745924, 0.05135730281472206, 0.03425076976418495, 0.05937303975224495, -0.09074663370847702, 0.02982136607170105, 0.030149370431900024, 0.053636908531188965, 0.05007445812225342, 0.019054966047406197, 0.040966492146253586, -0.08187561482191086, -0.014119094237685204, 0.09957438707351685, 0.08313418924808502, 0.18121391534805298, -0.04465291649103165, 0.17573808133602142, 0.0964735597372055, 0.13794773817062378, -0.028938259929418564, -0.02617764100432396, -0.06816619634628296, 0.06419207155704498, -0.018856989219784737, -0.08698641508817673, 0.0013070174027234316, 0.06735290586948395, 0.05494046211242676, 0.003860191209241748, 0.04452856630086899, -0.0008432597387582064, 0.11029567569494247, 0.24592682719230652, -0.03968441113829613, -0.11212299764156342, -0.01334713026881218, 0.09476321935653687, -0.014355353079736233, -0.079260915517807, -0.03235885873436928, 0.11913807690143585, -0.15090273320674896, 0.05780772119760513, -0.0077366954647004604, 0.1023736521601677, -0.19716612994670868, -0.04536144807934761, 0.05609385296702385, 0.0107042845338583, -0.020433910191059113, 0.12410909682512283, -0.14196716248989105, 0.14609022438526154, 0.020565446466207504, 0.034341707825660706, -0.12080546468496323, 0.042242228984832764, 0.020388580858707428, 0.016538340598344803, 0.16155453026294708, 0.016804715618491173, -0.14208555221557617, -0.07491714507341385, -0.07242293655872345, -0.02035035938024521, 0.11643637716770172, -0.05067543312907219, 0.07937142252922058, -0.008212259039282799, -0.009076819755136967, -0.04518459364771843, 0.006942038424313068, -0.12123032659292221, -0.1615416258573532, 0.08656191825866699, -0.08374661952257156, 0.03152412176132202, -0.035646773874759674, 0.02968277782201767, 0.01154347788542509, 0.16575142741203308, -0.11376195400953293, -0.09453415870666504, -0.13214266300201416, -0.03411729633808136, 0.09565287828445435, -0.06718751788139343, -0.027184227481484413, -0.06505709141492844, 0.15345647931098938, 0.02886638604104519, 0.022331126034259796, 0.037111811339855194, -0.039465781301259995, -0.1646864265203476, -0.053755152970552444, 0.08450914919376373, 0.024277593940496445, 0.029957670718431473, 0.04274306073784828, 0.02338361367583275, 0.03753240033984184, -0.13957282900810242, 0.021671755239367485, 0.019289784133434296, 0.06562282145023346, 0.15743809938430786, -0.01666446402668953, -0.18143199384212494, -0.1288110762834549, -0.11396640539169312, 0.08508161455392838, 0.12433686852455139, -0.07656338810920715, 0.06904689222574234, 0.10746540874242783, -0.10368145257234573, -0.18561647832393646, 0.009867004118859768, 0.04240039363503456, -0.05575474351644516, 0.016686366870999336, -0.09979914873838425, 0.09132158756256104, 0.11788424104452133, -0.010029079392552376, 0.006533915176987648, -0.2280602753162384, -0.10366864502429962, 0.008930787444114685, 0.0750415250658989, -0.2243081033229828, -0.20216313004493713, -0.11228866875171661, -0.05574663728475571, -0.12509579956531525, 0.0832659900188446, -0.0074234711937606335, 0.02387111447751522, 0.031091950833797455, -0.03632819652557373, 0.006489769089967012, -0.018698127940297127, 0.23122361302375793, 0.038013000041246414, 0.05795465037226677, -0.10861818492412567, -0.0935094803571701, -0.003201131010428071, -0.03066669963300228, 0.1372630000114441, 0.024890663102269173, 0.01732463762164116, -0.08398697525262833, -0.022879451513290405, -0.058606114238500595, 0.023319508880376816, -0.0821637436747551, -0.06469462066888809, -0.1008283868432045, 0.0948529839515686, 0.13821688294410706, 0.007729538716375828, 0.024998467415571213, -0.04282214492559433, -0.0042272815480828285, 0.1520833522081375, 0.1682962030172348, 0.03207969665527344, -0.09184541553258896, -0.06767304241657257, 0.02484828792512417, -0.02364734187722206, -0.1480603963136673, 0.04878630489110947, 0.0918058454990387, 0.014165536500513554, 0.20793312788009644, -0.04276126250624657, -0.11506495624780655, 0.030736804008483887, 0.09014526754617691, -0.04690015688538551, -0.21909333765506744, 0.016571618616580963, 0.03581632673740387, -0.11070134490728378, -0.16407901048660278, 0.021283268928527832, -0.020999571308493614, -0.011747094802558422, 0.014413227327167988, 0.10825113207101822, 0.022218972444534302, 0.07853696495294571, 0.034102536737918854, 0.06101914495229721, -0.06717389076948166, 0.17652711272239685, 0.20461136102676392, -0.17054645717144012, -0.016328828409314156, 0.17289967834949493, -0.03828280046582222, -0.046910788863897324, -0.01881554163992405, 0.058774206787347794, 0.03158286213874817, -0.07930869609117508, 0.019986949861049652, -0.11501162499189377, 0.010593737475574017, 0.043627284467220306, 0.006013853475451469, 0.053251929581165314, 0.04869476705789566, -0.019478129222989082, -0.06573488563299179, 0.15447816252708435, 0.0714886486530304, 0.04386838525533676, -0.06913525611162186, 0.0060650319792330265, 0.09219471365213394, 0.04530782252550125, 0.011129731312394142, -0.05290578678250313, -0.0638485923409462, -0.01985587738454342, -0.09252845495939255, 0.10847966372966766, -0.12426863610744476, 0.004358496982604265, -0.014159847982227802, -0.03313072398304939, -0.05347370728850365, -0.010344607755541801, -0.05170007795095444, -0.06295587122440338, -0.03844967484474182, 0.1610240787267685, -0.13117045164108276, -0.05142675340175629, 0.11980048567056656, -0.06629493832588196, 0.07861388474702835, -0.005263861268758774, -0.0501047819852829, -0.03924653306603432, -0.13259032368659973, 0.03348908945918083, 0.01627272553741932, 0.05016828328371048, 0.036614589393138885, -0.1678304225206375, 0.022479932755231857, -0.007943459786474705, -0.08645868301391602, 0.008720895275473595, 0.009844833053648472, -0.12425495684146881, 0.03123486042022705, -0.11430615186691284, -0.03856263682246208, -0.06527132540941238, 0.10022987425327301, 0.09912081062793732, -0.04518629238009453, 0.08697142452001572, -0.049539968371391296, 0.08905655145645142, -0.16026408970355988, -0.037558600306510925, -0.02625451236963272, -0.04276631772518158, -0.01582605391740799, -0.011781740002334118, 0.035079773515462875, -0.027598440647125244, 0.17388899624347687, 0.06297898292541504, 0.04868116229772568, 0.04211526736617088, 0.005572427064180374, -0.011040291748940945, 0.07383184880018234, 0.03988749161362648, -0.03599545359611511, -0.049925487488508224, 0.03686927258968353, -0.015495779924094677, -0.05844522640109062, 0.02909434400498867, 0.10850194841623306, 0.2485303282737732, 0.15442106127738953, 0.018173038959503174, 0.045785967260599136, -0.12903080880641937, -0.05062484368681908, 0.1303935945034027, -0.04240332916378975, 0.01536500919610262, -0.052328020334243774, -0.017733555287122726, 0.14979764819145203, -0.22269369661808014, 0.10657268017530441, -0.048256970942020416, -0.07543930411338806, -0.011831714771687984, -0.15200936794281006, -0.04925471916794777, 0.016743583604693413, -0.037282295525074005, -0.14570794999599457, 0.07826916128396988, 0.16782516241073608, -0.001788265653885901, -0.01811172254383564, 0.14173623919487, -0.1279037892818451, -0.06615138053894043, 0.08752184361219406, 0.04606759548187256, 0.052936285734176636, -0.0029043403919786215, 0.06307726353406906, 0.0316225029528141, 0.009761514142155647, 0.06315318495035172, 0.0979878157377243, 0.042355697602033615, -0.003455636091530323, -0.0542437881231308, -0.07918623834848404, 0.04088909178972244, -0.049960579723119736, 0.005358334630727768, 0.15857818722724915, 0.0451304093003273, 0.01668979413807392, 0.015541484579443932, 0.21127796173095703, -0.03230566158890724, -0.03738410398364067, -0.14047610759735107, 0.03155989199876785, -0.03329044580459595, -0.020830199122428894, 0.028271324932575226, -0.15943491458892822, 0.015386804938316345, 0.14826899766921997, 0.047032322734594345, -0.007515855133533478, 0.016543524339795113, -0.016548266634345055, 0.03322096914052963, 0.015053017064929008, 0.023052608594298363, 0.09017343819141388, 0.1722722053527832, -0.07718943804502487, 0.0593729093670845, -0.07279179990291595, -0.033038340508937836, -0.04453663155436516, 0.1464032530784607, 0.029957342892885208, 0.038439031690359116, -0.06725248694419861, 0.16169936954975128, -0.07499243319034576, -0.26819366216659546, 0.0630316361784935, -0.094005286693573, -0.15815198421478271, 0.006415554787963629, -0.013323165476322174, 0.0285324789583683, -0.02470979280769825, 0.05261513590812683, -0.015740979462862015, 0.10618425905704498, 0.09572421759366989, -0.05260739475488663, -0.0010512603912502527, 0.03277704492211342, -0.04118784889578819, 0.2881016135215759, 0.004379356279969215, 0.056416552513837814, 0.12834951281547546, -0.016659168526530266, -0.13456721603870392, 0.0451175682246685, 0.09880804270505905, 0.037180881947278976, 0.04549046605825424, 0.1776588410139084, 0.011952920816838741, 0.05787809193134308, 0.11282133311033249, -0.07636746019124985, 0.06950978189706802, 0.07272478938102722, -0.009018052369356155, -0.11078155040740967, 0.04481837525963783, -0.09503202140331268, 0.11580553650856018, 0.16985878348350525, -0.035213831812143326, -0.008266348391771317, -0.03206533566117287, 0.01731400191783905, -0.009419874288141727, 0.1512114256620407, 0.005131439305841923, -0.11620544642210007, 0.034668467938899994, -0.11475133150815964, 0.10859764367341995, -0.1118089109659195, -0.06502659618854523, 0.056726302951574326, -0.022920217365026474, -0.028461869806051254, 0.11330615729093552, 0.04321565106511116, 0.052778471261262894, -0.05194291099905968, -0.19133304059505463, -0.025473350659012794, 0.15883055329322815, -0.06361118704080582, 0.0016861772164702415 ]
1240dae4f28fa8abc1af9670140268c2de125fc4
Preprocessed data from [Piotr Rybak](https://huggingface.co/datasets/piotr-rybak) and [PolEval](https://github.com/poleval). I am not the owner of these data.
wozniakmp/QA
[ "region:us" ]
2023-02-07T21:20:55+00:00
{}
2023-02-10T15:30:29+00:00
[]
[]
TAGS #region-us
Preprocessed data from Piotr Rybak and PolEval. I am not the owner of these data.
[]
[ "TAGS\n#region-us \n" ]
[ 6 ]
[ "passage: TAGS\n#region-us \n" ]
[ 0.024608636274933815, -0.026205500587821007, -0.009666500613093376, -0.10395516455173492, 0.08638657629489899, 0.059816278517246246, 0.01882290467619896, 0.020661840215325356, 0.23975107073783875, -0.005599027033895254, 0.1219947561621666, 0.0015615287702530622, -0.037353623658418655, 0.03733762726187706, -0.0035912662278860807, -0.17583473026752472, 0.03876631706953049, -0.018274923786520958, 0.01843859627842903, 0.026470553129911423, -0.07776834815740585, -0.07564429938793182, 0.015296397730708122, -0.10247814655303955, -0.083692267537117, 0.11002834886312485, 0.031466204673051834, -0.019670886918902397, 0.10779199749231339, -0.04243955761194229, 0.18699054419994354, -0.011512263678014278, -0.11213519424200058, -0.2536850869655609, 0.021806683391332626, -0.01765260472893715, -0.08747660368680954, 0.01506110467016697, 0.0665089413523674, -0.09014441072940826, -0.0588928684592247, 0.0795099288225174, -0.01132340170443058, 0.04246443510055542, -0.27593839168548584, -0.12684126198291779, -0.05297930911183357, -0.1421966552734375, 0.08651168644428253, 0.04035491496324539, 0.008764253929257393, 0.15506891906261444, -0.20897391438484192, 0.004104613792151213, 0.08255259692668915, -0.2538507878780365, 0.05591634660959244, 0.17671173810958862, 0.03623908758163452, 0.18037272989749908, 0.0060391901060938835, 0.11029672622680664, 0.0716743916273117, -0.024263937026262283, -0.17590197920799255, -0.08127854019403458, -0.04696211963891983, 0.16642488539218903, -0.06727185100317001, -0.14248386025428772, 0.34701237082481384, 0.00015008423360995948, 0.009657775051891804, 0.16921205818653107, -0.059524230659008026, -0.09972117841243744, 0.07259953022003174, 0.016484731808304787, 0.018492350354790688, 0.1471305936574936, 0.16307872533798218, -0.0458691343665123, -0.13837823271751404, -0.018630273640155792, -0.22798998653888702, 0.17510560154914856, -0.03248048573732376, 0.13137903809547424, -0.27447956800460815, 0.01684025302529335, -0.2570667266845703, 0.0032130838371813297, 0.04178816080093384, -0.06004921346902847, -0.0226522795855999, -0.013265985064208508, -0.08018817007541656, 0.004899587947875261, 0.06192673370242119, 0.1266920566558838, -0.06128726154565811, 0.06128238886594772, -0.09319206327199936, 0.141696035861969, 0.07166698575019836, 0.07868369668722153, 0.13037432730197906, 0.041205424815416336, -0.07187089323997498, -0.21872246265411377, -0.0026476888451725245, -0.06275863200426102, -0.09502086788415909, -0.0020165652967989445, -0.11606067419052124, 0.17244569957256317, -0.030802514404058456, -0.09825427830219269, -0.11208184063434601, 0.09148659557104111, -0.032992321997880936, -0.03437839448451996, -0.03552987426519394, -0.020977836102247238, 0.019381176680326462, 0.04704452306032181, -0.1548958420753479, -0.005131472367793322, 0.07039852440357208, 0.11502562463283539, -0.1346137970685959, -0.003783059772104025, -0.07908964157104492, 0.03039063885807991, 0.07654735445976257, -0.16510222852230072, 0.03158547356724739, -0.1124754324555397, -0.07531405985355377, 0.002912673633545637, -0.015710093080997467, -0.016202643513679504, 0.166526660323143, -0.0020451415330171585, 0.0714716836810112, -0.026345307007431984, -0.05890209600329399, -0.11243434250354767, -0.08489254862070084, 0.05390460044145584, 0.03670717030763626, 0.03266148269176483, -0.2193479984998703, 0.014805203303694725, -0.12762966752052307, 0.1360815018415451, -0.10566820204257965, -0.04705966264009476, -0.022842247039079666, 0.20562705397605896, 0.037286072969436646, 0.08762791007757187, -0.22171171009540558, 0.039756543934345245, -0.05404696613550186, 0.18480908870697021, -0.1502426266670227, -0.0799463614821434, 0.20813211798667908, -0.07964949309825897, -0.10115210711956024, 0.021235812455415726, 0.020391687750816345, 0.026287272572517395, 0.0766737088561058, 0.4564172327518463, -0.09766800701618195, -0.09146861732006073, 0.10178250074386597, 0.17055274546146393, -0.12427149713039398, -0.1827561855316162, 0.06446871906518936, -0.16666454076766968, -0.1973118633031845, 0.0018917324487119913, 0.09222044050693512, 0.038269978016614914, -0.07875611633062363, -0.020746968686580658, 0.06325206160545349, -0.0007678253459744155, 0.09095914661884308, 0.03755716234445572, 0.09034032374620438, -0.08716782182455063, 0.11115926504135132, -0.05017651244997978, 0.004037132486701012, 0.1343354731798172, 0.027325427159667015, -0.03223329409956932, 0.08694463223218918, -0.0485352948307991, 0.05295134335756302, -0.1662379503250122, -0.15068690478801727, 0.03398871049284935, 0.06283251196146011, 0.03186952322721481, 0.1280253529548645, 0.08141885697841644, -0.10732853412628174, 0.022690722718834877, -0.004228927195072174, 0.058398615568876266, 0.03891623765230179, 0.006107209715992212, 0.008764320984482765, 0.0961301177740097, -0.10607069730758667, -0.13589619100093842, -0.07336436957120895, -0.014715781435370445, 0.14371353387832642, -0.0302802175283432, 0.07690227776765823, -0.004240254405885935, 0.00013200697139836848, 0.06930823624134064, 0.08137880265712738, 0.016412746161222458, 0.08971183747053146, -0.05237193778157234, -0.05160155147314072, 0.10863113403320312, -0.13533565402030945, 0.17837053537368774, 0.14053137600421906, -0.20532016456127167, 0.029453208670020103, -0.06838275492191315, 0.03670361638069153, -0.008162540383636951, 0.0975119024515152, -0.08272241055965424, -0.02106042578816414, 0.013134466484189034, 0.0052274600602686405, -0.013007243163883686, 0.017682146281003952, -0.07295988500118256, -0.07787393033504486, -0.10233919322490692, 0.08436838537454605, 0.11562882363796234, -0.10282530635595322, 0.14214380085468292, 0.4384984076023102, 0.11495281755924225, 0.21582984924316406, -0.09581480920314789, -0.0412987545132637, 0.007486371789127588, 0.0001535322517156601, -0.04476691037416458, 0.08031861484050751, -0.15973517298698425, -0.038901735097169876, 0.027348900213837624, 0.07128690183162689, 0.11475157737731934, -0.14959022402763367, -0.09639324247837067, -0.00793045200407505, 0.0022841424215584993, -0.1249532699584961, 0.023905446752905846, -0.03974650055170059, 0.04015624523162842, 0.07232289016246796, -0.021535737439990044, 0.13939237594604492, -0.04166141897439957, -0.0639561116695404, 0.07585346698760986, -0.2017085999250412, -0.23179671168327332, -0.12309670448303223, -0.14680525660514832, 0.04366797208786011, 0.05154111236333847, 0.01726446859538555, -0.17635835707187653, -0.015074856579303741, 0.07706750929355621, 0.07820965349674225, -0.20886357128620148, -0.022814949974417686, -0.004290030337870121, 0.0895976573228836, -0.10227091610431671, -0.0017130117630586028, -0.04419664293527603, -0.10150232166051865, 0.0017003051470965147, 0.07279510796070099, -0.137485533952713, 0.13807645440101624, 0.21589438617229462, 0.07225540280342102, 0.07359948754310608, -0.019093448296189308, 0.09936179965734482, -0.10856141895055771, -0.16549113392829895, 0.08348225057125092, -0.06234746053814888, 0.047262318432331085, 0.17534415423870087, 0.03307317942380905, -0.13904969394207, -0.015682822093367577, -0.0402069091796875, -0.15603256225585938, -0.238995760679245, -0.09178274869918823, -0.1182505264878273, 0.16442428529262543, 0.0009358620154671371, 0.06651917099952698, 0.08258313685655594, -0.022042419761419296, 0.16447891294956207, -0.07379321753978729, -0.07578866183757782, -0.006978808436542749, 0.12375060468912125, -0.056660156697034836, -0.03080669604241848, -0.10566964000463486, -0.008295975625514984, 0.1151021271944046, 0.15304014086723328, 0.12214863300323486, 0.2957419455051422, 0.08268889784812927, 0.026645636186003685, 0.08958091586828232, 0.17622539401054382, 0.09495089203119278, 0.07838419824838638, -0.045413073152303696, -0.014814783819019794, 0.014317171648144722, -0.04022889584302902, 0.010141594335436821, 0.14683100581169128, -0.2679629921913147, -0.006678564939647913, -0.2710230350494385, 0.0965198427438736, -0.10913380235433578, 0.11837165057659149, -0.01015760749578476, 0.10194015502929688, 0.11082887649536133, 0.03233652561903, -0.03858073800802231, 0.16613617539405823, 0.08450309932231903, -0.11277695000171661, 0.001758623169735074, 0.03737903758883476, 0.09715615212917328, -0.02818971499800682, 0.12721189856529236, -0.11048974841833115, -0.1464834064245224, 0.013753619976341724, 0.07152791321277618, -0.15373679995536804, 0.3138748109340668, 0.012069208547472954, -0.13481520116329193, -0.01481647603213787, -0.09957809001207352, -0.006440147757530212, 0.1254177987575531, 0.09333524852991104, 0.07935678958892822, -0.2185502052307129, -0.13339371979236603, 0.05872276425361633, -0.00575496768578887, 0.22408108413219452, -0.034034017473459244, -0.11356475204229355, -0.027013886719942093, 0.04241163283586502, -0.06043251231312752, 0.08524788916110992, 0.023536119610071182, -0.08113526552915573, -0.032957352697849274, 0.05323701351881027, 0.012368366122245789, 0.00524376705288887, 0.09360801428556442, 0.020107939839363098, -0.0009265501867048442, 0.01785753294825554, 0.047885000705718994, -0.0675911232829094, -0.1984109878540039, 0.09357594698667526, -0.05215044692158699, 0.0015536568826064467, -0.08013670891523361, -0.15122665464878082, -0.08837161958217621, -0.16009655594825745, 0.12540200352668762, -0.034406669437885284, 0.12700119614601135, -0.06619787961244583, 0.17341409623622894, -0.07871770113706589, 0.04481020197272301, -0.047349292784929276, 0.050332702696323395, -0.007268077693879604, -0.07756082713603973, 0.16585899889469147, -0.15564003586769104, 0.01809087023139, 0.19572502374649048, -0.018915493041276932, 0.07177707552909851, 0.021322092041373253, -0.0636206790804863, 0.23147478699684143, 0.3014698624610901, 0.008138049393892288, 0.1665448248386383, 0.3018903136253357, -0.07466315478086472, -0.2642788887023926, -0.05505012720823288, -0.2841376066207886, -0.05371501296758652, 0.10716094076633453, -0.22523896396160126, 0.06986407935619354, 0.14383509755134583, -0.06471995264291763, 0.30228954553604126, -0.21825523674488068, 0.012589273042976856, 0.15434536337852478, -0.08868814259767532, 0.5515313148498535, -0.1133413165807724, -0.17677772045135498, -0.008122089318931103, -0.08741296827793121, 0.10602109134197235, -0.0340677872300148, 0.06877441704273224, 0.013465235009789467, 0.04797380417585373, 0.048932258039712906, -0.03111894056200981, 0.22701001167297363, 0.008710170164704323, 0.09015397727489471, -0.07378865778446198, -0.18624304234981537, 0.11639340221881866, -0.04359482601284981, -0.08891059458255768, 0.0849778801202774, -0.05942516401410103, -0.11078983545303345, 0.04663389176130295, -0.07950539886951447, -0.024862350896000862, 0.08423490077257156, -0.04678233340382576, -0.042606171220541, -0.008054176345467567, -0.1618063747882843, -0.0002289071271661669, 0.31360217928886414, -0.07096036523580551, 0.16695955395698547, 0.03677211329340935, 0.00038613268407061696, -0.11027684062719345, 0.030288029462099075, -0.05203165486454964, -0.021576624363660812, 0.09578979015350342, -0.11096979677677155, 0.03204701095819473, 0.14160704612731934, -0.04864364117383957, 0.05846960097551346, 0.09256096184253693, -0.0849417969584465, 0.007583672646433115, 0.17753590643405914, -0.17537221312522888, -0.1273445188999176, -0.006135711446404457, -0.09862716495990753, 0.14055661857128143, 0.04394126310944557, 0.05191568285226822, 0.16669964790344238, 0.03967129811644554, -0.029474308714270592, -0.02817419543862343, -0.1153380498290062, -0.0201893113553524, 0.040153320878744125, 0.00045633706031367183, -0.08791285753250122, 0.2262638509273529, 0.06409153342247009, -0.1328488290309906, -0.051157206296920776, 0.2161225974559784, -0.06805316358804703, -0.04911920800805092, -0.223562553524971, 0.10752306133508682, -0.07112517952919006, -0.0965060144662857, 0.05453834682703018, -0.02270081453025341, 0.005106312222778797, 0.181985542178154, 0.03941008821129799, 0.11070270836353302, 0.03738937899470329, -0.02448922023177147, 0.15798696875572205, -0.142850860953331, -0.14191335439682007, -0.025354057550430298, -0.08757315576076508, -0.13844476640224457, -0.026804137974977493, 0.1617041826248169, -0.09177309274673462, -0.14772607386112213, -0.2621181011199951, 0.10968475043773651, -0.16432365775108337, -0.10192688554525375, -0.03469514101743698, -0.08968492597341537, 0.0696166530251503, 0.030301768332719803, -0.03093348816037178, -0.06706760823726654, -0.18593791127204895, 0.0816768929362297, 0.06349513679742813, 0.045533183962106705, -0.017847947776317596, 0.0067379772663116455, 0.1720137596130371, 0.025955144315958023, 0.10040043294429779, 0.16762186586856842, 0.011397695168852806, 0.2246655523777008, -0.1671202927827835, -0.11496317386627197, 0.1336962729692459, -0.026543032377958298, 0.06762003898620605, 0.16792191565036774, -0.0772583931684494, 0.015526676550507545, -0.028136352077126503, 0.07066910713911057, -0.11003983020782471, -0.105624258518219, 0.007937257178127766, 0.02567129209637642, -0.2755882740020752, -0.005599735304713249, -0.19717298448085785, 0.14788752794265747, 0.02579621411859989, 0.03297143429517746, 0.10257530212402344, 0.10404334217309952, 0.08312062919139862, -0.0017710148822516203, 0.03226327523589134, -0.1176818460226059, 0.02753005363047123, -0.059239376336336136, -0.020663779228925705, 0.017624232918024063, 0.36952024698257446, -0.03603357449173927, -0.046802736818790436, 0.003710439894348383, 0.1307835876941681, -0.02139742486178875, 0.017395347356796265, 0.13209912180900574, 0.12607666850090027, -0.08595693111419678, -0.1504845917224884, 0.04888554662466049, -0.04565655067563057, -0.02836887165904045, 0.1464131623506546, 0.05905961990356445, 0.1050296202301979, 0.0908031314611435, -0.014463032595813274, -0.00318976235575974, 0.012856799177825451, -0.15486004948616028, 0.06223496049642563, -0.010558074340224266, 0.012565906159579754, 0.017934376373887062, 0.15238402783870697, -0.005540105979889631, 0.07739730179309845, -0.09889880567789078, 0.004208535887300968, -0.13498884439468384, -0.07913459837436676, 0.03617347031831741, -0.13393273949623108, 0.04141177982091904, -0.01871878281235695, 0.029611799865961075, 0.30386561155319214, 0.02558239921927452, -0.020639164373278618, 0.12512871623039246, -0.1214587539434433, -0.12050267308950424, -0.001594188273884356, -0.029960084706544876, 0.0791488066315651, -0.02633434161543846, -0.0997740775346756, -0.1001306027173996, -0.15166029334068298, -0.09759195148944855, 0.05182836204767227, -0.04993441700935364, -0.059362251311540604, -0.17634081840515137, -0.05707859992980957, -0.05147340148687363, 0.14025864005088806, -0.12263951450586319, 0.15159130096435547, -0.014490418136119843, 0.004084470681846142, 0.04405883327126503, 0.1950942426919937, -0.03644494712352753, 0.08714226633310318, 0.0154351145029068, 0.1522706001996994, -0.05119588226079941, 0.14720745384693146, -0.10931728035211563, -0.04014137014746666, -0.06710435450077057, 0.21513493359088898, 0.25630924105644226, -0.06136954948306084, -0.008937356993556023, -0.012760217301547527, 0.058654606342315674, 0.1073930487036705, 0.16049085557460785, 0.002326392102986574, 0.2802925705909729, -0.03133585304021835, 0.04815128445625305, 0.02901598811149597, 0.013607407920062542, -0.06336209923028946, 0.03397751972079277, 0.07539387792348862, -0.035039983689785004, -0.1412304788827896, 0.15837742388248444, -0.21980468928813934, 0.18157227337360382, 0.11640069633722305, -0.19996967911720276, -0.013728445395827293, -0.04882071167230606, 0.1689416468143463, -0.0856364443898201, 0.1637246012687683, -0.0903693437576294, -0.2108195722103119, -0.2056000679731369, 0.03867346793413162, -0.34623071551322937, -0.254462867975235, 0.10422009229660034, 0.1488201916217804, 0.04015883058309555, -0.018507536500692368, -0.019967829808592796, -0.018367022275924683, 0.04877542704343796, -0.0067357709631323814, 0.06014643982052803, 0.031397558748722076, -0.02988368645310402, -0.24127542972564697, -0.029804671183228493, 0.023964406922459602, -0.07093082368373871, 0.07464958727359772, -0.06874357163906097, -0.022495782002806664, 0.08059766888618469, -0.03066304884850979, 0.03298592567443848, -0.035373736172914505, -0.16326889395713806, 0.027529051527380943, 0.03900543600320816, 0.036012712866067886, 0.00634160777553916, 0.0008072225609794259, -0.03455270454287529, 0.0644603744149208, -0.16716794669628143, -0.16015739738941193, 0.14140215516090393, -0.06745140254497528, 0.2779497504234314, -0.05812826007604599, -0.0809100940823555, 0.04766704887151718, -0.03426874056458473, 0.1807648241519928, -0.07756473124027252, 0.047254521399736404, 0.12766779959201813, 0.011127962730824947, 0.03121316432952881, -0.3092964291572571, 0.11082969605922699, -0.000795336440205574, -0.006093299947679043, -0.07581598311662674 ]
7bfbd76ca5f8f7f56338c211a11e5c3ea2e8a85f
https://github.com/Dibyakanti/AutoTNLI-code ``` @inproceedings{kumar-etal-2022-autotnli, title = "Realistic Data Augmentation Framework for Enhancing Tabular Reasoning", author = "Kumar, Dibyakanti and Gupta, Vivek and Sharma, Soumya and Zhang, Shuo", booktitle = "Proceedings of the 2022 Conference on Empirical Methods in Natural Language Processing", month = dec, year = "2022", address = "Online and Abu Dhabi", publisher = "Association for Computational Linguistics", url = "https://vgupta123.github.io/docs/autotnli.pdf", pages = "", abstract = "Existing approaches to constructing training data for Natural Language Inference (NLI) tasks, such as for semi-structured table reasoning, are either via crowdsourcing or fully automatic methods. However, the former is expensive and time-consuming and thus limits scale, and the latter often produces naive examples that may lack complex reasoning. This paper develops a realistic semi-automated framework for data augmentation for tabular inference. Instead of manually generating a hypothesis for each table, our methodology generates hypothesis templates transferable to similar tables. In addition, our framework entails the creation of rational counterfactual tables based on human written logical constraints and premise paraphrasing. For our case study, we use the InfoTabS (Gupta et al., 2020), which is an entity-centric tabular inference dataset. We observed that our framework could generate human-like tabular inference examples, which could benefit training data augmentation, especially in the scenario with limited supervision.", } ```
metaeval/autotnli
[ "task_categories:text-classification", "task_ids:natural-language-inference", "language:en", "license:apache-2.0", "region:us" ]
2023-02-07T21:36:51+00:00
{"language": ["en"], "license": "apache-2.0", "task_categories": ["text-classification"], "task_ids": ["natural-language-inference"]}
2023-05-31T07:55:41+00:00
[]
[ "en" ]
TAGS #task_categories-text-classification #task_ids-natural-language-inference #language-English #license-apache-2.0 #region-us
URL
[]
[ "TAGS\n#task_categories-text-classification #task_ids-natural-language-inference #language-English #license-apache-2.0 #region-us \n" ]
[ 42 ]
[ "passage: TAGS\n#task_categories-text-classification #task_ids-natural-language-inference #language-English #license-apache-2.0 #region-us \n" ]
[ -0.019237231463193893, 0.052187975496053696, -0.007135906256735325, 0.0035922909155488014, 0.025432348251342773, 0.06765630841255188, 0.1660328060388565, 0.1168215200304985, 0.1911802738904953, -0.09189512580633163, 0.07087594270706177, 0.10002536326646805, 0.03646937012672424, -0.006798886694014072, -0.0443146787583828, -0.1979263722896576, 0.07371065765619278, -0.09603153169155121, -0.003973914310336113, 0.056383781135082245, 0.10871609300374985, 0.020462308079004288, -0.0098257539793849, -0.04100913181900978, 0.05065469071269035, 0.013521972112357616, 0.03704256936907768, -0.08419173955917358, 0.10939936339855194, 0.03307230398058891, 0.06799152493476868, -0.0001931844890350476, -0.0163950864225626, -0.30966916680336, -0.00036420964170247316, -0.03308292105793953, -0.03891200199723244, 0.027359772473573685, 0.04814750328660011, 0.0037165465764701366, 0.030980184674263, -0.012891411781311035, 0.0033655802253633738, 0.09247411787509918, -0.1315152496099472, -0.12482601404190063, -0.07035591453313828, 0.05372389033436775, 0.045314520597457886, 0.08291494101285934, 0.009174182079732418, 0.08336915820837021, -0.17829588055610657, 0.021449008956551552, 0.001791924238204956, -0.25021958351135254, 0.01547764427959919, 0.17133238911628723, 0.025144429877400398, 0.09833399951457977, -0.04017792269587517, 0.03583817929029465, 0.060221053659915924, -0.01226614136248827, -0.11197067052125931, -0.07774949073791504, -0.1512725055217743, 0.05502280965447426, -0.0804327204823494, -0.06498289853334427, 0.2982753813266754, 0.04705769196152687, 0.028880346566438675, -0.043180953711271286, -0.03414849936962128, 0.10210850089788437, -0.027031593024730682, 0.0664069652557373, 0.005915715824812651, 0.13695652782917023, 0.3144967555999756, -0.08566075563430786, -0.09875345230102539, -0.06111422926187515, -0.13541020452976227, 0.04606590047478676, 0.03293827176094055, 0.04457464814186096, -0.08232977241277695, 0.013120630756020546, 0.00013616940123029053, -0.07423027604818344, -0.01628168672323227, -0.07757531851530075, -0.03721797838807106, 0.04025047644972801, 0.02656777761876583, 0.03960127383470535, 0.15729805827140808, 0.15311308205127716, 0.012244589626789093, 0.053552161902189255, -0.14710399508476257, 0.16863806545734406, 0.03667282685637474, 0.1155197024345398, 0.054857563227415085, -0.005961037706583738, 0.046554867178201675, -0.06531669944524765, 0.026670921593904495, -0.048485662788152695, -0.11539387702941895, -0.03561361879110336, -0.11314398050308228, 0.19960817694664001, 0.11294478923082352, -0.0036035815719515085, -0.09490907937288284, -0.007462933659553528, 0.15582995116710663, -0.08950839936733246, -0.05299337953329086, 0.026193030178546906, -0.002181737218052149, -0.023448972031474113, -0.023067228496074677, 0.06167328730225563, -0.06093646213412285, -0.03201355040073395, -0.030025627464056015, -0.02472515217959881, -0.020451169461011887, -0.00535768223926425, 0.09956450015306473, -0.08806340396404266, 0.02105806954205036, -0.03762687370181084, -0.24093486368656158, -0.0036943573504686356, 0.044864244759082794, -0.019275406375527382, -0.07662106305360794, -0.005252688657492399, 0.012661449611186981, 0.005783993285149336, -0.06535731256008148, -0.042621586471796036, -0.13760390877723694, 0.040267057716846466, -0.14859245717525482, -0.015157878398895264, -0.16889739036560059, -0.005559555254876614, -0.12915334105491638, 0.026085080578923225, -0.09101647138595581, 0.029684385284781456, -0.17336703836917877, 0.17932043969631195, -0.09315887838602066, 0.05088036134839058, 0.024744916707277298, 0.03884046897292137, -0.17598263919353485, 0.15580222010612488, -0.12640152871608734, -0.021316535770893097, 0.102655328810215, -0.09409914910793304, -0.10205065459012985, 0.05357048287987709, 0.04065193980932236, 0.12680383026599884, 0.05556377023458481, 0.3434548079967499, 0.005570098292082548, 0.026704974472522736, 0.1072927787899971, 0.1780848652124405, -0.00006796743400627747, -0.05135393515229225, 0.10907933861017227, -0.12054774165153503, -0.10642348229885101, 0.011767622083425522, -0.03576982021331787, 0.03946792706847191, 0.05152410641312599, -0.140292689204216, -0.01879986561834812, -0.011722429655492306, 0.08161602169275284, 0.01719742640852928, 0.04759543016552925, -0.05116163566708565, 0.021887781098484993, -0.08979616314172745, 0.047476593405008316, 0.11060579121112823, 0.005828073713928461, -0.042609620839357376, -0.02395332045853138, 0.10096433013677597, 0.04400430619716644, -0.11968184262514114, -0.0679498016834259, 0.04386039450764656, 0.04232903569936752, 0.14411577582359314, 0.10509601980447769, -0.0054250676184892654, -0.1231103166937828, -0.05140724405646324, 0.009069622494280338, -0.020087746903300285, 0.013759939931333065, 0.00902607012540102, -0.22159428894519806, 0.09901547431945801, -0.02155347168445587, 0.05187316611409187, -0.11525856703519821, 0.0037945883814245462, 0.02085511013865471, -0.0024150973185896873, 0.02158990688621998, 0.10888323932886124, 0.0010511695872992277, 0.017165105789899826, -0.02182411029934883, 0.004393320996314287, 0.06982644647359848, -0.059114258736371994, -0.09009819477796555, 0.1390000581741333, 0.014908207580447197, 0.1337902843952179, 0.13427917659282684, -0.07973175495862961, 0.08027854561805725, -0.005442729685455561, 0.00861875619739294, -0.01080229040235281, 0.0225963331758976, -0.054530609399080276, 0.061814915388822556, 0.051476214081048965, 0.026176147162914276, -0.058430265635252, 0.000709972926415503, -0.07368304580450058, -0.03372819349169731, 0.006937466096132994, 0.07105779647827148, 0.1563098281621933, -0.1809188574552536, 0.15729179978370667, 0.28489676117897034, 0.06514213234186172, 0.1885751634836197, -0.12240386754274368, -0.01978503167629242, 0.05437406152486801, 0.023908544331789017, -0.05747529864311218, 0.09613041579723358, -0.1953628808259964, 0.03729641065001488, 0.0965195745229721, 0.11719351261854172, 0.047700461000204086, -0.14571231603622437, -0.10310525447130203, -0.06265360116958618, -0.09979843348264694, -0.12454681843519211, -0.022525859996676445, 0.004777857568114996, 0.06055612117052078, -0.023289985954761505, -0.0867253988981247, 0.1112489253282547, -0.051563333719968796, -0.074824258685112, 0.10440874099731445, -0.17728355526924133, -0.2217845320701599, -0.16410142183303833, 0.02995629981160164, -0.05627353861927986, 0.004768220707774162, 0.08652845025062561, -0.10288593918085098, -0.08202625066041946, -0.016189947724342346, 0.10162633657455444, -0.07504290342330933, -0.11359305679798126, -0.07142975181341171, 0.1054249033331871, -0.06169009208679199, -0.09870129078626633, -0.029793085530400276, 0.04536566510796547, 0.030383016914129257, 0.05807354673743248, -0.14343129098415375, 0.03541828691959381, 0.20830196142196655, 0.09218237549066544, -0.012742049992084503, -0.08186230808496475, 0.15085211396217346, -0.12721143662929535, 0.040305133908987045, 0.1688726842403412, -0.007368993479758501, 0.010237408801913261, 0.2563741207122803, 0.042545136064291, -0.07665024697780609, 0.01870151422917843, 0.027460219338536263, -0.05467383936047554, -0.4380388557910919, -0.12346914410591125, -0.11592889577150345, 0.12948790192604065, 0.005136869847774506, 0.11007793992757797, 0.19617633521556854, -0.013312127441167831, -0.04317428916692734, 0.029659494757652283, 0.07969329506158829, 0.019285626709461212, 0.24698390066623688, -0.038220155984163284, 0.05743810534477234, -0.11785475164651871, 0.0034435326233506203, 0.12121542543172836, 0.15066929161548615, 0.16107097268104553, 0.2746194303035736, 0.22240182757377625, 0.04906168207526207, 0.13638798892498016, 0.024520060047507286, 0.04378722608089447, 0.07931555807590485, 0.024669237434864044, -0.09312073886394501, -0.03652961179614067, 0.0076391808688640594, 0.10482433438301086, 0.0700422078371048, -0.18073266744613647, 0.0905233696103096, -0.16652967035770416, 0.08840679377317429, 0.2102261632680893, 0.036322273313999176, 0.03692006319761276, 0.09257848560810089, 0.14321966469287872, -0.008738446049392223, -0.09809498488903046, 0.17827223241329193, -0.037418827414512634, -0.08540351688861847, 0.089227095246315, 0.04291230067610741, 0.17511563003063202, -0.025333907455205917, 0.039775680750608444, -0.16019155085086823, -0.2308613508939743, 0.061588384211063385, 0.16993601620197296, -0.15552425384521484, 0.25801417231559753, 0.05036111921072006, -0.028011389076709747, -0.0921536460518837, -0.014872382394969463, 0.07006768882274628, 0.22473478317260742, 0.12281756103038788, 0.029369879513978958, -0.10651411861181259, -0.02253899909555912, -0.11042260378599167, -0.000975700153503567, -0.003645939752459526, -0.035790592432022095, -0.10472080111503601, -0.0493808314204216, 0.03931295499205589, 0.006359047256410122, 0.00497289327904582, -0.1580338329076767, -0.09701058268547058, 0.031582701951265335, 0.12628832459449768, 0.026335814967751503, -0.06981784105300903, 0.010653422214090824, -0.017462903633713722, 0.1548820436000824, -0.15517973899841309, -0.054199863225221634, -0.08263431489467621, -0.22592200338840485, 0.09017091989517212, -0.0043701003305613995, -0.02919192612171173, -0.05055582523345947, -0.032276857644319534, -0.06536935269832611, -0.10685892403125763, 0.16697044670581818, -0.0634184330701828, -0.03715245798230171, -0.06986185908317566, 0.11641902476549149, -0.09024510532617569, 0.07729808241128922, -0.017641844227910042, 0.024082841351628304, -0.018550453707575798, -0.13452424108982086, 0.030461609363555908, 0.0032286844216287136, -0.08298064768314362, 0.1345158964395523, -0.11211442202329636, -0.08240307122468948, -0.056544821709394455, -0.14963102340698242, 0.23357683420181274, 0.2322106510400772, -0.030008139088749886, 0.17597493529319763, 0.20677334070205688, -0.14747248589992523, -0.30197781324386597, -0.0468282476067543, -0.16427305340766907, -0.06469037383794785, 0.05813431367278099, -0.2348862886428833, 0.07869167625904083, 0.08371575176715851, -0.10453814268112183, 0.12536586821079254, -0.2558169364929199, -0.08443880826234818, 0.12793749570846558, -0.07213450223207474, 0.13449543714523315, -0.16848014295101166, -0.10405285656452179, -0.09836643934249878, -0.11137605458498001, 0.09614987671375275, -0.18314240872859955, 0.0327184684574604, 0.02612043172121048, -0.03843129053711891, -0.02365720272064209, 0.017418092116713524, 0.22064049541950226, -0.0019745496101677418, 0.054395027458667755, -0.03768699988722801, -0.04129648953676224, 0.16243350505828857, 0.019538162276148796, 0.022158503532409668, -0.08932191133499146, -0.011746935546398163, -0.13682112097740173, -0.04011871665716171, -0.04801185801625252, 0.06870204955339432, -0.041319094598293304, -0.07812163978815079, -0.08549764752388, 0.024061255156993866, -0.022998403757810593, 0.028370678424835205, 0.3982824981212616, -0.038234662264585495, -0.04489368945360184, 0.10676122456789017, 0.07492087036371231, -0.0873565599322319, -0.0010284107411280274, -0.08596909791231155, -0.03456950560212135, 0.07416046410799026, -0.22858528792858124, 0.018078472465276718, 0.1107233315706253, -0.06187789514660835, 0.1361156404018402, 0.02217617817223072, -0.03396105766296387, -0.035811394453048706, 0.0849449411034584, 0.036926958709955215, -0.18786172568798065, 0.020583543926477432, 0.06533078849315643, 0.04427230730652809, -0.06730884313583374, 0.10763875395059586, 0.06653251498937607, 0.014562522992491722, 0.04863181337714195, 0.017169268801808357, -0.07560224086046219, 0.012311538681387901, 0.03663153573870659, 0.019686181098222733, -0.11513934284448624, 0.18400715291500092, 0.15035736560821533, -0.03696957975625992, -0.04658370465040207, 0.1187557652592659, -0.06171315535902977, -0.11229189485311508, -0.03498983010649681, 0.0850214883685112, -0.018627440556883812, -0.11601126939058304, -0.027360284700989723, -0.18782345950603485, 0.00956402625888586, 0.08631015568971634, 0.027224130928516388, 0.027645250782370567, 0.002606659196317196, -0.08816705644130707, 0.1946725845336914, 0.004925235640257597, -0.14470906555652618, -0.024006683379411697, -0.08921871334314346, -0.18613630533218384, 0.053012918680906296, 0.04940759763121605, -0.030394969508051872, -0.060808125883340836, -0.12272927910089493, 0.09273018687963486, -0.17343130707740784, 0.10790260136127472, -0.0430837981402874, 0.041980110108852386, 0.017409615218639374, -0.061282187700271606, -0.027831165120005608, -0.04882151633501053, -0.16011090576648712, -0.03220716118812561, -0.02022075094282627, 0.18851236999034882, -0.07135230302810669, -0.06973978132009506, 0.12094607204198837, 0.016605297103524208, 0.10192658752202988, 0.005658636335283518, -0.05493415519595146, 0.16130408644676208, -0.12384825199842453, 0.016193168237805367, 0.11980920284986496, 0.09718397259712219, 0.004864821210503578, 0.010753621347248554, -0.07869090884923935, 0.04325730353593826, 0.016296837478876114, 0.08175988495349884, -0.15507586300373077, -0.16054145991802216, -0.05252598598599434, -0.05718269571661949, -0.2249642014503479, 0.06333576887845993, -0.10761555284261703, 0.12264953553676605, -0.02394982799887657, 0.13491591811180115, 0.03127706050872803, 0.014497091062366962, -0.04751936346292496, 0.04131153225898743, -0.03702621906995773, -0.04015452042222023, -0.09434721618890762, -0.08766184747219086, -0.05241956561803818, -0.023967768996953964, 0.2823442816734314, 0.03258199617266655, -0.06657231599092484, 0.08948972076177597, 0.05093180760741234, -0.006183471530675888, 0.02057093009352684, 0.1800175905227661, 0.10960756242275238, 0.009643915109336376, -0.029659783467650414, -0.09027449041604996, -0.002123759128153324, 0.020375799387693405, 0.13439515233039856, 0.141200453042984, 0.1593625843524933, 0.04850293695926666, 0.022022539749741554, -0.027645189315080643, -0.010734586976468563, 0.02054709382355213, 0.16025415062904358, 0.0478389672935009, 0.008249998092651367, 0.1244933158159256, 0.16199122369289398, -0.09361393749713898, 0.07346417754888535, -0.07104295492172241, -0.046194449067115784, -0.13576747477054596, -0.048472631722688675, -0.041391316801309586, -0.09616109728813171, -0.011033087968826294, -0.07444164156913757, 0.03531281277537346, 0.15335215628147125, 0.04639556631445885, -0.022183705121278763, 0.014331118203699589, -0.07820900529623032, -0.06855511665344238, 0.0039035871159285307, -0.06235065683722496, 0.040850237011909485, -0.12987332046031952, -0.04771779477596283, -0.018900200724601746, -0.030401142314076424, -0.06581288576126099, 0.046521659940481186, -0.09893828630447388, -0.006759714800864458, -0.1499679535627365, -0.04624951258301735, -0.03805410489439964, 0.05891500413417816, -0.017275845631957054, 0.26816868782043457, 0.07728993147611618, -0.0032489325385540724, 0.12914027273654938, 0.1781766563653946, -0.014736270532011986, -0.2316528856754303, -0.06065754219889641, 0.15942053496837616, -0.015179908834397793, 0.03467913717031479, -0.034129876643419266, -0.05449259653687477, -0.05308956652879715, 0.17604471743106842, 0.22055335342884064, -0.06258297711610794, -0.02826010063290596, -0.0690307542681694, 0.022129226475954056, -0.013464453630149364, 0.10478772968053818, 0.021460922434926033, 0.14516675472259521, -0.04333798214793205, -0.019292237237095833, -0.027679702267050743, -0.004789544269442558, -0.18544508516788483, 0.0369977131485939, 0.03441361337900162, -0.08445209264755249, -0.04539073631167412, 0.16366538405418396, -0.139993816614151, 0.08812171220779419, 0.046329643577337265, -0.08496809750795364, -0.07396586239337921, -0.044911835342645645, 0.10113606601953506, 0.002231945749372244, 0.026429807767271996, -0.04426693543791771, -0.1283135563135147, -0.04274039342999458, -0.02436964586377144, -0.19545979797840118, -0.12097027152776718, 0.11607304960489273, -0.01625557616353035, 0.23187239468097687, 0.01287948340177536, 0.11486026644706726, 0.037287019193172455, 0.020177554339170456, -0.051218342036008835, 0.09578408300876617, 0.056201908737421036, 0.059499818831682205, -0.04983329772949219, -0.07154421508312225, -0.03630298748612404, 0.06456965953111649, 0.12657593190670013, 0.0043962933123111725, 0.020397143438458443, 0.1423378437757492, -0.09616345167160034, -0.06747531145811081, 0.0032196680549532175, -0.16306258738040924, 0.03250037506222725, 0.026753703132271767, 0.007181141525506973, -0.06256932765245438, -0.024523412808775902, -0.007333834655582905, -0.008374115452170372, -0.09590562433004379, -0.13787083327770233, 0.05654492974281311, -0.008908702060580254, 0.13372285664081573, 0.07136204093694687, -0.10366161912679672, -0.03387674689292908, -0.05412132665514946, 0.08953461796045303, -0.08740629255771637, 0.0631677657365799, 0.09676976501941681, -0.09112630039453506, 0.03528288006782532, -0.37219831347465515, 0.05115116760134697, 0.02416834607720375, -0.00917012058198452, -0.06013071537017822 ]
7628e46056df47cb6f3e42d7ba940c060992c241
# Dataset Card for "FiNER-ORD" ## 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 and Annotation](#dataset-creation) - [Additional Information](#additional-information) - [Licensing Information](#licensing-information) - [Citation Information](#citation-information) - [Contact Information](#contact-information) ## Dataset Description - **Homepage:** [https://github.com/gtfintechlab/FiNER](https://github.com/gtfintechlab/FiNER) - **Repository:** [https://github.com/gtfintechlab/FiNER](https://github.com/gtfintechlab/FiNER) - **Paper:** [Arxiv Link]() - **Point of Contact:** [Agam A. Shah](https://shahagam4.github.io/) - **Size of train dataset file:** 1.08 MB - **Size of validation dataset file:** 135 KB - **Size of test dataset file:** 336 KB ### Dataset Summary The FiNER-Open Research Dataset (FiNER-ORD) consists of a manually annotated dataset of financial news articles (in English) collected from [webz.io] (https://webz.io/free-datasets/financial-news-articles/). In total, there are 47851 news articles available in this data at the point of writing this paper. Each news article is available in the form of a JSON document with various metadata information like the source of the article, publication date, author of the article, and the title of the article. For the manual annotation of named entities in financial news, we randomly sampled 220 documents from the entire set of news articles. We observed that some articles were empty in our sample, so after filtering the empty documents, we were left with a total of 201 articles. We use [Doccano](https://github.com/doccano/doccano), an open-source annotation tool, to ingest the raw dataset and manually label person (PER), location (LOC), and organization (ORG) entities. For our experiments, we use the manually labeled FiNER-ORD to benchmark model performance. Thus, we make a train, validation, and test split of FiNER-ORD. To avoid biased results, manual annotation is performed by annotators who have no knowledge about the labeling functions for the weak supervision framework. The train and validation sets are annotated by two separate annotators and validated by a third annotator. The test dataset is annotated by another annotator. We present a manual annotation guide in the Appendix of the paper detailing the procedures used to create the manually annotated FiNER-ORD. After manual annotation, the news articles are split into sentences. We then tokenize each sentence, employing a script to tokenize multi-token entities into separate tokens (e.g. PER_B denotes the beginning token of a person (PER) entity and PER_I represents intermediate PER tokens). We exclude white spaces when tokenizing multi-token entities. The descriptive statistics on the resulting FiNER-ORD are available in the Table of [Data Splits](#data-splits) section. For more details check [information in paper]() ### Supported Tasks and Leaderboards [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Languages - It is a monolingual English dataset ## Dataset Structure ### Data Instances #### FiNER-ORD - **Size of train dataset file:** 1.08 MB - **Size of validation dataset file:** 135 KB - **Size of test dataset file:** 336 KB ### Data Fields The data fields are the same among all splits. #### conll2003 - `doc_idx`: Document ID (`int`) - `sent_idx`: Sentence ID within each document (`int`) - `gold_token`: Token (`string`) - `gold_label`: a `list` of classification labels (`int`). Full tagset with indices: ```python {'O': 0, 'PER_B': 1, 'PER_I': 2, 'LOC_B': 3, 'LOC_I': 4, 'ORG_B': 5, 'ORG_I': 6} ``` ### Data Splits | **FiNER-ORD** | **Train** | **Validation** | **Test** | |------------------|----------------|---------------------|---------------| | # Articles | 135 | 24 | 42 | | # Tokens | 80,531 | 10,233 | 25,957 | | # LOC entities | 1,255 | 267 | 428 | | # ORG entities | 3,440 | 524 | 933 | | # PER entities | 1,374 | 222 | 466 | ## Dataset Creation and Annotation [Information in paper ]() ## Additional Information ### Licensing Information [Information in paper ]() ### Citation Information ``` @article{shah2023finer, title={FiNER: Financial Named Entity Recognition Dataset and Weak-supervision Model}, author={Agam Shah and Ruchit Vithani and Abhinav Gullapalli and Sudheer Chava}, journal={arXiv preprint arXiv:2302.11157}, year={2023} } ``` ### Contact Information Please contact Agam Shah (ashah482[at]gatech[dot]edu) or Ruchit Vithani (rvithani6[at]gatech[dot]edu) about any FiNER-related issues and questions. GitHub: [@shahagam4](https://github.com/shahagam4), [@ruchit2801](https://github.com/ruchit2801) Website: [https://shahagam4.github.io/](https://shahagam4.github.io/)
gtfintechlab/finer-ord
[ "task_categories:token-classification", "task_ids:named-entity-recognition", "multilinguality:monolingual", "size_categories:1K<n<10K", "language:en", "license:cc-by-nc-4.0", "region:us" ]
2023-02-07T22:03:57+00:00
{"language": ["en"], "license": "cc-by-nc-4.0", "multilinguality": ["monolingual"], "size_categories": ["1K<n<10K"], "task_categories": ["token-classification"], "task_ids": ["named-entity-recognition"], "pretty_name": "FiNER"}
2023-02-23T22:17:44+00:00
[]
[ "en" ]
TAGS #task_categories-token-classification #task_ids-named-entity-recognition #multilinguality-monolingual #size_categories-1K<n<10K #language-English #license-cc-by-nc-4.0 #region-us
Dataset Card for "FiNER-ORD" ============================ Table of Contents ----------------- * Dataset Description + Dataset Summary + Supported Tasks and Leaderboards + Languages * Dataset Structure + Data Instances + Data Fields + Data Splits * Dataset Creation and Annotation * Additional Information + Licensing Information + Citation Information + Contact Information Dataset Description ------------------- * Homepage: URL * Repository: URL * Paper: Arxiv Link * Point of Contact: Agam A. Shah * Size of train dataset file: 1.08 MB * Size of validation dataset file: 135 KB * Size of test dataset file: 336 KB ### Dataset Summary The FiNER-Open Research Dataset (FiNER-ORD) consists of a manually annotated dataset of financial news articles (in English) collected from [URL] (URL In total, there are 47851 news articles available in this data at the point of writing this paper. Each news article is available in the form of a JSON document with various metadata information like the source of the article, publication date, author of the article, and the title of the article. For the manual annotation of named entities in financial news, we randomly sampled 220 documents from the entire set of news articles. We observed that some articles were empty in our sample, so after filtering the empty documents, we were left with a total of 201 articles. We use Doccano, an open-source annotation tool, to ingest the raw dataset and manually label person (PER), location (LOC), and organization (ORG) entities. For our experiments, we use the manually labeled FiNER-ORD to benchmark model performance. Thus, we make a train, validation, and test split of FiNER-ORD. To avoid biased results, manual annotation is performed by annotators who have no knowledge about the labeling functions for the weak supervision framework. The train and validation sets are annotated by two separate annotators and validated by a third annotator. The test dataset is annotated by another annotator. We present a manual annotation guide in the Appendix of the paper detailing the procedures used to create the manually annotated FiNER-ORD. After manual annotation, the news articles are split into sentences. We then tokenize each sentence, employing a script to tokenize multi-token entities into separate tokens (e.g. PER\_B denotes the beginning token of a person (PER) entity and PER\_I represents intermediate PER tokens). We exclude white spaces when tokenizing multi-token entities. The descriptive statistics on the resulting FiNER-ORD are available in the Table of Data Splits section. For more details check information in paper ### Supported Tasks and Leaderboards ### Languages * It is a monolingual English dataset Dataset Structure ----------------- ### Data Instances #### FiNER-ORD * Size of train dataset file: 1.08 MB * Size of validation dataset file: 135 KB * Size of test dataset file: 336 KB ### Data Fields The data fields are the same among all splits. #### conll2003 * 'doc\_idx': Document ID ('int') * 'sent\_idx': Sentence ID within each document ('int') * 'gold\_token': Token ('string') * 'gold\_label': a 'list' of classification labels ('int'). Full tagset with indices: ### Data Splits Dataset Creation and Annotation ------------------------------- Information in paper Additional Information ---------------------- ### Licensing Information Information in paper ### Contact Information Please contact Agam Shah (ashah482[at]gatech[dot]edu) or Ruchit Vithani (rvithani6[at]gatech[dot]edu) about any FiNER-related issues and questions. GitHub: @shahagam4, @ruchit2801 Website: URL
[ "### Dataset Summary\n\n\nThe FiNER-Open Research Dataset (FiNER-ORD) consists of a manually annotated dataset of financial news articles (in English)\ncollected from [URL] (URL\nIn total, there are 47851 news articles available in this data at the point of writing this paper.\nEach news article is available in the form of a JSON document with various metadata information like\nthe source of the article, publication date, author of the article, and the title of the article.\nFor the manual annotation of named entities in financial news, we randomly sampled 220 documents from the entire set of news articles.\nWe observed that some articles were empty in our sample, so after filtering the empty documents, we were left with a total of 201 articles. \n\nWe use Doccano, an open-source annotation tool,\nto ingest the raw dataset and manually label person (PER), location (LOC), and organization (ORG) entities.\nFor our experiments, we use the manually labeled FiNER-ORD to benchmark model performance.\nThus, we make a train, validation, and test split of FiNER-ORD.\nTo avoid biased results, manual annotation is performed by annotators who have no knowledge about the labeling functions for the weak supervision framework.\nThe train and validation sets are annotated by two separate annotators and validated by a third annotator.\nThe test dataset is annotated by another annotator. We present a manual annotation guide in the Appendix of the paper detailing the procedures used to create the manually annotated FiNER-ORD.\n\n\nAfter manual annotation, the news articles are split into sentences.\nWe then tokenize each sentence, employing a script to tokenize multi-token entities into separate tokens (e.g. PER\\_B denotes the beginning token of a person (PER) entity\nand PER\\_I represents intermediate PER tokens). We exclude white spaces when tokenizing multi-token entities.\nThe descriptive statistics on the resulting FiNER-ORD are available in the Table of Data Splits section.\n\n\nFor more details check information in paper", "### Supported Tasks and Leaderboards", "### Languages\n\n\n* It is a monolingual English dataset\n\n\nDataset Structure\n-----------------", "### Data Instances", "#### FiNER-ORD\n\n\n* Size of train dataset file: 1.08 MB\n* Size of validation dataset file: 135 KB\n* Size of test dataset file: 336 KB", "### Data Fields\n\n\nThe data fields are the same among all splits.", "#### conll2003\n\n\n* 'doc\\_idx': Document ID ('int')\n* 'sent\\_idx': Sentence ID within each document ('int')\n* 'gold\\_token': Token ('string')\n* 'gold\\_label': a 'list' of classification labels ('int'). Full tagset with indices:", "### Data Splits\n\n\n\nDataset Creation and Annotation\n-------------------------------\n\n\nInformation in paper\n\n\nAdditional Information\n----------------------", "### Licensing Information\n\n\nInformation in paper", "### Contact Information\n\n\nPlease contact Agam Shah (ashah482[at]gatech[dot]edu) or Ruchit Vithani (rvithani6[at]gatech[dot]edu) about any FiNER-related issues and questions. \n\nGitHub: @shahagam4, @ruchit2801\nWebsite: URL" ]
[ "TAGS\n#task_categories-token-classification #task_ids-named-entity-recognition #multilinguality-monolingual #size_categories-1K<n<10K #language-English #license-cc-by-nc-4.0 #region-us \n", "### Dataset Summary\n\n\nThe FiNER-Open Research Dataset (FiNER-ORD) consists of a manually annotated dataset of financial news articles (in English)\ncollected from [URL] (URL\nIn total, there are 47851 news articles available in this data at the point of writing this paper.\nEach news article is available in the form of a JSON document with various metadata information like\nthe source of the article, publication date, author of the article, and the title of the article.\nFor the manual annotation of named entities in financial news, we randomly sampled 220 documents from the entire set of news articles.\nWe observed that some articles were empty in our sample, so after filtering the empty documents, we were left with a total of 201 articles. \n\nWe use Doccano, an open-source annotation tool,\nto ingest the raw dataset and manually label person (PER), location (LOC), and organization (ORG) entities.\nFor our experiments, we use the manually labeled FiNER-ORD to benchmark model performance.\nThus, we make a train, validation, and test split of FiNER-ORD.\nTo avoid biased results, manual annotation is performed by annotators who have no knowledge about the labeling functions for the weak supervision framework.\nThe train and validation sets are annotated by two separate annotators and validated by a third annotator.\nThe test dataset is annotated by another annotator. We present a manual annotation guide in the Appendix of the paper detailing the procedures used to create the manually annotated FiNER-ORD.\n\n\nAfter manual annotation, the news articles are split into sentences.\nWe then tokenize each sentence, employing a script to tokenize multi-token entities into separate tokens (e.g. PER\\_B denotes the beginning token of a person (PER) entity\nand PER\\_I represents intermediate PER tokens). We exclude white spaces when tokenizing multi-token entities.\nThe descriptive statistics on the resulting FiNER-ORD are available in the Table of Data Splits section.\n\n\nFor more details check information in paper", "### Supported Tasks and Leaderboards", "### Languages\n\n\n* It is a monolingual English dataset\n\n\nDataset Structure\n-----------------", "### Data Instances", "#### FiNER-ORD\n\n\n* Size of train dataset file: 1.08 MB\n* Size of validation dataset file: 135 KB\n* Size of test dataset file: 336 KB", "### Data Fields\n\n\nThe data fields are the same among all splits.", "#### conll2003\n\n\n* 'doc\\_idx': Document ID ('int')\n* 'sent\\_idx': Sentence ID within each document ('int')\n* 'gold\\_token': Token ('string')\n* 'gold\\_label': a 'list' of classification labels ('int'). Full tagset with indices:", "### Data Splits\n\n\n\nDataset Creation and Annotation\n-------------------------------\n\n\nInformation in paper\n\n\nAdditional Information\n----------------------", "### Licensing Information\n\n\nInformation in paper", "### Contact Information\n\n\nPlease contact Agam Shah (ashah482[at]gatech[dot]edu) or Ruchit Vithani (rvithani6[at]gatech[dot]edu) about any FiNER-related issues and questions. \n\nGitHub: @shahagam4, @ruchit2801\nWebsite: URL" ]
[ 68, 484, 10, 21, 6, 39, 17, 86, 26, 9, 72 ]
[ "passage: TAGS\n#task_categories-token-classification #task_ids-named-entity-recognition #multilinguality-monolingual #size_categories-1K<n<10K #language-English #license-cc-by-nc-4.0 #region-us \n" ]
[ -0.04787161946296692, 0.006345349829643965, -0.0057942247949540615, 0.017430584877729416, 0.07172729074954987, 0.1024794727563858, 0.20793002843856812, 0.06986033171415329, 0.23329155147075653, -0.008485682308673859, 0.03893133997917175, 0.04802505671977997, 0.032612044364213943, 0.030124537646770477, -0.06498517841100693, -0.23194748163223267, 0.0632300078868866, -0.05236698314547539, 0.034115344285964966, 0.05379943549633026, 0.10069077461957932, -0.01867757923901081, 0.008254339918494225, -0.06451082229614258, -0.08960684388875961, 0.0012826361926272511, 0.02900790423154831, -0.08407601714134216, 0.0896201804280281, 0.031971003860235214, 0.1137194111943245, 0.09254512935876846, -0.002056242199614644, -0.25141847133636475, -0.00882007647305727, -0.07400408387184143, -0.03883856162428856, -0.02710847556591034, 0.030807767063379288, -0.01670546643435955, 0.011923660524189472, -0.08793290704488754, 0.002611360512673855, 0.07399176806211472, -0.09766660630702972, -0.09624072909355164, -0.013168806210160255, 0.12980765104293823, -0.004305647220462561, -0.01711253449320793, 0.00024528676294721663, 0.13159678876399994, -0.17042332887649536, 0.03387827426195145, -0.08191041648387909, -0.2513126730918884, 0.00862188171595335, 0.25636595487594604, 0.04726838320493698, 0.0560578778386116, -0.03921167179942131, 0.0362003892660141, 0.04916162043809891, 0.0071807969361543655, -0.1543847918510437, -0.1051291972398758, -0.06998096406459808, 0.02932487241923809, -0.05241619423031807, -0.00044080408406443894, 0.2737574577331543, 0.098285973072052, 0.019181279465556145, -0.12478402256965637, 0.022403962910175323, -0.015864402055740356, -0.03681693226099014, 0.041030414402484894, -0.008345197886228561, 0.036301352083683014, 0.1370822787284851, -0.003355841152369976, -0.06377892941236496, -0.06076398119330406, -0.19287756085395813, 0.1884610652923584, 0.03666352108120918, 0.03753095120191574, 0.003097070148214698, -0.03990791365504265, -0.11140366643667221, -0.012977083213627338, -0.0340830497443676, -0.06446479260921478, -0.13136547803878784, -0.0030188974924385548, 0.06078042462468147, 0.12874162197113037, 0.14483720064163208, -0.009980169124901295, -0.027869824320077896, 0.05299268290400505, -0.16558921337127686, 0.15950505435466766, 0.06292405724525452, 0.14212936162948608, -0.03749283775687218, 0.04334553703665733, -0.02276548556983471, -0.056414101272821426, -0.0056659020483493805, -0.009219334460794926, -0.17370623350143433, -0.06060226634144783, -0.0344185046851635, 0.21822489798069, 0.002213142579421401, 0.106450155377388, -0.06083410978317261, 0.012325088493525982, 0.0913461297750473, -0.06291329115629196, 0.023890972137451172, 0.060528840869665146, -0.02539120241999626, 0.04515084624290466, -0.13205662369728088, -0.0016820501768961549, -0.043375544250011444, 0.04332980141043663, -0.029912438243627548, 0.015572360716760159, 0.022483620792627335, -0.11795486509799957, 0.11138149350881577, -0.09995048493146896, 0.0013171990867704153, -0.12065935134887695, -0.11025731265544891, -0.0008043963462114334, -0.021656904369592667, -0.053385213017463684, -0.02509067952632904, -0.08248317241668701, -0.029090622439980507, -0.0289567019790411, -0.05873892828822136, -0.08285771310329437, -0.09041634202003479, 0.0325498953461647, -0.06280460953712463, 0.06789284199476242, -0.21559005975723267, -0.01117352768778801, -0.06198747456073761, 0.07508787512779236, -0.08797049522399902, 0.08515226095914841, -0.14938987791538239, 0.11740011721849442, -0.082463338971138, -0.04419403895735741, -0.03389747068285942, 0.04504692181944847, -0.19403177499771118, 0.11806639283895493, -0.11980219930410385, -0.05423210561275482, 0.11462770402431488, -0.057459764182567596, -0.05617557466030121, 0.05675061419606209, 0.07674037665128708, 0.06636777520179749, 0.07403329014778137, 0.3365274965763092, 0.005306276027113199, -0.03766734525561333, 0.04954875260591507, 0.16588561236858368, -0.08128488808870316, -0.04981042817234993, 0.10474127531051636, -0.08241197466850281, -0.055219344794750214, 0.010851189494132996, 0.021250402554869652, 0.024438627064228058, -0.04349802806973457, -0.07720553129911423, 0.016724970191717148, 0.00000480810786029906, 0.08037891238927841, 0.002273490885272622, 0.06277992576360703, -0.05230807140469551, 0.011121168732643127, -0.07092523574829102, 0.038670334964990616, 0.03327329829335213, 0.017494551837444305, -0.12873464822769165, 0.006278312299400568, 0.07180188596248627, 0.020085876807570457, -0.1006266176700592, -0.09054162353277206, 0.07727532088756561, 0.09436140209436417, 0.12080783396959305, 0.15360982716083527, -0.05027622729539871, -0.08017802983522415, -0.03216930106282234, 0.0651378259062767, 0.12161604315042496, 0.008024926297366619, 0.01049513928592205, -0.122683085501194, 0.044643666595220566, 0.00035042077070102096, 0.06954079121351242, -0.11467763036489487, 0.001786688924767077, 0.10435870289802551, -0.03182508423924446, 0.016049768775701523, 0.12456916272640228, -0.01063024252653122, 0.11988721787929535, -0.01000172458589077, 0.000024396926164627075, 0.09105066955089569, -0.069487564265728, -0.10161954909563065, 0.18118256330490112, -0.038898270577192307, 0.08618844300508499, 0.14098629355430603, -0.036192893981933594, 0.033200204372406006, -0.0027137345168739557, 0.022702215239405632, -0.0007076280890032649, 0.041736725717782974, -0.022811617702245712, -0.00580328656360507, 0.017613088712096214, 0.0840778723359108, -0.05439697951078415, 0.020374175161123276, -0.028484635055065155, 0.016861779615283012, -0.08300556987524033, 0.09906119108200073, 0.10651418566703796, -0.20164521038532257, 0.14125150442123413, 0.14605163037776947, 0.030425677075982094, 0.17167295515537262, -0.06664670258760452, 0.033100273460149765, -0.0004559887747745961, 0.08429025113582611, -0.028512312099337578, 0.08591736853122711, -0.22392848134040833, -0.002197782974690199, 0.06026630848646164, 0.11112526804208755, 0.023860782384872437, -0.12355193495750427, -0.08208907395601273, -0.0877331867814064, -0.10895805805921555, -0.16143837571144104, 0.03193129226565361, 0.057179078459739685, 0.06824424862861633, 0.024344805628061295, -0.1338966190814972, 0.1071881502866745, -0.08522576838731766, -0.0756751224398613, 0.1104716956615448, -0.15401165187358856, -0.21592943370342255, -0.1629330962896347, -0.059099409729242325, -0.08491156995296478, 0.027044503018260002, 0.018523603677749634, -0.012807040475308895, -0.03886732459068298, -0.0223089512437582, 0.14777597784996033, -0.1665446013212204, -0.09240774065256119, -0.053027015179395676, 0.1108471155166626, -0.11810832470655441, -0.07660660147666931, -0.030873868614435196, 0.02384849637746811, -0.011646085418760777, 0.09582435339689255, -0.1713835597038269, 0.029622316360473633, 0.2417871654033661, -0.0015833572251722217, 0.021897468715906143, -0.1250792145729065, 0.04460010305047035, -0.11169295758008957, -0.043177712708711624, 0.03854783624410629, 0.02976291999220848, -0.019230864942073822, 0.26665928959846497, 0.05142817273736, -0.06665242463350296, -0.032830774784088135, -0.01571553759276867, -0.05711987242102623, -0.22590762376785278, -0.15071266889572144, -0.10287728905677795, 0.20965690910816193, 0.028868786990642548, 0.09560820460319519, 0.08822684735059738, -0.04263713210821152, -0.0071952068246901035, 0.06107744947075844, 0.04374634101986885, 0.04023316502571106, 0.31016427278518677, -0.04017772153019905, 0.045539289712905884, -0.08050274848937988, -0.037843264639377594, 0.05516907945275307, 0.18373410403728485, 0.18951991200447083, 0.24919342994689941, 0.15840384364128113, 0.06554872542619705, 0.06720822304487228, 0.1198546513915062, 0.034948091953992844, 0.09965209662914276, 0.005234541371464729, -0.013941223733127117, -0.03697023540735245, 0.07288289815187454, 0.04824299365282059, 0.24143706262111664, -0.15912926197052002, 0.01752168871462345, -0.20922154188156128, 0.04387703910470009, 0.13673292100429535, 0.10264421999454498, -0.0582270473241806, 0.10437923669815063, 0.09541201591491699, -0.0586383193731308, -0.0854727253317833, 0.13075192272663116, 0.0713246539235115, -0.10723021626472473, 0.10414035618305206, 0.05390265956521034, 0.10309996455907822, -0.07004263997077942, 0.018979519605636597, -0.0709390789270401, -0.2204718440771103, 0.04444986581802368, 0.13728156685829163, -0.15299636125564575, 0.2991582751274109, 0.058503277599811554, -0.0432092621922493, -0.12742382287979126, -0.07896263897418976, -0.017796054482460022, 0.24997547268867493, 0.126593679189682, 0.003734051249921322, -0.06125365197658539, -0.1495732218027115, -0.04724026471376419, 0.007412321865558624, 0.11053833365440369, -0.018093345686793327, -0.054803118109703064, -0.0007557988865301013, 0.023132650181651115, -0.00918511487543583, -0.005519607104361057, -0.12506091594696045, -0.07033851742744446, -0.021391266956925392, 0.22134846448898315, 0.017434410750865936, -0.03270019590854645, 0.0031714066863059998, -0.1388087123632431, 0.11218754202127457, -0.23984366655349731, -0.030900010839104652, -0.06116413325071335, -0.13103097677230835, 0.08058356493711472, 0.00641452893614769, -0.06609508395195007, -0.07653382420539856, -0.03717872127890587, -0.035849425941705704, -0.07430195808410645, 0.13506878912448883, -0.010521949268877506, -0.021855570375919342, -0.030746033415198326, 0.13414007425308228, -0.12481526285409927, 0.09752015024423599, -0.01562019344419241, -0.0010872413404285908, 0.06613201647996902, -0.08763832598924637, 0.019453365355730057, -0.0243283212184906, -0.03247413784265518, 0.22285816073417664, -0.12267012149095535, -0.11648090928792953, -0.04996819794178009, -0.06418844312429428, 0.26741302013397217, 0.31501516699790955, -0.036564748734235764, 0.10042130202054977, 0.1523447036743164, -0.058430016040802, -0.3289158344268799, -0.007710423786193132, -0.13347795605659485, 0.01645602472126484, -0.07226204127073288, -0.14162272214889526, -0.0192791149020195, 0.09986331313848495, -0.059710510075092316, 0.17651870846748352, -0.26314303278923035, -0.06404701620340347, 0.05032940208911896, -0.09421766549348831, 0.09112045168876648, -0.14254242181777954, -0.1139623299241066, -0.1184367835521698, -0.09167942404747009, 0.10890384763479233, 0.029099080711603165, 0.10189803689718246, -0.018114298582077026, 0.019694624468684196, -0.01840369589626789, 0.04321395978331566, 0.19203288853168488, 0.12471270561218262, 0.06754884123802185, -0.02440292201936245, -0.1627221256494522, 0.24528077244758606, 0.027316777035593987, 0.024199331179261208, -0.060533687472343445, -0.062244679778814316, -0.05522667244076729, -0.06187864765524864, -0.09007061272859573, 0.055879704654216766, -0.01849326491355896, -0.0347413532435894, -0.09306193888187408, 0.052987322211265564, -0.0770425871014595, 0.004970276728272438, 0.2679230570793152, -0.09251102060079575, -0.04128002002835274, 0.06071699410676956, 0.11938929557800293, -0.08570270240306854, 0.04109232872724533, -0.03653787076473236, -0.06381548941135406, 0.09102115035057068, -0.12014108151197433, 0.017244359478354454, 0.11461181193590164, -0.022776324301958084, 0.12212487310171127, 0.06960003823041916, 0.008718656376004219, -0.0033507044427096844, 0.13678820431232452, 0.07999637722969055, -0.20554094016551971, 0.0475926510989666, -0.06827173382043839, 0.06162699684500694, 0.013376804068684578, 0.045226506888866425, 0.061007898300886154, 0.049574919044971466, 0.016639715060591698, -0.03675966337323189, -0.1002269834280014, 0.009192398749291897, 0.04108387231826782, 0.07605034857988358, -0.09359974414110184, 0.13637344539165497, 0.13683488965034485, -0.0691893994808197, -0.10720822215080261, 0.07787612080574036, -0.10758212208747864, -0.08901532739400864, -0.14085078239440918, 0.028706852346658707, 0.03274700790643692, -0.12273001670837402, 0.04423503205180168, -0.1787792444229126, 0.007725246250629425, 0.13013853132724762, -0.008998841047286987, 0.10182591527700424, -0.003260668832808733, -0.08128347992897034, 0.07277515530586243, -0.01183294877409935, -0.21370431780815125, 0.017445364966988564, -0.147242471575737, -0.03533331677317619, -0.0031094858422875404, 0.12724243104457855, -0.038479700684547424, -0.07263651490211487, -0.14823584258556366, 0.08260053396224976, -0.09697927534580231, 0.06737593561410904, -0.06329332292079926, 0.01644604653120041, 0.0749284103512764, -0.020641636103391647, -0.05594005063176155, -0.06956998258829117, -0.13009607791900635, -0.004985031206160784, -0.012843622826039791, 0.17239388823509216, 0.010653238743543625, -0.05680219829082489, 0.028759287670254707, -0.007710614241659641, 0.12082954496145248, 0.003167516551911831, -0.09409916400909424, 0.12058506906032562, -0.11290022730827332, -0.016636304557323456, 0.1390697956085205, 0.04594893008470535, 0.033812589943408966, 0.0421135313808918, -0.02637535333633423, 0.06822953373193741, 0.06962744891643524, 0.12850148975849152, -0.1121901422739029, -0.10495081543922424, -0.007474516052752733, -0.15793082118034363, -0.17372480034828186, 0.03635823726654053, -0.04024416208267212, 0.08207370340824127, -0.006576486397534609, 0.11499759554862976, 0.010322987101972103, -0.013479160144925117, 0.012917354702949524, 0.0072568487375974655, -0.02910255454480648, -0.02477220818400383, 0.03758667781949043, -0.08337676525115967, 0.00843849964439869, 0.004165775142610073, 0.3490802049636841, 0.05920926854014397, -0.12303599715232849, 0.050051864236593246, -0.006313641089946032, -0.0718173086643219, 0.026105698198080063, 0.2511977255344391, 0.10803534090518951, -0.0005810070433653891, 0.01488301157951355, -0.038527894765138626, -0.019452817738056183, 0.02696802467107773, 0.13440969586372375, 0.18230649828910828, 0.03133918717503548, 0.05560553818941116, 0.15109601616859436, -0.06136360391974449, -0.010532322339713573, 0.0592256523668766, 0.04334485903382301, 0.04262784123420715, -0.07523808628320694, 0.10694760829210281, 0.04851299151778221, -0.08264961838722229, 0.052611544728279114, -0.07470179349184036, -0.08600352704524994, -0.11718715727329254, -0.11838621646165848, -0.07634251564741135, -0.13975736498832703, 0.052797961980104446, -0.02669691853225231, 0.0036640651524066925, 0.20203356444835663, 0.07717660069465637, 0.005358630325645208, -0.011423252522945404, -0.21784713864326477, -0.06121940165758133, 0.07937493175268173, -0.04024729132652283, 0.0415128655731678, -0.10801497101783752, -0.030254224315285683, -0.0050131212919950485, -0.100704126060009, 0.0016586919082328677, 0.057255491614341736, -0.07717499136924744, -0.047122154384851456, -0.19613932073116302, -0.040903154760599136, -0.023150257766246796, 0.0781077966094017, 0.03337359428405762, 0.2010541707277298, 0.049520574510097504, -0.06377902626991272, 0.046517595648765564, 0.08736653625965118, 0.008348701521754265, -0.2545262277126312, -0.04837006703019142, 0.24564515054225922, -0.024328945204615593, 0.06840430200099945, -0.05389208346605301, -0.09960900992155075, -0.062376756221055984, 0.11448822915554047, 0.29762542247772217, -0.037232983857393265, -0.010394105687737465, -0.04124608635902405, 0.01215222105383873, -0.012261886149644852, 0.1011398509144783, -0.027470877394080162, 0.10770361125469208, 0.0033923937007784843, -0.05027910694479942, 0.0024882855359464884, 0.04353894665837288, -0.14943468570709229, 0.03633008897304535, 0.007544776424765587, -0.08495177328586578, -0.11398327350616455, 0.15261775255203247, -0.16109678149223328, 0.11793301999568939, 0.20886273682117462, -0.06797631084918976, -0.06801410019397736, -0.02803242951631546, -0.00866567250341177, -0.024096239358186722, 0.05107325315475464, -0.09204956889152527, -0.11929905414581299, -0.15319174528121948, -0.035244569182395935, -0.19651584327220917, -0.04429614171385765, 0.057870760560035706, 0.07479716092348099, 0.12703478336334229, -0.009267779067158699, 0.23737438023090363, 0.06377507001161575, 0.044019684195518494, 0.006867584306746721, 0.13470660150051117, 0.01555788703262806, 0.09282169491052628, -0.024223994463682175, 0.01821151003241539, -0.02574543096125126, 0.1203446090221405, 0.10226714611053467, -0.056711919605731964, 0.033342014998197556, 0.09167656302452087, -0.0696234181523323, -0.16973860561847687, -0.03019372560083866, -0.10379299521446228, 0.040813103318214417, 0.06700774282217026, 0.017210429534316063, -0.06446957588195801, -0.006127696018666029, -0.01762954145669937, 0.021672794595360756, -0.03325744345784187, -0.13152913749217987, -0.046445876359939575, -0.026488104835152626, 0.01916135847568512, 0.07264777272939682, -0.196880042552948, 0.023383114486932755, -0.05583522841334343, 0.08393798768520355, -0.03212042152881622, 0.07487473636865616, 0.0735054612159729, -0.048675287514925, 0.0019706138409674168, -0.4996557831764221, 0.07545538246631622, 0.06430509686470032, -0.06804617494344711, -0.07578154653310776 ]
f1f88673ac0f96584b63d94a5aaeea9cc8ff09c4
# Dataset Card for "Wikipedia_5gram_less_orders.fr" [More Information needed](https://github.com/huggingface/datasets/blob/main/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
lshowway/Wikipedia_5gram_less_orders.fr
[ "region:us" ]
2023-02-07T22:19:57+00:00
{"dataset_info": {"features": [{"name": "text", "dtype": "string"}], "splits": [{"name": "train", "num_bytes": 1171562088, "num_examples": 651563}], "download_size": 753453444, "dataset_size": 1171562088}}
2023-02-07T22:33:58+00:00
[]
[]
TAGS #region-us
# Dataset Card for "Wikipedia_5gram_less_orders.fr" More Information needed
[ "# Dataset Card for \"Wikipedia_5gram_less_orders.fr\"\n\nMore Information needed" ]
[ "TAGS\n#region-us \n", "# Dataset Card for \"Wikipedia_5gram_less_orders.fr\"\n\nMore Information needed" ]
[ 6, 21 ]
[ "passage: TAGS\n#region-us \n# Dataset Card for \"Wikipedia_5gram_less_orders.fr\"\n\nMore Information needed" ]
[ 0.011567363515496254, 0.2361268699169159, -0.005325991194695234, 0.10668546706438065, 0.11314845830202103, 0.047705553472042084, 0.039009157568216324, 0.13182257115840912, 0.21810178458690643, 0.0013360371813178062, 0.10260830819606781, 0.02851475402712822, 0.007360514253377914, 0.22749172151088715, -0.1277768760919571, -0.12841813266277313, 0.06225679814815521, 0.022726383060216904, -0.10720037668943405, 0.02073146402835846, 0.05628836527466774, -0.06216217204928398, 0.04250253364443779, -0.1362379789352417, -0.10771643370389938, 0.09151961654424667, 0.014093528501689434, -0.05699938163161278, 0.014968108385801315, -0.015311015769839287, 0.08264300972223282, 0.03075970895588398, -0.03071371652185917, -0.13007402420043945, 0.030743295326828957, 0.009697921574115753, -0.049702174961566925, 0.05151847004890442, -0.043678246438503265, -0.08727626502513885, -0.16403605043888092, -0.06952755153179169, -0.018585043027997017, 0.02575325034558773, -0.10262147337198257, -0.2102777659893036, 0.008230714127421379, 0.04962911829352379, -0.012152434326708317, -0.05112892761826515, 0.03475452587008476, 0.014906233176589012, -0.1639097034931183, 0.022129405289888382, 0.1844453662633896, -0.08107580989599228, 0.01764608547091484, 0.1641317754983902, -0.18421462178230286, 0.08021654933691025, -0.05587824806571007, 0.06481901556253433, 0.0875670537352562, -0.05244708061218262, 0.036725882440805435, -0.016518164426088333, -0.033088039606809616, 0.01113118790090084, 0.02677660621702671, -0.05479348823428154, 0.43399351835250854, 0.08922764658927917, 0.055826641619205475, -0.007823728024959564, -0.018280336633324623, -0.02024783380329609, -0.025288056582212448, 0.05439865589141846, 0.06867358088493347, 0.038299813866615295, 0.12061581760644913, 0.014475001953542233, -0.12569409608840942, 0.011572842486202717, -0.11904485523700714, 0.09924270212650299, -0.02509145997464657, 0.12707489728927612, -0.16235563158988953, -0.07145603001117706, -0.2594257891178131, -0.05274464190006256, -0.016226734966039658, -0.15150712430477142, -0.05626075342297554, -0.006521543953567743, -0.017869001254439354, 0.08399111032485962, 0.14340905845165253, 0.08875593543052673, -0.011700897477567196, 0.02680314891040325, -0.01947350613772869, 0.09268414229154587, 0.2141590565443039, -0.1566738337278366, -0.012166930362582207, 0.03731708228588104, 0.03178119286894798, 0.0117936497554183, -0.04352514073252678, -0.058235932141542435, -0.05112087354063988, -0.06002862751483917, -0.08491531759500504, 0.05080220103263855, -0.04190514236688614, -0.1196192279458046, -0.077212393283844, -0.06319332867860794, 0.20878545939922333, -0.0972030758857727, 0.027173880487680435, 0.057988882064819336, -0.0435352548956871, 0.13907146453857422, -0.06271417438983917, -0.09538599848747253, -0.001440565218217671, 0.0833549052476883, -0.06673456728458405, -0.03381030634045601, 0.06251323968172073, 0.032213617116212845, 0.036106906831264496, -0.1304258108139038, 0.05380639806389809, -0.069781593978405, -0.07319880276918411, 0.08352461457252502, 0.10731860995292664, -0.04977479204535484, 0.12223593145608902, 0.0595228411257267, 0.022098734974861145, -0.026022233068943024, -0.04124723747372627, 0.10898428410291672, -0.08772122114896774, 0.05331548675894737, -0.031201882287859917, 0.12767799198627472, -0.17874379456043243, 0.04707595705986023, -0.10425512492656708, -0.016674956306815147, -0.07177314907312393, -0.030067024752497673, -0.11837492138147354, -0.018233472481369972, -0.05295354500412941, -0.03462200611829758, -0.12144197523593903, 0.026124577969312668, -0.06850354373455048, 0.12116266041994095, -0.06585785746574402, -0.09231886267662048, 0.11495987325906754, -0.10155592858791351, 0.00684010423719883, 0.0776715874671936, -0.02334272488951683, -0.0330326147377491, 0.09129869192838669, 0.19754649698734283, 0.03895100951194763, -0.09146471321582794, -0.033991049975156784, 0.10923073440790176, -0.10299191623926163, -0.1543942093849182, 0.01778055727481842, -0.036002255976200104, -0.11624272912740707, 0.10840629041194916, -0.012091031298041344, -0.020276835188269615, -0.014975715428590775, -0.039942868053913116, -0.0631498396396637, -0.1255909949541092, 0.21003387868404388, 0.012483504600822926, 0.05242342874407768, -0.03516988828778267, 0.056303124874830246, -0.03788591921329498, 0.03896833956241608, -0.00010175041825277731, -0.07493655383586884, 0.0723281055688858, 0.15191428363323212, -0.07290827482938766, 0.017555253580212593, -0.14842726290225983, 0.06748697906732559, 0.05897056683897972, -0.11986690759658813, 0.0669245794415474, 0.12653031945228577, 0.08782629668712616, -0.0693664699792862, -0.08453163504600525, 0.11055944114923477, 0.020529672503471375, 0.004477381706237793, -0.0021001561544835567, -0.06199214980006218, 0.038361866027116776, -0.026788610965013504, 0.020577622577548027, -0.11222786456346512, -0.03471136465668678, 0.05018862709403038, 0.13169768452644348, -0.0013539418578147888, 0.03689995035529137, 0.04878097027540207, -0.07657831162214279, 0.008590727113187313, -0.022498462349176407, 0.0320073626935482, -0.08767612278461456, 0.08869050443172455, -0.17245560884475708, -0.025466734543442726, 0.17169980704784393, 0.18336747586727142, 0.03401634097099304, 0.018043972551822662, 0.0055667078122496605, 0.015162034891545773, 0.04406360536813736, -0.1758803129196167, 0.05414215847849846, -0.1456921249628067, -0.04243607446551323, 0.052920591086149216, -0.07038146257400513, 0.00811962690204382, 0.1067725270986557, -0.03605007752776146, -0.15444786846637726, -0.00015947702922858298, 0.23384137451648712, -0.2841411530971527, 0.12517710030078888, 0.2913364768028259, 0.12515221536159515, 0.19679579138755798, 0.01436433382332325, -0.07661981135606766, 0.01490821037441492, 0.020355038344860077, -0.07531698048114777, 0.21884247660636902, -0.09485149383544922, -0.00238001998513937, 0.10598746687173843, -0.05196726694703102, 0.028308195993304253, -0.09089193493127823, -0.02248719520866871, -0.026416916400194168, -0.027571778744459152, 0.000786398712079972, 0.017117243260145187, 0.014123148284852505, 0.11160355061292648, 0.022430304437875748, 0.005046346224844456, 0.07316519320011139, 0.010217246599495411, 0.023456193506717682, 0.09299298375844955, -0.1124284490942955, -0.39331379532814026, -0.014338206499814987, 0.03134286031126976, -0.12326380610466003, 0.01611984521150589, -0.03360815718770027, -0.24158534407615662, -0.10547219216823578, 0.018408067524433136, -0.04972228780388832, -0.15509472787380219, 0.04895355552434921, 0.010079491883516312, 0.1220446303486824, -0.016557151451706886, -0.08228190988302231, -0.04513625428080559, -0.06252963840961456, 0.19475601613521576, 0.08697889745235443, -0.06835828721523285, -0.002919361460953951, 0.04007604718208313, -0.048916857689619064, 0.10429562628269196, 0.021508781239390373, 0.11812546104192734, -0.007672674022614956, 0.025087829679250717, 0.13081517815589905, 0.036772601306438446, -0.04151580482721329, 0.15961609780788422, 0.04450608789920807, -0.14188499748706818, 0.006043334025889635, 0.07890079915523529, -0.1486392766237259, -0.1479482203722, -0.07068581879138947, -0.08599752187728882, 0.061490803956985474, 0.23919539153575897, 0.08374080061912537, 0.018082374706864357, 0.08598823100328445, 0.012561926618218422, 0.03985648974776268, -0.06498605757951736, -0.05537332966923714, 0.02282138355076313, 0.05394361540675163, 0.0026196553371846676, -0.16148370504379272, -0.03189830109477043, 0.1622258424758911, 0.1935127079486847, 0.23270097374916077, 0.10847572237253189, 0.07227668166160583, 0.0021651829592883587, 0.11858966201543808, 0.14799566566944122, 0.16152766346931458, 0.14579784870147705, -0.014088155701756477, -0.01445043459534645, -0.02297932095825672, -0.048144299536943436, -0.001627612509764731, 0.16143882274627686, -0.15824003517627716, -0.02179979905486107, -0.12007872760295868, 0.046684104949235916, 0.005376901943236589, 0.08394770324230194, -0.06923238188028336, -0.008841263130307198, 0.03182421997189522, 0.0657588467001915, -0.05124795436859131, 0.0742969959974289, 0.01448837574571371, 0.006671855691820383, 0.1453881710767746, -0.02162064239382744, 0.057431962341070175, -0.12252654135227203, 0.0338965579867363, -0.14292800426483154, 0.014442507177591324, 0.04247262328863144, 0.08484067767858505, -0.13946491479873657, 0.22492599487304688, 0.043947625905275345, -0.0012807355960831046, -0.17558716237545013, -0.04699587821960449, -0.012339632026851177, -0.04305117949843407, 0.18819040060043335, 0.025132833048701286, -0.12542328238487244, -0.07091280072927475, -0.07653237879276276, -0.02004627138376236, 0.07710099220275879, -0.009305290877819061, -0.051523156464099884, -0.014391154982149601, -0.05247454345226288, -0.03593699634075165, -0.05592081695795059, -0.12330350279808044, -0.1661195456981659, 0.03278884291648865, 0.028840456157922745, -0.29275816679000854, 0.03893813118338585, -0.020054690539836884, -0.016292763873934746, 0.13010536134243011, 0.07653973251581192, -0.10252100229263306, -0.11522134393453598, 0.10693848878145218, 0.17194493114948273, -0.008088559843599796, -0.013154488988220692, -0.09091778844594955, 0.09145595878362656, -0.11926458775997162, -0.2288675308227539, 0.05740676075220108, -0.0303377415984869, 0.03990190848708153, -0.07734120637178421, 0.17754511535167694, -0.006538902875036001, -0.019018899649381638, -0.014220118522644043, 0.00576198473572731, 0.024172144010663033, -0.08070749789476395, 0.22065739333629608, -0.07136210799217224, -0.06168011203408241, 0.1742718517780304, 0.02528623677790165, -0.12331768870353699, 0.06363077461719513, 0.021698715165257454, 0.039570849388837814, 0.2140641063451767, -0.044049233198165894, 0.14607183635234833, 0.23159341514110565, -0.016402630135416985, -0.15787552297115326, -0.02556338720023632, -0.17079932987689972, -0.03613487631082535, -0.0465870201587677, -0.21302087604999542, 0.11471602320671082, 0.14313051104545593, -0.03281260281801224, 0.2648952305316925, -0.06546573340892792, -0.03732912614941597, 0.1385948807001114, 0.13204576075077057, 0.4413151144981384, -0.09134259819984436, -0.008059272542595863, -0.07873183488845825, -0.19391530752182007, 0.3343512713909149, -0.14347627758979797, 0.08972986787557602, -0.04059123620390892, -0.09838205575942993, -0.007518057711422443, -0.015479743480682373, 0.1412668228149414, 0.04425462707877159, 0.09244324266910553, -0.0149924885481596, -0.12336010485887527, 0.11185699701309204, -0.043114691972732544, 0.11620089411735535, 0.03732319176197052, -0.02198084630072117, -0.02009408362209797, -0.06339077651500702, -0.07096029818058014, 0.04378143697977066, -0.0015148563543334603, -0.057558804750442505, -0.09575802087783813, -0.011767957359552383, -0.05910428985953331, 0.019717508926987648, 0.16152317821979523, 0.05123865604400635, 0.004449917934834957, 0.20319554209709167, -0.0443897508084774, -0.024375615641474724, -0.07814973592758179, -0.042937856167554855, -0.07552389800548553, 0.090145044028759, -0.3287665545940399, 0.04920371249318123, 0.07737334817647934, 0.0204587671905756, 0.06235041096806526, 0.007984421215951443, -0.008052336983382702, -0.05283212661743164, 0.14195488393306732, -0.13851812481880188, -0.20539063215255737, 0.08923579752445221, -0.31264322996139526, 0.023059161379933357, -0.01404585037380457, 0.08086847513914108, 0.01612652838230133, -0.009745728224515915, -0.021300414577126503, 0.04286617785692215, -0.04387292638421059, 0.08655354380607605, 0.10369587689638138, 0.018511805683374405, -0.2052464336156845, 0.3184297978878021, 0.0739155262708664, -0.09283970296382904, 0.011240803636610508, 0.005285193677991629, -0.09757467359304428, -0.09187617152929306, -0.052373699843883514, 0.019051123410463333, -0.017068635672330856, -0.032881204038858414, -0.061633866280317307, -0.08195322006940842, 0.020648963749408722, -0.07840630412101746, 0.01313723437488079, 0.0021279030479490757, 0.014805172570049763, -0.03898489102721214, -0.05038924887776375, -0.03312204033136368, -0.06262747198343277, 0.0017397631891071796, -0.09171610325574875, -0.2805081307888031, -0.040143582969903946, 0.1002112403512001, -0.05574014037847519, -0.05103698745369911, -0.11731837689876556, 0.009608077816665173, -0.06591463088989258, 0.03828095644712448, -0.0925467386841774, -0.016416892409324646, 0.008359736762940884, -0.00823204405605793, -0.000537464686203748, -0.004942493978887796, -0.15075398981571198, 0.0510292686522007, 0.026651756837964058, 0.04930905997753143, -0.06772805005311966, -0.0282108373939991, 0.06135590001940727, -0.01374075748026371, 0.10684200376272202, 0.1287468522787094, -0.07691305130720139, 0.13658173382282257, -0.1452651172876358, -0.18896570801734924, 0.0898733139038086, 0.0574323832988739, 0.06904814392328262, -0.022853977978229523, 0.04027680307626724, 0.0581115297973156, 0.029918434098362923, 0.03156421706080437, -0.09895619750022888, -0.08583347499370575, -0.09732010960578918, -0.13077367842197418, -0.012179231271147728, 0.06627418845891953, -0.0555771179497242, 0.27794283628463745, -0.05789836123585701, 0.0038550731260329485, 0.05732332915067673, -0.012411831878125668, -0.08993479609489441, -0.039854854345321655, -0.03896027430891991, -0.19181601703166962, 0.0037776436656713486, 0.042193975299596786, 0.02091960981488228, -0.015272694639861584, 0.39531123638153076, -0.039514511823654175, 0.01973583549261093, -0.001887227757833898, 0.047091029584407806, -0.0694289356470108, 0.09463176131248474, 0.23534944653511047, 0.05146168917417526, -0.09151659905910492, -0.03398734703660011, 0.013420864008367062, 0.10189793258905411, 0.1176220253109932, 0.18246564269065857, 0.18729647994041443, -0.015516864135861397, -0.01995546743273735, 0.022954199463129044, -0.07854527980089188, 0.03869092836976051, 0.20127113163471222, -0.005735103040933609, 0.09508051723241806, 0.03591283783316612, -0.3709344267845154, 0.10082577168941498, -0.05673158913850784, 0.10561464726924896, -0.04145677387714386, -0.02799312397837639, -0.07075117528438568, -0.2263583242893219, -0.07758777588605881, -0.07246541976928711, 0.047494933009147644, -0.06199745461344719, -0.028839660808444023, 0.13305431604385376, 0.0934247225522995, -0.025275330990552902, -0.030316494405269623, 0.034592751413583755, -0.00008289563993457705, 0.16510532796382904, -0.026621373370289803, -0.14559784531593323, -0.001340322196483612, -0.018278513103723526, 0.027800314128398895, -0.07502792775630951, -0.031557291746139526, 0.04046471044421196, 0.042428817600011826, 0.01243569515645504, -0.05542872101068497, -0.05489005520939827, -0.024323606863617897, 0.016787555068731308, -0.15567857027053833, 0.11185792833566666, 0.027998054400086403, 0.006024640519171953, 0.027844717726111412, 0.052535880357027054, 0.06392616778612137, 0.0016045186202973127, -0.09619373083114624, -0.15673616528511047, 0.02275167778134346, 0.10162360221147537, 0.04147787392139435, -0.05433211103081703, -0.059657834470272064, 0.22958149015903473, 0.17638219892978668, 0.0645618736743927, 0.051621466875076294, 0.03145381063222885, 0.01535115297883749, 0.08994131535291672, 0.13078154623508453, 0.0029922339599579573, 0.04477427154779434, -0.010334741324186325, -0.04748993366956711, 0.035253122448921204, -0.07053808867931366, -0.12009161710739136, 0.07526999711990356, 0.11537109315395355, -0.0038384173531085253, -0.13565702736377716, 0.009447239339351654, -0.06441273540258408, -0.018694696947932243, 0.07776078581809998, -0.18831945955753326, -0.1390381157398224, -0.11466265469789505, -0.0657663345336914, 0.030024027451872826, -0.0006272373138926923, -0.10880329459905624, -0.056573983281850815, 0.0872809886932373, -0.008930940181016922, -0.2985754907131195, -0.16786809265613556, -0.06308131664991379, 0.05466679483652115, -0.0032433713786303997, 0.051598772406578064, -0.043023012578487396, 0.023089414462447166, -0.03313703462481499, -0.07394881546497345, 0.01616426184773445, 0.009623962454497814, 0.17093099653720856, -0.04836341366171837, 0.12663675844669342, -0.026685532182455063, -0.055460069328546524, 0.06691352277994156, 0.07326535880565643, -0.0860569104552269, 0.19851349294185638, -0.058098576962947845, -0.013583184219896793, 0.04315703362226486, -0.11876890808343887, 0.01761448383331299, 0.07934693247079849, -0.0022927066311240196, -0.06435765326023102, -0.03749268501996994, 0.1606527417898178, 0.032525431364774704, -0.11990085244178772, -0.07874178886413574, -0.009970003738999367, -0.0516791008412838, 0.13110345602035522, 0.019609935581684113, -0.017768943682312965, 0.049884818494319916, -0.07319886982440948, 0.03695207089185715, -0.057243600487709045, 0.06963582336902618, 0.10609252750873566, 0.10434511303901672, -0.04833328351378441, -0.1268652379512787, 0.03383597359061241, -0.0037928386591374874, 0.012818810530006886, -0.07659153640270233 ]
690b6eed2bb5517067427ef29ca459f70e84a757
# Dataset Card for "Wikipedia_5gram_more_orders.fr" [More Information needed](https://github.com/huggingface/datasets/blob/main/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
lshowway/Wikipedia_5gram_more_orders.fr
[ "region:us" ]
2023-02-07T22:34:13+00:00
{"dataset_info": {"features": [{"name": "text", "dtype": "string"}], "splits": [{"name": "train", "num_bytes": 1172289501, "num_examples": 652609}], "download_size": 747359831, "dataset_size": 1172289501}}
2023-02-07T22:35:34+00:00
[]
[]
TAGS #region-us
# Dataset Card for "Wikipedia_5gram_more_orders.fr" More Information needed
[ "# Dataset Card for \"Wikipedia_5gram_more_orders.fr\"\n\nMore Information needed" ]
[ "TAGS\n#region-us \n", "# Dataset Card for \"Wikipedia_5gram_more_orders.fr\"\n\nMore Information needed" ]
[ 6, 21 ]
[ "passage: TAGS\n#region-us \n# Dataset Card for \"Wikipedia_5gram_more_orders.fr\"\n\nMore Information needed" ]
[ 0.023148993030190468, 0.2423362135887146, -0.005482584238052368, 0.09678461402654648, 0.12862089276313782, 0.07078955322504044, 0.04767431691288948, 0.0995846688747406, 0.23839367926120758, -0.002608789596706629, 0.13051961362361908, 0.0069480594247579575, 0.008906790986657143, 0.24918480217456818, -0.059242963790893555, -0.12418190389871597, 0.04344020038843155, -0.01902894861996174, -0.12188466638326645, 0.034239958971738815, 0.022258736193180084, -0.06508229672908783, 0.06927841156721115, -0.12777447700500488, -0.1448366343975067, 0.1074022427201271, -0.04200826212763786, -0.06370611488819122, 0.050417061895132065, -0.02306072600185871, 0.06468982249498367, 0.0001262758014490828, -0.008012986741960049, -0.14066900312900543, 0.03263537958264351, -0.013444106094539165, -0.057613108307123184, 0.04242171719670296, -0.027839209884405136, -0.08336357772350311, -0.161535382270813, -0.05417082458734512, -0.02936433255672455, 0.004153022076934576, -0.12829215824604034, -0.21558251976966858, -0.0069793653674423695, 0.042955879122018814, -0.001857824856415391, -0.06382817775011063, 0.025770017877221107, -0.03591907024383545, -0.11022023111581802, 0.03378913179039955, 0.20206589996814728, -0.10687891393899918, 0.020401502028107643, 0.16780784726142883, -0.10596862435340881, 0.10119770467281342, -0.026598982512950897, 0.08040256053209305, 0.1137811690568924, -0.06186547130346298, 0.02276037447154522, -0.02866906300187111, -0.021036909893155098, 0.024355938658118248, -0.009177877567708492, -0.0625542625784874, 0.41534140706062317, 0.09558645635843277, 0.04093729332089424, -0.0054208654910326, -0.021494640037417412, -0.018688688054680824, -0.0023395756725221872, 0.051278892904520035, 0.06586996465921402, 0.004712772089987993, 0.16099213063716888, 0.002057044766843319, -0.14747533202171326, -0.00606402475386858, -0.12348521500825882, 0.09288075566291809, -0.0261236559599638, 0.13932134211063385, -0.141511932015419, -0.04466293379664421, -0.25835156440734863, -0.048022810369729996, -0.0044683245941996574, -0.11281777918338776, -0.0939372256398201, -0.021254217252135277, 0.004457446746528149, 0.07864352315664291, 0.15254072844982147, 0.06072563678026199, 0.010476214811205864, 0.043263863772153854, -0.06160604581236839, 0.102260060608387, 0.2526817321777344, -0.15255029499530792, -0.050964370369911194, 0.05522698909044266, -0.03179982304573059, -0.01687595807015896, -0.08140436559915543, -0.06962054967880249, -0.06834539771080017, -0.05762725695967674, -0.09324255585670471, 0.05049637332558632, -0.07375983148813248, -0.11803111433982849, -0.05176452174782753, -0.047094691544771194, 0.2138734608888626, -0.1061776801943779, 0.024216048419475555, 0.06339789927005768, -0.06522157788276672, 0.05312567204236984, -0.062496788799762726, -0.04266726225614548, 0.03670191764831543, 0.10178035497665405, -0.05215471610426903, -0.035920072346925735, 0.04699151962995529, 0.040628381073474884, 0.05754810944199562, -0.11590415984392166, 0.04759260267019272, -0.08047310262918472, -0.07535342872142792, 0.06191953644156456, 0.10134698450565338, -0.053605396300554276, 0.14545679092407227, 0.07019685953855515, 0.055184148252010345, -0.023548806086182594, -0.05280868336558342, 0.15886066854000092, -0.09961343556642532, 0.04123486950993538, -0.029600240290164948, 0.13766320049762726, -0.15586768090724945, 0.034955304116010666, -0.10664475709199905, 0.0022499416954815388, -0.07727344334125519, -0.02968575805425644, -0.09967467188835144, 0.01712009683251381, -0.062416236847639084, 0.004234567750245333, -0.10910452157258987, 0.024206319823861122, -0.09293771535158157, 0.12667593359947205, -0.07316769659519196, -0.06489238142967224, 0.14690248668193817, -0.09569855034351349, -0.07299061119556427, 0.057362526655197144, -0.021234197542071342, -0.004281229339540005, 0.04355117678642273, 0.19320838153362274, 0.03513775020837784, -0.1251872479915619, -0.02125862054526806, 0.09230778366327286, -0.11222388595342636, -0.15250471234321594, 0.039368074387311935, -0.01365776639431715, -0.09111598134040833, 0.09563887864351273, 0.01440555602312088, 0.010274725966155529, -0.015309680253267288, -0.04811280593276024, -0.03867681324481964, -0.11521990597248077, 0.16552063822746277, -0.0038097528740763664, 0.04606636241078377, -0.018438266590237617, 0.08292993158102036, -0.06803315877914429, 0.02450556866824627, 0.014191623777151108, -0.07247397303581238, 0.08356698602437973, 0.14093168079853058, -0.04075280949473381, 0.035072702914476395, -0.167046919465065, 0.05576826632022858, 0.05845770612359047, -0.12244252115488052, 0.0714578703045845, 0.11169879883527756, 0.08888158947229385, -0.03559837117791176, -0.02780180238187313, 0.08091358840465546, 0.03955504298210144, -0.006554052699357271, 0.03146094083786011, -0.06404478847980499, 0.035743001848459244, -0.04746418818831444, 0.046321894973516464, -0.13936130702495575, -0.057156287133693695, 0.05590697377920151, 0.12153580784797668, -0.01010346319526434, 0.025425899773836136, 0.043971624225378036, -0.06271404027938843, 0.01167121808975935, -0.00615170132368803, 0.030888332054018974, -0.09282898157835007, 0.08166726678609848, -0.13150514662265778, -0.029672864824533463, 0.2172132432460785, 0.15773999691009521, 0.04307620972394943, -0.018863709643483162, -0.07768872380256653, -0.0008642077445983887, 0.016064170747995377, -0.15901435911655426, 0.04040093719959259, -0.129227414727211, -0.029276197776198387, 0.06368613243103027, -0.060323718935251236, 0.005356188863515854, 0.12404903024435043, -0.026241429150104523, -0.1599275767803192, 0.010170487686991692, 0.2398248165845871, -0.2857184112071991, 0.10269871354103088, 0.32827243208885193, 0.1453082114458084, 0.22774197161197662, 0.027821898460388184, -0.08871546387672424, -0.006535692606121302, 0.04378760978579521, -0.08999524265527725, 0.18640367686748505, -0.12259049713611603, -0.02258414961397648, 0.08211621642112732, -0.06006021797657013, 0.00891615729779005, -0.09500358998775482, -0.021753715351223946, -0.014446008950471878, -0.03426726907491684, -0.003751663025468588, 0.009721027687191963, 0.0018142154440283775, 0.10874930024147034, 0.04296911135315895, -0.02144414745271206, 0.06521663814783096, -0.0041032214649021626, 0.0019207793520763516, 0.12004716694355011, -0.08702704310417175, -0.41152793169021606, -0.03587240353226662, -0.06133006513118744, -0.100172258913517, -0.0002803170355036855, -0.04191335663199425, -0.23774048686027527, -0.0573224313557148, 0.013872592709958553, -0.03415168449282646, -0.14422807097434998, 0.043953634798526764, -0.01753811165690422, 0.12235046178102493, -0.05735462158918381, -0.07038553059101105, -0.029673106968402863, -0.07454406470060349, 0.16635571420192719, 0.0869547426700592, -0.018686925992369652, 0.041616521775722504, 0.034491367638111115, -0.04706820100545883, 0.10823515802621841, 0.014525342732667923, 0.1377267688512802, -0.027131235226988792, 0.001599720912054181, 0.13122284412384033, -0.008292553946375847, -0.02788635902106762, 0.17671605944633484, 0.06226291507482529, -0.13263799250125885, 0.03569634258747101, 0.044159919023513794, -0.14699964225292206, -0.17458109557628632, -0.08451623469591141, -0.07373103499412537, 0.09324607253074646, 0.24703280627727509, 0.07519318908452988, 0.011559011414647102, 0.06584995239973068, 0.0633498951792717, 0.01640217937529087, -0.08315695822238922, -0.07181618362665176, 0.006412760354578495, 0.020668432116508484, -0.010107825510203838, -0.13829870522022247, -0.045780181884765625, 0.12237939983606339, 0.2106316238641739, 0.2289639711380005, 0.11618659645318985, 0.05016566440463066, 0.006305315066128969, 0.11536195129156113, 0.1261514574289322, 0.14576253294944763, 0.1508677452802658, -0.042109984904527664, -0.010861895978450775, -0.03939691558480263, -0.04077497497200966, 0.03970934823155403, 0.1651727259159088, -0.17990005016326904, -0.020781397819519043, -0.14127211272716522, 0.013403073884546757, 0.0037530087865889072, 0.0781710147857666, -0.10056321322917938, 0.04941335693001747, 0.024080146104097366, 0.08436936885118484, -0.07301173359155655, 0.062236033380031586, 0.028648892417550087, -0.038496918976306915, 0.13644206523895264, -0.01776701584458351, 0.04815936088562012, -0.11377831548452377, 0.01702253893017769, -0.1075725331902504, -0.015796903520822525, 0.029460715129971504, 0.09591618180274963, -0.1309603452682495, 0.2790878117084503, 0.03221385180950165, -0.061894990503787994, -0.1803353726863861, -0.026345206424593925, -0.050179895013570786, -0.045511651784181595, 0.2106425017118454, 0.02109544724225998, -0.12931369245052338, -0.1109679713845253, -0.04994135722517967, -0.030157623812556267, 0.10656813532114029, -0.025933420285582542, -0.06765300035476685, 0.028470978140830994, -0.05058472976088524, -0.06231433525681496, -0.01105254516005516, -0.1153150200843811, -0.15420150756835938, 0.02244459092617035, -0.01957504265010357, -0.2468726933002472, 0.04599154368042946, -0.028054254129529, -0.057670462876558304, 0.14546558260917664, 0.0954180359840393, -0.07174386084079742, -0.08749879896640778, 0.12403431534767151, 0.17540356516838074, -0.029296044260263443, -0.01693826913833618, -0.10153239965438843, 0.09746434539556503, -0.1281803995370865, -0.19593210518360138, 0.04631606116890907, -0.02383098378777504, 0.07589512318372726, -0.11379795521497726, 0.1814361959695816, 0.0018935686675831676, -0.025603333488106728, -0.01680551841855049, -0.008245820179581642, 0.04339165613055229, -0.06262471526861191, 0.24100002646446228, -0.12341636419296265, -0.037564754486083984, 0.19016115367412567, 0.021514475345611572, -0.08086567372083664, 0.051060546189546585, -0.008756694383919239, 0.08864235132932663, 0.18198804557323456, -0.03669551759958267, 0.14273154735565186, 0.2404448539018631, -0.03273332118988037, -0.16852161288261414, -0.020695237442851067, -0.11216858774423599, -0.0185003113001585, -0.01978742517530918, -0.256021112203598, 0.14263227581977844, 0.16903835535049438, -0.026705129072070122, 0.28385165333747864, -0.08035744726657867, -0.052198611199855804, 0.12977218627929688, 0.1047847643494606, 0.39386916160583496, -0.12273300439119339, -0.029205938801169395, -0.0885971412062645, -0.20423859357833862, 0.30777353048324585, -0.13705939054489136, 0.04683162271976471, -0.01841684989631176, -0.06319163739681244, -0.001367095741443336, -0.0315474234521389, 0.14847047626972198, 0.06406830251216888, 0.06749488413333893, -0.04995480552315712, -0.1113368347287178, 0.07315756380558014, -0.04695473983883858, 0.09974414110183716, 0.05476681515574455, -0.04350718855857849, -0.027911294251680374, -0.041556842625141144, -0.06640084087848663, 0.04815996065735817, 0.011450307443737984, -0.059529755264520645, -0.08916346728801727, 0.0034804248716682196, -0.10467789322137833, 0.02366468496620655, 0.1434844732284546, 0.03810812905430794, 0.012721204198896885, 0.20783191919326782, -0.05008728429675102, -0.05862409248948097, -0.07950838655233383, -0.03311697766184807, -0.06900763511657715, 0.07115055620670319, -0.33279046416282654, 0.03223695978522301, 0.11511091887950897, 0.023681381717324257, 0.09452539682388306, 0.013832536526024342, -0.053123705089092255, -0.017893467098474503, 0.1732986569404602, -0.1734638214111328, -0.2047148048877716, 0.07795221358537674, -0.2763544023036957, 0.013670800253748894, -0.01893879473209381, 0.0822560265660286, 0.01425871066749096, -0.014374452643096447, -0.015606317669153214, 0.033052388578653336, -0.049891356378793716, 0.09688180685043335, 0.08750823140144348, 0.03644157573580742, -0.1986701786518097, 0.29672476649284363, 0.09559814631938934, -0.09132639318704605, -0.004102272447198629, 0.02272704616189003, -0.06428256630897522, -0.08318186551332474, -0.09080316126346588, 0.031894486397504807, -0.010770280845463276, -0.06274951249361038, -0.037147246301174164, -0.05148329213261604, 0.019023682922124863, -0.049651023000478745, 0.031090538948774338, -0.018201814964413643, 0.0444362573325634, -0.04247042536735535, -0.031691379845142365, -0.021690666675567627, -0.07624176144599915, 0.011039108969271183, -0.09490019083023071, -0.26406130194664, -0.0248080063611269, 0.16539230942726135, -0.058899249881505966, -0.07734833657741547, -0.10376200824975967, 0.021414922550320625, -0.030728278681635857, 0.00424687284976244, -0.08211944997310638, -0.021003615111112595, 0.003852050518617034, -0.008620930835604668, 0.00016896762826945633, -0.025813082233071327, -0.1369008719921112, 0.056987665593624115, 0.02633311226963997, 0.060573454946279526, -0.10374878346920013, -0.06330037862062454, 0.08610228449106216, -0.007674364373087883, 0.11145509034395218, 0.12203431874513626, -0.0627712607383728, 0.12565170228481293, -0.1672065556049347, -0.158314511179924, 0.12246329337358475, 0.05672208592295647, 0.07421854883432388, -0.025398559868335724, 0.0484481081366539, 0.040093038231134415, 0.01559838093817234, 0.03072630986571312, -0.13490310311317444, -0.09420733153820038, -0.08850692957639694, -0.12378639727830887, -0.02443583309650421, 0.04740589112043381, -0.049773260951042175, 0.23616191744804382, -0.02107780985534191, -0.01533650141209364, 0.07042009383440018, 0.007802602834999561, -0.07159595936536789, -0.038657356053590775, -0.04279107600450516, -0.16467829048633575, 0.01099843718111515, 0.045098233968019485, 0.005927644204348326, -0.022301938384771347, 0.43934693932533264, -0.022987114265561104, 0.03537219390273094, -0.008063184097409248, 0.046819087117910385, -0.048934683203697205, 0.0900297462940216, 0.21441610157489777, 0.05289220064878464, -0.08583522588014603, -0.017880093306303024, 0.04910369962453842, 0.08955053985118866, 0.12494947016239166, 0.1426040083169937, 0.14706335961818695, 0.040419209748506546, -0.03178245201706886, 0.10982510447502136, -0.07864560186862946, 0.05645306780934334, 0.16387605667114258, -0.006769916974008083, 0.12057856470346451, 0.039555348455905914, -0.3108430802822113, 0.09555444866418839, -0.043314456939697266, 0.07060231268405914, -0.034655842930078506, -0.04306681826710701, -0.048220518976449966, -0.17354242503643036, -0.07411252707242966, -0.06620920449495316, 0.07283614575862885, -0.06317061185836792, -0.0010352114913985133, 0.1265387237071991, 0.09961143881082535, 0.007154232822358608, -0.02591579221189022, 0.06907645612955093, -0.024099476635456085, 0.15260007977485657, -0.025683170184493065, -0.10880428552627563, 0.008014912717044353, -0.008020608685910702, 0.03664626181125641, -0.07624081522226334, -0.051816198974847794, 0.03823809325695038, 0.03789322450757027, 0.033354636281728745, -0.08594610542058945, -0.05737121403217316, -0.040516432374715805, 0.024050293490290642, -0.17418089509010315, 0.0808563083410263, 0.05756453424692154, 0.017963102087378502, 0.019808968529105186, 0.03708207979798317, 0.06407268345355988, 0.051097624003887177, -0.09759518504142761, -0.17816907167434692, 0.019388560205698013, 0.11627402156591415, 0.009298711083829403, -0.04672551900148392, -0.07859711349010468, 0.20220938324928284, 0.2043885588645935, 0.0371059849858284, 0.035358138382434845, 0.051815375685691833, 0.022426482290029526, 0.09467900544404984, 0.14537253975868225, 0.028516050428152084, 0.061280425637960434, -0.01258417684584856, -0.04295286908745766, 0.02781056985259056, -0.0670878067612648, -0.09618934243917465, 0.028530504554510117, 0.11448853462934494, 0.019115721806883812, -0.12231101095676422, 0.057504963129758835, -0.08757159113883972, -0.06229940801858902, 0.04156215116381645, -0.17648965120315552, -0.1649341881275177, -0.10315804183483124, -0.04321356117725372, 0.05736890807747841, 0.013253873214125633, -0.10795655101537704, -0.07126494497060776, 0.06814064830541611, 0.0026889825239777565, -0.30917444825172424, -0.20429830253124237, -0.07194743305444717, 0.051249127835035324, 0.03550932928919792, 0.03158513456583023, 0.010568688623607159, 0.003186022164300084, -0.028363605961203575, -0.07230380922555923, -0.0344218984246254, 0.028363296762108803, 0.17540258169174194, -0.0556209534406662, 0.1083793193101883, -0.014729023911058903, -0.08029471337795258, 0.07807864248752594, 0.05312786623835564, -0.07050125300884247, 0.17472971975803375, -0.024167699739336967, -0.036415643990039825, 0.05904733017086983, -0.10539520531892776, 0.029533978551626205, 0.1035395935177803, 0.007117636036127806, -0.059927817434072495, -0.031743183732032776, 0.11215583980083466, 0.013144097290933132, -0.09900612384080887, -0.07356920838356018, -0.007737672887742519, -0.06652972102165222, 0.09518338739871979, 0.00025490118423476815, -0.014344090595841408, 0.03239065781235695, -0.041091084480285645, 0.05853730067610741, -0.01985708810389042, 0.08528300374746323, 0.10809483379125595, 0.09471451491117477, -0.04695671424269676, -0.15588027238845825, 0.05257098004221916, 0.005788774229586124, -0.021634189411997795, -0.10315987467765808 ]
ff3bc47734c2ea6c42770fb88d301c7440ca7ce9
# Dataset Card for "wikipedia.reorder.natural.fr" [More Information needed](https://github.com/huggingface/datasets/blob/main/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
lshowway/wikipedia.reorder.natural.fr
[ "region:us" ]
2023-02-07T22:35:47+00:00
{"dataset_info": {"features": [{"name": "text", "dtype": "string"}], "splits": [{"name": "train", "num_bytes": 886603410, "num_examples": 490371}], "download_size": 0, "dataset_size": 886603410}}
2023-02-09T10:23:12+00:00
[]
[]
TAGS #region-us
# Dataset Card for "URL" More Information needed
[ "# Dataset Card for \"URL\"\n\nMore Information needed" ]
[ "TAGS\n#region-us \n", "# Dataset Card for \"URL\"\n\nMore Information needed" ]
[ 6, 11 ]
[ "passage: TAGS\n#region-us \n# Dataset Card for \"URL\"\n\nMore Information needed" ]
[ -0.02736615017056465, 0.24641479551792145, -0.004999609664082527, 0.00532207265496254, 0.11865795403718948, 0.12466172873973846, 0.08990644663572311, 0.0666937455534935, 0.13375571370124817, -0.0585162453353405, 0.10589469224214554, -0.02611389383673668, 0.016327891498804092, 0.061111170798540115, -0.024894926697015762, -0.02547740377485752, 0.02389971911907196, -0.014960099011659622, -0.06000110134482384, 0.016922330483794212, -0.044748350977897644, -0.056700076907873154, 0.06497771292924881, -0.135508194565773, -0.09135930985212326, 0.15042288601398468, -0.054760366678237915, 0.00731249013915658, 0.010878117755055428, -0.10352317243814468, 0.17798414826393127, -0.025278160348534584, 0.06362763047218323, -0.23342010378837585, 0.009710743092000484, 0.01587541028857231, -0.04444526880979538, 0.030553318560123444, 0.010348712094128132, -0.15540485084056854, -0.1965184509754181, 0.011877017095685005, -0.00765087129548192, -0.026264049112796783, -0.05658840015530586, -0.15352056920528412, -0.09679792821407318, 0.038268573582172394, -0.04692218080163002, 0.009477831423282623, 0.10166623443365097, 0.07879310846328735, -0.19003216922283173, 0.03463815152645111, 0.0672849714756012, -0.05746278166770935, 0.07752247899770737, 0.1543678194284439, -0.0481472909450531, 0.16588279604911804, -0.06815345585346222, 0.07471946626901627, 0.08858564496040344, -0.015787314623594284, -0.09780268371105194, -0.041639216244220734, -0.2306254506111145, 0.16810032725334167, 0.04031067714095116, -0.10807806253433228, 0.2929764688014984, 0.06712256371974945, 0.03718259185552597, 0.15200498700141907, -0.013004112988710403, 0.05858894810080528, -0.014152687042951584, 0.10213763266801834, 0.09711809456348419, 0.10302720963954926, -0.03392526134848595, -0.04996102675795555, -0.10892009735107422, -0.13788050413131714, -0.09385806322097778, 0.025513319298624992, -0.02754286862909794, 0.18681570887565613, -0.18427042663097382, -0.032458771020174026, 0.08355966955423355, -0.03275534510612488, 0.01931970752775669, -0.10066316276788712, 0.08868104964494705, 0.03244531899690628, -0.042702171951532364, 0.018054774031043053, 0.16299043595790863, 0.05755241587758064, 0.10932990163564682, 0.04332285374403, -0.08926116675138474, 0.09634534269571304, 0.13358843326568604, -0.052311692386865616, 0.0038691547233611345, -0.018690913915634155, -0.0030184565111994743, -0.12628048658370972, -0.005210535135120153, -0.06061053276062012, -0.10222984850406647, 0.06902942806482315, -0.14024440944194794, 0.13202688097953796, -0.0102159408852458, -0.08311475068330765, -0.03888928145170212, 0.0129152936860919, 0.09205423295497894, -0.10039244592189789, 0.09060217440128326, 0.0405869334936142, -0.08785726130008698, 0.029710114002227783, -0.024029076099395752, -0.03510059043765068, -0.00533023988828063, 0.043366819620132446, -0.08690439909696579, 0.014616398140788078, -0.026901770383119583, 0.008535914123058319, 0.12597644329071045, -0.0763992965221405, 0.05851645767688751, -0.09280791133642197, -0.22553668916225433, -0.005333194509148598, 0.07383669167757034, -0.023032745346426964, 0.23270867764949799, -0.021679392084479332, 0.08729247003793716, 0.017888490110635757, -0.04625766724348068, 0.004754893947392702, -0.10934391617774963, 0.05313396453857422, -0.09133537858724594, 0.07553558796644211, -0.1856498420238495, 0.055791325867176056, -0.12443438172340393, -0.04020817577838898, 0.027055714279413223, 0.020803358405828476, -0.17505519092082977, 0.2135130614042282, -0.08981246501207352, 0.04695606976747513, -0.17165158689022064, 0.047785934060811996, 0.028568407520651817, 0.07697968930006027, -0.062161438167095184, -0.016537439078092575, 0.23202255368232727, -0.04733821377158165, -0.1521792709827423, -0.009455995634198189, -0.03443985804915428, 0.022283295169472694, 0.0478212907910347, 0.33786460757255554, 0.07251841574907303, -0.01827423833310604, 0.020707610994577408, 0.21949604153633118, -0.16161735355854034, -0.3084198534488678, 0.01291941199451685, -0.09231924265623093, -0.08742319792509079, 0.03967057913541794, 0.20773614943027496, -0.009833353571593761, -0.0321679413318634, -0.08768041431903839, -0.003410079050809145, -0.12097445875406265, -0.01379752904176712, 0.025037141516804695, 0.006385875400155783, -0.02351299114525318, 0.08867436647415161, 0.011520599015057087, 0.04974367469549179, 0.00955379381775856, 0.02603384479880333, 0.04653520882129669, 0.036739859730005264, -0.07972963154315948, 0.017130255699157715, -0.15297242999076843, -0.12168003618717194, -0.02960156463086605, 0.025522425770759583, 0.04508078098297119, -0.047614216804504395, 0.09371016174554825, -0.13802814483642578, 0.028749916702508926, 0.05048147216439247, 0.10392602533102036, 0.04768262058496475, 0.009196841157972813, -0.01683051884174347, 0.0659290999174118, -0.05021018534898758, -0.18059515953063965, -0.01514856331050396, -0.08228828758001328, 0.07771183550357819, 0.04977184161543846, 0.007034908514469862, -0.009514199569821358, 0.040243081748485565, -0.022616853937506676, 0.024274293333292007, -0.05440562590956688, 0.02478034421801567, -0.03382716327905655, 0.004939730744808912, 0.01876276545226574, 0.11118663847446442, 0.16151654720306396, 0.13405252993106842, -0.10624892264604568, 0.037969816476106644, 0.009105491451919079, 0.03520135208964348, 0.022724568843841553, 0.0037059485912323, -0.03156013786792755, -0.10598115622997284, -0.01609111949801445, 0.03133101016283035, -0.05824912339448929, 0.03020200878381729, -0.001126562594436109, -0.03415697067975998, -0.06139254570007324, 0.032049112021923065, 0.20829936861991882, -0.23587022721767426, 0.15348127484321594, 0.18377546966075897, 0.08739354461431503, 0.1222572773694992, -0.0974915474653244, -0.09788326174020767, 0.07313038408756256, -0.022896431386470795, -0.12164448201656342, 0.14040148258209229, -0.031870752573013306, -0.02407977730035782, 0.052013181149959564, 0.03782838210463524, 0.09175483137369156, -0.12144821137189865, -0.10516088455915451, -0.00901557132601738, -0.0168389230966568, -0.24999873340129852, -0.07294835150241852, -0.016814347356557846, 0.058557361364364624, 0.05843561142683029, -0.06458717584609985, 0.13021767139434814, -0.07070270925760269, -0.04124400392174721, 0.07254289835691452, -0.19371357560157776, -0.24088646471500397, -0.06844194233417511, -0.10259673744440079, 0.051142703741788864, 0.0032891922164708376, -0.022624092176556587, -0.18575842678546906, -0.060237668454647064, 0.04477272182703018, -0.1617257297039032, -0.14245055615901947, -0.04645982384681702, 0.04160561040043831, 0.08983379602432251, -0.03381173312664032, -0.13285484910011292, 0.03310687839984894, -0.0821271762251854, 0.1301731914281845, 0.057914551347494125, -0.1287173330783844, 0.1797209233045578, 0.09724186360836029, -0.01591423526406288, 0.07418535649776459, -0.006732334848493338, 0.017141086980700493, -0.0520198792219162, -0.052316710352897644, 0.0005659471498802304, -0.028396211564540863, 0.06976868212223053, 0.09650629013776779, 0.10114220529794693, -0.11997958272695541, 0.0077377380803227425, -0.002997587900608778, -0.13079679012298584, -0.30131796002388, -0.11291560530662537, -0.047568194568157196, 0.024180304259061813, 0.024172356352210045, 0.10919761657714844, -0.08149097859859467, 0.03632649406790733, 0.12972033023834229, -0.012860076501965523, -0.1328815519809723, -0.03396141901612282, -0.04833823814988136, 0.007257414050400257, -0.06416501104831696, -0.19858242571353912, -0.04377574473619461, 0.1355394870042801, 0.2159186601638794, 0.22564059495925903, 0.13557490706443787, 0.12302789092063904, 0.02862914465367794, 0.08115793764591217, 0.054796621203422546, 0.1137317568063736, 0.10081488639116287, 0.0020760747138410807, 0.023338239639997482, 0.02629259042441845, -0.050240594893693924, 0.010083193890750408, 0.11701637506484985, -0.19189350306987762, 0.07119116932153702, -0.20564940571784973, 0.0730205699801445, -0.09776657074689865, 0.02894597314298153, -0.1343766301870346, 0.14625521004199982, 0.04088818281888962, 0.10778449475765228, -0.04562107473611832, 0.09320859611034393, 0.025036916136741638, -0.018256714567542076, 0.06577207148075104, 0.07638702541589737, 0.12878713011741638, -0.05674543231725693, -0.04027076065540314, -0.020141711458563805, -0.10418081283569336, -0.008264302276074886, 0.1380237340927124, -0.06575533002614975, 0.2300550639629364, 0.06223810836672783, -0.039945829659700394, -0.030916614457964897, -0.07242675125598907, 0.011372453533113003, 0.043299466371536255, 0.097993865609169, 0.060118988156318665, -0.11701253801584244, -0.16810420155525208, -0.0847296193242073, 0.04729967564344406, 0.18785084784030914, 0.06358970701694489, -0.10417300462722778, 0.040843162685632706, -0.027000779286026955, -0.011193417944014072, -0.16400626301765442, -0.07688996940851212, -0.12754181027412415, -0.1059812381863594, 0.06589416414499283, -0.1336808204650879, 0.06036248058080673, 0.07731401920318604, -0.040409307926893234, 0.12786494195461273, 0.0594213642179966, -0.04034484177827835, -0.09196456521749496, -0.06306673586368561, 0.06126852333545685, 0.007004224229604006, -0.004764638375490904, 0.020556451752781868, -0.09557019174098969, -0.02035103179514408, -0.228969544172287, 0.06388361006975174, -0.03060567006468773, 0.18149784207344055, -0.11782719194889069, 0.11656245589256287, -0.06803935021162033, -0.04075160622596741, -0.02914157323539257, -0.005328672472387552, -0.059021297842264175, -0.12085343897342682, 0.1737344115972519, -0.036718327552080154, 0.0999385267496109, 0.23633423447608948, -0.03716893121600151, 0.012825082056224346, 0.14479973912239075, 0.0011433718027547002, 0.20028121769428253, 0.030520237982273102, -0.0639571025967598, 0.1541924774646759, 0.2821749150753021, -0.07757968455553055, -0.31982287764549255, -0.007222495041787624, -0.2175678312778473, -0.12756626307964325, 0.018692411482334137, -0.2390202283859253, 0.11895318329334259, 0.031123515218496323, -0.05609087273478508, 0.25739315152168274, -0.045974478125572205, 0.002731194719672203, 0.11567188799381256, -0.022633418440818787, 0.30677732825279236, -0.0863635316491127, -0.10520051419734955, -0.14682592451572418, -0.24992266297340393, 0.1414646953344345, -0.07752583920955658, 0.026309873908758163, 0.07999929785728455, 0.10597685724496841, -0.030380848795175552, -0.047746140509843826, 0.1010608896613121, 0.051066964864730835, 0.11405359953641891, -0.059016913175582886, -0.05826506018638611, 0.16965341567993164, -0.021773874759674072, 0.08697138726711273, -0.011129774153232574, 0.018917303532361984, -0.09712687879800797, 0.008075667545199394, 0.06776311993598938, -0.02327558398246765, 0.1038324236869812, -0.03389432653784752, -0.11193180084228516, -0.04491998627781868, -0.04812084883451462, 0.0028395045083016157, 0.1372835338115692, 0.0427447147667408, -0.06268350034952164, 0.03197682648897171, 0.009796510450541973, -0.14811590313911438, -0.028857821598649025, -0.06643926352262497, -0.1371839940547943, 0.09195949137210846, -0.32313352823257446, 0.06767386198043823, 0.1069786325097084, 0.0013835185673087835, 0.003770646173506975, 0.0704207792878151, -0.0319909043610096, -0.03596922382712364, 0.1609714776277542, -0.06133221462368965, 0.013609315268695354, 0.05996796488761902, -0.21124303340911865, 0.008099332451820374, 0.07672182470560074, 0.03359147533774376, 0.06611049920320511, 0.002934654476121068, -0.007098945323377848, 0.0611451230943203, -0.04607166722416878, 0.012646178714931011, 0.17779676616191864, -0.002901229541748762, -0.1545499563217163, 0.2822861075401306, 0.03396419808268547, -0.010481749661266804, 0.038649871945381165, 0.0013442805502563715, -0.08133964240550995, -0.08317520469427109, 0.017021294683218002, 0.23651985824108124, -0.021052507683634758, -0.13912256062030792, -0.023321298882365227, 0.03154321759939194, 0.02172408439218998, 0.0511493980884552, 0.021572599187493324, 0.12204822152853012, 0.06037377193570137, -0.005142042879015207, 0.04945920780301094, -0.03084448352456093, -0.12382929772138596, -0.0293396208435297, -0.06577746570110321, -0.2270778864622116, -0.027324263006448746, 0.14607103168964386, -0.06550978124141693, -0.0585264153778553, -0.11429637670516968, 0.13191473484039307, -0.24435874819755554, 0.03546863794326782, 0.05443674698472023, 0.03908611461520195, -0.024469954892992973, 0.0007571890018880367, -0.0507492795586586, 0.006633548531681299, -0.12494475394487381, 0.022187843918800354, 0.09115873277187347, 0.013263341970741749, -0.20376721024513245, -0.0348670594394207, 0.08144532144069672, 0.08972422778606415, 0.0550682432949543, 0.11372026056051254, -0.028049960732460022, 0.11966677010059357, -0.21815773844718933, -0.14390233159065247, 0.07611612230539322, 0.07013735175132751, 0.031550344079732895, 0.23528888821601868, -0.000775657594203949, 0.07478751242160797, -0.057708121836185455, 0.04644229635596275, -0.08431683480739594, -0.08618823438882828, 0.0006272406317293644, -0.20124605298042297, -0.09348879009485245, 0.028301483020186424, -0.07350953668355942, 0.2156493365764618, 0.056410618126392365, -0.0018574928399175406, 0.06469016522169113, 0.012180079706013203, -0.023448098450899124, -0.05072961375117302, 0.021274810656905174, -0.12072823941707611, -0.17412513494491577, 0.03214018791913986, 0.010927241295576096, -0.09762725234031677, 0.44719141721725464, 0.042114824056625366, -0.12265977263450623, -0.03154798224568367, 0.17989656329154968, -0.03374924138188362, 0.00742442486807704, 0.2112850397825241, 0.057351239025592804, -0.07336155325174332, -0.07687846571207047, 0.01459389179944992, 0.04226077347993851, -0.02175755240023136, 0.06511202454566956, 0.09903998672962189, 0.21440280973911285, -0.0025087178219109774, 0.046433206647634506, -0.034350402653217316, -0.048273228108882904, -0.07683852314949036, 0.042245324701070786, 0.03405315801501274, 0.008036665618419647, -0.07845709472894669, 0.012775006704032421, 0.05443377047777176, 0.03342492878437042, -0.06913391500711441, -0.022294044494628906, -0.1031406968832016, -0.08646916598081589, -0.009482727386057377, -0.1600002497434616, 0.07472137361764908, -0.019308101385831833, -0.02421741560101509, 0.26463741064071655, 0.015680858865380287, 0.0006387787288986146, -0.007802559994161129, -0.038708895444869995, 0.060397692024707794, 0.008571920916438103, -0.019296839833259583, -0.06503619253635406, 0.06001327559351921, -0.06568828970193863, 0.057851891964673996, -0.057045403867959976, -0.06593533605337143, 0.0406961552798748, 0.05800020694732666, 0.039659589529037476, -0.17968514561653137, -0.029538273811340332, -0.07462804764509201, 0.11919945478439331, -0.1062254086136818, 0.04354912415146828, 0.07883325219154358, 0.04374914616346359, 0.07683895528316498, 0.16537748277187347, -0.021186942234635353, 0.07207973301410675, -0.021470971405506134, 0.030208377167582512, -0.005083824973553419, 0.1446317583322525, -0.005047506652772427, -0.137693852186203, -0.0476197674870491, 0.21476976573467255, 0.2660520076751709, -0.11588539183139801, 0.012702584266662598, 0.018376436084508896, 0.04695601016283035, 0.0665600523352623, 0.2168489247560501, 0.050228219479322433, 0.11028528213500977, -0.015095217153429985, -0.14659586548805237, 0.03930986300110817, -0.08763694763183594, -0.0785382017493248, 0.039692796766757965, 0.0678551122546196, -0.05184775963425636, -0.1638035774230957, 0.150740385055542, -0.25349098443984985, 0.06072161719202995, 0.0785508006811142, -0.13391870260238647, -0.05913334712386131, -0.024752302095294, 0.1443033516407013, 0.03494846820831299, -0.02516769990324974, -0.06208763271570206, -0.053545963019132614, -0.05882514268159866, -0.02650299295783043, -0.34349673986434937, -0.18945926427841187, -0.03900161013007164, -0.045184820890426636, 0.13357383012771606, 0.004339433275163174, 0.055698785930871964, -0.0013803690671920776, 0.040553539991378784, -0.04565098509192467, 0.03560963273048401, 0.0330815315246582, 0.0047000995837152, -0.051412127912044525, -0.09236232936382294, -0.08673320710659027, -0.07652556896209717, 0.11361774057149887, 0.07912364602088928, -0.04799467697739601, 0.12881509959697723, 0.024223126471042633, -0.05033852905035019, -0.07414016872644424, -0.11819019913673401, 0.06447423994541168, -0.01122624147683382, -0.009278623387217522, 0.02415735088288784, 0.02031674236059189, 0.054114919155836105, 0.017116254195570946, -0.16759514808654785, -0.06264198571443558, 0.07806440442800522, -0.1073305755853653, 0.1295316517353058, 0.039662156254053116, -0.04136235639452934, 0.08328452706336975, -0.030227264389395714, 0.08190855383872986, -0.025205640122294426, 0.055215705186128616, 0.2020633965730667, 0.07026945799589157, -0.05067967623472214, -0.10366678237915039, 0.09244946390390396, -0.024704251438379288, 0.004639187827706337, -0.07270639389753342 ]
8fcb2f5e20f102ea7501dc0426dae45498325e89
# Dataset Card for "wikipedia.reorder.svo.fr" [More Information needed](https://github.com/huggingface/datasets/blob/main/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
lshowway/wikipedia.reorder.svo.fr
[ "region:us" ]
2023-02-07T22:46:16+00:00
{"dataset_info": {"features": [{"name": "text", "dtype": "string"}], "splits": [{"name": "train", "num_bytes": 886603410, "num_examples": 490371}], "download_size": 401374188, "dataset_size": 886603410}}
2023-02-09T11:04:30+00:00
[]
[]
TAGS #region-us
# Dataset Card for "URL" More Information needed
[ "# Dataset Card for \"URL\"\n\nMore Information needed" ]
[ "TAGS\n#region-us \n", "# Dataset Card for \"URL\"\n\nMore Information needed" ]
[ 6, 11 ]
[ "passage: TAGS\n#region-us \n# Dataset Card for \"URL\"\n\nMore Information needed" ]
[ -0.02736615017056465, 0.24641479551792145, -0.004999609664082527, 0.00532207265496254, 0.11865795403718948, 0.12466172873973846, 0.08990644663572311, 0.0666937455534935, 0.13375571370124817, -0.0585162453353405, 0.10589469224214554, -0.02611389383673668, 0.016327891498804092, 0.061111170798540115, -0.024894926697015762, -0.02547740377485752, 0.02389971911907196, -0.014960099011659622, -0.06000110134482384, 0.016922330483794212, -0.044748350977897644, -0.056700076907873154, 0.06497771292924881, -0.135508194565773, -0.09135930985212326, 0.15042288601398468, -0.054760366678237915, 0.00731249013915658, 0.010878117755055428, -0.10352317243814468, 0.17798414826393127, -0.025278160348534584, 0.06362763047218323, -0.23342010378837585, 0.009710743092000484, 0.01587541028857231, -0.04444526880979538, 0.030553318560123444, 0.010348712094128132, -0.15540485084056854, -0.1965184509754181, 0.011877017095685005, -0.00765087129548192, -0.026264049112796783, -0.05658840015530586, -0.15352056920528412, -0.09679792821407318, 0.038268573582172394, -0.04692218080163002, 0.009477831423282623, 0.10166623443365097, 0.07879310846328735, -0.19003216922283173, 0.03463815152645111, 0.0672849714756012, -0.05746278166770935, 0.07752247899770737, 0.1543678194284439, -0.0481472909450531, 0.16588279604911804, -0.06815345585346222, 0.07471946626901627, 0.08858564496040344, -0.015787314623594284, -0.09780268371105194, -0.041639216244220734, -0.2306254506111145, 0.16810032725334167, 0.04031067714095116, -0.10807806253433228, 0.2929764688014984, 0.06712256371974945, 0.03718259185552597, 0.15200498700141907, -0.013004112988710403, 0.05858894810080528, -0.014152687042951584, 0.10213763266801834, 0.09711809456348419, 0.10302720963954926, -0.03392526134848595, -0.04996102675795555, -0.10892009735107422, -0.13788050413131714, -0.09385806322097778, 0.025513319298624992, -0.02754286862909794, 0.18681570887565613, -0.18427042663097382, -0.032458771020174026, 0.08355966955423355, -0.03275534510612488, 0.01931970752775669, -0.10066316276788712, 0.08868104964494705, 0.03244531899690628, -0.042702171951532364, 0.018054774031043053, 0.16299043595790863, 0.05755241587758064, 0.10932990163564682, 0.04332285374403, -0.08926116675138474, 0.09634534269571304, 0.13358843326568604, -0.052311692386865616, 0.0038691547233611345, -0.018690913915634155, -0.0030184565111994743, -0.12628048658370972, -0.005210535135120153, -0.06061053276062012, -0.10222984850406647, 0.06902942806482315, -0.14024440944194794, 0.13202688097953796, -0.0102159408852458, -0.08311475068330765, -0.03888928145170212, 0.0129152936860919, 0.09205423295497894, -0.10039244592189789, 0.09060217440128326, 0.0405869334936142, -0.08785726130008698, 0.029710114002227783, -0.024029076099395752, -0.03510059043765068, -0.00533023988828063, 0.043366819620132446, -0.08690439909696579, 0.014616398140788078, -0.026901770383119583, 0.008535914123058319, 0.12597644329071045, -0.0763992965221405, 0.05851645767688751, -0.09280791133642197, -0.22553668916225433, -0.005333194509148598, 0.07383669167757034, -0.023032745346426964, 0.23270867764949799, -0.021679392084479332, 0.08729247003793716, 0.017888490110635757, -0.04625766724348068, 0.004754893947392702, -0.10934391617774963, 0.05313396453857422, -0.09133537858724594, 0.07553558796644211, -0.1856498420238495, 0.055791325867176056, -0.12443438172340393, -0.04020817577838898, 0.027055714279413223, 0.020803358405828476, -0.17505519092082977, 0.2135130614042282, -0.08981246501207352, 0.04695606976747513, -0.17165158689022064, 0.047785934060811996, 0.028568407520651817, 0.07697968930006027, -0.062161438167095184, -0.016537439078092575, 0.23202255368232727, -0.04733821377158165, -0.1521792709827423, -0.009455995634198189, -0.03443985804915428, 0.022283295169472694, 0.0478212907910347, 0.33786460757255554, 0.07251841574907303, -0.01827423833310604, 0.020707610994577408, 0.21949604153633118, -0.16161735355854034, -0.3084198534488678, 0.01291941199451685, -0.09231924265623093, -0.08742319792509079, 0.03967057913541794, 0.20773614943027496, -0.009833353571593761, -0.0321679413318634, -0.08768041431903839, -0.003410079050809145, -0.12097445875406265, -0.01379752904176712, 0.025037141516804695, 0.006385875400155783, -0.02351299114525318, 0.08867436647415161, 0.011520599015057087, 0.04974367469549179, 0.00955379381775856, 0.02603384479880333, 0.04653520882129669, 0.036739859730005264, -0.07972963154315948, 0.017130255699157715, -0.15297242999076843, -0.12168003618717194, -0.02960156463086605, 0.025522425770759583, 0.04508078098297119, -0.047614216804504395, 0.09371016174554825, -0.13802814483642578, 0.028749916702508926, 0.05048147216439247, 0.10392602533102036, 0.04768262058496475, 0.009196841157972813, -0.01683051884174347, 0.0659290999174118, -0.05021018534898758, -0.18059515953063965, -0.01514856331050396, -0.08228828758001328, 0.07771183550357819, 0.04977184161543846, 0.007034908514469862, -0.009514199569821358, 0.040243081748485565, -0.022616853937506676, 0.024274293333292007, -0.05440562590956688, 0.02478034421801567, -0.03382716327905655, 0.004939730744808912, 0.01876276545226574, 0.11118663847446442, 0.16151654720306396, 0.13405252993106842, -0.10624892264604568, 0.037969816476106644, 0.009105491451919079, 0.03520135208964348, 0.022724568843841553, 0.0037059485912323, -0.03156013786792755, -0.10598115622997284, -0.01609111949801445, 0.03133101016283035, -0.05824912339448929, 0.03020200878381729, -0.001126562594436109, -0.03415697067975998, -0.06139254570007324, 0.032049112021923065, 0.20829936861991882, -0.23587022721767426, 0.15348127484321594, 0.18377546966075897, 0.08739354461431503, 0.1222572773694992, -0.0974915474653244, -0.09788326174020767, 0.07313038408756256, -0.022896431386470795, -0.12164448201656342, 0.14040148258209229, -0.031870752573013306, -0.02407977730035782, 0.052013181149959564, 0.03782838210463524, 0.09175483137369156, -0.12144821137189865, -0.10516088455915451, -0.00901557132601738, -0.0168389230966568, -0.24999873340129852, -0.07294835150241852, -0.016814347356557846, 0.058557361364364624, 0.05843561142683029, -0.06458717584609985, 0.13021767139434814, -0.07070270925760269, -0.04124400392174721, 0.07254289835691452, -0.19371357560157776, -0.24088646471500397, -0.06844194233417511, -0.10259673744440079, 0.051142703741788864, 0.0032891922164708376, -0.022624092176556587, -0.18575842678546906, -0.060237668454647064, 0.04477272182703018, -0.1617257297039032, -0.14245055615901947, -0.04645982384681702, 0.04160561040043831, 0.08983379602432251, -0.03381173312664032, -0.13285484910011292, 0.03310687839984894, -0.0821271762251854, 0.1301731914281845, 0.057914551347494125, -0.1287173330783844, 0.1797209233045578, 0.09724186360836029, -0.01591423526406288, 0.07418535649776459, -0.006732334848493338, 0.017141086980700493, -0.0520198792219162, -0.052316710352897644, 0.0005659471498802304, -0.028396211564540863, 0.06976868212223053, 0.09650629013776779, 0.10114220529794693, -0.11997958272695541, 0.0077377380803227425, -0.002997587900608778, -0.13079679012298584, -0.30131796002388, -0.11291560530662537, -0.047568194568157196, 0.024180304259061813, 0.024172356352210045, 0.10919761657714844, -0.08149097859859467, 0.03632649406790733, 0.12972033023834229, -0.012860076501965523, -0.1328815519809723, -0.03396141901612282, -0.04833823814988136, 0.007257414050400257, -0.06416501104831696, -0.19858242571353912, -0.04377574473619461, 0.1355394870042801, 0.2159186601638794, 0.22564059495925903, 0.13557490706443787, 0.12302789092063904, 0.02862914465367794, 0.08115793764591217, 0.054796621203422546, 0.1137317568063736, 0.10081488639116287, 0.0020760747138410807, 0.023338239639997482, 0.02629259042441845, -0.050240594893693924, 0.010083193890750408, 0.11701637506484985, -0.19189350306987762, 0.07119116932153702, -0.20564940571784973, 0.0730205699801445, -0.09776657074689865, 0.02894597314298153, -0.1343766301870346, 0.14625521004199982, 0.04088818281888962, 0.10778449475765228, -0.04562107473611832, 0.09320859611034393, 0.025036916136741638, -0.018256714567542076, 0.06577207148075104, 0.07638702541589737, 0.12878713011741638, -0.05674543231725693, -0.04027076065540314, -0.020141711458563805, -0.10418081283569336, -0.008264302276074886, 0.1380237340927124, -0.06575533002614975, 0.2300550639629364, 0.06223810836672783, -0.039945829659700394, -0.030916614457964897, -0.07242675125598907, 0.011372453533113003, 0.043299466371536255, 0.097993865609169, 0.060118988156318665, -0.11701253801584244, -0.16810420155525208, -0.0847296193242073, 0.04729967564344406, 0.18785084784030914, 0.06358970701694489, -0.10417300462722778, 0.040843162685632706, -0.027000779286026955, -0.011193417944014072, -0.16400626301765442, -0.07688996940851212, -0.12754181027412415, -0.1059812381863594, 0.06589416414499283, -0.1336808204650879, 0.06036248058080673, 0.07731401920318604, -0.040409307926893234, 0.12786494195461273, 0.0594213642179966, -0.04034484177827835, -0.09196456521749496, -0.06306673586368561, 0.06126852333545685, 0.007004224229604006, -0.004764638375490904, 0.020556451752781868, -0.09557019174098969, -0.02035103179514408, -0.228969544172287, 0.06388361006975174, -0.03060567006468773, 0.18149784207344055, -0.11782719194889069, 0.11656245589256287, -0.06803935021162033, -0.04075160622596741, -0.02914157323539257, -0.005328672472387552, -0.059021297842264175, -0.12085343897342682, 0.1737344115972519, -0.036718327552080154, 0.0999385267496109, 0.23633423447608948, -0.03716893121600151, 0.012825082056224346, 0.14479973912239075, 0.0011433718027547002, 0.20028121769428253, 0.030520237982273102, -0.0639571025967598, 0.1541924774646759, 0.2821749150753021, -0.07757968455553055, -0.31982287764549255, -0.007222495041787624, -0.2175678312778473, -0.12756626307964325, 0.018692411482334137, -0.2390202283859253, 0.11895318329334259, 0.031123515218496323, -0.05609087273478508, 0.25739315152168274, -0.045974478125572205, 0.002731194719672203, 0.11567188799381256, -0.022633418440818787, 0.30677732825279236, -0.0863635316491127, -0.10520051419734955, -0.14682592451572418, -0.24992266297340393, 0.1414646953344345, -0.07752583920955658, 0.026309873908758163, 0.07999929785728455, 0.10597685724496841, -0.030380848795175552, -0.047746140509843826, 0.1010608896613121, 0.051066964864730835, 0.11405359953641891, -0.059016913175582886, -0.05826506018638611, 0.16965341567993164, -0.021773874759674072, 0.08697138726711273, -0.011129774153232574, 0.018917303532361984, -0.09712687879800797, 0.008075667545199394, 0.06776311993598938, -0.02327558398246765, 0.1038324236869812, -0.03389432653784752, -0.11193180084228516, -0.04491998627781868, -0.04812084883451462, 0.0028395045083016157, 0.1372835338115692, 0.0427447147667408, -0.06268350034952164, 0.03197682648897171, 0.009796510450541973, -0.14811590313911438, -0.028857821598649025, -0.06643926352262497, -0.1371839940547943, 0.09195949137210846, -0.32313352823257446, 0.06767386198043823, 0.1069786325097084, 0.0013835185673087835, 0.003770646173506975, 0.0704207792878151, -0.0319909043610096, -0.03596922382712364, 0.1609714776277542, -0.06133221462368965, 0.013609315268695354, 0.05996796488761902, -0.21124303340911865, 0.008099332451820374, 0.07672182470560074, 0.03359147533774376, 0.06611049920320511, 0.002934654476121068, -0.007098945323377848, 0.0611451230943203, -0.04607166722416878, 0.012646178714931011, 0.17779676616191864, -0.002901229541748762, -0.1545499563217163, 0.2822861075401306, 0.03396419808268547, -0.010481749661266804, 0.038649871945381165, 0.0013442805502563715, -0.08133964240550995, -0.08317520469427109, 0.017021294683218002, 0.23651985824108124, -0.021052507683634758, -0.13912256062030792, -0.023321298882365227, 0.03154321759939194, 0.02172408439218998, 0.0511493980884552, 0.021572599187493324, 0.12204822152853012, 0.06037377193570137, -0.005142042879015207, 0.04945920780301094, -0.03084448352456093, -0.12382929772138596, -0.0293396208435297, -0.06577746570110321, -0.2270778864622116, -0.027324263006448746, 0.14607103168964386, -0.06550978124141693, -0.0585264153778553, -0.11429637670516968, 0.13191473484039307, -0.24435874819755554, 0.03546863794326782, 0.05443674698472023, 0.03908611461520195, -0.024469954892992973, 0.0007571890018880367, -0.0507492795586586, 0.006633548531681299, -0.12494475394487381, 0.022187843918800354, 0.09115873277187347, 0.013263341970741749, -0.20376721024513245, -0.0348670594394207, 0.08144532144069672, 0.08972422778606415, 0.0550682432949543, 0.11372026056051254, -0.028049960732460022, 0.11966677010059357, -0.21815773844718933, -0.14390233159065247, 0.07611612230539322, 0.07013735175132751, 0.031550344079732895, 0.23528888821601868, -0.000775657594203949, 0.07478751242160797, -0.057708121836185455, 0.04644229635596275, -0.08431683480739594, -0.08618823438882828, 0.0006272406317293644, -0.20124605298042297, -0.09348879009485245, 0.028301483020186424, -0.07350953668355942, 0.2156493365764618, 0.056410618126392365, -0.0018574928399175406, 0.06469016522169113, 0.012180079706013203, -0.023448098450899124, -0.05072961375117302, 0.021274810656905174, -0.12072823941707611, -0.17412513494491577, 0.03214018791913986, 0.010927241295576096, -0.09762725234031677, 0.44719141721725464, 0.042114824056625366, -0.12265977263450623, -0.03154798224568367, 0.17989656329154968, -0.03374924138188362, 0.00742442486807704, 0.2112850397825241, 0.057351239025592804, -0.07336155325174332, -0.07687846571207047, 0.01459389179944992, 0.04226077347993851, -0.02175755240023136, 0.06511202454566956, 0.09903998672962189, 0.21440280973911285, -0.0025087178219109774, 0.046433206647634506, -0.034350402653217316, -0.048273228108882904, -0.07683852314949036, 0.042245324701070786, 0.03405315801501274, 0.008036665618419647, -0.07845709472894669, 0.012775006704032421, 0.05443377047777176, 0.03342492878437042, -0.06913391500711441, -0.022294044494628906, -0.1031406968832016, -0.08646916598081589, -0.009482727386057377, -0.1600002497434616, 0.07472137361764908, -0.019308101385831833, -0.02421741560101509, 0.26463741064071655, 0.015680858865380287, 0.0006387787288986146, -0.007802559994161129, -0.038708895444869995, 0.060397692024707794, 0.008571920916438103, -0.019296839833259583, -0.06503619253635406, 0.06001327559351921, -0.06568828970193863, 0.057851891964673996, -0.057045403867959976, -0.06593533605337143, 0.0406961552798748, 0.05800020694732666, 0.039659589529037476, -0.17968514561653137, -0.029538273811340332, -0.07462804764509201, 0.11919945478439331, -0.1062254086136818, 0.04354912415146828, 0.07883325219154358, 0.04374914616346359, 0.07683895528316498, 0.16537748277187347, -0.021186942234635353, 0.07207973301410675, -0.021470971405506134, 0.030208377167582512, -0.005083824973553419, 0.1446317583322525, -0.005047506652772427, -0.137693852186203, -0.0476197674870491, 0.21476976573467255, 0.2660520076751709, -0.11588539183139801, 0.012702584266662598, 0.018376436084508896, 0.04695601016283035, 0.0665600523352623, 0.2168489247560501, 0.050228219479322433, 0.11028528213500977, -0.015095217153429985, -0.14659586548805237, 0.03930986300110817, -0.08763694763183594, -0.0785382017493248, 0.039692796766757965, 0.0678551122546196, -0.05184775963425636, -0.1638035774230957, 0.150740385055542, -0.25349098443984985, 0.06072161719202995, 0.0785508006811142, -0.13391870260238647, -0.05913334712386131, -0.024752302095294, 0.1443033516407013, 0.03494846820831299, -0.02516769990324974, -0.06208763271570206, -0.053545963019132614, -0.05882514268159866, -0.02650299295783043, -0.34349673986434937, -0.18945926427841187, -0.03900161013007164, -0.045184820890426636, 0.13357383012771606, 0.004339433275163174, 0.055698785930871964, -0.0013803690671920776, 0.040553539991378784, -0.04565098509192467, 0.03560963273048401, 0.0330815315246582, 0.0047000995837152, -0.051412127912044525, -0.09236232936382294, -0.08673320710659027, -0.07652556896209717, 0.11361774057149887, 0.07912364602088928, -0.04799467697739601, 0.12881509959697723, 0.024223126471042633, -0.05033852905035019, -0.07414016872644424, -0.11819019913673401, 0.06447423994541168, -0.01122624147683382, -0.009278623387217522, 0.02415735088288784, 0.02031674236059189, 0.054114919155836105, 0.017116254195570946, -0.16759514808654785, -0.06264198571443558, 0.07806440442800522, -0.1073305755853653, 0.1295316517353058, 0.039662156254053116, -0.04136235639452934, 0.08328452706336975, -0.030227264389395714, 0.08190855383872986, -0.025205640122294426, 0.055215705186128616, 0.2020633965730667, 0.07026945799589157, -0.05067967623472214, -0.10366678237915039, 0.09244946390390396, -0.024704251438379288, 0.004639187827706337, -0.07270639389753342 ]
96e8a59ca342891cd315c9d14544f61782056e7c
# Dataset Card for "wikipedia.reorder.vos.fr" [More Information needed](https://github.com/huggingface/datasets/blob/main/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
lshowway/wikipedia.reorder.vos.fr
[ "region:us" ]
2023-02-07T22:47:43+00:00
{"dataset_info": {"features": [{"name": "text", "dtype": "string"}], "splits": [{"name": "train", "num_bytes": 886603410, "num_examples": 490371}], "download_size": 404205622, "dataset_size": 886603410}}
2023-02-09T11:05:25+00:00
[]
[]
TAGS #region-us
# Dataset Card for "URL" More Information needed
[ "# Dataset Card for \"URL\"\n\nMore Information needed" ]
[ "TAGS\n#region-us \n", "# Dataset Card for \"URL\"\n\nMore Information needed" ]
[ 6, 11 ]
[ "passage: TAGS\n#region-us \n# Dataset Card for \"URL\"\n\nMore Information needed" ]
[ -0.02736615017056465, 0.24641479551792145, -0.004999609664082527, 0.00532207265496254, 0.11865795403718948, 0.12466172873973846, 0.08990644663572311, 0.0666937455534935, 0.13375571370124817, -0.0585162453353405, 0.10589469224214554, -0.02611389383673668, 0.016327891498804092, 0.061111170798540115, -0.024894926697015762, -0.02547740377485752, 0.02389971911907196, -0.014960099011659622, -0.06000110134482384, 0.016922330483794212, -0.044748350977897644, -0.056700076907873154, 0.06497771292924881, -0.135508194565773, -0.09135930985212326, 0.15042288601398468, -0.054760366678237915, 0.00731249013915658, 0.010878117755055428, -0.10352317243814468, 0.17798414826393127, -0.025278160348534584, 0.06362763047218323, -0.23342010378837585, 0.009710743092000484, 0.01587541028857231, -0.04444526880979538, 0.030553318560123444, 0.010348712094128132, -0.15540485084056854, -0.1965184509754181, 0.011877017095685005, -0.00765087129548192, -0.026264049112796783, -0.05658840015530586, -0.15352056920528412, -0.09679792821407318, 0.038268573582172394, -0.04692218080163002, 0.009477831423282623, 0.10166623443365097, 0.07879310846328735, -0.19003216922283173, 0.03463815152645111, 0.0672849714756012, -0.05746278166770935, 0.07752247899770737, 0.1543678194284439, -0.0481472909450531, 0.16588279604911804, -0.06815345585346222, 0.07471946626901627, 0.08858564496040344, -0.015787314623594284, -0.09780268371105194, -0.041639216244220734, -0.2306254506111145, 0.16810032725334167, 0.04031067714095116, -0.10807806253433228, 0.2929764688014984, 0.06712256371974945, 0.03718259185552597, 0.15200498700141907, -0.013004112988710403, 0.05858894810080528, -0.014152687042951584, 0.10213763266801834, 0.09711809456348419, 0.10302720963954926, -0.03392526134848595, -0.04996102675795555, -0.10892009735107422, -0.13788050413131714, -0.09385806322097778, 0.025513319298624992, -0.02754286862909794, 0.18681570887565613, -0.18427042663097382, -0.032458771020174026, 0.08355966955423355, -0.03275534510612488, 0.01931970752775669, -0.10066316276788712, 0.08868104964494705, 0.03244531899690628, -0.042702171951532364, 0.018054774031043053, 0.16299043595790863, 0.05755241587758064, 0.10932990163564682, 0.04332285374403, -0.08926116675138474, 0.09634534269571304, 0.13358843326568604, -0.052311692386865616, 0.0038691547233611345, -0.018690913915634155, -0.0030184565111994743, -0.12628048658370972, -0.005210535135120153, -0.06061053276062012, -0.10222984850406647, 0.06902942806482315, -0.14024440944194794, 0.13202688097953796, -0.0102159408852458, -0.08311475068330765, -0.03888928145170212, 0.0129152936860919, 0.09205423295497894, -0.10039244592189789, 0.09060217440128326, 0.0405869334936142, -0.08785726130008698, 0.029710114002227783, -0.024029076099395752, -0.03510059043765068, -0.00533023988828063, 0.043366819620132446, -0.08690439909696579, 0.014616398140788078, -0.026901770383119583, 0.008535914123058319, 0.12597644329071045, -0.0763992965221405, 0.05851645767688751, -0.09280791133642197, -0.22553668916225433, -0.005333194509148598, 0.07383669167757034, -0.023032745346426964, 0.23270867764949799, -0.021679392084479332, 0.08729247003793716, 0.017888490110635757, -0.04625766724348068, 0.004754893947392702, -0.10934391617774963, 0.05313396453857422, -0.09133537858724594, 0.07553558796644211, -0.1856498420238495, 0.055791325867176056, -0.12443438172340393, -0.04020817577838898, 0.027055714279413223, 0.020803358405828476, -0.17505519092082977, 0.2135130614042282, -0.08981246501207352, 0.04695606976747513, -0.17165158689022064, 0.047785934060811996, 0.028568407520651817, 0.07697968930006027, -0.062161438167095184, -0.016537439078092575, 0.23202255368232727, -0.04733821377158165, -0.1521792709827423, -0.009455995634198189, -0.03443985804915428, 0.022283295169472694, 0.0478212907910347, 0.33786460757255554, 0.07251841574907303, -0.01827423833310604, 0.020707610994577408, 0.21949604153633118, -0.16161735355854034, -0.3084198534488678, 0.01291941199451685, -0.09231924265623093, -0.08742319792509079, 0.03967057913541794, 0.20773614943027496, -0.009833353571593761, -0.0321679413318634, -0.08768041431903839, -0.003410079050809145, -0.12097445875406265, -0.01379752904176712, 0.025037141516804695, 0.006385875400155783, -0.02351299114525318, 0.08867436647415161, 0.011520599015057087, 0.04974367469549179, 0.00955379381775856, 0.02603384479880333, 0.04653520882129669, 0.036739859730005264, -0.07972963154315948, 0.017130255699157715, -0.15297242999076843, -0.12168003618717194, -0.02960156463086605, 0.025522425770759583, 0.04508078098297119, -0.047614216804504395, 0.09371016174554825, -0.13802814483642578, 0.028749916702508926, 0.05048147216439247, 0.10392602533102036, 0.04768262058496475, 0.009196841157972813, -0.01683051884174347, 0.0659290999174118, -0.05021018534898758, -0.18059515953063965, -0.01514856331050396, -0.08228828758001328, 0.07771183550357819, 0.04977184161543846, 0.007034908514469862, -0.009514199569821358, 0.040243081748485565, -0.022616853937506676, 0.024274293333292007, -0.05440562590956688, 0.02478034421801567, -0.03382716327905655, 0.004939730744808912, 0.01876276545226574, 0.11118663847446442, 0.16151654720306396, 0.13405252993106842, -0.10624892264604568, 0.037969816476106644, 0.009105491451919079, 0.03520135208964348, 0.022724568843841553, 0.0037059485912323, -0.03156013786792755, -0.10598115622997284, -0.01609111949801445, 0.03133101016283035, -0.05824912339448929, 0.03020200878381729, -0.001126562594436109, -0.03415697067975998, -0.06139254570007324, 0.032049112021923065, 0.20829936861991882, -0.23587022721767426, 0.15348127484321594, 0.18377546966075897, 0.08739354461431503, 0.1222572773694992, -0.0974915474653244, -0.09788326174020767, 0.07313038408756256, -0.022896431386470795, -0.12164448201656342, 0.14040148258209229, -0.031870752573013306, -0.02407977730035782, 0.052013181149959564, 0.03782838210463524, 0.09175483137369156, -0.12144821137189865, -0.10516088455915451, -0.00901557132601738, -0.0168389230966568, -0.24999873340129852, -0.07294835150241852, -0.016814347356557846, 0.058557361364364624, 0.05843561142683029, -0.06458717584609985, 0.13021767139434814, -0.07070270925760269, -0.04124400392174721, 0.07254289835691452, -0.19371357560157776, -0.24088646471500397, -0.06844194233417511, -0.10259673744440079, 0.051142703741788864, 0.0032891922164708376, -0.022624092176556587, -0.18575842678546906, -0.060237668454647064, 0.04477272182703018, -0.1617257297039032, -0.14245055615901947, -0.04645982384681702, 0.04160561040043831, 0.08983379602432251, -0.03381173312664032, -0.13285484910011292, 0.03310687839984894, -0.0821271762251854, 0.1301731914281845, 0.057914551347494125, -0.1287173330783844, 0.1797209233045578, 0.09724186360836029, -0.01591423526406288, 0.07418535649776459, -0.006732334848493338, 0.017141086980700493, -0.0520198792219162, -0.052316710352897644, 0.0005659471498802304, -0.028396211564540863, 0.06976868212223053, 0.09650629013776779, 0.10114220529794693, -0.11997958272695541, 0.0077377380803227425, -0.002997587900608778, -0.13079679012298584, -0.30131796002388, -0.11291560530662537, -0.047568194568157196, 0.024180304259061813, 0.024172356352210045, 0.10919761657714844, -0.08149097859859467, 0.03632649406790733, 0.12972033023834229, -0.012860076501965523, -0.1328815519809723, -0.03396141901612282, -0.04833823814988136, 0.007257414050400257, -0.06416501104831696, -0.19858242571353912, -0.04377574473619461, 0.1355394870042801, 0.2159186601638794, 0.22564059495925903, 0.13557490706443787, 0.12302789092063904, 0.02862914465367794, 0.08115793764591217, 0.054796621203422546, 0.1137317568063736, 0.10081488639116287, 0.0020760747138410807, 0.023338239639997482, 0.02629259042441845, -0.050240594893693924, 0.010083193890750408, 0.11701637506484985, -0.19189350306987762, 0.07119116932153702, -0.20564940571784973, 0.0730205699801445, -0.09776657074689865, 0.02894597314298153, -0.1343766301870346, 0.14625521004199982, 0.04088818281888962, 0.10778449475765228, -0.04562107473611832, 0.09320859611034393, 0.025036916136741638, -0.018256714567542076, 0.06577207148075104, 0.07638702541589737, 0.12878713011741638, -0.05674543231725693, -0.04027076065540314, -0.020141711458563805, -0.10418081283569336, -0.008264302276074886, 0.1380237340927124, -0.06575533002614975, 0.2300550639629364, 0.06223810836672783, -0.039945829659700394, -0.030916614457964897, -0.07242675125598907, 0.011372453533113003, 0.043299466371536255, 0.097993865609169, 0.060118988156318665, -0.11701253801584244, -0.16810420155525208, -0.0847296193242073, 0.04729967564344406, 0.18785084784030914, 0.06358970701694489, -0.10417300462722778, 0.040843162685632706, -0.027000779286026955, -0.011193417944014072, -0.16400626301765442, -0.07688996940851212, -0.12754181027412415, -0.1059812381863594, 0.06589416414499283, -0.1336808204650879, 0.06036248058080673, 0.07731401920318604, -0.040409307926893234, 0.12786494195461273, 0.0594213642179966, -0.04034484177827835, -0.09196456521749496, -0.06306673586368561, 0.06126852333545685, 0.007004224229604006, -0.004764638375490904, 0.020556451752781868, -0.09557019174098969, -0.02035103179514408, -0.228969544172287, 0.06388361006975174, -0.03060567006468773, 0.18149784207344055, -0.11782719194889069, 0.11656245589256287, -0.06803935021162033, -0.04075160622596741, -0.02914157323539257, -0.005328672472387552, -0.059021297842264175, -0.12085343897342682, 0.1737344115972519, -0.036718327552080154, 0.0999385267496109, 0.23633423447608948, -0.03716893121600151, 0.012825082056224346, 0.14479973912239075, 0.0011433718027547002, 0.20028121769428253, 0.030520237982273102, -0.0639571025967598, 0.1541924774646759, 0.2821749150753021, -0.07757968455553055, -0.31982287764549255, -0.007222495041787624, -0.2175678312778473, -0.12756626307964325, 0.018692411482334137, -0.2390202283859253, 0.11895318329334259, 0.031123515218496323, -0.05609087273478508, 0.25739315152168274, -0.045974478125572205, 0.002731194719672203, 0.11567188799381256, -0.022633418440818787, 0.30677732825279236, -0.0863635316491127, -0.10520051419734955, -0.14682592451572418, -0.24992266297340393, 0.1414646953344345, -0.07752583920955658, 0.026309873908758163, 0.07999929785728455, 0.10597685724496841, -0.030380848795175552, -0.047746140509843826, 0.1010608896613121, 0.051066964864730835, 0.11405359953641891, -0.059016913175582886, -0.05826506018638611, 0.16965341567993164, -0.021773874759674072, 0.08697138726711273, -0.011129774153232574, 0.018917303532361984, -0.09712687879800797, 0.008075667545199394, 0.06776311993598938, -0.02327558398246765, 0.1038324236869812, -0.03389432653784752, -0.11193180084228516, -0.04491998627781868, -0.04812084883451462, 0.0028395045083016157, 0.1372835338115692, 0.0427447147667408, -0.06268350034952164, 0.03197682648897171, 0.009796510450541973, -0.14811590313911438, -0.028857821598649025, -0.06643926352262497, -0.1371839940547943, 0.09195949137210846, -0.32313352823257446, 0.06767386198043823, 0.1069786325097084, 0.0013835185673087835, 0.003770646173506975, 0.0704207792878151, -0.0319909043610096, -0.03596922382712364, 0.1609714776277542, -0.06133221462368965, 0.013609315268695354, 0.05996796488761902, -0.21124303340911865, 0.008099332451820374, 0.07672182470560074, 0.03359147533774376, 0.06611049920320511, 0.002934654476121068, -0.007098945323377848, 0.0611451230943203, -0.04607166722416878, 0.012646178714931011, 0.17779676616191864, -0.002901229541748762, -0.1545499563217163, 0.2822861075401306, 0.03396419808268547, -0.010481749661266804, 0.038649871945381165, 0.0013442805502563715, -0.08133964240550995, -0.08317520469427109, 0.017021294683218002, 0.23651985824108124, -0.021052507683634758, -0.13912256062030792, -0.023321298882365227, 0.03154321759939194, 0.02172408439218998, 0.0511493980884552, 0.021572599187493324, 0.12204822152853012, 0.06037377193570137, -0.005142042879015207, 0.04945920780301094, -0.03084448352456093, -0.12382929772138596, -0.0293396208435297, -0.06577746570110321, -0.2270778864622116, -0.027324263006448746, 0.14607103168964386, -0.06550978124141693, -0.0585264153778553, -0.11429637670516968, 0.13191473484039307, -0.24435874819755554, 0.03546863794326782, 0.05443674698472023, 0.03908611461520195, -0.024469954892992973, 0.0007571890018880367, -0.0507492795586586, 0.006633548531681299, -0.12494475394487381, 0.022187843918800354, 0.09115873277187347, 0.013263341970741749, -0.20376721024513245, -0.0348670594394207, 0.08144532144069672, 0.08972422778606415, 0.0550682432949543, 0.11372026056051254, -0.028049960732460022, 0.11966677010059357, -0.21815773844718933, -0.14390233159065247, 0.07611612230539322, 0.07013735175132751, 0.031550344079732895, 0.23528888821601868, -0.000775657594203949, 0.07478751242160797, -0.057708121836185455, 0.04644229635596275, -0.08431683480739594, -0.08618823438882828, 0.0006272406317293644, -0.20124605298042297, -0.09348879009485245, 0.028301483020186424, -0.07350953668355942, 0.2156493365764618, 0.056410618126392365, -0.0018574928399175406, 0.06469016522169113, 0.012180079706013203, -0.023448098450899124, -0.05072961375117302, 0.021274810656905174, -0.12072823941707611, -0.17412513494491577, 0.03214018791913986, 0.010927241295576096, -0.09762725234031677, 0.44719141721725464, 0.042114824056625366, -0.12265977263450623, -0.03154798224568367, 0.17989656329154968, -0.03374924138188362, 0.00742442486807704, 0.2112850397825241, 0.057351239025592804, -0.07336155325174332, -0.07687846571207047, 0.01459389179944992, 0.04226077347993851, -0.02175755240023136, 0.06511202454566956, 0.09903998672962189, 0.21440280973911285, -0.0025087178219109774, 0.046433206647634506, -0.034350402653217316, -0.048273228108882904, -0.07683852314949036, 0.042245324701070786, 0.03405315801501274, 0.008036665618419647, -0.07845709472894669, 0.012775006704032421, 0.05443377047777176, 0.03342492878437042, -0.06913391500711441, -0.022294044494628906, -0.1031406968832016, -0.08646916598081589, -0.009482727386057377, -0.1600002497434616, 0.07472137361764908, -0.019308101385831833, -0.02421741560101509, 0.26463741064071655, 0.015680858865380287, 0.0006387787288986146, -0.007802559994161129, -0.038708895444869995, 0.060397692024707794, 0.008571920916438103, -0.019296839833259583, -0.06503619253635406, 0.06001327559351921, -0.06568828970193863, 0.057851891964673996, -0.057045403867959976, -0.06593533605337143, 0.0406961552798748, 0.05800020694732666, 0.039659589529037476, -0.17968514561653137, -0.029538273811340332, -0.07462804764509201, 0.11919945478439331, -0.1062254086136818, 0.04354912415146828, 0.07883325219154358, 0.04374914616346359, 0.07683895528316498, 0.16537748277187347, -0.021186942234635353, 0.07207973301410675, -0.021470971405506134, 0.030208377167582512, -0.005083824973553419, 0.1446317583322525, -0.005047506652772427, -0.137693852186203, -0.0476197674870491, 0.21476976573467255, 0.2660520076751709, -0.11588539183139801, 0.012702584266662598, 0.018376436084508896, 0.04695601016283035, 0.0665600523352623, 0.2168489247560501, 0.050228219479322433, 0.11028528213500977, -0.015095217153429985, -0.14659586548805237, 0.03930986300110817, -0.08763694763183594, -0.0785382017493248, 0.039692796766757965, 0.0678551122546196, -0.05184775963425636, -0.1638035774230957, 0.150740385055542, -0.25349098443984985, 0.06072161719202995, 0.0785508006811142, -0.13391870260238647, -0.05913334712386131, -0.024752302095294, 0.1443033516407013, 0.03494846820831299, -0.02516769990324974, -0.06208763271570206, -0.053545963019132614, -0.05882514268159866, -0.02650299295783043, -0.34349673986434937, -0.18945926427841187, -0.03900161013007164, -0.045184820890426636, 0.13357383012771606, 0.004339433275163174, 0.055698785930871964, -0.0013803690671920776, 0.040553539991378784, -0.04565098509192467, 0.03560963273048401, 0.0330815315246582, 0.0047000995837152, -0.051412127912044525, -0.09236232936382294, -0.08673320710659027, -0.07652556896209717, 0.11361774057149887, 0.07912364602088928, -0.04799467697739601, 0.12881509959697723, 0.024223126471042633, -0.05033852905035019, -0.07414016872644424, -0.11819019913673401, 0.06447423994541168, -0.01122624147683382, -0.009278623387217522, 0.02415735088288784, 0.02031674236059189, 0.054114919155836105, 0.017116254195570946, -0.16759514808654785, -0.06264198571443558, 0.07806440442800522, -0.1073305755853653, 0.1295316517353058, 0.039662156254053116, -0.04136235639452934, 0.08328452706336975, -0.030227264389395714, 0.08190855383872986, -0.025205640122294426, 0.055215705186128616, 0.2020633965730667, 0.07026945799589157, -0.05067967623472214, -0.10366678237915039, 0.09244946390390396, -0.024704251438379288, 0.004639187827706337, -0.07270639389753342 ]
f29e1a4f8fbf708eabd1b2bec5368651a21ab8ed
# Dataset Card for "wikipedia.reorder.osv.fr" [More Information needed](https://github.com/huggingface/datasets/blob/main/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
lshowway/wikipedia.reorder.osv.fr
[ "region:us" ]
2023-02-07T22:49:08+00:00
{"dataset_info": {"features": [{"name": "text", "dtype": "string"}], "splits": [{"name": "train", "num_bytes": 886603410, "num_examples": 490371}], "download_size": 404858868, "dataset_size": 886603410}}
2023-02-09T11:06:22+00:00
[]
[]
TAGS #region-us
# Dataset Card for "URL" More Information needed
[ "# Dataset Card for \"URL\"\n\nMore Information needed" ]
[ "TAGS\n#region-us \n", "# Dataset Card for \"URL\"\n\nMore Information needed" ]
[ 6, 11 ]
[ "passage: TAGS\n#region-us \n# Dataset Card for \"URL\"\n\nMore Information needed" ]
[ -0.02736615017056465, 0.24641479551792145, -0.004999609664082527, 0.00532207265496254, 0.11865795403718948, 0.12466172873973846, 0.08990644663572311, 0.0666937455534935, 0.13375571370124817, -0.0585162453353405, 0.10589469224214554, -0.02611389383673668, 0.016327891498804092, 0.061111170798540115, -0.024894926697015762, -0.02547740377485752, 0.02389971911907196, -0.014960099011659622, -0.06000110134482384, 0.016922330483794212, -0.044748350977897644, -0.056700076907873154, 0.06497771292924881, -0.135508194565773, -0.09135930985212326, 0.15042288601398468, -0.054760366678237915, 0.00731249013915658, 0.010878117755055428, -0.10352317243814468, 0.17798414826393127, -0.025278160348534584, 0.06362763047218323, -0.23342010378837585, 0.009710743092000484, 0.01587541028857231, -0.04444526880979538, 0.030553318560123444, 0.010348712094128132, -0.15540485084056854, -0.1965184509754181, 0.011877017095685005, -0.00765087129548192, -0.026264049112796783, -0.05658840015530586, -0.15352056920528412, -0.09679792821407318, 0.038268573582172394, -0.04692218080163002, 0.009477831423282623, 0.10166623443365097, 0.07879310846328735, -0.19003216922283173, 0.03463815152645111, 0.0672849714756012, -0.05746278166770935, 0.07752247899770737, 0.1543678194284439, -0.0481472909450531, 0.16588279604911804, -0.06815345585346222, 0.07471946626901627, 0.08858564496040344, -0.015787314623594284, -0.09780268371105194, -0.041639216244220734, -0.2306254506111145, 0.16810032725334167, 0.04031067714095116, -0.10807806253433228, 0.2929764688014984, 0.06712256371974945, 0.03718259185552597, 0.15200498700141907, -0.013004112988710403, 0.05858894810080528, -0.014152687042951584, 0.10213763266801834, 0.09711809456348419, 0.10302720963954926, -0.03392526134848595, -0.04996102675795555, -0.10892009735107422, -0.13788050413131714, -0.09385806322097778, 0.025513319298624992, -0.02754286862909794, 0.18681570887565613, -0.18427042663097382, -0.032458771020174026, 0.08355966955423355, -0.03275534510612488, 0.01931970752775669, -0.10066316276788712, 0.08868104964494705, 0.03244531899690628, -0.042702171951532364, 0.018054774031043053, 0.16299043595790863, 0.05755241587758064, 0.10932990163564682, 0.04332285374403, -0.08926116675138474, 0.09634534269571304, 0.13358843326568604, -0.052311692386865616, 0.0038691547233611345, -0.018690913915634155, -0.0030184565111994743, -0.12628048658370972, -0.005210535135120153, -0.06061053276062012, -0.10222984850406647, 0.06902942806482315, -0.14024440944194794, 0.13202688097953796, -0.0102159408852458, -0.08311475068330765, -0.03888928145170212, 0.0129152936860919, 0.09205423295497894, -0.10039244592189789, 0.09060217440128326, 0.0405869334936142, -0.08785726130008698, 0.029710114002227783, -0.024029076099395752, -0.03510059043765068, -0.00533023988828063, 0.043366819620132446, -0.08690439909696579, 0.014616398140788078, -0.026901770383119583, 0.008535914123058319, 0.12597644329071045, -0.0763992965221405, 0.05851645767688751, -0.09280791133642197, -0.22553668916225433, -0.005333194509148598, 0.07383669167757034, -0.023032745346426964, 0.23270867764949799, -0.021679392084479332, 0.08729247003793716, 0.017888490110635757, -0.04625766724348068, 0.004754893947392702, -0.10934391617774963, 0.05313396453857422, -0.09133537858724594, 0.07553558796644211, -0.1856498420238495, 0.055791325867176056, -0.12443438172340393, -0.04020817577838898, 0.027055714279413223, 0.020803358405828476, -0.17505519092082977, 0.2135130614042282, -0.08981246501207352, 0.04695606976747513, -0.17165158689022064, 0.047785934060811996, 0.028568407520651817, 0.07697968930006027, -0.062161438167095184, -0.016537439078092575, 0.23202255368232727, -0.04733821377158165, -0.1521792709827423, -0.009455995634198189, -0.03443985804915428, 0.022283295169472694, 0.0478212907910347, 0.33786460757255554, 0.07251841574907303, -0.01827423833310604, 0.020707610994577408, 0.21949604153633118, -0.16161735355854034, -0.3084198534488678, 0.01291941199451685, -0.09231924265623093, -0.08742319792509079, 0.03967057913541794, 0.20773614943027496, -0.009833353571593761, -0.0321679413318634, -0.08768041431903839, -0.003410079050809145, -0.12097445875406265, -0.01379752904176712, 0.025037141516804695, 0.006385875400155783, -0.02351299114525318, 0.08867436647415161, 0.011520599015057087, 0.04974367469549179, 0.00955379381775856, 0.02603384479880333, 0.04653520882129669, 0.036739859730005264, -0.07972963154315948, 0.017130255699157715, -0.15297242999076843, -0.12168003618717194, -0.02960156463086605, 0.025522425770759583, 0.04508078098297119, -0.047614216804504395, 0.09371016174554825, -0.13802814483642578, 0.028749916702508926, 0.05048147216439247, 0.10392602533102036, 0.04768262058496475, 0.009196841157972813, -0.01683051884174347, 0.0659290999174118, -0.05021018534898758, -0.18059515953063965, -0.01514856331050396, -0.08228828758001328, 0.07771183550357819, 0.04977184161543846, 0.007034908514469862, -0.009514199569821358, 0.040243081748485565, -0.022616853937506676, 0.024274293333292007, -0.05440562590956688, 0.02478034421801567, -0.03382716327905655, 0.004939730744808912, 0.01876276545226574, 0.11118663847446442, 0.16151654720306396, 0.13405252993106842, -0.10624892264604568, 0.037969816476106644, 0.009105491451919079, 0.03520135208964348, 0.022724568843841553, 0.0037059485912323, -0.03156013786792755, -0.10598115622997284, -0.01609111949801445, 0.03133101016283035, -0.05824912339448929, 0.03020200878381729, -0.001126562594436109, -0.03415697067975998, -0.06139254570007324, 0.032049112021923065, 0.20829936861991882, -0.23587022721767426, 0.15348127484321594, 0.18377546966075897, 0.08739354461431503, 0.1222572773694992, -0.0974915474653244, -0.09788326174020767, 0.07313038408756256, -0.022896431386470795, -0.12164448201656342, 0.14040148258209229, -0.031870752573013306, -0.02407977730035782, 0.052013181149959564, 0.03782838210463524, 0.09175483137369156, -0.12144821137189865, -0.10516088455915451, -0.00901557132601738, -0.0168389230966568, -0.24999873340129852, -0.07294835150241852, -0.016814347356557846, 0.058557361364364624, 0.05843561142683029, -0.06458717584609985, 0.13021767139434814, -0.07070270925760269, -0.04124400392174721, 0.07254289835691452, -0.19371357560157776, -0.24088646471500397, -0.06844194233417511, -0.10259673744440079, 0.051142703741788864, 0.0032891922164708376, -0.022624092176556587, -0.18575842678546906, -0.060237668454647064, 0.04477272182703018, -0.1617257297039032, -0.14245055615901947, -0.04645982384681702, 0.04160561040043831, 0.08983379602432251, -0.03381173312664032, -0.13285484910011292, 0.03310687839984894, -0.0821271762251854, 0.1301731914281845, 0.057914551347494125, -0.1287173330783844, 0.1797209233045578, 0.09724186360836029, -0.01591423526406288, 0.07418535649776459, -0.006732334848493338, 0.017141086980700493, -0.0520198792219162, -0.052316710352897644, 0.0005659471498802304, -0.028396211564540863, 0.06976868212223053, 0.09650629013776779, 0.10114220529794693, -0.11997958272695541, 0.0077377380803227425, -0.002997587900608778, -0.13079679012298584, -0.30131796002388, -0.11291560530662537, -0.047568194568157196, 0.024180304259061813, 0.024172356352210045, 0.10919761657714844, -0.08149097859859467, 0.03632649406790733, 0.12972033023834229, -0.012860076501965523, -0.1328815519809723, -0.03396141901612282, -0.04833823814988136, 0.007257414050400257, -0.06416501104831696, -0.19858242571353912, -0.04377574473619461, 0.1355394870042801, 0.2159186601638794, 0.22564059495925903, 0.13557490706443787, 0.12302789092063904, 0.02862914465367794, 0.08115793764591217, 0.054796621203422546, 0.1137317568063736, 0.10081488639116287, 0.0020760747138410807, 0.023338239639997482, 0.02629259042441845, -0.050240594893693924, 0.010083193890750408, 0.11701637506484985, -0.19189350306987762, 0.07119116932153702, -0.20564940571784973, 0.0730205699801445, -0.09776657074689865, 0.02894597314298153, -0.1343766301870346, 0.14625521004199982, 0.04088818281888962, 0.10778449475765228, -0.04562107473611832, 0.09320859611034393, 0.025036916136741638, -0.018256714567542076, 0.06577207148075104, 0.07638702541589737, 0.12878713011741638, -0.05674543231725693, -0.04027076065540314, -0.020141711458563805, -0.10418081283569336, -0.008264302276074886, 0.1380237340927124, -0.06575533002614975, 0.2300550639629364, 0.06223810836672783, -0.039945829659700394, -0.030916614457964897, -0.07242675125598907, 0.011372453533113003, 0.043299466371536255, 0.097993865609169, 0.060118988156318665, -0.11701253801584244, -0.16810420155525208, -0.0847296193242073, 0.04729967564344406, 0.18785084784030914, 0.06358970701694489, -0.10417300462722778, 0.040843162685632706, -0.027000779286026955, -0.011193417944014072, -0.16400626301765442, -0.07688996940851212, -0.12754181027412415, -0.1059812381863594, 0.06589416414499283, -0.1336808204650879, 0.06036248058080673, 0.07731401920318604, -0.040409307926893234, 0.12786494195461273, 0.0594213642179966, -0.04034484177827835, -0.09196456521749496, -0.06306673586368561, 0.06126852333545685, 0.007004224229604006, -0.004764638375490904, 0.020556451752781868, -0.09557019174098969, -0.02035103179514408, -0.228969544172287, 0.06388361006975174, -0.03060567006468773, 0.18149784207344055, -0.11782719194889069, 0.11656245589256287, -0.06803935021162033, -0.04075160622596741, -0.02914157323539257, -0.005328672472387552, -0.059021297842264175, -0.12085343897342682, 0.1737344115972519, -0.036718327552080154, 0.0999385267496109, 0.23633423447608948, -0.03716893121600151, 0.012825082056224346, 0.14479973912239075, 0.0011433718027547002, 0.20028121769428253, 0.030520237982273102, -0.0639571025967598, 0.1541924774646759, 0.2821749150753021, -0.07757968455553055, -0.31982287764549255, -0.007222495041787624, -0.2175678312778473, -0.12756626307964325, 0.018692411482334137, -0.2390202283859253, 0.11895318329334259, 0.031123515218496323, -0.05609087273478508, 0.25739315152168274, -0.045974478125572205, 0.002731194719672203, 0.11567188799381256, -0.022633418440818787, 0.30677732825279236, -0.0863635316491127, -0.10520051419734955, -0.14682592451572418, -0.24992266297340393, 0.1414646953344345, -0.07752583920955658, 0.026309873908758163, 0.07999929785728455, 0.10597685724496841, -0.030380848795175552, -0.047746140509843826, 0.1010608896613121, 0.051066964864730835, 0.11405359953641891, -0.059016913175582886, -0.05826506018638611, 0.16965341567993164, -0.021773874759674072, 0.08697138726711273, -0.011129774153232574, 0.018917303532361984, -0.09712687879800797, 0.008075667545199394, 0.06776311993598938, -0.02327558398246765, 0.1038324236869812, -0.03389432653784752, -0.11193180084228516, -0.04491998627781868, -0.04812084883451462, 0.0028395045083016157, 0.1372835338115692, 0.0427447147667408, -0.06268350034952164, 0.03197682648897171, 0.009796510450541973, -0.14811590313911438, -0.028857821598649025, -0.06643926352262497, -0.1371839940547943, 0.09195949137210846, -0.32313352823257446, 0.06767386198043823, 0.1069786325097084, 0.0013835185673087835, 0.003770646173506975, 0.0704207792878151, -0.0319909043610096, -0.03596922382712364, 0.1609714776277542, -0.06133221462368965, 0.013609315268695354, 0.05996796488761902, -0.21124303340911865, 0.008099332451820374, 0.07672182470560074, 0.03359147533774376, 0.06611049920320511, 0.002934654476121068, -0.007098945323377848, 0.0611451230943203, -0.04607166722416878, 0.012646178714931011, 0.17779676616191864, -0.002901229541748762, -0.1545499563217163, 0.2822861075401306, 0.03396419808268547, -0.010481749661266804, 0.038649871945381165, 0.0013442805502563715, -0.08133964240550995, -0.08317520469427109, 0.017021294683218002, 0.23651985824108124, -0.021052507683634758, -0.13912256062030792, -0.023321298882365227, 0.03154321759939194, 0.02172408439218998, 0.0511493980884552, 0.021572599187493324, 0.12204822152853012, 0.06037377193570137, -0.005142042879015207, 0.04945920780301094, -0.03084448352456093, -0.12382929772138596, -0.0293396208435297, -0.06577746570110321, -0.2270778864622116, -0.027324263006448746, 0.14607103168964386, -0.06550978124141693, -0.0585264153778553, -0.11429637670516968, 0.13191473484039307, -0.24435874819755554, 0.03546863794326782, 0.05443674698472023, 0.03908611461520195, -0.024469954892992973, 0.0007571890018880367, -0.0507492795586586, 0.006633548531681299, -0.12494475394487381, 0.022187843918800354, 0.09115873277187347, 0.013263341970741749, -0.20376721024513245, -0.0348670594394207, 0.08144532144069672, 0.08972422778606415, 0.0550682432949543, 0.11372026056051254, -0.028049960732460022, 0.11966677010059357, -0.21815773844718933, -0.14390233159065247, 0.07611612230539322, 0.07013735175132751, 0.031550344079732895, 0.23528888821601868, -0.000775657594203949, 0.07478751242160797, -0.057708121836185455, 0.04644229635596275, -0.08431683480739594, -0.08618823438882828, 0.0006272406317293644, -0.20124605298042297, -0.09348879009485245, 0.028301483020186424, -0.07350953668355942, 0.2156493365764618, 0.056410618126392365, -0.0018574928399175406, 0.06469016522169113, 0.012180079706013203, -0.023448098450899124, -0.05072961375117302, 0.021274810656905174, -0.12072823941707611, -0.17412513494491577, 0.03214018791913986, 0.010927241295576096, -0.09762725234031677, 0.44719141721725464, 0.042114824056625366, -0.12265977263450623, -0.03154798224568367, 0.17989656329154968, -0.03374924138188362, 0.00742442486807704, 0.2112850397825241, 0.057351239025592804, -0.07336155325174332, -0.07687846571207047, 0.01459389179944992, 0.04226077347993851, -0.02175755240023136, 0.06511202454566956, 0.09903998672962189, 0.21440280973911285, -0.0025087178219109774, 0.046433206647634506, -0.034350402653217316, -0.048273228108882904, -0.07683852314949036, 0.042245324701070786, 0.03405315801501274, 0.008036665618419647, -0.07845709472894669, 0.012775006704032421, 0.05443377047777176, 0.03342492878437042, -0.06913391500711441, -0.022294044494628906, -0.1031406968832016, -0.08646916598081589, -0.009482727386057377, -0.1600002497434616, 0.07472137361764908, -0.019308101385831833, -0.02421741560101509, 0.26463741064071655, 0.015680858865380287, 0.0006387787288986146, -0.007802559994161129, -0.038708895444869995, 0.060397692024707794, 0.008571920916438103, -0.019296839833259583, -0.06503619253635406, 0.06001327559351921, -0.06568828970193863, 0.057851891964673996, -0.057045403867959976, -0.06593533605337143, 0.0406961552798748, 0.05800020694732666, 0.039659589529037476, -0.17968514561653137, -0.029538273811340332, -0.07462804764509201, 0.11919945478439331, -0.1062254086136818, 0.04354912415146828, 0.07883325219154358, 0.04374914616346359, 0.07683895528316498, 0.16537748277187347, -0.021186942234635353, 0.07207973301410675, -0.021470971405506134, 0.030208377167582512, -0.005083824973553419, 0.1446317583322525, -0.005047506652772427, -0.137693852186203, -0.0476197674870491, 0.21476976573467255, 0.2660520076751709, -0.11588539183139801, 0.012702584266662598, 0.018376436084508896, 0.04695601016283035, 0.0665600523352623, 0.2168489247560501, 0.050228219479322433, 0.11028528213500977, -0.015095217153429985, -0.14659586548805237, 0.03930986300110817, -0.08763694763183594, -0.0785382017493248, 0.039692796766757965, 0.0678551122546196, -0.05184775963425636, -0.1638035774230957, 0.150740385055542, -0.25349098443984985, 0.06072161719202995, 0.0785508006811142, -0.13391870260238647, -0.05913334712386131, -0.024752302095294, 0.1443033516407013, 0.03494846820831299, -0.02516769990324974, -0.06208763271570206, -0.053545963019132614, -0.05882514268159866, -0.02650299295783043, -0.34349673986434937, -0.18945926427841187, -0.03900161013007164, -0.045184820890426636, 0.13357383012771606, 0.004339433275163174, 0.055698785930871964, -0.0013803690671920776, 0.040553539991378784, -0.04565098509192467, 0.03560963273048401, 0.0330815315246582, 0.0047000995837152, -0.051412127912044525, -0.09236232936382294, -0.08673320710659027, -0.07652556896209717, 0.11361774057149887, 0.07912364602088928, -0.04799467697739601, 0.12881509959697723, 0.024223126471042633, -0.05033852905035019, -0.07414016872644424, -0.11819019913673401, 0.06447423994541168, -0.01122624147683382, -0.009278623387217522, 0.02415735088288784, 0.02031674236059189, 0.054114919155836105, 0.017116254195570946, -0.16759514808654785, -0.06264198571443558, 0.07806440442800522, -0.1073305755853653, 0.1295316517353058, 0.039662156254053116, -0.04136235639452934, 0.08328452706336975, -0.030227264389395714, 0.08190855383872986, -0.025205640122294426, 0.055215705186128616, 0.2020633965730667, 0.07026945799589157, -0.05067967623472214, -0.10366678237915039, 0.09244946390390396, -0.024704251438379288, 0.004639187827706337, -0.07270639389753342 ]
2c99d96c3ae7e0f47355a6cff339328647e0a94f
# Dataset Card for "stormfront-medium" [More Information needed](https://github.com/huggingface/datasets/blob/main/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
kastan/stormfront-medium
[ "region:us" ]
2023-02-07T23:43:27+00:00
{"dataset_info": {"features": [{"name": "title", "dtype": "string"}, {"name": "content", "dtype": "string"}], "splits": [{"name": "train", "num_bytes": 1446594601, "num_examples": 2000000}, {"name": "test", "num_bytes": 386917, "num_examples": 791}], "download_size": 897472441, "dataset_size": 1446981518}}
2023-02-07T23:43:59+00:00
[]
[]
TAGS #region-us
# Dataset Card for "stormfront-medium" More Information needed
[ "# Dataset Card for \"stormfront-medium\"\n\nMore Information needed" ]
[ "TAGS\n#region-us \n", "# Dataset Card for \"stormfront-medium\"\n\nMore Information needed" ]
[ 6, 15 ]
[ "passage: TAGS\n#region-us \n# Dataset Card for \"stormfront-medium\"\n\nMore Information needed" ]
[ -0.17583337426185608, 0.07647905498743057, -0.002975450363010168, 0.07635733485221863, 0.09487404674291611, 0.11139450967311859, 0.07708410173654556, -0.046936411410570145, 0.1673436313867569, -0.04045515134930611, 0.17186592519283295, -0.022205900400877, 0.0038057221099734306, 0.1971236616373062, -0.056897424161434174, -0.1631905734539032, 0.03777589276432991, 0.023603806272149086, -0.12242685258388519, 0.06644053757190704, 0.06321155279874802, -0.12947611510753632, 0.013694653287529945, -0.13141776621341705, -0.14950361847877502, 0.08388891071081161, -0.013707921840250492, -0.044146232306957245, 0.09327298402786255, -0.05271312594413757, 0.1384056806564331, -0.004493724554777145, 0.015460473485291004, -0.010346483439207077, 0.034393541514873505, -0.040428824722766876, -0.0646442249417305, 0.03472152724862099, 0.08522441238164902, -0.10808590054512024, -0.10385455936193466, 0.024874234572052956, 0.04759889096021652, -0.013232802972197533, -0.11148088425397873, -0.2069605588912964, -0.13375572860240936, 0.04896683990955353, 0.08343324810266495, 0.024250440299510956, 0.09456449747085571, 0.10648733377456665, -0.08973554521799088, 0.038697145879268646, 0.013642733916640282, 0.01380949467420578, -0.012811127118766308, 0.12237430363893509, -0.046226076781749725, 0.0825207307934761, 0.017222484573721886, 0.06453417986631393, 0.09968151152133942, -0.008999300189316273, -0.037126779556274414, 0.015723438933491707, -0.11862900108098984, 0.11029760539531708, -0.07236790657043457, -0.08332891762256622, 0.3215075731277466, 0.012315478175878525, -0.003745367517694831, -0.0003555583825800568, 0.02432037517428398, 0.05446772649884224, 0.02149219810962677, 0.051714662462472916, -0.02346748113632202, 0.0009000623249448836, 0.052067920565605164, -0.007809357717633247, -0.10454333573579788, -0.10116416960954666, -0.1417568027973175, 0.22084392607212067, -0.07795343548059464, 0.16962848603725433, -0.2002296894788742, 0.02343808114528656, -0.017665494233369827, -0.0699472650885582, 0.010718515142798424, -0.09325869381427765, -0.07339209318161011, 0.005131862126290798, -0.030844060704112053, 0.01764330081641674, 0.06032858416438103, 0.13253703713417053, 0.030307181179523468, -0.005992362275719643, 0.028949566185474396, 0.07067781686782837, 0.1621076613664627, -0.1281309276819229, -0.002208099467679858, -0.054166194051504135, -0.03594594821333885, -0.164787158370018, 0.04156281799077988, -0.13177351653575897, -0.05478385090827942, -0.00912794191390276, -0.17066964507102966, 0.12116853892803192, 0.006123685743659735, -0.1727190762758255, -0.0875733345746994, -0.07837219536304474, 0.27285149693489075, -0.09694517403841019, 0.017249474301934242, 0.043588895350694656, -0.040659308433532715, -0.010272190906107426, -0.13647018373012543, 0.015321101061999798, 0.14842450618743896, 0.030385615304112434, -0.05193016678094864, -0.07938361912965775, -0.062436312437057495, -0.015929648652672768, 0.11218448728322983, -0.14570949971675873, 0.056463927030563354, -0.09719546139240265, -0.31678372621536255, 0.09305830299854279, 0.04212834686040878, -0.04903169721364975, 0.025694696232676506, 0.09718591719865799, 0.03999381139874458, 0.06130272522568703, -0.0646543800830841, 0.17607717216014862, -0.0824965313076973, -0.014015880413353443, -0.05504937097430229, 0.04895228520035744, -0.22116193175315857, -0.024793775752186775, -0.06958424299955368, -0.011655119247734547, -0.03083382174372673, -0.023739701136946678, -0.1077350601553917, 0.09439342468976974, -0.09873045235872269, 0.019650526344776154, -0.06883074343204498, 0.030047519132494926, -0.029652096331119537, 0.16601604223251343, -0.2464662343263626, -0.03830866515636444, 0.019816137850284576, -0.15934863686561584, -0.11644605547189713, -0.031211724504828453, -0.05840497463941574, -0.0239140372723341, 0.04848417639732361, 0.15846213698387146, 0.01877450756728649, 0.049255505204200745, 0.014065447263419628, 0.15840846300125122, -0.19273874163627625, -0.3033963143825531, 0.10984912514686584, -0.01750611513853073, -0.2690650522708893, 0.018671412020921707, 0.17050540447235107, 0.00746427895501256, -0.0836590826511383, -0.026872027665376663, -0.0020586829632520676, -0.08204559236764908, 0.012848666869103909, -0.005435413680970669, -0.010697870515286922, -0.020805906504392624, 0.10597057640552521, 0.011937468312680721, 0.06848595291376114, 0.043248195201158524, -0.01698170229792595, 0.009066346101462841, 0.015568435192108154, -0.11259029060602188, -0.033022623509168625, -0.1717243194580078, -0.16613760590553284, 0.0005168452626094222, 0.049660902470350266, -0.041229553520679474, 0.022745726630091667, 0.11876954883337021, -0.05055664852261543, -0.0032309978269040585, 0.06436103582382202, 0.15229728817939758, 0.046792034059762955, -0.030681787058711052, -0.07331472635269165, -0.05364979803562164, -0.12276200950145721, -0.04010860621929169, -0.11664247512817383, -0.02581609971821308, 0.20929493010044098, 0.023264499381184578, -0.008802022784948349, -0.014078899286687374, 0.06511674076318741, -0.08760122209787369, 0.001333817490376532, -0.04182213172316551, 0.00333182280883193, -0.029594440013170242, -0.09476941078901291, 0.10600410401821136, -0.007620062679052353, 0.1905231922864914, 0.027940718457102776, 0.12369389832019806, 0.033194854855537415, -0.06810624897480011, -0.003051541978493333, -0.025639496743679047, -0.02208704687654972, 0.03067385032773018, -0.12383696436882019, -0.03616407886147499, 0.020545996725559235, 0.000369016983313486, 0.026337962597608566, 0.028841927647590637, 0.04175695404410362, -0.0946144089102745, 0.10371457785367966, 0.10250460356473923, -0.15430349111557007, 0.08891227096319199, 0.18608473241329193, 0.11238981038331985, 0.10034418851137161, -0.04387001693248749, -0.07109636813402176, 0.016807904466986656, -0.17300014197826385, -0.042631205171346664, 0.23171821236610413, 0.07214558869600296, 0.07084304094314575, 0.12745775282382965, 0.031164640560746193, 0.06449819356203079, -0.07647796720266342, -0.11908607184886932, 0.036423150449991226, 0.06658336520195007, -0.13885003328323364, 0.07514820992946625, -0.034969113767147064, 0.09557104110717773, -0.007774891797453165, -0.07893615961074829, 0.13952146470546722, -0.015035714954137802, -0.0011109638726338744, 0.13686352968215942, -0.14027853310108185, -0.27478036284446716, -0.030046487227082253, -0.08397825062274933, 0.025606166571378708, -0.009102057665586472, -0.0402701199054718, -0.12303845584392548, -0.07022318989038467, -0.019801471382379532, -0.007924992591142654, -0.17690317332744598, 0.03156284987926483, 0.05791277065873146, -0.06256366521120071, -0.07047703117132187, -0.0957430824637413, 0.05533744767308235, -0.02348175086081028, 0.02210114896297455, 0.09467467665672302, -0.04703303426504135, 0.14125390350818634, 0.144342839717865, 0.043991535902023315, 0.08185724914073944, -0.0020040792878717184, 0.04499368369579315, -0.0523347482085228, -0.00966622680425644, 0.09356055408716202, -0.04048845171928406, -0.016456685960292816, 0.07754703611135483, 0.16013756394386292, -0.13241510093212128, -0.059486690908670425, -0.0656939148902893, -0.1883711963891983, -0.2544097602367401, -0.13345924019813538, -0.04500884190201759, 0.06258361041545868, 0.028249692171812057, 0.10037868469953537, -0.08464007079601288, 0.08821859955787659, 0.09359383583068848, -0.14646385610103607, -0.11722362786531448, -0.03175044432282448, -0.09826942533254623, 0.01219094730913639, 0.014353631995618343, -0.16272634267807007, 0.06785283237695694, 0.16968142986297607, 0.17289698123931885, 0.17858098447322845, 0.1032303124666214, 0.1206243708729744, -0.019935593008995056, 0.07486829906702042, 0.08511736243963242, 0.17767134308815002, 0.09891824424266815, -0.019581250846385956, 0.025074798613786697, 0.05571470409631729, 0.0381692498922348, -0.06870181113481522, 0.04433933272957802, -0.03104386292397976, 0.011271464638411999, -0.13477474451065063, -0.016115611419081688, -0.0038627460598945618, 0.05064908415079117, -0.236773282289505, 0.011941676959395409, 0.026114828884601593, 0.07965438067913055, -0.06992192566394806, 0.06646700203418732, 0.07922077924013138, -0.009594381786882877, 0.15545731782913208, -0.03273802623152733, 0.04202594608068466, -0.00788258109241724, -0.03220893815159798, -0.00871848315000534, -0.06057240068912506, -0.03916464373469353, 0.10998586565256119, -0.027963288128376007, 0.2185305804014206, 0.031195515766739845, -0.04282359033823013, -0.10214370489120483, -0.0789221003651619, -0.039122577756643295, 0.10825001448392868, 0.13737067580223083, -0.0012404799927026033, -0.09819339960813522, -0.10346876084804535, -0.14757142961025238, 0.0020652622915804386, 0.06792714446783066, -0.12631690502166748, -0.12375401705503464, 0.09840989112854004, 0.010293246246874332, -0.0021049617789685726, -0.19248846173286438, -0.10746011883020401, -0.12342425435781479, -0.04023263603448868, 0.054423507302999496, -0.18314006924629211, -0.03329199180006981, -0.03694496676325798, -0.04234090447425842, -0.006835964974015951, -0.01712138205766678, -0.028958993032574654, -0.1636783927679062, -0.025773540139198303, 0.19035939872264862, 0.015851864591240883, 0.026187317445874214, 0.053669653832912445, 0.08295175433158875, -0.025335684418678284, -0.15374040603637695, 0.07173459231853485, -0.15341143310070038, 0.09293153882026672, -0.07748674601316452, 0.08357396721839905, 0.08554239571094513, 0.034226227551698685, -0.03639794886112213, 0.0656532347202301, -0.05433126538991928, -0.07540114223957062, 0.11798576265573502, -0.11782057583332062, 0.12214988470077515, 0.20843146741390228, 0.21088844537734985, 0.03813379257917404, 0.1791519671678543, -0.045640263706445694, 0.18441124260425568, 0.05521624535322189, -0.09172973781824112, 0.21388892829418182, 0.09993790835142136, -0.020535284653306007, -0.30801162123680115, 0.049292031675577164, -0.11940918862819672, -0.012932758778333664, 0.07805956900119781, -0.17352966964244843, 0.1446496546268463, 0.10077562183141708, -0.07750814408063889, 0.2612083852291107, -0.09973122924566269, 0.03994523361325264, 0.18778792023658752, 0.006674451753497124, 0.39183905720710754, -0.11383047699928284, -0.06933557242155075, -0.09611868858337402, -0.07429293543100357, 0.21231351792812347, -0.14258335530757904, -0.03423487767577171, -0.03871503844857216, 0.0006151646375656128, -0.029949851334095, -0.05882074683904648, 0.2191668003797531, 0.059204865247011185, 0.11652415990829468, -0.05568637698888779, 0.0010245967423543334, 0.05499500781297684, -0.06338366866111755, 0.01498369500041008, 0.07561740279197693, 0.022257806733250618, -0.22497056424617767, -0.022917211055755615, 0.07182574272155762, 0.08137668669223785, 0.0694284662604332, 0.0005259576719254255, 0.022137170657515526, -0.03679395839571953, -0.1473371833562851, -0.06325727701187134, 0.17592443525791168, 0.0225386880338192, -0.03098214417695999, 0.013691174797713757, 0.08054143935441971, -0.05916822329163551, -0.0788324773311615, -0.11035789549350739, -0.05898868665099144, 0.12183540314435959, -0.2522130310535431, 0.029379041865468025, 0.030804701149463654, 0.07083465903997421, -0.033709026873111725, 0.06302735954523087, 0.01690368726849556, 0.01175637450069189, 0.1445157676935196, -0.14117532968521118, -0.05603070184588432, 0.021089695394039154, 0.03717203810811043, -0.01405135914683342, 0.17324626445770264, 0.017405269667506218, 0.044079672545194626, 0.0031069510150700808, -0.05750138312578201, 0.06464417278766632, -0.014841923490166664, 0.05260075628757477, 0.12596069276332855, 0.03547142818570137, -0.20981809496879578, 0.2251516729593277, 0.03434770554304123, -0.12033054977655411, -0.011186111718416214, 0.025094591081142426, -0.039650145918130875, -0.09897129237651825, 0.03404416888952255, 0.16296520829200745, -0.08727379888296127, -0.13870768249034882, 0.012162532657384872, -0.09541282802820206, 0.07517331838607788, 0.1483769714832306, 0.041331734508275986, 0.028112508356571198, -0.029389237985014915, -0.039675284177064896, 0.008556211367249489, -0.041398897767066956, 0.02238321118056774, -0.018634987995028496, -0.022841444239020348, -0.25858640670776367, 0.0006394998636096716, 0.13607953488826752, -0.0720001682639122, -0.10341144353151321, -0.002751019084826112, 0.06481269001960754, -0.15552246570587158, 0.021401891484856606, 0.09355523437261581, 0.041087351739406586, -0.015764519572257996, 0.013707954436540604, -0.00928864162415266, -0.03375231474637985, -0.13617083430290222, 0.1614963859319687, 0.005750996991991997, 0.04410179704427719, -0.043125882744789124, -0.005571309477090836, -0.006095095071941614, 0.032825957983732224, 0.13597765564918518, 0.15473195910453796, 0.006921201944351196, 0.04668404534459114, -0.13879063725471497, -0.11439716070890427, -0.00931543204933405, 0.03382036089897156, 0.07841534912586212, 0.10529684275388718, -0.011090835556387901, 0.06503097712993622, -0.05722667649388313, 0.01247633621096611, -0.18999271094799042, -0.07373074442148209, 0.019679103046655655, -0.08749806135892868, -0.0616600401699543, -0.01424278412014246, -0.10227682441473007, 0.15760540962219238, 0.08199745416641235, 0.019315339624881744, 0.10190452635288239, 0.03733642026782036, -0.015559647232294083, -0.07464811950922012, -0.010471881367266178, -0.10505340248346329, -0.2263588011264801, 0.1374559849500656, 0.07557573169469833, -0.0367576889693737, 0.34756049513816833, -0.04660515487194061, -0.1509460210800171, -0.06633832305669785, 0.18011431396007538, -0.016450820490717888, 0.029974009841680527, 0.3190525770187378, 0.0637979730963707, 0.04528578743338585, 0.02039308100938797, 0.10831943154335022, 0.04863407090306282, 0.06497417390346527, 0.05153392255306244, 0.0830196663737297, 0.030212972313165665, 0.038715511560440063, 0.00926930457353592, -0.05977017432451248, 0.13657444715499878, -0.017907578498125076, -0.060600653290748596, 0.024298153817653656, 0.0996810644865036, -0.07680975645780563, 0.031227445229887962, -0.009900343604385853, -0.04484190046787262, -0.021495314314961433, -0.025291437283158302, -0.09284944832324982, -0.160227432847023, -0.0044409241527318954, -0.05379333347082138, 0.03531140089035034, -0.06502366811037064, 0.022208066657185555, 0.36926841735839844, 0.09258519858121872, 0.07071740925312042, 0.00795549713075161, 0.014106690883636475, 0.1417074352502823, 0.049196306616067886, -0.01745089702308178, -0.05043493211269379, 0.02106909453868866, -0.05404886603355408, 0.015762897208333015, -0.06941008567810059, -0.06783308833837509, -0.023333778604865074, 0.08709974586963654, 0.025842774659395218, -0.09830103069543839, -0.09873036295175552, -0.0373191200196743, 0.09676935523748398, -0.02866668626666069, 0.112940713763237, 0.013469760306179523, 0.07203596830368042, 0.04113517701625824, 0.09793350100517273, -0.011675983667373657, 0.03981916233897209, 0.01704244688153267, 0.0018769288435578346, -0.07210469990968704, 0.07177585363388062, 0.02224329486489296, -0.03100474551320076, -0.03282076492905617, 0.032935209572315216, 0.206391379237175, -0.07718414068222046, 0.00733179459348321, 0.01775238662958145, 0.04989176616072655, 0.06580393761396408, 0.18385104835033417, -0.01213670615106821, 0.10455246269702911, -0.047982554882764816, -0.07942084968090057, 0.011028098873794079, -0.018689051270484924, 0.011045044288039207, 0.11083851009607315, -0.008225095458328724, -0.07553315907716751, -0.09244537353515625, 0.20224148035049438, -0.04682394489645958, 0.056372713297605515, 0.046913374215364456, -0.05966654792428017, -0.10264747589826584, 0.002177941845729947, 0.16322211921215057, 0.010892811231315136, 0.0045412443578243256, -0.08469178527593613, 0.005994971841573715, -0.06973785907030106, -0.02726222760975361, -0.31047436594963074, -0.17481128871440887, 0.07382755726575851, 0.027516568079590797, 0.16668087244033813, -0.030918119475245476, 0.1780073344707489, -0.0018352675251662731, -0.011254478245973587, -0.1686304658651352, -0.05113707855343819, 0.00843704491853714, 0.016019994392991066, 0.0018743377877399325, 0.038733020424842834, -0.0741346925497055, -0.12672670185565948, 0.012710989452898502, -0.0669717863202095, -0.03691733628511429, 0.11131147295236588, -0.021940074861049652, 0.023422546684741974, 0.05011717975139618, -0.035928770899772644, 0.11330845206975937, -0.03252214938402176, -0.026877116411924362, -0.07353842258453369, 0.01582624949514866, 0.07071902602910995, 0.02974209375679493, -0.03678495064377785, -0.010347653180360794, -0.0003651702427305281, -0.08654475212097168, -0.024732770398259163, 0.019972629845142365, -0.08669967949390411, -0.004788524936884642, -0.11338970065116882, 0.0383324921131134, 0.028724031522870064, 0.02353302761912346, 0.1300637274980545, 0.009693877771496773, -0.04680030792951584, 0.19369274377822876, 0.04031088948249817, -0.027533970773220062, -0.05376185476779938, -0.07457154989242554 ]
6ee668c834ff8fb0ff28105f740113368b9c62a1
# Dataset Card for "chatbot-comparisons-rlhf" [More Information needed](https://github.com/huggingface/datasets/blob/main/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
kastan/chatbot-comparisons-rlhf
[ "region:us" ]
2023-02-08T00:13:49+00:00
{"dataset_info": {"features": [{"name": "Hi, this is an Alexa Prize Social bot! Tonight I'm planning to do some stargazing. It's supposed to be cloudy, but I'm hoping the skies will clear. What's your favorite planet?", "struct": [{"name": "blenderbot_175B", "sequence": "string"}, {"name": "cosmo", "sequence": "string"}, {"name": "davinci-003", "sequence": "string"}]}, {"name": "I don't think we've met. What's your name?", "struct": [{"name": "blenderbot_175B", "sequence": "string"}, {"name": "cosmo", "sequence": "string"}, {"name": "davinci-003", "sequence": "string"}]}, {"name": "Hello! How is your day going so far?", "struct": [{"name": "blenderbot_175B", "sequence": "string"}, {"name": "cosmo", "sequence": "string"}, {"name": "davinci-003", "sequence": "string"}]}, {"name": "Hi, I'm an Alexa Prize Social bot, it's nice to meet you!", "struct": [{"name": "blenderbot_175B", "sequence": "string"}, {"name": "cosmo", "sequence": "string"}, {"name": "davinci-003", "sequence": "string"}]}, {"name": "How has your day been so far?", "struct": [{"name": "blenderbot_175B", "sequence": "string"}, {"name": "cosmo", "sequence": "string"}, {"name": "davinci-003", "sequence": "string"}]}, {"name": "Do you have any plans for the weekend?", "struct": [{"name": "blenderbot_175B", "sequence": "string"}, {"name": "cosmo", "sequence": "string"}, {"name": "davinci-003", "sequence": "string"}]}, {"name": "Do you have any recommendations for things to do/see around here?", "struct": [{"name": "blenderbot_175B", "sequence": "string"}, {"name": "cosmo", "sequence": "string"}, {"name": "davinci-003", "sequence": "string"}]}, {"name": "What brings you here today?", "struct": [{"name": "blenderbot_175B", "sequence": "string"}, {"name": "cosmo", "sequence": "string"}, {"name": "davinci-003", "sequence": "string"}]}, {"name": "Have you seen any good movies/shows lately?", "struct": [{"name": "blenderbot_175B", "sequence": "string"}, {"name": "cosmo", "sequence": "string"}, {"name": "davinci-003", "sequence": "string"}]}, {"name": "What do you do for work/study?", "struct": [{"name": "blenderbot_175B", "sequence": "string"}, {"name": "cosmo", "sequence": "string"}, {"name": "davinci-003", "sequence": "string"}]}, {"name": "What do you enjoy doing in your free time?", "struct": [{"name": "blenderbot_175B", "sequence": "string"}, {"name": "cosmo", "sequence": "string"}, {"name": "davinci-003", "sequence": "string"}]}, {"name": "What's something interesting you've learned recently?", "struct": [{"name": "blenderbot_175B", "sequence": "string"}, {"name": "cosmo", "sequence": "string"}, {"name": "davinci-003", "sequence": "string"}]}, {"name": "What do you like to do in your free time?", "struct": [{"name": "blenderbot_175B", "sequence": "string"}, {"name": "cosmo", "sequence": "string"}, {"name": "davinci-003", "sequence": "string"}]}, {"name": "What's been the highlight of your day so far?", "struct": [{"name": "blenderbot_175B", "sequence": "string"}, {"name": "cosmo", "sequence": "string"}, {"name": "davinci-003", "sequence": "string"}]}, {"name": "What do you think about this whole AI revolution that\u2019s happening?", "struct": [{"name": "blenderbot_175B", "sequence": "string"}, {"name": "cosmo", "sequence": "string"}, {"name": "davinci-003", "sequence": "string"}]}], "splits": [{"name": "train", "num_bytes": 19186, "num_examples": 1}], "download_size": 69471, "dataset_size": 19186}}
2023-02-08T00:13:53+00:00
[]
[]
TAGS #region-us
# Dataset Card for "chatbot-comparisons-rlhf" More Information needed
[ "# Dataset Card for \"chatbot-comparisons-rlhf\"\n\nMore Information needed" ]
[ "TAGS\n#region-us \n", "# Dataset Card for \"chatbot-comparisons-rlhf\"\n\nMore Information needed" ]
[ 6, 20 ]
[ "passage: TAGS\n#region-us \n# Dataset Card for \"chatbot-comparisons-rlhf\"\n\nMore Information needed" ]
[ -0.046855878084897995, 0.10627195239067078, -0.0019398635486140847, -0.00274377572350204, 0.0704849511384964, 0.05517799034714699, 0.1347225308418274, 0.07066525518894196, 0.19309599697589874, -0.06319793313741684, 0.04396042972803116, 0.05171031132340431, 0.04150326922535896, 0.16457274556159973, -0.07646016031503677, -0.0540127195417881, 0.06840158253908157, 0.009802605956792831, -0.0961185172200203, 0.0459868498146534, 0.05031726881861687, -0.006637305952608585, 0.08322843164205551, -0.10363147407770157, -0.2530067265033722, 0.04630985110998154, -0.0033312737941741943, -0.02780892513692379, 0.1017736941576004, -0.005337827373296022, 0.11874935030937195, 0.027801940217614174, -0.012743874453008175, -0.07662418484687805, 0.03781603276729584, 0.007376682944595814, -0.06163034588098526, 0.056446678936481476, -0.10430929064750671, -0.13341383635997772, 0.049125365912914276, 0.06161545217037201, 0.01929628662765026, 0.010077639482915401, -0.06578263640403748, -0.11053870618343353, -0.10881307721138, -0.05089724063873291, 0.025961391627788544, -0.0010326426709070802, 0.06509861350059509, 0.20388905704021454, -0.13346178829669952, 0.08039526641368866, 0.1327352076768875, -0.12846265733242035, 0.05453842505812645, 0.2359554022550583, -0.01746664196252823, 0.1145082637667656, -0.03914085403084755, 0.03522603586316109, 0.08214356005191803, 0.0048651318065822124, -0.10409232974052429, -0.0512523427605629, -0.2337525635957718, 0.033870451152324677, -0.021957188844680786, -0.09076572954654694, 0.3558182418346405, -0.006794956512749195, 0.025205792859196663, 0.052329838275909424, -0.05724998563528061, -0.041076771914958954, 0.00685690063983202, 0.08981924504041672, -0.03797953575849533, -0.02848174050450325, -0.01158480066806078, -0.02713138610124588, -0.05266038328409195, -0.125432088971138, -0.12089186161756516, 0.0990302711725235, 0.003928915597498417, 0.19216161966323853, -0.24764356017112732, -0.03842306137084961, -0.008215641602873802, -0.017871880903840065, 0.01445302926003933, -0.1017293930053711, -0.0925028994679451, 0.0227863397449255, -0.03811424970626831, -0.01920020580291748, 0.1374971568584442, 0.09105472266674042, -0.06726501882076263, 0.058231938630342484, -0.09589722752571106, 0.09027495235204697, 0.14899073541164398, -0.08579334616661072, 0.02467355877161026, 0.0794558972120285, 0.016646424308419228, -0.13210085034370422, -0.005074151325970888, -0.0797567069530487, -0.12785302102565765, 0.06973110884428024, -0.07207833230495453, 0.1035565659403801, -0.07392580062150955, -0.05917798727750778, -0.009071637876331806, -0.032329410314559937, 0.22820442914962769, -0.06589967757463455, -0.008722732774913311, 0.019258681684732437, -0.09712126851081848, -0.09761982411146164, -0.019113129004836082, -0.037239450961351395, 0.06162135303020477, -0.07657118141651154, -0.04174397140741348, -0.015707511454820633, -0.047264765948057175, -0.06203683838248253, 0.05720627307891846, -0.06197942793369293, 0.03841397911310196, -0.15094216167926788, -0.1373874545097351, 0.03853655979037285, 0.040696144104003906, -0.04048541560769081, 0.10916676372289658, -0.026769893243908882, 0.024841157719492912, -0.028851862996816635, -0.016773294657468796, 0.004980673547834158, -0.06132671982049942, 0.04042607918381691, -0.09267853200435638, 0.10717172175645828, -0.24774862825870514, 0.05087192729115486, -0.10515052825212479, -0.019696632400155067, -0.14470428228378296, 0.06957387179136276, -0.18522700667381287, 0.0903344452381134, -0.025051197037100792, 0.04040265828371048, -0.047781456261873245, 0.000563511741347611, -0.03500167280435562, 0.06596699357032776, -0.17828209698200226, -0.07354290038347244, 0.27749207615852356, -0.16281703114509583, -0.12943752110004425, 0.03630983829498291, -0.04872816056013107, -0.026715846732258797, 0.023865586146712303, 0.3488580584526062, 0.15700970590114594, -0.009771442972123623, -0.04723750799894333, 0.11744163930416107, -0.15960343182086945, -0.2438877522945404, -0.010281725786626339, 0.03247359022498131, -0.16230346262454987, 0.031222883611917496, 0.11079688370227814, 0.07950373739004135, -0.0605013482272625, -0.03942188248038292, -0.017904948443174362, -0.1213153526186943, 0.05865706503391266, 0.018614793196320534, 0.061003487557172775, -0.06251365691423416, 0.1306709200143814, -0.055875666439533234, 0.13106951117515564, -0.0009083847398869693, -0.03588349372148514, -0.08962215483188629, 0.05782366544008255, 0.005520817823708057, 0.05035388842225075, -0.14925390481948853, -0.2154162973165512, 0.05573417246341705, 0.04307734966278076, 0.08480826020240784, 0.10644575208425522, 0.09437419474124908, -0.02054203301668167, 0.04775805026292801, 0.03646199405193329, 0.13590139150619507, 0.020996438339352608, 0.023087462410330772, -0.05029768496751785, 0.03217198699712753, -0.11469760537147522, 0.13133969902992249, -0.021572988480329514, -0.02543606422841549, 0.05447036400437355, 0.1383681446313858, 0.02460753172636032, -0.00017257928266189992, 0.050366681069135666, -0.04368085786700249, -0.015091863460838795, -0.013627791777253151, -0.026388918980956078, -0.03040037304162979, -0.029258497059345245, 0.15147320926189423, 0.008698459714651108, 0.0632738247513771, 0.11789219826459885, 0.06354395300149918, 0.019190920516848564, -0.004770050756633282, -0.008794323541224003, 0.009874415583908558, -0.05553800240159035, -0.01878943108022213, 0.06340731680393219, 0.000584527850151062, 0.0822535902261734, -0.03138301894068718, 0.012459737248718739, 0.02103455923497677, -0.04648379608988762, -0.07354819029569626, 0.09615437686443329, 0.11068081855773926, -0.21731895208358765, 0.11698959767818451, 0.05339425057172775, 0.11514393240213394, 0.1696787327528, -0.04296071454882622, 0.0082548214122653, 0.017975332215428352, 0.015239548869431019, -0.06578294932842255, 0.17730458080768585, -0.07036471366882324, -0.015619633719325066, 0.0734698548913002, 0.005900591611862183, 0.08952490240335464, -0.09938547015190125, -0.06544935703277588, -0.058942582458257675, -0.03674633428454399, -0.09656359255313873, 0.07023118436336517, 0.05698959156870842, 0.1089666560292244, -0.06411169469356537, -0.16915512084960938, 0.10264813154935837, -0.03873666003346443, -0.020810503512620926, 0.10976209491491318, -0.21094819903373718, -0.3384370803833008, -0.03660622611641884, -0.06272952258586884, -0.03758884221315384, -0.017218319699168205, -0.03695804625749588, -0.19890083372592926, -0.029322540387511253, 0.03831203281879425, -0.10156653076410294, -0.0722014382481575, -0.02954096905887127, 0.029903361573815346, 0.007415202911943197, -0.0648532584309578, -0.14106817543506622, -0.009572380222380161, -0.07310061156749725, 0.041823435574769974, 0.17904505133628845, -0.1447109878063202, 0.08590531349182129, 0.13850955665111542, -0.06640879064798355, 0.11405746638774872, -0.015394451096653938, 0.07433953881263733, -0.03497030586004257, -0.04534041881561279, 0.056667231023311615, 0.04956914484500885, 0.0032996763475239277, 0.0738840252161026, 0.024926049634814262, -0.13414497673511505, 0.013036896474659443, -0.04434656351804733, -0.19894888997077942, -0.2360866218805313, -0.20483770966529846, -0.045622531324625015, 0.1288251131772995, 0.018663723021745682, 0.09963809698820114, -0.011148911900818348, 0.013114307075738907, 0.10562361031770706, -0.036121632903814316, -0.045889176428318024, -0.052141960710287094, -0.11802756786346436, -0.035321347415447235, 0.003734507132321596, -0.13254879415035248, -0.013746986165642738, 0.11393668502569199, 0.12039264291524887, 0.27088430523872375, 0.03191863000392914, 0.083734892308712, 0.035312484949827194, 0.17469282448291779, 0.12062201648950577, 0.07512237131595612, 0.04252123832702637, -0.03392074257135391, 0.003793898271396756, 0.04441455379128456, -0.10539150983095169, 0.0022681632544845343, 0.09892675280570984, -0.1674497276544571, 0.01293166447430849, -0.06117106229066849, 0.03407707437872887, -0.0704398825764656, 0.06393305957317352, -0.14683952927589417, 0.048626288771629333, 0.016407044604420662, 0.10365939140319824, -0.005618913099169731, 0.11199808120727539, 0.16435235738754272, -0.050798311829566956, 0.03546471521258354, -0.0019003453198820353, 0.05178121477365494, -0.11278800666332245, -0.04073166102170944, -0.09391449391841888, -0.025441117584705353, 0.01668965071439743, 0.09786947071552277, -0.12985415756702423, 0.1913387030363083, -0.005341875366866589, -0.12587371468544006, -0.10696883499622345, -0.09607835859060287, 0.0015314609045162797, 0.025784917175769806, 0.07338111847639084, 0.07481840252876282, -0.2263813465833664, -0.13388799130916595, -0.07520421594381332, 0.02232453227043152, 0.0901326909661293, 0.022734422236680984, -0.10258948057889938, 0.03989624232053757, -0.036225270479917526, -0.03649691492319107, -0.22308136522769928, 0.024748025462031364, -0.1205538883805275, -0.036194853484630585, 0.18711569905281067, -0.11771858483552933, 0.006164012476801872, 0.021225858479738235, 0.04814358428120613, 0.14330583810806274, 0.2132093459367752, -0.04523850977420807, -0.06606343388557434, -0.031122585758566856, 0.11158153414726257, -0.05591770261526108, -0.04258086159825325, -0.005722146015614271, 0.047903019934892654, -0.0736195370554924, -0.24822120368480682, 0.07222457230091095, -0.10069005936384201, 0.13326624035835266, -0.046878837049007416, 0.17552392184734344, 0.07311557233333588, 0.019773423671722412, 0.01729598082602024, -0.024049123749136925, -0.017907656729221344, -0.08265726268291473, 0.09736716002225876, 0.008823717944324017, -0.04698079824447632, 0.29978740215301514, 0.026264643296599388, -0.08023106306791306, 0.062194451689720154, -0.00008059789979597554, 0.221498504281044, 0.11464618146419525, -0.08391628414392471, 0.21338072419166565, 0.1534409373998642, 0.007398402784019709, -0.26366710662841797, -0.01653333380818367, -0.13159820437431335, -0.04802529886364937, -0.017017830163240433, -0.16590851545333862, 0.06275898963212967, 0.012712865136563778, -0.040344975888729095, 0.21853280067443848, -0.21353521943092346, 0.008127004839479923, 0.2003617286682129, 0.0283629409968853, 0.3873341977596283, -0.04084029421210289, -0.08481629937887192, -0.052266404032707214, -0.1481628566980362, 0.28991177678108215, -0.19532030820846558, 0.04137761518359184, 0.021781064569950104, 0.1982804238796234, -0.011990165337920189, -0.06207459792494774, 0.07947008311748505, 0.12409574538469315, 0.07083907723426819, -0.05293601378798485, -0.07883857190608978, 0.0864914283156395, -0.006713326554745436, 0.11580238491296768, 0.004648228641599417, 0.04783821105957031, -0.12681728601455688, 0.06515053659677505, -0.054136086255311966, 0.03357715159654617, 0.09286360442638397, -0.033009711652994156, -0.10869409143924713, 0.023543361574411392, -0.10328750312328339, 0.026431329548358917, 0.10733561217784882, 0.0496327206492424, 0.10042465478181839, 0.14316557347774506, -0.04827171191573143, -0.19236935675144196, 0.012239400297403336, -0.052000269293785095, -0.040284913033246994, 0.07863013446331024, -0.14462335407733917, 0.03683044761419296, 0.0951136127114296, 0.01863330788910389, 0.09448365867137909, 0.03286748379468918, -0.06937890499830246, 0.017622699961066246, 0.13757549226284027, -0.16380323469638824, -0.07889428734779358, 0.047908663749694824, 0.12322275340557098, 0.12802433967590332, 0.14844676852226257, 0.12702791392803192, 0.019739506766200066, -0.015072925016283989, -0.03972095623612404, 0.059462275356054306, -0.06169234216213226, 0.06370054930448532, 0.09116519242525101, 0.057592328637838364, -0.22148016095161438, 0.14534196257591248, 0.03745823726058006, -0.061989203095436096, 0.05972186475992203, 0.04631658270955086, -0.14685103297233582, -0.11195341497659683, -0.12690162658691406, 0.22342030704021454, -0.10572592169046402, -0.08603568375110626, -0.03377373889088631, -0.0782269611954689, -0.022825349122285843, 0.06456845253705978, 0.0336947962641716, 0.08464809507131577, 0.032626572996377945, -0.046801045536994934, -0.062003668397665024, -0.06731829047203064, -0.08452320843935013, 0.0002712740970309824, -0.04209256172180176, -0.14705564081668854, -0.010582267306745052, 0.1996220499277115, -0.06603134423494339, -0.10416065156459808, -0.1467266082763672, 0.0778893381357193, -0.09969709068536758, -0.029983757063746452, 0.015324476175010204, 0.002264034701511264, -0.010236277244985104, -0.001103616668842733, 0.016936127096414566, -0.009462193585932255, -0.1464724838733673, 0.10692273825407028, 0.04261093959212303, 0.004001630004495382, -0.14312037825584412, -0.026850176975131035, 0.056038420647382736, 0.05829518660902977, 0.11940040439367294, 0.20833002030849457, -0.029784198850393295, 0.12905094027519226, -0.054962970316410065, -0.18116725981235504, 0.08042144775390625, 0.05458046868443489, 0.1632678210735321, 0.023968050256371498, -0.005312012974172831, 0.0679449811577797, -0.01985793374478817, 0.05863642320036888, -0.02042493224143982, -0.06302309781312943, -0.012803184799849987, -0.14813844859600067, -0.08456802368164062, -0.03485672175884247, -0.013090596534311771, 0.11786117404699326, 0.12512005865573883, 0.0037767880130559206, 0.025097696110606194, 0.026828525587916374, -0.010993433184921741, -0.06666519492864609, 0.006302808877080679, -0.1529371589422226, 0.014630680903792381, 0.04023181274533272, 0.016347073018550873, -0.0521920770406723, 0.2771833539009094, 0.05155624449253082, -0.10990242660045624, -0.028222860768437386, 0.09098851680755615, -0.0899171531200409, -0.02598693035542965, 0.04760054126381874, 0.04417053982615471, -0.015440129674971104, -0.0014690178213641047, 0.05336453765630722, 0.04480218514800072, -0.003729463554918766, 0.13960565626621246, 0.0028701007831841707, 0.09411085397005081, -0.07378651201725006, 0.12750551104545593, -0.11207780987024307, 0.04283581301569939, -0.031993236392736435, -0.05078274384140968, 0.048913635313510895, 0.0022049874532967806, 0.05410332605242729, 0.0018648614641278982, -0.01693880930542946, 0.05628480762243271, -0.037540681660175323, -0.07680065184831619, -0.07052753120660782, -0.02500428818166256, -0.052588365972042084, -0.19038176536560059, 0.036474693566560745, -0.07200505584478378, -0.03953683003783226, 0.18351761996746063, 0.042947448790073395, 0.04557528346776962, 0.07151737064123154, -0.07555309683084488, 0.058959271758794785, -0.002594831632450223, -0.022455906495451927, -0.07362585514783859, 0.021522464230656624, -0.026138868182897568, 0.038504086434841156, 0.01734885759651661, -0.026182204484939575, 0.01080290973186493, 0.07006815075874329, 0.052484169602394104, -0.1017683669924736, -0.058581624180078506, -0.08118226379156113, 0.06909440457820892, -0.05845081806182861, 0.02718011662364006, 0.10021233558654785, 0.040415868163108826, 0.020142268389463425, 0.19969779253005981, -0.012884455733001232, 0.023928511887788773, -0.06947092711925507, 0.039975304156541824, -0.05743305757641792, 0.0757220983505249, -0.0009565592044964433, -0.036560360342264175, -0.14124570786952972, 0.1556258350610733, 0.33285269141197205, -0.06767449527978897, 0.01564967818558216, -0.0775391086935997, 0.03485589101910591, -0.009999018162488937, 0.1697658896446228, 0.10176064074039459, 0.1988585889339447, -0.023742230609059334, -0.08330132067203522, -0.016538120806217194, -0.03273724764585495, -0.02994444966316223, -0.004600013606250286, 0.016093537211418152, -0.03359702602028847, -0.0757303461432457, 0.08127298206090927, -0.20572707056999207, -0.0710163414478302, -0.029159409925341606, -0.19720830023288727, -0.07240797579288483, -0.05437362939119339, 0.11255787312984467, 0.03923334181308746, 0.06851737946271896, -0.103670135140419, -0.0013655901420861483, 0.06397131085395813, -0.03942831978201866, -0.3277954161167145, -0.2245052009820938, 0.05384015291929245, -0.10780547559261322, 0.06509827077388763, -0.039479803293943405, 0.12283207476139069, 0.030872555449604988, -0.005981478374451399, -0.05503690615296364, 0.03156154230237007, -0.019434740766882896, -0.008965705521404743, -0.0864352360367775, 0.10172072798013687, -0.07112633436918259, 0.06515036523342133, 0.0613713413476944, -0.11056610941886902, -0.052653297781944275, 0.0318453311920166, 0.08730116486549377, -0.044111378490924835, 0.020858116447925568, -0.05719561502337456, 0.12180694937705994, 0.100713349878788, -0.0015026587061583996, 0.061206914484500885, -0.0016856908332556486, 0.047602083534002304, 0.006903925444930792, -0.12517692148685455, -0.08186058700084686, -0.06980348378419876, -0.10062158852815628, 0.12274279445409775, 0.012660081498324871, -0.18801015615463257, 0.03945336118340492, -0.1308298110961914, 0.035778071731328964, 0.030148228630423546, 0.0911628007888794, 0.11777586489915848, 0.09452522546052933, -0.032619792968034744, 0.134853333234787, 0.05128242075443268, -0.004710210021585226, -0.055771078914403915, -0.10965751111507416 ]
ab6a13fa6ebd10c61e5824adcfe099a4e54eb509
# Dataset Card for SAMSum Corpus ## Table of Contents - [Dataset Description](#dataset-description) - [Dataset Summary](#dataset-summary) - [Supported Tasks and Leaderboards](#supported-tasks-and-leaderboards) - [Languages](#languages) - [Dataset Structure](#dataset-structure) - [Data Instances](#data-instances) - [Data Fields](#data-fields) - [Data Splits](#data-splits) - [Dataset Creation](#dataset-creation) - [Curation Rationale](#curation-rationale) - [Source Data](#source-data) - [Annotations](#annotations) - [Personal and Sensitive Information](#personal-and-sensitive-information) - [Considerations for Using the Data](#considerations-for-using-the-data) - [Social Impact of Dataset](#social-impact-of-dataset) - [Discussion of Biases](#discussion-of-biases) - [Other Known Limitations](#other-known-limitations) - [Additional Information](#additional-information) - [Dataset Curators](#dataset-curators) - [Licensing Information](#licensing-information) - [Citation Information](#citation-information) - [Contributions](#contributions) ## Dataset Description - **Homepage:** https://arxiv.org/abs/1911.12237v2 - **Repository:** [Needs More Information] - **Paper:** https://arxiv.org/abs/1911.12237v2 - **Leaderboard:** [Needs More Information] - **Point of Contact:** [Needs More Information] ### Dataset Summary The SAMSum dataset contains about 16k messenger-like conversations with summaries. Conversations were created and written down by linguists fluent in English. Linguists were asked to create conversations similar to those they write on a daily basis, reflecting the proportion of topics of their real-life messenger convesations. The style and register are diversified - conversations could be informal, semi-formal or formal, they may contain slang words, emoticons and typos. Then, the conversations were annotated with summaries. It was assumed that summaries should be a concise brief of what people talked about in the conversation in third person. The SAMSum dataset was prepared by Samsung R&D Institute Poland and is distributed for research purposes (non-commercial licence: CC BY-NC-ND 4.0). ### Supported Tasks and Leaderboards [Needs More Information] ### Languages English ## Dataset Structure ### Data Instances The created dataset is made of 16369 conversations distributed uniformly into 4 groups based on the number of utterances in con- versations: 3-6, 7-12, 13-18 and 19-30. Each utterance contains the name of the speaker. Most conversations consist of dialogues between two interlocutors (about 75% of all conversations), the rest is between three or more people The first instance in the training set: {'id': '13818513', 'summary': 'Amanda baked cookies and will bring Jerry some tomorrow.', 'dialogue': "Amanda: I baked cookies. Do you want some?\r\nJerry: Sure!\r\nAmanda: I'll bring you tomorrow :-)"} ### Data Fields - dialogue: text of dialogue. - summary: human written summary of the dialogue. - id: unique id of an example. ### Data Splits - train: 14732 - val: 818 - test: 819 ## Dataset Creation ### Curation Rationale In paper: > In the first approach, we reviewed datasets from the following categories: chatbot dialogues, SMS corpora, IRC/chat data, movie dialogues, tweets, comments data (conversations formed by replies to comments), transcription of meetings, written discussions, phone dialogues and daily communication data. Unfortunately, they all differed in some respect from the conversations that are typ- ically written in messenger apps, e.g. they were too technical (IRC data), too long (comments data, transcription of meetings), lacked context (movie dialogues) or they were more of a spoken type, such as a dialogue between a petrol station assis- tant and a client buying petrol. As a consequence, we decided to create a chat dialogue dataset by constructing such conversa- tions that would epitomize the style of a messenger app. ### Source Data #### Initial Data Collection and Normalization In paper: > We asked linguists to create conversations similar to those they write on a daily basis, reflecting the proportion of topics of their real-life messenger conversations. It includes chit-chats, gossiping about friends, arranging meetings, discussing politics, consulting university assignments with colleagues, etc. Therefore, this dataset does not contain any sensitive data or fragments of other corpora. #### Who are the source language producers? linguists ### Annotations #### Annotation process In paper: > Each dialogue was created by one person. After collecting all of the conversations, we asked language experts to annotate them with summaries, assuming that they should (1) be rather short, (2) extract important pieces of information, (3) include names of interlocutors, (4) be written in the third person. Each dialogue contains only one ref- erence summary. #### Who are the annotators? language experts ### Personal and Sensitive Information None, see above: Initial Data Collection and Normalization ## 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 non-commercial licence: CC BY-NC-ND 4.0 ### Citation Information ``` @inproceedings{gliwa-etal-2019-samsum, title = "{SAMS}um Corpus: A Human-annotated Dialogue Dataset for Abstractive Summarization", author = "Gliwa, Bogdan and Mochol, Iwona and Biesek, Maciej and Wawer, Aleksander", booktitle = "Proceedings of the 2nd Workshop on New Frontiers in Summarization", month = nov, year = "2019", address = "Hong Kong, China", publisher = "Association for Computational Linguistics", url = "https://www.aclweb.org/anthology/D19-5409", doi = "10.18653/v1/D19-5409", pages = "70--79" } ``` ### Contributions Thanks to [@cccntu](https://github.com/cccntu) for adding this dataset.
Axel578/mydt
[ "task_categories:summarization", "annotations_creators:expert-generated", "language_creators:expert-generated", "multilinguality:monolingual", "size_categories:10K<n<100K", "source_datasets:original", "language:en", "license:cc-by-nc-nd-4.0", "conversations-summarization", "arxiv:1911.12237", "region:us" ]
2023-02-08T01:25:58+00:00
{"annotations_creators": ["expert-generated"], "language_creators": ["expert-generated"], "language": ["en"], "license": ["cc-by-nc-nd-4.0"], "multilinguality": ["monolingual"], "size_categories": ["10K<n<100K"], "source_datasets": ["original"], "task_categories": ["summarization"], "task_ids": [], "paperswithcode_id": "samsum-corpus", "pretty_name": "SAMSum Corpus", "tags": ["conversations-summarization"], "dataset_info": {"features": [{"name": "id", "dtype": "string"}, {"name": "dialogue", "dtype": "string"}, {"name": "summary", "dtype": "string"}], "config_name": "samsum", "splits": [{"name": "train", "num_bytes": 9479141, "num_examples": 14732}, {"name": "test", "num_bytes": 534492, "num_examples": 819}], "download_size": 2944100, "dataset_size": 10530064}, "train-eval-index": [{"config": "samsum", "task": "summarization", "task_id": "summarization", "splits": {"eval_split": "test"}, "col_mapping": {"dialogue": "text", "summary": "target"}}]}
2023-02-08T02:19:28+00:00
[ "1911.12237" ]
[ "en" ]
TAGS #task_categories-summarization #annotations_creators-expert-generated #language_creators-expert-generated #multilinguality-monolingual #size_categories-10K<n<100K #source_datasets-original #language-English #license-cc-by-nc-nd-4.0 #conversations-summarization #arxiv-1911.12237 #region-us
# Dataset Card for SAMSum Corpus ## Table of Contents - Dataset Description - Dataset Summary - Supported Tasks and Leaderboards - Languages - Dataset Structure - Data Instances - Data Fields - Data Splits - Dataset Creation - Curation Rationale - Source Data - Annotations - Personal and Sensitive Information - Considerations for Using the Data - Social Impact of Dataset - Discussion of Biases - Other Known Limitations - Additional Information - Dataset Curators - Licensing Information - Citation Information - Contributions ## Dataset Description - Homepage: URL - Repository: - Paper: URL - Leaderboard: - Point of Contact: ### Dataset Summary The SAMSum dataset contains about 16k messenger-like conversations with summaries. Conversations were created and written down by linguists fluent in English. Linguists were asked to create conversations similar to those they write on a daily basis, reflecting the proportion of topics of their real-life messenger convesations. The style and register are diversified - conversations could be informal, semi-formal or formal, they may contain slang words, emoticons and typos. Then, the conversations were annotated with summaries. It was assumed that summaries should be a concise brief of what people talked about in the conversation in third person. The SAMSum dataset was prepared by Samsung R&D Institute Poland and is distributed for research purposes (non-commercial licence: CC BY-NC-ND 4.0). ### Supported Tasks and Leaderboards ### Languages English ## Dataset Structure ### Data Instances The created dataset is made of 16369 conversations distributed uniformly into 4 groups based on the number of utterances in con- versations: 3-6, 7-12, 13-18 and 19-30. Each utterance contains the name of the speaker. Most conversations consist of dialogues between two interlocutors (about 75% of all conversations), the rest is between three or more people The first instance in the training set: {'id': '13818513', 'summary': 'Amanda baked cookies and will bring Jerry some tomorrow.', 'dialogue': "Amanda: I baked cookies. Do you want some?\r\nJerry: Sure!\r\nAmanda: I'll bring you tomorrow :-)"} ### Data Fields - dialogue: text of dialogue. - summary: human written summary of the dialogue. - id: unique id of an example. ### Data Splits - train: 14732 - val: 818 - test: 819 ## Dataset Creation ### Curation Rationale In paper: > In the first approach, we reviewed datasets from the following categories: chatbot dialogues, SMS corpora, IRC/chat data, movie dialogues, tweets, comments data (conversations formed by replies to comments), transcription of meetings, written discussions, phone dialogues and daily communication data. Unfortunately, they all differed in some respect from the conversations that are typ- ically written in messenger apps, e.g. they were too technical (IRC data), too long (comments data, transcription of meetings), lacked context (movie dialogues) or they were more of a spoken type, such as a dialogue between a petrol station assis- tant and a client buying petrol. As a consequence, we decided to create a chat dialogue dataset by constructing such conversa- tions that would epitomize the style of a messenger app. ### Source Data #### Initial Data Collection and Normalization In paper: > We asked linguists to create conversations similar to those they write on a daily basis, reflecting the proportion of topics of their real-life messenger conversations. It includes chit-chats, gossiping about friends, arranging meetings, discussing politics, consulting university assignments with colleagues, etc. Therefore, this dataset does not contain any sensitive data or fragments of other corpora. #### Who are the source language producers? linguists ### Annotations #### Annotation process In paper: > Each dialogue was created by one person. After collecting all of the conversations, we asked language experts to annotate them with summaries, assuming that they should (1) be rather short, (2) extract important pieces of information, (3) include names of interlocutors, (4) be written in the third person. Each dialogue contains only one ref- erence summary. #### Who are the annotators? language experts ### Personal and Sensitive Information None, see above: Initial Data Collection and Normalization ## Considerations for Using the Data ### Social Impact of Dataset ### Discussion of Biases ### Other Known Limitations ## Additional Information ### Dataset Curators ### Licensing Information non-commercial licence: CC BY-NC-ND 4.0 ### Contributions Thanks to @cccntu for adding this dataset.
[ "# Dataset Card for SAMSum Corpus", "## Table of Contents\n- Dataset Description\n - Dataset Summary\n - Supported Tasks and Leaderboards\n - Languages\n- Dataset Structure\n - Data Instances\n - Data Fields\n - Data Splits\n- Dataset Creation\n - Curation Rationale\n - Source Data\n - Annotations\n - Personal and Sensitive Information\n- Considerations for Using the Data\n - Social Impact of Dataset\n - Discussion of Biases\n - Other Known Limitations\n- Additional Information\n - Dataset Curators\n - Licensing Information\n - Citation Information\n - Contributions", "## Dataset Description\n\n- Homepage: URL\n- Repository: \n- Paper: URL\n- Leaderboard: \n- Point of Contact:", "### Dataset Summary\n\nThe SAMSum dataset contains about 16k messenger-like conversations with summaries. Conversations were created and written down by linguists fluent in English. Linguists were asked to create conversations similar to those they write on a daily basis, reflecting the proportion of topics of their real-life messenger convesations. The style and register are diversified - conversations could be informal, semi-formal or formal, they may contain slang words, emoticons and typos. Then, the conversations were annotated with summaries. It was assumed that summaries should be a concise brief of what people talked about in the conversation in third person.\nThe SAMSum dataset was prepared by Samsung R&D Institute Poland and is distributed for research purposes (non-commercial licence: CC BY-NC-ND 4.0).", "### Supported Tasks and Leaderboards", "### Languages\n\nEnglish", "## Dataset Structure", "### Data Instances\n\nThe created dataset is made of 16369 conversations distributed uniformly into 4 groups based on the number of utterances in con- versations: 3-6, 7-12, 13-18 and 19-30. Each utterance contains the name of the speaker. Most conversations consist of dialogues between two interlocutors (about 75% of all conversations), the rest is between three or more people\n\nThe first instance in the training set:\n{'id': '13818513', 'summary': 'Amanda baked cookies and will bring Jerry some tomorrow.', 'dialogue': \"Amanda: I baked cookies. Do you want some?\\r\\nJerry: Sure!\\r\\nAmanda: I'll bring you tomorrow :-)\"}", "### Data Fields\n\n- dialogue: text of dialogue.\n- summary: human written summary of the dialogue.\n- id: unique id of an example.", "### Data Splits\n\n- train: 14732\n- val: 818\n- test: 819", "## Dataset Creation", "### Curation Rationale\n\nIn paper:\n> In the first approach, we reviewed datasets from the following categories: chatbot dialogues, SMS corpora, IRC/chat data, movie dialogues, tweets, comments data (conversations formed by replies to comments), transcription of meetings, written discussions, phone dialogues and daily communication data. Unfortunately, they all differed in some respect from the conversations that are typ- ically written in messenger apps, e.g. they were too technical (IRC data), too long (comments data, transcription of meetings), lacked context (movie dialogues) or they were more of a spoken type, such as a dialogue between a petrol station assis- tant and a client buying petrol.\nAs a consequence, we decided to create a chat dialogue dataset by constructing such conversa- tions that would epitomize the style of a messenger app.", "### Source Data", "#### Initial Data Collection and Normalization\n\n In paper:\n> We asked linguists to create conversations similar to those they write on a daily basis, reflecting the proportion of topics of their real-life messenger conversations. It includes chit-chats, gossiping about friends, arranging meetings, discussing politics, consulting university assignments with colleagues, etc. Therefore, this dataset does not contain any sensitive data or fragments of other corpora.", "#### Who are the source language producers?\n\nlinguists", "### Annotations", "#### Annotation process\n\nIn paper:\n> Each dialogue was created by one person. After collecting all of the conversations, we asked language experts to annotate them with summaries, assuming that they should (1) be rather short, (2) extract important pieces of information, (3) include names of interlocutors, (4) be written in the third person. Each dialogue contains only one ref- erence summary.", "#### Who are the annotators?\n\nlanguage experts", "### Personal and Sensitive Information\n\nNone, see above: Initial Data Collection and Normalization", "## Considerations for Using the Data", "### Social Impact of Dataset", "### Discussion of Biases", "### Other Known Limitations", "## Additional Information", "### Dataset Curators", "### Licensing Information\n\nnon-commercial licence: CC BY-NC-ND 4.0", "### Contributions\n\nThanks to @cccntu for adding this dataset." ]
[ "TAGS\n#task_categories-summarization #annotations_creators-expert-generated #language_creators-expert-generated #multilinguality-monolingual #size_categories-10K<n<100K #source_datasets-original #language-English #license-cc-by-nc-nd-4.0 #conversations-summarization #arxiv-1911.12237 #region-us \n", "# Dataset Card for SAMSum Corpus", "## Table of Contents\n- Dataset Description\n - Dataset Summary\n - Supported Tasks and Leaderboards\n - Languages\n- Dataset Structure\n - Data Instances\n - Data Fields\n - Data Splits\n- Dataset Creation\n - Curation Rationale\n - Source Data\n - Annotations\n - Personal and Sensitive Information\n- Considerations for Using the Data\n - Social Impact of Dataset\n - Discussion of Biases\n - Other Known Limitations\n- Additional Information\n - Dataset Curators\n - Licensing Information\n - Citation Information\n - Contributions", "## Dataset Description\n\n- Homepage: URL\n- Repository: \n- Paper: URL\n- Leaderboard: \n- Point of Contact:", "### Dataset Summary\n\nThe SAMSum dataset contains about 16k messenger-like conversations with summaries. Conversations were created and written down by linguists fluent in English. Linguists were asked to create conversations similar to those they write on a daily basis, reflecting the proportion of topics of their real-life messenger convesations. The style and register are diversified - conversations could be informal, semi-formal or formal, they may contain slang words, emoticons and typos. Then, the conversations were annotated with summaries. It was assumed that summaries should be a concise brief of what people talked about in the conversation in third person.\nThe SAMSum dataset was prepared by Samsung R&D Institute Poland and is distributed for research purposes (non-commercial licence: CC BY-NC-ND 4.0).", "### Supported Tasks and Leaderboards", "### Languages\n\nEnglish", "## Dataset Structure", "### Data Instances\n\nThe created dataset is made of 16369 conversations distributed uniformly into 4 groups based on the number of utterances in con- versations: 3-6, 7-12, 13-18 and 19-30. Each utterance contains the name of the speaker. Most conversations consist of dialogues between two interlocutors (about 75% of all conversations), the rest is between three or more people\n\nThe first instance in the training set:\n{'id': '13818513', 'summary': 'Amanda baked cookies and will bring Jerry some tomorrow.', 'dialogue': \"Amanda: I baked cookies. Do you want some?\\r\\nJerry: Sure!\\r\\nAmanda: I'll bring you tomorrow :-)\"}", "### Data Fields\n\n- dialogue: text of dialogue.\n- summary: human written summary of the dialogue.\n- id: unique id of an example.", "### Data Splits\n\n- train: 14732\n- val: 818\n- test: 819", "## Dataset Creation", "### Curation Rationale\n\nIn paper:\n> In the first approach, we reviewed datasets from the following categories: chatbot dialogues, SMS corpora, IRC/chat data, movie dialogues, tweets, comments data (conversations formed by replies to comments), transcription of meetings, written discussions, phone dialogues and daily communication data. Unfortunately, they all differed in some respect from the conversations that are typ- ically written in messenger apps, e.g. they were too technical (IRC data), too long (comments data, transcription of meetings), lacked context (movie dialogues) or they were more of a spoken type, such as a dialogue between a petrol station assis- tant and a client buying petrol.\nAs a consequence, we decided to create a chat dialogue dataset by constructing such conversa- tions that would epitomize the style of a messenger app.", "### Source Data", "#### Initial Data Collection and Normalization\n\n In paper:\n> We asked linguists to create conversations similar to those they write on a daily basis, reflecting the proportion of topics of their real-life messenger conversations. It includes chit-chats, gossiping about friends, arranging meetings, discussing politics, consulting university assignments with colleagues, etc. Therefore, this dataset does not contain any sensitive data or fragments of other corpora.", "#### Who are the source language producers?\n\nlinguists", "### Annotations", "#### Annotation process\n\nIn paper:\n> Each dialogue was created by one person. After collecting all of the conversations, we asked language experts to annotate them with summaries, assuming that they should (1) be rather short, (2) extract important pieces of information, (3) include names of interlocutors, (4) be written in the third person. Each dialogue contains only one ref- erence summary.", "#### Who are the annotators?\n\nlanguage experts", "### Personal and Sensitive Information\n\nNone, see above: Initial Data Collection and Normalization", "## Considerations for Using the Data", "### Social Impact of Dataset", "### Discussion of Biases", "### Other Known Limitations", "## Additional Information", "### Dataset Curators", "### Licensing Information\n\nnon-commercial licence: CC BY-NC-ND 4.0", "### Contributions\n\nThanks to @cccntu for adding this dataset." ]
[ 102, 9, 120, 26, 191, 10, 5, 6, 173, 31, 20, 5, 201, 4, 99, 12, 5, 83, 11, 22, 8, 7, 8, 7, 5, 6, 20, 17 ]
[ "passage: TAGS\n#task_categories-summarization #annotations_creators-expert-generated #language_creators-expert-generated #multilinguality-monolingual #size_categories-10K<n<100K #source_datasets-original #language-English #license-cc-by-nc-nd-4.0 #conversations-summarization #arxiv-1911.12237 #region-us \n# Dataset Card for SAMSum Corpus## Table of Contents\n- Dataset Description\n - Dataset Summary\n - Supported Tasks and Leaderboards\n - Languages\n- Dataset Structure\n - Data Instances\n - Data Fields\n - Data Splits\n- Dataset Creation\n - Curation Rationale\n - Source Data\n - Annotations\n - Personal and Sensitive Information\n- Considerations for Using the Data\n - Social Impact of Dataset\n - Discussion of Biases\n - Other Known Limitations\n- Additional Information\n - Dataset Curators\n - Licensing Information\n - Citation Information\n - Contributions## Dataset Description\n\n- Homepage: URL\n- Repository: \n- Paper: URL\n- Leaderboard: \n- Point of Contact:### Dataset Summary\n\nThe SAMSum dataset contains about 16k messenger-like conversations with summaries. Conversations were created and written down by linguists fluent in English. Linguists were asked to create conversations similar to those they write on a daily basis, reflecting the proportion of topics of their real-life messenger convesations. The style and register are diversified - conversations could be informal, semi-formal or formal, they may contain slang words, emoticons and typos. Then, the conversations were annotated with summaries. It was assumed that summaries should be a concise brief of what people talked about in the conversation in third person.\nThe SAMSum dataset was prepared by Samsung R&D Institute Poland and is distributed for research purposes (non-commercial licence: CC BY-NC-ND 4.0).### Supported Tasks and Leaderboards### Languages\n\nEnglish## Dataset Structure", "passage: ### Data Instances\n\nThe created dataset is made of 16369 conversations distributed uniformly into 4 groups based on the number of utterances in con- versations: 3-6, 7-12, 13-18 and 19-30. Each utterance contains the name of the speaker. Most conversations consist of dialogues between two interlocutors (about 75% of all conversations), the rest is between three or more people\n\nThe first instance in the training set:\n{'id': '13818513', 'summary': 'Amanda baked cookies and will bring Jerry some tomorrow.', 'dialogue': \"Amanda: I baked cookies. Do you want some?\\r\\nJerry: Sure!\\r\\nAmanda: I'll bring you tomorrow :-)\"}### Data Fields\n\n- dialogue: text of dialogue.\n- summary: human written summary of the dialogue.\n- id: unique id of an example.### Data Splits\n\n- train: 14732\n- val: 818\n- test: 819## Dataset Creation### Curation Rationale\n\nIn paper:\n> In the first approach, we reviewed datasets from the following categories: chatbot dialogues, SMS corpora, IRC/chat data, movie dialogues, tweets, comments data (conversations formed by replies to comments), transcription of meetings, written discussions, phone dialogues and daily communication data. Unfortunately, they all differed in some respect from the conversations that are typ- ically written in messenger apps, e.g. they were too technical (IRC data), too long (comments data, transcription of meetings), lacked context (movie dialogues) or they were more of a spoken type, such as a dialogue between a petrol station assis- tant and a client buying petrol.\nAs a consequence, we decided to create a chat dialogue dataset by constructing such conversa- tions that would epitomize the style of a messenger app.### Source Data#### Initial Data Collection and Normalization\n\n In paper:\n> We asked linguists to create conversations similar to those they write on a daily basis, reflecting the proportion of topics of their real-life messenger conversations. It includes chit-chats, gossiping about friends, arranging meetings, discussing politics, consulting university assignments with colleagues, etc. Therefore, this dataset does not contain any sensitive data or fragments of other corpora.#### Who are the source language producers?\n\nlinguists### Annotations#### Annotation process\n\nIn paper:\n> Each dialogue was created by one person. After collecting all of the conversations, we asked language experts to annotate them with summaries, assuming that they should (1) be rather short, (2) extract important pieces of information, (3) include names of interlocutors, (4) be written in the third person. Each dialogue contains only one ref- erence summary.#### Who are the annotators?\n\nlanguage experts### Personal and Sensitive Information\n\nNone, see above: Initial Data Collection and Normalization## Considerations for Using the Data" ]
[ -0.03955034911632538, 0.1303187906742096, -0.00435349065810442, 0.014658547937870026, 0.061325520277023315, -0.03044704720377922, 0.10832962393760681, 0.0768919438123703, -0.008446641266345978, 0.06542970985174179, -0.028795048594474792, -0.027222977951169014, 0.08650394529104233, 0.08617185056209564, 0.011846118606626987, -0.17008185386657715, 0.040980689227581024, -0.10445573925971985, -0.06638088822364807, 0.10706831514835358, 0.12357482314109802, -0.06092265993356705, 0.08630160987377167, -0.05376998335123062, -0.06004767864942551, -0.04633700102567673, -0.05589000880718231, -0.032176241278648376, 0.05320364981889725, 0.094539575278759, 0.07906932383775711, 0.013364288955926895, 0.003249075263738632, -0.21464546024799347, 0.020715447142720222, 0.059112533926963806, 0.001862386241555214, 0.02872973121702671, 0.021540427580475807, 0.049450259655714035, 0.1322987675666809, -0.10193116962909698, 0.06741227954626083, 0.06913967430591583, -0.12219522893428802, -0.06656546890735626, -0.1195187121629715, -0.03446072340011597, 0.07822639495134354, 0.03814302757382393, -0.0737922340631485, 0.07674624025821686, -0.024713337421417236, 0.06696812063455582, 0.019136274233460426, -0.0732271745800972, -0.04602225124835968, 0.020635638386011124, -0.014417205937206745, 0.11454685032367706, -0.08046084642410278, -0.03697749972343445, -0.03426205366849899, 0.01088009588420391, -0.031017562374472618, -0.00657475832849741, -0.03899930417537689, -0.005475744605064392, -0.11186866462230682, -0.042351141571998596, 0.1953429877758026, 0.015380116179585457, -0.05508013814687729, -0.1965547353029251, -0.022191165015101433, -0.013373084366321564, -0.020565038546919823, -0.05510999262332916, -0.011292911134660244, -0.016764294356107712, 0.0017368663102388382, -0.03379136323928833, -0.09899608790874481, 0.060782186686992645, -0.06078678369522095, -0.009453902021050453, 0.026556100696325302, 0.04781583696603775, -0.05210712552070618, -0.000026679597795009613, 0.09989587962627411, -0.0827355682849884, -0.04017762094736099, -0.06596650183200836, -0.11406324803829193, -0.02291579358279705, -0.008258918300271034, 0.00913639459758997, 0.059931956231594086, 0.1048261746764183, -0.07660748064517975, 0.03244428336620331, -0.004973333794623613, -0.017439495772123337, 0.1097477525472641, 0.09586173295974731, 0.005057209171354771, -0.07156164944171906, -0.023710820823907852, -0.012776578776538372, -0.005103223491460085, -0.019806791096925735, -0.04904706031084061, 0.10963019728660583, 0.01337194349616766, 0.06257034838199615, 0.08652175217866898, 0.039885636419057846, -0.018686773255467415, -0.054150599986314774, 0.12833917140960693, -0.10254822671413422, 0.012280828319489956, 0.0365058109164238, -0.03130628913640976, 0.028820745646953583, -0.015782412141561508, 0.024201132357120514, -0.06182355061173439, -0.01795511320233345, -0.01877528429031372, -0.04011857882142067, -0.09192948043346405, -0.05688781291246414, 0.07814326882362366, 0.04278726875782013, -0.07471553981304169, -0.06778492033481598, -0.0672227144241333, -0.09663759171962738, 0.027873331680893898, -0.07822272181510925, -0.013244140893220901, -0.034256912767887115, -0.01636606454849243, 0.00038446695543825626, 0.011947778053581715, -0.03981485590338707, -0.019739970564842224, 0.0373251847922802, -0.06670545041561127, 0.03784050792455673, 0.021286005154252052, 0.05228967219591141, -0.09983066469430923, -0.011620648205280304, -0.12841841578483582, 0.1253419816493988, -0.0844571441411972, -0.004504215903580189, -0.10350530594587326, -0.003478020429611206, 0.03962525725364685, 0.031357333064079285, -0.03179839253425598, 0.15313230454921722, -0.21279558539390564, -0.02320917509496212, 0.0999232605099678, -0.11172252893447876, -0.04800102859735489, 0.13128405809402466, -0.040108684450387955, 0.09453168511390686, 0.11994674801826477, 0.091835618019104, 0.007235804572701454, -0.0066895196214318275, -0.06009076163172722, -0.07215581834316254, 0.03828840330243111, 0.16572077572345734, 0.08749672770500183, -0.0654202550649643, 0.09297644346952438, 0.009729951620101929, 0.051180399954319, -0.05476601421833038, -0.019861090928316116, -0.05186070501804352, 0.06205561012029648, 0.011627976782619953, 0.006656762212514877, 0.002879895269870758, -0.074263796210289, -0.03438009321689606, -0.10526368021965027, 0.02285081148147583, 0.03203071653842926, -0.029602952301502228, 0.02051343023777008, -0.10124856233596802, -0.045021675527095795, 0.07957958430051804, 0.013777533546090126, -0.12213101983070374, -0.16265153884887695, 0.03789011389017105, 0.0025528031401336193, 0.12363765388727188, 0.06431326270103455, 0.014703077264130116, 0.006617085076868534, -0.014512859284877777, 0.051909029483795166, -0.0034356331452727318, 0.0077809663489460945, -0.023977024480700493, -0.1714925467967987, 0.027127325534820557, -0.058418598026037216, 0.1589413732290268, -0.048977531492710114, -0.009897185489535332, 0.0991661548614502, 0.11470174789428711, 0.08472322672605515, -0.07652570307254791, 0.015851277858018875, 0.025175584480166435, 0.01631459780037403, -0.011364663951098919, 0.014906913042068481, -0.010136812925338745, -0.012499955482780933, 0.05751034617424011, -0.1513107419013977, -0.1903286725282669, 0.06174599751830101, 0.08282306790351868, -0.04269534721970558, -0.09074845910072327, -0.05435344576835632, -0.010694285854697227, -0.04096261411905289, -0.09193266928195953, 0.09912177175283432, 0.012180467136204243, 0.02413010038435459, -0.07905647158622742, -0.08378143608570099, -0.04994916915893555, -0.01758759468793869, -0.06006715074181557, 0.1002872958779335, 0.03609507530927658, -0.17582225799560547, 0.1300821751356125, 0.04514491185545921, 0.1342039406299591, 0.1648770123720169, -0.033615224063396454, -0.04915151745080948, -0.04693152382969856, 0.028221867978572845, -0.008137064054608345, 0.0643225759267807, -0.10284697264432907, 0.031492505222558975, 0.04859806224703789, 0.022037457674741745, 0.02370639331638813, -0.024764277040958405, 0.0528654009103775, 0.027846740558743477, -0.018305931240320206, 0.020192278549075127, 0.016284242272377014, 0.04132126271724701, 0.11448821425437927, 0.0018036668188869953, 0.035005584359169006, -0.028445173054933548, -0.07320105284452438, -0.11618828773498535, 0.10027110576629639, -0.15405645966529846, -0.24386048316955566, -0.0961485207080841, -0.05199769139289856, -0.015804899856448174, -0.006750165950506926, 0.04863554984331131, -0.1233757883310318, -0.07793676853179932, -0.09529466181993484, 0.12699851393699646, 0.06756565719842911, -0.06802283972501755, -0.016926664859056473, 0.01314719207584858, -0.04160425812005997, -0.0953739732503891, 0.016134576871991158, -0.007431994192302227, -0.05817224830389023, 0.012944739311933517, -0.01850297674536705, 0.0437106229364872, 0.09999357163906097, 0.038933418691158295, -0.03373556584119797, -0.05147556960582733, 0.2723657190799713, -0.12852446734905243, 0.12013948708772659, 0.07752134650945663, -0.05545130372047424, 0.033891741186380386, 0.21501103043556213, 0.0120109086856246, -0.04723940044641495, 0.046364929527044296, 0.044479042291641235, -0.04109608381986618, -0.2502250075340271, -0.11106383055448532, -0.06314332783222198, 0.02309592254459858, -0.01708095148205757, 0.016907554119825363, 0.01313452422618866, -0.02641904354095459, -0.1332230120897293, -0.0578988716006279, 0.11950789391994476, 0.03658897429704666, 0.09429183602333069, -0.015543928369879723, 0.058166757225990295, -0.03272069990634918, -0.006265748757869005, 0.09798556566238403, -0.025954656302928925, 0.2393854260444641, 0.033265307545661926, 0.21231649816036224, 0.0743618905544281, 0.010535277426242828, 0.009443311020731926, -0.03548857569694519, -0.02329673245549202, 0.06683662533760071, -0.03677505627274513, -0.06630147993564606, -0.03258347883820534, 0.06092476099729538, 0.048941195011138916, -0.11383231729269028, 0.037143103778362274, 0.045266859233379364, 0.06377968192100525, 0.12485232949256897, 0.03281014412641525, -0.03313501924276352, -0.08523744344711304, 0.08234775811433792, -0.05860704183578491, -0.054670173674821854, -0.013951636850833893, 0.14771407842636108, -0.1284126341342926, 0.00394955649971962, 0.001429505180567503, 0.0757591724395752, -0.09544998407363892, -0.007863147184252739, 0.023897867649793625, 0.016816144809126854, -0.003574511967599392, 0.06136748194694519, -0.13105326890945435, 0.1477733701467514, 0.005944079719483852, -0.0036692172288894653, -0.08636455982923508, 0.0423017218708992, -0.05248219892382622, -0.05966614559292793, 0.09764588624238968, 0.04075416177511215, -0.1559055745601654, 0.008405514061450958, -0.08458520472049713, 0.013477601110935211, 0.11205454915761948, -0.0551404133439064, 0.07433244585990906, -0.027186419814825058, 0.000789169454947114, -0.03175920248031616, -0.045417383313179016, -0.05020808428525925, -0.23025989532470703, 0.05753174424171448, -0.06554564833641052, 0.026355335488915443, -0.02252495288848877, 0.00037265801802277565, -0.044135455042123795, 0.12696292996406555, -0.12264928221702576, -0.09115968644618988, -0.09802000224590302, 0.01502981036901474, 0.12223919481039047, -0.054999351501464844, 0.0318911150097847, -0.02251923643052578, 0.09230252355337143, -0.019521107897162437, -0.08040034770965576, 0.05745783448219299, -0.059442613273859024, -0.18081504106521606, -0.07234551012516022, 0.15346136689186096, 0.13476553559303284, 0.06801023334264755, -0.009376696310937405, 0.06535516679286957, 0.0014899130910634995, -0.06000461429357529, 0.005565005820244551, 0.09997553378343582, -0.005129508674144745, 0.08768896758556366, -0.029888801276683807, -0.15366360545158386, -0.10070610046386719, -0.09354090690612793, 0.10454069077968597, 0.10422243922948837, -0.03149212896823883, 0.16137129068374634, 0.1687997281551361, -0.07555453479290009, -0.18496167659759521, -0.049491703510284424, 0.026669763028621674, -0.0020162053406238556, -0.006092481315135956, -0.15686459839344025, 0.054653141647577286, 0.06798265874385834, 0.007751584053039551, -0.07289910316467285, -0.2147790789604187, -0.1220867931842804, 0.024654962122440338, -0.008961002342402935, -0.07755676656961441, -0.0992412269115448, -0.06360699236392975, 0.01170668751001358, -0.08011970669031143, 0.14036357402801514, -0.028515072539448738, 0.003647808451205492, 0.04300587251782417, 0.07475995272397995, 0.009636906906962395, 0.0012426315806806087, 0.11084451526403427, 0.05305532366037369, -0.0037452178075909615, -0.08103254437446594, -0.08690499514341354, -0.004479166120290756, -0.019547374919056892, 0.0505814403295517, 0.02254260703921318, 0.002790827304124832, -0.10204877704381943, -0.01803979091346264, -0.08544144034385681, -0.019019870087504387, -0.09766311943531036, -0.03244234621524811, -0.10055045783519745, 0.12098546326160431, 0.0640808641910553, -0.04029545187950134, 0.07150747627019882, -0.08946658670902252, 0.06962326914072037, 0.1851479709148407, 0.14684060215950012, 0.008951490744948387, -0.035278402268886566, -0.00009269779548048973, -0.003602651646360755, 0.02403661608695984, -0.0840291753411293, 0.033276256173849106, 0.0676993727684021, -0.017342327162623405, 0.14636710286140442, -0.04985786974430084, -0.13501203060150146, -0.007691303268074989, 0.05632425472140312, -0.0679454356431961, -0.2630065679550171, 0.006497294642031193, 0.1345195472240448, -0.1378358006477356, -0.0314449742436409, 0.11154359579086304, 0.02422107756137848, -0.04257940500974655, 0.00649516424164176, 0.12230269610881805, 0.059430912137031555, 0.06997311860322952, -0.009035183116793633, 0.03860900551080704, -0.10777337104082108, 0.05534520745277405, 0.1301669478416443, -0.12490268051624298, 0.03563423827290535, 0.16439297795295715, -0.09478715062141418, -0.04376891627907753, 0.02423936501145363, 0.0035483408719301224, 0.01279066689312458, -0.0005193003453314304, 0.05436887592077255, -0.12809620797634125, 0.031599998474121094, 0.12866804003715515, -0.017183030024170876, 0.05979318171739578, 0.029622675850987434, -0.006173550616949797, -0.011837686412036419, 0.12562917172908783, 0.02198820561170578, -0.030373964458703995, 0.0433487705886364, -0.010497111827135086, -0.02767544612288475, -0.038727376610040665, 0.008028384298086166, -0.058819882571697235, -0.10560104250907898, -0.02038809284567833, -0.03413902968168259, -0.02100217342376709, -0.09375207126140594, 0.003635542932897806, 0.012542510405182838, -0.05329936742782593, 0.016821255907416344, -0.012204958125948906, -0.04705776274204254, -0.002174197696149349, -0.0362357571721077, 0.08444784581661224, -0.15100696682929993, 0.03493316471576691, 0.09375898540019989, -0.05475441366434097, 0.11962804198265076, -0.00009430898353457451, -0.04778352379798889, -0.0025510918349027634, -0.06491632759571075, -0.0005082443822175264, -0.04482823610305786, 0.046018533408641815, 0.061049774289131165, -0.1371947079896927, -0.02861076220870018, 0.007209602743387222, -0.029955994337797165, 0.020907625555992126, 0.09699881076812744, -0.05549372360110283, 0.08837519586086273, -0.016424037516117096, -0.06329469382762909, -0.0598367415368557, 0.05465307831764221, 0.022062048316001892, -0.021895572543144226, 0.12544545531272888, -0.03790390491485596, 0.05469101667404175, -0.11508321762084961, -0.010051351971924305, 0.05755569785833359, 0.018255118280649185, -0.041027188301086426, -0.05217139050364494, 0.04429732263088226, 0.019098689779639244, 0.07751201093196869, -0.014860033988952637, 0.009501523338258266, 0.08999858796596527, 0.0261069368571043, -0.08875361829996109, 0.04183467850089073, -0.08439800143241882, -0.016004353761672974, -0.01692252606153488, 0.026042871177196503, -0.07386752963066101, -0.07234518229961395, -0.047313276678323746, 0.1591159701347351, 0.15858672559261322, 0.18533775210380554, -0.020353807136416435, 0.07353213429450989, -0.05408255010843277, -0.023058542981743813, 0.03722025454044342, -0.04869169741868973, 0.02039957605302334, -0.09052714705467224, 0.0740896612405777, 0.0603100061416626, -0.16367876529693604, 0.11462245881557465, -0.07246450334787369, -0.07566225528717041, -0.0372561439871788, -0.13674506545066833, -0.04606474190950394, -0.03442960977554321, -0.01175733096897602, -0.11880221962928772, 0.05270281434059143, 0.056952524930238724, 0.05327398329973221, -0.033988095819950104, 0.029630552977323532, -0.08233288675546646, -0.10123178362846375, 0.015521552413702011, 0.04283977299928665, 0.10066653788089752, 0.021386299282312393, 0.03878136724233627, -0.020714320242404938, 0.13099485635757446, 0.0707252025604248, 0.11735685914754868, 0.023187920451164246, -0.0033424552530050278, -0.07878731936216354, -0.08460471034049988, 0.011810705065727234, 0.008216794580221176, -0.01891774870455265, 0.21425259113311768, 0.028949711471796036, 0.018817411735653877, 0.028378110378980637, 0.16243799030780792, -0.03571454435586929, -0.10376305133104324, -0.18496179580688477, 0.00004046410322189331, -0.040776219218969345, 0.02506863698363304, 0.031951066106557846, -0.12815745174884796, -0.019317157566547394, 0.13236531615257263, 0.21743617951869965, -0.007098740432411432, -0.005815208423882723, -0.020689764991402626, 0.027926113456487656, -0.0045450469478964806, 0.04397658258676529, 0.050033003091812134, 0.2807910144329071, -0.04439382627606392, 0.06492981314659119, 0.0067849294282495975, -0.05011991411447525, -0.029087597504258156, 0.08028022199869156, -0.009981525130569935, -0.0274767205119133, -0.05563720315694809, 0.12116304039955139, -0.09168945252895355, -0.29307758808135986, -0.001831740140914917, -0.11658766120672226, -0.0981394350528717, -0.010654464364051819, 0.09099513292312622, 0.03524140268564224, 0.04166713356971741, 0.04898746684193611, -0.059409767389297485, 0.18441784381866455, 0.03615104779601097, -0.048538386821746826, -0.04055138677358627, 0.15039081871509552, -0.103752002120018, 0.11359024047851562, 0.015200713649392128, 0.1075497716665268, 0.08549708127975464, -0.008950618095695972, -0.08776368200778961, -0.0068983775563538074, 0.08089511096477509, -0.029685910791158676, -0.010637938976287842, 0.12462325394153595, 0.016519896686077118, 0.23368293046951294, 0.1305823177099228, -0.02665254846215248, 0.05933646112680435, 0.014703761786222458, -0.01956818997859955, -0.04938157647848129, 0.12575596570968628, -0.11496644467115402, 0.11876387894153595, 0.1508793979883194, -0.033134251832962036, 0.022512447088956833, 0.005676604807376862, -0.01819372922182083, -0.024379342794418335, 0.0949278399348259, -0.015693144872784615, -0.1545780897140503, -0.006403119303286076, -0.039256177842617035, 0.10818701237440109, -0.14974111318588257, -0.05082520842552185, 0.023445211350917816, 0.022129768505692482, -0.04600948840379715, 0.15668335556983948, 0.06503242254257202, -0.023096874356269836, -0.03934036195278168, 0.03503129631280899, 0.01677766442298889, 0.09252356737852097, -0.03482596576213837, 0.030233044177293777 ]
e85b33c26b4c74a2076ec9e41b4879d08092ddf8
# Dataset Card for "elementary_math-v1" [More Information needed](https://github.com/huggingface/datasets/blob/main/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
emozilla/elementary_math-v1
[ "region:us" ]
2023-02-08T02:28:36+00:00
{"dataset_info": {"features": [{"name": "text", "dtype": "string"}, {"name": "operation", "dtype": "string"}, {"name": "operands", "sequence": "int64"}, {"name": "solution", "dtype": "int64"}], "splits": [{"name": "train", "num_bytes": 2522190691, "num_examples": 800001}, {"name": "test", "num_bytes": 315111072, "num_examples": 99999}, {"name": "validation", "num_bytes": 315358918, "num_examples": 99999}], "download_size": 116049281, "dataset_size": 3152660681}}
2023-02-08T02:32:53+00:00
[]
[]
TAGS #region-us
# Dataset Card for "elementary_math-v1" More Information needed
[ "# Dataset Card for \"elementary_math-v1\"\n\nMore Information needed" ]
[ "TAGS\n#region-us \n", "# Dataset Card for \"elementary_math-v1\"\n\nMore Information needed" ]
[ 6, 17 ]
[ "passage: TAGS\n#region-us \n# Dataset Card for \"elementary_math-v1\"\n\nMore Information needed" ]
[ -0.13684047758579254, 0.08706818521022797, -0.0030069067142903805, 0.012017720378935337, 0.09296154975891113, 0.12314805388450623, 0.04464906081557274, 0.11152272671461105, 0.09968162328004837, 0.01597193069756031, 0.19327716529369354, 0.023136300966143608, 0.05932200327515602, 0.1944948434829712, -0.12400270253419876, -0.09916643798351288, -0.026992900297045708, 0.04218830168247223, 0.0075811780989170074, 0.015660477802157402, 0.016380179673433304, -0.05367758125066757, 0.03995709866285324, -0.10907282680273056, -0.1529572755098343, 0.09903330355882645, -0.019189879298210144, -0.037397351115942, 0.05352985858917236, -0.04632177948951721, 0.12950079143047333, 0.037069015204906464, 0.0603465773165226, -0.18131671845912933, 0.007890728302299976, -0.04328767582774162, -0.05966666713356972, 0.07516496628522873, 0.030294369906187057, -0.08051411062479019, -0.12689638137817383, -0.008062937296926975, 0.012194585055112839, 0.004781858995556831, -0.15512444078922272, -0.20993126928806305, -0.10264778137207031, -0.089990995824337, 0.058738939464092255, -0.09675305336713791, 0.0664479210972786, 0.08455716818571091, -0.11341013759374619, 0.018547866493463516, 0.08459445834159851, -0.18607324361801147, 0.0637645497918129, 0.1974421888589859, -0.06998084485530853, 0.14660391211509705, 0.034029703587293625, 0.06713227927684784, 0.1450684666633606, -0.005858931690454483, -0.06704630702733994, -0.014176152646541595, -0.13670171797275543, 0.12253330647945404, -0.02740378864109516, -0.11100338399410248, 0.32155609130859375, -0.05692068859934807, 0.04731931537389755, 0.060509756207466125, -0.004223931115120649, -0.09988351911306381, -0.032235875725746155, -0.0016589998267591, 0.023079803213477135, 0.02259514480829239, 0.11027512699365616, 0.007312836591154337, -0.125465989112854, -0.051443859934806824, -0.10895666480064392, -0.04838075861334801, -0.08905497938394547, 0.13949237763881683, -0.1620166003704071, 0.019442059099674225, -0.2166246771812439, -0.050076574087142944, 0.043023232370615005, -0.0686555802822113, 0.0664728432893753, -0.011813768185675144, -0.03435448929667473, -0.08984196931123734, 0.07738561183214188, 0.015263821929693222, 0.12909553945064545, 0.08381693810224533, -0.08342453092336655, 0.07495508342981339, 0.2271190583705902, -0.04503536969423294, 0.0066412268206477165, 0.035550884902477264, -0.008200383745133877, -0.04153214395046234, -0.02226877212524414, -0.1135038286447525, -0.12728215754032135, 0.0031928732059895992, 0.024834616109728813, 0.1598498523235321, -0.012506402097642422, -0.13659848272800446, -0.04865425452589989, -0.0014940544497221708, 0.0793086364865303, -0.14171761274337769, 0.06301284581422806, 0.004595476668328047, -0.03375783935189247, -0.015392128378152847, -0.08014464378356934, -0.0031274021603167057, 0.010945172980427742, -0.025387389585375786, -0.09037090837955475, -0.016901053488254547, -0.07541888952255249, -0.03546101227402687, 0.06453925371170044, -0.1637895405292511, 0.06396330147981644, -0.07016497105360031, -0.15886829793453217, 0.04199817404150963, 0.08817965537309647, -0.08162987977266312, 0.14938704669475555, -0.013878085650503635, 0.06526768952608109, 0.017065005376935005, -0.03849122300744057, 0.16707448661327362, -0.042343076318502426, 0.0485609732568264, 0.042623765766620636, 0.057413939386606216, -0.14790809154510498, 0.045968517661094666, -0.08823463320732117, 0.04311823472380638, 0.029456254094839096, 0.019126132130622864, -0.13548587262630463, -0.010840389877557755, -0.047702860087156296, -0.012317142449319363, -0.05093671381473541, 0.00018932146485894918, 0.03605814650654793, 0.10412770509719849, -0.20943786203861237, -0.011938788928091526, 0.015224538743495941, -0.13959556818008423, -0.19535516202449799, -0.012631140649318695, -0.05838613957166672, 0.086179718375206, 0.00008416506898356602, 0.3415524661540985, 0.09177107363939285, -0.06261564046144485, 0.02479921653866768, 0.1974288374185562, -0.007367878220975399, -0.27914103865623474, 0.040725868195295334, -0.0006597306928597391, -0.18426425755023956, 0.054738275706768036, 0.09096740186214447, -0.021059488877654076, -0.09210401028394699, -0.08092629164457321, -0.015836192294955254, -0.10586369782686234, 0.07313843071460724, 0.05991647019982338, 0.11826297640800476, 0.006936883553862572, 0.14929085969924927, 0.022490231320261955, 0.008747444488108158, -0.009622708894312382, -0.06961170583963394, -0.011816661804914474, 0.1513848900794983, -0.20996630191802979, -0.00381003157235682, -0.20020873844623566, -0.047667719423770905, 0.013084756210446358, 0.07180242240428925, 0.009158833883702755, 0.08953753113746643, 0.08785392343997955, -0.04626842960715294, -0.02422952651977539, 0.05190473049879074, 0.10615126043558121, 0.06341923028230667, -0.05704231932759285, 0.005715055391192436, -0.0803876742720604, -0.15204079449176788, -0.1328778862953186, -0.07841626554727554, -0.04740673676133156, 0.04968172684311867, 0.017439723014831543, 0.04701574519276619, 0.03086569719016552, -0.020799800753593445, 0.047691699117422104, 0.03319816291332245, -0.04702598601579666, 0.034396082162857056, -0.0180649533867836, 0.034932710230350494, -0.09639164805412292, -0.008686099201440811, 0.2240215539932251, 0.07771772146224976, -0.03466673567891121, 0.018035616725683212, -0.09417709708213806, 0.016177687793970108, 0.02856132760643959, -0.04299302399158478, -0.04068079590797424, -0.08971678465604782, -0.04567393660545349, 0.04466013237833977, -0.0861835777759552, 0.02968570962548256, 0.07372980564832687, -0.06976558268070221, -0.12690499424934387, 0.07271691411733627, 0.19612516462802887, -0.2157866209745407, 0.09641236066818237, 0.18761388957500458, 0.08351441472768784, 0.09250227361917496, -0.11883445829153061, -0.09781430661678314, -0.02612348459661007, -0.07349087297916412, -0.01480808760970831, 0.1374940276145935, -0.05162276700139046, -0.03199995309114456, 0.09117349237203598, 0.035532146692276, 0.15605428814888, -0.148902028799057, -0.07497086375951767, -0.008961119689047337, 0.049251459538936615, -0.1101125106215477, -0.012480620294809341, -0.023825671523809433, 0.09888201206922531, -0.0176280215382576, 0.036894477903842926, 0.0975516140460968, -0.0032102048862725496, -0.10503309220075607, 0.15006659924983978, -0.18419517576694489, -0.14953546226024628, -0.014541560783982277, -0.07854409515857697, 0.1100069209933281, 0.009503243491053581, -0.01637471653521061, -0.14129821956157684, -0.04527094587683678, -0.016544004902243614, -0.011335354298353195, -0.2370731234550476, -0.03212627023458481, 0.033327098935842514, 0.00462154857814312, -0.13398201763629913, -0.12829644978046417, 0.013611367903649807, -0.06116979196667671, 0.11626476794481277, 0.14840976893901825, -0.1527695655822754, 0.05831887945532799, 0.17978273332118988, -0.0658041313290596, 0.0913713276386261, -0.05394042283296585, 0.14419184625148773, 0.0229361392557621, -0.027186278253793716, 0.06519943475723267, 0.04534914344549179, 0.021325983107089996, 0.0587075911462307, 0.0659460574388504, -0.16080090403556824, -0.05111761763691902, -0.08805345743894577, -0.17205359041690826, -0.2936214804649353, -0.13130638003349304, -0.05169782415032387, 0.09873268008232117, 0.09933184832334518, 0.017645426094532013, -0.06234296038746834, 0.040531858801841736, 0.15043428540229797, 0.0709666758775711, -0.12804213166236877, -0.10508645325899124, 0.12100572884082794, 0.005120319779962301, 0.004181746393442154, -0.11822232604026794, 0.009050587192177773, 0.11178984493017197, 0.21371114253997803, 0.29484039545059204, 0.12821552157402039, 0.07659588754177094, -0.025003017857670784, 0.04860611632466316, 0.08392447233200073, 0.2254757285118103, 0.04594256728887558, 0.004965582396835089, 0.0014797471230849624, 0.02338108979165554, -0.10051968693733215, -0.01054750569164753, 0.1176764965057373, -0.20611101388931274, -0.06769166886806488, -0.05754803866147995, -0.013318472541868687, -0.1632404625415802, 0.0755864679813385, -0.09023904800415039, 0.05139892175793648, 0.06859784573316574, 0.14368502795696259, -0.11891558766365051, 0.08024444431066513, -0.03667374327778816, -0.020306654274463654, -0.014086849987506866, -0.010974552482366562, 0.04485431686043739, -0.00486378138884902, -0.0321832001209259, -0.1215585395693779, -0.1337064951658249, 0.01578488200902939, 0.1261996626853943, -0.13614493608474731, 0.28229209780693054, 0.09024657309055328, 0.011214077472686768, -0.09719426184892654, 0.008544953539967537, -0.06051979213953018, 0.017299123108386993, 0.11312472075223923, -0.00116840994451195, -0.16293743252754211, -0.1934904158115387, -0.0029314900748431683, 0.03335847333073616, 0.11687177419662476, 0.03784695267677307, -0.1066485047340393, 0.04927350580692291, 0.04112591594457626, -0.004969737026840448, -0.15700969099998474, -0.10695157200098038, -0.1516180783510208, 0.03901686146855354, -0.11107386648654938, -0.16949869692325592, 0.01901480369269848, -0.06723333150148392, -0.04773087054491043, 0.05159498006105423, 0.1445295512676239, -0.03751790151000023, -0.09613373875617981, 0.04947316274046898, 0.14171254634857178, 0.0026758606545627117, 0.011031733825802803, 0.01940249465405941, -0.015362905338406563, -0.10014291852712631, -0.21596328914165497, 0.0798666849732399, -0.04810338094830513, 0.09691499918699265, -0.07638420909643173, 0.09068435430526733, -0.06340247392654419, 0.05007707327604294, 0.014726070687174797, 0.06598299741744995, -0.0025709045585244894, -0.06698507070541382, 0.2241489291191101, -0.16008883714675903, 0.02962081879377365, 0.11664537340402603, 0.028623631224036217, -0.06338042765855789, 0.13712674379348755, -0.019197626039385796, 0.23174165189266205, 0.18036040663719177, -0.06997770071029663, 0.14987915754318237, 0.21101199090480804, -0.07101547718048096, -0.2830577790737152, 0.033688291907310486, -0.11225580424070358, -0.00598103366792202, 0.049981389194726944, -0.26004165410995483, 0.10589656978845596, 0.09214099496603012, -0.05666600167751312, 0.20816004276275635, -0.19435861706733704, -0.0153559111058712, 0.19508571922779083, 0.08299198746681213, 0.2892133891582489, -0.15356042981147766, -0.09269534051418304, -0.03399442136287689, -0.2008974701166153, 0.2084444910287857, -0.05054333433508873, 0.026834551244974136, -0.024404585361480713, 0.031165042892098427, 0.007500562351197004, -0.06333255022764206, 0.1771039366722107, 0.00641628447920084, 0.06615570932626724, 0.01486581563949585, -0.16153161227703094, 0.16316556930541992, -0.04022642597556114, 0.06347764283418655, 0.05804736539721489, 0.06063765659928322, -0.19624429941177368, 0.008678717538714409, 0.029735684394836426, -0.0005487556918524206, 0.027410147711634636, -0.11669056862592697, -0.0595698282122612, -0.023239903151988983, -0.06025657057762146, -0.05489327386021614, 0.10974430292844772, 0.011265445500612259, 0.06914883106946945, 0.20847918093204498, 0.10381246358156204, -0.20909185707569122, 0.13794995844364166, -0.03065466694533825, -0.11752187460660934, 0.09343099594116211, -0.2848704755306244, 0.04130832478404045, 0.14105947315692902, 0.051927417516708374, 0.06645797193050385, 0.07787325978279114, 0.004176609683781862, 0.05266113579273224, 0.12231966108083725, -0.03824569284915924, -0.10664461553096771, 0.04508817195892334, -0.019913658499717712, -0.042056918144226074, 0.06922589987516403, -0.004838388878852129, 0.034916363656520844, -0.03715333342552185, -0.0718231350183487, 0.06502719223499298, -0.0563688687980175, 0.071788489818573, 0.17131567001342773, 0.0607067309319973, -0.15133430063724518, 0.1497943103313446, 0.04462480545043945, -0.13086317479610443, 0.015084107406437397, 0.006401538848876953, -0.024874545633792877, -0.09394568204879761, 0.04059451445937157, 0.2993867099285126, -0.02264089696109295, -0.05791246518492699, 0.021180275827646255, -0.09029711782932281, 0.04497988894581795, 0.09059644490480423, 0.01474828366190195, 0.03333163261413574, -0.008575593121349812, -0.038045864552259445, -0.013192089274525642, -0.006706977263092995, -0.053687628358602524, 0.04187984764575958, -0.01806049607694149, -0.17136891186237335, -0.04689977318048477, 0.13556832075119019, -0.06987496465444565, -0.0696362629532814, -0.08045415580272675, 0.06659077852964401, -0.14048446714878082, 0.08822522312402725, -0.001302237855270505, 0.021607570350170135, 0.02744295820593834, 0.05438663810491562, -0.06991234421730042, 0.0016859868774190545, -0.11802225559949875, 0.1293559968471527, -0.021541740745306015, 0.01978110522031784, -0.04114321246743202, -0.022412439808249474, 0.07285214215517044, 0.01344193797558546, 0.05792135372757912, 0.0688478946685791, 0.024262961000204086, 0.15874911844730377, -0.14456695318222046, -0.13245420157909393, 0.0688987597823143, 0.08021437376737595, 0.08464352041482925, 0.004863185808062553, -0.025341881439089775, 0.11294645816087723, -0.07972665876150131, 0.05647537484765053, -0.0056700739078223705, -0.06388840824365616, 0.04589679837226868, -0.17158015072345734, -0.10673435777425766, -0.011300993151962757, 0.0022787274792790413, 0.17311571538448334, 0.04767308384180069, -0.0668286383152008, 0.032986417412757874, 0.050099391490221024, -0.09935712069272995, -0.07735851407051086, 0.020085446536540985, -0.07011260092258453, -0.06783562898635864, 0.050076551735401154, 0.04346710816025734, -0.017030464485287666, 0.4348629117012024, 0.046229247003793716, -0.10054455697536469, -0.04548831656575203, 0.07128878682851791, -0.015349667519330978, 0.05625763162970543, 0.34227657318115234, 0.06933318078517914, -0.05005588009953499, -0.10210835188627243, 0.09552674740552902, -0.06102681905031204, 0.2303345650434494, 0.15565477311611176, -0.039625972509384155, 0.016515472903847694, 0.007044678088277578, -0.031513456255197525, -0.1132538914680481, 0.03112795762717724, 0.1010436862707138, 0.05170609429478645, 0.02548348531126976, 0.059897009283304214, -0.09039247781038284, 0.09930320829153061, -0.04332102835178375, 0.0293684434145689, -0.15578852593898773, -0.10496555268764496, -0.08958812057971954, -0.09439031034708023, -0.08757907897233963, -0.1285100281238556, 0.04727182909846306, -0.09669731557369232, -0.01930270344018936, 0.18416017293930054, 0.037356968969106674, 0.041008301079273224, -0.010323983617126942, -0.022930646315217018, 0.09037903696298599, 0.012313758954405785, -0.04719211161136627, -0.04705743491649628, -0.10452577471733093, -0.029125360772013664, 0.03417690098285675, -0.0775926411151886, -0.020360562950372696, 0.015668949112296104, -0.0026924419216811657, 0.03508085757493973, -0.10791073739528656, -0.06323268264532089, -0.05431856960058212, 0.03530043736100197, -0.08441277593374252, 0.16790717840194702, 0.020199235528707504, 0.02765059657394886, 0.05961150676012039, 0.07709625363349915, 0.04686660319566727, -0.012478016316890717, -0.06971637159585953, 0.023929307237267494, -0.0023399938363581896, 0.13047510385513306, 0.07095851749181747, -0.09268038719892502, -0.014185602776706219, 0.052022535353899, 0.2769140601158142, 0.028796233236789703, -0.01583475060760975, 0.05881092697381973, 0.03693872317671776, 0.027909040451049805, 0.204448863863945, 0.0019907185342162848, 0.12833620607852936, -0.13717283308506012, -0.09098681807518005, -0.06696094572544098, -0.06961628049612045, -0.012430139817297459, 0.14896859228610992, 0.12430165708065033, -0.04534363001585007, -0.08331336826086044, 0.1510489284992218, -0.10282877087593079, 0.10805446654558182, 0.11126957833766937, -0.15028156340122223, -0.06886736303567886, -0.01598837785422802, 0.09974520653486252, -0.07020741701126099, 0.04548941180109978, -0.09132996201515198, -0.03587115928530693, -0.07635592669248581, 0.00568274175748229, -0.2720092236995697, -0.10520089417695999, 0.037556689232587814, -0.008229192346334457, 0.07988356053829193, 0.03345929831266403, 0.10232992470264435, 0.008979960344731808, 0.07882591336965561, -0.038686785846948624, 0.07804441452026367, 0.0730939731001854, 0.17057086527347565, -0.029594171792268753, -0.008629733696579933, -0.02498634345829487, -0.0309013519436121, -0.0024773774202913046, -0.09065935015678406, -0.02116415835916996, 0.216439351439476, -0.03309670463204384, 0.03396710380911827, -0.087654247879982, -0.06563537567853928, 0.07949890941381454, -0.09413546323776245, 0.002326394198462367, -0.023459549993276596, -0.0276154987514019, 0.0973588153719902, 0.035779453814029694, -0.01878087781369686, -0.11284150928258896, -0.05136353150010109, -0.06714882701635361, 0.2097468227148056, 0.021906180307269096, -0.05157126858830452, 0.05454287678003311, -0.12559394538402557, 0.05093293637037277, -0.0787053257226944, 0.08059987425804138, 0.16774719953536987, 0.02094348892569542, -0.05900390073657036, -0.1060473620891571, 0.03443080931901932, 0.03620370849967003, -0.01618286594748497, -0.06412477046251297 ]
017f096213f8507f3a8a34d94c255ba69f33cb97
# Dataset Card for "summarization_wikilingua_vi" [More Information needed](https://github.com/huggingface/datasets/blob/main/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
CaoHaiNam/summarization_wikilingua_vi
[ "region:us" ]
2023-02-08T03:00:33+00:00
{"dataset_info": {"features": [{"name": "summary", "dtype": "string"}, {"name": "document", "dtype": "string"}, {"name": "__index_level_0__", "dtype": "int64"}], "splits": [{"name": "train", "num_bytes": 61182829.83851693, "num_examples": 17622}, {"name": "test", "num_bytes": 6801564.16148307, "num_examples": 1959}], "download_size": 34140923, "dataset_size": 67984394.0}}
2023-02-12T00:29:41+00:00
[]
[]
TAGS #region-us
# Dataset Card for "summarization_wikilingua_vi" More Information needed
[ "# Dataset Card for \"summarization_wikilingua_vi\"\n\nMore Information needed" ]
[ "TAGS\n#region-us \n", "# Dataset Card for \"summarization_wikilingua_vi\"\n\nMore Information needed" ]
[ 6, 19 ]
[ "passage: TAGS\n#region-us \n# Dataset Card for \"summarization_wikilingua_vi\"\n\nMore Information needed" ]
[ -0.07464408129453659, 0.13356593251228333, -0.004913361743092537, 0.009675625711679459, 0.1266019642353058, 0.11158602684736252, 0.025104133412241936, 0.04772200807929039, 0.07071516662836075, -0.04936894029378891, 0.10195831954479218, 0.013532917015254498, 0.11875710636377335, 0.15283919870853424, -0.07836438715457916, -0.22338265180587769, 0.043130651116371155, 0.0035919849760830402, -0.014436614699661732, 0.023456044495105743, 0.05169624462723732, -0.0518232136964798, 0.06519840657711029, -0.06940823793411255, -0.225689098238945, 0.04728378355503082, -0.01679917424917221, -0.09409989416599274, 0.07622537761926651, -0.016474153846502304, 0.13664336502552032, -0.0139571912586689, 0.028774473816156387, -0.18385739624500275, 0.03305991739034653, -0.03275228291749954, -0.0011091293999925256, 0.029206473380327225, 0.04100204259157181, 0.006376425735652447, 0.022888943552970886, -0.07401761412620544, -0.02498258836567402, 0.014086557552218437, -0.11182122677564621, -0.10188764333724976, -0.08523916453123093, -0.15128852427005768, -0.00663791922852397, -0.08984838426113129, 0.02945934608578682, 0.08778749406337738, -0.12147288769483566, 0.03960781916975975, -0.03800332546234131, -0.14636847376823425, 0.002641091588884592, 0.19844956696033478, -0.05638466030359268, 0.022126801311969757, -0.061656396836042404, 0.11803028732538223, 0.055537886917591095, -0.043891336768865585, -0.0742628276348114, -0.050969503819942474, -0.23287516832351685, 0.0599798820912838, -0.006170943845063448, -0.030739327892661095, 0.46636226773262024, 0.023438194766640663, 0.01665475219488144, 0.07444801181554794, 0.014435363002121449, 0.10820283740758896, 0.010405790992081165, 0.08055429905653, 0.0011739654000848532, 0.0003149571130052209, 0.13643959164619446, -0.005755831487476826, -0.10766392946243286, -0.05676252394914627, -0.16631673276424408, 0.0862797424197197, -0.0025316050741821527, 0.13997995853424072, -0.18809814751148224, -0.06395429372787476, -0.2121245563030243, -0.07035298645496368, -0.016725612804293633, -0.11126270145177841, -0.05724603310227394, -0.034516964107751846, 0.0460575707256794, -0.09079178422689438, 0.17739295959472656, -0.14916357398033142, -0.025195881724357605, 0.071159228682518, -0.09445955604314804, 0.09318042546510696, 0.24492743611335754, -0.0037518248427659273, -0.030473291873931885, 0.014997126534581184, 0.009971781633794308, -0.14770527184009552, -0.05461089313030243, -0.08539867401123047, -0.044879212975502014, 0.00505317747592926, -0.15512365102767944, 0.11611810326576233, -0.07982692867517471, -0.025973249226808548, -0.033976826816797256, -0.045306090265512466, 0.0008250053506344557, -0.1203719899058342, 0.004366642329841852, -0.010573151521384716, -0.04360819235444069, 0.18524327874183655, -0.11717697978019714, -0.04544854536652565, -0.0704611986875534, 0.11212775856256485, -0.061413105577230453, -0.0024796684738248587, -0.023331159725785255, -0.018307946622371674, 0.08736517280340195, -0.14035473763942719, 0.07744114845991135, -0.0959894061088562, -0.14094164967536926, 0.019532911479473114, 0.07568597793579102, -0.017140492796897888, 0.09798454493284225, -0.024173034355044365, 0.06594903022050858, 0.025057347491383553, -0.03237944468855858, 0.019181810319423676, -0.10603798180818558, 0.025543825700879097, -0.08949405699968338, 0.066188745200634, -0.24351386725902557, 0.04808904975652695, -0.07077136635780334, 0.03652834892272949, -0.06061786040663719, 0.035260625183582306, -0.12023622542619705, 0.0796269029378891, -0.07437118887901306, 0.051025405526161194, -0.11113084107637405, -0.0034041302278637886, -0.015043387189507484, 0.14797158539295197, -0.2741987109184265, -0.004556465893983841, 0.21284428238868713, -0.1629110872745514, -0.14429795742034912, 0.06568711251020432, -0.01711324416100979, 0.08260733634233475, 0.04897356033325195, 0.4137633740901947, 0.03021911159157753, -0.08998224884271622, 0.009764902293682098, 0.1602349728345871, -0.08594997972249985, -0.1496991217136383, 0.034604791551828384, -0.00019649801834020764, -0.16273874044418335, 0.06947305798530579, 0.13228051364421844, 0.011068852618336678, -0.05472389608621597, -0.04778430238366127, -0.0004612506600096822, -0.1074192076921463, 0.015372848138213158, -0.011251341551542282, 0.03221438452601433, -0.017671363428235054, 0.15747728943824768, 0.006419610232114792, 0.10541203618049622, 0.013233883306384087, -0.0116377929225564, -0.0262938030064106, 0.09003113955259323, -0.08880510926246643, 0.06269144266843796, -0.10268905013799667, -0.07630890607833862, 0.05263032764196396, -0.014432384632527828, 0.010723244398832321, -0.013676716014742851, 0.0029770166147500277, -0.04258514568209648, -0.008877079002559185, 0.08039484173059464, 0.10198865085840225, 0.046775687485933304, 0.029050428420305252, -0.08275808393955231, 0.07591401785612106, -0.06844592839479446, -0.1425650715827942, -0.07796169072389603, -0.09897348284721375, 0.1910252720117569, 0.03618030622601509, 0.018761662766337395, 0.015637431293725967, 0.07550796121358871, 0.050562091171741486, -0.010831700637936592, -0.031101878732442856, 0.013611922971904278, -0.04093135520815849, -0.01799197494983673, 0.11686748266220093, 0.05492553114891052, 0.17558877170085907, 0.17198733985424042, -0.0033298074267804623, 0.07502523809671402, -0.06490650773048401, 0.10196460038423538, -0.011851855553686619, -0.09307906776666641, 0.061342913657426834, -0.09892980009317398, -0.0247966181486845, 0.041418299078941345, -0.05716729909181595, 0.08824395388364792, 0.05514241009950638, -0.008383592590689659, -0.14143812656402588, 0.04163605719804764, 0.20958861708641052, -0.40780746936798096, 0.09573379158973694, 0.1607087254524231, 0.1131034642457962, 0.22208455204963684, -0.08062878996133804, -0.03233030065894127, 0.011264548636972904, -0.007996609434485435, -0.03845815360546112, 0.2054147720336914, -0.215068057179451, -0.020775655284523964, 0.06129606440663338, 0.036383166909217834, 0.05499323457479477, -0.06170498952269554, -0.0840897262096405, -0.02690977416932583, 0.0011245888890698552, -0.19307880103588104, 0.03506968915462494, 0.011228803545236588, 0.08497653901576996, 0.02587180770933628, 0.055307332426309586, 0.03139781206846237, -0.03972036391496658, 0.0118661317974329, 0.14050304889678955, -0.18705013394355774, -0.3272726237773895, -0.03790569305419922, -0.13052329421043396, -0.004958809353411198, -0.025324031710624695, -0.017953606322407722, -0.14721935987472534, -0.06642169505357742, 0.0515887476503849, -0.015336595475673676, -0.21497325599193573, -0.029964566230773926, -0.007763931527733803, 0.036801841109991074, -0.13304713368415833, -0.11479724198579788, 0.02153494767844677, -0.04926147311925888, 0.11719086766242981, 0.12016981840133667, -0.12715031206607819, 0.12335976213216782, 0.09336798638105392, -0.053675103932619095, 0.06496384739875793, -0.032155781984329224, 0.0796564593911171, -0.09992663562297821, -0.02496527135372162, 0.054418373852968216, -0.06601719558238983, 0.01140744611620903, 0.09963124245405197, 0.049696315079927444, -0.16674968600273132, 0.0007465265807695687, -0.042290762066841125, -0.1592121720314026, -0.3076229691505432, -0.11401412636041641, -0.09968182444572449, 0.11040448397397995, 0.07111380994319916, 0.019187960773706436, -0.19111952185630798, 0.07670828700065613, 0.13919179141521454, 0.008736275136470795, -0.06919219344854355, -0.05478406697511673, 0.025059163570404053, -0.016887009143829346, -0.04769357666373253, -0.11864760518074036, 0.048746176064014435, 0.1166347861289978, 0.19014617800712585, 0.22859159111976624, 0.08478070795536041, 0.11523990333080292, 0.049813054502010345, 0.13357627391815186, 0.13835854828357697, 0.1885697990655899, 0.0285494364798069, 0.025020988658070564, -0.0035503192339092493, 0.021146699786186218, -0.07305204123258591, -0.02442292496562004, 0.11942894756793976, -0.17487095296382904, 0.01639278046786785, -0.04176916927099228, 0.03944169729948044, -0.0393015518784523, 0.09148982167243958, -0.05375492200255394, 0.065592922270298, 0.04127753898501396, 0.058407578617334366, -0.16233763098716736, 0.13083092868328094, 0.14654406905174255, -0.07870969921350479, 0.1571522057056427, 0.055227186530828476, 0.11454226821660995, -0.14133742451667786, -0.016395406797528267, -0.12963654100894928, -0.0677567794919014, -0.011816585436463356, 0.12559959292411804, -0.11613685637712479, 0.24904470145702362, 0.04368159547448158, -0.02026369608938694, -0.07670903950929642, -0.049303337931632996, -0.009209839627146721, 0.13181132078170776, 0.13012035191059113, 0.06839599460363388, -0.1289406269788742, -0.05476871132850647, -0.03635842353105545, 0.02537669986486435, 0.13497242331504822, 0.066694475710392, -0.1269759237766266, 0.05718429386615753, 0.02575727179646492, -0.08898721635341644, -0.1789793074131012, -0.09360844641923904, -0.17124783992767334, 0.013021678663790226, 0.042223092168569565, -0.04878321290016174, 0.02757609635591507, 0.026037707924842834, -0.04547703638672829, 0.12857674062252045, 0.17246569693088531, -0.02700047194957733, -0.1244705393910408, 0.007025907747447491, 0.18630804121494293, -0.023878328502178192, 0.01898064650595188, -0.04680244252085686, 0.011056780815124512, -0.0965830609202385, -0.14717701077461243, 0.05228244140744209, -0.010753690265119076, 0.162469744682312, -0.07678075134754181, 0.08000673353672028, -0.05273428186774254, -0.042960215359926224, 0.01981547102332115, 0.011842010542750359, 0.035102274268865585, -0.10207635164260864, 0.10275206714868546, 0.004879928193986416, -0.04060996323823929, 0.19813813269138336, 0.06054624915122986, -0.06518363207578659, 0.030948011204600334, -0.11741358786821365, 0.22186867892742157, 0.034142911434173584, -0.04161607846617699, 0.1755451261997223, 0.1935962587594986, -0.10882903635501862, -0.31779325008392334, -0.011581502854824066, -0.1332363784313202, 0.014733906835317612, -0.026510965079069138, -0.21104779839515686, 0.13696587085723877, 0.08824240416288376, -0.0036448542959988117, 0.2247101366519928, -0.05749845132231712, -0.0345504954457283, 0.08105490356683731, 0.08283119648694992, 0.291704386472702, -0.07587949931621552, -0.0653359442949295, -0.0786038190126419, -0.07470118254423141, 0.2271772027015686, -0.0811571329832077, 0.04887748509645462, 0.009222705848515034, 0.07287883758544922, 0.009577245451509953, -0.01903262548148632, 0.2027391940355301, 0.021334070712327957, 0.0078353276476264, -0.03198212757706642, -0.11881303042173386, 0.08648963272571564, -0.03209209814667702, 0.07708238065242767, 0.041683658957481384, -0.004698502831161022, -0.11077427119016647, -0.009264555759727955, -0.006735243834555149, 0.04733090102672577, 0.04473544657230377, -0.032012417912483215, -0.05588017776608467, 0.006584893446415663, -0.09328572452068329, 0.005672369617968798, 0.19712385535240173, 0.018748005852103233, -0.028578929603099823, 0.0650397315621376, 0.0794057622551918, -0.0766289085149765, 0.0971282571554184, -0.040363989770412445, -0.041314903646707535, 0.12802276015281677, -0.3175724148750305, 0.018426384776830673, 0.11142649501562119, 0.023953812196850777, 0.0018453598022460938, 0.011991939507424831, -0.08300130069255829, 0.033676013350486755, 0.13561515510082245, -0.06307908892631531, -0.11615792661905289, 0.03598880395293236, -0.028492668643593788, 0.09424763917922974, 0.04788374900817871, 0.08247973024845123, 0.03898608312010765, -0.004578218795359135, -0.03452158719301224, 0.056408874690532684, -0.039637234061956406, 0.08962764590978622, 0.05696526914834976, 0.052025359123945236, -0.18482807278633118, 0.23643368482589722, 0.09776341170072556, -0.21661880612373352, 0.00200821366161108, 0.05114433914422989, -0.13683336973190308, -0.09246834367513657, -0.08180208504199982, 0.08516295999288559, 0.07864578813314438, -0.13178980350494385, 0.12224967032670975, -0.151851087808609, -0.029731886461377144, 0.1973131150007248, 0.011394301429390907, 0.09369964152574539, -0.007230697199702263, -0.09981681406497955, -0.013929096981883049, -0.017853859812021255, -0.02539319358766079, 0.0002802096423693001, -0.12478461116552353, -0.24634526669979095, -0.0120774507522583, 0.22534042596817017, -0.030425772070884705, -0.07442383468151093, -0.12176704406738281, 0.06540543586015701, -0.11729513108730316, 0.11707671731710434, -0.05686897784471512, 0.040139246731996536, -0.011845019645988941, -0.024630732834339142, -0.009278700686991215, -0.028591390699148178, -0.1229577586054802, 0.09043377637863159, -0.005590303335338831, 0.06111360341310501, 0.019040536135435104, -0.04176962748169899, 0.09790021181106567, 0.0006737092626281083, 0.11348143965005875, 0.11969739198684692, -0.032857608050107956, 0.19131749868392944, -0.16308189928531647, -0.09967707842588425, 0.09538198262453079, 0.08155051618814468, 0.1110977977514267, 0.048364803194999695, 0.0008792995358817279, 0.04125881567597389, -0.015332633629441261, 0.019305797293782234, 0.018474245443940163, -0.07925233989953995, -0.07475627958774567, -0.11508730053901672, -0.11711898446083069, 0.041043948382139206, -0.03903862088918686, 0.20265080034732819, 0.011641978286206722, -0.04613185301423073, 0.06768173724412918, 0.04604445397853851, 0.0366005003452301, -0.012342236936092377, -0.03470555692911148, -0.17425277829170227, 0.016191793605685234, 0.02194904536008835, 0.03182292357087135, -0.057795263826847076, 0.34987276792526245, 0.031190525740385056, -0.11903483420610428, -0.025590792298316956, 0.002339244820177555, -0.19526752829551697, 0.04156189039349556, 0.22283610701560974, 0.05785946175456047, -0.024359844624996185, -0.09077141433954239, -0.002413287293165922, -0.004072927869856358, 0.1352749466896057, 0.03181718662381172, 0.07628048211336136, 0.0806901678442955, 0.019094960764050484, 0.02871626615524292, -0.013666639104485512, 0.07056733965873718, 0.05586405470967293, -0.03602918982505798, 0.06749238818883896, 0.06244355067610741, -0.15533612668514252, 0.051171835511922836, -0.014454303309321404, 0.03236549720168114, -0.06084630638360977, -0.12814493477344513, -0.12575583159923553, -0.16868256032466888, -0.07323440164327621, -0.01942386105656624, 0.055422864854335785, -0.09880855679512024, 0.031969960778951645, 0.18430334329605103, 0.10324276238679886, 0.01629353128373623, 0.08092610538005829, 0.048804208636283875, -0.048613596707582474, 0.1277230978012085, 0.016806859523057938, -0.10783880203962326, 0.034409813582897186, -0.016228262335062027, -0.02785610780119896, -0.019178833812475204, -0.06465625017881393, 0.05891358479857445, 0.016518542543053627, 0.06217329204082489, -0.09949660301208496, -0.03760983794927597, -0.05577662214636803, 0.06477585434913635, -0.11139524728059769, -0.022292932495474815, 0.05424685776233673, 0.006662342231720686, 0.036658935248851776, 0.09868510067462921, 0.057493265718221664, 0.030492093414068222, -0.05907544493675232, -0.017251847311854362, -0.055665742605924606, 0.08876930922269821, 0.006289080251008272, -0.02092275209724903, -0.01556477602571249, 0.2718527317047119, 0.28847044706344604, 0.015909597277641296, -0.019895892590284348, -0.021724602207541466, 0.021490294486284256, 0.023729233071208, 0.15574248135089874, 0.008671375922858715, 0.04258324205875397, -0.00529774883762002, -0.02249869331717491, -0.05175530165433884, -0.0320584736764431, -0.042144712060689926, 0.019239425659179688, 0.08419829607009888, -0.03141023963689804, -0.11642937362194061, 0.16735954582691193, -0.20976804196834564, -0.04715346544981003, 0.08787627518177032, -0.12365221977233887, -0.10122321546077728, -0.08861961960792542, 0.033902496099472046, 0.02334621176123619, 0.004272582940757275, -0.12412901222705841, -0.045831359922885895, -0.06540530920028687, 0.06502704322338104, -0.302688866853714, -0.13550132513046265, 0.02912161312997341, -0.046806372702121735, 0.022675393149256706, -0.002134916139766574, 0.04783492535352707, -0.021921958774328232, 0.06317602843046188, -0.06543423235416412, -0.013457675464451313, 0.0028567819390445948, 0.12159671634435654, -0.050175681710243225, 0.0689055398106575, -0.06956564635038376, 0.0997716635465622, 0.04079098626971245, -0.011795306578278542, -0.05242646858096123, 0.20990592241287231, 0.0080878222361207, 0.035787660628557205, 0.04875138774514198, -0.13585230708122253, 0.08972197026014328, 0.0981176421046257, -0.0001562718243803829, 0.009029204025864601, -0.01585264503955841, 0.08371042460203171, -0.0477135106921196, -0.14362643659114838, -0.07812155038118362, -0.013888628222048283, -0.1370065063238144, 0.0018699024803936481, 0.04031064361333847, -0.04092445597052574, 0.12372719496488571, -0.08225356042385101, 0.09333207458257675, -0.055579427629709244, 0.08218301832675934, 0.1367230862379074, 0.009331358596682549, -0.06008558347821236, -0.10319679975509644, 0.09331601113080978, -0.02124110981822014, 0.002743388060480356, -0.08353205025196075 ]
dbb9654cdcabc4aadc3eb32d6df54e6da2a883a8
# Dataset Card for "startuplogo-captions" [More Information needed](https://github.com/huggingface/datasets/blob/main/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
lucataco/startuplogo-captions
[ "region:us" ]
2023-02-08T05:21:06+00:00
{"dataset_info": {"features": [{"name": "image", "dtype": "image"}, {"name": "text", "dtype": "string"}], "splits": [{"name": "train", "num_bytes": 304090.0, "num_examples": 23}], "download_size": 139825, "dataset_size": 304090.0}}
2023-02-08T05:21:08+00:00
[]
[]
TAGS #region-us
# Dataset Card for "startuplogo-captions" More Information needed
[ "# Dataset Card for \"startuplogo-captions\"\n\nMore Information needed" ]
[ "TAGS\n#region-us \n", "# Dataset Card for \"startuplogo-captions\"\n\nMore Information needed" ]
[ 6, 16 ]
[ "passage: TAGS\n#region-us \n# Dataset Card for \"startuplogo-captions\"\n\nMore Information needed" ]
[ -0.07177890837192535, 0.14522510766983032, -0.0025552650913596153, -0.06022249907255173, 0.11073741316795349, 0.07323295623064041, 0.23650066554546356, 0.06262523680925369, 0.09629125893115997, -0.10238370299339294, 0.09453753381967545, 0.057954635471105576, 0.06722089648246765, 0.40670591592788696, -0.03274917230010033, -0.034091025590896606, 0.01280165370553732, 0.0688430443406105, -0.030560284852981567, 0.051338113844394684, 0.03710828348994255, -0.07348974049091339, 0.05383441969752312, -0.08930838108062744, -0.22666893899440765, 0.042089540511369705, -0.027780387550592422, -0.004270077683031559, 0.0325499065220356, -0.1319020390510559, 0.1616571843624115, 0.0034813072998076677, -0.010345755144953728, -0.09345473349094391, 0.02645823173224926, -0.04267213121056557, -0.03140882030129433, 0.02880101092159748, 0.018037129193544388, -0.081364706158638, -0.040374040603637695, 0.050985608249902725, -0.004316580947488546, 0.0165287833660841, -0.06254266202449799, -0.22714662551879883, -0.12779968976974487, 0.009995485655963421, -0.02687334083020687, -0.061394866555929184, 0.07831632345914841, 0.04465541988611221, -0.06712302565574646, 0.040070511400699615, 0.02383156307041645, 0.02781658247113228, 0.003208631882444024, 0.24547602236270905, -0.01753336936235428, -0.02871800772845745, -0.03941887989640236, 0.1026029884815216, 0.08907481282949448, 0.006799132097512484, -0.06136374920606613, -0.024086710065603256, -0.06784350425004959, -0.011105051264166832, -0.019376447424292564, -0.07371675968170166, 0.34504082798957825, 0.019479595124721527, -0.0005870914319530129, -0.05127984657883644, -0.01539037749171257, -0.07036387920379639, -0.033017419278621674, 0.0719536691904068, 0.03449208289384842, 0.03381502255797386, 0.04961087927222252, -0.10488308221101761, -0.13964223861694336, -0.07025451958179474, -0.056225575506687164, -0.0013810691889375448, -0.07411841303110123, 0.2002033144235611, -0.14805245399475098, -0.02379416674375534, 0.09155397862195969, -0.034850381314754486, 0.0074119651690125465, -0.14989127218723297, 0.047080717980861664, 0.02969176508486271, -0.002607232192531228, 0.11547733098268509, 0.11938969790935516, 0.1365123838186264, 0.022663794457912445, -0.0024728949647396803, -0.047299060970544815, 0.09871344268321991, 0.11121769994497299, -0.05872354283928871, 0.14591489732265472, -0.01900726929306984, -0.0011709819082170725, -0.13360942900180817, 0.009518565610051155, -0.07124383002519608, -0.1639004349708557, 0.05155037343502045, -0.06616593152284622, 0.08037353307008743, -0.06290477514266968, -0.05105260759592056, -0.04341617599129677, -0.021274231374263763, 0.14726001024246216, -0.06386794149875641, 0.035107895731925964, -0.08735798299312592, -0.022308317944407463, -0.11864470690488815, -0.03418122977018356, -0.01778799667954445, 0.05270185321569443, -0.002141044707968831, -0.05558503419160843, -0.041903652250766754, -0.05660921335220337, 0.08542705327272415, 0.06968352198600769, -0.2503548860549927, 0.09530624747276306, -0.1217377558350563, -0.1988971084356308, 0.05349110811948776, 0.11821278929710388, -0.03438615798950195, 0.0747862160205841, 0.009073914028704166, 0.02880001999437809, -0.0027665896341204643, -0.06119789555668831, 0.1334930956363678, -0.052398305386304855, 0.0162347424775362, -0.04832202568650246, 0.0512126125395298, -0.2665368914604187, 0.03908514603972435, -0.14964555203914642, 0.01709962636232376, -0.06425868719816208, 0.06554906070232391, -0.09958379715681076, 0.12837043404579163, -0.02352439984679222, 0.0894281342625618, -0.0937778577208519, 0.09642890840768814, -0.02523653954267502, 0.06932447105646133, -0.0912700891494751, -0.030465181916952133, 0.15236476063728333, -0.14179404079914093, -0.1892869770526886, -0.07889367640018463, -0.04167499020695686, 0.21584628522396088, 0.013899595476686954, 0.3067643940448761, 0.08929626643657684, -0.025021253153681755, 0.014676589518785477, 0.12776845693588257, -0.14814573526382446, -0.39512333273887634, -0.0116807222366333, -0.07239845395088196, -0.1042439192533493, 0.04793963581323624, 0.1279078871011734, 0.061296239495277405, -0.024928906932473183, -0.038373254239559174, -0.03910291939973831, -0.10467613488435745, -0.03328096866607666, 0.052540458738803864, 0.05537760257720947, -0.04657349735498428, 0.0542636513710022, -0.018496902659535408, -0.01658613793551922, 0.04058529809117317, -0.053211990743875504, -0.005669762380421162, 0.09553845226764679, -0.10857890546321869, -0.001230365945957601, -0.09947741031646729, -0.13922181725502014, 0.027920080348849297, -0.07844613492488861, 0.0023727144580334425, 0.13058623671531677, 0.055732350796461105, -0.09528398513793945, 0.007021727506071329, 0.04446837678551674, 0.16994546353816986, 0.027278421446681023, 0.011744354851543903, -0.00840164627879858, 0.037779662758111954, -0.0689098984003067, -0.06335251033306122, 0.04676428809762001, -0.024238456040620804, 0.05246312916278839, 0.08460530638694763, 0.039661508053541183, -0.038977548480033875, 0.035834312438964844, -0.04105628281831741, 0.008920485153794289, -0.06198369711637497, 0.047602493315935135, 0.006637538783252239, -0.001829896355047822, 0.09267783910036087, -0.05267665907740593, 0.030682098120450974, 0.13223443925380707, -0.023261282593011856, -0.018878426402807236, -0.16754044592380524, -0.024130133911967278, 0.0045266710221767426, 0.003943778108805418, 0.021536557003855705, -0.20080944895744324, -0.03623896464705467, 0.009528987109661102, -0.05980103835463524, -0.016596989706158638, 0.02151455357670784, -0.010569269768893719, -0.11262325197458267, 0.003866631770506501, 0.19048887491226196, -0.24558426439762115, 0.1781623214483261, 0.1969650387763977, 0.21335116028785706, 0.16130100190639496, -0.11190089583396912, -0.005490762647241354, -0.003237918484956026, -0.04204735904932022, -0.10114683210849762, 0.25390931963920593, -0.22159026563167572, 0.009376517497003078, 0.07492006570100784, 0.002052749041467905, 0.1215735599398613, -0.0791654959321022, -0.07826248556375504, -0.0011401056544855237, 0.013582025654613972, -0.025327036157250404, 0.06652753055095673, -0.012419329024851322, 0.03340880200266838, 0.003664139425382018, -0.08828370273113251, 0.18686597049236298, -0.05933070182800293, -0.018459131941199303, 0.04659995064139366, -0.13146091997623444, -0.26840871572494507, -0.06199070066213608, -0.18310102820396423, 0.08936427533626556, 0.08244971930980682, -0.0315939262509346, -0.02850216254591942, 0.0033223330974578857, 0.05843973159790039, -0.04848410561680794, -0.12207122147083282, -0.04394442215561867, 0.04300456866621971, 0.04346979409456253, -0.07903385907411575, -0.09200745075941086, -0.012999450787901878, -0.04017162695527077, 0.15042519569396973, 0.12256307154893875, -0.13000130653381348, 0.08230440318584442, 0.13166072964668274, -0.04969311133027077, 0.08051708340644836, -0.04376563802361488, 0.10500049591064453, -0.09421654045581818, 0.016194336116313934, 0.08068010210990906, 0.022279905155301094, 0.012918565422296524, 0.19349044561386108, 0.06561075150966644, -0.15155114233493805, -0.0110470000654459, -0.05323879048228264, -0.2173508107662201, -0.20015686750411987, -0.11917097866535187, -0.0970880463719368, 0.061337947845458984, 0.033124081790447235, 0.0233025960624218, 0.04723036661744118, 0.0902068242430687, 0.04715931415557861, 0.033438000828027725, -0.09923724085092545, -0.05174262076616287, -0.035176832228899, -0.03259224072098732, -0.019168313592672348, -0.1199730932712555, -0.002820904366672039, 0.11020130664110184, 0.1469995379447937, 0.26217615604400635, 0.11854607611894608, 0.07194849848747253, 0.0653354674577713, 0.08463162928819656, 0.09748992323875427, 0.14458125829696655, 0.10388544946908951, 0.02028966136276722, 0.023103008046746254, 0.006986839696764946, -0.12505218386650085, 0.03501826897263527, 0.026395360007882118, -0.16120216250419617, 0.054381489753723145, -0.09182800352573395, -0.059764496982097626, 0.03047691099345684, 0.08498905599117279, -0.12530992925167084, 0.07439105212688446, 0.04053482040762901, 0.12750454246997833, -0.13699685037136078, 0.04690222069621086, 0.12663626670837402, -0.018695015460252762, 0.10221119970083237, -0.007666486315429211, 0.04778347536921501, -0.026560787111520767, -0.038040172308683395, 0.025005575269460678, -0.0902206152677536, 0.04108264669775963, 0.12191891670227051, -0.14553731679916382, 0.22641168534755707, 0.00715389521792531, -0.02876465581357479, -0.13020572066307068, -0.015036355704069138, -0.05713586136698723, -0.050776124000549316, 0.16080999374389648, 0.03443162143230438, -0.3637256622314453, -0.13035087287425995, -0.06412852555513382, -0.002815757179632783, 0.14370042085647583, -0.04034297168254852, -0.12584836781024933, 0.01897156611084938, -0.020459089428186417, -0.010852380655705929, -0.20783458650112152, -0.05633620172739029, -0.17946144938468933, -0.006333189085125923, 0.014475739561021328, -0.18924182653427124, -0.018426181748509407, 0.0633823350071907, 0.13430196046829224, 0.06343314796686172, 0.08136530965566635, -0.1116020530462265, -0.0679623931646347, -0.047276437282562256, 0.0700436681509018, 0.022839609533548355, 0.0889459103345871, -0.0330905057489872, 0.02095729112625122, -0.0495578795671463, -0.2230985462665558, 0.0817476436495781, -0.07389409095048904, 0.08836089819669724, -0.09048835933208466, 0.12454593181610107, -0.012691478244960308, -0.014909044839441776, 0.03514022007584572, -0.022639188915491104, -0.020737001672387123, -0.03352591022849083, 0.1816183179616928, -0.12477925419807434, 0.05869102478027344, 0.1949467808008194, 0.02240762859582901, -0.015981748700141907, 0.12926562130451202, -0.05142179876565933, 0.10651285201311111, 0.10194095969200134, -0.03797132149338722, 0.20085476338863373, 0.042477451264858246, -0.06864667683839798, -0.24906693398952484, 0.01450374536216259, -0.1656087040901184, -0.08782544732093811, -0.09275258332490921, -0.1607770174741745, 0.11199171096086502, 0.008532204665243626, -0.07824967801570892, 0.3496971130371094, -0.0762971043586731, -0.0030021737329661846, 0.15701618790626526, -0.014371340163052082, 0.31052839756011963, -0.08545176684856415, -0.11606821417808533, -0.057208068668842316, -0.01130269467830658, 0.2563166320323944, 0.07953444868326187, 0.02925785258412361, 0.0023689258377999067, 0.03596425801515579, -0.023007003590464592, -0.04236823320388794, 0.05848931521177292, -0.024259883910417557, 0.08910799026489258, -0.09621762484312057, -0.045473162084817886, 0.14237308502197266, -0.05055690556764603, -0.007661008276045322, 0.08067328482866287, -0.01996312290430069, -0.10059072077274323, -0.008042759262025356, -0.007762469816952944, 0.09408319741487503, 0.01948951929807663, -0.10883884876966476, -0.07815785706043243, 0.003840941470116377, -0.12085883319377899, 0.009396672248840332, 0.13952971994876862, 0.0007395480643026531, 0.07898851484060287, 0.06738901138305664, -0.011016851291060448, -0.18462532758712769, 0.06008448079228401, -0.11053502559661865, -0.06280430406332016, 0.05477333813905716, -0.17865929007530212, -0.027361860498785973, 0.016447240486741066, -0.026099693030118942, 0.02891113981604576, 0.04921706020832062, -0.06926979124546051, -0.027386238798499107, 0.1434531807899475, -0.053271353244781494, -0.10493843257427216, 0.05655587464570999, 0.013676907867193222, 0.012396354228258133, 0.10541364550590515, 0.050149209797382355, 0.06149035692214966, 0.01789907179772854, -0.016071802005171776, 0.059528373181819916, -0.043779950588941574, -0.024577084928750992, 0.12075277417898178, 0.03555962070822716, -0.17948590219020844, 0.17099879682064056, 0.07911072671413422, 0.05610243231058121, 0.004460467956960201, -0.034238703548908234, -0.053029417991638184, -0.08062907308340073, 0.033623047173023224, 0.2358347326517105, -0.030334077775478363, -0.08809908479452133, 0.08607938885688782, -0.1190090924501419, 0.024367524310946465, 0.04633926972746849, 0.013215472921729088, 0.08608643710613251, 0.0688820630311966, -0.009502789005637169, 0.027539821341633797, -0.046798862516880035, -0.1573675274848938, 0.03708565607666969, -0.049276091158390045, -0.2243068963289261, -0.05595845356583595, 0.17105036973953247, -0.0923146903514862, -0.039550550282001495, -0.08154208958148956, 0.08578872680664062, -0.14073212444782257, 0.07483918964862823, -0.02012287639081478, -0.0009092003456316888, 0.03261207789182663, 0.034002408385276794, -0.024393899366259575, -0.041545890271663666, -0.12658433616161346, 0.11702266335487366, 0.04349387437105179, -0.006058283615857363, -0.06753338873386383, -0.011102154850959778, 0.059764035046100616, 0.008035236969590187, 0.08674755692481995, 0.042249854654073715, 0.006165958475321531, 0.037077538669109344, -0.22215332090854645, -0.09750565141439438, 0.08470344543457031, 0.05229949578642845, 0.028847893700003624, 0.13609205186367035, -0.02434425614774227, 0.1038116067647934, -0.05934654921293259, 0.03570672497153282, -0.14131197333335876, -0.12678936123847961, -0.024374088272452354, -0.08440884947776794, -0.06353592127561569, 0.027968835085630417, 0.03071659803390503, 0.15056650340557098, 0.014581562951207161, 0.0043310183100402355, 0.06482536345720291, 0.0680786669254303, -0.016634300351142883, -0.04863452911376953, 0.02125377394258976, -0.13231757283210754, -0.027472736313939095, 0.0035278487484902143, -0.007983874529600143, 0.026398781687021255, 0.4411390721797943, 0.06645667552947998, -0.13291916251182556, -0.06758598238229752, 0.09922759234905243, 0.07081285864114761, 0.03288304805755615, 0.256344735622406, 0.02561495453119278, -0.025971226394176483, 0.054026540368795395, 0.06150396913290024, 0.06474578380584717, -0.052595917135477066, 0.15580056607723236, 0.1498226523399353, 0.022460781037807465, 0.005362596828490496, 0.10449433326721191, -0.06639677286148071, -0.002120492747053504, 0.030117491260170937, 0.08910146355628967, 0.07887213677167892, 0.0028324334416538477, -0.0689067468047142, -0.08345834165811539, -0.03697234019637108, 0.0692938044667244, -0.027365462854504585, -0.03238074108958244, -0.036110974848270416, -0.19664719700813293, -0.007158108055591583, -0.10156972706317902, 0.043111324310302734, -0.00513459974899888, -0.09225840121507645, 0.2766982913017273, 0.028094997629523277, -0.028272278606891632, 0.03200828656554222, -0.08081726729869843, 0.10776479542255402, 0.07242518663406372, 0.020409155637025833, -0.07017740607261658, -0.09025461971759796, -0.12608219683170319, -0.01687350682914257, 0.0900486409664154, -0.018664848059415817, -0.022579623386263847, -0.004971702117472887, 0.0008900205721147358, -0.09845885634422302, -0.03953099250793457, -0.06464514136314392, 0.0356624573469162, -0.09918145090341568, -0.013761932961642742, -0.01636866293847561, 0.11603911221027374, 0.04578666016459465, 0.15814867615699768, 0.04997134208679199, -0.00021589547395706177, 0.021666599437594414, -0.22184984385967255, -0.12886521220207214, 0.09357903897762299, -0.03311397507786751, -0.060897715389728546, -0.041568823158741, 0.23437954485416412, 0.3530808091163635, 0.011479674838483334, 0.004581260494887829, 0.0353611521422863, 0.026298733428120613, -0.010320832952857018, 0.2255769520998001, -0.010841642506420612, 0.037127863615751266, 0.042968783527612686, -0.04793115705251694, 0.0657181441783905, -0.06803641468286514, -0.007789351511746645, 0.027216434478759766, 0.06751196831464767, -0.05370323359966278, -0.0930715873837471, 0.10818615555763245, -0.22889699041843414, -0.008738686330616474, 0.12623825669288635, -0.10336139798164368, -0.09090300649404526, -0.022012263536453247, 0.13654249906539917, -0.013635842129588127, 0.004605764057487249, -0.0902167484164238, -0.006655589677393436, -0.015983136370778084, -0.02016032114624977, -0.3248252272605896, -0.18269029259681702, 0.004065577872097492, -0.14736822247505188, 0.20655639469623566, -0.026050178334116936, -0.009988769888877869, 0.02609965205192566, 0.017366336658596992, -0.07206343859434128, -0.04844195023179054, 0.021731477230787277, 0.09878940135240555, 0.005953786429017782, 0.04432946816086769, -0.08171048760414124, -0.02920788899064064, 0.04918304830789566, -0.07473085820674896, -0.03163370117545128, 0.10308011621236801, 0.004117350094020367, -0.03722500801086426, -0.03972885385155678, -0.12256881594657898, 0.10718674212694168, 0.004713625181466341, -0.013158459216356277, -0.029615532606840134, 0.03097427822649479, 0.0873962938785553, 0.07104910910129547, -0.1211513802409172, -0.044728126376867294, 0.046732060611248016, -0.11779313534498215, 0.13783422112464905, 0.010190827772021294, -0.07325083017349243, 0.08800983428955078, -0.16379953920841217, 0.015438372269272804, -0.08026953041553497, 0.059115417301654816, 0.13200296461582184, 0.07598738372325897, -0.07605214416980743, 0.024297859519720078, 0.04785094037652016, -0.01727788895368576, 0.014067948795855045, -0.0315825417637825 ]
0f5b996cf292c6a190a841170cdc827a88a605e0
# Dataset Card for "image-text-examples-ar-cn-latin-notext" [More Information needed](https://github.com/huggingface/datasets/blob/main/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
ernie-ai/image-text-examples-ar-cn-latin-notext
[ "region:us" ]
2023-02-08T05:32:47+00:00
{"dataset_info": {"features": [{"name": "image", "dtype": "image"}, {"name": "label", "dtype": {"class_label": {"names": {"0": "AR_docs", "1": "CN_docs", "2": "Latin_docs", "3": "non-text"}}}}], "splits": [{"name": "train", "num_bytes": 27290843.67117117, "num_examples": 754}, {"name": "test", "num_bytes": 4701416.328828828, "num_examples": 134}], "download_size": 31849475, "dataset_size": 31992260.0}}
2023-02-08T05:33:01+00:00
[]
[]
TAGS #region-us
# Dataset Card for "image-text-examples-ar-cn-latin-notext" More Information needed
[ "# Dataset Card for \"image-text-examples-ar-cn-latin-notext\"\n\nMore Information needed" ]
[ "TAGS\n#region-us \n", "# Dataset Card for \"image-text-examples-ar-cn-latin-notext\"\n\nMore Information needed" ]
[ 6, 27 ]
[ "passage: TAGS\n#region-us \n# Dataset Card for \"image-text-examples-ar-cn-latin-notext\"\n\nMore Information needed" ]
[ -0.1271674633026123, 0.06250938028097153, -0.0026501663960516453, 0.07173251360654831, 0.1251840740442276, 0.0745096355676651, 0.1109413355588913, 0.10170800983905792, 0.06279250979423523, -0.01458752155303955, 0.08720168471336365, -0.03619790077209473, 0.021871007978916168, 0.0712202936410904, -0.024916058406233788, -0.0701882392168045, 0.010425630025565624, 0.01525667030364275, 0.0813978835940361, 0.05265575274825096, 0.02851286716759205, -0.045781828463077545, 0.08747418969869614, -0.1164715513586998, -0.21708516776561737, 0.034050166606903076, -0.04550189524888992, -0.0739189088344574, 0.05319873243570328, -0.06911477446556091, 0.09466174244880676, 0.0209016315639019, 0.0031323626171797514, -0.12271422147750854, 0.03476162627339363, -0.025860976427793503, -0.05155991390347481, 0.06238079071044922, 0.061527933925390244, -0.1520674228668213, -0.05524422600865364, -0.051602352410554886, -0.05771024897694588, 0.008580035530030727, -0.08656084537506104, -0.07870566844940186, 0.010712330229580402, -0.017708875238895416, 0.06169198825955391, 0.020511697977781296, 0.03561771661043167, 0.058694373816251755, -0.14522545039653778, 0.032190632075071335, 0.09706047922372818, 0.04849883168935776, 0.006195742636919022, 0.10716531425714493, -0.019179552793502808, 0.18443647027015686, -0.07583148777484894, 0.08754794299602509, 0.0642452985048294, -0.07509476691484451, -0.15569709241390228, -0.018648726865649223, -0.2548341453075409, 0.04819486290216446, 0.05189100280404091, -0.04243219271302223, 0.29838278889656067, 0.01888316124677658, 0.044529154896736145, 0.0005278675816953182, 0.0041598849929869175, -0.06444390118122101, -0.04521860554814339, 0.14257080852985382, 0.035535380244255066, 0.0286854337900877, 0.01632954366505146, -0.028672169893980026, -0.11773353070020676, -0.059652406722307205, -0.13517916202545166, -0.07433483004570007, -0.08039157837629318, 0.12831196188926697, -0.14787623286247253, -0.028568271547555923, -0.10288476943969727, -0.07261897623538971, 0.03016652539372444, -0.09335384517908096, 0.027048030868172646, 0.07676564902067184, -0.02189539559185505, -0.04323996230959892, 0.12356631457805634, -0.039074137806892395, 0.024865971878170967, 0.07712429761886597, -0.13605503737926483, 0.16178230941295624, 0.033923324197530746, -0.09654117375612259, 0.02900577150285244, 0.03294239193201065, -0.03745892643928528, -0.13638319075107574, -0.009553823620080948, -0.11718972027301788, -0.1728411763906479, 0.002293733647093177, -0.119036003947258, 0.05864062160253525, -0.047909241169691086, -0.07573416084051132, -0.08006825298070908, -0.020863598212599754, 0.14349468052387238, -0.0421493835747242, 0.05641778185963631, 0.01884513907134533, -0.017290888354182243, 0.07660584896802902, -0.007617207709699869, -0.01465666014701128, 0.02373112551867962, -0.00517461821436882, -0.06578867882490158, 0.09156599640846252, -0.044134434312582016, -0.00975156668573618, 0.072517991065979, -0.09672242403030396, -0.009042169898748398, -0.1311032921075821, -0.12712883949279785, 0.034482188522815704, 0.04580047354102135, -0.07672140747308731, 0.18679840862751007, -0.028102310374379158, 0.03975742310285568, 0.04313802719116211, -0.009288067929446697, 0.06788354367017746, -0.07271037250757217, 0.07856838405132294, -0.02300546132028103, 0.16166479885578156, -0.15891340374946594, -0.0006896152626723051, -0.13291120529174805, -0.03470373898744583, -0.139509916305542, 0.14057770371437073, -0.0791192278265953, 0.1022476926445961, -0.04472534731030464, 0.03170115873217583, -0.2080775797367096, 0.04118205979466438, -0.03237230330705643, 0.1629580706357956, -0.2333349734544754, -0.04759160801768303, 0.20686392486095428, -0.09741443395614624, -0.12320281565189362, 0.03780331090092659, -0.03798707202076912, 0.008441858924925327, 0.04032318666577339, 0.37006911635398865, -0.004551450721919537, -0.09930398315191269, -0.01580469124019146, 0.15447299182415009, -0.03602665662765503, -0.23862789571285248, 0.03780214861035347, -0.05452605336904526, -0.07813508808612823, 0.05241018533706665, 0.05006728693842888, 0.015499293804168701, -0.05809582769870758, -0.07912680506706238, -0.009502597153186798, -0.0944710224866867, 0.11720530688762665, 0.02931647002696991, 0.06436131149530411, -0.05420968309044838, 0.005479669198393822, -0.04461374878883362, 0.006826282944530249, -0.034928854554891586, 0.03276219591498375, 0.01617131009697914, 0.1575918197631836, -0.13235577940940857, -0.026659710332751274, -0.1516057550907135, -0.08444134145975113, -0.009302387945353985, 0.05350552871823311, 0.11632638424634933, -0.11213278025388718, 0.025904454290866852, -0.031408607959747314, -0.05392508953809738, 0.10240939259529114, 0.1149018257856369, 0.012254034169018269, 0.017036862671375275, -0.08347580581903458, 0.14459656178951263, -0.03511806204915047, 0.05352592468261719, -0.16991771757602692, -0.08298064768314362, 0.12606844305992126, 0.055477581918239594, -0.006472738925367594, -0.0014426212292164564, 0.033738065510988235, 0.033294644206762314, -0.03579941391944885, -0.03457346931099892, 0.05683935061097145, -0.049871161580085754, -0.056919876486063004, 0.14643310010433197, -0.10433312505483627, 0.07392231374979019, 0.18947841227054596, -0.16047944128513336, -0.030560428276658058, -0.0994529202580452, 0.10857132077217102, -0.010427111759781837, -0.032223690301179886, 0.019490499049425125, -0.008649858646094799, -0.06817541271448135, 0.11189302057027817, -0.09201814979314804, 0.0827597826719284, 0.08693085610866547, -0.04516555741429329, -0.09453891217708588, 0.05057404562830925, 0.16431394219398499, -0.13266129791736603, 0.139604851603508, 0.1603572815656662, 0.033289745450019836, 0.21859589219093323, 0.011727229692041874, -0.0882536768913269, 0.024280738085508347, -0.01798563078045845, -0.01866287551820278, 0.1761995553970337, -0.125875324010849, -0.023702245205640793, 0.08055651187896729, -0.04810972511768341, 0.10554398596286774, -0.12939418852329254, -0.05543321371078491, -0.029017752036452293, -0.015302113257348537, -0.09616070240736008, -0.034652840346097946, 0.004098875913769007, 0.11382131278514862, -0.07530837506055832, -0.024890467524528503, 0.1026521772146225, 0.003874770598486066, -0.08082439005374908, 0.13634587824344635, -0.18838606774806976, -0.3865942060947418, -0.05766741558909416, -0.08302859216928482, -0.0012262363452464342, 0.020787272602319717, 0.019899265840649605, -0.17898821830749512, 0.004464983008801937, -0.020995991304516792, -0.20392027497291565, -0.12275206297636032, -0.07453881204128265, 0.025788873434066772, 0.00918812770396471, -0.05313583463430405, -0.0799516960978508, 0.008121614344418049, -0.01568612828850746, 0.09884898364543915, 0.17049293220043182, -0.17767009139060974, 0.18240615725517273, 0.1556268185377121, -0.06170622259378433, 0.07026878744363785, -0.0583803653717041, -0.002298676408827305, -0.152292400598526, -0.03200433403253555, 0.03324761241674423, -0.021989013999700546, 0.03620157018303871, 0.08667095750570297, 0.0447377972304821, -0.09839026629924774, -0.03695283457636833, -0.0506698414683342, -0.18003153800964355, -0.17848989367485046, -0.1483636498451233, -0.09681594371795654, 0.02317008189857006, 0.0701771005988121, 0.07983796298503876, 0.09143852442502975, 0.0351741798222065, 0.1138121634721756, -0.06493274122476578, -0.03068886511027813, 0.04368243366479874, 0.038433175534009933, 0.04531707242131233, 0.024860968813300133, -0.11410658061504364, 0.008542120456695557, 0.1587653011083603, 0.18275731801986694, 0.2309606671333313, 0.09052321314811707, 0.11133010685443878, -0.019380763173103333, 0.038303401321172714, 0.14285904169082642, 0.02105814777314663, 0.04419223219156265, -0.002015171106904745, -0.015658682212233543, -0.0480642169713974, 0.030787697061896324, 0.0005552656948566437, 0.0974949300289154, -0.21724273264408112, 0.044038403779268265, -0.07161662727594376, 0.0730913057923317, -0.22924108803272247, 0.04029474034905434, -0.2452392280101776, 0.10298828780651093, -0.027043674141168594, 0.17191670835018158, -0.088639035820961, 0.08607963472604752, 0.13075441122055054, 0.02744806371629238, 0.1362234354019165, 0.010873278602957726, 0.08570247143507004, -0.006623405963182449, 0.023446975275874138, -0.05562945455312729, -0.13975732028484344, 0.005690545774996281, 0.0965648666024208, -0.23070549964904785, 0.21204783022403717, 0.023232826963067055, -0.09725690633058548, -0.06855861842632294, -0.08357380330562592, -0.010056039318442345, 0.04009416699409485, 0.16697949171066284, 0.03931058198213577, -0.146894633769989, -0.08819273114204407, -0.1038282960653305, -0.004090441856533289, 0.15508294105529785, 0.04768490791320801, -0.1392914354801178, 0.09277092665433884, -0.026208976283669472, -0.014481579884886742, -0.025584913790225983, -0.10829411447048187, -0.2054063230752945, 0.0449666865170002, 0.04917529970407486, -0.14919504523277283, 0.03143053129315376, -0.013546189293265343, -0.05540188029408455, 0.08453905582427979, 0.013804638758301735, -0.0019319633720442653, -0.08365694433450699, -0.05729595571756363, 0.12038089334964752, 0.010409644804894924, 0.022057780995965004, -0.023972125723958015, 0.04694518446922302, -0.11173804849386215, -0.14293673634529114, 0.13371644914150238, -0.03421222046017647, 0.10477438569068909, -0.15159204602241516, 0.05636265501379967, -0.059232085943222046, -0.0006845124298706651, 0.00880508404225111, 0.06294606626033783, -0.04231074079871178, -0.03100535087287426, 0.07070627808570862, -0.03615753725171089, 0.06679069995880127, 0.16662688553333282, -0.04288806766271591, -0.10088758170604706, 0.011330590583384037, -0.08768999576568604, 0.16840055584907532, 0.06473343074321747, -0.09166840463876724, 0.17976811528205872, 0.20363566279411316, -0.09613847732543945, -0.2639811933040619, 0.04312348738312721, -0.08313072472810745, -0.028604988008737564, 0.047791507095098495, -0.20100818574428558, 0.0719924196600914, 0.10450678318738937, -0.02436905913054943, 0.2371589094400406, -0.15198476612567902, -0.0545300617814064, 0.08466656506061554, -0.03351183980703354, 0.24651022255420685, -0.15322422981262207, -0.06913136690855026, -0.14117947220802307, -0.00039155498961918056, 0.25552892684936523, 0.006760667078197002, 0.038554880768060684, 0.03634684905409813, 0.05806201323866844, 0.00005043761120759882, -0.04857292026281357, 0.18630149960517883, 0.05202462151646614, 0.06265904009342194, -0.07182683050632477, -0.08835288882255554, 0.1745191514492035, -0.04604867473244667, -0.01582905650138855, -0.05470266938209534, 0.016008371487259865, -0.12695778906345367, 0.010170303285121918, 0.018086763098835945, -0.0007989809382706881, 0.06397534161806107, 0.024382740259170532, -0.10259580612182617, -0.03629109635949135, -0.07924801856279373, 0.021424954757094383, 0.12435014545917511, -0.0779135599732399, 0.05980712175369263, 0.08888232707977295, 0.07048871368169785, -0.029687708243727684, -0.0365486741065979, -0.09042174369096756, -0.09179143607616425, 0.11056789010763168, -0.25741046667099, 0.04774090275168419, 0.10624288767576218, 0.001117826090194285, 0.043112464249134064, 0.019934050738811493, 0.03301151469349861, 0.061010103672742844, 0.1928291916847229, 0.005300557240843773, 0.05961352586746216, 0.0026075830683112144, -0.05573705583810806, 0.10846755653619766, -0.05368132144212723, 0.06866026669740677, 0.01323594432324171, 0.010165468789637089, -0.002744882134720683, 0.06656424701213837, -0.01066917460411787, 0.02621249295771122, 0.11018544435501099, 0.0213969424366951, -0.1419474333524704, 0.20458868145942688, 0.07859467715024948, -0.13491538166999817, 0.02106291800737381, 0.05372684821486473, -0.07807239145040512, -0.10625731199979782, -0.017754238098859787, 0.24833916127681732, -0.13853414356708527, -0.0979345440864563, 0.024584446102380753, -0.01722162403166294, 0.018594887107610703, 0.0897018164396286, -0.003096943721175194, -0.009671010076999664, 0.050118669867515564, -0.04757384955883026, -0.03248294070363045, 0.012723101302981377, -0.05395103618502617, 0.05642765387892723, -0.020424945279955864, -0.19369786977767944, 0.0178925022482872, 0.10806185752153397, -0.056050073355436325, -0.05344902724027634, -0.08567630499601364, 0.05793555825948715, -0.19413785636425018, 0.17319907248020172, 0.06634154170751572, -0.012863006442785263, -0.011515186168253422, 0.05719722434878349, -0.022092150524258614, -0.05148722231388092, -0.09916909039020538, 0.07069983333349228, 0.03513263911008835, 0.06437036395072937, -0.07798279076814651, -0.015137625858187675, 0.038578521460294724, 0.06384088099002838, 0.09649161249399185, 0.09214553236961365, -0.08518419414758682, 0.06715799123048782, -0.3146275579929352, -0.12113168835639954, 0.10480945557355881, 0.07250899076461792, -0.023946303874254227, 0.17612481117248535, 0.03760606050491333, 0.09921348839998245, 0.02326047234237194, 0.028205694630742073, -0.04868888854980469, -0.0625082403421402, -0.02060021460056305, -0.21673189103603363, -0.11252578347921371, 0.002349619520828128, 0.08064228296279907, 0.13164176046848297, 0.039942361414432526, -0.062216345220804214, -0.0280228853225708, 0.04924862086772919, 0.015438450500369072, -0.04483700916171074, 0.000005635055458697025, -0.10672308504581451, -0.073308065533638, -0.039004210382699966, 0.04841110482811928, -0.08779456466436386, 0.3990703225135803, 0.08110670745372772, -0.08109395205974579, -0.052082259207963943, 0.17567229270935059, -0.14802533388137817, 0.015158426016569138, 0.3270770013332367, 0.08628307282924652, 0.021939869970083237, -0.019106008112430573, 0.06228059157729149, 0.04053201153874397, 0.1729438751935959, 0.0636695846915245, 0.1490596979856491, 0.025979619473218918, 0.015477921813726425, 0.05528087168931961, -0.08812077343463898, 0.006044767796993256, 0.13095109164714813, -0.02276810258626938, 0.0969758853316307, -0.016022173687815666, -0.12334586679935455, 0.11248798668384552, 0.00572994677349925, 0.024065973237156868, -0.03705292567610741, -0.10523365437984467, -0.05077849701046944, -0.1991754025220871, -0.046191003173589706, -0.120463527739048, 0.05190921202301979, -0.07387563586235046, 0.02290291152894497, 0.2714708745479584, 0.0679570883512497, 0.011259668506681919, 0.06486795842647552, -0.05830465257167816, -0.0652053952217102, 0.08418002724647522, -0.033881429582834244, 0.01512843370437622, -0.04105377197265625, -0.06435873359441757, 0.0799766480922699, 0.014716713689267635, -0.0026842537336051464, 0.06191777437925339, 0.13333630561828613, 0.028831176459789276, -0.12792789936065674, -0.07901611924171448, -0.04166058078408241, 0.04008528217673302, -0.06980583071708679, 0.13671214878559113, 0.023840922862291336, 0.007659530267119408, 0.03329043835401535, 0.14341400563716888, 0.004099986981600523, -0.019140273332595825, 0.030048983171582222, -0.05133816972374916, -0.13024254143238068, 0.05281868204474449, -0.07178283482789993, -0.075254425406456, -0.017434777691960335, 0.21924591064453125, 0.31083911657333374, -0.12632247805595398, -0.027485888451337814, 0.042220309376716614, 0.02819233015179634, 0.04930591210722923, 0.15948979556560516, -0.023957449942827225, 0.15122456848621368, 0.021171070635318756, -0.07072275876998901, -0.0033044267911463976, -0.03471443057060242, -0.11265652626752853, 0.05626842752099037, 0.031258903443813324, -0.07562648504972458, -0.10998672991991043, 0.1568193882703781, -0.15369363129138947, 0.0705452486872673, 0.09727279841899872, -0.18783603608608246, -0.08332716673612595, -0.0006669904687441885, 0.13805846869945526, 0.04263501986861229, -0.08924317359924316, -0.09568754583597183, -0.06364474445581436, -0.06203097850084305, 0.0019257531967014074, -0.3037329614162445, -0.08851361274719238, -0.12038605660200119, -0.14455841481685638, 0.09512336552143097, -0.010947640053927898, 0.10223829746246338, -0.0015611250419169664, 0.06236127391457558, -0.01213677879422903, 0.03907232731580734, -0.0009852644288912416, 0.12365826964378357, 0.033522021025419235, 0.04563087224960327, -0.05489898473024368, 0.008512089028954506, 0.11203256994485855, -0.01231845747679472, -0.03317888453602791, 0.1499939262866974, -0.0353601835668087, 0.0148775028064847, -0.054059531539678574, -0.10009348392486572, 0.09820091724395752, -0.009174725040793419, 0.022226456552743912, -0.03253888338804245, -0.004490048624575138, 0.0294977817684412, -0.02360391616821289, -0.0979011282324791, -0.04460601136088371, -0.016348175704479218, -0.13061517477035522, 0.12916719913482666, 0.0945795550942421, -0.14407284557819366, 0.08800765126943588, -0.07605436444282532, 0.03602641820907593, -0.038579706102609634, 0.08838686347007751, 0.1923312544822693, 0.025723818689584732, -0.04164639115333557, -0.06707517802715302, 0.12973730266094208, 0.02004549652338028, 0.021438080817461014, -0.04366939142346382 ]
ce242e5ae6e4fb294e5291506df18e437b80bf09
# Dataset Card for "bookcorpus_stage2" [More Information needed](https://github.com/huggingface/datasets/blob/main/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
MartinKu/bookcorpus_stage2
[ "region:us" ]
2023-02-08T06:19:26+00:00
{"dataset_info": {"features": [{"name": "text", "dtype": "string"}, {"name": "S_V", "sequence": "string"}, {"name": "S_V_position", "sequence": "int64"}, {"name": "O_C", "sequence": "string"}, {"name": "O_C_position", "sequence": "int64"}], "splits": [{"name": "train", "num_bytes": 12873845328, "num_examples": 74004228}], "download_size": 6676175908, "dataset_size": 12873845328}}
2023-02-09T21:25:01+00:00
[]
[]
TAGS #region-us
# Dataset Card for "bookcorpus_stage2" More Information needed
[ "# Dataset Card for \"bookcorpus_stage2\"\n\nMore Information needed" ]
[ "TAGS\n#region-us \n", "# Dataset Card for \"bookcorpus_stage2\"\n\nMore Information needed" ]
[ 6, 17 ]
[ "passage: TAGS\n#region-us \n# Dataset Card for \"bookcorpus_stage2\"\n\nMore Information needed" ]
[ -0.07960952073335648, 0.16845613718032837, -0.002883985172957182, 0.021737292408943176, 0.00484863854944706, 0.11230725049972534, 0.17329742014408112, 0.09806752949953079, 0.06247469782829285, -0.013580584898591042, 0.15269319713115692, 0.05039311945438385, 0.06320448219776154, 0.3232647180557251, -0.041340723633766174, -0.07815004140138626, 0.060265298932790756, 0.018939409404993057, -0.0029414063319563866, 0.025901416316628456, 0.010039572604000568, -0.039999548345804214, 0.06393705308437347, -0.13936488330364227, -0.17370298504829407, 0.010858272202312946, -0.05805586278438568, -0.045473434031009674, 0.08010305464267731, -0.05986731871962547, 0.16978050768375397, 0.05163704976439476, 0.04647818207740784, -0.0762949138879776, 0.020278336480259895, -0.018248729407787323, -0.08837207406759262, 0.06477297097444534, -0.03951781615614891, -0.05522749945521355, 0.03402416408061981, 0.0254813265055418, 0.030093800276517868, -0.09642294049263, -0.15767069160938263, -0.15416166186332703, -0.17197974026203156, 0.061152905225753784, 0.04363754019141197, -0.09485816955566406, 0.07644429057836533, 0.13036052882671356, -0.03137528896331787, 0.034595899283885956, 0.009175349026918411, -0.13663250207901, 0.008724534884095192, 0.233988955616951, 0.08967453986406326, 0.16182324290275574, -0.041096463799476624, 0.03517794981598854, 0.07782801985740662, -0.021026743575930595, -0.02953677996993065, -0.04808487743139267, -0.030956516042351723, 0.10115013271570206, -0.0328700877726078, -0.15885823965072632, 0.2701288163661957, -0.0677502453327179, -0.03379693999886513, 0.04731432721018791, -0.009793875738978386, 0.049308400601148605, 0.02204679138958454, 0.03292820230126381, 0.032849714159965515, 0.021625889465212822, 0.027482541278004646, -0.13250607252120972, -0.09429053962230682, -0.14590750634670258, -0.12589618563652039, 0.03860166668891907, -0.08146780729293823, 0.17720384895801544, -0.12902723252773285, 0.04256350174546242, -0.10330135375261307, 0.020113332197070122, -0.009781299158930779, -0.11849905550479889, -0.001720717060379684, -0.024206705391407013, -0.0009951856918632984, 0.1131521537899971, -0.0010227655293419957, 0.04088533669710159, 0.0682041123509407, -0.008219384588301182, -0.06091378629207611, 0.16039101779460907, 0.15010671317577362, -0.07357840985059738, 0.10181217640638351, -0.003422096837311983, -0.016000792384147644, -0.013403020799160004, 0.07361913472414017, -0.0854419395327568, -0.17156504094600677, -0.018878646194934845, -0.09257834404706955, 0.05166013911366463, -0.02748234197497368, -0.1896226704120636, -0.001445733243599534, -0.01949380524456501, 0.291513592004776, -0.054389048367738724, 0.015392704866826534, -0.028932439163327217, -0.06472441554069519, -0.05803387984633446, -0.05337004363536835, -0.023155970498919487, 0.05675970017910004, 0.020861316472291946, -0.048232562839984894, -0.05331259220838547, -0.028661513701081276, 0.017787905409932137, 0.12387562543153763, -0.17641466856002808, 0.05930354818701744, -0.03491004556417465, -0.3724581301212311, 0.02954646199941635, 0.06814888119697571, -0.05440764129161835, 0.1006857305765152, 0.04049057140946388, 0.11086944490671158, 0.016697581857442856, -0.05842034891247749, 0.1540387123823166, -0.07144142687320709, 0.07465741038322449, -0.04061455279588699, 0.14331196248531342, -0.24140214920043945, 0.009766797535121441, -0.07777074724435806, 0.02750014327466488, -0.1537121683359146, -0.024751611053943634, -0.06698836386203766, 0.012807989493012428, -0.025698935613036156, 0.03060154803097248, -0.11330438405275345, 0.06353247910737991, -0.0269886776804924, 0.07474803924560547, -0.18403781950473785, -0.08406351506710052, 0.1847129613161087, -0.157366544008255, -0.19554084539413452, -0.030401501804590225, -0.06289468705654144, 0.10141973197460175, 0.028068147599697113, 0.32144081592559814, 0.027974404394626617, -0.04381471127271652, -0.011736377142369747, 0.15586169064044952, -0.16260263323783875, -0.29610517621040344, 0.09098344296216965, -0.028592629358172417, -0.07416190207004547, -0.01938704587519169, 0.10866493731737137, -0.10450199246406555, 0.007118925917893648, -0.06007472798228264, -0.007016107439994812, -0.09884724020957947, 0.08536763489246368, 0.01914212480187416, 0.020218979567289352, -0.0208441149443388, 0.1288866549730301, 0.09486090391874313, 0.060039009898900986, 0.024694176390767097, 0.01139211468398571, 0.09529342502355576, 0.10900134593248367, -0.1015571877360344, -0.011274117045104504, -0.16567909717559814, -0.04039328172802925, 0.027013568207621574, -0.060300517827272415, 0.04732032120227814, 0.05861910805106163, 0.08536101877689362, 0.010990469716489315, -0.07474981993436813, 0.05592534691095352, 0.050838787108659744, -0.03151150420308113, -0.06165054440498352, -0.015233362093567848, 0.039271142333745956, -0.11366360634565353, -0.06773337721824646, -0.11710000783205032, -0.012769251130521297, 0.009408037178218365, 0.004532011691480875, 0.013203082606196404, -0.031918685883283615, 0.06195971742272377, -0.05270753800868988, -0.013361113145947456, -0.05314451828598976, 0.055070072412490845, -0.007618515752255917, -0.04852917417883873, -0.01551877986639738, -0.021204829216003418, 0.13073314726352692, 0.12121760100126266, 0.11650131642818451, 0.0026501547545194626, -0.15991058945655823, -0.006335252895951271, -0.010619121603667736, -0.06229063495993614, 0.08127427846193314, -0.060740843415260315, -0.054771896451711655, 0.04079313203692436, -0.11376933753490448, 0.009623390622437, 0.03883393108844757, -0.0132267065346241, -0.08668530732393265, 0.034812528640031815, 0.11219198256731033, -0.21374769508838654, 0.1109372228384018, 0.2635514736175537, 0.07185444235801697, 0.15643738210201263, -0.0044457088224589825, -0.08995665609836578, -0.02048172615468502, -0.03388430178165436, -0.036017224192619324, 0.24939973652362823, -0.06862525641918182, -0.01877698116004467, 0.07846497744321823, 0.005480458494275808, 0.08862873911857605, -0.14887189865112305, -0.067820243537426, -0.03562343120574951, -0.027825120836496353, -0.18998442590236664, -0.009235887788236141, -0.022855015471577644, 0.11191800236701965, 0.03760329261422157, -0.028031816706061363, 0.11195962876081467, -0.013344036415219307, -0.03589634224772453, 0.1176348403096199, -0.12257882952690125, -0.29050013422966003, -0.08985142409801483, -0.02236584573984146, 0.10079430788755417, 0.08982788771390915, -0.06118672713637352, -0.01726866513490677, 0.03731342777609825, -0.01501364167779684, -0.17948663234710693, -0.17010794579982758, -0.04814263805747032, -0.014854071661829948, 0.08992599695920944, -0.13258826732635498, -0.08275975286960602, 0.017824938520789146, -0.05001555010676384, 0.09117045253515244, 0.08006758242845535, -0.1378585696220398, 0.052050258964300156, 0.09504543989896774, -0.028983639553189278, 0.046421319246292114, -0.0810670480132103, 0.01206136867403984, -0.0746220126748085, -0.015073222108185291, 0.05860266089439392, -0.016439128667116165, 0.01696673221886158, 0.07380887120962143, 0.013039142824709415, -0.09334297478199005, -0.012345485389232635, -0.15732033550739288, -0.21724870800971985, -0.32447853684425354, -0.06386113166809082, -0.03481210395693779, 0.1907767653465271, 0.06292330473661423, 0.038610100746154785, -0.00018609783728607, 0.043965745717287064, 0.09156175702810287, 0.06629618257284164, -0.02348196879029274, -0.0002648377849254757, -0.16461579501628876, -0.00021728321735281497, 0.013404316268861294, -0.13986648619174957, 0.0435698963701725, 0.1723666787147522, 0.2697449028491974, 0.19497491419315338, 0.06352195888757706, 0.06619977951049805, -0.030305290594697, 0.036209579557180405, 0.12122705578804016, 0.14964887499809265, 0.09321737289428711, -0.004352342803031206, -0.056049227714538574, 0.02349856123328209, -0.07204284518957138, 0.06793040037155151, 0.14437691867351532, -0.15358364582061768, -0.032623935490846634, -0.12089329957962036, -0.0060043116100132465, -0.19937734305858612, 0.12373752892017365, -0.16512201726436615, 0.0638919472694397, 0.08867427706718445, 0.1361822485923767, -0.1259763240814209, 0.05566936358809471, 0.045555852353572845, -0.11594810336828232, 0.06161927431821823, 0.026408936828374863, 0.019741637632250786, -0.10507683455944061, -0.04656662791967392, -0.1932952105998993, -0.20109960436820984, -0.029628850519657135, 0.10465952008962631, -0.059774238616228104, 0.2852630615234375, 0.032292962074279785, -0.041621133685112, -0.05023396015167236, -0.006248146761208773, -0.008765334263443947, 0.04688870534300804, 0.13508905470371246, 0.04895820841193199, -0.2595965564250946, -0.04764093458652496, -0.07954664528369904, -0.034846965223550797, 0.09980093687772751, 0.015561727806925774, -0.11293435841798782, 0.07936377078294754, 0.0010891343699768186, -0.09494154900312424, -0.15731281042099, 0.04767024889588356, -0.1214035153388977, 0.057207074016332626, -0.07003088295459747, -0.18697139620780945, -0.007957370020449162, 0.0062614548951387405, 0.11208272725343704, 0.2028220146894455, 0.01887897215783596, -0.014772986061871052, -0.06275010854005814, -0.06531041860580444, 0.1358419805765152, 0.03198108822107315, 0.017113642767071724, 0.011393318884074688, 0.051226656883955, -0.09296070784330368, -0.1552199274301529, 0.07428403943777084, -0.051164574921131134, 0.04308479279279709, -0.138804093003273, 0.13358019292354584, -0.08381152898073196, 0.04976137354969978, 0.0016151549061760306, 0.007934357039630413, -0.07882443070411682, 0.011660938151180744, 0.24566395580768585, -0.0677216425538063, 0.1825498342514038, 0.20682857930660248, 0.042580410838127136, 0.0800292044878006, 0.15871889889240265, -0.06571170687675476, 0.14364677667617798, 0.17165668308734894, -0.03368285670876503, 0.25989359617233276, 0.23142778873443604, -0.10759512335062027, -0.255937397480011, 0.0191442109644413, -0.13603074848651886, -0.029440805315971375, -0.04353449121117592, -0.18400226533412933, 0.029686903581023216, 0.16195449233055115, -0.06596607714891434, 0.23554649949073792, -0.10275579243898392, -0.04087720438838005, 0.10616326332092285, -0.015708275139331818, 0.3129907548427582, -0.134720116853714, -0.06509280949831009, -0.153067484498024, -0.0778932124376297, 0.11730370670557022, -0.16411340236663818, 0.03542780131101608, -0.008813094347715378, 0.08847689628601074, -0.07850127667188644, -0.036264557391405106, 0.1663006842136383, 0.041334062814712524, 0.06090177595615387, -0.049315907061100006, -0.1263040155172348, 0.11286259442567825, -0.12008536607027054, 0.01401581335812807, 0.0737699493765831, 0.052826061844825745, -0.212258979678154, -0.005582040175795555, 0.037697792053222656, 0.023606693372130394, 0.04061182960867882, -0.058847781270742416, -0.13831014931201935, 0.01785999909043312, -0.13587763905525208, -0.01023764070123434, 0.15946155786514282, 0.0659416913986206, 0.03530803695321083, 0.14308816194534302, 0.033646196126937866, -0.02062726393342018, 0.03101750649511814, -0.0566350519657135, -0.11552819609642029, 0.03517969325184822, -0.2802356481552124, -0.01665089838206768, 0.10126475989818573, 0.024005094543099403, 0.06970953941345215, 0.05852241441607475, 0.018064821138978004, 0.03532189875841141, 0.11594950407743454, -0.12261279672384262, 0.03803876414895058, 0.09240695089101791, 0.0024207625538110733, -0.034989286214113235, 0.08681079000234604, 0.034682732075452805, 0.04903482645750046, -0.03514479100704193, -0.03451354429125786, 0.06472568958997726, -0.06030643731355667, 0.07324876636266708, 0.10330483317375183, 0.03558178246021271, -0.13816985487937927, 0.2641492187976837, 0.06860557943582535, -0.0669497475028038, 0.000707510975189507, -0.04698376730084419, -0.07291774451732635, -0.06864557415246964, 0.024162068963050842, 0.148206427693367, -0.05368896946310997, -0.07180046290159225, 0.04812127724289894, -0.02324426919221878, 0.048509325832128525, 0.21760213375091553, 0.06019408628344536, 0.07195045053958893, 0.0332711860537529, -0.000755826651584357, -0.0030219268519431353, -0.04132593423128128, -0.10257768630981445, 0.05533161386847496, 0.016464386135339737, -0.10741160809993744, -0.0642949715256691, 0.12262130528688431, -0.0650133490562439, -0.0602773018181324, -0.1375456154346466, 0.057833243161439896, -0.1482427418231964, 0.07490052282810211, -0.002562899375334382, -0.027051368728280067, -0.018115835264325142, 0.048132434487342834, -0.006659294944256544, -0.062494877725839615, -0.1349654346704483, 0.1328752189874649, -0.0015670425491407514, 0.05937645211815834, -0.1011577695608139, -0.012378080748021603, 0.08153578639030457, 0.016038503497838974, 0.09389317780733109, 0.14371702075004578, 0.09326272457838058, 0.09498373419046402, -0.04114218428730965, -0.08906827121973038, 0.01613873988389969, 0.04294271767139435, 0.03192071616649628, 0.017129410058259964, -0.028445782139897346, 0.046384673565626144, -0.0720987394452095, 0.09731430560350418, -0.06938140839338303, -0.0034206111449748278, 0.06019870564341545, -0.12600739300251007, -0.13682104647159576, 0.040513064712285995, 0.0034279541578143835, 0.170860156416893, 0.06704827398061752, -0.039065662771463394, 0.06820957362651825, -0.028937984257936478, -0.030406177043914795, -0.006342118605971336, -0.0004550394369289279, -0.13377225399017334, -0.06131521984934807, -0.0029517803341150284, 0.00020234010298736393, 0.008325914852321148, 0.4598226845264435, -0.02664504013955593, -0.032745130360126495, -0.0535210520029068, 0.013836221769452095, 0.025494780391454697, 0.028877273201942444, 0.2482648491859436, 0.11487893760204315, -0.06314844638109207, 0.0164581760764122, 0.0868801698088646, 0.03888540714979172, 0.15630045533180237, 0.15767115354537964, 0.06892929971218109, 0.06456776708364487, 0.09722094982862473, 0.017700495198369026, -0.03969476744532585, 0.0027916263788938522, -0.10182034224271774, 0.06432247906923294, 0.0072639756835997105, 0.04925258085131645, 0.03783879429101944, 0.041033726185560226, -0.11942637711763382, 0.00040671450551599264, -0.05101948603987694, -0.12398979067802429, -0.08346137404441833, -0.03763725236058235, -0.04193444922566414, -0.023295601829886436, 0.029942451044917107, -0.0711379125714302, 0.0007505251560360193, 0.13714970648288727, 0.04563799127936363, 0.014139576815068722, -0.07443500310182571, -0.0626562312245369, 0.07559342682361603, 0.044524580240249634, 0.0043091000989079475, -0.0273184422403574, -0.01526909600943327, -0.1092262789607048, 0.006038726307451725, -0.09637751430273056, -0.0027672809083014727, -0.011426860466599464, 0.0651625543832779, 0.01113768108189106, -0.05754401162266731, -0.044153451919555664, -0.06270089745521545, 0.0671694204211235, -0.061735108494758606, 0.07209712266921997, 0.0528598390519619, 0.03124736249446869, 0.06235069781541824, 0.12130915373563766, -0.024284018203616142, 0.0625939890742302, -0.0242291372269392, 0.03194504603743553, -0.07457583397626877, 0.05026403069496155, -0.015221220441162586, -0.05349677428603172, -0.059564009308815, 0.18322286009788513, 0.2531984746456146, -0.07155586034059525, -0.04188134893774986, 0.09232691675424576, 0.03017745167016983, 0.06402038782835007, 0.1586291640996933, 0.019432159140706062, 0.10020992159843445, -0.04793495312333107, -0.14916813373565674, 0.019718240946531296, -0.04337527975440025, -0.0007504953537136316, 0.07383786141872406, 0.028521334752440453, -0.07022975385189056, -0.08237367123365402, 0.10438518971204758, -0.14839518070220947, -0.03933810815215111, 0.028691597282886505, -0.1696559637784958, -0.11007260531187057, 0.015516712330281734, 0.07783788442611694, -0.04234793037176132, 0.011261926963925362, -0.07625269144773483, -0.03295208141207695, -0.06844842433929443, -0.03154401853680611, -0.33585014939308167, -0.16611512005329132, 0.02208423614501953, -0.004392655100673437, 0.1627991944551468, -0.04746226593852043, 0.11726193875074387, 0.001098747830837965, 0.04397113621234894, -0.059592995792627335, 0.013214323669672012, 0.01997561752796173, 0.041725024580955505, -0.045038290321826935, 0.11394191533327103, -0.09554065018892288, -0.07348617911338806, 0.11597204208374023, 0.06494559347629547, -0.05331882834434509, 0.10407542437314987, -0.012620891444385052, -0.016377009451389313, -0.028702907264232635, -0.1048378124833107, 0.09696128964424133, 0.036307383328676224, 0.02250567637383938, 0.025995297357439995, 0.019772443920373917, 0.0484362356364727, 0.055850330740213394, -0.0355302058160305, -0.03484883904457092, 0.03198825567960739, -0.07746575772762299, 0.010007214732468128, 0.009454990737140179, -0.19878949224948883, 0.030065808445215225, -0.1323593407869339, 0.025317978113889694, -0.06957424432039261, 0.0999501422047615, 0.036223795264959335, 0.023555243387818336, -0.04595395550131798, 0.11254268139600754, 0.01892230659723282, 0.012440080754458904, -0.038528792560100555, -0.1235467791557312 ]
d82778b3321049a51c306fdafcd3267d2f0370cc
# 《从零开始学扩散模型》 ## 术语表 | 词汇 | 翻译 | | :---------------------- | :--- | | Corruption Process | 退化过程 | | Pipeline | 管线 | | Timestep | 时间步 | | Scheduler | 调度器 | | Gradient Accumulation | 梯度累加 | | Fine-Tuning | 微调 | | Guidance | 引导 | # 目录 ## 第一部分 基础知识 ### 第一章 扩散模型的原理、发展和应用 #### 1.1 扩散模型的原理 #### 1.2 扩散模型的发展 #### 1.3 扩散模型的应用 ### 第二章 HuggingFace介绍与环境准备 #### 2.1 HuggingFace Space #### 2.2 Transformer 与 diffusers 库 #### 2.3 环境准备 ## 第二部分 扩散模型实战 ### 第三章 从零开始做扩散模型 #### 3.1 章节概述 #### 3.2 环境准备 #### 3.2.1 环境的创建与导入 #### 3.2.2 数据集测试 #### 3.3 扩散模型-退化过程 #### 3.4 扩散模型训练 #### 3.4.1 Unet模型 #### 3.4.2 开始训练模型 #### 3.5 扩散模型-采样(取样)过程 #### 3.5.1 采样(取样)过程 #### 3.5.2 与DDPM的区别 #### 3.5.3 UNet2DModel模型 #### 3.6 扩散模型-退化过程示例 #### 3.6.1 退化过程 #### 3.6.2 最终的训练目标 #### 3.7 拓展知识 #### 3.7.1 迭代周期(Timestep)的调节 #### 3.7.2 采样(取样)的关键问题 #### 3.8 本章小结 ### 第四章 Diffusers实战 #### 4.1 章节概述 #### 4.2 环境准备 #### 4.2.1 安装Diffusers库 #### 4.2.2 Dreambooth-全新的扩散模型 #### 4.2.3 Diffusers核心API #### 4.3 实战:生成美丽的蝴蝶图片 #### 4.3.1 下载蝴蝶图像集 #### 4.3.2 扩散模型-调度器 #### 4.3.3 定义扩散模型 #### 4.3.4 创建扩散模型训练循环 #### 4.3.5 图像的生成 #### 4.4 拓展知识 #### 4.4.1 将模型上传到Hub上 #### 4.4.2 扩大训练模型的规模 #### 4.5 本章小结 ### 第五章 微调和引导 #### 5.1 章节概述 #### 5.2 环境准备 #### 5.3 载入一个预训练过的管线 #### 5.4 DDIM-更快的采样过程 #### 5.5 扩散模型-微调 #### 5.5.1 实战:微调 #### 5.5.2 使用最小化样例脚本微调模型 #### 5.5.3 保存和载入微调过的管线 #### 5.6 扩散模型-引导 #### 5.6.1 实战:引导 #### 5.6.2 CLIP 引导 #### 5.7 分享你的自定义采样训练 #### 5.7.1 环境准备 #### 5.7.2 创建一个以类别为条件的UNet #### 5.7.3 训练与采样 #### 5.8 本章小结 #### 5.9 实战:创建一个类别条件扩散模型 ### 第六章 Stable Diffusion #### 6.1 章节概述 #### 6.2 环境准备 #### 6.3 从文本生成图像 #### 6.4 Stable Diffusion Pipeline #### 6.4.1 可变分自编码器(VAE) #### 6.4.2 分词器(Tokenizer)和文本编码器(Text Encoder) #### 6.4.3 UNet #### 6.4.4 调度器(Scheduler) #### 6.4.5 DIY一个采样循环 #### 6.5 其他管线介绍 #### 6.5.1 Img2Img #### 6.5.2 In-Painting #### 6.5.3 Depth2Image #### 6.5.4 拓展:管理你的模型缓存 #### 6.6 本章小结 ### 第七章 DDIM反转与ControlNet #### 7.1 本章概述 #### 7.2 实战:反转 #### 7.2.1 设置 #### 7.2.2 加载一个已训练的管道 #### 7.2.3 DDIM采样 #### 7.2.4 反转 #### 7.3 组合封装 #### 7.4 DDIM小结 #### 7.5 ControlNet的结构与训练过程 #### 7.6 ControlNet示例 #### 7.7 ControlNet实战 ### 第八章 音频扩散模型 #### 8.1 本章概述 #### 8.2 实战:音频扩散模型 #### 8.2.1 设置与导入 #### 8.2.2 从预先训练的音频管道采样 #### 8.2.3 从音频到频谱的转换 #### 8.2.4 微调管道 #### 8.2.5 循环训练 #### 8.3 将模型上传到Hub上 #### 8.4 本章小结 ## 附录 精美图像集展示
HuggingFace-CN-community/Diffusion-book-cn
[ "region:us" ]
2023-02-08T06:41:10+00:00
{}
2023-04-19T14:35:45+00:00
[]
[]
TAGS #region-us
《从零开始学扩散模型》 =========== 术语表 --- 目录 == 第一部分 基础知识 --------- ### 第一章 扩散模型的原理、发展和应用 #### 1.1 扩散模型的原理 #### 1.2 扩散模型的发展 #### 1.3 扩散模型的应用 ### 第二章 HuggingFace介绍与环境准备 #### 2.1 HuggingFace Space #### 2.2 Transformer 与 diffusers 库 #### 2.3 环境准备 第二部分 扩散模型实战 ----------- ### 第三章 从零开始做扩散模型 #### 3.1 章节概述 #### 3.2 环境准备 #### 3.2.1 环境的创建与导入 #### 3.2.2 数据集测试 #### 3.3 扩散模型-退化过程 #### 3.4 扩散模型训练 #### 3.4.1 Unet模型 #### 3.4.2 开始训练模型 #### 3.5 扩散模型-采样(取样)过程 #### 3.5.1 采样(取样)过程 #### 3.5.2 与DDPM的区别 #### 3.5.3 UNet2DModel模型 #### 3.6 扩散模型-退化过程示例 #### 3.6.1 退化过程 #### 3.6.2 最终的训练目标 #### 3.7 拓展知识 #### 3.7.1 迭代周期(Timestep)的调节 #### 3.7.2 采样(取样)的关键问题 #### 3.8 本章小结 ### 第四章 Diffusers实战 #### 4.1 章节概述 #### 4.2 环境准备 #### 4.2.1 安装Diffusers库 #### 4.2.2 Dreambooth-全新的扩散模型 #### 4.2.3 Diffusers核心API #### 4.3 实战:生成美丽的蝴蝶图片 #### 4.3.1 下载蝴蝶图像集 #### 4.3.2 扩散模型-调度器 #### 4.3.3 定义扩散模型 #### 4.3.4 创建扩散模型训练循环 #### 4.3.5 图像的生成 #### 4.4 拓展知识 #### 4.4.1 将模型上传到Hub上 #### 4.4.2 扩大训练模型的规模 #### 4.5 本章小结 ### 第五章 微调和引导 #### 5.1 章节概述 #### 5.2 环境准备 #### 5.3 载入一个预训练过的管线 #### 5.4 DDIM-更快的采样过程 #### 5.5 扩散模型-微调 #### 5.5.1 实战:微调 #### 5.5.2 使用最小化样例脚本微调模型 #### 5.5.3 保存和载入微调过的管线 #### 5.6 扩散模型-引导 #### 5.6.1 实战:引导 #### 5.6.2 CLIP 引导 #### 5.7 分享你的自定义采样训练 #### 5.7.1 环境准备 #### 5.7.2 创建一个以类别为条件的UNet #### 5.7.3 训练与采样 #### 5.8 本章小结 #### 5.9 实战:创建一个类别条件扩散模型 ### 第六章 Stable Diffusion #### 6.1 章节概述 #### 6.2 环境准备 #### 6.3 从文本生成图像 #### 6.4 Stable Diffusion Pipeline #### 6.4.1 可变分自编码器(VAE) #### 6.4.2 分词器(Tokenizer)和文本编码器(Text Encoder) #### 6.4.3 UNet #### 6.4.4 调度器(Scheduler) #### 6.4.5 DIY一个采样循环 #### 6.5 其他管线介绍 #### 6.5.1 Img2Img #### 6.5.2 In-Painting #### 6.5.3 Depth2Image #### 6.5.4 拓展:管理你的模型缓存 #### 6.6 本章小结 ### 第七章 DDIM反转与ControlNet #### 7.1 本章概述 #### 7.2 实战:反转 #### 7.2.1 设置 #### 7.2.2 加载一个已训练的管道 #### 7.2.3 DDIM采样 #### 7.2.4 反转 #### 7.3 组合封装 #### 7.4 DDIM小结 #### 7.5 ControlNet的结构与训练过程 #### 7.6 ControlNet示例 #### 7.7 ControlNet实战 ### 第八章 音频扩散模型 #### 8.1 本章概述 #### 8.2 实战:音频扩散模型 #### 8.2.1 设置与导入 #### 8.2.2 从预先训练的音频管道采样 #### 8.2.3 从音频到频谱的转换 #### 8.2.4 微调管道 #### 8.2.5 循环训练 #### 8.3 将模型上传到Hub上 #### 8.4 本章小结 附录 精美图像集展示 ----------
[ "### 第一章 扩散模型的原理、发展和应用", "#### 1.1 扩散模型的原理", "#### 1.2 扩散模型的发展", "#### 1.3 扩散模型的应用", "### 第二章 HuggingFace介绍与环境准备", "#### 2.1 HuggingFace Space", "#### 2.2 Transformer 与 diffusers 库", "#### 2.3 环境准备\n\n\n第二部分 扩散模型实战\n-----------", "### 第三章 从零开始做扩散模型", "#### 3.1 章节概述", "#### 3.2 环境准备", "#### 3.2.1 环境的创建与导入", "#### 3.2.2 数据集测试", "#### 3.3 扩散模型-退化过程", "#### 3.4 扩散模型训练", "#### 3.4.1 Unet模型", "#### 3.4.2 开始训练模型", "#### 3.5 扩散模型-采样(取样)过程", "#### 3.5.1 采样(取样)过程", "#### 3.5.2 与DDPM的区别", "#### 3.5.3 UNet2DModel模型", "#### 3.6 扩散模型-退化过程示例", "#### 3.6.1 退化过程", "#### 3.6.2 最终的训练目标", "#### 3.7 拓展知识", "#### 3.7.1 迭代周期(Timestep)的调节", "#### 3.7.2 采样(取样)的关键问题", "#### 3.8 本章小结", "### 第四章 Diffusers实战", "#### 4.1 章节概述", "#### 4.2 环境准备", "#### 4.2.1 安装Diffusers库", "#### 4.2.2 Dreambooth-全新的扩散模型", "#### 4.2.3 Diffusers核心API", "#### 4.3 实战:生成美丽的蝴蝶图片", "#### 4.3.1 下载蝴蝶图像集", "#### 4.3.2 扩散模型-调度器", "#### 4.3.3 定义扩散模型", "#### 4.3.4 创建扩散模型训练循环", "#### 4.3.5 图像的生成", "#### 4.4 拓展知识", "#### 4.4.1 将模型上传到Hub上", "#### 4.4.2 扩大训练模型的规模", "#### 4.5 本章小结", "### 第五章 微调和引导", "#### 5.1 章节概述", "#### 5.2 环境准备", "#### 5.3 载入一个预训练过的管线", "#### 5.4 DDIM-更快的采样过程", "#### 5.5 扩散模型-微调", "#### 5.5.1 实战:微调", "#### 5.5.2 使用最小化样例脚本微调模型", "#### 5.5.3 保存和载入微调过的管线", "#### 5.6 扩散模型-引导", "#### 5.6.1 实战:引导", "#### 5.6.2 CLIP 引导", "#### 5.7 分享你的自定义采样训练", "#### 5.7.1 环境准备", "#### 5.7.2 创建一个以类别为条件的UNet", "#### 5.7.3 训练与采样", "#### 5.8 本章小结", "#### 5.9 实战:创建一个类别条件扩散模型", "### 第六章 Stable Diffusion", "#### 6.1 章节概述", "#### 6.2 环境准备", "#### 6.3 从文本生成图像", "#### 6.4 Stable Diffusion Pipeline", "#### 6.4.1 可变分自编码器(VAE)", "#### 6.4.2 分词器(Tokenizer)和文本编码器(Text Encoder)", "#### 6.4.3 UNet", "#### 6.4.4 调度器(Scheduler)", "#### 6.4.5 DIY一个采样循环", "#### 6.5 其他管线介绍", "#### 6.5.1 Img2Img", "#### 6.5.2 In-Painting", "#### 6.5.3 Depth2Image", "#### 6.5.4 拓展:管理你的模型缓存", "#### 6.6 本章小结", "### 第七章 DDIM反转与ControlNet", "#### 7.1 本章概述", "#### 7.2 实战:反转", "#### 7.2.1 设置", "#### 7.2.2 加载一个已训练的管道", "#### 7.2.3 DDIM采样", "#### 7.2.4 反转", "#### 7.3 组合封装", "#### 7.4 DDIM小结", "#### 7.5 ControlNet的结构与训练过程", "#### 7.6 ControlNet示例", "#### 7.7 ControlNet实战", "### 第八章 音频扩散模型", "#### 8.1 本章概述", "#### 8.2 实战:音频扩散模型", "#### 8.2.1 设置与导入", "#### 8.2.2 从预先训练的音频管道采样", "#### 8.2.3 从音频到频谱的转换", "#### 8.2.4 微调管道", "#### 8.2.5 循环训练", "#### 8.3 将模型上传到Hub上", "#### 8.4 本章小结\n\n\n附录 精美图像集展示\n----------" ]
[ "TAGS\n#region-us \n", "### 第一章 扩散模型的原理、发展和应用", "#### 1.1 扩散模型的原理", "#### 1.2 扩散模型的发展", "#### 1.3 扩散模型的应用", "### 第二章 HuggingFace介绍与环境准备", "#### 2.1 HuggingFace Space", "#### 2.2 Transformer 与 diffusers 库", "#### 2.3 环境准备\n\n\n第二部分 扩散模型实战\n-----------", "### 第三章 从零开始做扩散模型", "#### 3.1 章节概述", "#### 3.2 环境准备", "#### 3.2.1 环境的创建与导入", "#### 3.2.2 数据集测试", "#### 3.3 扩散模型-退化过程", "#### 3.4 扩散模型训练", "#### 3.4.1 Unet模型", "#### 3.4.2 开始训练模型", "#### 3.5 扩散模型-采样(取样)过程", "#### 3.5.1 采样(取样)过程", "#### 3.5.2 与DDPM的区别", "#### 3.5.3 UNet2DModel模型", "#### 3.6 扩散模型-退化过程示例", "#### 3.6.1 退化过程", "#### 3.6.2 最终的训练目标", "#### 3.7 拓展知识", "#### 3.7.1 迭代周期(Timestep)的调节", "#### 3.7.2 采样(取样)的关键问题", "#### 3.8 本章小结", "### 第四章 Diffusers实战", "#### 4.1 章节概述", "#### 4.2 环境准备", "#### 4.2.1 安装Diffusers库", "#### 4.2.2 Dreambooth-全新的扩散模型", "#### 4.2.3 Diffusers核心API", "#### 4.3 实战:生成美丽的蝴蝶图片", "#### 4.3.1 下载蝴蝶图像集", "#### 4.3.2 扩散模型-调度器", "#### 4.3.3 定义扩散模型", "#### 4.3.4 创建扩散模型训练循环", "#### 4.3.5 图像的生成", "#### 4.4 拓展知识", "#### 4.4.1 将模型上传到Hub上", "#### 4.4.2 扩大训练模型的规模", "#### 4.5 本章小结", "### 第五章 微调和引导", "#### 5.1 章节概述", "#### 5.2 环境准备", "#### 5.3 载入一个预训练过的管线", "#### 5.4 DDIM-更快的采样过程", "#### 5.5 扩散模型-微调", "#### 5.5.1 实战:微调", "#### 5.5.2 使用最小化样例脚本微调模型", "#### 5.5.3 保存和载入微调过的管线", "#### 5.6 扩散模型-引导", "#### 5.6.1 实战:引导", "#### 5.6.2 CLIP 引导", "#### 5.7 分享你的自定义采样训练", "#### 5.7.1 环境准备", "#### 5.7.2 创建一个以类别为条件的UNet", "#### 5.7.3 训练与采样", "#### 5.8 本章小结", "#### 5.9 实战:创建一个类别条件扩散模型", "### 第六章 Stable Diffusion", "#### 6.1 章节概述", "#### 6.2 环境准备", "#### 6.3 从文本生成图像", "#### 6.4 Stable Diffusion Pipeline", "#### 6.4.1 可变分自编码器(VAE)", "#### 6.4.2 分词器(Tokenizer)和文本编码器(Text Encoder)", "#### 6.4.3 UNet", "#### 6.4.4 调度器(Scheduler)", "#### 6.4.5 DIY一个采样循环", "#### 6.5 其他管线介绍", "#### 6.5.1 Img2Img", "#### 6.5.2 In-Painting", "#### 6.5.3 Depth2Image", "#### 6.5.4 拓展:管理你的模型缓存", "#### 6.6 本章小结", "### 第七章 DDIM反转与ControlNet", "#### 7.1 本章概述", "#### 7.2 实战:反转", "#### 7.2.1 设置", "#### 7.2.2 加载一个已训练的管道", "#### 7.2.3 DDIM采样", "#### 7.2.4 反转", "#### 7.3 组合封装", "#### 7.4 DDIM小结", "#### 7.5 ControlNet的结构与训练过程", "#### 7.6 ControlNet示例", "#### 7.7 ControlNet实战", "### 第八章 音频扩散模型", "#### 8.1 本章概述", "#### 8.2 实战:音频扩散模型", "#### 8.2.1 设置与导入", "#### 8.2.2 从预先训练的音频管道采样", "#### 8.2.3 从音频到频谱的转换", "#### 8.2.4 微调管道", "#### 8.2.5 循环训练", "#### 8.3 将模型上传到Hub上", "#### 8.4 本章小结\n\n\n附录 精美图像集展示\n----------" ]
[ 6, 15, 9, 8, 8, 12, 8, 11, 16, 11, 8, 6, 11, 8, 11, 8, 7, 8, 15, 12, 10, 11, 14, 8, 9, 7, 14, 13, 8, 10, 8, 6, 11, 12, 9, 11, 9, 12, 9, 11, 8, 6, 11, 10, 7, 10, 8, 6, 12, 12, 10, 10, 16, 15, 10, 9, 8, 12, 7, 15, 9, 8, 16, 10, 8, 6, 7, 11, 16, 24, 6, 13, 9, 8, 9, 9, 10, 13, 8, 12, 7, 9, 6, 12, 8, 7, 8, 8, 10, 8, 8, 11, 7, 13, 9, 14, 12, 8, 7, 11, 18 ]
[ "passage: TAGS\n#region-us \n### 第一章 扩散模型的原理、发展和应用#### 1.1 扩散模型的原理#### 1.2 扩散模型的发展#### 1.3 扩散模型的应用### 第二章 HuggingFace介绍与环境准备#### 2.1 HuggingFace Space#### 2.2 Transformer 与 diffusers 库#### 2.3 环境准备\n\n\n第二部分 扩散模型实战\n-----------### 第三章 从零开始做扩散模型#### 3.1 章节概述#### 3.2 环境准备#### 3.2.1 环境的创建与导入#### 3.2.2 数据集测试#### 3.3 扩散模型-退化过程#### 3.4 扩散模型训练#### 3.4.1 Unet模型#### 3.4.2 开始训练模型#### 3.5 扩散模型-采样(取样)过程#### 3.5.1 采样(取样)过程#### 3.5.2 与DDPM的区别#### 3.5.3 UNet2DModel模型#### 3.6 扩散模型-退化过程示例#### 3.6.1 退化过程#### 3.6.2 最终的训练目标#### 3.7 拓展知识#### 3.7.1 迭代周期(Timestep)的调节#### 3.7.2 采样(取样)的关键问题#### 3.8 本章小结### 第四章 Diffusers实战#### 4.1 章节概述#### 4.2 环境准备#### 4.2.1 安装Diffusers库#### 4.2.2 Dreambooth-全新的扩散模型#### 4.2.3 Diffusers核心API#### 4.3 实战:生成美丽的蝴蝶图片#### 4.3.1 下载蝴蝶图像集#### 4.3.2 扩散模型-调度器#### 4.3.3 定义扩散模型#### 4.3.4 创建扩散模型训练循环#### 4.3.5 图像的生成#### 4.4 拓展知识#### 4.4.1 将模型上传到Hub上#### 4.4.2 扩大训练模型的规模#### 4.5 本章小结### 第五章 微调和引导#### 5.1 章节概述#### 5.2 环境准备#### 5.3 载入一个预训练过的管线#### 5.4 DDIM-更快的采样过程#### 5.5 扩散模型-微调" ]
[ -0.012615413405001163, 0.1295941174030304, -0.015436450019478798, 0.04403351619839668, 0.04839606210589409, 0.05146004632115364, 0.04021305963397026, 0.07760746777057648, -0.06851448118686676, 0.11775094270706177, 0.10684432834386826, 0.06909826397895813, 0.09115830808877945, 0.10476262867450714, 0.021633822470903397, -0.22381533682346344, 0.021466566249728203, -0.04872339591383934, -0.11244183033704758, 0.0770527645945549, 0.080454520881176, -0.04625692591071129, 0.07146600633859634, -0.04246017709374428, -0.008649812079966068, -0.025568131357431412, -0.07163848727941513, 0.02277454547584057, 0.013985597528517246, -0.007183167152106762, 0.020039016380906105, 0.07151050120592117, 0.09098709374666214, -0.1892167329788208, 0.001979927299544215, -0.00024945836048573256, -0.03412659093737602, 0.04089299589395523, 0.048360977321863174, -0.02572586014866829, 0.07193315774202347, -0.10025209933519363, 0.05096935108304024, 0.04143454134464264, -0.13906069099903107, -0.10365274548530579, -0.05765218287706375, 0.08214864879846573, 0.14583633840084076, 0.023978641256690025, -0.023522228002548218, 0.013206608593463898, -0.06756700575351715, 0.04901941865682602, 0.18993322551250458, -0.21939322352409363, -0.07988718897104263, 0.03657161816954613, 0.16484370827674866, 0.023355528712272644, -0.07843615114688873, 0.03895280510187149, 0.042281340807676315, 0.050035323947668076, 0.023189639672636986, -0.020976325497031212, 0.2586991488933563, -0.032490868121385574, -0.13537122309207916, -0.03571593388915062, 0.12831197679042816, 0.06222129985690117, -0.032685536891222, -0.06964927911758423, -0.012150093913078308, -0.13100537657737732, -0.04466984421014786, -0.06838026642799377, 0.06248042732477188, 0.01478192675858736, 0.0432022362947464, 0.03097623772919178, -0.04834870249032974, -0.014359140768647194, 0.07302126288414001, 0.10080256313085556, 0.018295899033546448, -0.002530918689444661, 0.01800568215548992, 0.03854246437549591, 0.04026855528354645, -0.14255209267139435, -0.012637625448405743, -0.01665125973522663, -0.05406957119703293, 0.0012004905147477984, 0.013090671971440315, 0.07368630915880203, 0.0912979394197464, 0.1884131133556366, -0.06303653120994568, 0.08555695414543152, 0.03682847321033478, 0.033518530428409576, 0.034800317138433456, -0.0034782509319484234, -0.05836348608136177, -0.1072116568684578, -0.09272316098213196, 0.11121196299791336, -0.0041432916186749935, -0.01596999540925026, -0.033613961189985275, 0.050383612513542175, 0.06684039533138275, 0.09179698675870895, 0.04168609529733658, 0.03366393968462944, -0.049900222569704056, -0.01884554512798786, 0.13485988974571228, -0.05536848306655884, 0.004012960474938154, 0.03516071289777756, 0.014209447428584099, -0.027633020654320717, -0.01624797098338604, 0.009446757845580578, 0.026502463966608047, 0.035428646951913834, -0.06118316575884819, -0.04204844683408737, 0.009327983483672142, -0.021115673705935478, 0.007450902834534645, -0.00917145237326622, 0.017683010548353195, -0.054413482546806335, 0.001850147033110261, -0.060744889080524445, 0.045294251292943954, -0.10780360549688339, -0.06667671352624893, -0.013086224906146526, -0.09947025775909424, 0.01553028728812933, 0.01784147508442402, 0.10925636440515518, -0.045503780245780945, 0.025152895599603653, 0.03181915730237961, 0.10541226714849472, 0.035384152084589005, 0.023930322378873825, 0.0012782447738572955, 0.11246548593044281, -0.08046489208936691, 0.026724256575107574, -0.08743782341480255, 0.014899521134793758, -0.11549445986747742, -0.09687863290309906, 0.013974575325846672, -0.01823403872549534, 0.05754122510552406, 0.14273551106452942, -0.1527690440416336, -0.003428362775593996, 0.05069242790341377, -0.035364218056201935, -0.07661125063896179, 0.021065695211291313, 0.04512939602136612, 0.041972991079092026, -0.08224210888147354, 0.08941848576068878, 0.04422692209482193, -0.09675730764865875, -0.014592024497687817, -0.03285587206482887, -0.06177326291799545, 0.18876010179519653, 0.11392306536436081, -0.006773400120437145, 0.06920669227838516, 0.03302770480513573, -0.08521440625190735, -0.025597495958209038, -0.058101531118154526, -0.059722062200307846, 0.0492447204887867, -0.058803755789995193, 0.07593601942062378, -0.014787393622100353, -0.03291415050625801, -0.03346602991223335, -0.05840729549527168, -0.02970762550830841, 0.08164212107658386, 0.032968126237392426, 0.028870051726698875, -0.07435057312250137, 0.02955147996544838, 0.006587011273950338, 0.004094822332262993, -0.09952586144208908, -0.04022597521543503, 0.03754865378141403, 0.06427855044603348, 0.008135437034070492, 0.024332428351044655, 0.07664301246404648, 0.028948131948709488, -0.052976157516241074, -0.09229382127523422, -0.01414886862039566, 0.02441038005053997, -0.02938120998442173, -0.18023529648780823, -0.05110617354512215, -0.04539405554533005, 0.06086825579404831, -0.13345718383789062, 0.03806356340646744, -0.008543840609490871, 0.10911340266466141, -0.03366250544786453, -0.05026566609740257, -0.0002902042760979384, -0.03231125324964523, -0.026785818859934807, -0.04267202690243721, 0.07128387689590454, -0.01074137445539236, -0.021377036347985268, -0.004708867520093918, -0.07541471719741821, 0.06747203320264816, 0.044115230441093445, 0.010928316041827202, -0.12828464806079865, 0.027420341968536377, -0.06188305839896202, -0.046514417976140976, 0.07863583415746689, -0.00965020153671503, 0.0684661716222763, 0.02730361744761467, 0.02527700364589691, -0.019744379445910454, -0.016653969883918762, 0.035157397389411926, -0.061500754207372665, -0.07405006885528564, 0.05025408789515495, -0.01745394431054592, -0.1071639284491539, 0.05080132931470871, 0.1736767292022705, 0.05129228159785271, 0.09201443195343018, 0.0058456603437662125, -0.04433002322912216, -0.13630306720733643, 0.0772535502910614, 0.04936406761407852, 0.0848635658621788, -0.09140550345182419, -0.003979641478508711, -0.009497648105025291, 0.025663558393716812, 0.01855347864329815, -0.0785181075334549, -0.034115005284547806, 0.0009598820470273495, -0.023882918059825897, 0.10762324929237366, 0.018980583176016808, -0.062211256474256516, 0.0634385272860527, 0.058584678918123245, -0.021597789600491524, -0.03648277372121811, -0.03779446333646774, -0.06395746767520905, 0.12592704594135284, -0.05366215482354164, -0.13272807002067566, -0.041784822940826416, -0.10513328015804291, -0.03672318905591965, -0.010303854010999203, 0.01673063449561596, -0.08104350417852402, -0.017147479578852654, -0.027724429965019226, -0.029175346717238426, -0.09263166785240173, 0.017801595851778984, 0.0767350122332573, 0.028738131746649742, 0.08019503951072693, -0.05429847165942192, 0.001566959428600967, 0.015562170185148716, -0.05957896262407303, 0.010434843599796295, 0.023374207317829132, 0.08753982186317444, 0.11124879121780396, 0.059128351509571075, 0.01492583379149437, 0.020245609804987907, 0.21359512209892273, -0.050557710230350494, 0.03388746827840805, 0.032106854021549225, -0.036638543009757996, 0.07225976139307022, 0.14003032445907593, 0.024623382836580276, -0.11270451545715332, 0.025716625154018402, 0.015445714816451073, -0.02139970473945141, -0.1252753883600235, -0.003159542102366686, -0.0028300099074840546, 0.08213120698928833, 0.05621879920363426, 0.0549263060092926, 0.04415062069892883, 0.003443972673267126, 0.03213408589363098, -0.09434164315462112, 0.028566576540470123, 0.08252303302288055, -0.03151896968483925, -0.06940437853336334, 0.059521328657865524, 0.019101310521364212, 0.018374349921941757, 0.020489364862442017, 0.013065547682344913, 0.054987937211990356, 0.06666068732738495, 0.016104044392704964, 0.09004039317369461, 0.0801771879196167, -0.02368137426674366, 0.04647967219352722, 0.044773880392313004, -0.03231944143772125, -0.011708108708262444, -0.038785576820373535, 0.053637564182281494, 0.07434196770191193, 0.13525021076202393, -0.013027074746787548, -0.06794469058513641, 0.02335742674767971, 0.012338708154857159, 0.13626553118228912, 0.13295191526412964, -0.1533692181110382, -0.015720009803771973, 0.052129365503787994, -0.01637968234717846, -0.04953203722834587, 0.0015625329688191414, 0.012667326256632805, -0.04506871849298477, 0.08272313326597214, -0.006340776104480028, 0.035740625113248825, 0.03759921342134476, 0.028880931437015533, 0.023931602016091347, 0.04217313230037689, 0.01051667332649231, -0.0007782335160300136, -0.12189115583896637, 0.15534009039402008, -0.013248760253190994, 0.0009059370495378971, 0.006403273902833462, 0.021572943776845932, 0.017389850690960884, 0.038300301879644394, 0.18406465649604797, 0.01484457403421402, -0.16014733910560608, -0.07490241527557373, -0.07303125411272049, -0.032272819429636, 0.14589732885360718, -0.06714261323213577, 0.09683555364608765, 0.003059289650991559, -0.0189917404204607, -0.009196849539875984, 0.12599730491638184, -0.1396958976984024, -0.010137722827494144, 0.0760684385895729, -0.1078323945403099, 0.040692031383514404, -0.06504162400960922, -0.030505726113915443, -0.06358605623245239, 0.18676717579364777, -0.0417378805577755, -0.0014179140562191606, -0.06757519394159317, -0.005456225480884314, 0.13040854036808014, -0.05268304422497749, 0.009239786304533482, -0.01950191520154476, 0.04993874952197075, 0.011675712652504444, 0.008777659386396408, 0.049695249646902084, -0.062224119901657104, -0.18703879415988922, -0.04538378864526749, 0.15653622150421143, 0.035623375326395035, 0.06997387856245041, -0.010786428116261959, 0.016250986605882645, 0.05997435748577118, -0.09210299700498581, 0.16855934262275696, 0.0027794260531663895, -0.02281768061220646, 0.004961526952683926, -0.02832069806754589, 0.0007113753817975521, -0.07994448393583298, -0.008885716088116169, 0.09785384684801102, 0.32383474707603455, -0.052800536155700684, 0.08789720386266708, 0.045609001070261, -0.046412043273448944, -0.17159318923950195, -0.09953860193490982, 0.10580506920814514, -0.03036072850227356, 0.03503686934709549, -0.1190507635474205, -0.025155698880553246, 0.022080151364207268, 0.003660408314317465, 0.03322995826601982, -0.20339207351207733, -0.08626008033752441, 0.03901815041899681, 0.03008769266307354, 0.05930835381150246, -0.1876738965511322, -0.05477656424045563, 0.010640420019626617, -0.1306653469800949, 0.022742165252566338, 0.08879579603672028, 0.08358260989189148, -0.0459367074072361, -0.0765833929181099, -0.00832159724086523, -0.010295933112502098, 0.19432836771011353, -0.022255485877394676, 0.016158880665898323, -0.0654180645942688, -0.13418103754520416, 0.08900761604309082, -0.0484541691839695, 0.03845997154712677, -0.02830304019153118, -0.012043274007737637, -0.05228666588664055, 0.012855436652898788, -0.12333706766366959, 0.011874564923346043, -0.08991729468107224, -0.017580075189471245, -0.018949611112475395, 0.06979075819253922, 0.07990919798612595, 0.01292874850332737, 0.033985260874032974, -0.030795268714427948, 0.03848230093717575, 0.1580026000738144, 0.09122851490974426, 0.08332539349794388, -0.09316235035657883, 0.009052525274455547, -0.037917040288448334, -0.0214006956666708, -0.11735344678163528, -0.02348019741475582, 0.07593031227588654, 0.013533278368413448, 0.05929127335548401, 0.061263471841812134, -0.06658946722745895, -0.016531873494386673, 0.10435513406991959, -0.0653318539261818, -0.1725080907344818, 0.0029472638852894306, -0.02134709618985653, -0.14992232620716095, -0.01172090508043766, 0.08114399760961533, -0.002903989050537348, 0.004971151240170002, 0.013946866616606712, 0.08280199021100998, -0.07815022021532059, 0.12370103597640991, 0.015225572511553764, 0.06274935603141785, -0.04055831953883171, 0.07813740521669388, 0.009882812388241291, -0.0162353478372097, 0.03002094477415085, 0.13643404841423035, -0.00450902059674263, -0.04640533775091171, 0.018461663275957108, 0.015073129907250404, 0.08467144519090652, 0.022608790546655655, -0.03952541947364807, -0.08968523889780045, 0.04370298236608505, 0.024188894778490067, 0.00497169466689229, -0.02229204960167408, 0.03684858977794647, 0.05520053952932358, -0.027654757723212242, 0.039557408541440964, 0.06400375813245773, 0.02867203950881958, -0.09276959300041199, 0.04631795361638069, -0.02227781154215336, 0.043081626296043396, -0.024182530120015144, -0.013797048479318619, -0.11155418306589127, -0.007117662113159895, -0.11810173839330673, -0.05367197096347809, -0.09954483807086945, -0.0383799746632576, -0.0010661851847544312, -0.04582244157791138, -0.054512206465005875, -0.004750423599034548, -0.044395811855793, -0.08667012304067612, -0.005932989064604044, 0.06333225220441818, -0.03909952566027641, -0.05263116583228111, 0.03813252970576286, -0.11082318425178528, 0.062234021723270416, 0.032310232520103455, 0.028549624606966972, 0.0021693038288503885, 0.012720390222966671, -0.033927228301763535, 0.023082008585333824, -0.04485232010483742, -0.008290932513773441, -0.1605251580476761, -0.07384349405765533, -0.0901222974061966, -0.046259794384241104, 0.02005195990204811, 0.02819964289665222, -0.038983337581157684, 0.03961160406470299, -0.004228667356073856, -0.05560347065329552, -0.014422984793782234, -0.02353096380829811, 0.08366000652313232, 0.040157660841941833, 0.07213199138641357, -0.01972111500799656, 0.1051710844039917, -0.1683066040277481, 0.003366373712196946, -0.014570234343409538, -0.01398678869009018, 0.09109009057283401, 0.0021210522390902042, 0.05329091474413872, -0.03905206173658371, 0.04241689294576645, -0.1132320761680603, 0.006850221659988165, 0.03566478565335274, 0.03608614206314087, -0.03215572237968445, 0.08595417439937592, 0.06944097578525543, 0.02998325042426586, -0.058068614453077316, -0.028030091896653175, 0.038428038358688354, -0.0024876955430954695, -0.09656936675310135, 0.13155506551265717, 0.10077664256095886, 0.08990267664194107, 0.04634423926472664, 0.036888327449560165, -0.1288815140724182, -0.09645364433526993, 0.1437927782535553, -0.024371029809117317, 0.026159660890698433, -0.034968458116054535, -0.022269627079367638, 0.08235149830579758, -0.137214794754982, 0.05457082390785217, -0.0535401850938797, -0.05354226753115654, -0.04330712929368019, -0.019340824335813522, -0.03137945383787155, -0.028844749554991722, 0.02242613583803177, -0.06835395842790604, 0.03356822207570076, -0.009462566114962101, -0.0020185555331408978, 0.03769794851541519, 0.08823933452367783, 0.023856351152062416, -0.0032204603776335716, 0.036695584654808044, -0.004735345020890236, -0.02553064376115799, 0.017209233716130257, 0.037832245230674744, -0.03645280376076698, 0.03082767128944397, 0.012519082985818386, -0.0007355493726208806, -0.07079746574163437, 0.02813696675002575, 0.009114820510149002, -0.10577705502510071, 0.01909632794559002, 0.010249032638967037, -0.039960261434316635, 0.08719929307699203, 0.025526531040668488, -0.008645751513540745, -0.0028694025240838528, 0.06467784196138382, -0.058123745024204254, -0.059902623295784, -0.10292234271764755, 0.19888131320476532, -0.05846448242664337, 0.031232256442308426, -0.009256553836166859, -0.012749521061778069, -0.033567480742931366, 0.14603887498378754, 0.1346084624528885, -0.05277255177497864, 0.025848302990198135, 0.06601429730653763, 0.009820266626775265, 0.02168266288936138, 0.02945752814412117, 0.08257526159286499, 0.06114912033081055, -0.08253940939903259, 0.006693607661873102, -0.052951160818338394, -0.0529194176197052, -0.028271058574318886, 0.0017651405651122332, 0.06606148928403854, 0.045778535306453705, -0.04009752348065376, 0.07889823615550995, -0.09381614625453949, -0.09856586903333664, 0.014412782154977322, -0.10304024070501328, -0.08498020470142365, -0.016435569152235985, 0.01375851035118103, 0.018260395154356956, 0.08205767720937729, 0.01614505797624588, -0.01539368275552988, 0.10016260296106339, 0.0111608961597085, -0.0013536501210182905, 0.05837390944361687, 0.06716737896203995, -0.11736055463552475, 0.1764620691537857, -0.03036934696137905, -0.008304315619170666, 0.09285371005535126, -0.009444691240787506, -0.12687505781650543, -0.00020069068705197424, 0.06758616864681244, -0.04646703973412514, -0.02137022837996483, 0.17690548300743103, -0.020393844693899155, 0.0020644934847950935, 0.05389774218201637, -0.12370302528142929, -0.0010026934323832393, 0.09890583902597427, 0.0060096243396401405, -0.02432420663535595, 0.05678972601890564, -0.05204396694898605, 0.08973165601491928, 0.16126027703285217, -0.047898389399051666, -0.02111014723777771, -0.01215832494199276, 0.02293296344578266, 0.03164511173963547, 0.12267936766147614, -0.07791054993867874, -0.1394597291946411, 0.010788952000439167, -0.04177927225828171, 0.04995863139629364, -0.09430833905935287, -0.10891677439212799, 0.08301486074924469, -0.0070604863576591015, -0.05268627032637596, 0.061549484729766846, 0.05411282181739807, 0.02738390676677227, -0.018745237961411476, -0.08599629253149033, 0.004892080090939999, 0.13255535066127777, -0.12999318540096283, -0.04718318581581116 ]
0ed9a6e20e82fa191eac3c661f9931d8fec1ad44
# Dataset Card for [Dataset Name] ## Table of Contents - [Table of Contents](#table-of-contents) - [Dataset Description](#dataset-description) - [Dataset Summary](#dataset-summary) - [Supported Tasks and Leaderboards](#supported-tasks-and-leaderboards) - [Languages](#languages) - [Dataset Structure](#dataset-structure) - [Data Instances](#data-instances) - [Data Fields](#data-fields) - [Data Splits](#data-splits) - [Dataset Creation](#dataset-creation) - [Curation Rationale](#curation-rationale) - [Source Data](#source-data) - [Annotations](#annotations) - [Personal and Sensitive Information](#personal-and-sensitive-information) - [Considerations for Using the Data](#considerations-for-using-the-data) - [Social Impact of Dataset](#social-impact-of-dataset) - [Discussion of Biases](#discussion-of-biases) - [Other Known Limitations](#other-known-limitations) - [Additional Information](#additional-information) - [Dataset Curators](#dataset-curators) - [Licensing Information](#licensing-information) - [Citation Information](#citation-information) - [Contributions](#contributions) ## Dataset Description - **Homepage:** - **Repository:** - **Paper:** - **Leaderboard:** - **Point of Contact:** ### Dataset Summary [More Information Needed] ### Supported Tasks and Leaderboards [More Information Needed] ### Languages [More Information Needed] ## Dataset Structure ### Data Instances [More Information Needed] ### Data Fields [More Information Needed] ### Data Splits [More Information Needed] ## Dataset Creation ### Curation Rationale [More Information Needed] ### Source Data #### Initial Data Collection and Normalization [More Information Needed] #### Who are the source language producers? [More Information Needed] ### Annotations #### Annotation process [More Information Needed] #### Who are the annotators? [More Information Needed] ### Personal and Sensitive Information [More Information Needed] ## Considerations for Using the Data ### Social Impact of Dataset [More Information Needed] ### Discussion of Biases [More Information Needed] ### Other Known Limitations [More Information Needed] ## Additional Information ### Dataset Curators [More Information Needed] ### Licensing Information [More Information Needed] ### Citation Information [More Information Needed] ### Contributions Thanks to [@github-username](https://github.com/<github-username>) for adding this dataset.
j-krzywdziak/test
[ "annotations_creators:expert-generated", "multilinguality:monolingual", "language:pl", "license:mit", "region:us" ]
2023-02-08T08:14:48+00:00
{"annotations_creators": ["expert-generated"], "language": ["pl"], "license": ["mit"], "multilinguality": ["monolingual"], "dataset_info": [{"config_name": "config", "features": [{"name": "audio_id", "dtype": "string"}, {"name": "audio", "dtype": {"audio": {"sampling_rate": 16000}}}, {"name": "text", "dtype": "string"}]}]}
2023-07-11T11:22:14+00:00
[]
[ "pl" ]
TAGS #annotations_creators-expert-generated #multilinguality-monolingual #language-Polish #license-mit #region-us
# Dataset Card for [Dataset Name] ## Table of Contents - Table of Contents - Dataset Description - Dataset Summary - Supported Tasks and Leaderboards - Languages - Dataset Structure - Data Instances - Data Fields - Data Splits - Dataset Creation - Curation Rationale - Source Data - Annotations - Personal and Sensitive Information - Considerations for Using the Data - Social Impact of Dataset - Discussion of Biases - Other Known Limitations - Additional Information - Dataset Curators - Licensing Information - Citation Information - Contributions ## Dataset Description - Homepage: - Repository: - Paper: - Leaderboard: - Point of Contact: ### Dataset Summary ### Supported Tasks and Leaderboards ### Languages ## Dataset Structure ### Data Instances ### Data Fields ### Data Splits ## Dataset Creation ### Curation Rationale ### Source Data #### Initial Data Collection and Normalization #### Who are the source language producers? ### Annotations #### Annotation process #### Who are the annotators? ### Personal and Sensitive Information ## Considerations for Using the Data ### Social Impact of Dataset ### Discussion of Biases ### Other Known Limitations ## Additional Information ### Dataset Curators ### Licensing Information ### Contributions Thanks to @github-username for adding this dataset.
[ "# Dataset Card for [Dataset Name]", "## Table of Contents\n- Table of Contents\n- Dataset Description\n - Dataset Summary\n - Supported Tasks and Leaderboards\n - Languages\n- Dataset Structure\n - Data Instances\n - Data Fields\n - Data Splits\n- Dataset Creation\n - Curation Rationale\n - Source Data\n - Annotations\n - Personal and Sensitive Information\n- Considerations for Using the Data\n - Social Impact of Dataset\n - Discussion of Biases\n - Other Known Limitations\n- Additional Information\n - Dataset Curators\n - Licensing Information\n - Citation Information\n - Contributions", "## Dataset Description\n\n- Homepage:\n- Repository:\n- Paper:\n- Leaderboard:\n- Point of Contact:", "### Dataset Summary", "### Supported Tasks and Leaderboards", "### Languages", "## Dataset Structure", "### Data Instances", "### Data Fields", "### Data Splits", "## Dataset Creation", "### Curation Rationale", "### Source Data", "#### Initial Data Collection and Normalization", "#### Who are the source language producers?", "### Annotations", "#### Annotation process", "#### Who are the annotators?", "### Personal and Sensitive Information", "## Considerations for Using the Data", "### Social Impact of Dataset", "### Discussion of Biases", "### Other Known Limitations", "## Additional Information", "### Dataset Curators", "### Licensing Information", "### Contributions\n\nThanks to @github-username for adding this dataset." ]
[ "TAGS\n#annotations_creators-expert-generated #multilinguality-monolingual #language-Polish #license-mit #region-us \n", "# Dataset Card for [Dataset Name]", "## Table of Contents\n- Table of Contents\n- Dataset Description\n - Dataset Summary\n - Supported Tasks and Leaderboards\n - Languages\n- Dataset Structure\n - Data Instances\n - Data Fields\n - Data Splits\n- Dataset Creation\n - Curation Rationale\n - Source Data\n - Annotations\n - Personal and Sensitive Information\n- Considerations for Using the Data\n - Social Impact of Dataset\n - Discussion of Biases\n - Other Known Limitations\n- Additional Information\n - Dataset Curators\n - Licensing Information\n - Citation Information\n - Contributions", "## Dataset Description\n\n- Homepage:\n- Repository:\n- Paper:\n- Leaderboard:\n- Point of Contact:", "### Dataset Summary", "### Supported Tasks and Leaderboards", "### Languages", "## Dataset Structure", "### Data Instances", "### Data Fields", "### Data Splits", "## Dataset Creation", "### Curation Rationale", "### Source Data", "#### Initial Data Collection and Normalization", "#### Who are the source language producers?", "### Annotations", "#### Annotation process", "#### Who are the annotators?", "### Personal and Sensitive Information", "## Considerations for Using the Data", "### Social Impact of Dataset", "### Discussion of Biases", "### Other Known Limitations", "## Additional Information", "### Dataset Curators", "### Licensing Information", "### Contributions\n\nThanks to @github-username for adding this dataset." ]
[ 37, 10, 125, 24, 6, 10, 4, 6, 6, 5, 5, 5, 7, 4, 10, 10, 5, 5, 9, 8, 8, 7, 8, 7, 5, 6, 6, 19 ]
[ "passage: TAGS\n#annotations_creators-expert-generated #multilinguality-monolingual #language-Polish #license-mit #region-us \n# Dataset Card for [Dataset Name]## Table of Contents\n- Table of Contents\n- Dataset Description\n - Dataset Summary\n - Supported Tasks and Leaderboards\n - Languages\n- Dataset Structure\n - Data Instances\n - Data Fields\n - Data Splits\n- Dataset Creation\n - Curation Rationale\n - Source Data\n - Annotations\n - Personal and Sensitive Information\n- Considerations for Using the Data\n - Social Impact of Dataset\n - Discussion of Biases\n - Other Known Limitations\n- Additional Information\n - Dataset Curators\n - Licensing Information\n - Citation Information\n - Contributions## Dataset Description\n\n- Homepage:\n- Repository:\n- Paper:\n- Leaderboard:\n- Point of Contact:### Dataset Summary### Supported Tasks and Leaderboards### Languages## Dataset Structure### Data Instances### Data Fields### Data Splits## Dataset Creation### Curation Rationale### Source Data#### Initial Data Collection and Normalization#### Who are the source language producers?### Annotations#### Annotation process#### Who are the annotators?### Personal and Sensitive Information## Considerations for Using the Data### Social Impact of Dataset### Discussion of Biases### Other Known Limitations## Additional Information### Dataset Curators### Licensing Information### Contributions\n\nThanks to @github-username for adding this dataset." ]
[ 0.0052677481435239315, 0.24033387005329132, -0.007114605978131294, 0.019717514514923096, 0.1004524752497673, 0.020266540348529816, 0.08258925378322601, 0.1258932203054428, 0.011633775196969509, 0.1324460804462433, -0.03862027823925018, 0.1142108291387558, 0.13638250529766083, 0.08905763924121857, -0.01708206906914711, -0.23014947772026062, 0.03088732808828354, -0.09284841269254684, -0.03823033720254898, 0.09415777027606964, 0.1397230178117752, -0.08714737743139267, 0.05560819432139397, -0.05403099209070206, -0.01565372571349144, 0.012880247086286545, -0.06244249269366264, -0.05221451818943024, 0.03537018597126007, 0.04889407008886337, 0.05111836642026901, 0.01233337726444006, 0.053868602961301804, -0.31327053904533386, 0.02273227833211422, 0.05502182990312576, 0.023691261187195778, 0.051490455865859985, 0.08335628360509872, -0.08586731553077698, 0.03698953986167908, -0.15775255858898163, 0.1084563210606575, 0.06554605066776276, -0.13503529131412506, -0.11254601925611496, -0.10316941887140274, 0.008746350184082985, 0.10649102181196213, 0.016575610265135765, -0.07055212557315826, 0.06378474831581116, -0.09370485693216324, 0.030325012281537056, 0.08621862530708313, -0.10289852321147919, -0.07659217715263367, 0.028573207557201385, 0.011093735694885254, 0.07656808942556381, -0.1392497420310974, 0.018476268276572227, -0.022908903658390045, 0.026062218472361565, 0.036885399371385574, -0.024344678968191147, -0.026871688663959503, 0.06547266989946365, -0.1049361303448677, -0.0382547564804554, 0.12377689778804779, -0.014860156923532486, 0.020203163847327232, -0.2160155475139618, 0.0036178643349558115, 0.045163705945014954, -0.07472721487283707, 0.005004281178116798, 0.016432024538517, -0.02235935442149639, 0.07898164540529251, -0.009666946716606617, -0.03543282672762871, 0.01615198515355587, 0.012903949245810509, -0.005589068867266178, 0.048091549426317215, -0.017941731959581375, 0.036574240773916245, 0.04126983880996704, 0.12034247815608978, -0.11779740452766418, -0.01146384421736002, -0.07358033210039139, -0.1526900976896286, -0.031039908528327942, 0.06048325449228287, 0.051792118698358536, 0.12494786083698273, 0.17868517339229584, -0.037938039749860764, 0.05645814910531044, -0.07951143383979797, -0.025899739935994148, 0.11464696377515793, 0.04263496398925781, -0.07276706397533417, -0.12502890825271606, -0.04219106584787369, 0.010311511345207691, -0.06315405666828156, -0.036421313881874084, 0.0068838647566735744, 0.08409752696752548, 0.024012058973312378, 0.14455555379390717, 0.1372324526309967, 0.0005040633259341121, -0.10570906847715378, -0.04400349035859108, 0.09770993143320084, -0.11677295714616776, 0.05567793548107147, 0.07058878242969513, -0.023536618798971176, -0.019693588837981224, -0.09302172064781189, 0.026417724788188934, -0.08037512004375458, 0.09379830211400986, -0.047260433435440063, -0.016169164329767227, -0.10827712714672089, -0.048092395067214966, 0.08484195172786713, 0.003742244793102145, -0.04553981497883797, 0.028964662924408913, -0.07080395519733429, -0.07682149857282639, 0.04451237991452217, -0.13401836156845093, -0.060281094163656235, -0.023604685440659523, -0.010130876675248146, 0.03176998719573021, 0.001124063041061163, 0.04050224646925926, -0.07603438198566437, 0.034164462238550186, -0.0737709328532219, 0.023335495963692665, 0.08261705189943314, 0.049521639943122864, -0.06396950781345367, 0.07149636745452881, -0.09214315563440323, 0.10088583081960678, -0.18192216753959656, 0.022679807618260384, -0.11886336654424667, -0.03224576637148857, 0.06648951768875122, 0.004412089474499226, -0.04191014915704727, 0.14846909046173096, -0.2441769391298294, -0.01607726886868477, 0.11388462781906128, -0.07488244771957397, -0.06522152572870255, 0.07995004951953888, -0.04920770972967148, 0.00015105248894542456, 0.027239110320806503, 0.10957265645265579, -0.03135096654295921, 0.051569223403930664, -0.01656058430671692, -0.0899086520075798, 0.08497768640518188, 0.23684455454349518, 0.10120734572410583, -0.08266416937112808, 0.14407242834568024, 0.01020040549337864, 0.019327696412801743, -0.07837045937776566, -0.022060850635170937, -0.11614647507667542, 0.037825580686330795, 0.007418258581310511, 0.012844202108681202, 0.023469392210245132, -0.06052614748477936, -0.03442668169736862, -0.06633336842060089, 0.057007450610399246, 0.006137217860668898, 0.003983840811997652, -0.023040905594825745, -0.07462792843580246, -0.0016469340771436691, 0.07429419457912445, 0.013949328102171421, -0.16201427578926086, -0.17403097450733185, 0.053737033158540726, -0.04860346019268036, 0.10128766298294067, -0.019969234243035316, 0.008269821293652058, -0.04144097864627838, -0.033861830830574036, 0.02569677121937275, 0.03935159370303154, 0.03325494006276131, 0.022619975730776787, -0.21741075813770294, 0.007145207840949297, -0.0558914914727211, 0.09388980269432068, -0.10373472422361374, 0.0066976831294596195, 0.1433994621038437, 0.2179654985666275, 0.06137534976005554, -0.06344719976186752, 0.053912222385406494, 0.03896545618772507, -0.0034611732698976994, -0.05770587548613548, 0.026198046281933784, -0.0986129492521286, 0.020290900021791458, 0.021548528224229813, -0.09452534466981888, 0.0011021499522030354, 0.05928565189242363, 0.0431017242372036, -0.056451521813869476, -0.06076214835047722, -0.04784735292196274, -0.03216512128710747, -0.060963649302721024, -0.07360754907131195, 0.06757061183452606, 0.061695247888565063, -0.01672527566552162, -0.055573876947164536, -0.08212318271398544, -0.06920934468507767, -0.0024094111286103725, -0.0781751424074173, 0.11816095560789108, 0.03308438882231712, -0.14134015142917633, 0.18113495409488678, 0.0403297059237957, 0.1375836580991745, 0.11338088661432266, -0.06501881778240204, -0.07014084607362747, -0.002609447343274951, -0.006266383454203606, 0.018747976049780846, 0.07107564061880112, -0.15833383798599243, -0.009856502525508404, 0.061957329511642456, -0.0216276403516531, 0.012250716798007488, -0.05092734098434448, 0.022713912650942802, -0.0323159284889698, -0.024672655388712883, 0.018368566408753395, -0.006285280920565128, 0.0669662281870842, 0.10264997184276581, 0.030616628006100655, 0.08716624230146408, -0.019350113347172737, -0.06710448116064072, -0.06741959601640701, 0.09451829642057419, -0.1735200434923172, -0.24912217259407043, -0.06123070418834686, -0.1254492700099945, -0.027062851935625076, -0.051082056015729904, 0.016330497339367867, -0.04530821740627289, -0.11069818586111069, -0.017988139763474464, 0.11558732390403748, 0.06147562339901924, -0.1430385559797287, -0.010470897890627384, 0.019233038648962975, -0.028385479003190994, -0.12454551458358765, 0.028230471536517143, 0.09855839610099792, -0.023020057007670403, 0.014751244336366653, 0.05817168578505516, 0.09328223764896393, 0.09883969277143478, 0.10123640298843384, -0.0219778660684824, -0.034821461886167526, 0.2897363603115082, -0.16107475757598877, 0.10859273374080658, 0.06956266611814499, -0.07971159368753433, 0.046478938311338425, 0.2639182507991791, 0.05933670327067375, -0.07243427634239197, 0.014268558472394943, 0.10201092064380646, 0.008926001377403736, -0.24120987951755524, -0.10671204328536987, -0.09020920842885971, -0.0316513366997242, 0.045618776232004166, 0.0746416449546814, -0.003145323134958744, 0.0005477745435200632, -0.10334571450948715, -0.07081419974565506, 0.09161034226417542, 0.07635026425123215, 0.10413312166929245, 0.0010340834269300103, 0.05957306548953056, -0.014968281611800194, -0.03276282921433449, 0.08092080056667328, 0.07219484448432922, 0.1851424127817154, 0.04697846621274948, 0.24845153093338013, 0.07295779883861542, 0.09023282676935196, -0.017606550827622414, -0.021474316716194153, 0.002036856720224023, 0.08133541792631149, -0.012623372487723827, -0.04208538308739662, 0.010902880690991879, 0.05277801677584648, 0.11055455356836319, -0.14211918413639069, 0.10083743184804916, -0.10595451295375824, 0.1158611923456192, 0.1807526797056198, 0.027936097234487534, -0.07494839280843735, 0.01803573966026306, 0.1598178893327713, -0.09795059263706207, -0.13013942539691925, 0.0030288835987448692, 0.018679121509194374, -0.18632063269615173, 0.090974822640419, -0.03380526974797249, 0.13050343096256256, -0.06944766640663147, -0.0309219378978014, -0.007580779492855072, 0.016129998490214348, -0.02205885946750641, 0.08463383466005325, -0.2455855756998062, 0.14271895587444305, 0.011147013865411282, -0.01049855351448059, -0.11497689038515091, 0.07793819904327393, 0.004286621231585741, -0.027414551004767418, 0.1602504849433899, -0.01075760554522276, -0.13270877301692963, 0.017464952543377876, -0.04640369117259979, -0.009334503673017025, 0.06913984566926956, -0.14181837439537048, 0.07425452768802643, -0.01674666628241539, -0.016063060611486435, -0.05354829505085945, -0.09155721217393875, -0.12680941820144653, -0.22757671773433685, 0.07677451521158218, -0.08647618442773819, 0.08285009860992432, -0.06658284366130829, -0.02401389367878437, -0.06022606045007706, 0.16457603871822357, -0.0815739557147026, -0.09252894669771194, -0.14912419021129608, 0.017771173268556595, 0.17123089730739594, -0.0218682698905468, 0.06110478192567825, -0.012630398385226727, 0.18387332558631897, 0.00830064807087183, -0.020834485068917274, 0.06951116770505905, -0.0400705486536026, -0.20326802134513855, -0.026104673743247986, 0.16711366176605225, 0.03463757038116455, 0.05541645735502243, 0.005386758130043745, 0.07705360651016235, 0.022847158834338188, -0.08915503323078156, 0.045350514352321625, 0.08183563500642776, 0.026483600959181786, 0.0979301780462265, -0.03383128345012665, -0.24809430539608002, -0.14651136100292206, -0.059349969029426575, 0.15165646374225616, 0.10365785658359528, -0.035895608365535736, 0.1980070322751999, 0.10592836141586304, -0.09756859391927719, -0.20855726301670074, -0.011868895962834358, 0.005981855560094118, -0.04241213575005531, 0.05669020488858223, -0.21298426389694214, 0.04428539797663689, 0.044123873114585876, -0.005751925520598888, 0.008524682372808456, -0.17301063239574432, -0.11492475867271423, 0.030485864728689194, 0.028386635705828667, -0.28811708092689514, -0.17127306759357452, -0.1116688922047615, -0.039102960377931595, -0.19862225651741028, 0.15979477763175964, 0.056770727038383484, -0.02589394524693489, 0.0042272573336958885, 0.03789069131016731, 0.02327447384595871, -0.03597087785601616, 0.18089303374290466, 0.019076917320489883, 0.008343269117176533, -0.08757627010345459, -0.08906198292970657, 0.08477585762739182, 0.028226835653185844, 0.00837575551122427, -0.012912807054817677, -0.038473766297101974, -0.09056784212589264, -0.03599676489830017, -0.06686370074748993, 0.0191049687564373, -0.1202213391661644, -0.053887274116277695, -0.057378023862838745, 0.11526613682508469, 0.08396833389997482, -0.02626201882958412, 0.11517693102359772, -0.08231356739997864, 0.08357847481966019, 0.0806349366903305, 0.17710964381694794, 0.04606108367443085, -0.04624341428279877, -0.008887135423719883, 0.00046729398309253156, -0.040504153817892075, -0.0871015191078186, 0.0699303075671196, 0.10879208892583847, -0.004643892869353294, 0.16200457513332367, -0.037510570138692856, -0.1338340789079666, -0.01142978947609663, 0.06313569843769073, -0.04008800536394119, -0.23928938806056976, 0.03158172592520714, 0.07393452525138855, -0.14053289592266083, -0.09426192194223404, 0.04160677641630173, 0.07903178036212921, -0.08772821724414825, 0.04308338090777397, 0.12812158465385437, 0.02522345632314682, 0.09390758723020554, 0.0015258602797985077, 0.07798036187887192, -0.14631310105323792, 0.0737512856721878, 0.13694746792316437, -0.06425192952156067, -0.011475341394543648, 0.19048093259334564, -0.03976152092218399, -0.05510316416621208, 0.037789236754179, 0.07865656167268753, 0.0554499551653862, -0.0025251409970223904, 0.04202241450548172, -0.17528140544891357, 0.023999139666557312, 0.12086395174264908, -0.017964079976081848, 0.015986494719982147, 0.03262950852513313, -0.03498750552535057, 0.021082144230604172, 0.15799231827259064, 0.042250629514455795, 0.02728504315018654, -0.026174349710345268, -0.013787619769573212, -0.024929268285632133, -0.05623717978596687, 0.0013674473157152534, -0.009310225956141949, -0.13503889739513397, 0.0009912115056067705, -0.12644153833389282, -0.018541624769568443, -0.14971768856048584, 0.012141695246100426, 0.019414236769080162, -0.0853641927242279, -0.01713784970343113, -0.034104324877262115, -0.09304728358983994, -0.04558992758393288, -0.027483277022838593, 0.1445455402135849, -0.17890281975269318, -0.010811302810907364, 0.11564310640096664, -0.08166036009788513, 0.11167427152395248, -0.014427324756979942, -0.04904099181294441, 0.03219647705554962, -0.12553581595420837, 0.0008863101829774678, -0.017711501568555832, 0.06159944459795952, 0.0558839850127697, -0.15759101510047913, -0.02348748780786991, 0.0021097329445183277, -0.041332636028528214, 0.050627730786800385, -0.020019235089421272, -0.08488913625478745, 0.06817885488271713, -0.04115620255470276, -0.11552558094263077, 0.026753336191177368, 0.011006544344127178, 0.11210738122463226, -0.032451942563056946, 0.12104153633117676, -0.01399153284728527, 0.0974423959851265, -0.10568954795598984, -0.0028454887215048075, -0.010832345113158226, -0.016872389242053032, 0.012773021124303341, 0.0007160339155234396, 0.07737380266189575, 0.005860936362296343, 0.24362879991531372, -0.015503877773880959, -0.025894956663250923, 0.08871371299028397, 0.04651441425085068, -0.05570945143699646, 0.07946832478046417, -0.0038878063205629587, 0.018179330974817276, -0.046657659113407135, -0.00985346082597971, -0.08464489132165909, -0.09348537772893906, -0.08806171268224716, 0.1362866908311844, 0.20762602984905243, 0.1597185879945755, -0.08833684027194977, 0.09743833541870117, -0.11418116092681885, -0.028772523626685143, 0.14366351068019867, -0.02387499064207077, 0.025532394647598267, -0.1097077801823616, 0.08660812675952911, 0.03277446702122688, -0.19761939346790314, 0.11251433938741684, -0.10537565499544144, -0.07344108074903488, -0.03472224995493889, -0.14350980520248413, -0.07934175431728363, -0.001971043646335602, -0.0005857850192114711, -0.12262167036533356, 0.11843709647655487, 0.12277109920978546, -0.016777876764535904, -0.03351391851902008, 0.08850596100091934, -0.048123281449079514, -0.05760844796895981, 0.054178643971681595, 0.08513130992650986, 0.04151934012770653, -0.039167746901512146, 0.06482120603322983, -0.08649338781833649, 0.10621556639671326, 0.058738794177770615, 0.05031247437000275, -0.06388400495052338, -0.00980408862233162, -0.09744972735643387, -0.08439915627241135, 0.041453972458839417, -0.03545229136943817, -0.09805504977703094, 0.19860725104808807, 0.019422391429543495, 0.05710427835583687, 0.02109217271208763, 0.24569688737392426, -0.04309527575969696, -0.08579158782958984, -0.19328980147838593, -0.0026207654736936092, -0.052753955125808716, 0.019756069406867027, 0.0757518857717514, -0.12961190938949585, 0.01921635866165161, 0.0850922092795372, 0.17006488144397736, -0.028934409841895103, 0.01404537819325924, -0.006019120570272207, 0.04343714937567711, -0.008085306733846664, 0.03482380509376526, 0.06135336682200432, 0.16122378408908844, -0.07317787408828735, -0.005193142220377922, -0.031042473390698433, -0.050904080271720886, -0.11399733275175095, 0.09509643167257309, 0.04559371620416641, -0.029001159593462944, -0.061035674065351486, 0.18538184463977814, -0.13759127259254456, -0.2156112939119339, 0.00006474917609011754, -0.1498727947473526, -0.17187778651714325, -0.056050483137369156, 0.010646773502230644, 0.002915219170972705, -0.0015739143127575517, 0.08931642025709152, -0.06610547751188278, 0.15757909417152405, 0.09526372700929642, -0.009407836943864822, -0.0020005814731121063, 0.15107513964176178, -0.09564843773841858, 0.2076902687549591, 0.013057537376880646, 0.028971564024686813, 0.10448306053876877, -0.0544574148952961, -0.08380924165248871, -0.008343183435499668, 0.12602820992469788, -0.023512179031968117, 0.015908407047390938, 0.17249619960784912, 0.022009095177054405, 0.13413193821907043, 0.11434400081634521, -0.04351736232638359, 0.05216800421476364, 0.0378374382853508, -0.032940030097961426, -0.05800816789269447, 0.11767487227916718, -0.13441170752048492, 0.07466019690036774, 0.12490462511777878, -0.057180918753147125, 0.01437326055020094, -0.018090317025780678, 0.03189389035105705, -0.057379789650440216, 0.186916783452034, -0.050058718770742416, -0.1723346710205078, 0.0008229668019339442, -0.04795775189995766, 0.0947931781411171, -0.09099075943231583, -0.051579419523477554, 0.01638634316623211, 0.026248332113027573, -0.09546802192926407, 0.13752421736717224, 0.09326539933681488, -0.03569192811846733, -0.033059824258089066, -0.1462857574224472, 0.029747098684310913, 0.13218341767787933, -0.061578989028930664, 0.07835031300783157 ]
08f9f0cef47cb3c3eeb8925a340e129c1d4824f6
# Dataset Card for AutoTrain Evaluator This repository contains model predictions generated by [AutoTrain](https://huggingface.co/autotrain) for the following task and dataset: * Task: Question Answering * Model: 2020uee0139/distilbert-base-uncased-finetuned-squad * Dataset: adversarial_qa * Config: adversarialQA * Split: validation To run new evaluation jobs, visit Hugging Face's [automatic model evaluator](https://huggingface.co/spaces/autoevaluate/model-evaluator). ## Contributions Thanks to [@yahiya](https://huggingface.co/yahiya) for evaluating this model.
autoevaluate/autoeval-eval-adversarial_qa-adversarialQA-a69c9b-3342492274
[ "autotrain", "evaluation", "region:us" ]
2023-02-08T09:08:16+00:00
{"type": "predictions", "tags": ["autotrain", "evaluation"], "datasets": ["adversarial_qa"], "eval_info": {"task": "extractive_question_answering", "model": "2020uee0139/distilbert-base-uncased-finetuned-squad", "metrics": [], "dataset_name": "adversarial_qa", "dataset_config": "adversarialQA", "dataset_split": "validation", "col_mapping": {"context": "context", "question": "question", "answers-text": "answers.text", "answers-answer_start": "answers.answer_start"}}}
2023-02-08T09:09:01+00:00
[]
[]
TAGS #autotrain #evaluation #region-us
# Dataset Card for AutoTrain Evaluator This repository contains model predictions generated by AutoTrain for the following task and dataset: * Task: Question Answering * Model: 2020uee0139/distilbert-base-uncased-finetuned-squad * Dataset: adversarial_qa * Config: adversarialQA * Split: validation To run new evaluation jobs, visit Hugging Face's automatic model evaluator. ## Contributions Thanks to @yahiya for evaluating this model.
[ "# Dataset Card for AutoTrain Evaluator\n\nThis repository contains model predictions generated by AutoTrain for the following task and dataset:\n\n* Task: Question Answering\n* Model: 2020uee0139/distilbert-base-uncased-finetuned-squad\n* Dataset: adversarial_qa\n* Config: adversarialQA\n* Split: validation\n\nTo run new evaluation jobs, visit Hugging Face's automatic model evaluator.", "## Contributions\n\nThanks to @yahiya for evaluating this model." ]
[ "TAGS\n#autotrain #evaluation #region-us \n", "# Dataset Card for AutoTrain Evaluator\n\nThis repository contains model predictions generated by AutoTrain for the following task and dataset:\n\n* Task: Question Answering\n* Model: 2020uee0139/distilbert-base-uncased-finetuned-squad\n* Dataset: adversarial_qa\n* Config: adversarialQA\n* Split: validation\n\nTo run new evaluation jobs, visit Hugging Face's automatic model evaluator.", "## Contributions\n\nThanks to @yahiya for evaluating this model." ]
[ 13, 102, 15 ]
[ "passage: TAGS\n#autotrain #evaluation #region-us \n# Dataset Card for AutoTrain Evaluator\n\nThis repository contains model predictions generated by AutoTrain for the following task and dataset:\n\n* Task: Question Answering\n* Model: 2020uee0139/distilbert-base-uncased-finetuned-squad\n* Dataset: adversarial_qa\n* Config: adversarialQA\n* Split: validation\n\nTo run new evaluation jobs, visit Hugging Face's automatic model evaluator.## Contributions\n\nThanks to @yahiya for evaluating this model." ]
[ -0.11327318102121353, 0.08157948404550552, 0.001858638832345605, 0.053329650312662125, 0.16829870641231537, 0.05730397626757622, 0.1287597417831421, 0.06703753769397736, 0.07219786196947098, -0.01108337938785553, 0.1496233195066452, 0.08533454686403275, 0.05851168558001518, 0.2512606382369995, -0.016288997605443, -0.12953431904315948, 0.015212527476251125, -0.06569801270961761, 0.13689172267913818, 0.09654092788696289, 0.09035411477088928, -0.06563176959753036, 0.12873774766921997, 0.04291532561182976, -0.2519958019256592, 0.05200673267245293, 0.029225673526525497, -0.05860389024019241, 0.149661123752594, 0.05974787101149559, 0.1067366823554039, 0.015280930325388908, 0.02598048374056816, -0.0801408588886261, 0.02883632853627205, -0.006010561715811491, -0.02973712980747223, 0.0656253844499588, 0.10137185454368591, -0.005908796563744545, 0.03085182048380375, 0.12859143316745758, 0.04073850437998772, 0.06757059693336487, -0.128697007894516, -0.09598489850759506, -0.10841602832078934, -0.05378933623433113, 0.09651809185743332, 0.010756627656519413, -0.047711074352264404, 0.26467540860176086, -0.23057882487773895, 0.0639348179101944, -0.1321771740913391, -0.198166623711586, -0.005739148240536451, 0.060198403894901276, -0.028595376759767532, -0.008184014819562435, -0.0663847103714943, 0.016332870349287987, 0.12104324251413345, -0.01380812469869852, -0.024981161579489708, -0.053395580500364304, -0.09119877219200134, 0.01982181705534458, -0.09156737476587296, -0.017124319449067116, 0.35511523485183716, -0.010819767601788044, -0.07702411711215973, -0.0246223546564579, -0.01289853360503912, 0.02220851369202137, 0.03710480406880379, -0.04253631830215454, -0.043335217982530594, -0.014969098381698132, -0.003401252906769514, 0.07101317495107651, -0.10937615483999252, -0.07918556034564972, -0.13933192193508148, 0.05813274905085564, 0.010295859538018703, 0.06507851928472519, -0.059081703424453735, 0.10899141430854797, -0.0981193482875824, -0.08984247595071793, -0.001402707421220839, -0.10066820681095123, -0.15752074122428894, -0.08348122239112854, -0.01634129136800766, -0.026011254638433456, 0.037353865802288055, 0.20361341536045074, 0.11118625104427338, 0.03409045934677124, -0.042215745896101, 0.042476311326026917, 0.14334043860435486, 0.1359298825263977, -0.03825824707746506, -0.1094173938035965, 0.005542976316064596, -0.012921294197440147, 0.0012726560235023499, -0.0581265352666378, -0.12698034942150116, 0.014792583882808685, 0.0320480540394783, 0.0930604636669159, -0.001213272102177143, -0.010573566891252995, -0.11570733785629272, -0.025499921292066574, 0.14799921214580536, -0.03941691666841507, 0.023103339597582817, -0.019905855879187584, -0.10768584907054901, -0.09022796154022217, -0.044257331639528275, 0.09209511429071426, 0.03548066318035126, 0.07275470346212387, -0.1587255448102951, -0.02631930261850357, -0.04322369769215584, -0.08553136140108109, 0.011004487052559853, -0.05914068594574928, 0.08265800774097443, -0.16550537943840027, -0.23202195763587952, -0.01876961439847946, -0.026891885325312614, -0.09351793676614761, -0.057310864329338074, -0.012458535842597485, 0.06595852971076965, 0.004494610242545605, -0.021157434210181236, 0.08718311041593552, -0.049332644790410995, 0.02118084207177162, 0.06719370931386948, 0.056629788130521774, -0.10857837647199631, 0.03155398741364479, -0.18337298929691315, 0.026131518185138702, -0.04260066896677017, 0.03233214095234871, -0.062456242740154266, 0.14821909368038177, -0.05992075055837631, 0.05186374858021736, 0.03829910606145859, 0.056728821247816086, 0.06560506671667099, 0.17248399555683136, -0.18650805950164795, -0.07204350084066391, 0.06338039040565491, -0.13450779020786285, -0.18400517106056213, 0.11766280233860016, -0.041991472244262695, 0.14520587027072906, 0.04629430174827576, 0.1809457540512085, 0.010363752953708172, -0.04838571324944496, 0.004798750393092632, -0.018484413623809814, -0.1400793194770813, -0.08285916596651077, 0.060130275785923004, 0.02791973203420639, -0.24226145446300507, 0.05076981708407402, 0.10651803016662598, 0.09039483219385147, -0.057186663150787354, -0.08841150999069214, -0.0068837315775454044, -0.08107643574476242, 0.012099972926080227, 0.016037560999393463, 0.06044084206223488, -0.058584339916706085, -0.00033382189576514065, -0.06623714417219162, 0.12129698693752289, 0.10021467506885529, -0.08931548148393631, -0.07120272517204285, 0.12842847406864166, -0.1348201036453247, -0.006955666001886129, -0.1069534495472908, -0.05071276053786278, 0.04069856181740761, 0.04314643517136574, 0.021091584116220474, 0.07769329845905304, 0.020385542884469032, 0.038784679025411606, 0.027371058240532875, -0.050237514078617096, 0.12630780041217804, 0.011275689117610455, -0.08328362554311752, -0.07961344718933105, 0.0877332016825676, -0.0885230079293251, 0.2073415368795395, -0.13436739146709442, -0.049988776445388794, -0.04006234556436539, 0.045269448310136795, 0.0453992635011673, 0.037016820162534714, 0.009432201273739338, 0.04118786007165909, -0.08254340291023254, 0.021916398778557777, 0.034249234944581985, -0.012326258234679699, -0.04086802154779434, 0.10776101052761078, -0.15108199417591095, 0.08388687670230865, 0.11995264887809753, -0.000009497006431047339, -0.0838470309972763, -0.1220695897936821, -0.03559883311390877, -0.05140119791030884, -0.021636957302689552, 0.006859134882688522, -0.033391181379556656, -0.019636094570159912, 0.12135110050439835, -0.025811925530433655, 0.031437769532203674, 0.029357917606830597, -0.08012136071920395, -0.0420864000916481, 0.0852876752614975, 0.12500889599323273, -0.1435554027557373, 0.13065363466739655, 0.14666888117790222, -0.04233798384666443, 0.14271925389766693, 0.029267853125929832, -0.0727551281452179, -0.03787902370095253, -0.09183169901371002, -0.013959665782749653, 0.1171075627207756, -0.018168354406952858, 0.005552017129957676, 0.08567727357149124, -0.0268334299325943, 0.017899474129080772, -0.09182674437761307, -0.07337780296802521, -0.02487361431121826, 0.10755345970392227, -0.04534567520022392, 0.07466654479503632, -0.02853018045425415, 0.08653271943330765, 0.006964027415961027, -0.07557304948568344, 0.07239717990159988, 0.020169133320450783, -0.08662440627813339, 0.16736793518066406, -0.077063649892807, -0.2868773937225342, -0.14599516987800598, -0.12474797666072845, -0.06568080931901932, 0.0353705994784832, 0.0484941340982914, -0.10642780363559723, -0.07306421548128128, -0.020039575174450874, -0.03597636893391609, -0.028855398297309875, -0.03491813689470291, -0.1097382977604866, -0.022612979635596275, 0.0022199219092726707, -0.057499613612890244, -0.012968946248292923, -0.027958674356341362, -0.025438115000724792, 0.1455317884683609, -0.05434359982609749, 0.146872878074646, 0.1579410284757614, 0.039961136877536774, 0.027915900573134422, -0.03402874246239662, 0.2616114914417267, -0.08908458799123764, 0.014348330907523632, 0.07715074717998505, -0.0493452250957489, 0.047919757664203644, 0.22772666811943054, -0.012170816771686077, -0.09871505945920944, 0.06463900953531265, -0.02961251325905323, -0.06988993287086487, -0.14953920245170593, -0.1333654373884201, -0.020389480516314507, 0.11740045994520187, 0.041961975395679474, 0.025112664327025414, 0.1849193423986435, 0.16058509051799774, 0.06622851639986038, 0.016789643093943596, -0.18266119062900543, 0.044915821403265, 0.009729857556521893, -0.04853571578860283, 0.13938619196414948, -0.08248407393693924, -0.08250142633914948, 0.15343846380710602, 0.06284890323877335, 0.14508026838302612, 0.10787343978881836, -0.018733520060777664, 0.04033128544688225, 0.12015511095523834, 0.10560096055269241, 0.06772640347480774, 0.05819425359368324, -0.06550776958465576, -0.040800850838422775, 0.011630605906248093, -0.10856808722019196, 0.13345679640769958, 0.10352858155965805, -0.03843209519982338, -0.03733590617775917, 0.02537788450717926, 0.046039920300245285, 0.007938072085380554, 0.12718906998634338, -0.2687557339668274, 0.02116347663104534, 0.02987603098154068, 0.013491996563971043, -0.08212942630052567, -0.0021705403923988342, -0.03814421221613884, -0.12334194779396057, -0.010327736847102642, 0.007828529924154282, 0.07705414295196533, -0.016480382531881332, 0.021391088142991066, -0.12758277356624603, 0.04710724949836731, -0.06433483213186264, 0.1277586668729782, -0.298197478055954, 0.22570066154003143, 0.013691309839487076, -0.03200870379805565, -0.10767995566129684, -0.03644900768995285, 0.07369281351566315, 0.07514824718236923, 0.11373323947191238, -0.017229178920388222, -0.10029225796461105, -0.19090107083320618, -0.09886771440505981, 0.011617756448686123, -0.03222862258553505, -0.029823405668139458, -0.00016594838234595954, -0.00963770505040884, 0.06405115127563477, -0.043078068643808365, 0.04627193138003349, -0.08989541977643967, -0.06258530169725418, 0.006066399160772562, 0.007059984374791384, 0.019284434616565704, 0.020971765741705894, -0.07086935639381409, -0.03683516010642052, 0.04162418469786644, 0.057264626026153564, -0.010319383814930916, -0.14065273106098175, 0.02324555814266205, 0.054155655205249786, -0.09082149714231491, 0.01165886502712965, -0.06278243660926819, 0.05172905698418617, 0.001869161962531507, -0.039828166365623474, 0.10731881856918335, -0.10293101519346237, -0.021974215283989906, -0.10442820191383362, 0.03408031165599823, -0.004774925298988819, 0.043298497796058655, 0.03528233617544174, 0.03648822382092476, -0.11541330814361572, -0.06614650040864944, 0.12288099527359009, -0.08346182107925415, -0.020243598148226738, 0.1115124523639679, 0.005498342681676149, -0.11012208461761475, -0.04188349097967148, -0.0855867937207222, 0.20355762541294098, 0.22891658544540405, -0.06341390311717987, 0.08677666634321213, 0.19610801339149475, -0.04551485553383827, -0.28344419598579407, -0.02642287313938141, -0.015749692916870117, 0.06380680948495865, 0.15195287764072418, -0.1474258303642273, 0.06806119531393051, 0.09141207486391068, -0.07410326600074768, 0.09648167341947556, -0.03514791652560234, -0.09266111254692078, 0.2237417995929718, 0.03204182907938957, 0.2525814473628998, -0.10293249785900116, -0.06065065413713455, -0.10280683636665344, 0.03215531259775162, 0.04406607523560524, -0.02058308571577072, 0.06661590188741684, -0.04606328159570694, 0.15081219375133514, 0.030938416719436646, -0.04759521409869194, 0.1592072993516922, 0.0050740111619234085, 0.10342077165842056, -0.12229406833648682, -0.032485708594322205, -0.008502556942403316, -0.046014148741960526, 0.08030399680137634, 0.007883029989898205, 0.030674288049340248, -0.19134505093097687, -0.029955344274640083, -0.017443237826228142, 0.10077906399965286, 0.014557622373104095, -0.10225749760866165, -0.05774019658565521, 0.06601892411708832, -0.0940379649400711, -0.039634477347135544, -0.04859321191906929, -0.015287148766219616, 0.02507178671658039, 0.14102205634117126, 0.10254260897636414, -0.004136018455028534, 0.036161888390779495, -0.02689751610159874, -0.07305193692445755, 0.0764712393283844, -0.16690649092197418, 0.060144297778606415, 0.09847240895032883, -0.03372342884540558, 0.1435469537973404, 0.00045298869372345507, -0.09307976812124252, 0.055519524961709976, 0.14996717870235443, -0.13323087990283966, 0.034613173454999924, -0.057436902076005936, 0.042744409292936325, -0.01921682618558407, -0.0249821525067091, 0.05232776701450348, 0.030417555943131447, -0.014064542017877102, 0.00911793764680624, 0.01352733001112938, 0.004944832995533943, 0.15152467787265778, 0.10850527882575989, 0.010051565244793892, -0.13346779346466064, 0.08876010775566101, 0.062240034341812134, 0.00670131528750062, 0.06143111363053322, -0.008337832987308502, -0.0659433975815773, -0.11112213134765625, -0.11165754497051239, 0.2587420642375946, -0.1952839195728302, -0.10989263653755188, -0.01945941150188446, -0.05370058864355087, 0.0011616472620517015, 0.0022339809220284224, 0.09796274453401566, 0.023113097995519638, -0.0062018162570893764, -0.10097160190343857, -0.09621388465166092, 0.08609219640493393, 0.044251810759305954, 0.03799472004175186, -0.12004698067903519, -0.05224360525608063, 0.009337315335869789, 0.12154243141412735, -0.08707908540964127, -0.10017842054367065, -0.1528269350528717, 0.006991370115429163, -0.2031956911087036, -0.037410225719213486, -0.016142569482326508, -0.004412688780575991, 0.05212600156664848, -0.05349696800112724, -0.052171602845191956, -0.019249871373176575, -0.1209922507405281, 0.06856409460306168, 0.04205174744129181, 0.09282079339027405, -0.025336500257253647, -0.03073269873857498, 0.09260448813438416, 0.03496618941426277, 0.0884815901517868, 0.016829924657940865, 0.034495219588279724, 0.06489820778369904, -0.052615415304899216, 0.004063057247549295, 0.02542479895055294, -0.0031688271556049585, 0.09166717529296875, -0.06381253153085709, -0.01048700325191021, 0.05466768145561218, 0.004707095213234425, 0.029197674244642258, 0.07555036246776581, -0.09570431709289551, 0.04193224012851715, 0.03685178607702255, -0.17027166485786438, -0.04295922443270683, -0.018153954297304153, 0.05319233238697052, 0.0492117777466774, 0.12792038917541504, -0.005514782387763262, 0.03255880996584892, -0.07856018841266632, 0.0029882590752094984, -0.04396697133779526, -0.045671503990888596, -0.07060760259628296, -0.07400939613580704, 0.015965502709150314, 0.011114654131233692, 0.29147857427597046, 0.08159924298524857, 0.07060777395963669, -0.014014977030456066, 0.17582829296588898, 0.02627057023346424, -0.02628052607178688, 0.11012697219848633, 0.09898417443037033, 0.013193925842642784, -0.0753975510597229, 0.09677127748727798, 0.00993302557617426, -0.005567027721554041, -0.004651089198887348, -0.09023885428905487, -0.03526013717055321, 0.010490048676729202, 0.029214339330792427, -0.10216866433620453, 0.0264593418687582, -0.10040511190891266, -0.12931112945079803, -0.002402203157544136, 0.0353875532746315, 0.0725640058517456, 0.12945207953453064, 0.013478297740221024, 0.002351650968194008, -0.030794009566307068, -0.06976211816072464, -0.11686741560697556, -0.0989004522562027, -0.11301390081644058, -0.10724703222513199, 0.04002910852432251, -0.029359234496951103, -0.05209091305732727, 0.15341024100780487, 0.02163931541144848, -0.09425801038742065, 0.10823304206132889, -0.07195750623941422, 0.0040973518043756485, 0.002384695690125227, -0.0458521842956543, -0.05785023793578148, -0.07055748254060745, 0.03210888430476189, -0.04389623925089836, 0.03663765639066696, 0.0014175593387335539, -0.02724579907953739, -0.05474420264363289, 0.03709034249186516, -0.0727296993136406, -0.07486389577388763, -0.058194100856781006, 0.02388320118188858, -0.05228303000330925, 0.05179488658905029, 0.006731678731739521, 0.10407758504152298, 0.008695491589605808, 0.1134779080748558, 0.010235789231956005, 0.0413748137652874, -0.15217271447181702, 0.2900606095790863, -0.05101916566491127, 0.0554555281996727, -0.04564758390188217, -0.09301729500293732, 0.012793297879397869, 0.23451969027519226, 0.1788756549358368, -0.12325698137283325, -0.052243586629629135, -0.056515730917453766, 0.01427558995783329, -0.07577825337648392, 0.13189448416233063, -0.017875926569104195, 0.04926099255681038, -0.04691578447818756, 0.0757252424955368, -0.05121570825576782, -0.0907052606344223, 0.04061564803123474, 0.0434841588139534, 0.05283863842487335, -0.014910542406141758, -0.11551754921674728, 0.08715708553791046, -0.10895314812660217, 0.08629798889160156, -0.008392637595534325, -0.051838234066963196, -0.12062545865774155, 0.03285539895296097, 0.06430133432149887, 0.04710358753800392, 0.05313197150826454, -0.06880572438240051, 0.020539280027151108, 0.0025906760711222887, -0.05152111500501633, -0.16142353415489197, -0.13505615293979645, 0.10227469354867935, -0.01984999142587185, 0.16317452490329742, -0.034341637045145035, 0.09753241389989853, 0.07614199817180634, 0.006921784486621618, -0.12987950444221497, 0.09064920246601105, 0.009506799280643463, -0.02167324908077717, 0.06512557715177536, 0.08775917440652847, 0.056212637573480606, -0.0510188490152359, 0.04744147136807442, -0.0769743025302887, 0.032369464635849, -0.0980033203959465, -0.005362431984394789, -0.0551898255944252, 0.10557229071855545, -0.05135573819279671, 0.14614789187908173, 0.07547786831855774, -0.017131071537733078, 0.0023048853036016226, -0.07083071023225784, 0.07880859076976776, -0.005143814254552126, -0.07884279638528824, -0.03305993974208832, -0.12794044613838196, 0.028755074366927147, 0.04832591488957405, -0.04194290190935135, -0.27163124084472656, 0.02237108163535595, -0.16390256583690643, -0.024110712110996246, 0.005475935991853476, 0.10156815499067307, 0.10217460244894028, 0.05717647448182106, -0.02682356908917427, -0.11890561133623123, 0.025424348190426826, 0.039314016699790955, -0.021334627643227577, -0.11474673449993134 ]
3b5f0411b440520214ae9a59eb98dc8aa3646992
# Dataset Card for "blip_clipseg_inpainting_ip2p_data_test" [More Information needed](https://github.com/huggingface/datasets/blob/main/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
playgroundai/blip_clipseg_inpainting_ip2p_data_test
[ "region:us" ]
2023-02-08T09:26:33+00:00
{"dataset_info": {"features": [{"name": "text", "dtype": "string"}, {"name": "chosen_item", "dtype": "string"}, {"name": "og_image", "dtype": "image"}, {"name": "mask", "dtype": "image"}, {"name": "output_image", "dtype": "image"}], "splits": [{"name": "train", "num_bytes": 650403547.0, "num_examples": 825}], "download_size": 650341793, "dataset_size": 650403547.0}}
2023-02-08T09:26:41+00:00
[]
[]
TAGS #region-us
# Dataset Card for "blip_clipseg_inpainting_ip2p_data_test" More Information needed
[ "# Dataset Card for \"blip_clipseg_inpainting_ip2p_data_test\"\n\nMore Information needed" ]
[ "TAGS\n#region-us \n", "# Dataset Card for \"blip_clipseg_inpainting_ip2p_data_test\"\n\nMore Information needed" ]
[ 6, 27 ]
[ "passage: TAGS\n#region-us \n# Dataset Card for \"blip_clipseg_inpainting_ip2p_data_test\"\n\nMore Information needed" ]
[ -0.16019520163536072, 0.07558052986860275, -0.005179604981094599, 0.03326171636581421, -0.06519749015569687, 0.01028533186763525, 0.15426279604434967, 0.1370060294866562, 0.1311371773481369, -0.0012104833731427789, 0.16470365226268768, 0.05105578899383545, 0.05333732068538666, 0.26071712374687195, -0.03496602550148964, -0.10210638493299484, 0.0012183648068457842, 0.08104167133569717, 0.04791005700826645, 0.18450884521007538, 0.08285730332136154, -0.02837194874882698, 0.05395793914794922, -0.03504263609647751, -0.2323390543460846, 0.04296064004302025, -0.033808350563049316, -0.06379788368940353, 0.08701229095458984, -0.08180631697177887, 0.140366792678833, 0.06636591255664825, -0.0026202895678579807, -0.1360854059457779, 0.00958950538188219, -0.041782818734645844, -0.013776236213743687, 0.048805397003889084, 0.11537715792655945, -0.05834244564175606, -0.17647992074489594, 0.025726953521370888, 0.016488030552864075, -0.02880069613456726, -0.10037443786859512, -0.12295763939619064, -0.0688343271613121, 0.05295819416642189, 0.035646952688694, -0.04995369911193848, 0.03212294355034828, 0.22956152260303497, -0.1769399493932724, 0.06502524018287659, 0.1320510357618332, -0.06455056369304657, 0.03905068710446358, 0.07811696082353592, 0.06446092575788498, 0.03641781955957413, 0.021128445863723755, 0.003192910458892584, 0.08792579174041748, 0.013860365375876427, -0.15956537425518036, -0.0426873080432415, -0.14590659737586975, 0.08861429989337921, -0.03490154445171356, -0.1301402598619461, 0.25327593088150024, -0.03743182495236397, -0.07258651405572891, 0.002570332260802388, -0.019595587626099586, -0.045460138469934464, 0.07810366153717041, 0.03488330915570259, -0.003173488425090909, -0.02857171557843685, -0.027095617726445198, 0.03380298987030983, -0.08009741455316544, -0.21238306164741516, -0.08217716217041016, 0.0674462541937828, 0.01439842488616705, 0.10838927328586578, -0.19047001004219055, 0.10937987267971039, 0.03129582479596138, -0.05070618540048599, -0.06434924155473709, -0.12166622281074524, -0.011099858209490776, 0.01020113192498684, -0.06309058517217636, 0.06567589938640594, 0.05291255563497543, 0.26174408197402954, 0.1750854104757309, 0.0479777455329895, -0.07860900461673737, 0.14240022003650665, 0.15618564188480377, -0.05093153566122055, 0.079044871032238, 0.06337250024080276, 0.013260254636406898, -0.08207014203071594, 0.019686244428157806, -0.04544723778963089, -0.02453562617301941, -0.06636087596416473, 0.04855266213417053, 0.08136654645204544, -0.011366048827767372, -0.13319994509220123, -0.18025243282318115, -0.056403618305921555, 0.07081852853298187, -0.1350729912519455, 0.028341708704829216, -0.0003874254471156746, -0.056122612208127975, -0.058209311217069626, 0.046552903950214386, -0.09664027392864227, -0.026553617790341377, -0.009840278886258602, -0.01674852892756462, 0.057261157780885696, -0.07100415229797363, -0.006075684912502766, 0.07606421411037445, -0.02608194574713707, 0.03676401451230049, -0.0909687876701355, -0.3398094177246094, 0.013251340948045254, 0.048719607293605804, -0.026505889371037483, 0.13227525353431702, 0.024584641680121422, 0.08361944556236267, -0.021234309300780296, -0.06320169568061829, -0.050253383815288544, -0.03837054967880249, 0.11786386370658875, 0.07834747433662415, 0.09114065021276474, -0.17681078612804413, 0.017805615440011024, -0.16562321782112122, 0.027421386912465096, -0.13365238904953003, 0.016737021505832672, -0.1180606558918953, -0.10167086869478226, -0.02284219115972519, -0.09451018273830414, -0.037787314504384995, 0.03794369101524353, 0.044261276721954346, 0.17880485951900482, -0.2409091591835022, -0.03912504389882088, 0.23497885465621948, -0.1912420392036438, -0.1301341950893402, 0.047830428928136826, -0.000528658798430115, 0.02528410777449608, 0.028080131858587265, 0.27041497826576233, -0.0530695766210556, -0.10179170221090317, -0.013784263283014297, 0.11428191512823105, -0.10931885987520218, -0.1428884118795395, 0.1409854292869568, -0.024049250409007072, -0.07721220701932907, 0.025732824578881264, 0.02595006674528122, -0.024081937968730927, -0.06372307240962982, -0.04158124700188637, -0.060815148055553436, 0.003983619157224894, 0.1320616602897644, 0.046888627111911774, -0.007888969965279102, -0.07388941943645477, 0.04828491061925888, 0.15910586714744568, 0.07274546474218369, -0.0077710528858006, 0.008283132687211037, -0.06675568222999573, 0.1479620486497879, -0.10962111502885818, -0.050216395407915115, -0.1318219155073166, -0.0053710187785327435, 0.0005810935399495065, 0.01810131035745144, -0.011151229962706566, -0.05767330527305603, 0.04582996666431427, -0.03626105561852455, 0.021561866626143456, -0.0011426726123318076, -0.04105248302221298, -0.04242885485291481, 0.011393294669687748, 0.010739105753600597, -0.03132016211748123, -0.06643964350223541, 0.029758943244814873, -0.03240078687667847, -0.028610648587346077, 0.07062019407749176, 0.112972192466259, 0.017456958070397377, -0.049421992152929306, 0.05120444297790527, -0.040021322667598724, -0.06433069705963135, -0.06464779376983643, 0.013977260328829288, -0.01119586918503046, 0.06324432045221329, 0.024717193096876144, 0.1140020489692688, 0.13100042939186096, 0.1428949385881424, -0.11049830168485641, -0.037493813782930374, -0.14539650082588196, -0.05277778580784798, -0.011826908215880394, -0.14207260310649872, -0.022237170487642288, -0.07996083796024323, -0.022865701466798782, 0.04005276784300804, -0.15107493102550507, -0.027777494862675667, -0.00022095703752711415, -0.0794641375541687, -0.03407377749681473, 0.05759204551577568, 0.06569025665521622, -0.0497543103992939, 0.07278233766555786, 0.17185378074645996, 0.012184414081275463, 0.07131471484899521, -0.05379379913210869, -0.1400679051876068, -0.01869140937924385, 0.0763346403837204, -0.03903890773653984, 0.3140879273414612, -0.05987425148487091, 0.07126166671514511, 0.09008573740720749, -0.0009722182294353843, 0.08411839604377747, -0.09556318074464798, -0.0765179768204689, -0.04415827617049217, -0.03522001579403877, -0.29323989152908325, -0.0023105707950890064, 0.03253651410341263, 0.036533381789922714, -0.08623471856117249, 0.022244662046432495, 0.15531735122203827, 0.009875196032226086, -0.08948687463998795, 0.14425396919250488, -0.12925857305526733, -0.26844877004623413, -0.08595217019319534, 0.008204939775168896, 0.062163352966308594, -0.01255639549344778, -0.015426273457705975, -0.08386825770139694, 0.028623593971133232, 0.016081277281045914, -0.03396671637892723, -0.057223860174417496, 0.0066728307865560055, -0.07565436512231827, 0.01461076457053423, 0.009615983814001083, -0.08495111763477325, 0.03147070109844208, 0.024516383185982704, 0.20325304567813873, 0.2117144614458084, -0.07724976539611816, 0.07100043445825577, 0.08350885659456253, -0.06131089851260185, 0.08724143356084824, 0.02064644545316696, 0.14254556596279144, -0.0629088431596756, 0.005334967281669378, 0.09934317320585251, -0.08732583373785019, -0.0011931605404242873, -0.00012005664029857144, -0.007223962340503931, -0.15154336392879486, 0.0016432341653853655, -0.04221292585134506, -0.11671128123998642, -0.2255748212337494, -0.128679558634758, -0.015548227354884148, 0.05030146241188049, 0.08394394814968109, 0.03022811934351921, -0.14247897267341614, 0.09371320903301239, 0.08934192359447479, -0.021015197038650513, -0.12269618362188339, 0.01558455266058445, -0.04238354414701462, -0.06524524092674255, 0.0010147916618734598, -0.07119663059711456, -0.03751874715089798, 0.10115168243646622, 0.14866498112678528, 0.18652749061584473, 0.002952123060822487, -0.047207701951265335, 0.0615585558116436, 0.18310052156448364, 0.14008748531341553, 0.13038648664951324, 0.08779303729534149, -0.0217778030782938, 0.03649701178073883, -0.013974407687783241, -0.0563436783850193, -0.033222150057554245, 0.023785430938005447, -0.0595988892018795, 0.020566128194332123, -0.23887020349502563, 0.02778412215411663, -0.13171766698360443, 0.17096398770809174, -0.2893242835998535, 0.06222030147910118, -0.00044717779383063316, 0.10528305917978287, -0.1616859883069992, 0.04232439771294594, 0.10060460865497589, -0.10692141205072403, 0.04191876947879791, -0.05868380889296532, 0.06462639570236206, -0.037382207810878754, -0.032591812312603, -0.064396433532238, -0.14615681767463684, -0.003978628199547529, 0.12604238092899323, -0.2182985246181488, 0.12742140889167786, 0.03223861753940582, -0.026274915784597397, -0.0874181017279625, -0.02232196182012558, -0.03867068886756897, 0.0005649030208587646, 0.15949700772762299, 0.021727267652750015, -0.06097029522061348, -0.17958837747573853, -0.12959083914756775, 0.04088074341416359, 0.1101725846529007, 0.09349490702152252, -0.0885491892695427, 0.06578116863965988, 0.09369532018899918, -0.06333702802658081, -0.16534677147865295, -0.2329774796962738, -0.02584174834191799, 0.04396682232618332, -0.09006886929273605, 0.04815521836280823, -0.0407351553440094, -0.04805997014045715, 0.011518942192196846, 0.22141890227794647, -0.09270911663770676, -0.08844630420207977, -0.08064742386341095, 0.13141798973083496, 0.13894139230251312, -0.014765452593564987, -0.00856426078826189, 0.05695429444313049, 0.042090725153684616, -0.04216168820858002, -0.14894302189350128, 0.03779909387230873, -0.07037941366434097, 0.024602005258202553, -0.09838078171014786, 0.08854153007268906, 0.04436744377017021, 0.02319897897541523, 0.07720625400543213, -0.019820665940642357, -0.007207012735307217, -0.07043114304542542, 0.14076738059520721, -0.12769737839698792, 0.02678709477186203, 0.1558612883090973, 0.039375871419906616, 0.13686901330947876, 0.07259446382522583, 0.01708812080323696, 0.14524029195308685, 0.1793496012687683, -0.00804910995066166, 0.16351120173931122, 0.10184735059738159, -0.03884245827794075, -0.23010239005088806, 0.07734570652246475, -0.07802838087081909, 0.04901625216007233, 0.06294070929288864, -0.20653346180915833, 0.13485580682754517, 0.1498543918132782, -0.06080208718776703, 0.27184656262397766, -0.23234859108924866, -0.05792525038123131, 0.22755001485347748, 0.06255251914262772, 0.21397538483142853, -0.08908753842115402, -0.12887999415397644, -0.04178588092327118, -0.12696407735347748, 0.16735602915287018, 0.005723294336348772, 0.007501990534365177, -0.1092563346028328, 0.03144039213657379, 0.02345750480890274, -0.061336077749729156, 0.20112553238868713, 0.0026466709095984697, 0.07514121383428574, -0.07887303829193115, 0.05012313276529312, 0.10508503019809723, -0.002595318714156747, 0.09410014748573303, -0.008405318483710289, 0.10449939221143723, -0.21673139929771423, 0.04063631594181061, -0.03810159116983414, 0.08524873107671738, 0.005098252557218075, -0.06321341544389725, -0.0782390683889389, -0.022308984771370888, -0.174922913312912, 0.007871976122260094, 0.04105241224169731, 0.02382105402648449, -0.06049522012472153, 0.017317740246653557, -0.013839813880622387, -0.07232185453176498, -0.08799386769533157, -0.035366833209991455, -0.05097246542572975, 0.09109187126159668, -0.0823293998837471, 0.015874508768320084, 0.12375384569168091, 0.12754492461681366, 0.029893791303038597, 0.06275489181280136, -0.07059618085622787, 0.01046011783182621, 0.14238396286964417, -0.18225820362567902, 0.18949083983898163, 0.04174858331680298, 0.04240983724594116, 0.00739397294819355, -0.011725599877536297, 0.05383682996034622, 0.03154341131448746, -0.029262056574225426, -0.020326655358076096, 0.04653849080204964, -0.11501923203468323, 0.15500813722610474, 0.14082004129886627, 0.055443719029426575, -0.16680635511875153, 0.11575359851121902, -0.02881099469959736, -0.13867618143558502, 0.025748522952198982, -0.05277026444673538, -0.029445435851812363, -0.06285194307565689, 0.11133124679327011, 0.14810489118099213, -0.00614803284406662, -0.07954470068216324, -0.08028555661439896, -0.02705085277557373, 0.040979962795972824, 0.0472666472196579, 0.1187858060002327, 0.08486998826265335, 0.09704568237066269, -0.08298731595277786, -0.03196409344673157, 0.018325289711356163, 0.023818932473659515, 0.06791907548904419, -0.025784490630030632, -0.044562142342329025, -0.04126901924610138, 0.16587281227111816, -0.09238476306200027, -0.059340883046388626, -0.13986895978450775, 0.1047724038362503, -0.09513730555772781, 0.060722172260284424, 0.027755409479141235, -0.02965807542204857, 0.03820116072893143, 0.059379566460847855, -0.01098440308123827, -0.04305865243077278, -0.11885011196136475, 0.10200253129005432, 0.04865294694900513, -0.01862691529095173, -0.13270209729671478, 0.017316563054919243, 0.1626376062631607, -0.03690415620803833, 0.07535870373249054, 0.09931525588035583, -0.022468727082014084, 0.011730900034308434, -0.06617717444896698, -0.13593259453773499, 0.06711994111537933, 0.03198010101914406, -0.010395639576017857, 0.011326459236443043, 0.053681373596191406, 0.11583204567432404, -0.02999122440814972, 0.11274690926074982, 0.12359084188938141, -0.08398467302322388, -0.022267060354351997, -0.1633857637643814, -0.10648174583911896, -0.09489241242408752, 0.01780492067337036, 0.04170483350753784, 0.10985736548900604, -0.0169477928429842, 0.012585243210196495, 0.01738550141453743, -0.08401867002248764, -0.05706595629453659, 0.024681318551301956, 0.0029675166588276625, 0.07288046181201935, 0.10292133688926697, 0.02445223182439804, -0.023353999480605125, 0.3770514726638794, -0.04530279338359833, -0.1255868524312973, -0.048743125051259995, 0.09363486617803574, -0.07051341980695724, -0.002254143822938204, 0.28498318791389465, -0.021029511466622353, -0.0026900123339146376, -0.027535730972886086, 0.043139517307281494, -0.030935782939195633, -0.0263318233191967, 0.14856018126010895, 0.1766505241394043, -0.06579529494047165, 0.04351682960987091, -0.05016162618994713, -0.037099432200193405, -0.0011126457247883081, -0.019605953246355057, 0.106161929666996, 0.0786178931593895, 0.13833002746105194, 0.08093711733818054, -0.03537231683731079, -0.05275299400091171, 0.006131005939096212, 0.023440172895789146, -0.11304740607738495, -0.11064469814300537, -0.10166794061660767, -0.0019060599151998758, -0.15351159870624542, 0.06814658641815186, -0.04805690422654152, 0.0008494866196997464, 0.2719983756542206, 0.04379008337855339, -0.017645971849560738, 0.048461489379405975, -0.01444960106164217, -0.030036410316824913, 0.024097716435790062, -0.04077129438519478, -0.04921260103583336, 0.011405803263187408, -0.042477261275053024, 0.055130068212747574, 0.014160707592964172, 0.04110782966017723, -0.027012798935174942, 0.07011900842189789, -0.04475971311330795, -0.09992079436779022, -0.03673715889453888, -0.05682061240077019, 0.07148052006959915, 0.01119106076657772, 0.10154858231544495, 0.04762573912739754, 0.045183099806308746, -0.006001010071486235, 0.07221483439207077, 0.05175582319498062, -0.012999825179576874, -0.03345290198922157, 0.04835165664553642, -0.09525570273399353, 0.043437808752059937, 0.009742215275764465, -0.0841449499130249, -0.050486598163843155, 0.15307459235191345, 0.02606397680938244, 0.0022119367495179176, -0.05331915616989136, 0.046043358743190765, 0.020997537299990654, 0.03085494041442871, 0.13184398412704468, -0.019542688503861427, 0.18889451026916504, -0.056776612997055054, -0.14593395590782166, -0.0648811087012291, -0.08172846585512161, -0.032593775540590286, 0.03500406816601753, -0.0005398900248110294, -0.08526530116796494, -0.10413111746311188, 0.15295818448066711, -0.10124489665031433, 0.15400075912475586, 0.12552596628665924, -0.05775361508131027, -0.09475617110729218, 0.03045697510242462, 0.06518486142158508, -0.07965061813592911, -0.022063208743929863, -0.1271139234304428, 0.05507991835474968, 0.005664233583956957, -0.030557911843061447, -0.23865127563476562, -0.14562372863292694, 0.029678450897336006, -0.16851525008678436, 0.12337832897901535, 0.025180477648973465, 0.3602708876132965, 0.03970472887158394, 0.019729839637875557, -0.09231795370578766, -0.005065352655947208, -0.025337418541312218, 0.08309035003185272, -0.02171330153942108, 0.1763920933008194, 0.03606899827718735, -0.10705367475748062, 0.06654297560453415, 0.09007102996110916, -0.06753486394882202, -0.017045048996806145, 0.014103053137660027, -0.18168340623378754, -0.007953420281410217, -0.06826130300760269, 0.07265207171440125, -0.02406040020287037, -0.0660821944475174, 0.028468122705817223, -0.07413719594478607, 0.1415662169456482, 0.038630954921245575, -0.11612445116043091, 0.003066292032599449, -0.031244713813066483, -0.024098675698041916, 0.0849737823009491, -0.0677926316857338, -0.1392672210931778, 0.02064894512295723, -0.09139066934585571, -0.07570292800664902, 0.009520024992525578, 0.12610307335853577, 0.10532081872224808, 0.07409202307462692, 0.008760266937315464, -0.01782512106001377, 0.04347362369298935, -0.02262248657643795, -0.049998730421066284, -0.07786241173744202 ]
a4d9ec5912f77e2ff49a61b142b66c7ac37d5d94
# Dataset Card for "team_fortress_characters" [More Information needed](https://github.com/huggingface/datasets/blob/main/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
olly4/team_fortress_characters
[ "region:us" ]
2023-02-08T09:29:04+00:00
{"dataset_info": {"features": [{"name": "image", "dtype": "image"}, {"name": "description", "dtype": "string"}], "splits": [{"name": "train", "num_bytes": 290813521.568, "num_examples": 1466}], "download_size": 284714198, "dataset_size": 290813521.568}}
2023-02-08T12:14:03+00:00
[]
[]
TAGS #region-us
# Dataset Card for "team_fortress_characters" More Information needed
[ "# Dataset Card for \"team_fortress_characters\"\n\nMore Information needed" ]
[ "TAGS\n#region-us \n", "# Dataset Card for \"team_fortress_characters\"\n\nMore Information needed" ]
[ 6, 18 ]
[ "passage: TAGS\n#region-us \n# Dataset Card for \"team_fortress_characters\"\n\nMore Information needed" ]
[ -0.10494820028543472, 0.1292872130870819, -0.004264522809535265, 0.07492804527282715, 0.10820271074771881, 0.10053389519453049, 0.14652599394321442, 0.04573320597410202, 0.12578321993350983, -0.016101963818073273, 0.1203414797782898, -0.011585506610572338, 0.09549706429243088, 0.18023855984210968, 0.029307296499609947, -0.06269599497318268, 0.03729059174656868, 0.012089262716472149, -0.11866296827793121, 0.011800694279372692, -0.012845603749155998, -0.03884456679224968, 0.05066917464137077, -0.05467795580625534, -0.08853133767843246, 0.04892505332827568, -0.01798764429986477, -0.02926066890358925, 0.1260039359331131, -0.16379275918006897, 0.13081161677837372, -0.05777018517255783, -0.06587018817663193, -0.2374291718006134, 0.06218111515045166, 0.008920455351471901, -0.06255345046520233, -0.030230972915887833, -0.005627996288239956, -0.059896957129240036, -0.13104620575904846, -0.02033165656030178, 0.034949351102113724, 0.04028051719069481, -0.11922139674425125, -0.26021069288253784, -0.018003787845373154, -0.04547962173819542, 0.0422256775200367, -0.007012996356934309, 0.09590201824903488, 0.09739156812429428, -0.13028313219547272, 0.030819805338978767, 0.017061391845345497, -0.15455520153045654, 0.012017286382615566, 0.16929303109645844, -0.006501828785985708, 0.08229243755340576, -0.04175818711519241, 0.06766755878925323, -0.00042103230953216553, 0.04805585741996765, -0.1074967011809349, -0.029500264674425125, -0.137844979763031, 0.08669547736644745, 0.01586049422621727, -0.08002180606126785, 0.2271329015493393, -0.03453424945473671, 0.022824913263320923, 0.022136390209197998, 0.05847221612930298, -0.06789881736040115, -0.00739235058426857, 0.02010568045079708, 0.0495266318321228, 0.04305749759078026, -0.030873922631144524, 0.0454421229660511, -0.08981852233409882, -0.12579630315303802, -0.08239201456308365, 0.0564461424946785, -0.03317805752158165, 0.14568737149238586, -0.2831295132637024, 0.00003389375706319697, -0.16904941201210022, -0.013635918498039246, -0.023472433909773827, -0.06601132452487946, -0.0815330222249031, -0.06710643321275711, -0.02178756706416607, -0.055709242820739746, 0.1818910539150238, 0.08875428885221481, 0.04864409193396568, 0.0592317171394825, -0.0718839094042778, 0.05734778195619583, 0.14933231472969055, -0.118301622569561, 0.09191995859146118, 0.036151520907878876, -0.005711094476282597, -0.12173669040203094, -0.031277645379304886, -0.0707816332578659, -0.10642845928668976, 0.021030137315392494, -0.08386874198913574, 0.10514076054096222, 0.017695855349302292, 0.01134935487061739, -0.013179933652281761, -0.004858904983848333, 0.24491874873638153, -0.0823063850402832, 0.004243272822350264, -0.02137325145304203, -0.10055066645145416, -0.14863014221191406, -0.2017015516757965, -0.031653497368097305, 0.013602512888610363, -0.015630310401320457, -0.053306274116039276, -0.07426635921001434, -0.02997439168393612, -0.04533957690000534, 0.16862459480762482, -0.1430332362651825, 0.02580985613167286, -0.09176194667816162, -0.1995972841978073, 0.07612168788909912, 0.03506513684988022, -0.06037973240017891, 0.14493027329444885, -0.044310372322797775, 0.04272495582699776, 0.005464788991957903, -0.06055774912238121, -0.05803503468632698, -0.07445055991411209, -0.02343733422458172, 0.013574110344052315, 0.14159157872200012, -0.18254892528057098, 0.049865420907735825, -0.1444113552570343, 0.04687758535146713, -0.23772552609443665, 0.01746419630944729, -0.0954170972108841, 0.13745591044425964, -0.019901515915989876, 0.05139109119772911, -0.10574813187122345, 0.04083770886063576, -0.0592135451734066, 0.08386923372745514, -0.21026575565338135, -0.05675888806581497, 0.26099392771720886, -0.16282835602760315, -0.28104090690612793, 0.00329848425462842, -0.020145507529377937, -0.08752211183309555, 0.12661519646644592, 0.34301599860191345, 0.13365758955478668, -0.05026012286543846, -0.07004792988300323, 0.11652742326259613, -0.20004262030124664, -0.33925482630729675, 0.09880820661783218, 0.015249854885041714, 0.07937983423471451, 0.04101426154375076, 0.032119352370500565, 0.08255074918270111, -0.0360584519803524, -0.02960926666855812, 0.027785569429397583, -0.15203218162059784, 0.021522311493754387, 0.01510209683328867, 0.09105447679758072, -0.06426756083965302, 0.11561018973588943, 0.03202700987458229, 0.03214525803923607, 0.018415022641420364, 0.009558500722050667, 0.02097940444946289, 0.1578921228647232, -0.0219106525182724, 0.04162711650133133, -0.13321055471897125, -0.20669429004192352, 0.051041681319475174, -0.08412981033325195, 0.005743819288909435, 0.014198568649590015, 0.11498676240444183, -0.013525983318686485, -0.03608759120106697, 0.026149021461606026, 0.11426781862974167, 0.051920268684625626, 0.03549607843160629, -0.12156307697296143, -0.08023317903280258, -0.09808361530303955, -0.012002414092421532, -0.040728189051151276, 0.014768208377063274, 0.15982021391391754, 0.07115404307842255, -0.02421123906970024, -0.024765925481915474, 0.019831446930766106, 0.04071049019694328, -0.006961435079574585, -0.112315833568573, 0.027354968711733818, -0.03964686393737793, -0.0018562163459137082, 0.04863573983311653, -0.03470228984951973, 0.01087079755961895, 0.11794479936361313, -0.03129815310239792, 0.02568241022527218, -0.07964520901441574, 0.0637824684381485, -0.007839196361601353, -0.02717970497906208, -0.031632401049137115, -0.036922115832567215, 0.018229106441140175, 0.06221048906445503, -0.054663341492414474, 0.03670235350728035, 0.0000027317021249473328, -0.020511677488684654, -0.10001306980848312, -0.047183241695165634, 0.06100330501794815, -0.14492915570735931, 0.17480337619781494, 0.049887895584106445, 0.16823339462280273, 0.25401729345321655, 0.008187633939087391, 0.015646198764443398, 0.005154169164597988, -0.03005792386829853, -0.014749626629054546, 0.15891848504543304, -0.13758885860443115, -0.06090078502893448, 0.06014609709382057, 0.0592501237988472, 0.05414225906133652, -0.05798625946044922, -0.12492503970861435, 0.04974660649895668, -0.027740778401494026, -0.22252939641475677, 0.0074724010191857815, 0.011856655590236187, 0.07145257294178009, 0.03553404659032822, -0.05087830498814583, 0.14235568046569824, -0.06581894308328629, -0.03688322752714157, 0.1023133173584938, -0.21052932739257812, -0.3360807001590729, -0.07496903091669083, -0.24464645981788635, 0.053603436797857285, 0.04833154007792473, -0.03387089818716049, -0.23961994051933289, 0.07045330107212067, 0.02824004925787449, -0.0021787770092487335, -0.20871074497699738, -0.038701944053173065, -0.04181739687919617, 0.08425167948007584, -0.09201640635728836, -0.07387617975473404, 0.0012763688573613763, -0.052603669464588165, 0.06838826835155487, 0.06611967086791992, -0.08518216758966446, 0.09134853631258011, 0.0993744507431984, -0.07841186970472336, 0.13862456381320953, -0.10402297973632812, -0.026740116998553276, -0.005270709283649921, 0.02570449374616146, 0.16464897990226746, -0.025927845388650894, 0.022849082946777344, 0.07940512150526047, 0.045554034411907196, -0.06739071756601334, -0.015388191677629948, -0.09778860956430435, -0.22019259631633759, -0.24715057015419006, -0.05879722908139229, -0.07615263015031815, 0.20033438503742218, 0.12823104858398438, 0.07824979722499847, 0.10432315617799759, 0.06393067538738251, 0.16757801175117493, -0.06340818852186203, -0.13049562275409698, 0.01027760375291109, -0.012514470145106316, 0.060502346605062485, -0.06955592334270477, -0.12310828268527985, 0.03990932181477547, 0.08771305531263351, 0.25249484181404114, 0.04977430775761604, 0.10142111778259277, 0.15981802344322205, 0.0015901167644187808, 0.07387103140354156, 0.11888964474201202, 0.1311306208372116, 0.05593172833323479, -0.043027978390455246, 0.023304829373955727, 0.02661054953932762, -0.10352329164743423, -0.019972462207078934, 0.09883754700422287, -0.13018247485160828, -0.07369998842477798, -0.04373364895582199, 0.0049112471751868725, -0.056833360344171524, 0.0983412116765976, -0.16364899277687073, 0.09555727988481522, 0.0326201394200325, 0.04749426245689392, -0.09706532955169678, 0.06812013685703278, 0.13808687031269073, -0.05483231693506241, 0.12810620665550232, 0.026204487308859825, 0.08237063884735107, -0.027630025520920753, 0.06366851180791855, 0.1201128214597702, -0.03461981937289238, -0.01683451421558857, 0.09814310073852539, -0.07042565196752548, 0.181238055229187, 0.018810242414474487, -0.04526284709572792, -0.10776834934949875, -0.07632553577423096, -0.048478901386260986, -0.06683135032653809, 0.04418977349996567, 0.061224061995744705, -0.19539621472358704, -0.19938795268535614, -0.02189445309340954, 0.002285553840920329, 0.059925999492406845, 0.008145034313201904, -0.07042252272367477, 0.09246742725372314, 0.0016484899679198861, 0.005737368483096361, -0.13966919481754303, 0.019692864269018173, -0.08596015721559525, -0.06551175564527512, 0.11399222910404205, -0.08465993404388428, -0.022191226482391357, 0.08076424151659012, -0.08159352838993073, -0.014867829158902168, 0.24933944642543793, 0.023786116391420364, -0.09743831306695938, 0.06919975578784943, 0.02924487181007862, -0.016121840104460716, 0.0814928337931633, -0.05263703316450119, 0.038319140672683716, -0.09065844863653183, -0.1331489086151123, 0.03246452286839485, -0.08196137845516205, 0.18233928084373474, -0.13677069544792175, 0.08658932894468307, 0.06737605482339859, 0.045801449567079544, 0.02319062128663063, 0.007271075155586004, 0.04603899270296097, -0.034911371767520905, 0.18259909749031067, -0.28948184847831726, 0.004427899140864611, 0.13996078073978424, 0.12578584253787994, 0.19457030296325684, 0.06100459769368172, -0.05276653915643692, 0.2803880274295807, 0.15947739779949188, -0.0926910787820816, 0.1828962117433548, 0.05101742595434189, -0.013730754144489765, -0.2404755800962448, -0.06919407099485397, -0.15470437705516815, -0.0569123849272728, 0.10869275033473969, -0.22103241086006165, 0.12786279618740082, 0.06379979848861694, 0.001811270252801478, 0.22919927537441254, -0.047519199550151825, 0.009007752873003483, 0.19680210947990417, 0.02275599166750908, 0.16386006772518158, -0.1468058079481125, -0.04558104649186134, -0.09070922434329987, -0.08093241602182388, 0.0803917646408081, -0.1287887841463089, 0.02308066003024578, -0.04730745032429695, 0.04247698560357094, -0.04825671762228012, -0.06686756014823914, 0.1553073227405548, 0.18848790228366852, 0.07937347888946533, -0.03496468439698219, -0.12139387428760529, 0.21179774403572083, -0.08060664683580399, 0.004477768205106258, -0.007387548219412565, -0.06405562162399292, -0.15995924174785614, 0.06000775098800659, 0.020359907299280167, -0.015501022338867188, 0.08790706843137741, 0.0102297468110919, -0.062306348234415054, 0.04778166860342026, -0.10860946029424667, 0.024589089676737785, 0.1591501384973526, 0.006199871655553579, 0.20524634420871735, 0.13835597038269043, 0.10132528841495514, 0.03142696991562843, 0.04462263733148575, -0.009334447793662548, -0.06589315086603165, 0.022258354350924492, -0.07789593189954758, -0.017219869419932365, 0.08717293292284012, 0.01129855401813984, -0.024902092292904854, 0.07129774242639542, -0.04167502373456955, 0.029534926638007164, 0.10007970780134201, -0.02577279508113861, -0.039394401013851166, 0.12052411586046219, 0.014238257892429829, 0.02963300608098507, 0.05951201543211937, -0.00781102804467082, 0.03927375003695488, -0.021305156871676445, -0.03906354308128357, 0.0007575643830932677, -0.08767199516296387, 0.08518050611019135, 0.11582715809345245, 0.09380722045898438, -0.1822504848241806, 0.25001853704452515, 0.004774865228682756, -0.0006414055824279785, 0.05698292702436447, -0.03362417593598366, -0.07973991334438324, -0.0849805399775505, 0.019313080236315727, 0.11856988817453384, 0.07885970175266266, -0.202654168009758, -0.04975808784365654, -0.13940103352069855, 0.059456873685121536, 0.23644232749938965, 0.019390156492590904, 0.10064079612493515, -0.01899421215057373, 0.006026510149240494, -0.01714387536048889, -0.049735017120838165, -0.09569098055362701, 0.003530623856931925, -0.07710128277540207, -0.11883970350027084, -0.02441634051501751, 0.14202342927455902, -0.04705211892724037, -0.07916780561208725, -0.1591596156358719, 0.11082044988870621, -0.16681136190891266, -0.03218165785074234, -0.037688709795475006, -0.023212900385260582, 0.0278911292552948, 0.02296041138470173, -0.011464579030871391, -0.08909159153699875, -0.1350891888141632, 0.13016997277736664, 0.06572287529706955, 0.004651383496820927, -0.10483864694833755, -0.00970382522791624, 0.042233649641275406, 0.025075525045394897, 0.04882664605975151, 0.16585925221443176, -0.026155326515436172, 0.1118466928601265, -0.2214963138103485, -0.12223245203495026, 0.039660293608903885, 0.05151081830263138, 0.10016745328903198, 0.05843539908528328, -0.023780422285199165, 0.04410511255264282, -0.14224694669246674, 0.06631289422512054, -0.09338531643152237, -0.012568154372274876, 0.05461115762591362, -0.01699315942823887, -0.06144366040825844, -0.011182302609086037, -0.011933178640902042, 0.3052218556404114, -0.044644106179475784, -0.05750739946961403, 0.08733105659484863, 0.05095559358596802, -0.10366736352443695, -0.04313421994447708, -0.01985553279519081, -0.12018566578626633, -0.011107153259217739, 0.07975917309522629, 0.0703122690320015, 0.021554725244641304, 0.45501694083213806, -0.012861856259405613, -0.15993346273899078, -0.054442379623651505, 0.12586340308189392, 0.07109592109918594, 0.04174187034368515, 0.16681037843227386, 0.0383598767220974, -0.0768594965338707, 0.07154666632413864, 0.06609681993722916, 0.005016298498958349, 0.03597366437315941, 0.22825506329536438, 0.03932088240981102, 0.0626840740442276, 0.014899834990501404, 0.1235232874751091, 0.0455692820250988, 0.12328396737575531, -0.09196058660745621, 0.03032083995640278, -0.039692919701337814, 0.04705611243844032, 0.06749822199344635, 0.013424686156213284, -0.028252823278307915, 0.11715187132358551, -0.09284580498933792, -0.06937093287706375, -0.07341163605451584, -0.14785465598106384, 0.033521946519613266, -0.18015694618225098, 0.0051656137220561504, -0.08363010734319687, -0.05703016743063927, 0.32804766297340393, 0.06942929327487946, 0.05930883809924126, 0.1359645575284958, 0.03128674626350403, 0.08380736410617828, 0.011963548138737679, -0.07397349923849106, -0.02383953519165516, 0.016118459403514862, -0.011087500490248203, 0.01305881142616272, -0.03910057991743088, -0.033061470836400986, -0.03969699889421463, 0.06722310930490494, 0.08178676664829254, -0.13901330530643463, -0.10388042777776718, -0.0334811806678772, 0.017425602301955223, -0.11033175885677338, 0.03548107668757439, 0.05907314270734787, -0.01896717958152294, 0.02302396669983864, -0.01917152665555477, 0.08402691036462784, -0.03539300337433815, 0.006888537667691708, 0.015996545553207397, -0.05313633009791374, 0.0029372412245720625, -0.04013983532786369, -0.055887676775455475, -0.05089941993355751, 0.13614797592163086, 0.3818649649620056, -0.029245350509881973, -0.014150532893836498, -0.0463978610932827, 0.02291991375386715, 0.08927927911281586, 0.1981542557477951, -0.016486769542098045, -0.04686864838004112, -0.0728726014494896, -0.07703884690999985, -0.010094241239130497, -0.03221885487437248, -0.005255666095763445, 0.018917489796876907, 0.16309186816215515, 0.019193710759282112, -0.11662714928388596, 0.1435403823852539, -0.1976718008518219, 0.14637361466884613, 0.03763196989893913, -0.07640661299228668, -0.07429839670658112, -0.04249235615134239, 0.08896340429782867, 0.023286273702979088, 0.05262056365609169, -0.049541883170604706, 0.004535030107945204, -0.07264568656682968, 0.0199426356703043, -0.27238067984580994, -0.2511368691921234, 0.11665157228708267, -0.08119910955429077, 0.0667245164513588, -0.16273213922977448, 0.013953630812466145, 0.13203199207782745, 0.046813156455755234, -0.02703006938099861, -0.10277236253023148, 0.038054343312978745, 0.12500227987766266, -0.08864977210760117, -0.00044256795081309974, -0.023979637771844864, 0.04548170045018196, 0.053030021488666534, -0.007174104452133179, -0.0018818835960701108, 0.055446188896894455, -0.01082570943981409, -0.05902572348713875, -0.011082719080150127, -0.0022225144784897566, 0.0759742259979248, 0.03387513756752014, -0.05556124448776245, 0.0014282272895798087, 0.008067799732089043, -0.015273353084921837, 0.05277487263083458, -0.11488024145364761, -0.12438245862722397, 0.020431552082300186, -0.08360124379396439, 0.08617661893367767, -0.05766290798783302, -0.14227049052715302, -0.0016049593687057495, -0.1338997781276703, -0.03202853724360466, -0.01855730451643467, 0.007859376259148121, 0.1018686443567276, 0.13746732473373413, -0.0751030445098877, 0.13473396003246307, 0.07293850928544998, 0.10047604143619537, -0.05882405489683151, -0.12901164591312408 ]
a0ba26c9fcff78388f03039d063df07c4e9ef53d
# Dataset Card for "dummy_image_data" [More Information needed](https://github.com/huggingface/datasets/blob/main/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
patrickvonplaten/dummy_image_data
[ "region:us" ]
2023-02-08T10:15:47+00:00
{"dataset_info": {"features": [{"name": "image", "dtype": "image"}, {"name": "text", "dtype": "string"}], "splits": [{"name": "train", "num_bytes": 1944983.0, "num_examples": 20}], "download_size": 1690123, "dataset_size": 1944983.0}}
2023-02-08T10:33:43+00:00
[]
[]
TAGS #region-us
# Dataset Card for "dummy_image_data" More Information needed
[ "# Dataset Card for \"dummy_image_data\"\n\nMore Information needed" ]
[ "TAGS\n#region-us \n", "# Dataset Card for \"dummy_image_data\"\n\nMore Information needed" ]
[ 6, 16 ]
[ "passage: TAGS\n#region-us \n# Dataset Card for \"dummy_image_data\"\n\nMore Information needed" ]
[ -0.07978297024965286, 0.18190334737300873, -0.004199317656457424, 0.03616415709257126, 0.13466663658618927, 0.10200480371713638, 0.14925098419189453, 0.07891882956027985, 0.10806714743375778, -0.0017323070205748081, 0.12690404057502747, 0.11683022230863571, 0.06530061364173889, 0.12144723534584045, -0.01657356135547161, -0.1411990225315094, 0.08549955487251282, -0.0018927111523225904, 0.032676320523023605, 0.027183454483747482, 0.0052628894336521626, -0.11597131192684174, 0.07744285464286804, -0.12554629147052765, -0.23501113057136536, 0.06277036666870117, -0.039573784917593, -0.006430545821785927, 0.04781985282897949, -0.07777369767427444, 0.0840061604976654, 0.04048299789428711, 0.017376478761434555, -0.11204393208026886, 0.03377339988946915, -0.01026554312556982, -0.06173550710082054, 0.04132756218314171, 0.07478342950344086, -0.06605815887451172, -0.08535656332969666, 0.07422054558992386, -0.033507201820611954, -0.007113045081496239, -0.08966986835002899, -0.23478807508945465, -0.06567531079053879, 0.025340935215353966, 0.037302449345588684, -0.05282886326313019, 0.051251448690891266, 0.11749463528394699, -0.06896258145570755, 0.05373772233724594, 0.138831228017807, 0.1378142535686493, 0.036951519548892975, 0.18638618290424347, -0.0785379409790039, 0.09546399116516113, -0.02474871464073658, 0.05868087708950043, 0.07265321910381317, 0.017532512545585632, -0.14534440636634827, 0.00478518707677722, -0.12094222009181976, 0.06615342944860458, 0.010851760394871235, -0.11875612288713455, 0.18939124047756195, 0.052599530667066574, -0.005287076346576214, 0.025741804391145706, -0.004039557185024023, -0.07061295956373215, -0.04253359138965607, 0.06649576127529144, 0.04022882506251335, 0.028326956555247307, -0.07357207685709, 0.01924232393503189, -0.1069137379527092, -0.061412516981363297, -0.1561848521232605, -0.04092295467853546, -0.05701691284775734, 0.18008151650428772, -0.14672395586967468, -0.013557533733546734, -0.1201535165309906, -0.02613660879433155, -0.006469199433922768, -0.1069415882229805, 0.04985688254237175, 0.046210385859012604, 0.004168297164142132, -0.02465834468603134, 0.14650125801563263, -0.015478975139558315, 0.03202886879444122, 0.05730371177196503, -0.1491856426000595, 0.15442560613155365, 0.19432419538497925, -0.047407008707523346, -0.09291525930166245, 0.1529591679573059, -0.05952577292919159, -0.0944104939699173, -0.0006350476760417223, -0.08672963082790375, -0.10794417560100555, 0.04995906352996826, -0.034137822687625885, 0.06194610893726349, -0.03813741356134415, -0.07306228578090668, -0.09519784897565842, -0.04566819965839386, 0.21475113928318024, 0.013339008204638958, -0.010164961218833923, -0.016564147546887398, -0.08143775165081024, 0.05455095320940018, -0.018177244812250137, 0.009536774829030037, 0.0856020376086235, 0.09127946197986603, -0.043509211391210556, 0.03771074116230011, -0.03276803717017174, -0.0038223941810429096, 0.08366533368825912, -0.14297565817832947, 0.08082584291696548, -0.08415622264146805, -0.2538781762123108, 0.05423208326101303, 0.0246354378759861, -0.06455077230930328, 0.20074418187141418, -0.020265651866793633, 0.022057395428419113, -0.036401815712451935, -0.03539558872580528, 0.07859618216753006, -0.07343849539756775, 0.09170959889888763, -0.1301829218864441, 0.17344655096530914, -0.24556361138820648, 0.02330881729722023, -0.10574789345264435, 0.02266286499798298, -0.048590488731861115, 0.09031042456626892, -0.11264901608228683, 0.07815001904964447, -0.010568689554929733, -0.0024624718353152275, -0.13569019734859467, 0.04367101937532425, 0.006911363918334246, 0.11732475459575653, -0.25200632214546204, -0.014741448685526848, 0.0809226930141449, -0.1069611981511116, -0.17406056821346283, 0.019334392622113228, -0.07601772993803024, 0.08202913403511047, 0.011702652089297771, 0.27565300464630127, -0.07160801440477371, -0.09624633193016052, -0.018419642001390457, 0.0862613096833229, -0.19527091085910797, -0.14132913947105408, 0.0006260350346565247, 0.007276289630681276, -0.12636321783065796, 0.04305978864431381, 0.11301077902317047, 0.07014935463666916, -0.09787319600582123, -0.0780533105134964, 0.018105659633874893, -0.12332522869110107, 0.06830567866563797, 0.10575050860643387, 0.026534993201494217, -0.035932984203100204, 0.08743070065975189, 0.0064064012840390205, 0.03328876942396164, 0.01700269989669323, -0.05722504109144211, -0.012658690102398396, 0.0630764439702034, -0.12785042822360992, -0.022196896374225616, -0.11612380295991898, -0.10169194638729095, -0.026388438418507576, 0.10492178052663803, 0.04006027802824974, -0.0659518614411354, 0.10489682853221893, -0.03397029638290405, 0.011826170608401299, 0.009724016301333904, 0.08411125838756561, 0.05543776601552963, 0.03803066536784172, -0.008597616106271744, 0.0508737787604332, -0.07341308891773224, 0.0002091687492793426, 0.018891887739300728, -0.07466935366392136, 0.05402547866106033, 0.03816213458776474, 0.041599076241254807, -0.044906385242938995, 0.04288520663976669, -0.06208500638604164, -0.014327521435916424, -0.07304581999778748, 0.044755563139915466, -0.055590253323316574, 0.07425224035978317, 0.05986212193965912, -0.03745802491903305, 0.11809054017066956, 0.2017197459936142, -0.18594349920749664, -0.018177656456828117, -0.03925042599439621, 0.04878932237625122, -0.0350116565823555, -0.06523032486438751, -0.009182604029774666, -0.22926568984985352, -0.08224666118621826, 0.0200527124106884, -0.06416523456573486, 0.07285130023956299, 0.10364829748868942, -0.02203470841050148, -0.1604064255952835, 0.009597943164408207, 0.16900965571403503, -0.11324317753314972, 0.17906025052070618, 0.16775692999362946, 0.09564208984375, 0.11528141051530838, -0.009156334213912487, -0.057585541158914566, 0.026791350916028023, -0.021371642127633095, -0.044124748557806015, 0.2186400145292282, -0.13693545758724213, 0.05767543986439705, 0.1027061939239502, -0.06390631198883057, 0.08064914494752884, -0.11327813565731049, -0.08685225993394852, -0.023927194997668266, -0.007812881842255592, -0.07682747393846512, 0.025213558226823807, 0.006641318555921316, 0.08957014977931976, -0.026288675144314766, -0.022903619334101677, 0.14888598024845123, -0.0021122496109455824, 0.004580595530569553, 0.07898426055908203, -0.15067625045776367, -0.27700546383857727, -0.0515417605638504, -0.14190053939819336, 0.024708829820156097, 0.05638105049729347, -0.03061881847679615, -0.17312155663967133, -0.04460785910487175, 0.028189362958073616, -0.0874297246336937, -0.14013491570949554, -0.015916654840111732, 0.000823474838398397, -0.023364676162600517, -0.05466145649552345, -0.06883836537599564, 0.014384233392775059, -0.04153405874967575, 0.13113293051719666, 0.16050903499126434, -0.1680327206850052, 0.13524268567562103, 0.07358197867870331, -0.05951347574591637, 0.10692940652370453, -0.007016960997134447, 0.11759885400533676, -0.05417092889547348, -0.016001518815755844, 0.056843794882297516, -0.01730462536215782, 0.011914331465959549, 0.04736742004752159, 0.05476222559809685, -0.13828729093074799, 0.0011315179290249944, -0.011075095273554325, -0.2199806123971939, -0.12681874632835388, -0.10120085626840591, -0.005338621325790882, 0.10304360091686249, 0.100426584482193, 0.06901098787784576, 0.10593434423208237, 0.14615988731384277, 0.07746521383523941, -0.026472058147192, -0.1059718132019043, -0.02767406590282917, -0.09880311042070389, -0.027897344902157784, -0.050539154559373856, -0.11188428103923798, -0.039174795150756836, 0.1455620974302292, 0.15951162576675415, 0.22524268925189972, 0.08213624358177185, -0.01454644463956356, 0.018070979043841362, 0.04028782621026039, 0.07219086587429047, 0.14503885805606842, 0.03212190046906471, -0.030839452520012856, -0.005681778769940138, -0.011184854432940483, -0.044541358947753906, 0.04618409648537636, 0.11426746100187302, -0.14790770411491394, 0.0741085633635521, -0.14565379917621613, 0.022219998762011528, -0.14205077290534973, 0.04857027530670166, -0.24658609926700592, 0.10579129308462143, 0.020639730617403984, 0.2358465939760208, -0.103744275867939, 0.05968987196683884, 0.05826308950781822, 0.006445250939577818, 0.041544754058122635, 0.0010987279238179326, 0.03920765221118927, -0.053250834345817566, -0.04976826533675194, -0.055544886738061905, -0.1260862648487091, -0.01024351455271244, 0.0890984833240509, -0.09258424490690231, 0.12033236771821976, 0.02070346660912037, -0.07277049124240875, -0.1262972354888916, -0.08652925491333008, 0.0365324541926384, -0.028298763558268547, 0.16353310644626617, 0.02347792498767376, -0.17240984737873077, -0.21150170266628265, -0.0375862792134285, -0.03815017640590668, 0.10642235726118088, 0.11038237065076828, -0.13819780945777893, 0.09963754564523697, -0.003870447399094701, -0.01922290213406086, -0.12203265726566315, -0.03322036191821098, -0.08512599021196365, -0.030175458639860153, 0.01715466007590294, -0.1289517879486084, 0.008035367354750633, -0.004253425169736147, -0.09500611573457718, -0.009987925179302692, 0.05357031524181366, -0.03131888806819916, -0.07722293585538864, 0.10306363552808762, 0.10737411677837372, 0.041337233036756516, 0.028631912544369698, -0.016022857278585434, 0.026633113622665405, -0.05693642795085907, -0.2394106537103653, 0.10347048938274384, -0.06479842960834503, 0.06584086269140244, -0.12431733310222626, 0.030272159725427628, 0.03145064413547516, -0.006428197491914034, -0.036975957453250885, 0.035143785178661346, -0.036607854068279266, -0.0461762510240078, 0.21528325974941254, -0.16256770491600037, 0.03585513308644295, 0.2578042447566986, 0.10718610882759094, -0.0989723727107048, 0.05588819459080696, 0.017941661179065704, 0.13454264402389526, 0.10407498478889465, -0.08916215598583221, 0.17495863139629364, 0.11729980260133743, -0.026881249621510506, -0.3491053879261017, 0.05612197145819664, -0.09771372377872467, -0.07850151509046555, 0.03482324630022049, -0.16871483623981476, 0.1099933460354805, 0.16077671945095062, -0.0575096569955349, 0.3461008071899414, -0.206056147813797, -0.022777430713176727, 0.2130826860666275, 0.09986475855112076, 0.40649640560150146, -0.16346126794815063, -0.06526097655296326, -0.1118474155664444, -0.08234549313783646, 0.24618779122829437, -0.08201818913221359, 0.014653826132416725, 0.006822611205279827, 0.10386044532060623, 0.018548015505075455, -0.05824524536728859, 0.18978160619735718, 0.04630271717905998, 0.13473008573055267, -0.09654193371534348, -0.16837334632873535, 0.1542537808418274, -0.034023627638816833, 0.04850270226597786, 0.0777445137500763, 0.035800956189632416, -0.07358317077159882, 0.01034550741314888, -0.030647946521639824, 0.006829501129686832, 0.05826638638973236, -0.04388650879263878, -0.14086215198040009, -0.007149648852646351, -0.11559457331895828, 0.02093028649687767, 0.10512828826904297, 0.013185421004891396, -0.018957313150167465, 0.15433934330940247, -0.07851517200469971, -0.04944043979048729, -0.01944892853498459, -0.08879546076059341, -0.09172762185335159, 0.09727204591035843, -0.23819392919540405, 0.03450753912329674, 0.07545611262321472, 0.03371760621666908, 0.06107247620820999, 0.05888010933995247, -0.042369283735752106, 0.095227912068367, 0.12853989005088806, -0.06398191303014755, -0.08849505335092545, 0.05616561323404312, 0.024692457169294357, 0.105580635368824, 0.037193115800619125, -0.005626082420349121, 0.042225319892168045, 0.01406856905668974, -0.03131186217069626, 0.12106864154338837, -0.03184162825345993, 0.06513259559869766, 0.15239065885543823, 0.011904909275472164, -0.18999703228473663, 0.20014707744121552, -0.0036649091634899378, -0.09057757258415222, -0.009576711803674698, -0.03498690947890282, -0.03568285331130028, -0.08259829878807068, -0.0024005977902561426, 0.20817457139492035, -0.09623389691114426, -0.1093282550573349, 0.045447710901498795, -0.029591023921966553, 0.007350482512265444, 0.0232072900980711, 0.04268261417746544, 0.052991315722465515, 0.08211788535118103, -0.062291912734508514, -0.04866684228181839, -0.028204862028360367, -0.05829222500324249, 0.09530739486217499, -0.05217210203409195, -0.2637171447277069, -0.018875082954764366, 0.18909162282943726, -0.08650283515453339, -0.0804968997836113, -0.09509087353944778, 0.09269975870847702, -0.22995814681053162, 0.11131468415260315, -0.0025819996371865273, -0.025899145752191544, 0.05175293982028961, 0.06230204552412033, 0.007921542972326279, -0.04875439777970314, -0.12194701284170151, 0.06310753524303436, 0.07089337706565857, -0.005075231660157442, -0.04843719303607941, -0.038885705173015594, 0.014423778280615807, 0.02798476442694664, 0.08518976718187332, 0.1741970181465149, -0.03588704764842987, 0.06431521475315094, -0.21274572610855103, -0.17289575934410095, 0.14587657153606415, 0.023355556651949883, 0.03461341932415962, 0.16440722346305847, -0.0006982262711971998, 0.055479709059000015, -0.0648813396692276, 0.03740031272172928, 0.0298149473965168, -0.084027960896492, 0.03833911195397377, -0.15181481838226318, -0.07200413197278976, -0.026774350553750992, 0.047749631106853485, 0.1353129744529724, 0.029946547001600266, 0.022865254431962967, -0.003661160822957754, 0.046450816094875336, -0.030869172886013985, -0.054687149822711945, -0.015467345714569092, -0.14321106672286987, 0.015511849895119667, 0.061803653836250305, 0.017179545015096664, -0.08590713143348694, 0.4228377640247345, -0.002235583495348692, -0.16923658549785614, -0.07639484852552414, 0.1347413808107376, -0.02276666834950447, 0.035268690437078476, 0.31225597858428955, 0.000986217288300395, -0.03543005511164665, -0.10912308096885681, 0.12853890657424927, 0.04203888401389122, 0.1371200978755951, 0.048160918056964874, 0.07828785479068756, -0.03534325584769249, 0.01828181929886341, 0.1452462375164032, -0.00787863228470087, 0.09530161321163177, 0.10086844861507416, -0.04516489803791046, 0.05806000530719757, 0.049530938267707825, -0.1131325513124466, 0.054834045469760895, -0.02461622841656208, 0.01424028817564249, -0.05914106220006943, -0.04423782601952553, -0.007448697462677956, -0.002708729589357972, -0.05925503745675087, -0.15394380688667297, 0.08742392808198929, -0.01419171690940857, -0.06377915292978287, 0.35556185245513916, 0.05100896209478378, -0.018052203580737114, 0.04971000924706459, -0.02246442250907421, 0.04015251621603966, 0.05764821916818619, -0.01827830821275711, -0.10629672557115555, -0.012284932658076286, -0.07757659256458282, 0.12311304360628128, 0.02684844844043255, -0.024879969656467438, 0.01430619228631258, 0.10119522362947464, 0.005846643820405006, -0.14150264859199524, -0.10686293989419937, -0.04191004857420921, 0.0666159838438034, -0.14342333376407623, 0.029524752870202065, 0.0077653126791119576, 0.08468372374773026, 0.029713543131947517, -0.04644708335399628, 0.02818518504500389, 0.03360498696565628, -0.02473168633878231, 0.02173776738345623, -0.15750686824321747, 0.08043894171714783, -0.0018521944293752313, -0.10540398955345154, -0.043907471001148224, 0.07862715423107147, 0.25034406781196594, -0.09545572102069855, -0.04605522006750107, 0.02842705324292183, 0.040605589747428894, -0.019995160400867462, 0.16428755223751068, 0.006139312870800495, 0.07672293484210968, -0.04697035998106003, -0.06409304589033127, 0.003965064417570829, -0.10310010612010956, 0.032920029014348984, 0.007367525715380907, 0.0728779137134552, -0.03919738903641701, -0.1883707344532013, 0.1702031046152115, -0.1835552304983139, 0.06734522432088852, 0.22892247140407562, -0.05889826640486717, -0.06114546209573746, 0.018150391057133675, 0.016857748851180077, 0.023160802200436592, -0.02825905755162239, -0.15148568153381348, 0.01697700284421444, -0.1264469176530838, -0.01797904446721077, -0.3531658947467804, -0.08184291422367096, -0.060351673513650894, -0.06917169690132141, 0.206526979804039, -0.02738199569284916, 0.047260597348213196, 0.0047187404707074165, 0.0390082523226738, -0.07976128160953522, 0.059573836624622345, -0.0013936671894043684, 0.10994279384613037, -0.06554044038057327, 0.06804482638835907, -0.041625119745731354, -0.1312897950410843, 0.05504743382334709, -0.042644962668418884, -0.04457022249698639, 0.07869474589824677, -0.056502122431993484, -0.013074669986963272, -0.013257504440844059, -0.07717663794755936, 0.0925217941403389, -0.04056549817323685, 0.02726779691874981, -0.01732265204191208, -0.01749715954065323, 0.07096798717975616, 0.03445179760456085, -0.13978901505470276, -0.07610514760017395, 0.0492207370698452, -0.10111652314662933, 0.10269009321928024, 0.0033366484567523003, -0.18447701632976532, 0.10288874804973602, -0.1255931556224823, 0.03687095269560814, 0.02295093983411789, 0.0597979761660099, 0.10417409986257553, 0.05762048810720444, -0.046483114361763, 0.11789575964212418, 0.07117953151464462, 0.038371969014406204, 0.07726363092660904, -0.08569852262735367 ]
9a7069082f80d9620d877baf3b905f50404fa1cd
# Dataset Card for Bundestag-v2 ## 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) - [Curation Rationale](#curation-rationale) - [Source Data](#source-data) - [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://doi.org/10.7910/DVN/L4OAKN ### Dataset Summary This dataset was generated from the [ParlSpeech V2](https://doi.org/10.7910/DVN/L4OAKN) dataset. It contains speeches from the german parliament from 1990 until 2020 labelled with the party of the speaker. ### Supported Tasks Text Classification ### Languages German ## Dataset Structure ### Data Fields - text: Transcript of the speech in german - party: Party of the speaker ### Data Splits - train - validation - test ## Dataset Creation ### Curation Rationale Created to train a language model, which is able to classify speeches by party. ### Source Data #### Initial Data Collection and Normalization - [ParlSpeech V2](https://doi.org/10.7910/DVN/L4OAKN) ## Considerations for Using the Data ### Social Impact of Dataset These are political speeches, therefor the content can be controversial and potentially harmful. ## Additional Information ### Licensing Information [CCO 1.0](http://creativecommons.org/publicdomain/zero/1.0) ### Citation Information Bibtex entry: ``` @data{DVN/L4OAKN_2020, author = {Rauh, Christian and Schwalbach, Jan}, publisher = {Harvard Dataverse}, title = {{The ParlSpeech V2 data set: Full-text corpora of 6.3 million parliamentary speeches in the key legislative chambers of nine representative democracies}}, year = {2020}, version = {V1}, doi = {10.7910/DVN/L4OAKN}, url = {https://doi.org/10.7910/DVN/L4OAKN} } ```
threite/Bundestag-v2
[ "task_categories:text-classification", "task_ids:entity-linking-classification", "language_creators:expert-generated", "multilinguality:monolingual", "size_categories:100K<n<1M", "language:de", "license:cc0-1.0", "Bundestag", "ParlSpeech", "region:us" ]
2023-02-08T10:29:20+00:00
{"annotations_creators": [], "language_creators": ["expert-generated"], "language": ["de"], "license": ["cc0-1.0"], "multilinguality": ["monolingual"], "size_categories": ["100K<n<1M"], "source_datasets": [], "task_categories": ["text-classification"], "task_ids": ["entity-linking-classification"], "pretty_name": "Bundestag-v2", "tags": ["Bundestag", "ParlSpeech"]}
2023-02-14T13:08:49+00:00
[]
[ "de" ]
TAGS #task_categories-text-classification #task_ids-entity-linking-classification #language_creators-expert-generated #multilinguality-monolingual #size_categories-100K<n<1M #language-German #license-cc0-1.0 #Bundestag #ParlSpeech #region-us
# Dataset Card for Bundestag-v2 ## Table of Contents - Table of Contents - Dataset Description - Dataset Summary - Supported Tasks - Languages - Dataset Structure - Data Instances - Data Fields - Data Splits - Dataset Creation - Curation Rationale - Source Data - Personal and Sensitive Information - Considerations for Using the Data - Social Impact of Dataset - Discussion of Biases - Other Known Limitations - Additional Information - Dataset Curators - Licensing Information - Citation Information - Contributions ## Dataset Description - Homepage: URL ### Dataset Summary This dataset was generated from the ParlSpeech V2 dataset. It contains speeches from the german parliament from 1990 until 2020 labelled with the party of the speaker. ### Supported Tasks Text Classification ### Languages German ## Dataset Structure ### Data Fields - text: Transcript of the speech in german - party: Party of the speaker ### Data Splits - train - validation - test ## Dataset Creation ### Curation Rationale Created to train a language model, which is able to classify speeches by party. ### Source Data #### Initial Data Collection and Normalization - ParlSpeech V2 ## Considerations for Using the Data ### Social Impact of Dataset These are political speeches, therefor the content can be controversial and potentially harmful. ## Additional Information ### Licensing Information CCO 1.0 Bibtex entry:
[ "# Dataset Card for Bundestag-v2", "## Table of Contents\n- Table of Contents\n- Dataset Description\n - Dataset Summary\n - Supported Tasks\n - Languages\n- Dataset Structure\n - Data Instances\n - Data Fields\n - Data Splits\n- Dataset Creation\n - Curation Rationale\n - Source Data\n - Personal and Sensitive Information\n- Considerations for Using the Data\n - Social Impact of Dataset\n - Discussion of Biases\n - Other Known Limitations\n- Additional Information\n - Dataset Curators\n - Licensing Information\n - Citation Information\n - Contributions", "## Dataset Description\n\n- Homepage: URL", "### Dataset Summary\n\nThis dataset was generated from the ParlSpeech V2 dataset. It contains speeches from the german parliament from 1990 until 2020 labelled with the party of the speaker.", "### Supported Tasks\n\nText Classification", "### Languages\n\nGerman", "## Dataset Structure", "### Data Fields\n\n- text: Transcript of the speech in german\n- party: Party of the speaker", "### Data Splits\n\n- train\n- validation\n- test", "## Dataset Creation", "### Curation Rationale\n\nCreated to train a language model, which is able to classify speeches by party.", "### Source Data", "#### Initial Data Collection and Normalization\n\n- ParlSpeech V2", "## Considerations for Using the Data", "### Social Impact of Dataset\n\nThese are political speeches, therefor the content can be controversial and potentially harmful.", "## Additional Information", "### Licensing Information\n\nCCO 1.0\n\n\n\nBibtex entry:" ]
[ "TAGS\n#task_categories-text-classification #task_ids-entity-linking-classification #language_creators-expert-generated #multilinguality-monolingual #size_categories-100K<n<1M #language-German #license-cc0-1.0 #Bundestag #ParlSpeech #region-us \n", "# Dataset Card for Bundestag-v2", "## Table of Contents\n- Table of Contents\n- Dataset Description\n - Dataset Summary\n - Supported Tasks\n - Languages\n- Dataset Structure\n - Data Instances\n - Data Fields\n - Data Splits\n- Dataset Creation\n - Curation Rationale\n - Source Data\n - Personal and Sensitive Information\n- Considerations for Using the Data\n - Social Impact of Dataset\n - Discussion of Biases\n - Other Known Limitations\n- Additional Information\n - Dataset Curators\n - Licensing Information\n - Citation Information\n - Contributions", "## Dataset Description\n\n- Homepage: URL", "### Dataset Summary\n\nThis dataset was generated from the ParlSpeech V2 dataset. It contains speeches from the german parliament from 1990 until 2020 labelled with the party of the speaker.", "### Supported Tasks\n\nText Classification", "### Languages\n\nGerman", "## Dataset Structure", "### Data Fields\n\n- text: Transcript of the speech in german\n- party: Party of the speaker", "### Data Splits\n\n- train\n- validation\n- test", "## Dataset Creation", "### Curation Rationale\n\nCreated to train a language model, which is able to classify speeches by party.", "### Source Data", "#### Initial Data Collection and Normalization\n\n- ParlSpeech V2", "## Considerations for Using the Data", "### Social Impact of Dataset\n\nThese are political speeches, therefor the content can be controversial and potentially harmful.", "## Additional Information", "### Licensing Information\n\nCCO 1.0\n\n\n\nBibtex entry:" ]
[ 83, 9, 117, 8, 48, 9, 5, 6, 22, 12, 5, 26, 4, 18, 8, 28, 5, 14 ]
[ "passage: TAGS\n#task_categories-text-classification #task_ids-entity-linking-classification #language_creators-expert-generated #multilinguality-monolingual #size_categories-100K<n<1M #language-German #license-cc0-1.0 #Bundestag #ParlSpeech #region-us \n# Dataset Card for Bundestag-v2## Table of Contents\n- Table of Contents\n- Dataset Description\n - Dataset Summary\n - Supported Tasks\n - Languages\n- Dataset Structure\n - Data Instances\n - Data Fields\n - Data Splits\n- Dataset Creation\n - Curation Rationale\n - Source Data\n - Personal and Sensitive Information\n- Considerations for Using the Data\n - Social Impact of Dataset\n - Discussion of Biases\n - Other Known Limitations\n- Additional Information\n - Dataset Curators\n - Licensing Information\n - Citation Information\n - Contributions## Dataset Description\n\n- Homepage: URL### Dataset Summary\n\nThis dataset was generated from the ParlSpeech V2 dataset. It contains speeches from the german parliament from 1990 until 2020 labelled with the party of the speaker.### Supported Tasks\n\nText Classification### Languages\n\nGerman## Dataset Structure### Data Fields\n\n- text: Transcript of the speech in german\n- party: Party of the speaker### Data Splits\n\n- train\n- validation\n- test## Dataset Creation### Curation Rationale\n\nCreated to train a language model, which is able to classify speeches by party.### Source Data#### Initial Data Collection and Normalization\n\n- ParlSpeech V2## Considerations for Using the Data### Social Impact of Dataset\n\nThese are political speeches, therefor the content can be controversial and potentially harmful.## Additional Information### Licensing Information\n\nCCO 1.0\n\n\n\nBibtex entry:" ]
[ -0.0850924551486969, 0.23142944276332855, -0.005029796622693539, 0.020376473665237427, 0.026067759841680527, 0.009116542525589466, 0.08457060158252716, 0.09340152889490128, 0.040512021631002426, 0.11452774703502655, -0.0421224944293499, -0.0025946712121367455, 0.09712165594100952, 0.11883087456226349, 0.02094157598912716, -0.24730175733566284, 0.07428146153688431, -0.1066441461443901, -0.0228264257311821, 0.08563952893018723, 0.14163783192634583, -0.10767398029565811, 0.036104656755924225, -0.0390351377427578, -0.06373804807662964, 0.04303740710020065, -0.09127353131771088, -0.023555796593427658, 0.050608836114406586, -0.007071801461279392, 0.0759018063545227, -0.012127809226512909, 0.04551321640610695, -0.22750666737556458, 0.016495859250426292, 0.004783553536981344, -0.0015334399649873376, 0.029951496049761772, 0.08485211431980133, -0.10788033157587051, 0.08368369936943054, -0.1036435067653656, 0.0029671911615878344, 0.11103690415620804, -0.10634172707796097, -0.08092909306287766, -0.1401604562997818, 0.1295313686132431, 0.08463133126497269, 0.021949132904410362, -0.07951170206069946, 0.002318999031558633, -0.10493059456348419, 0.018967606127262115, 0.05153786018490791, -0.13083550333976746, -0.05196012556552887, -0.01229308731853962, -0.029909981414675713, 0.043378058820962906, -0.13363486528396606, 0.030762929469347, -0.001293702283874154, 0.029735079035162926, -0.022187581285834312, -0.035244595259428024, -0.0033921580761671066, 0.0004319637082517147, -0.12772053480148315, -0.046058084815740585, 0.18551838397979736, 0.005222880747169256, -0.019225124269723892, -0.21268342435359955, 0.00255391513928771, 0.04898599535226822, -0.04010343551635742, 0.0050171720795333385, 0.004705228377133608, -0.019612396135926247, 0.09939692914485931, -0.025012461468577385, -0.07499441504478455, 0.05599179491400719, 0.027478570118546486, 0.08656629174947739, 0.011463510803878307, -0.03299646079540253, 0.03736431896686554, 0.05823460593819618, 0.05943819880485535, -0.12903569638729095, -0.018305253237485886, -0.06602611392736435, -0.10658722370862961, -0.00878274068236351, 0.01659046672284603, -0.0648033395409584, 0.086676687002182, 0.1389896273612976, -0.044314026832580566, 0.03736327216029167, -0.05996738374233246, -0.01416325569152832, 0.11238492280244827, 0.14238247275352478, -0.04950091987848282, -0.16013260185718536, -0.0694560706615448, -0.03695668280124664, 0.0030056058894842863, 0.03288060799241066, -0.04967011138796806, 0.08881045877933502, 0.018234455958008766, 0.12816926836967468, 0.08989007025957108, 0.005773752462118864, -0.10705229640007019, -0.04734143242239952, 0.1099829450249672, -0.11851391196250916, 0.05175551399588585, 0.05426566302776337, -0.03876335918903351, 0.010778063908219337, -0.06292098015546799, 0.015545411966741085, -0.11686701327562332, 0.10681057721376419, -0.027931902557611465, 0.02414124086499214, -0.08578405529260635, -0.06899529695510864, 0.07644189894199371, -0.016687119379639626, -0.107545867562294, -0.0028635768685489893, -0.03359568491578102, -0.06542325019836426, 0.0036247530952095985, -0.057471372187137604, 0.015673566609621048, -0.0681249350309372, -0.029092641547322273, 0.031321510672569275, 0.0006065135821700096, -0.07239274680614471, -0.0416884571313858, -0.014928581193089485, -0.0710941031575203, 0.011337562464177608, 0.07698478549718857, 0.03217018395662308, -0.11022273451089859, 0.024592753499746323, -0.18759562075138092, 0.13206008076667786, -0.1821599006652832, 0.02874017506837845, -0.12028815597295761, 0.0014546859310939908, 0.06112375855445862, 0.00542024802416563, -0.043703872710466385, 0.1932220458984375, -0.2405327707529068, -0.05517662689089775, 0.18482351303100586, -0.13167205452919006, -0.04096510261297226, 0.08660966902971268, -0.023925138637423515, -0.005182624328881502, 0.0893721878528595, 0.16578985750675201, 0.02974429912865162, -0.06668729335069656, -0.12939274311065674, -0.08661310374736786, 0.050737734884023666, 0.21880319714546204, 0.10090627521276474, -0.09622909128665924, 0.14980758726596832, -0.009167652577161789, 0.026593534275889397, -0.0721777081489563, -0.002008045557886362, -0.06316088140010834, 0.03129483014345169, 0.0018440450076013803, 0.11426489055156708, 0.0070243459194898605, -0.054730042815208435, -0.03589124605059624, -0.1339559555053711, 0.08469796180725098, 0.05405572056770325, -0.019281232729554176, 0.0009980769827961922, -0.05264172703027725, -0.04544714093208313, 0.013234922662377357, -0.0016288521001115441, -0.15614117681980133, -0.17890490591526031, 0.0487947091460228, -0.03793015703558922, 0.16285547614097595, 0.022974945604801178, 0.025804273784160614, -0.020179955288767815, -0.04719645529985428, -0.02903502993285656, -0.029959646984934807, 0.026801208034157753, 0.04650916904211044, -0.2072463035583496, -0.020185302942991257, -0.06277328729629517, 0.16303391754627228, -0.03231015056371689, -0.01611997000873089, 0.1693476438522339, 0.24595117568969727, 0.06046578660607338, -0.053781721740961075, 0.034999776631593704, 0.027756959199905396, 0.008731427602469921, -0.029726611450314522, 0.00142584927380085, -0.06450506299734116, 0.04997802525758743, 0.05085169896483421, -0.04014454782009125, -0.08037707209587097, 0.07098455727100372, 0.08201000094413757, -0.06731919199228287, -0.01217083353549242, -0.10127784311771393, -0.0027207869570702314, -0.010816817171871662, -0.15148691833019257, 0.09099775552749634, 0.03015216998755932, 0.02478976547718048, -0.05704933777451515, -0.14075599610805511, -0.0693313479423523, 0.024374239146709442, -0.10565168410539627, 0.12203863263130188, -0.0109957130625844, -0.14518676698207855, 0.17818881571292877, 0.044342752546072006, 0.13902458548545837, 0.16465362906455994, -0.04664285108447075, -0.03992169350385666, -0.038073744624853134, 0.0088881840929389, 0.004209732636809349, 0.10624291747808456, -0.06856849789619446, -0.042087722569704056, 0.02438669092953205, 0.004938583355396986, 0.034583255648612976, -0.053187478333711624, 0.05842965468764305, -0.029339803382754326, -0.01768561825156212, 0.0350617989897728, -0.03803180530667305, 0.0545421727001667, 0.11545345932245255, 0.04178804159164429, 0.046956609934568405, -0.03968517854809761, -0.05269733443856239, -0.10677813738584518, 0.0786595493555069, -0.19955764710903168, -0.2816869020462036, -0.06874783337116241, -0.005617441609501839, -0.08406046032905579, 0.01792740635573864, 0.014315157197415829, -0.08406063914299011, -0.1169489398598671, -0.04041198641061783, 0.18822240829467773, 0.06936795264482498, -0.07247817516326904, -0.06485886126756668, -0.00267316703684628, 0.009151749312877655, -0.14188319444656372, -0.0005003110272809863, 0.01897348277270794, 0.022255482152104378, -0.0355379655957222, 0.06725811213254929, 0.10843575745820999, 0.11698964983224869, 0.06473581492900848, -0.019809124991297722, -0.026911091059446335, 0.20597447454929352, -0.17498336732387543, 0.1437576860189438, 0.007577215321362019, -0.09634797275066376, 0.02692987397313118, 0.20135509967803955, 0.06590903550386429, -0.0506899431347847, -0.010182984173297882, 0.07201099395751953, 0.032531656324863434, -0.23269137740135193, -0.19532151520252228, -0.08705058693885803, 0.009257175028324127, 0.04573139175772667, 0.07084312289953232, 0.011056982912123203, 0.0003708021540660411, -0.13781705498695374, -0.09656025469303131, 0.06330700218677521, 0.06094390153884888, 0.0843503549695015, -0.008496698923408985, 0.03755740448832512, -0.07450713962316513, -0.06701741367578506, 0.10209596902132034, 0.023261867463588715, 0.16147984564304352, 0.06656237691640854, 0.18378542363643646, 0.07828350365161896, 0.04037388414144516, -0.05346207320690155, 0.012578080408275127, -0.0009521549800410867, 0.04104073345661163, 0.024494189769029617, -0.07582161575555801, 0.04874582216143608, 0.08778538554906845, 0.11842095106840134, -0.07679294049739838, 0.03017040342092514, -0.16557151079177856, 0.16359317302703857, 0.21881474554538727, 0.0963190495967865, -0.06838493794202805, -0.08979470282793045, 0.10097772628068924, -0.10109797865152359, -0.05951683223247528, -0.014984222128987312, 0.03711055964231491, -0.1571781486272812, 0.11203967034816742, -0.014812955632805824, 0.09929428994655609, -0.06807180494070053, -0.03885674849152565, -0.038673609495162964, 0.024233946576714516, -0.03572177514433861, 0.08996925503015518, -0.16961270570755005, 0.15369586646556854, 0.021482868120074272, 0.01614236645400524, -0.1332319974899292, 0.09148239344358444, -0.012603111565113068, -0.05658520758152008, 0.1651471108198166, 0.005969195161014795, -0.06589244306087494, 0.016382401809096336, -0.06687312573194504, -0.04344801977276802, 0.1512228399515152, -0.16002358496189117, 0.09549521654844284, 0.014008731581270695, -0.02965608984231949, -0.05642582103610039, -0.08237054944038391, -0.15769077837467194, -0.1451115757226944, 0.08871769905090332, -0.027709627524018288, 0.046848688274621964, -0.019776087254285812, -0.024280838668346405, -0.09430722892284393, 0.25892117619514465, -0.20584288239479065, -0.06882012635469437, -0.11741916835308075, -0.060069601982831955, 0.1341513693332672, -0.03305256739258766, 0.06983619183301926, 0.003191472729668021, 0.20650553703308105, -0.07632007449865341, -0.07064351439476013, 0.07119393348693848, -0.11232743412256241, -0.15726803243160248, -0.043892525136470795, 0.2503982484340668, 0.11569205671548843, 0.06515070796012878, 0.019120577722787857, 0.09129586070775986, 0.04523289576172829, -0.11253152787685394, 0.037211671471595764, 0.015148038975894451, 0.05166114494204521, 0.12014049291610718, -0.05047495663166046, -0.2499074786901474, -0.08611080050468445, -0.0052795931696891785, 0.10182321816682816, 0.10295578837394714, -0.063687764108181, 0.20462094247341156, 0.08665655553340912, -0.0791424885392189, -0.2634153366088867, 0.013759403489530087, 0.04488722234964371, -0.02592194266617298, -0.0034215711057186127, -0.20006681978702545, 0.09781765192747116, 0.022892771288752556, -0.05420606955885887, -0.004945020657032728, -0.16149529814720154, -0.12053339183330536, 0.06126423552632332, -0.05237220227718353, -0.28715601563453674, -0.09118592739105225, -0.11147365719079971, -0.027745282277464867, -0.10438788682222366, 0.17756637930870056, -0.016645709052681923, -0.019608033820986748, 0.059623219072818756, 0.06042155250906944, 0.0304645337164402, -0.025533167645335197, 0.1603965163230896, 0.1121862381696701, -0.0173629280179739, -0.096635602414608, -0.1252196729183197, 0.13242830336093903, 0.007803295273333788, 0.099186472594738, 0.0032203278969973326, -0.011370589025318623, -0.18911001086235046, 0.00346221961081028, -0.09570039808750153, 0.06807569414377213, -0.1006452739238739, -0.0718623474240303, -0.11111035197973251, 0.11030428111553192, 0.0450487956404686, -0.0037890179082751274, 0.11055566370487213, -0.08196568489074707, 0.04951278120279312, 0.15673449635505676, 0.15755027532577515, 0.11715185642242432, -0.04109315201640129, -0.009560398757457733, -0.023884916678071022, -0.04962720721960068, -0.08945067226886749, 0.06332526355981827, 0.11698209494352341, 0.00476047582924366, 0.17843203246593475, -0.070086270570755, -0.13950802385807037, -0.001298267743550241, 0.08713804185390472, -0.09907864779233932, -0.20226772129535675, -0.041501615196466446, -0.003222835948690772, -0.08451703190803528, 0.031029371544718742, 0.107434943318367, 0.02330748364329338, -0.06238904222846031, 0.004323710687458515, 0.07137002795934677, -0.019163697957992554, 0.08172503113746643, 0.028867186978459358, 0.08757632970809937, -0.11263619363307953, 0.1386822909116745, 0.11265233159065247, -0.058097776025533676, 0.013764006085693836, 0.17532627284526825, -0.02893507294356823, -0.03719799593091011, -0.029951054602861404, 0.057256828993558884, 0.007756756618618965, -0.024788018316030502, -0.04798922315239906, -0.15581123530864716, 0.052618883550167084, 0.12289366126060486, 0.0037464594934135675, 0.03906413912773132, 0.02907332219183445, 0.0033074491657316685, 0.0026618964038789272, 0.10604080557823181, 0.08750557899475098, 0.014793340116739273, -0.0036407222505658865, 0.06499304622411728, -0.030281351879239082, -0.02910327911376953, -0.017395464703440666, -0.033991362899541855, -0.08978121727705002, -0.025606591254472733, -0.08924302458763123, -0.008675445802509785, -0.09535172581672668, -0.019332243129611015, -0.0069033741019666195, -0.0827668234705925, -0.009898282587528229, 0.03382603079080582, -0.09268232434988022, 0.012470200657844543, -0.02641323208808899, 0.11356090009212494, -0.21267874538898468, 0.042352329939603806, 0.07672228664159775, -0.0516052283346653, 0.12820769846439362, 0.03766416385769844, -0.007054047659039497, 0.04082503169775009, -0.14010712504386902, -0.035841263830661774, 0.015036978758871555, 0.03675715997815132, 0.03163163736462593, -0.09627242386341095, -0.026957793161273003, 0.01968911848962307, -0.05702396482229233, 0.027421914041042328, -0.03545217961072922, -0.0663619190454483, 0.11045443266630173, -0.016847601160407066, -0.09167342633008957, -0.004277592059224844, 0.07433783262968063, 0.10988675802946091, -0.06829358637332916, 0.11148830503225327, -0.0483342744410038, 0.050532642751932144, -0.12122178077697754, 0.008089346811175346, 0.008297549560666084, -0.05150122195482254, -0.06425779312849045, 0.022587360814213753, 0.0462387315928936, -0.001787282875739038, 0.1583447903394699, -0.044545575976371765, 0.04057791456580162, 0.11240124702453613, 0.09692550450563431, -0.10924896597862244, 0.10853776335716248, -0.007158909924328327, -0.03693892061710358, 0.001225993619300425, -0.09590265154838562, -0.06603063642978668, -0.06199241429567337, -0.07569101452827454, 0.15125837922096252, 0.1477912962436676, 0.16096371412277222, -0.025493154302239418, 0.09565315395593643, -0.05938193202018738, -0.11370492726564407, 0.11606740206480026, -0.04922952875494957, 0.019272271543741226, -0.0949755534529686, 0.09195564687252045, 0.06925717741250992, -0.22189287841320038, 0.11647327989339828, -0.025061191990971565, -0.03690974414348602, 0.003008308820426464, -0.15979211032390594, -0.06445986032485962, 0.010900774970650673, -0.005068938713520765, -0.12287331372499466, 0.08080890774726868, 0.05435635522007942, 0.02892484702169895, -0.04078463092446327, 0.1824561208486557, -0.11012168228626251, -0.09129557013511658, 0.10286443680524826, 0.05185801908373833, 0.03969859331846237, 0.030717456713318825, 0.019242344424128532, -0.04984060302376747, 0.11431540548801422, 0.08081675320863724, 0.07227633893489838, -0.0362551249563694, -0.060573846101760864, -0.09546735882759094, -0.08356781303882599, 0.03796055167913437, -0.04147431626915932, -0.02193613164126873, 0.1873621791601181, 0.033153191208839417, 0.02721170149743557, 0.013185949064791203, 0.17723140120506287, -0.057021256536245346, -0.0897139236330986, -0.15220998227596283, 0.034016773104667664, -0.037612397223711014, 0.06537869572639465, 0.051069580018520355, -0.15593713521957397, -0.011085688136518002, 0.050382841378450394, 0.1969970315694809, 0.008344295434653759, 0.0499696210026741, -0.04275289922952652, 0.04661925509572029, 0.03454544022679329, 0.013425702229142189, -0.028651131317019463, 0.2730924189090729, -0.02625114656984806, 0.06915416568517685, 0.008410670794546604, -0.07416683435440063, -0.0604538768529892, 0.1257052719593048, -0.029345400631427765, -0.054380953311920166, -0.06968828290700912, 0.16693760454654694, -0.06688426434993744, -0.2348567247390747, -0.012589091435074806, -0.1647663414478302, -0.16013950109481812, -0.03785300999879837, 0.010423027910292149, 0.06346044689416885, 0.03886992111802101, 0.08024554699659348, -0.07696516066789627, 0.19398245215415955, 0.07732155174016953, -0.011367048136889935, -0.0802140161395073, 0.07708977162837982, -0.19873838126659393, 0.24057640135288239, -0.00024390850740019232, 0.03623916953802109, 0.09752508997917175, -0.05931170657277107, -0.10826315730810165, -0.012297716923058033, 0.10156787186861038, -0.12359579652547836, -0.01130919624119997, 0.18777494132518768, -0.027346761897206306, 0.20536597073078156, 0.0907461941242218, -0.061766721308231354, 0.08510629087686539, 0.06858782470226288, -0.04353542998433113, -0.05053399130702019, 0.16690924763679504, -0.1006801426410675, 0.09545280039310455, 0.12250015139579773, -0.04202674701809883, 0.025593386963009834, -0.051070310175418854, 0.04463672637939453, -0.02358023077249527, 0.15517528355121613, -0.013220553286373615, -0.17692966759204865, 0.03218687325716019, -0.006524492986500263, 0.08880969882011414, -0.14658071100711823, -0.05835498869419098, -0.014000958763062954, 0.04339662939310074, -0.08851134777069092, 0.13297463953495026, 0.050197672098875046, -0.03571643307805061, -0.01916123367846012, -0.1263866126537323, 0.04418107867240906, 0.09082067012786865, -0.02552153170108795, 0.05608021095395088 ]
d5acb3a48d3127b59457e627c6dce975c20675b0
# Dataset Card for "dummy_image_text_data" [More Information needed](https://github.com/huggingface/datasets/blob/main/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
hf-internal-testing/dummy_image_text_data
[ "region:us" ]
2023-02-08T10:34:30+00:00
{"dataset_info": {"features": [{"name": "image", "dtype": "image"}, {"name": "text", "dtype": "string"}], "splits": [{"name": "train", "num_bytes": 1944983.0, "num_examples": 20}], "download_size": 1690123, "dataset_size": 1944983.0}}
2023-02-08T10:34:38+00:00
[]
[]
TAGS #region-us
# Dataset Card for "dummy_image_text_data" More Information needed
[ "# Dataset Card for \"dummy_image_text_data\"\n\nMore Information needed" ]
[ "TAGS\n#region-us \n", "# Dataset Card for \"dummy_image_text_data\"\n\nMore Information needed" ]
[ 6, 18 ]
[ "passage: TAGS\n#region-us \n# Dataset Card for \"dummy_image_text_data\"\n\nMore Information needed" ]
[ -0.05810714140534401, 0.11459136009216309, -0.00396467512473464, 0.04360755532979965, 0.15680180490016937, 0.08526672422885895, 0.17188408970832825, 0.08440566062927246, 0.09471925348043442, 0.0027641269844025373, 0.12093287706375122, 0.10116225481033325, 0.06921494752168655, 0.1334775984287262, -0.03209558501839638, -0.14212213456630707, 0.07130950689315796, -0.015610250644385815, 0.07176560908555984, 0.0424019880592823, 0.01021223608404398, -0.0953054428100586, 0.07761664688587189, -0.12414533644914627, -0.21181358397006989, 0.07072880119085312, -0.036420051008462906, -0.012085974216461182, 0.03638094663619995, -0.07639728486537933, 0.07083957642316818, 0.05313117057085037, -0.00962760578840971, -0.11940987408161163, 0.04420538619160652, -0.006060468498617411, -0.07161956280469894, 0.030772829428315163, 0.09026108682155609, -0.09547620266675949, -0.0519067756831646, 0.0478287898004055, -0.04734440892934799, 0.015196206048130989, -0.08475817739963531, -0.15627418458461761, -0.060803405940532684, 0.027791675180196762, 0.04453369975090027, -0.03244587033987045, 0.03276477009057999, 0.08384346216917038, -0.05668962001800537, 0.07523505389690399, 0.14763326942920685, 0.123757004737854, 0.04020025208592415, 0.1742250919342041, -0.04281231388449669, 0.1492617428302765, -0.026291077956557274, 0.056270796805620193, 0.06804578751325607, 0.013679306022822857, -0.15215039253234863, 0.0028029445093125105, -0.15856735408306122, 0.06865061819553375, 0.010355421341955662, -0.10419159382581711, 0.21719053387641907, 0.0449780635535717, -0.0073568448424339294, -0.0007529641734436154, -0.003912192769348621, -0.08140052109956741, -0.042453888803720474, 0.0924491435289383, 0.027627428993582726, 0.046861883252859116, -0.07101859897375107, 0.004282739479094744, -0.11150722950696945, -0.0629504844546318, -0.14920523762702942, -0.07407611608505249, -0.07403645664453506, 0.16005560755729675, -0.16628138720989227, -0.019653739407658577, -0.10184178501367569, -0.04395417124032974, 0.01732921600341797, -0.10435666143894196, 0.0729559063911438, 0.05624016746878624, -0.007699671667069197, -0.10448622703552246, 0.15095464885234833, -0.06593497842550278, 0.018313702195882797, 0.06934977322816849, -0.17983196675777435, 0.15875284373760223, 0.17076267302036285, -0.05791550874710083, -0.05342424660921097, 0.13739843666553497, -0.06079040840268135, -0.08777625858783722, 0.009668251499533653, -0.09900101274251938, -0.12885895371437073, 0.06878311187028885, -0.05130006745457649, 0.059176769107580185, -0.042953211814165115, -0.049257755279541016, -0.09364396333694458, -0.03318293020129204, 0.21124890446662903, -0.001613456173799932, -0.006611235905438662, -0.0009901683079078794, -0.08022201806306839, 0.06404835730791092, -0.002664984902366996, 0.001976561266928911, 0.05013064295053482, 0.08916646987199783, -0.03517291694879532, 0.0537252202630043, -0.036058876663446426, -0.022775450721383095, 0.08088488131761551, -0.12943562865257263, 0.04509887844324112, -0.08195702731609344, -0.25982192158699036, 0.036968231201171875, 0.003252402413636446, -0.0531662292778492, 0.20266877114772797, -0.042278580367565155, 0.005821409169584513, -0.008573136292397976, -0.02766611985862255, 0.07337940484285355, -0.06734394282102585, 0.10668259114027023, -0.1328549087047577, 0.19000598788261414, -0.24072818458080292, 0.02222585305571556, -0.09875331073999405, 0.00020718893210869282, -0.05593596026301384, 0.12211453169584274, -0.10530661046504974, 0.09852737933397293, -0.01079675741493702, 0.013009021990001202, -0.1501389592885971, 0.053393132984638214, 0.003139522159472108, 0.15641142427921295, -0.26656797528266907, -0.02549302577972412, 0.14097121357917786, -0.09657716751098633, -0.17597214877605438, 0.02263360656797886, -0.07632946223020554, 0.08382032811641693, 0.03376796841621399, 0.31329968571662903, -0.07875332981348038, -0.08631609380245209, -0.014614601619541645, 0.10586089640855789, -0.17671683430671692, -0.1275952160358429, -0.013689545914530754, -0.017037296667695045, -0.10926277190446854, 0.04291427880525589, 0.1488700956106186, 0.06475057452917099, -0.07837110012769699, -0.07143066823482513, 0.013619172386825085, -0.10611068457365036, 0.07961414754390717, 0.08499068021774292, 0.026766547933220863, -0.0545223094522953, 0.0676334947347641, 0.002870755735784769, 0.01174036506563425, 0.007270277477800846, -0.0372956208884716, 0.004276380408555269, 0.041225433349609375, -0.08783036470413208, -0.009030835703015327, -0.12024347484111786, -0.08592520654201508, -0.046518683433532715, 0.1514827460050583, 0.05695735663175583, -0.0907735824584961, 0.09859249740839005, -0.0398053303360939, 0.009791488759219646, 0.01612710766494274, 0.09121634066104889, 0.0364609993994236, 0.02359122596681118, -0.025219393894076347, 0.08541308343410492, -0.07063020765781403, 0.01661139354109764, -0.005228301044553518, -0.04888880252838135, 0.08028300106525421, 0.024260861799120903, 0.03726968914270401, -0.05033860355615616, 0.04886239394545555, -0.05419342592358589, -0.03154341131448746, -0.06335348635911942, 0.037907760590314865, -0.05212336778640747, 0.050727181136608124, 0.10282458364963531, -0.08841788023710251, 0.07185053825378418, 0.21676325798034668, -0.1827140599489212, -0.025148602202534676, -0.03952381759881973, 0.06503677368164062, -0.022660961374640465, -0.06890497356653214, -0.022248027846217155, -0.21483214199543, -0.07755733281373978, 0.04713243246078491, -0.0726354718208313, 0.06469084322452545, 0.10122177749872208, -0.025945406407117844, -0.1419411152601242, 0.025429746136069298, 0.13639093935489655, -0.10881136357784271, 0.16793516278266907, 0.13826625049114227, 0.09509336948394775, 0.17460356652736664, -0.009273476898670197, -0.047616489231586456, 0.04717450588941574, 0.0030705835670232773, -0.041765887290239334, 0.16782887279987335, -0.1624939739704132, 0.03776455670595169, 0.10351289063692093, -0.06229624152183533, 0.08942599594593048, -0.10938213765621185, -0.09174369275569916, -0.022689005360007286, -0.02639060840010643, -0.08664479106664658, 0.01613405905663967, 0.023584768176078796, 0.09945172071456909, -0.04186819866299629, 0.003703102935105562, 0.14046259224414825, -0.00410231901332736, -0.028549909591674805, 0.08953564614057541, -0.16086259484291077, -0.3090972900390625, -0.08835409581661224, -0.13766586780548096, 0.009462566114962101, 0.05777078494429588, -0.0041791340336203575, -0.19370388984680176, -0.035273365676403046, -0.0025781074073165655, -0.07952070236206055, -0.13656431436538696, -0.02112259902060032, 0.0010050578275695443, -0.02728438377380371, -0.05902585759758949, -0.07698424905538559, 0.018354138359427452, -0.033015020191669464, 0.13686399161815643, 0.1733405888080597, -0.1855010688304901, 0.13946212828159332, 0.10338795930147171, -0.058923304080963135, 0.11316028982400894, -0.02000662498176098, 0.10315883159637451, -0.07549401372671127, 0.00044996789074502885, 0.06633739918470383, -0.019869128242135048, 0.02983805164694786, 0.0555439218878746, 0.03567757084965706, -0.13145633041858673, 0.03291399031877518, -0.012407575733959675, -0.217620387673378, -0.17248964309692383, -0.10397706925868988, -0.015040361322462559, 0.12855951488018036, 0.07784216850996017, 0.07573448866605759, 0.11896760016679764, 0.12701071798801422, 0.05956817418336868, -0.013926724903285503, -0.080386221408844, -0.010223189368844032, -0.08166695386171341, -0.01763414964079857, -0.03455658629536629, -0.13166531920433044, -0.03318760171532631, 0.1618461310863495, 0.128381609916687, 0.19814197719097137, 0.07852815091609955, 0.039440155029296875, 0.021280867978930473, -0.01615847460925579, 0.06958875805139542, 0.13750845193862915, 0.03178148716688156, -0.027601046487689018, -0.008237159810960293, -0.023732218891382217, -0.0265949834138155, 0.03760947659611702, 0.06030005216598511, -0.1608961969614029, 0.05965724587440491, -0.1004721000790596, 0.04366707429289818, -0.15661941468715668, 0.024802764877676964, -0.2328585535287857, 0.10952799767255783, 0.02988363988697529, 0.219926118850708, -0.11170607060194016, 0.06114460900425911, 0.08338142931461334, 0.009168587625026703, 0.060360927134752274, 0.01513966266065836, 0.06861559301614761, -0.03551793470978737, -0.04019918665289879, -0.07074296474456787, -0.12373063713312149, -0.019619455561041832, 0.09938514232635498, -0.13284480571746826, 0.09886283427476883, 0.0288054458796978, -0.06474803388118744, -0.11571759730577469, -0.09013252705335617, 0.016480276361107826, -0.009493978694081306, 0.14511814713478088, 0.025221822783350945, -0.16699062287807465, -0.16729192435741425, -0.03566567227244377, -0.04753686860203743, 0.14313291013240814, 0.1257253885269165, -0.12310748547315598, 0.09936074912548065, 0.00007071691652527079, -0.015083509497344494, -0.13195697963237762, -0.04655805602669716, -0.1077311709523201, -0.018991585820913315, 0.03527939319610596, -0.10275761038064957, 0.011363834142684937, 0.0058815055526793, -0.08185960352420807, 0.024990800768136978, 0.03908636048436165, -0.03548939526081085, -0.07436016947031021, 0.06404662132263184, 0.06567788869142532, 0.03647720441222191, 0.013062017038464546, -0.024373874068260193, 0.031647421419620514, -0.09868729114532471, -0.2261706441640854, 0.10973252356052399, -0.052093084901571274, 0.06522274762392044, -0.12388801574707031, 0.045817188918590546, 0.016370926052331924, -0.017117828130722046, -0.03776704892516136, 0.021588122472167015, -0.05199388787150383, -0.06217679753899574, 0.19075298309326172, -0.1533169448375702, 0.018064796924591064, 0.2527192234992981, 0.10965613275766373, -0.12322593480348587, 0.03689524903893471, -0.0006315468926914036, 0.16993045806884766, 0.08523450791835785, -0.07968103885650635, 0.19494383037090302, 0.10272911936044693, -0.044170401990413666, -0.34789180755615234, 0.05983492732048035, -0.100185826420784, -0.07956459373235703, 0.025770172476768494, -0.17391856014728546, 0.08127261698246002, 0.11446534842252731, -0.04637182131409645, 0.34797558188438416, -0.21770504117012024, -0.038023222237825394, 0.17297625541687012, 0.08976076543331146, 0.3712213635444641, -0.1839035302400589, -0.08708109706640244, -0.13688470423221588, -0.09307222813367844, 0.24387644231319427, -0.14093820750713348, 0.02733994461596012, 0.018112676218152046, 0.1305614858865738, 0.012398769147694111, -0.0706554651260376, 0.17687511444091797, 0.04444059357047081, 0.12030941247940063, -0.10532867163419724, -0.1427556425333023, 0.17293061316013336, -0.027631986886262894, 0.06251417845487595, -0.009550628252327442, 0.023683756589889526, -0.09327489137649536, 0.012953395955264568, -0.02939411997795105, -0.002029640367254615, 0.05698578804731369, -0.0308204535394907, -0.13310544192790985, -0.03332707658410072, -0.10145246982574463, 0.022850994020700455, 0.0945267304778099, -0.03129812330007553, -0.006098917685449123, 0.17629757523536682, -0.04334452748298645, -0.029808100312948227, 0.009138956665992737, -0.07600715011358261, -0.09301610291004181, 0.0846095085144043, -0.2832842767238617, 0.032003771513700485, 0.05802725628018379, 0.01792999729514122, 0.08384120464324951, 0.05384104698896408, -0.03799149766564369, 0.09581799805164337, 0.15072722733020782, -0.0779314711689949, -0.08029135316610336, 0.02556338720023632, 0.033423665910959244, 0.08230742067098618, 0.015659337863326073, 0.002167642116546631, 0.05513846501708031, 0.028322329744696617, -0.034006405621767044, 0.12410640716552734, -0.02738703414797783, 0.03304660692811012, 0.14804218709468842, 0.020012198016047478, -0.1859392672777176, 0.18337056040763855, 0.014347397722303867, -0.10626794397830963, 0.017200464382767677, 0.03289593383669853, -0.053670547902584076, -0.08132767677307129, 0.01292938832193613, 0.24085529148578644, -0.06808023899793625, -0.1080980971455574, 0.028105219826102257, -0.03605295345187187, 0.004275632090866566, 0.04823876544833183, 0.023375872522592545, 0.04785250499844551, 0.08226651698350906, -0.06533100455999374, -0.035683222115039825, -0.011906155385077, -0.045557837933301926, 0.09201322495937347, -0.03503232076764107, -0.21770252287387848, -0.014577745459973812, 0.17784011363983154, -0.07764559984207153, -0.07878482341766357, -0.10294090211391449, 0.07311809062957764, -0.23618640005588531, 0.12955816090106964, 0.004751761443912983, -0.03305092081427574, 0.03214253485202789, 0.08086901158094406, 0.003949256613850594, -0.0505034402012825, -0.11479725688695908, 0.04668266326189041, 0.04684976860880852, 0.006779611110687256, -0.07935120910406113, -0.021950384601950645, 0.01635446958243847, 0.033916424959897995, 0.07945127040147781, 0.16462457180023193, -0.06550322473049164, 0.07348811626434326, -0.24214784801006317, -0.14930477738380432, 0.14778055250644684, 0.01695970632135868, 0.009793243370950222, 0.2103145867586136, -0.00022312093642540276, 0.0514175221323967, -0.04286196827888489, 0.042970139533281326, 0.014524589292705059, -0.07592494040727615, 0.06824810802936554, -0.15975640714168549, -0.06694187968969345, -0.04245229810476303, 0.06979711353778839, 0.11490561068058014, 0.02813933603465557, 0.030752483755350113, -0.030719002708792686, 0.05279848352074623, -0.03532546013593674, -0.042772989720106125, 0.005242606159299612, -0.13398727774620056, 0.009935148991644382, 0.02535627968609333, 0.014300794340670109, -0.09875856339931488, 0.3923642933368683, 0.025072729215025902, -0.18440856039524078, -0.06309530884027481, 0.15265260636806488, -0.025192582979798317, 0.030107010155916214, 0.31382372975349426, -0.005761292297393084, -0.038797445595264435, -0.11637965589761734, 0.10280197113752365, 0.06622838228940964, 0.15825678408145905, 0.07986561208963394, 0.07772309333086014, -0.045376766473054886, 0.032167948782444, 0.1201077550649643, 0.013569534756243229, 0.0771917775273323, 0.07575242221355438, -0.03276192769408226, 0.056835372000932693, 0.03538591414690018, -0.11720184236764908, 0.06896579265594482, -0.02114606462419033, 0.01513314712792635, -0.04449540376663208, -0.06392306834459305, -0.020483119413256645, 0.0004889475530944765, -0.06166569143533707, -0.1560554802417755, 0.08464096486568451, -0.029609495773911476, -0.025521710515022278, 0.3238295912742615, 0.05377594754099846, -0.019646674394607544, 0.0644523948431015, -0.018547652289271355, 0.0025023010093718767, 0.06584013253450394, -0.04440215602517128, -0.08638530224561691, -0.003600807162001729, -0.061675626784563065, 0.13057051599025726, 0.020143741741776466, -0.016756320372223854, 0.05062117800116539, 0.10573676973581314, 0.012902549467980862, -0.16843970119953156, -0.12154901027679443, -0.02480517514050007, 0.07782267779111862, -0.12696494162082672, 0.08355958014726639, 0.03134194016456604, 0.0685255378484726, 0.021434133872389793, -0.013964762911200523, 0.018123848363757133, 0.003927824553102255, -0.00917916838079691, -0.000501801900099963, -0.14543989300727844, 0.08552438765764236, -0.026392893865704536, -0.12057038396596909, -0.044928234070539474, 0.11298023164272308, 0.2596000134944916, -0.10213625431060791, -0.03846307471394539, 0.012900857254862785, 0.04122390225529671, 0.025894861668348312, 0.16677239537239075, 0.0020306722726672888, 0.08776932209730148, -0.0355466827750206, -0.040750835090875626, 0.005923083983361721, -0.11598440259695053, 0.009079626761376858, 0.0211220420897007, 0.07062406092882156, -0.05167816951870918, -0.17368729412555695, 0.1753750890493393, -0.22435256838798523, 0.07329259067773819, 0.16669251024723053, -0.05572916194796562, -0.03755616396665573, 0.005322146695107222, 0.04769725352525711, 0.02528218924999237, -0.030154572799801826, -0.12005212157964706, 0.007481268607079983, -0.1240401491522789, -0.015883851796388626, -0.35479116439819336, -0.04330562800168991, -0.0776166170835495, -0.16997912526130676, 0.15325044095516205, -0.014647992327809334, 0.04133892059326172, 0.005704169161617756, 0.03784126788377762, -0.04737589508295059, 0.0696600005030632, -0.004428628366440535, 0.14762350916862488, -0.0548531673848629, 0.08065695315599442, -0.04347936436533928, -0.14060160517692566, 0.0629979595541954, -0.0528380312025547, -0.0383833609521389, 0.0875515565276146, -0.06662095338106155, -0.01336786150932312, -0.021754587069153786, -0.07686741650104523, 0.08338944613933563, -0.010615348815917969, 0.032805025577545166, 0.004489484708756208, -0.01112249493598938, 0.04402724280953407, 0.005340526346117258, -0.14512328803539276, -0.06726252287626266, 0.040853921324014664, -0.13861128687858582, 0.1531309336423874, 0.02973736636340618, -0.26415756344795227, 0.1263352334499359, -0.14201749861240387, 0.05326922610402107, -0.00659221550449729, 0.07330837100744247, 0.1396568864583969, 0.04517042636871338, -0.05169647932052612, 0.10838867723941803, 0.09783831983804703, 0.059902969747781754, 0.08851206302642822, -0.07773280143737793 ]
934f278e32cf60afc1a03899705da8251b7b2ba9
# Dataset Card for ReadingBank ## Dataset Description - **Homepage:** https://github.com/doc-analysis/ReadingBank - **Repository:** https://github.com/doc-analysis/ReadingBank - **Paper:** https://arxiv.org/pdf/2108.11591.pdf - **Leaderboard:** - **Point of Contact:** Raise github issue on mentioned repository for dataset related matters and contact @maveriq for huggingface dataset port. ### Dataset Summary ReadingBank is a benchmark dataset for reading order detection built with weak supervision from WORD documents, which contains 500K document images with a wide range of document types as well as the corresponding reading order information. ### Supported Tasks and Leaderboards Reading Order of documents ### Languages English ## Dataset Structure ### Data Instances [More Information Needed] ### Data Fields - src : text - tgt : text - bleu : float - tgt_index : list of ints - original_filename : str - filename : str - page_idx : int - src_layout : Bounding boxes for src (list of list of ints) - tgt_layout : Bounding boxes for tgt (list of list of ints) ### Data Splits train : 400,000 dev : 50,000 test : 50,000 ## Dataset Creation ### Curation Rationale [More Information Needed] ### Source Data #### Initial Data Collection and Normalization [More Information Needed] #### Who are the source language producers? [More Information Needed] ### Annotations #### Annotation process [More Information Needed] #### Who are the annotators? [More Information Needed] ### Personal and Sensitive Information [More Information Needed] ## Considerations for Using the Data ### Social Impact of Dataset [More Information Needed] ### Discussion of Biases [More Information Needed] ### Other Known Limitations [More Information Needed] ## Additional Information ### Dataset Curators [More Information Needed] ### Licensing Information [More Information Needed] ### Citation Information [More Information Needed] ### Contributions [More Information Needed]
maveriq/readingbank
[ "size_categories:100K<n<1M", "language:en", "arxiv:2108.11591", "region:us" ]
2023-02-08T10:46:58+00:00
{"language": ["en"], "size_categories": ["100K<n<1M"]}
2023-02-08T10:59:29+00:00
[ "2108.11591" ]
[ "en" ]
TAGS #size_categories-100K<n<1M #language-English #arxiv-2108.11591 #region-us
# Dataset Card for ReadingBank ## Dataset Description - Homepage: URL - Repository: URL - Paper: URL - Leaderboard: - Point of Contact: Raise github issue on mentioned repository for dataset related matters and contact @maveriq for huggingface dataset port. ### Dataset Summary ReadingBank is a benchmark dataset for reading order detection built with weak supervision from WORD documents, which contains 500K document images with a wide range of document types as well as the corresponding reading order information. ### Supported Tasks and Leaderboards Reading Order of documents ### Languages English ## Dataset Structure ### Data Instances ### Data Fields - src : text - tgt : text - bleu : float - tgt_index : list of ints - original_filename : str - filename : str - page_idx : int - src_layout : Bounding boxes for src (list of list of ints) - tgt_layout : Bounding boxes for tgt (list of list of ints) ### Data Splits train : 400,000 dev : 50,000 test : 50,000 ## Dataset Creation ### Curation Rationale ### Source Data #### Initial Data Collection and Normalization #### Who are the source language producers? ### Annotations #### Annotation process #### Who are the annotators? ### Personal and Sensitive Information ## Considerations for Using the Data ### Social Impact of Dataset ### Discussion of Biases ### Other Known Limitations ## Additional Information ### Dataset Curators ### Licensing Information ### Contributions
[ "# Dataset Card for ReadingBank", "## Dataset Description\n\n- Homepage: URL\n- Repository: URL\n- Paper: URL\n- Leaderboard: \n- Point of Contact: Raise github issue on mentioned repository for dataset related matters and contact @maveriq for huggingface dataset port.", "### Dataset Summary\n\nReadingBank is a benchmark dataset for reading order detection built with weak supervision from WORD documents, which contains 500K document images with a wide range of document types as well as the corresponding reading order information.", "### Supported Tasks and Leaderboards\n\nReading Order of documents", "### Languages\n\nEnglish", "## Dataset Structure", "### Data Instances", "### Data Fields\n\n- src : text\n- tgt : text\n- bleu : float\n- tgt_index : list of ints\n- original_filename : str\n- filename : str\n- page_idx : int\n- src_layout : Bounding boxes for src (list of list of ints)\n- tgt_layout : Bounding boxes for tgt (list of list of ints)", "### Data Splits\n\ntrain : 400,000\ndev : 50,000\ntest : 50,000", "## Dataset Creation", "### Curation Rationale", "### Source Data", "#### Initial Data Collection and Normalization", "#### Who are the source language producers?", "### Annotations", "#### Annotation process", "#### Who are the annotators?", "### Personal and Sensitive Information", "## Considerations for Using the Data", "### Social Impact of Dataset", "### Discussion of Biases", "### Other Known Limitations", "## Additional Information", "### Dataset Curators", "### Licensing Information", "### Contributions" ]
[ "TAGS\n#size_categories-100K<n<1M #language-English #arxiv-2108.11591 #region-us \n", "# Dataset Card for ReadingBank", "## Dataset Description\n\n- Homepage: URL\n- Repository: URL\n- Paper: URL\n- Leaderboard: \n- Point of Contact: Raise github issue on mentioned repository for dataset related matters and contact @maveriq for huggingface dataset port.", "### Dataset Summary\n\nReadingBank is a benchmark dataset for reading order detection built with weak supervision from WORD documents, which contains 500K document images with a wide range of document types as well as the corresponding reading order information.", "### Supported Tasks and Leaderboards\n\nReading Order of documents", "### Languages\n\nEnglish", "## Dataset Structure", "### Data Instances", "### Data Fields\n\n- src : text\n- tgt : text\n- bleu : float\n- tgt_index : list of ints\n- original_filename : str\n- filename : str\n- page_idx : int\n- src_layout : Bounding boxes for src (list of list of ints)\n- tgt_layout : Bounding boxes for tgt (list of list of ints)", "### Data Splits\n\ntrain : 400,000\ndev : 50,000\ntest : 50,000", "## Dataset Creation", "### Curation Rationale", "### Source Data", "#### Initial Data Collection and Normalization", "#### Who are the source language producers?", "### Annotations", "#### Annotation process", "#### Who are the annotators?", "### Personal and Sensitive Information", "## Considerations for Using the Data", "### Social Impact of Dataset", "### Discussion of Biases", "### Other Known Limitations", "## Additional Information", "### Dataset Curators", "### Licensing Information", "### Contributions" ]
[ 30, 7, 57, 53, 14, 5, 6, 6, 94, 18, 5, 7, 4, 10, 10, 5, 5, 9, 8, 8, 7, 8, 7, 5, 6, 6, 5 ]
[ "passage: TAGS\n#size_categories-100K<n<1M #language-English #arxiv-2108.11591 #region-us \n# Dataset Card for ReadingBank## Dataset Description\n\n- Homepage: URL\n- Repository: URL\n- Paper: URL\n- Leaderboard: \n- Point of Contact: Raise github issue on mentioned repository for dataset related matters and contact @maveriq for huggingface dataset port.### Dataset Summary\n\nReadingBank is a benchmark dataset for reading order detection built with weak supervision from WORD documents, which contains 500K document images with a wide range of document types as well as the corresponding reading order information.### Supported Tasks and Leaderboards\n\nReading Order of documents### Languages\n\nEnglish## Dataset Structure### Data Instances### Data Fields\n\n- src : text\n- tgt : text\n- bleu : float\n- tgt_index : list of ints\n- original_filename : str\n- filename : str\n- page_idx : int\n- src_layout : Bounding boxes for src (list of list of ints)\n- tgt_layout : Bounding boxes for tgt (list of list of ints)### Data Splits\n\ntrain : 400,000\ndev : 50,000\ntest : 50,000## Dataset Creation### Curation Rationale### Source Data#### Initial Data Collection and Normalization#### Who are the source language producers?### Annotations#### Annotation process#### Who are the annotators?### Personal and Sensitive Information## Considerations for Using the Data### Social Impact of Dataset### Discussion of Biases### Other Known Limitations## Additional Information### Dataset Curators### Licensing Information### Contributions" ]
[ -0.06482754647731781, 0.21726147830486298, -0.006406255532056093, 0.05524281784892082, 0.09294036775827408, 0.07559112459421158, 0.06046855077147484, 0.15010160207748413, 0.021301645785570145, 0.1698671281337738, 0.02967122569680214, 0.06442771852016449, 0.1385941207408905, 0.17676663398742676, -0.04093616455793381, -0.19249285757541656, 0.021719135344028473, -0.0734773576259613, -0.019891534000635147, 0.11934574693441391, 0.10935364663600922, -0.08873447775840759, 0.06779999285936356, -0.1231820210814476, -0.024032894521951675, -0.012241426855325699, -0.0662030577659607, -0.025014368817210197, 0.028627309948205948, 0.04343509301543236, 0.020788082852959633, 0.04475637152791023, 0.11441391706466675, -0.21423792839050293, 0.02235765941441059, 0.07254571467638016, 0.011720719747245312, 0.0725727528333664, 0.11068779230117798, -0.08119531720876694, 0.04286488518118858, -0.1844654381275177, 0.054562345147132874, 0.03401557728648186, -0.1222018450498581, -0.14585307240486145, -0.16760195791721344, 0.08636995404958725, 0.07251964509487152, 0.0376758798956871, -0.05813002586364746, 0.07144128531217575, -0.07301384955644608, 0.10054386407136917, 0.1744336634874344, -0.10785995423793793, -0.07225688546895981, 0.03907100856304169, 0.05097208172082901, 0.11991650611162186, -0.12705859541893005, -0.01920815370976925, 0.0007397779845632613, 0.020179850980639458, 0.02100890874862671, -0.02955782227218151, -0.04374828189611435, 0.05222723260521889, -0.1287500560283661, -0.06808789074420929, 0.1656600683927536, 0.019661659374833107, 0.004849035292863846, -0.1509355753660202, 0.004364458378404379, -0.07463806867599487, -0.03701980784535408, 0.004399788100272417, -0.0011730119585990906, -0.0442965030670166, 0.05785364285111427, 0.010074150748550892, -0.037541188299655914, -0.038685012608766556, 0.044812534004449844, 0.00026130196056328714, 0.028612816706299782, -0.02397429384291172, 0.022009244188666344, 0.052367307245731354, 0.057021547108888626, -0.14646169543266296, -0.014549191109836102, -0.05058273300528526, -0.1395217776298523, -0.01218003872781992, 0.057266708463430405, 0.008498422801494598, 0.10865103453397751, 0.12957748770713806, -0.0795656070113182, 0.056745126843452454, -0.019891204312443733, -0.013257211074233055, 0.06117061525583267, 0.12969373166561127, -0.09215307235717773, -0.12973789870738983, -0.0409448966383934, 0.05163072049617767, -0.05227570980787277, -0.016127850860357285, -0.02426297403872013, 0.03171427175402641, 0.03914021700620651, 0.1010775938630104, 0.09635501354932785, 0.010529542341828346, -0.07726788520812988, -0.009496070444583893, 0.10035113245248795, -0.13218073546886444, 0.05552060902118683, 0.08963825553655624, -0.012328114360570908, -0.013623354025185108, -0.03405856713652611, -0.035034626722335815, -0.10754622519016266, 0.10204354673624039, -0.037528496235609055, -0.04621679335832596, -0.05881759896874428, -0.0937250405550003, 0.06751984357833862, -0.06468084454536438, -0.04928894713521004, 0.0034872200340032578, -0.11069273948669434, -0.103631392121315, 0.005748388357460499, -0.11650774627923965, -0.040616437792778015, -0.013384939171373844, -0.06511957198381424, 0.03198301047086716, 0.019947312772274017, 0.04106064513325691, -0.057633183896541595, 0.07319414615631104, -0.041014350950717926, 0.034373052418231964, 0.09046189486980438, 0.029803946614265442, -0.06077876687049866, 0.06020171567797661, -0.06993849575519562, 0.10794230550527573, -0.13409540057182312, 0.031525902450084686, -0.12692219018936157, -0.08398381620645523, 0.033520184457302094, -0.016498824581503868, 0.005580232944339514, 0.1821318417787552, -0.20723576843738556, -0.02630019560456276, 0.1403610110282898, -0.04008202627301216, -0.09516427665948868, 0.06659117341041565, -0.02564156986773014, -0.03621659055352211, 0.025085926055908203, 0.11455462872982025, 0.10734377801418304, 0.020052501931786537, -0.07008468359708786, -0.028440609574317932, 0.03958946838974953, 0.18410393595695496, 0.09722762554883957, -0.05626607686281204, 0.10735835134983063, 0.008829480037093163, -0.03636573627591133, -0.07945429533720016, -0.03473271429538727, -0.0646684467792511, 0.0003617280162870884, -0.00801012758165598, 0.03072408214211464, 0.04871474951505661, -0.054462824016809464, -0.03275379538536072, -0.09301328659057617, -0.06651771813631058, 0.03593247011303902, -0.013303091749548912, -0.018996261060237885, -0.03586999699473381, 0.028148779645562172, 0.01940724439918995, 0.034187786281108856, -0.18865084648132324, -0.11667198687791824, 0.04576421529054642, 0.024645622819662094, 0.07824867218732834, -0.04662662371993065, 0.04489893093705177, -0.013390335254371166, -0.04628437012434006, -0.02907629869878292, 0.044310297816991806, 0.007228346541523933, -0.030012689530849457, -0.22874706983566284, -0.023040469735860825, -0.055476605892181396, 0.026868334040045738, -0.17664490640163422, 0.016508230939507484, 0.12838837504386902, 0.18882638216018677, 0.03305789455771446, -0.0674976110458374, 0.07035248726606369, 0.01435861736536026, -0.018277661874890327, -0.08025088906288147, -0.020536428317427635, -0.08133646100759506, 0.003182781394571066, -0.010218379087746143, -0.09740845859050751, -0.0011102734133601189, 0.057115282863378525, 0.10053396224975586, -0.10559392720460892, -0.021983927115797997, -0.048446789383888245, -0.019515933468937874, -0.051695071160793304, -0.06576229631900787, 0.01410795096307993, 0.05357188358902931, 0.017662476748228073, -0.0701599195599556, -0.09020613878965378, -0.01715097390115261, 0.02818826399743557, -0.038345955312252045, 0.21132250130176544, -0.0026234418619424105, -0.10974184423685074, 0.14139346778392792, 0.00716181006282568, 0.09653446078300476, 0.054634325206279755, -0.05990856513381004, -0.10642142593860626, -0.006205882877111435, 0.05753209441900253, 0.03937682881951332, 0.09085028618574142, -0.07692115753889084, 0.005623905919492245, 0.07068996876478195, -0.0057749273255467415, 0.0014516111696138978, -0.052186667919158936, 0.039707671850919724, -0.005624387878924608, -0.06372157484292984, 0.002351237926632166, 0.008391231298446655, 0.05484682694077492, 0.11313305795192719, 0.03183652460575104, 0.07478102296590805, -0.03591032698750496, -0.07725206017494202, -0.1051025390625, 0.14357782900333405, -0.09823127090930939, -0.18934990465641022, -0.09550593793392181, -0.06315934658050537, 0.007789344526827335, -0.030071565881371498, 0.015665311366319656, -0.08735647052526474, -0.08787718415260315, -0.06662886589765549, 0.03341002017259598, 0.03937622904777527, -0.06910897046327591, -0.04750283807516098, 0.017283223569393158, -0.012562645599246025, -0.1073102355003357, 0.051545195281505585, 0.09510164707899094, 0.049095626920461655, 0.026638608425855637, 0.025596611201763153, 0.13230443000793457, 0.11372780054807663, 0.043669771403074265, 0.007983631454408169, -0.03249253332614899, 0.25344982743263245, -0.1523994505405426, 0.11319417506456375, 0.04175921902060509, -0.06047632172703743, 0.04757007211446762, 0.2167745977640152, 0.0059316991828382015, -0.0656781867146492, 0.03206299617886543, 0.0356791652739048, -0.016561206430196762, -0.2800499498844147, -0.0402633436024189, -0.09469976276159286, 0.02710030972957611, 0.07160945981740952, 0.06362422555685043, -0.06491487473249435, 0.0122354282066226, -0.07383494824171066, 0.01570429652929306, 0.08009708672761917, 0.06543412059545517, 0.022767433896660805, 0.013300993479788303, 0.04371035471558571, -0.04793056473135948, -0.0008295706938952208, 0.10415488481521606, 0.012313265353441238, 0.20174145698547363, -0.06191415712237358, 0.25620514154434204, 0.025595588609576225, 0.11487610638141632, -0.04371590167284012, 0.03981265798211098, 0.006060268264263868, 0.08708875626325607, 0.010731575079262257, -0.049036506563425064, 0.017790120095014572, 0.03565617650747299, 0.054945193231105804, -0.06936770677566528, 0.0532817468047142, -0.06878671795129776, 0.08329418301582336, 0.17215697467327118, 0.05774000659584999, -0.1591399908065796, 0.003154733683913946, 0.11886364966630936, -0.027491889894008636, -0.11472237855195999, -0.01891370862722397, 0.046897321939468384, -0.13626979291439056, 0.047881294041872025, -0.012809324078261852, 0.13738462328910828, -0.0738995224237442, -0.04604976624250412, -0.00803200900554657, 0.06693475693464279, -0.03160382807254791, 0.1124425157904625, -0.1823570281267166, 0.1551619917154312, 0.004497946240007877, 0.013073599897325039, -0.09140253067016602, 0.051762279123067856, 0.010807960294187069, 0.005805274937301874, 0.15505863726139069, 0.007204939145594835, -0.07852758467197418, -0.026901882141828537, -0.0533578097820282, -0.0016489678528159857, 0.12073429673910141, -0.12549719214439392, 0.1009570062160492, -0.022459955886006355, -0.061559755355119705, -0.05438655987381935, -0.09535621106624603, -0.0633540228009224, -0.16857610642910004, 0.07495961338281631, -0.10009552538394928, 0.0861256867647171, -0.05281601846218109, -0.030294524505734444, -0.08596688508987427, 0.15247225761413574, -0.1408587098121643, -0.07929567247629166, -0.1689041703939438, 0.049026183784008026, 0.20374086499214172, -0.047597017139196396, 0.008072863332927227, -0.009957743808627129, 0.14836640655994415, 0.046759169548749924, -0.031161189079284668, 0.04948939383029938, -0.03570302575826645, -0.26333698630332947, -0.043981436640024185, 0.15710020065307617, 0.02643551677465439, 0.05289171636104584, -0.022993814200162888, 0.05277831479907036, -0.0018443417502567172, -0.0968639925122261, 0.0625992864370346, 0.040593471378088, 0.07082894444465637, 0.14428067207336426, -0.014847860671579838, -0.17441391944885254, -0.1251194328069687, -0.031074073165655136, 0.08436837792396545, 0.14379514753818512, -0.06064438819885254, 0.1241898238658905, 0.06788831204175949, -0.08949583023786545, -0.17879773676395416, 0.012463279999792576, 0.009853031486272812, 0.001812287955544889, 0.008656362071633339, -0.1296137273311615, 0.042820680886507034, 0.016300156712532043, 0.018110832199454308, 0.08973275870084763, -0.19124086201190948, -0.11471296101808548, 0.04094189405441284, 0.011058898642659187, -0.26680517196655273, -0.18960188329219818, -0.12219498306512833, -0.03225865587592125, -0.1630820631980896, 0.04671831801533699, -0.005067297723144293, 0.016733430325984955, -0.01706952229142189, -0.001582848490215838, 0.014571625739336014, -0.02889038436114788, 0.15970809757709503, 0.008271829225122929, 0.014013632200658321, -0.07876624166965485, -0.039187029004096985, 0.06214163079857826, -0.013110117986798286, 0.06836646050214767, -0.05056019499897957, 0.06114689260721207, -0.17210209369659424, -0.014680151827633381, -0.07959383726119995, -0.018533429130911827, -0.09010633826255798, -0.02282065898180008, -0.10150878876447678, 0.08171457052230835, 0.08448170125484467, -0.033871933817863464, 0.0929696336388588, -0.05406849831342697, 0.0637568011879921, 0.080204539000988, 0.17853012681007385, 0.11078573018312454, -0.08484180271625519, -0.0053520346991717815, -0.022386474534869194, -0.041479963809251785, -0.1378256380558014, 0.03550625964999199, 0.1534547507762909, 0.039649005979299545, 0.17064112424850464, 0.0054847788996994495, -0.1143830269575119, -0.03597423806786537, 0.06779699772596359, -0.0673246756196022, -0.18286019563674927, 0.028310848399996758, -0.009178848005831242, -0.2264649122953415, -0.06345951557159424, 0.06366084516048431, 0.03322485461831093, -0.05716531723737717, 0.0237478855997324, 0.11901815235614777, 0.03417212888598442, 0.1316102147102356, 0.06850828230381012, 0.09039747714996338, -0.12352605909109116, 0.058028701692819595, 0.11740196496248245, -0.04751250520348549, -0.016628768295049667, 0.2540188729763031, -0.07222448289394379, -0.04083772748708725, 0.13815392553806305, 0.07066972553730011, 0.08922717720270157, 0.005172009579837322, 0.003398353699594736, -0.1442302167415619, 0.07486537843942642, 0.15330465137958527, -0.015810508280992508, 0.025884350761771202, 0.037394553422927856, -0.02013133093714714, -0.041492968797683716, 0.1524544209241867, 0.10400675982236862, 0.04937814921140671, -0.07871692627668381, 0.013555622659623623, -0.0638674721121788, -0.009129307232797146, -0.009494681842625141, 0.028796805068850517, -0.14630092680454254, -0.002822568640112877, -0.13022713363170624, 0.06306620687246323, -0.0867171436548233, 0.007920138537883759, -0.025351183488965034, -0.08000053465366364, -0.003558715572580695, -0.024971144273877144, -0.06261080503463745, -0.07344535738229752, -0.036294858902692795, 0.12120883911848068, -0.15712779760360718, 0.005991967394948006, 0.07575500756502151, -0.09515150636434555, 0.1010541096329689, -0.005288272630423307, -0.05415605753660202, 0.027324242517352104, -0.11817657947540283, -0.0137153510004282, -0.015546776354312897, 0.052256740629673004, 0.047176457941532135, -0.1280888319015503, -0.005250986665487289, -0.03265811502933502, -0.04558052867650986, 0.06250473111867905, -0.030889516696333885, -0.08261024206876755, 0.09941785782575607, -0.1080126166343689, -0.05354471877217293, -0.009349171072244644, 0.06385606527328491, 0.09902070462703705, 0.009392517618834972, 0.10789988189935684, -0.033217884600162506, 0.10797048360109329, -0.16274292767047882, -0.014806892722845078, 0.013220029883086681, -0.03941785544157028, -0.008412770926952362, 0.006212117150425911, 0.11663929373025894, -0.0016937534091994166, 0.15286953747272491, -0.03914426639676094, -0.030215414240956306, 0.04769458621740341, 0.04826916754245758, -0.02938154526054859, 0.06598438322544098, 0.01432480663061142, -0.005243158433586359, -0.07350858300924301, -0.01679307594895363, -0.055053286254405975, -0.06768903136253357, -0.07802219688892365, 0.15850313007831573, 0.19301098585128784, 0.16247831284999847, -0.015775222331285477, 0.04970961809158325, -0.13942620158195496, 0.006236273329705, 0.10951905697584152, -0.028414007276296616, 0.04612979665398598, -0.06611696630716324, 0.0849437415599823, 0.060525789856910706, -0.18062874674797058, 0.0878576934337616, -0.10869713127613068, -0.10090884566307068, -0.024398408830165863, -0.05546366795897484, -0.08638907968997955, -0.020427964627742767, -0.004942979197949171, -0.13528747856616974, 0.09082140773534775, 0.06857210397720337, 0.01613893173635006, -0.0022941511124372482, 0.06185527145862579, 0.014876371249556541, -0.0456092543900013, 0.07461792975664139, 0.05021514743566513, 0.01706467941403389, 0.03807328641414642, 0.03786177188158035, -0.0019325937610119581, 0.031430263072252274, 0.08828289061784744, 0.043607376515865326, -0.03266006335616112, -0.00017014460172504187, -0.05688001960515976, -0.09694767743349075, 0.03454911336302757, 0.013072937726974487, -0.049575481563806534, 0.19739533960819244, 0.038674212992191315, 0.02099142037332058, -0.007868234999477863, 0.19995750486850739, -0.06227749586105347, -0.08161408454179764, -0.1548500657081604, -0.031175805255770683, -0.03824590891599655, -0.01985109969973564, 0.03783309459686279, -0.15543383359909058, 0.022107593715190887, 0.14216935634613037, 0.14629945158958435, -0.024818990379571915, 0.006647959351539612, 0.02161954529583454, 0.0310827624052763, 0.018854249268770218, 0.015501473098993301, 0.07771509885787964, 0.158327117562294, -0.04586486145853996, 0.023874344304203987, -0.009521943517029285, -0.04951925575733185, -0.03679017722606659, 0.0632849633693695, 0.03798063471913338, -0.023283863440155983, -0.058789972215890884, 0.1685088872909546, -0.12806230783462524, -0.264201283454895, 0.03686019778251648, -0.14134515821933746, -0.1625044047832489, -0.055431824177503586, -0.0005048424936830997, 0.020586200058460236, -0.018472980707883835, 0.06461571156978607, -0.01808549463748932, 0.09399517625570297, 0.04739053174853325, -0.03040514513850212, -0.01188286580145359, 0.06810682266950607, -0.12214047461748123, 0.16263344883918762, -0.008356934413313866, 0.05409783124923706, 0.1042155921459198, -0.07512956857681274, -0.13748139142990112, -0.00952826626598835, 0.09856033325195312, -0.0007650444749742746, 0.04340163990855217, 0.17810513079166412, -0.0016044791555032134, 0.0765194520354271, 0.09941504895687103, -0.028940344229340553, 0.012964644469320774, 0.06371716409921646, -0.015711575746536255, -0.1141902431845665, 0.045458681881427765, -0.09062249213457108, 0.09030115604400635, 0.19023406505584717, -0.04909930378198624, 0.029514389112591743, -0.009163211099803448, 0.031198278069496155, -0.04101862385869026, 0.14590710401535034, -0.0008499761461280286, -0.14252988994121552, -0.016122886911034584, -0.03240001201629639, 0.09123718738555908, -0.16581176221370697, -0.028224920853972435, -0.024023808538913727, 0.009807904250919819, -0.08277059346437454, 0.1631973534822464, 0.05650678649544716, 0.006363218184560537, -0.02094658836722374, -0.11231241375207901, 0.02118372730910778, 0.1459096223115921, -0.1111835464835167, 0.03211469575762749 ]
30d006314183750696269117b4c28fc153d54150
# Dataset Card for "massive_social" [More Information needed](https://github.com/huggingface/datasets/blob/main/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
fathyshalab/massive_social
[ "region:us" ]
2023-02-08T11:11:43+00:00
{"dataset_info": {"features": [{"name": "id", "dtype": "string"}, {"name": "label", "dtype": "int64"}, {"name": "text", "dtype": "string"}], "splits": [{"name": "train", "num_bytes": 25788, "num_examples": 391}, {"name": "validation", "num_bytes": 4344, "num_examples": 68}, {"name": "test", "num_bytes": 6404, "num_examples": 106}], "download_size": 0, "dataset_size": 36536}}
2023-02-08T12:21:19+00:00
[]
[]
TAGS #region-us
# Dataset Card for "massive_social" More Information needed
[ "# Dataset Card for \"massive_social\"\n\nMore Information needed" ]
[ "TAGS\n#region-us \n", "# Dataset Card for \"massive_social\"\n\nMore Information needed" ]
[ 6, 14 ]
[ "passage: TAGS\n#region-us \n# Dataset Card for \"massive_social\"\n\nMore Information needed" ]
[ -0.11204364150762558, 0.1302291750907898, -0.004796294961124659, -0.06469552963972092, 0.10833393782377243, 0.11832618713378906, 0.029816502705216408, 0.01029482763260603, 0.1970551460981369, -0.04572271183133125, 0.13679778575897217, 0.012851790525019169, 0.02266191877424717, 0.29092010855674744, -0.08428552746772766, 0.007269436027854681, 0.03593452274799347, 0.009143359027802944, -0.21421915292739868, 0.03293249383568764, -0.00221986579708755, -0.0902831181883812, 0.0829889327287674, -0.13776256144046783, -0.08761774748563766, 0.09777536243200302, -0.034625232219696045, -0.038403742015361786, 0.09652040153741837, -0.04755300283432007, 0.11044007539749146, 0.03926024213433266, 0.005907184910029173, -0.05936160683631897, 0.023942751809954643, -0.03256133198738098, -0.027894696220755577, 0.06227956339716911, 0.00920939352363348, -0.09209983795881271, -0.11985167115926743, -0.048910871148109436, 0.029645631089806557, 0.03035755455493927, -0.11558645963668823, -0.2975582778453827, -0.020457103848457336, -0.1040971502661705, -0.05297603830695152, -0.11547448486089706, 0.053625013679265976, 0.0600055567920208, -0.1876193732023239, -0.02347022294998169, -0.023159220814704895, 0.11009421199560165, 0.04422843083739281, 0.1897817999124527, -0.09448336809873581, 0.17647619545459747, 0.008422845043241978, 0.09934073686599731, 0.07898019999265671, -0.03226123005151749, 0.02616029419004917, -0.023295266553759575, -0.018963931128382683, 0.08570238202810287, -0.03364163264632225, -0.02599358558654785, 0.37104567885398865, 0.011730637401342392, 0.06923049688339233, -0.01753426343202591, -0.030013209208846092, 0.10804816335439682, 0.02133113145828247, -0.0354599691927433, 0.019410809502005577, 0.050819624215364456, 0.014989983290433884, -0.0054761492647230625, -0.07770059257745743, -0.07882390171289444, -0.15923914313316345, -0.01713455468416214, -0.10373235493898392, 0.150776669383049, -0.26282504200935364, -0.08292549103498459, -0.07461368292570114, 0.022609516978263855, 0.10474187135696411, -0.14236213266849518, 0.006203791592270136, -0.037906255573034286, 0.05788838490843773, 0.07941446453332901, 0.1752512902021408, 0.004727750550955534, 0.058385755866765976, -0.008735683746635914, -0.04620665684342384, 0.06640977412462234, 0.24671530723571777, -0.15706075727939606, -0.04969331994652748, -0.12510788440704346, -0.048525821417570114, -0.147608682513237, -0.048587292432785034, -0.04929303750395775, -0.013816828839480877, 0.05718596279621124, -0.18953025341033936, 0.12940149009227753, -0.01950995810329914, -0.07963033765554428, -0.0950944796204567, 0.02140079438686371, 0.09977755695581436, -0.020425766706466675, 0.006849713623523712, 0.04484782740473747, -0.04159199818968773, 0.05121653899550438, -0.13149239122867584, -0.008682313375175, 0.12265849113464355, 0.08619263023138046, -0.04139512777328491, -0.08278721570968628, -0.01891358382999897, 0.06686592102050781, 0.0885024294257164, -0.19064895808696747, 0.07423210889101028, -0.05030122399330139, -0.24243389070034027, 0.05349459871649742, 0.009279731661081314, -0.025443991646170616, 0.10516635328531265, -0.0006085907225497067, 0.13546262681484222, -0.04773625731468201, -0.11360156536102295, 0.16459406912326813, -0.131500244140625, 0.04711335524916649, -0.02904984913766384, 0.036415327340364456, -0.20695000886917114, 0.03681838884949684, -0.07585619390010834, 0.007559426128864288, 0.05087080970406532, 0.08263574540615082, -0.06964696198701859, 0.06469280272722244, -0.015406578779220581, 0.020370924845337868, -0.13434498012065887, 0.04574275016784668, -0.053825389593839645, 0.15540091693401337, -0.20566755533218384, -0.0675579383969307, 0.1438233107328415, -0.11533249169588089, -0.16801540553569794, 0.06133284047245979, -0.052028823643922806, 0.08821938186883926, 0.13376326858997345, 0.30755415558815, -0.04694734141230583, 0.1000288724899292, -0.028392955660820007, 0.14647448062896729, -0.2183825969696045, -0.2518094778060913, 0.08969366550445557, -0.0410965196788311, -0.08639666438102722, 0.019093191251158714, 0.14922544360160828, 0.03223763033747673, -0.09023177623748779, -0.0707411989569664, 0.031156284734606743, -0.15149037539958954, 0.13525061309337616, 0.06563238054513931, 0.009337958879768848, -0.08510290831327438, 0.1710255891084671, 0.04741799831390381, 0.030030956491827965, 0.06301649659872055, -0.08409693092107773, -0.05110274255275726, 0.09776086360216141, -0.07763828337192535, 0.006348136346787214, -0.16678066551685333, -0.05430265888571739, -0.017633026465773582, 0.0935097336769104, 0.04535040259361267, 0.19871920347213745, 0.07500725239515305, -0.10341406613588333, -0.038499653339385986, 0.08899322152137756, 0.21737885475158691, 0.03471546247601509, 0.018231665715575218, -0.002158351242542267, 0.03670882061123848, -0.06114238128066063, 0.011109337210655212, -0.11663059145212173, -0.05391469970345497, 0.16669653356075287, 0.026153774932026863, -0.013752742670476437, 0.006522735580801964, 0.03934886306524277, 0.014762173406779766, 0.027869274839758873, -0.016665656119585037, 0.031815480440855026, -0.06501024961471558, -0.15103137493133545, -0.012304592877626419, 0.034588612616062164, 0.37673839926719666, 0.07720903307199478, -0.059998225420713425, 0.05662572383880615, 0.05395511910319328, 0.05507481470704079, 0.03675459697842598, -0.09989456087350845, 0.025821810588240623, 0.05481193587183952, -0.03301762416958809, 0.017738979309797287, -0.027203502133488655, 0.05823293328285217, 0.02039838396012783, 0.03055950440466404, -0.04873744770884514, 0.01917838305234909, 0.05664898827672005, -0.2800801396369934, 0.13625335693359375, 0.18544960021972656, 0.20444746315479279, 0.14469076693058014, -0.038360562175512314, -0.03160429000854492, 0.0027355283964425325, -0.11804497241973877, -0.09808484464883804, 0.143294557929039, -0.10612201690673828, 0.023050708696246147, 0.08264783769845963, 0.006629610434174538, 0.04267221689224243, -0.026692578569054604, -0.09450893849134445, -0.00918263103812933, -0.02121799625456333, -0.15040485560894012, 0.022075196728110313, 0.03965689614415169, 0.1350908726453781, 0.03970986604690552, 0.027409851551055908, 0.1561494916677475, -0.026288827881217003, -0.01809760369360447, 0.06066334247589111, -0.0860045775771141, -0.2542668879032135, 0.09309471398591995, -0.049019310623407364, 0.03799525275826454, 0.03301769495010376, -0.05647282674908638, -0.1675877422094345, -0.019032791256904602, 0.10209900140762329, 0.0007493700832128525, -0.1332571655511856, -0.00307459500618279, 0.012716078199446201, 0.026763543486595154, -0.051966745406389236, -0.06566174328327179, -0.014989901334047318, -0.06228761747479439, 0.09269783645868301, 0.08949002623558044, -0.1276065707206726, 0.10853562504053116, 0.06191365048289299, -0.032612793147563934, 0.03961387276649475, -0.04781850799918175, -0.07281672209501266, -0.08671044558286667, -0.07383710891008377, 0.11313816159963608, 0.005581524223089218, -0.008665798231959343, 0.023917535319924355, 0.10394442826509476, -0.15436463057994843, -0.07945213466882706, -0.04154789447784424, -0.19468899071216583, -0.21238423883914948, -0.22392801940441132, -0.014011292718350887, 0.16016267240047455, 0.03361455723643303, 0.03350365161895752, -0.11638173460960388, 0.06827902048826218, 0.13965483009815216, -0.10460802167654037, -0.1258118599653244, -0.07182237505912781, -0.049046073108911514, -0.03373722359538078, -0.009884919039905071, -0.1494562178850174, -0.03228868544101715, 0.20550860464572906, 0.047431472688913345, 0.14026060700416565, 0.07788687944412231, 0.07968736439943314, -0.025394408032298088, 0.1531447023153305, 0.060307327657938004, 0.11017698049545288, 0.11558716744184494, 0.024930929765105247, -0.03380122780799866, 0.037430912256240845, -0.11242275685071945, -0.021688349545001984, 0.20769274234771729, -0.16852807998657227, 0.02595101110637188, -0.1816423386335373, 0.06556304544210434, -0.04773964360356331, -0.0014671882381662726, -0.16923660039901733, 0.06609517335891724, 0.0851309671998024, 0.1700785607099533, -0.05097787454724312, 0.0879250168800354, 0.1315394639968872, -0.0826520249247551, 0.21065063774585724, 0.030131390318274498, 0.07218582183122635, -0.03479079529643059, 0.04980193078517914, -0.1358935683965683, -0.10982642322778702, 0.03155550733208656, 0.1280859261751175, -0.08255700021982193, 0.24016602337360382, 0.055097054690122604, -0.11845448613166809, -0.20899276435375214, -0.09684788435697556, 0.017904093489050865, 0.028020957484841347, 0.15051107108592987, 0.01894063502550125, -0.018211297690868378, -0.08795750141143799, 0.005254523362964392, 0.05275702476501465, 0.04945903643965721, -0.09824258089065552, -0.20135068893432617, 0.07530808448791504, 0.028660694137215614, -0.03014398366212845, -0.21025340259075165, 0.04605370759963989, -0.04719787836074829, -0.07306361943483353, 0.08494860678911209, -0.17821991443634033, 0.06342632323503494, -0.004096977412700653, -0.061043623834848404, 0.14958907663822174, 0.12433597445487976, -0.03023727424442768, -0.11004066467285156, 0.044064778834581375, 0.10019421577453613, 0.037931058555841446, -0.08936604112386703, 0.02423926629126072, 0.00459646200761199, -0.06801299750804901, -0.1994757205247879, 0.13343946635723114, -0.0760495737195015, 0.05336245521903038, -0.05986929312348366, 0.1034078523516655, 0.019865095615386963, 0.028926432132720947, -0.03662779554724693, 0.03624684736132622, 0.012108142487704754, -0.11350659281015396, 0.1723373383283615, -0.06612437963485718, 0.1093878373503685, 0.2872844636440277, 0.12705492973327637, -0.1571805477142334, 0.17128701508045197, -0.06432825326919556, 0.14477141201496124, 0.17262403666973114, -0.08526556938886642, 0.18844030797481537, 0.21549777686595917, -0.06077495217323303, -0.3051553964614868, 0.06348080188035965, -0.2313222736120224, -0.08154035359621048, 0.15202845633029938, -0.2094409465789795, 0.11642728000879288, 0.17642462253570557, -0.05594826862215996, 0.09638422727584839, -0.1242072582244873, -0.029204433783888817, 0.12595675885677338, -0.09075986593961716, 0.4675900936126709, -0.11006120592355728, -0.07720037549734116, -0.1290833204984665, 0.08910135179758072, 0.22242163121700287, -0.17312638461589813, -0.015314176678657532, 0.03218679130077362, 0.06757732480764389, -0.0010146582499146461, -0.02760562300682068, 0.1777532547712326, -0.022481830790638924, 0.10224824398756027, -0.06815977394580841, -0.12936712801456451, 0.19830383360385895, -0.0366922952234745, 0.03423365578055382, 0.0158900897949934, 0.009060382843017578, -0.15386246144771576, -0.014174282550811768, -0.010264359414577484, 0.03352980688214302, 0.11111059039831161, -0.05502123758196831, -0.1445237249135971, -0.0074215964414179325, -0.04174424335360527, -0.03614480793476105, 0.14834502339363098, -0.026605837047100067, 0.07645979523658752, -0.0713161900639534, 0.20508915185928345, -0.21543675661087036, -0.00692114420235157, -0.07251822203397751, -0.08670071512460709, 0.014066885225474834, -0.24182642996311188, 0.057427387684583664, 0.16453762352466583, 0.018515517935156822, 0.0014247134095057845, 0.05897827073931694, 0.027469852939248085, 0.04863765835762024, 0.13365046679973602, -0.07899768650531769, -0.1210956946015358, 0.0805104598402977, 0.03542107343673706, 0.01587459072470665, 0.1293702870607376, 0.017761891707777977, 0.10458695143461227, -0.03254839777946472, -0.04337674006819725, 0.051648933440446854, -0.08645525574684143, 0.007528272923082113, 0.016381291672587395, 0.05016086623072624, -0.2035359889268875, 0.23410145938396454, 0.044067736715078354, -0.0911308005452156, -0.03564963489770889, 0.009508374147117138, -0.086587093770504, -0.02927027828991413, 0.04746121168136597, 0.2822273075580597, -0.034070342779159546, -0.16484859585762024, 0.04842314496636391, -0.13147054612636566, -0.01426288578659296, 0.148264542222023, 0.06535667926073074, 0.09058178216218948, 0.017995309084653854, -0.030229484662413597, 0.015319344587624073, -0.08350881189107895, -0.10459401458501816, -0.06975182890892029, -0.014201306737959385, -0.17018842697143555, -0.005202975124120712, 0.1510208249092102, -0.11304638534784317, -0.07292192429304123, -0.06986474245786667, 0.10148900002241135, -0.15273331105709076, -0.048764508217573166, 0.017583921551704407, 0.0062926108948886395, -0.036929573863744736, -0.005752939730882645, -0.010963589884340763, -0.0692390576004982, -0.0812249407172203, 0.20025867223739624, 0.06387137621641159, 0.07115428894758224, -0.10900572687387466, -0.06422730535268784, 0.031259093433618546, 0.07495217770338058, 0.15586267411708832, 0.08963346481323242, -0.033121466636657715, 0.019507229328155518, -0.09993930906057358, -0.13674195110797882, 0.12245720624923706, 0.08444080501794815, 0.08121120929718018, 0.07915373891592026, -0.0494152307510376, 0.0978192389011383, -0.016118966042995453, 0.0857958272099495, -0.06876120716333389, -0.05606340989470482, 0.1618875414133072, -0.11933428049087524, -0.07362789660692215, 0.02880082093179226, -0.08496338874101639, 0.17544202506542206, 0.05068203806877136, -0.03509286046028137, 0.04658065736293793, 0.015027281828224659, -0.06508839875459671, -0.044027358293533325, -0.02574758790433407, -0.14453034102916718, -0.08229229599237442, 0.10053164511919022, 0.04274079203605652, -0.08915510028600693, 0.5573679804801941, -0.08264368027448654, -0.11938697844743729, -0.000008260831236839294, 0.18084919452667236, -0.026738425716757774, -0.006243530195206404, 0.1575976014137268, 0.0009137640590779483, -0.056013017892837524, 0.01833665557205677, 0.13456843793392181, -0.005809518042951822, 0.09990338236093521, 0.10414781421422958, 0.007095860317349434, 0.09359373897314072, -0.0682646855711937, -0.012382877059280872, -0.060968462377786636, 0.051720838993787766, -0.02055085264146328, -0.031243668869137764, -0.0208397526293993, 0.0169516634196043, -0.04198048636317253, -0.05086836591362953, -0.006851822137832642, 0.06329052895307541, -0.10910054296255112, 0.021120399236679077, -0.04558493569493294, -0.03501947596669197, -0.02701699174940586, -0.02591385692358017, 0.04168461263179779, -0.05412920191884041, -0.04793119058012962, 0.29220518469810486, 0.08977896720170975, -0.008920873515307903, -0.025720180943608284, -0.14000862836837769, 0.1013529896736145, 0.015205061994493008, -0.021244069561362267, -0.05418340489268303, -0.03489087522029877, -0.08798440545797348, -0.017530838027596474, 0.03004443645477295, -0.06847911328077316, -0.0003582090139389038, -0.04129262641072273, -0.02462969720363617, -0.10374981164932251, -0.028367280960083008, -0.04513929411768913, 0.053634971380233765, -0.10406789928674698, 0.01845981925725937, -0.016844792291522026, 0.0052267624996602535, 0.047949228435754776, 0.045474737882614136, 0.035180993378162384, 0.14616155624389648, -0.0001552520989207551, -0.032956648617982864, -0.11046626418828964, 0.0757446140050888, 0.02887301705777645, -0.03242794796824455, -0.0669516995549202, 0.09282229095697403, 0.3946804106235504, -0.07998009771108627, -0.01789107546210289, -0.10054153949022293, 0.04038883373141289, 0.043049246072769165, 0.12774735689163208, 0.0035490680020302534, 0.07998445630073547, -0.05875052884221077, -0.02909550629556179, 0.08649710565805435, 0.031384337693452835, 0.01533478032797575, 0.06495209783315659, 0.01909703202545643, 0.043862130492925644, -0.07678189128637314, 0.16247998178005219, -0.17021389305591583, 0.03447587415575981, 0.01996675133705139, -0.23964369297027588, -0.10544747114181519, -0.02901107259094715, -0.0639381930232048, 0.004496730398386717, 0.026336906477808952, -0.03898889571428299, -0.03656022623181343, -0.20212607085704803, 0.020224757492542267, -0.3518048822879791, -0.18229226768016815, 0.0182235985994339, 0.09602377563714981, 0.0691445842385292, -0.03074960969388485, 0.057945895940065384, -0.00911695510149002, -0.03599172830581665, -0.06418080627918243, -0.01602358929812908, 0.01991591975092888, 0.09490952640771866, -0.07377421855926514, -0.0887153372168541, -0.0818614736199379, 0.011240691877901554, 0.09912791103124619, -0.08911585807800293, -0.0394367016851902, 0.16172361373901367, -0.022347599267959595, -0.016795990988612175, -0.00855331588536501, -0.07129291445016861, 0.05609527602791786, -0.06242768466472626, 0.009986255317926407, -0.02355143241584301, -0.014156433753669262, 0.10171789675951004, -0.019058004021644592, -0.08499270677566528, -0.10758814960718155, -0.08100918680429459, -0.0776132270693779, 0.10746216028928757, 0.020347369834780693, 0.005436914507299662, 0.08934849500656128, -0.10232522338628769, 0.09545449167490005, 0.03452036529779434, 0.03246251121163368, 0.011080031283199787, 0.03749720752239227, -0.015134708024561405, -0.15739013254642487, 0.05818476155400276, 0.021768080070614815, -0.057139571756124496, -0.04258684441447258 ]
9eed0d6ad9d86f7598575663b4a568e13406eb2c
# Dataset Card for "massive_transport" [More Information needed](https://github.com/huggingface/datasets/blob/main/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
fathyshalab/massive_transport
[ "region:us" ]
2023-02-08T11:12:00+00:00
{"dataset_info": {"features": [{"name": "id", "dtype": "string"}, {"name": "label", "dtype": "int64"}, {"name": "text", "dtype": "string"}], "splits": [{"name": "train", "num_bytes": 34823, "num_examples": 571}, {"name": "validation", "num_bytes": 6699, "num_examples": 110}, {"name": "test", "num_bytes": 7228, "num_examples": 124}], "download_size": 0, "dataset_size": 48750}}
2023-02-08T12:21:25+00:00
[]
[]
TAGS #region-us
# Dataset Card for "massive_transport" More Information needed
[ "# Dataset Card for \"massive_transport\"\n\nMore Information needed" ]
[ "TAGS\n#region-us \n", "# Dataset Card for \"massive_transport\"\n\nMore Information needed" ]
[ 6, 14 ]
[ "passage: TAGS\n#region-us \n# Dataset Card for \"massive_transport\"\n\nMore Information needed" ]
[ -0.05120331421494484, 0.1651545912027359, -0.0031943051144480705, -0.00030088736093603075, 0.09289819002151489, 0.08213572949171066, 0.02203112281858921, 0.017408164218068123, 0.004751866217702627, -0.035171281546354294, 0.17476606369018555, -0.002559774788096547, -0.0022711418569087982, 0.2602338492870331, 0.018485698848962784, -0.0880739614367485, 0.04216451570391655, -0.008238845504820347, -0.26821401715278625, 0.0391622930765152, 0.06626754999160767, -0.0918545126914978, 0.05864790454506874, -0.11407484859228134, -0.1605469137430191, 0.09717146307229996, -0.08639431744813919, -0.057050660252571106, 0.00691696023568511, -0.05151941254734993, 0.14730304479599, 0.0019471443956717849, 0.07301189750432968, -0.05088713392615318, 0.0067513552494347095, 0.042525481432676315, -0.0263663437217474, 0.06502886861562729, 0.049747128039598465, -0.10634859651327133, -0.13121633231639862, -0.03030482865869999, 0.03615836426615715, -0.01903119497001171, -0.021449187770485878, -0.2993842661380768, -0.0405861921608448, -0.0367262177169323, 0.0010435152798891068, -0.018705332651734352, 0.13761784136295319, 0.08364120870828629, -0.13136611878871918, 0.029727352783083916, -0.014960880391299725, -0.048611048609018326, 0.04481346905231476, 0.19609643518924713, -0.05534709617495537, 0.2395927906036377, -0.021934278309345245, 0.018476171419024467, 0.09113024920225143, -0.07719918340444565, 0.061862628906965256, -0.02018781565129757, -0.09097837656736374, 0.15006406605243683, -0.0729394182562828, -0.020779555663466454, 0.3434434235095978, -0.05109066888689995, 0.06967106461524963, 0.05337534472346306, -0.1118701696395874, -0.10688141733407974, 0.02379368245601654, -0.06964727491140366, 0.08816603571176529, 0.042431190609931946, -0.031554464250802994, -0.03564218804240227, -0.09335390478372574, -0.05728071555495262, -0.19284452497959137, 0.03027009218931198, -0.038572460412979126, 0.16092461347579956, -0.13128124177455902, 0.060231130570173264, -0.09449446201324463, -0.07446715235710144, 0.08310063183307648, -0.14780263602733612, -0.08508026599884033, -0.08435090631246567, 0.06634815037250519, -0.04082726687192917, 0.04513789340853691, -0.0424012653529644, 0.21653246879577637, -0.0037552714347839355, -0.08472347259521484, 0.07679962366819382, 0.11719733476638794, -0.022222882136702538, -0.1396210640668869, -0.14067740738391876, -0.07508260011672974, -0.1031871810555458, -0.03808600828051567, -0.05491270497441292, -0.18494956195354462, -0.011584109626710415, -0.1778310090303421, 0.12813685834407806, -0.11250925809144974, -0.09551295638084412, -0.05989009141921997, -0.00544671481475234, 0.10632038116455078, -0.03197411820292473, 0.0487096793949604, 0.004841834306716919, -0.10789474099874496, 0.14244520664215088, -0.07879126071929932, -0.01821153052151203, 0.12789852917194366, 0.20581932365894318, -0.16739040613174438, -0.027172207832336426, -0.0926159992814064, -0.024885347113013268, 0.06985542923212051, -0.14389467239379883, 0.02148892730474472, -0.09166254848241806, -0.2411366105079651, 0.09922420978546143, 0.05268862470984459, -0.10638222843408585, 0.14632941782474518, 0.019550075754523277, 0.022314831614494324, -0.014296322129666805, -0.0871884822845459, 0.22229908406734467, -0.10644247382879257, 0.035338353365659714, -0.11235129833221436, 0.05698339641094208, -0.15768177807331085, 0.026286592707037926, -0.12528781592845917, -0.010010841302573681, -0.03497861325740814, -0.029090575873851776, -0.17083384096622467, 0.11601030826568604, -0.11684022098779678, -0.01854006014764309, -0.1103057935833931, -0.018554022535681725, -0.014514707028865814, 0.06590860337018967, -0.25944915413856506, -0.02852538786828518, 0.09268030524253845, -0.07313234359025955, -0.08766096830368042, 0.048625215888023376, -0.05867950618267059, 0.10815856605768204, 0.04292445257306099, 0.19209273159503937, 0.0446205735206604, -0.03663543239235878, 0.08387555927038193, 0.22368685901165009, -0.22028017044067383, -0.30984774231910706, 0.08307577669620514, -0.021006174385547638, -0.14551407098770142, 0.0033910630736500025, 0.26156875491142273, 0.07533934712409973, -0.018772359937429428, -0.04002699255943298, 0.051972728222608566, -0.15078632533550262, 0.05260130390524864, -0.023598870262503624, 0.04706713929772377, -0.042397961020469666, 0.11626863479614258, 0.09994401782751083, 0.04687757417559624, 0.037258926779031754, -0.06927037239074707, 0.03799842298030853, 0.001590260653756559, -0.2119559496641159, -0.025877302512526512, -0.07910845428705215, -0.09946393966674805, 0.0226381104439497, 0.0741058960556984, 0.008169910870492458, 0.19416703283786774, 0.11626976728439331, -0.03215629979968071, -0.04169178009033203, 0.103809654712677, 0.24633421003818512, 0.07787561416625977, -0.1072222962975502, -0.027780480682849884, 0.07494809478521347, -0.04246509447693825, -0.11857674270868301, -0.06081134080886841, -0.04044687747955322, 0.15524904429912567, 0.035417500883340836, 0.07667536288499832, 0.054103147238492966, 0.03754531219601631, -0.030108323320746422, -0.03049386851489544, -0.08157996833324432, -0.02350679226219654, -0.07854723930358887, -0.05940760299563408, 0.1378447711467743, -0.026080777868628502, 0.49411436915397644, 0.08890116214752197, 0.07583928108215332, -0.026163285598158836, -0.04426242783665657, 0.038066476583480835, -0.05042585730552673, -0.07075441628694534, -0.0007509576971642673, -0.1969953179359436, -0.0745140016078949, 0.1508222371339798, -0.05381887033581734, 0.020291956141591072, 0.06563425809144974, 0.026085883378982544, -0.019076978787779808, 0.06372833251953125, 0.07444200664758682, -0.25373661518096924, 0.22197996079921722, 0.2481418401002884, 0.01693066768348217, 0.1555820107460022, 0.02727355621755123, -0.061094123870134354, -0.06482523679733276, -0.12137055397033691, -0.11598256975412369, 0.17114104330539703, -0.00977307092398405, 0.05869715288281441, 0.07671650499105453, 0.08752595633268356, 0.0739113911986351, -0.05813080072402954, -0.061834704130887985, 0.023707272484898567, 0.016104595735669136, -0.07362856715917587, 0.03472520038485527, -0.04071670398116112, 0.09824458509683609, 0.013078894466161728, -0.08031806349754333, 0.11520133167505264, -0.018578382208943367, 0.03869740664958954, 0.08242500573396683, -0.15085284411907196, -0.17604409158229828, -0.07640733569860458, -0.1947237253189087, 0.035362228751182556, 0.006444569677114487, -0.0817585214972496, -0.16267724335193634, -0.08892478793859482, 0.03362567350268364, -0.10833220928907394, -0.22077976167201996, 0.009496337734162807, -0.15478073060512543, 0.054255854338407516, -0.09804165363311768, -0.10642159730195999, 0.06437858939170837, -0.05732728913426399, 0.09553134441375732, 0.015056970529258251, -0.08021649718284607, 0.1074119582772255, 0.09956232458353043, -0.05274901166558266, 0.08341851085424423, -0.035562872886657715, -0.10005434602499008, -0.01753605529665947, -0.02251959778368473, 0.07271235436201096, 0.02960471250116825, 0.05015615001320839, 0.06431180983781815, 0.07319772988557816, -0.0796457827091217, -0.0229480117559433, -0.07641152292490005, -0.18778498470783234, -0.26805368065834045, -0.15447276830673218, -0.04848862066864967, 0.11728241294622421, 0.04449461027979851, 0.07357064634561539, -0.007645182777196169, 0.07014674693346024, 0.1583811640739441, 0.03622640669345856, -0.18114221096038818, -0.02166488952934742, -0.10756770521402359, -0.03096686862409115, 0.020552629604935646, -0.1859591156244278, -0.10189008712768555, 0.20128105580806732, 0.14851407706737518, 0.2122037410736084, 0.04922167584300041, 0.12261255830526352, -0.06411800533533096, 0.10289421677589417, 0.09266895800828934, 0.179881751537323, 0.058159250766038895, -0.01779847778379917, -0.0643501803278923, 0.03413732349872589, 0.036795664578676224, 0.04059377685189247, 0.23701508343219757, -0.10720612853765488, 0.10399118810892105, -0.1274917721748352, 0.08577509969472885, -0.12903766334056854, -0.018753657117486, -0.23247765004634857, 0.2029205560684204, 0.04514437913894653, 0.14258241653442383, -0.05860680714249611, 0.11112785339355469, 0.16933435201644897, -0.04947742447257042, 0.05140503868460655, 0.015813073143363, 0.05096418783068657, -0.051997989416122437, -0.0038022275548428297, -0.0017664022743701935, -0.003953664097934961, -0.03285154327750206, 0.1845455914735794, -0.15130914747714996, 0.19792109727859497, 0.04021501913666725, -0.12608176469802856, -0.1251642107963562, -0.09976673871278763, 0.0113501762971282, 0.03727003559470177, 0.12076514959335327, 0.006668506655842066, 0.011699125170707703, -0.11859991401433945, -0.14849421381950378, -0.03859623894095421, 0.09523635357618332, 0.025654437020421028, -0.1438327580690384, 0.036018554121255875, -0.072693832218647, 0.02695195935666561, -0.13330084085464478, 0.056454479694366455, -0.1351594179868698, -0.030183322727680206, 0.0786803588271141, -0.15427826344966888, 0.09703260660171509, -0.003173387609422207, -0.07175073772668839, 0.14985741674900055, 0.020643768832087517, -0.026806220412254333, -0.1096581444144249, -0.051640331745147705, 0.20282013714313507, 0.04263003543019295, -0.017167268320918083, 0.050651561468839645, 0.0033770427107810974, 0.005354116205126047, -0.11046227067708969, 0.14559274911880493, -0.04803365841507912, 0.08854607492685318, -0.09120666980743408, 0.03311677649617195, -0.052198413759469986, 0.029323628172278404, -0.1041993722319603, -0.03288233280181885, -0.09994562715291977, -0.11825153231620789, 0.1230129525065422, -0.03437880799174309, 0.13541901111602783, 0.2453310489654541, 0.10480242222547531, 0.032816898077726364, 0.18758557736873627, -0.03275598585605621, 0.18132096529006958, 0.06862730532884598, -0.09089509397745132, 0.23648202419281006, 0.17223860323429108, -0.039804305881261826, -0.300632506608963, 0.08055325597524643, -0.15856020152568817, -0.03754742443561554, -0.001644615433178842, -0.133175328373909, 0.09059035778045654, 0.213715597987175, -0.07733849436044693, 0.23138582706451416, -0.15405745804309845, -0.07450811564922333, 0.10512053966522217, -0.09547185152769089, 0.39179229736328125, -0.08176510781049728, -0.03678023815155029, -0.199171781539917, 0.0454709567129612, 0.1888076663017273, -0.16768819093704224, 0.028329014778137207, 0.019327852874994278, 0.0015948066720739007, -0.012335233390331268, -0.09422105550765991, 0.17258954048156738, 0.008325125090777874, 0.17119653522968292, -0.056460220366716385, -0.06146618351340294, 0.2565346658229828, -0.045743923634290695, 0.11538702249526978, 0.011555060744285583, -0.0003527166845742613, -0.011705568991601467, -0.033152807503938675, 0.07738573104143143, -0.020451536402106285, 0.08625445514917374, -0.09731581062078476, -0.1124291643500328, 0.029767857864499092, -0.05509350821375847, -0.11459412425756454, 0.10379717499017715, 0.10344191640615463, -0.06041841208934784, 0.10399451851844788, 0.09582863003015518, -0.0965813398361206, -0.051786452531814575, -0.09186866879463196, -0.08287457376718521, 0.10605468600988388, -0.3434935510158539, 0.06277331709861755, 0.14666886627674103, -0.00490919966250658, 0.013580729253590107, 0.07139772176742554, -0.00018936768174171448, -0.005974125117063522, 0.10450857877731323, -0.07009795308113098, -0.04025162011384964, 0.07531514018774033, -0.014502458274364471, 0.04168011620640755, 0.1292829066514969, -0.017375575378537178, 0.01784382574260235, 0.04001773148775101, 0.06051245331764221, 0.04865173622965813, -0.056890953332185745, 0.1799635887145996, 0.05491509661078453, 0.054153669625520706, -0.1791582703590393, 0.24190883338451385, 0.09028312563896179, -0.09756381064653397, -0.02514842338860035, -0.03396318852901459, -0.09842026233673096, -0.035474743694067, 0.06350138038396835, 0.20990560948848724, -0.029299573972821236, -0.0906224250793457, 0.07756008952856064, -0.04201849177479744, 0.013257899321615696, 0.16046561300754547, 0.09354662895202637, 0.08741173148155212, -0.035145778208971024, -0.06521744281053543, -0.03423300385475159, 0.006121357437223196, -0.08235722780227661, 0.06457194685935974, -0.1422831267118454, -0.12025465816259384, -0.014665096066892147, 0.1476583033800125, -0.10560069233179092, -0.019563129171729088, -0.09593147039413452, 0.07900381088256836, -0.23741190135478973, -0.04635149613022804, 0.058464039117097855, -0.020096223801374435, -0.033934447914361954, 0.023748429492115974, -0.03971908986568451, -0.00754710054025054, -0.11200443655252457, 0.1578383594751358, 0.053240109235048294, 0.017243286594748497, -0.014077235944569111, -0.05430346727371216, 0.017571808770298958, 0.07473120093345642, 0.09302268177270889, 0.11926025152206421, -0.03862753510475159, 0.014526494778692722, 0.013709950260818005, -0.11039302498102188, 0.03746002912521362, 0.06569018959999084, 0.15616613626480103, 0.12475333362817764, 0.018362391740083694, 0.05818668380379677, -0.048578664660453796, 0.030305758118629456, -0.04105757921934128, -0.10716051608324051, 0.10249919444322586, -0.06602060049772263, -0.09462591260671616, -0.013769395649433136, -0.10725627094507217, 0.13091786205768585, 0.07931245118379593, 0.04691070690751076, 0.0874912366271019, 0.030014336109161377, 0.03782680630683899, -0.06332343816757202, -0.007320724427700043, -0.1616125851869583, -0.011908013373613358, 0.08844184130430222, -0.004220018163323402, -0.10062137991189957, 0.5948886275291443, 0.03597534820437431, -0.14071069657802582, -0.05935816839337349, 0.09510061889886856, 0.03180469572544098, 0.02506573684513569, 0.1751880645751953, 0.08338767290115356, -0.03983430564403534, -0.09738514572381973, 0.12398702651262283, 0.11986533552408218, 0.13019132614135742, -0.012388124130666256, 0.023312954232096672, 0.10213322192430496, -0.02374088205397129, 0.0015067756175994873, -0.1063377782702446, -0.024615099653601646, -0.011622150428593159, -0.03182612732052803, -0.02310824953019619, 0.010805261321365833, -0.103202223777771, 0.024437924847006798, 0.05506318807601929, -0.029300495982170105, -0.049457013607025146, -0.007955634035170078, -0.10474109649658203, -0.059054624289274216, -0.03896557167172432, -0.12694212794303894, 0.0025590239092707634, 0.008387207053601742, -0.04417416825890541, 0.2871485948562622, 0.14268985390663147, 0.05699858069419861, 0.052972037345170975, -0.14514605700969696, 0.026570310816168785, 0.0006884125177748501, -0.005757104139775038, -0.05115896463394165, -0.04137447103857994, -0.0418672114610672, -0.002919493243098259, -0.12124372273683548, -0.061603665351867676, 0.028927018865942955, 0.04476087912917137, -0.0009951554238796234, -0.07042884081602097, -0.006501141935586929, -0.09650418907403946, 0.07146978378295898, -0.12223462015390396, -0.007054255809634924, -0.01529772114008665, -0.004230493679642677, 0.0035019144415855408, 0.03205499053001404, -0.05270538106560707, 0.0523495078086853, -0.0043303873389959335, 0.06916900724172592, -0.010851935483515263, 0.15634486079216003, -0.02829079143702984, -0.030132830142974854, -0.08171738684177399, 0.10994914919137955, 0.3724469244480133, -0.16919617354869843, -0.008204475045204163, 0.07912085205316544, 0.019716322422027588, -0.0027267138939350843, 0.14425653219223022, 0.03735129162669182, 0.16536588966846466, -0.03860361501574516, -0.041468072682619095, 0.044475335627794266, -0.06375708431005478, 0.007027456071227789, 0.1137535348534584, 0.006315115839242935, -0.024953307583928108, -0.14175055921077728, 0.061368342489004135, -0.1525942087173462, 0.10756201297044754, 0.03702970966696739, -0.11588551849126816, -0.11902869492769241, 0.037645380944013596, 0.14635764062404633, -0.008616670034825802, -0.051945533603429794, -0.09259963035583496, -0.043929602950811386, -0.14861224591732025, -0.019928673282265663, -0.33154770731925964, -0.17991435527801514, 0.021006671711802483, 0.10647932440042496, 0.11617225408554077, -0.009646744467318058, 0.06232462450861931, 0.03124174475669861, -0.017379524186253548, -0.10009125620126724, 0.021829864010214806, -0.027996068820357323, -0.08742856979370117, -0.05809849128127098, -0.08138695359230042, -0.0859055444598198, 0.034634780138731, -0.008929237723350525, -0.00748663442209363, -0.032820798456668854, 0.10531172156333923, -0.025778278708457947, -0.016589801758527756, -0.05325646325945854, -0.010173063725233078, 0.0835275873541832, 0.030793288722634315, -0.02429129183292389, 0.016780195757746696, -0.0334688164293766, 0.060035284608602524, 0.060895342379808426, -0.0739104300737381, -0.039817988872528076, -0.029653450474143028, -0.09565240889787674, 0.15697090327739716, 0.054169412702322006, -0.019255956634879112, 0.09144488722085953, -0.07371076941490173, 0.03663071617484093, -0.0008007784490473568, -0.01509904582053423, 0.1015789732336998, 0.11461088806390762, -0.005600308999419212, -0.029066191986203194, 0.033612482249736786, -0.035271018743515015, -0.12571962177753448, -0.11525392532348633 ]
5fffcc23ee285615a570bec5acdcbae89d3fbaee
# Dataset Card for "massive_calendar" [More Information needed](https://github.com/huggingface/datasets/blob/main/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
fathyshalab/massive_calendar
[ "region:us" ]
2023-02-08T11:12:19+00:00
{"dataset_info": {"features": [{"name": "id", "dtype": "string"}, {"name": "label", "dtype": "int64"}, {"name": "text", "dtype": "string"}], "splits": [{"name": "train", "num_bytes": 104781, "num_examples": 1688}, {"name": "validation", "num_bytes": 17464, "num_examples": 280}, {"name": "test", "num_bytes": 25214, "num_examples": 402}], "download_size": 0, "dataset_size": 147459}}
2023-02-08T12:21:32+00:00
[]
[]
TAGS #region-us
# Dataset Card for "massive_calendar" More Information needed
[ "# Dataset Card for \"massive_calendar\"\n\nMore Information needed" ]
[ "TAGS\n#region-us \n", "# Dataset Card for \"massive_calendar\"\n\nMore Information needed" ]
[ 6, 15 ]
[ "passage: TAGS\n#region-us \n# Dataset Card for \"massive_calendar\"\n\nMore Information needed" ]
[ -0.10970378667116165, 0.10536234080791473, -0.003879447467625141, -0.024646000936627388, 0.09860456734895706, 0.15501244366168976, -0.010270527563989162, 0.07598944008350372, 0.15165592730045319, -0.027620511129498482, 0.1470227837562561, 0.005408903583884239, 0.001668896060436964, 0.23287959396839142, -0.05058540403842926, -0.08122668415307999, 0.009767906740307808, 0.035258498042821884, -0.2271023541688919, 0.024702750146389008, 0.0326455794274807, -0.10590451955795288, 0.07404977828264236, -0.15331433713436127, -0.2096135914325714, 0.07649023085832596, -0.03565054386854172, -0.057687047868967056, 0.06123312935233116, -0.07888038456439972, 0.07194586843252182, -0.02872495912015438, -0.00764255877584219, -0.07035341113805771, 0.005091892555356026, -0.0066961729899048805, -0.010596267879009247, 0.08380869030952454, 0.053043823689222336, -0.05998979136347771, -0.1282048374414444, -0.09497232735157013, -0.0008023795671761036, 0.014565094374120235, -0.07901592552661896, -0.30804070830345154, -0.06417282670736313, -0.09675554186105728, -0.03859768435359001, -0.06448259949684143, 0.074322909116745, 0.08551976084709167, -0.16690555214881897, -0.02211466245353222, -0.04254046455025673, -0.043777741491794586, 0.038389626890420914, 0.22527627646923065, -0.09965778142213821, 0.20417074859142303, 0.005853014998137951, 0.06633798778057098, 0.12711922824382782, -0.033928826451301575, 0.009184363298118114, -0.019826002418994904, -0.047942403703927994, 0.07564281672239304, -0.006429067812860012, -0.055777713656425476, 0.3546721935272217, 0.004828138276934624, 0.06711243838071823, -0.03386150673031807, -0.049865711480379105, -0.025236276909708977, 0.004141402430832386, 0.019692005589604378, 0.06542696058750153, 0.023703020066022873, -0.005704117938876152, -0.028914425522089005, -0.08427964895963669, -0.10450439155101776, -0.19450458884239197, 0.002540085930377245, -0.08422745019197464, 0.15029709041118622, -0.19679099321365356, -0.016336143016815186, -0.21832826733589172, -0.02712385356426239, 0.024666158482432365, -0.11315269768238068, -0.09224054962396622, -0.03605169057846069, 0.00741304736584425, 0.07281392067670822, 0.15845809876918793, 0.0025574862957000732, 0.05260513722896576, 0.009735090658068657, -0.0683642029762268, 0.06129097938537598, 0.189753457903862, -0.02964373119175434, -0.10134254395961761, -0.15756475925445557, -0.028456764295697212, -0.13846391439437866, -0.010602874681353569, -0.06745035201311111, -0.04989562928676605, -0.05485716834664345, -0.1231435015797615, 0.09766527265310287, -0.06155209615826607, -0.10719218850135803, -0.040982916951179504, -0.010620050132274628, 0.1184634193778038, -0.056950341910123825, 0.03100872039794922, 0.016521550714969635, -0.06351776421070099, 0.11399507522583008, -0.15987366437911987, -0.025616254657506943, 0.1111096441745758, 0.07119201868772507, -0.10262782871723175, -0.044777192175388336, -0.07288151979446411, 0.044075507670640945, 0.10147401690483093, -0.19454263150691986, 0.08738159388303757, -0.02782050520181656, -0.2052442580461502, 0.08258260786533356, 0.02817200869321823, -0.06425042450428009, 0.10547402501106262, 0.05545872822403908, 0.06512545794248581, -0.03473841771483421, -0.07264783978462219, 0.26036691665649414, -0.09602663666009903, 0.041061881929636, 0.011428283527493477, 0.07075725495815277, -0.2334129363298416, 0.029621727764606476, -0.11998262256383896, 0.0017187136691063643, -0.05969829484820366, 0.05321834608912468, -0.09212782233953476, 0.10788720846176147, -0.09319526702165604, -0.005471243988722563, -0.13009673357009888, -0.008221092633903027, -0.047071222215890884, 0.08009127527475357, -0.273578941822052, -0.028760213404893875, 0.1594279408454895, -0.07674597948789597, -0.19684959948062897, 0.0645081102848053, -0.0476822704076767, 0.06711989641189575, 0.07169435173273087, 0.2585046887397766, -0.041712723672389984, 0.0721796378493309, 0.016214609146118164, 0.14467667043209076, -0.12229705601930618, -0.3124420940876007, 0.12577249109745026, -0.06621500104665756, -0.0998963937163353, 0.038205165416002274, 0.18606401979923248, -0.01141924224793911, -0.05438421294093132, -0.0538272000849247, -0.023972177878022194, -0.150008425116539, 0.009816807694733143, 0.0040946961380541325, 0.04164780676364899, -0.04881643131375313, 0.16029712557792664, 0.07231158018112183, 0.07983517646789551, 0.045216068625450134, -0.041004739701747894, 0.025568971410393715, 0.07043299823999405, -0.22844198346138, -0.00025210081366822124, -0.1852634847164154, -0.0392562597990036, 0.019196417182683945, 0.04715893790125847, 0.03169266879558563, 0.07441692054271698, 0.08495095372200012, -0.1004786491394043, -0.015235009603202343, 0.13344000279903412, 0.17024099826812744, 0.025009896606206894, -0.005675394553691149, 0.008747692219913006, 0.02356587164103985, -0.0962432473897934, -0.05975378677248955, -0.06463932991027832, -0.07089681923389435, 0.13638490438461304, -0.021210215985774994, 0.05212443321943283, -0.006545152049511671, 0.05197276547551155, 0.01015041396021843, -0.0052659823559224606, -0.04713217169046402, -0.003986334893852472, -0.06662508100271225, -0.09308958053588867, -0.03184249997138977, 0.012878887355327606, 0.3703618347644806, 0.11971868574619293, 0.01260645966976881, 0.06168761104345322, -0.06432186812162399, 0.06373894959688187, 0.009110706858336926, -0.07589665055274963, 0.04008040577173233, -0.1030261218547821, -0.04001421108841896, 0.04461153969168663, -0.04558807983994484, 0.0373237282037735, 0.05445059761404991, 0.03319753706455231, -0.057877764105796814, 0.055283233523368835, 0.15353161096572876, -0.2308119237422943, 0.1622616946697235, 0.23809391260147095, 0.06915706396102905, 0.1546197384595871, -0.058809638023376465, -0.1009712815284729, 0.005439118016511202, -0.12903152406215668, -0.08216407150030136, 0.149064302444458, -0.13199923932552338, 0.04630827531218529, 0.10871106386184692, 0.03589538484811783, 0.09646745026111603, -0.04846983775496483, -0.061085090041160583, -0.004311266355216503, -0.0009469201904721558, -0.14416736364364624, 0.017488930374383926, 0.029748637229204178, 0.09758985787630081, 0.043455060571432114, 0.02290666103363037, 0.14942654967308044, -0.023432297632098198, 0.03097382001578808, 0.10266050696372986, -0.10899806767702103, -0.1403007209300995, 0.0190203245729208, -0.07963167876005173, 0.018370281904935837, 0.0008138173725455999, -0.05568573996424675, -0.13398036360740662, -0.020604465156793594, 0.05486259609460831, -0.05703674256801605, -0.15190739929676056, 0.02710820734500885, 0.023716604337096214, 0.03764384239912033, -0.07590726017951965, -0.07779634743928909, 0.0139436861500144, -0.06828797608613968, 0.02529945597052574, 0.07234957814216614, -0.06999080628156662, 0.12232232093811035, 0.09497538208961487, -0.01757967472076416, 0.08138870447874069, -0.014349538832902908, -0.02534276247024536, -0.09715986251831055, -0.05643867328763008, 0.12201272696256638, 0.06113158166408539, -0.03580021485686302, 0.04042964056134224, 0.11536907404661179, -0.15887197852134705, -0.048389844596385956, -0.04594407603144646, -0.19326896965503693, -0.23830081522464752, -0.17017611861228943, -0.06688863039016724, 0.06469828635454178, 0.051781103014945984, 0.0375070720911026, -0.11089982092380524, 0.07687026262283325, 0.13712522387504578, -0.02925832010805607, -0.15687373280525208, -0.077063649892807, -0.06721711158752441, -0.006090862676501274, -0.03080008551478386, -0.16971568763256073, -0.029237883165478706, 0.19550146162509918, 0.19332890212535858, 0.20890098810195923, 0.08395635336637497, 0.1767842322587967, -0.0458330400288105, 0.09879288077354431, 0.06424432247877121, 0.16560345888137817, 0.07615076005458832, -0.018127910792827606, 0.000014367252333613578, 0.005625976715236902, -0.04907462000846863, -0.0055775754153728485, 0.18276740610599518, -0.12112897634506226, 0.03552492707967758, -0.13225112855434418, 0.0784095972776413, -0.09634273499250412, 0.03389591723680496, -0.23404720425605774, 0.10478919744491577, 0.05592142418026924, 0.17528098821640015, -0.08479683846235275, 0.09911785274744034, 0.10755313187837601, -0.017758945003151894, 0.11908518522977829, 0.009417880326509476, 0.049301907420158386, -0.04981181025505066, 0.01630585454404354, -0.09722580015659332, -0.02284397929906845, -0.005072202067822218, 0.13671070337295532, -0.14493493735790253, 0.22082515060901642, 0.03425021469593048, -0.06779269874095917, -0.17318591475486755, -0.08354158699512482, 0.003377131186425686, 0.002421814249828458, 0.13546344637870789, -0.016927562654018402, -0.03240790590643883, -0.09014319628477097, -0.09705612063407898, 0.016583655029535294, 0.05469135940074921, -0.01659703254699707, -0.14716705679893494, 0.059668198227882385, 0.002970613306388259, -0.016324816271662712, -0.11151779443025589, 0.025277765467762947, -0.11996562778949738, -0.07236435264348984, 0.08291108906269073, -0.18166397511959076, 0.043298058211803436, 0.00012087405048077926, -0.051704149693250656, 0.11961330473423004, 0.08751925826072693, -0.035687245428562164, -0.10893749445676804, -0.03824001923203468, 0.24255341291427612, 0.01257447712123394, -0.030269986018538475, 0.02127077430486679, 0.04909250885248184, -0.027376627549529076, -0.18469801545143127, 0.12933488190174103, -0.06478606164455414, 0.11294496804475784, -0.04131631553173065, 0.08929576724767685, -0.040213752537965775, 0.05121134594082832, -0.027152981609106064, 0.019716214388608932, -0.046334076672792435, -0.0854528546333313, 0.1392744928598404, -0.04847734794020653, 0.11918702721595764, 0.25079771876335144, 0.10932859778404236, -0.026615748181939125, 0.1882755160331726, -0.028741352260112762, 0.1997779905796051, 0.09937766939401627, -0.062445249408483505, 0.16717971861362457, 0.15559521317481995, 0.004374153912067413, -0.2627145051956177, 0.08915752172470093, -0.16116991639137268, -0.03812079876661301, 0.017349502071738243, -0.20719100534915924, 0.17967548966407776, 0.1973622441291809, -0.05517176538705826, 0.24003875255584717, -0.20283424854278564, -0.014684516936540604, 0.14287301898002625, -0.05173658952116966, 0.4026018977165222, -0.10691036283969879, -0.04569743573665619, -0.1549036204814911, 0.013096146285533905, 0.25922921299934387, -0.1253531128168106, 0.0399046428501606, -0.009003007784485817, 0.0876210406422615, -0.006344499532133341, -0.06854615360498428, 0.1688021421432495, 0.021786101162433624, 0.1341165155172348, -0.009211648255586624, -0.06399474292993546, 0.13884292542934418, -0.03397965803742409, 0.06627005338668823, 0.019970819354057312, -0.021082459017634392, -0.10359195619821548, -0.023756282404065132, 0.01732710190117359, 0.026006316766142845, 0.08294308930635452, -0.07978233695030212, -0.08289670199155807, 0.012351997196674347, -0.1072211042046547, -0.04404569789767265, 0.19138282537460327, 0.04789852723479271, -0.0042571332305669785, -0.008716833777725697, 0.11753960698843002, -0.21259087324142456, -0.015383414924144745, -0.07062734663486481, -0.07863014191389084, 0.0909324362874031, -0.28557538986206055, 0.07057521492242813, 0.12415706366300583, 0.03383251279592514, -0.0184676144272089, 0.08113285899162292, -0.023128509521484375, 0.04989499971270561, 0.15126873552799225, -0.04092754051089287, -0.09351498633623123, 0.07999912649393082, -0.08173328638076782, 0.018087925389409065, 0.09710273146629333, 0.004629979841411114, 0.09476736932992935, -0.007814510725438595, -0.03463756665587425, 0.04466827213764191, -0.06673512607812881, 0.11944042146205902, 0.05057569593191147, 0.02214127965271473, -0.21778830885887146, 0.2534794509410858, 0.035668883472681046, -0.11510057747364044, -0.019645709544420242, -0.007221648469567299, -0.061264749616384506, -0.05611225962638855, 0.018901586532592773, 0.17004211246967316, -0.05911684408783913, -0.11652128398418427, 0.07888524979352951, -0.06569948047399521, 0.017824890092015266, 0.0973980650305748, 0.09877648949623108, 0.054053667932748795, -0.01972559280693531, -0.07251808792352676, -0.03978147357702255, -0.05550634488463402, -0.10743876546621323, 0.022313080728054047, -0.05998983234167099, -0.14828044176101685, -0.04013468697667122, 0.13074856996536255, -0.08554933220148087, -0.04427538067102432, -0.04502791911363602, 0.06153438985347748, -0.22002914547920227, -0.013199209235608578, 0.03908677399158478, 0.014538366347551346, -0.02600952237844467, 0.04531487450003624, -0.030439592897892, -0.05897051841020584, -0.10969545692205429, 0.10403449833393097, 0.041624270379543304, 0.043663617223501205, -0.0678749680519104, -0.013375106267631054, 0.0297508854418993, 0.04865336790680885, 0.14084120094776154, 0.11639238148927689, 0.0018770515453070402, 0.03844284638762474, -0.061528440564870834, -0.16545924544334412, 0.08634090423583984, 0.06468179076910019, 0.13742561638355255, 0.0486752949655056, 0.020739778876304626, 0.12125229090452194, -0.015036892145872116, 0.05312837287783623, -0.10329549759626389, -0.09066024422645569, 0.06235024333000183, -0.15329083800315857, -0.05260436236858368, 0.048966050148010254, -0.08885912597179413, 0.2043723613023758, 0.06904785335063934, -0.0555267333984375, 0.09140870720148087, -0.004726535174995661, -0.04407773166894913, -0.05672390013933182, -0.0643003061413765, -0.12959806621074677, -0.09091874957084656, 0.13814367353916168, 0.06186968833208084, -0.05941825732588768, 0.5892778635025024, -0.06242746487259865, -0.12056681513786316, -0.05157559737563133, 0.10348016023635864, -0.03650640696287155, 0.007149877492338419, 0.33442431688308716, 0.11803365498781204, -0.04849135875701904, 0.03629675880074501, 0.12599094212055206, 0.06799128651618958, 0.2383314073085785, 0.10304471105337143, 0.07892483472824097, 0.06366020441055298, -0.030773937702178955, 0.013099453411996365, -0.08368124067783356, 0.07143557816743851, 0.046065669506788254, 0.018513785675168037, -0.0032793760765343904, 0.0701066330075264, -0.1069294735789299, 0.01930772326886654, -0.01875363662838936, -0.009788774885237217, -0.07300107181072235, -0.018006673082709312, -0.07244139909744263, -0.05607123672962189, -0.06659570336341858, -0.055422719568014145, 0.03265402466058731, -0.07691247761249542, -0.05145809054374695, 0.3225855529308319, 0.1018315851688385, -0.008555606938898563, 0.05667014420032501, -0.12805460393428802, 0.06824395805597305, 0.05756967514753342, 0.00619933009147644, -0.07037725299596786, 0.048886675387620926, -0.08617524802684784, -0.007727236952632666, -0.05700528621673584, -0.0295187309384346, 0.017604196444153786, -0.009848016314208508, 0.011148916557431221, -0.09608326107263565, -0.011324153281748295, -0.08970765769481659, 0.056204620748758316, -0.07299565523862839, 0.04400160163640976, 0.0007624098798260093, -0.02124183624982834, 0.03634963184595108, 0.10597404837608337, -0.012850792147219181, 0.05844171345233917, -0.023899616673588753, 0.028668630868196487, -0.02249780111014843, 0.08965840935707092, -0.006924499291926622, -0.0601123608648777, -0.06747521460056305, 0.08806747198104858, 0.3487842082977295, -0.1131802499294281, -0.03132573887705803, 0.014869773760437965, 0.03943366929888725, -0.004850458353757858, 0.17755569517612457, 0.01149498950690031, 0.122884102165699, -0.02167753502726555, -0.023965386673808098, 0.04926657676696777, -0.009879649616777897, -0.04204792529344559, 0.09947916865348816, 0.04463377594947815, -0.04223328456282616, -0.07914283871650696, 0.14340339601039886, -0.13607221841812134, 0.07424922287464142, 0.03774804621934891, -0.17522378265857697, -0.1503521054983139, -0.018317079171538353, 0.031271640211343765, -0.017332810908555984, -0.003639714792370796, -0.07865070551633835, -0.011395768262445927, -0.1728934496641159, -0.013073930516839027, -0.34115681052207947, -0.16558082401752472, -0.0049209254793822765, 0.11447826027870178, 0.12442987412214279, 0.006676436867564917, 0.07398642599582672, 0.0059893070720136166, -0.028355102986097336, -0.11021995544433594, 0.03333054855465889, -0.004542567767202854, 0.07202161103487015, -0.026838015764951706, -0.032504625618457794, -0.08295686542987823, -0.0743137001991272, 0.08292306959629059, 0.0074520958587527275, -0.0698639452457428, 0.08938003331422806, -0.011139404959976673, -0.030058186501264572, -0.058611880987882614, -0.06793968379497528, 0.10083572566509247, 0.0025418801233172417, -0.027348682284355164, 0.00973258912563324, -0.02331015095114708, 0.1496446132659912, 0.07036760449409485, -0.058321766555309296, -0.1397230327129364, -0.028770269826054573, -0.07476795464754105, 0.10830368101596832, -0.03303765133023262, -0.07929601520299911, 0.086290642619133, -0.08982158452272415, 0.057662419974803925, 0.00813981145620346, 0.017024526372551918, 0.1032692939043045, 0.06212550029158592, -0.01565428450703621, -0.027576394379138947, 0.024975299835205078, -0.021981308236718178, -0.08172722160816193, -0.0780414417386055 ]
f32df65acd044e1ff21ef74d159c4bd2b352068a
# Dataset Card for "massive_play" [More Information needed](https://github.com/huggingface/datasets/blob/main/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
fathyshalab/massive_play
[ "region:us" ]
2023-02-08T11:12:40+00:00
{"dataset_info": {"features": [{"name": "id", "dtype": "string"}, {"name": "label", "dtype": "int64"}, {"name": "text", "dtype": "string"}], "splits": [{"name": "train", "num_bytes": 70622, "num_examples": 1377}, {"name": "validation", "num_bytes": 12960, "num_examples": 260}, {"name": "test", "num_bytes": 19816, "num_examples": 387}], "download_size": 0, "dataset_size": 103398}}
2023-02-08T12:21:39+00:00
[]
[]
TAGS #region-us
# Dataset Card for "massive_play" More Information needed
[ "# Dataset Card for \"massive_play\"\n\nMore Information needed" ]
[ "TAGS\n#region-us \n", "# Dataset Card for \"massive_play\"\n\nMore Information needed" ]
[ 6, 14 ]
[ "passage: TAGS\n#region-us \n# Dataset Card for \"massive_play\"\n\nMore Information needed" ]
[ -0.08146443217992783, 0.0919024646282196, -0.0035104386042803526, 0.0784793570637703, 0.08086095005273819, 0.05671021342277527, 0.010000704787671566, 0.08638905733823776, 0.09601965546607971, -0.005384996999055147, 0.14596815407276154, 0.022371375933289528, 0.022321855649352074, 0.34285882115364075, 0.033006589859724045, -0.04037318006157875, -0.004027968272566795, 0.05940529331564903, -0.13952143490314484, 0.026517434045672417, -0.023489104583859444, -0.10353389382362366, 0.05816702917218208, -0.09236860275268555, -0.0994531512260437, 0.05007842183113098, -0.053924012929201126, -0.048586368560791016, 0.04972405359148979, -0.09154083579778671, 0.07266376167535782, -0.07178844511508942, -0.03231476992368698, -0.117401123046875, 0.04030527547001839, 0.008523913100361824, -0.0023829627316445112, -0.008351636119186878, 0.03959878161549568, -0.0012652823934331536, -0.12007568031549454, 0.02881184220314026, 0.02906590886414051, 0.0506625659763813, -0.08227356523275375, -0.3271322250366211, -0.012107386253774166, -0.13712351024150848, -0.04731939360499382, -0.05657199025154114, 0.060430075973272324, 0.13772782683372498, -0.12080305814743042, -0.040461424738168716, 0.026352331042289734, -0.02549755573272705, 0.02394101209938526, 0.2267334908246994, -0.005291206296533346, 0.18150292336940765, 0.01792082004249096, 0.040942419320344925, 0.09191995114088058, -0.03249388560652733, -0.07360396534204483, 0.006658728700131178, 0.025726811960339546, 0.1099696084856987, 0.03193497285246849, -0.055178072303533554, 0.2715018093585968, -0.03739709034562111, 0.06895753741264343, -0.063827745616436, 0.03142327815294266, -0.091204933822155, -0.03279102221131325, 0.010057792998850346, 0.1050330400466919, 0.021907368674874306, -0.032351166009902954, 0.01631779968738556, -0.06373628973960876, -0.09876606613397598, -0.12314533442258835, -0.07779406756162643, -0.08223906904459, 0.13047683238983154, -0.23991145193576813, 0.005870319902896881, -0.16456545889377594, 0.011671219952404499, -0.042290691286325455, -0.0987512394785881, -0.1744665950536728, -0.0740351751446724, -0.031903717666864395, 0.120973140001297, 0.16892246901988983, 0.030501993373036385, 0.1438204050064087, 0.06987019628286362, -0.05201740935444832, 0.06734239310026169, 0.1872972846031189, -0.1493205577135086, -0.03708373382687569, -0.09953545778989792, -0.008543421514332294, -0.05765983834862709, 0.007213936652988195, -0.10750708729028702, -0.12033894658088684, 0.031294893473386765, -0.1669388860464096, 0.08547064661979675, 0.0008371311123482883, -0.10566361993551254, -0.06174258515238762, -0.009048708714544773, 0.17366564273834229, -0.03597559779882431, 0.0307737085968256, 0.05312258005142212, -0.08848878741264343, 0.04768608883023262, -0.16743409633636475, 0.018562449142336845, 0.1395905315876007, 0.007870380766689777, -0.09484320878982544, -0.06881512701511383, -0.08631035685539246, 0.054694801568984985, 0.21017999947071075, -0.18827764689922333, 0.05184818431735039, 0.009577649645507336, -0.18693870306015015, 0.06521900743246078, 0.03640170022845268, -0.04790288209915161, 0.059617314487695694, -0.04013708233833313, 0.04704748094081879, -0.06567972898483276, -0.06085026264190674, 0.2141176462173462, -0.10463377088308334, 0.03911114111542702, -0.008128915913403034, 0.12616579234600067, -0.18426446616649628, 0.030735095962882042, -0.11423548310995102, 0.0005809080903418362, -0.09285109490156174, 0.05778979882597923, -0.09294592589139938, 0.027910590171813965, -0.06200885772705078, 0.005954122636467218, -0.10618511587381363, 0.01837139017879963, -0.06454592198133469, 0.045473452657461166, -0.30720290541648865, -0.07190332561731339, 0.1760360449552536, -0.06307580322027206, -0.2802028954029083, 0.0386064238846302, -0.09146583080291748, -0.0264159943908453, 0.07165469974279404, 0.24250036478042603, 0.007481113076210022, -0.02463557757437229, 0.05009818077087402, 0.12453076988458633, -0.19395697116851807, -0.29021504521369934, 0.20280323922634125, -0.06142599508166313, -0.0007542657549493015, -0.01134007703512907, 0.07589029520750046, 0.0344795398414135, -0.03585190325975418, -0.058951642364263535, 0.03123960830271244, -0.2125670462846756, 0.028626499697566032, 0.07611944526433945, 0.03375796973705292, -0.07533951848745346, 0.15978550910949707, 0.15619011223316193, 0.062016602605581284, 0.09376466274261475, -0.018629321828484535, -0.04530521109700203, 0.10584598034620285, -0.133572518825531, 0.04239475727081299, -0.20684389770030975, -0.10383516550064087, -0.018610183149576187, -0.0041632018983364105, 0.05586707592010498, 0.08998123556375504, 0.1319197416305542, 0.0012749532470479608, 0.03936228156089783, 0.09321513772010803, 0.09860742837190628, 0.029221296310424805, 0.06750581413507462, -0.059595972299575806, -0.0443635918200016, -0.10712436586618423, -0.023764140903949738, -0.054304253309965134, -0.10881427675485611, 0.08718227595090866, -0.0366864912211895, 0.009861675091087818, -0.08679044246673584, -0.014696274884045124, -0.023389821872115135, 0.007723895832896233, -0.03272481635212898, 0.007703790906816721, -0.0646045058965683, -0.1060578003525734, -0.024989157915115356, -0.03532065823674202, 0.3909114897251129, 0.15655960142612457, 0.03260461613535881, 0.06705640256404877, -0.08323869109153748, 0.0314992219209671, -0.03593173995614052, -0.0555313415825367, 0.05687534809112549, -0.011447116732597351, 0.04423746466636658, 0.06231175735592842, -0.12003353983163834, 0.042649731040000916, 0.04811540246009827, 0.049846116453409195, -0.026256002485752106, -0.019417734816670418, 0.18025080859661102, -0.2384853959083557, 0.16536971926689148, 0.17729629576206207, 0.12999475002288818, 0.2904690206050873, -0.06302043050527573, -0.06873253732919693, 0.0022076342720538378, -0.029959216713905334, -0.08074948191642761, 0.08888155221939087, -0.11202454566955566, 0.0485243946313858, 0.066864013671875, -0.0028381068259477615, 0.06010882928967476, -0.05424661561846733, -0.1299791783094406, 0.06393631547689438, 0.00042575070983730257, -0.2023991346359253, 0.04549889639019966, 0.03544104844331741, 0.054839979857206345, 0.0919446349143982, 0.009146575815975666, 0.18515878915786743, -0.053485121577978134, -0.007281467318534851, 0.0558253638446331, -0.17670339345932007, -0.1161884069442749, 0.011691329069435596, -0.13415543735027313, 0.02674212120473385, 0.049305666238069534, -0.07817148417234421, -0.2007836103439331, 0.008714118041098118, 0.06527556478977203, -0.11873257160186768, -0.18718886375427246, -0.0745772048830986, 0.028174573555588722, 0.057139892131090164, -0.09829982370138168, -0.06553079932928085, 0.04560892656445503, -0.037348974496126175, -0.04704215005040169, -0.005430049728602171, -0.08313793689012527, 0.14497359097003937, 0.1633225679397583, 0.0004127373395022005, 0.1050076112151146, -0.04792413115501404, -0.11115560680627823, -0.0531667061150074, -0.05244852602481842, 0.16114933788776398, -0.003603751538321376, -0.017569763585925102, -0.08438282459974289, 0.10853447765111923, -0.07690220326185226, -0.01909281127154827, -0.03272272273898125, -0.21019478142261505, -0.19316929578781128, -0.1471717208623886, -0.058242153376340866, 0.17172901332378387, 0.1103796735405922, 0.02482358179986477, -0.07826222479343414, 0.02454877458512783, 0.14762432873249054, -0.06244208291172981, -0.036665819585323334, -0.07910978049039841, -0.15898431837558746, -0.020130790770053864, -0.04557892680168152, -0.1863846778869629, -0.014112289994955063, 0.21754373610019684, 0.12772242724895477, 0.18586952984333038, 0.11350218206644058, 0.1999993771314621, -0.005632729735225439, -0.0016023935750126839, 0.025834089145064354, 0.20609714090824127, 0.14369907975196838, -0.03671080619096756, -0.03359782323241234, 0.007540438324213028, -0.06901485472917557, 0.04980076476931572, 0.22671861946582794, -0.14729727804660797, -0.0030454497318714857, -0.04029753431677818, 0.03264312446117401, -0.1823243349790573, -0.007574316579848528, -0.19110067188739777, 0.15777666866779327, 0.08357241004705429, 0.15766863524913788, -0.11922682076692581, 0.14541219174861908, 0.05773802101612091, -0.08730271458625793, 0.14316631853580475, 0.027742380276322365, 0.06169883534312248, -0.030374446883797646, 0.020647795870900154, -0.022127846255898476, -0.0321948416531086, -0.00936743151396513, 0.13518869876861572, -0.0856676921248436, 0.11253684014081955, -0.0118219293653965, -0.04584650322794914, -0.16542817652225494, -0.13797946274280548, 0.0504436232149601, -0.10653781145811081, 0.09393813461065292, 0.0016075298190116882, -0.02742219716310501, -0.1426277756690979, -0.007829731330275536, -0.007822168990969658, 0.026532286778092384, 0.05923323705792427, -0.1424076408147812, 0.031763020902872086, 0.0062521640211343765, 0.006644599139690399, -0.04478670656681061, 0.05608898773789406, -0.08649212121963501, -0.12495255470275879, 0.0999671146273613, -0.10140794515609741, 0.009002653881907463, 0.006291580852121115, -0.09097256511449814, 0.08719535917043686, 0.13913045823574066, 0.010085598565638065, -0.043848667293787, 0.0023845385294407606, 0.14299851655960083, 0.04883895441889763, 0.03354400396347046, -0.08411622047424316, 0.12118562310934067, -0.14811968803405762, -0.11452198028564453, 0.1013893187046051, -0.03804173693060875, 0.07992210984230042, -0.03762400522828102, 0.02634056657552719, 0.027459971606731415, 0.05085238441824913, -0.017784181982278824, 0.016530146822333336, -0.00839685183018446, -0.07092592865228653, 0.23183046281337738, -0.12024477869272232, 0.005859153810888529, 0.15340298414230347, 0.24929456412792206, 0.10187790542840958, 0.22142672538757324, -0.013685770332813263, 0.16493666172027588, 0.16806906461715698, -0.07653627544641495, 0.2405301332473755, 0.04240276291966438, -0.010102561675012112, -0.3097527325153351, 0.014577518217265606, -0.1629183441400528, -0.1667042225599289, 0.08600103855133057, -0.2583214342594147, 0.12389781326055527, 0.07505964487791061, -0.045970987528562546, 0.2731858193874359, -0.05929000303149223, 0.005712141748517752, 0.07053608447313309, -0.029067298397421837, 0.389636367559433, -0.1134093627333641, -0.05624603107571602, -0.12493542581796646, -0.08784055709838867, 0.198617622256279, -0.23138634860515594, 0.03250381350517273, 0.004736900795251131, 0.05451017618179321, -0.017155330628156662, -0.08131586015224457, 0.13953101634979248, 0.019306965172290802, 0.14340269565582275, 0.008796225301921368, -0.03743995726108551, 0.17923490703105927, -0.030630474910140038, 0.04144555330276489, 0.010224017314612865, -0.06995504349470139, -0.09810421615839005, 0.018642717972397804, 0.03889896720647812, -0.02097471058368683, 0.06638500094413757, -0.016031915321946144, -0.08712147921323776, 0.06287228316068649, -0.1490548551082611, 0.0504513643682003, 0.2367338389158249, 0.03628320246934891, -0.04131803289055824, 0.03804758936166763, 0.14734138548374176, -0.09736835956573486, -0.11834747344255447, -0.058475811034440994, -0.09513837844133377, 0.05040693283081055, -0.23009486496448517, 0.029453657567501068, 0.0973813533782959, 0.053554367274045944, -0.09088899940252304, 0.14644159376621246, -0.09213662892580032, 0.1379048079252243, 0.11872833967208862, 0.015878232195973396, -0.030810227617621422, 0.09668764472007751, -0.0254366472363472, 0.10549703985452652, 0.006318355444818735, -0.08957064896821976, 0.07274310290813446, 0.02460552006959915, -0.018248870968818665, 0.008012763224542141, -0.08898270130157471, 0.004266118165105581, 0.006549194920808077, 0.03787297382950783, -0.22811096906661987, 0.3291352689266205, 0.006892497185617685, -0.047706473618745804, 0.0478091835975647, -0.0353521965444088, -0.06514611840248108, -0.05034742131829262, 0.040692541748285294, 0.21477895975112915, 0.023078463971614838, -0.20599742233753204, 0.056062132120132446, -0.09791773557662964, 0.10799727588891983, 0.05334900692105293, 0.0847296416759491, 0.06963587552309036, -0.01275691669434309, -0.024612391367554665, -0.041646670550107956, -0.008620304055511951, -0.07552464306354523, -0.04681400582194328, 0.0173195730894804, -0.14030610024929047, 0.016775259748101234, 0.11841460317373276, -0.0736028328537941, -0.06524007767438889, -0.06408470124006271, 0.13049225509166718, -0.2638038098812103, -0.055602412670850754, 0.038749609142541885, -0.010154892690479755, -0.04538952186703682, 0.08980783820152283, 0.0008166003972291946, -0.03560915216803551, -0.09122871607542038, 0.1162235364317894, 0.08687946200370789, 0.07197058945894241, -0.15267713367938995, -0.00395938940346241, 0.05102017894387245, 0.035844285041093826, 0.06997039914131165, 0.09939094632863998, -0.004224942531436682, 0.04931928589940071, -0.04497946426272392, -0.18634586036205292, 0.030189508572220802, 0.08482231944799423, 0.10056544095277786, 0.04330172762274742, -0.015333275310695171, 0.08223678916692734, -0.10273609310388565, 0.028267523273825645, -0.0869826003909111, -0.02913944236934185, 0.08283480256795883, -0.06381508708000183, -0.08346068859100342, 0.02653045393526554, -0.08922892063856125, 0.20599418878555298, 0.038264304399490356, -0.026989294216036797, 0.14516542851924896, 0.034166570752859116, -0.07583645731210709, -0.05099523067474365, -0.042570773512125015, -0.09892228990793228, -0.12126302719116211, 0.1273331195116043, 0.01835140772163868, -0.06581009179353714, 0.5328909754753113, -0.08639717102050781, -0.15809838473796844, -0.05096244812011719, 0.11587071418762207, 0.050987232476472855, 0.05392855033278465, 0.30461347103118896, 0.0803757905960083, -0.04490183666348457, 0.021664848551154137, 0.1734514832496643, 0.0629115030169487, 0.0860728994011879, 0.09894349426031113, -0.028869377449154854, -0.008361585438251495, -0.02405726909637451, 0.0287348423153162, -0.08199026435613632, 0.036746252328157425, 0.10060328990221024, 0.12296503782272339, -0.03911516070365906, 0.0347338505089283, -0.07082182168960571, 0.054554734379053116, -0.020895302295684814, 0.0054132468067109585, -0.12113872170448303, 0.01043244544416666, -0.07753325253725052, 0.00029647722840309143, -0.043788518756628036, -0.12672804296016693, 0.06283687800168991, -0.06851450353860855, 0.028095796704292297, 0.18512912094593048, 0.09198864549398422, 0.03082497976720333, 0.06959516555070877, -0.06307841837406158, 0.10965842008590698, 0.038699012249708176, -0.06637009233236313, -0.07871363312005997, 0.11245646327733994, -0.0890405997633934, 0.031148241832852364, -0.16922855377197266, -0.0014382923254743218, 0.0383012555539608, -0.07269192487001419, 0.074571393430233, -0.04149052873253822, -0.06599806249141693, -0.04929027333855629, 0.016763875260949135, -0.0890943706035614, 0.07960195094347, -0.007663635537028313, -0.022357618436217308, 0.022180473431944847, -0.06021473929286003, 0.046903789043426514, 0.017316004261374474, 0.03648311272263527, 0.07864917069673538, -0.05702648684382439, 0.0640445277094841, 0.004274309147149324, -0.019236555323004723, -0.09009680151939392, 0.14098753035068512, 0.27083060145378113, -0.10309472680091858, -0.030166184529662132, -0.036348287016153336, 0.039771147072315216, 0.0001782427279977128, 0.2590356171131134, -0.06311122328042984, 0.06450504064559937, -0.12594594061374664, -0.05754311382770538, -0.01699228771030903, -0.008433659560978413, 0.026025859639048576, 0.06724368780851364, 0.15051086246967316, 0.015892725437879562, -0.06398921459913254, 0.09487849473953247, -0.2923905849456787, 0.10696714371442795, 0.04385446384549141, -0.06370805203914642, -0.0513872392475605, -0.04219864681363106, 0.06551115214824677, -0.0070403688587248325, 0.05408009886741638, -0.03061666339635849, 0.026347754523158073, -0.17830713093280792, 0.00828769151121378, -0.37247538566589355, -0.1350744217634201, 0.009996986947953701, 0.04188978299498558, 0.09081760793924332, -0.048197388648986816, 0.09386596828699112, 0.024449869990348816, 0.02895090915262699, -0.06431165337562561, 0.01992873102426529, 0.0032913002651184797, 0.09451275318861008, -0.1319497674703598, -0.09015598148107529, -0.03687760606408119, 0.01995999924838543, 0.043501418083906174, 0.0016257365932688117, -0.04832512140274048, 0.14579534530639648, -0.10320183634757996, -0.09506353735923767, -0.005669889971613884, -0.0295792818069458, 0.07359171658754349, -0.04550129547715187, -0.04425312951207161, 0.0038787859957665205, -0.016782617196440697, 0.14717842638492584, 0.04078095778822899, -0.031576305627822876, -0.13651908934116364, 0.03420408442616463, -0.06058700382709503, 0.13991767168045044, -0.013170448131859303, -0.1808793991804123, 0.08993503451347351, -0.14226366579532623, 0.024106092751026154, 0.04298720881342888, 0.023700930178165436, 0.04211103916168213, 0.071949802339077, -0.04569719731807709, 0.025692379102110863, 0.06127654388546944, 0.027366718277335167, -0.042476873844861984, -0.09674925357103348 ]
04aed4190c62f31f3c82854f598bfd14f939c7b7
# Dataset Card for "massive_news" [More Information needed](https://github.com/huggingface/datasets/blob/main/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
fathyshalab/massive_news
[ "region:us" ]
2023-02-08T11:12:56+00:00
{"dataset_info": {"features": [{"name": "id", "dtype": "string"}, {"name": "label", "dtype": "int64"}, {"name": "text", "dtype": "string"}], "splits": [{"name": "train", "num_bytes": 27530, "num_examples": 503}, {"name": "validation", "num_bytes": 4790, "num_examples": 82}, {"name": "test", "num_bytes": 6956, "num_examples": 124}], "download_size": 0, "dataset_size": 39276}}
2023-02-08T12:21:45+00:00
[]
[]
TAGS #region-us
# Dataset Card for "massive_news" More Information needed
[ "# Dataset Card for \"massive_news\"\n\nMore Information needed" ]
[ "TAGS\n#region-us \n", "# Dataset Card for \"massive_news\"\n\nMore Information needed" ]
[ 6, 14 ]
[ "passage: TAGS\n#region-us \n# Dataset Card for \"massive_news\"\n\nMore Information needed" ]
[ -0.06780850142240524, 0.0798453763127327, -0.005057913716882467, -0.07908367365598679, 0.051732052117586136, 0.1364654302597046, 0.05691152811050415, 0.055613819509744644, 0.05630064383149147, -0.06604523211717606, 0.18047095835208893, 0.015370294451713562, -0.03595920279622078, 0.23035232722759247, -0.041028864681720734, -0.029184965416789055, 0.08752799779176712, -0.01914413832128048, -0.10603360086679459, 0.028579942882061005, 0.029337206855416298, -0.0844893679022789, 0.020785251632332802, -0.15092970430850983, -0.17163537442684174, 0.09702849388122559, -0.030555501580238342, -0.0662701204419136, 0.07789409905672073, -0.07282013446092606, 0.018697090446949005, -0.014604899100959301, -0.02064877562224865, -0.0743304193019867, 0.036724191159009933, 0.008857370354235172, -0.04399226978421211, 0.07327871769666672, 0.02176472544670105, -0.09234321117401123, -0.14281927049160004, -0.22984778881072998, -0.028799468651413918, 0.007761426270008087, -0.11643687635660172, -0.305099219083786, -0.020456651225686073, -0.07283615320920944, 0.030783450230956078, 0.04114292934536934, 0.039676547050476074, 0.1268688589334488, -0.13284273445606232, -0.014481734484434128, 0.011109423823654652, -0.0033736552577465773, 0.053328435868024826, 0.12563711404800415, -0.1128806546330452, 0.15963022410869598, 0.04775403067469597, 0.12433550506830215, 0.11827462166547775, -0.04652319476008415, -0.11978784948587418, -0.0007554650655947626, -0.03997013345360756, 0.03576907142996788, -0.004140991251915693, -0.05675777792930603, 0.23678632080554962, 0.012504366226494312, 0.05599899962544441, -0.055248845368623734, -0.00598163902759552, 0.035682860761880875, 0.010177171789109707, 0.06257915496826172, -0.0193267073482275, 0.048670489341020584, 0.021860340610146523, -0.034568559378385544, -0.1093006432056427, -0.04956822097301483, -0.21639110147953033, 0.08584139496088028, -0.07941210269927979, 0.1803865283727646, -0.19245527684688568, 0.0038756716530770063, -0.0654347687959671, -0.04376685619354248, 0.06172284111380577, -0.14483018219470978, -0.009500297717750072, -0.015338718891143799, -0.006124509032815695, 0.06752932071685791, 0.09933260083198547, -0.13064990937709808, -0.06942669302225113, -0.01790405437350273, -0.07888271659612656, 0.1258692592382431, 0.2452741265296936, -0.21270187199115753, -0.13247768580913544, -0.0861353650689125, -0.014312227256596088, -0.12706461548805237, 0.006372810807079077, -0.044330861419439316, -0.0010457044700160623, 0.07169043272733688, -0.1749935895204544, 0.10052651166915894, 0.005387332756072283, -0.06961724907159805, -0.07161629945039749, 0.029405483976006508, 0.033078137785196304, -0.07379660755395889, -0.03496445342898369, 0.009866307489573956, -0.06050650402903557, 0.2082562893629074, -0.14948995411396027, 0.02704884298145771, 0.132132425904274, 0.15013672411441803, -0.11770867556333542, -0.08363314718008041, -0.04844806715846062, 0.08287840336561203, 0.0878274142742157, -0.15751807391643524, 0.055109571665525436, -0.014323894865810871, -0.2605336606502533, 0.04432539641857147, -0.0022702061105519533, -0.03971894457936287, 0.10811225324869156, 0.01706324703991413, 0.07073745876550674, -0.006478165742009878, -0.07430299371480942, 0.23507292568683624, -0.16000008583068848, 0.07447227090597153, -0.01565648429095745, 0.053106535226106644, -0.19645749032497406, 0.0013790834927931428, -0.13544800877571106, 0.007243197411298752, 0.10793987661600113, 0.14635644853115082, -0.10880712419748306, 0.16434969007968903, -0.0579790361225605, 0.002448365092277527, -0.13998429477214813, 0.022300155833363533, -0.04590614512562752, 0.1632147878408432, -0.24883270263671875, -0.06615639477968216, 0.1079021692276001, -0.052834708243608475, -0.050869449973106384, -0.00790853425860405, -0.07722864300012589, 0.13054318726062775, 0.16135640442371368, 0.16827689111232758, -0.09487081319093704, 0.10916667431592941, -0.0337187834084034, 0.10292661190032959, -0.14270468056201935, -0.1571894735097885, 0.0752888172864914, 0.0033196385484188795, -0.17955298721790314, 0.02577022649347782, 0.16852693259716034, 0.024562960490584373, -0.07756775617599487, -0.05710345134139061, 0.044097404927015305, -0.08145608752965927, 0.04310251772403717, 0.01449482049793005, 0.02029811590909958, -0.05459406599402428, 0.07162263244390488, 0.10445747524499893, 0.06351270526647568, 0.08240031450986862, -0.032637134194374084, -0.01572358049452305, 0.03857676684856415, -0.16963784396648407, 0.06337719410657883, -0.12920808792114258, -0.023959249258041382, -0.037023816257715225, 0.0865657702088356, 0.03885412588715553, 0.0852966383099556, 0.05579124763607979, -0.12464290112257004, -0.022059233859181404, 0.10336924344301224, 0.13594363629817963, 0.05966724082827568, 0.04133252426981926, -0.051903363317251205, 0.09926434606313705, -0.10178747773170471, -0.0017025135457515717, -0.08898933976888657, -0.08805316686630249, 0.11779438704252243, -0.018723569810390472, 0.05194377899169922, -0.019304582849144936, 0.05756503343582153, -0.003556355834007263, 0.024689167737960815, -0.015673842281103134, 0.015952592715620995, -0.058291103690862656, -0.09305941313505173, 0.015038304962217808, 0.0007999825174920261, 0.3448345959186554, 0.07438123971223831, -0.08524900674819946, 0.04781963303685188, 0.007403694558888674, 0.0377357080578804, 0.024852031841874123, -0.10540702193975449, -0.0029541824478656054, -0.09457606822252274, -0.07799752801656723, 0.010547452606260777, -0.02596370317041874, 0.005985183175653219, 0.02482137270271778, 0.10791215300559998, -0.09313416481018066, 0.062047332525253296, 0.08173010498285294, -0.2428266406059265, 0.106226347386837, 0.23886121809482574, 0.11582829803228378, 0.1947735995054245, -0.07751523703336716, -0.08541957288980484, 0.02252846211194992, -0.19397594034671783, -0.10349910706281662, 0.10595206171274185, -0.06259243935346603, 0.0978151187300682, 0.09260836988687515, 0.0028527688700705767, 0.08482817560434341, 0.01607910729944706, -0.15669669210910797, -0.019346896559000015, 0.01209593191742897, -0.20900200307369232, -0.003952642437070608, 0.004015540704131126, 0.08879110962152481, 0.059528499841690063, 0.05864906311035156, 0.15029089152812958, -0.06819897145032883, 0.011694070883095264, 0.04865747690200806, -0.0883626714348793, -0.23187245428562164, 0.0032027277629822493, -0.05596378073096275, 0.04774019494652748, -0.00408871890977025, -0.11490195989608765, -0.17977891862392426, -0.016126716509461403, 0.008745898492634296, -0.09137320518493652, -0.05124868080019951, 0.03741345927119255, 0.15386098623275757, 0.060656070709228516, -0.033685628324747086, -0.07614458352327347, 0.04217390716075897, -0.11136315017938614, 0.00865680631250143, -0.007498481776565313, -0.08510477095842361, 0.12793339788913727, 0.041015975177288055, 0.02634275145828724, 0.11760052293539047, -0.028617555275559425, -0.007875296287238598, -0.1271955817937851, -0.08047967404127121, 0.11872873455286026, -0.017165781930088997, -0.014250249601900578, 0.0920553207397461, 0.1496959924697876, -0.12553434073925018, -0.020916558802127838, -0.007718745619058609, -0.1006794348359108, -0.2654379904270172, -0.14397071301937103, -0.010053680278360844, 0.08750373870134354, -0.03972843661904335, 0.03570421785116196, -0.07537981122732162, 0.011650840751826763, 0.06135941669344902, -0.06595409661531448, -0.08372530341148376, -0.04717130586504936, -0.006433315575122833, -0.018666023388504982, -0.03737280145287514, -0.1628173142671585, -0.04963823780417442, 0.1954575628042221, 0.07153178006410599, 0.0993858277797699, 0.08186331391334534, 0.1732383370399475, -0.049242500215768814, -0.034365665167570114, 0.0833543911576271, 0.1481795608997345, 0.08656886219978333, -0.053627580404281616, -0.001324336975812912, 0.03232908621430397, 0.0021168028470128775, -0.030018413439393044, 0.09131591767072678, -0.08816484361886978, 0.0868055447936058, -0.148254856467247, 0.05768929049372673, -0.019019486382603645, 0.07193505018949509, -0.1901719719171524, 0.12121584266424179, 0.07491854578256607, 0.13393785059452057, -0.09185276180505753, 0.08139576017856598, 0.08818835020065308, 0.007322162855416536, 0.17009539902210236, 0.06566665321588516, 0.08300764113664627, -0.112005315721035, 0.02076159045100212, -0.08818089962005615, -0.18087737262248993, -0.04508581757545471, 0.19184119999408722, -0.15367726981639862, 0.2328435182571411, 0.03389525040984154, -0.06914276629686356, -0.12891219556331635, -0.14468291401863098, -0.012482937425374985, 0.015669602900743484, 0.11660343408584595, -0.033051904290914536, 0.02790926583111286, -0.08419519662857056, -0.22062474489212036, 0.04243585467338562, 0.014900044538080692, -0.06532744318246841, -0.13334733247756958, 0.06667148321866989, 0.00980259571224451, 0.02189595438539982, -0.16463863849639893, -0.05578611418604851, -0.1022564247250557, -0.021496066823601723, 0.05833572521805763, -0.0945960059762001, 0.007779171224683523, -0.07359274476766586, -0.04383603855967522, 0.08177285641431808, 0.00965388584882021, -0.039552461355924606, -0.12111862748861313, 0.07271050661802292, 0.08898040652275085, 0.03094288520514965, -0.11874464899301529, 0.07659430801868439, 0.0835968628525734, -0.011671554297208786, -0.22098378837108612, 0.11146324872970581, -0.07646247744560242, 0.02399928867816925, -0.04362976551055908, 0.07347534596920013, 0.04438568279147148, 0.03441238775849342, -0.03754245117306709, 0.022213779389858246, -0.003835366340354085, -0.0769500657916069, 0.19762082397937775, -0.017769252881407738, 0.07247993350028992, 0.25864577293395996, 0.15402814745903015, -0.14945533871650696, 0.13094206154346466, -0.03740818426012993, 0.18931324779987335, 0.20065343379974365, -0.09185948222875595, 0.18175463378429413, 0.19842344522476196, -0.02212374657392502, -0.3113446533679962, 0.08272835612297058, -0.13120557367801666, -0.08614426851272583, 0.05327928066253662, -0.20833845436573029, 0.1453668624162674, 0.20893998444080353, -0.06620285660028458, 0.2609706521034241, -0.24569712579250336, 0.000985578284598887, 0.07190225273370743, -0.22272367775440216, 0.5924951434135437, -0.09649607539176941, -0.08492130041122437, -0.1486026644706726, 0.08166524022817612, 0.31826600432395935, -0.2023453563451767, -0.013295467011630535, 0.01441218238323927, 0.027285749092698097, -0.006508477497845888, -0.04145260527729988, 0.17848901450634003, -0.017864054068922997, 0.09749782085418701, -0.08087875694036484, -0.06366445869207382, 0.1785658448934555, -0.008369741961359978, 0.00646241707727313, -0.02702554501593113, -0.01460161805152893, -0.1336446851491928, -0.040245845913887024, 0.0025458086747676134, 0.03916582465171814, 0.0974130854010582, -0.01621822454035282, -0.04730319604277611, -0.020989952608942986, -0.12822622060775757, -0.018719883635640144, 0.27166393399238586, -0.014849744737148285, 0.03763436898589134, -0.12691634893417358, 0.12763822078704834, -0.16237156093120575, 0.02518407069146633, -0.07971876859664917, -0.07303948700428009, 0.09176317602396011, -0.28144919872283936, 0.003155736019834876, 0.09183227270841599, 0.0176969226449728, -0.03830580785870552, 0.09921663999557495, -0.050048306584358215, 0.06783518940210342, 0.1051417663693428, -0.16171056032180786, -0.05032382532954216, 0.04199730232357979, 0.004730892833322287, 0.05844096839427948, 0.07694990187883377, 0.06587102264165878, 0.0954819917678833, -0.00007093224121490493, 0.07861310988664627, 0.07755028456449509, -0.03313027694821358, 0.06641357392072678, 0.04271644726395607, 0.021031111478805542, -0.21944265067577362, 0.2987781763076782, 0.10843998938798904, -0.11681588739156723, 0.0038452360313385725, 0.049636855721473694, -0.06194816157221794, -0.029873451218008995, -0.022426389157772064, 0.20990385115146637, -0.01889548823237419, -0.11887159198522568, 0.04186554625630379, -0.05021965503692627, 0.06674808263778687, 0.18361105024814606, 0.05398033931851387, 0.09291195124387741, -0.00826552789658308, -0.05543135479092598, 0.045528948307037354, 0.024947339668869972, -0.09456553310155869, -0.0214486476033926, -0.020785976201295853, -0.21838705241680145, -0.029244720935821533, 0.2241930216550827, -0.12551869451999664, -0.05518036708235741, -0.01737098954617977, 0.11054548621177673, -0.24325446784496307, -0.0053786528296768665, 0.08818276971578598, -0.019447803497314453, -0.0877741351723671, 0.011693545617163181, -0.01950838603079319, -0.06528404355049133, -0.05784988775849342, 0.11628837138414383, 0.06814306974411011, 0.03634543716907501, -0.10504122823476791, -0.0108359819278121, 0.007771836128085852, 0.06223945692181587, 0.16136614978313446, 0.09255635738372803, -0.0024677428882569075, 0.04200245067477226, -0.0995071530342102, -0.165419340133667, 0.09103270620107651, -0.013917108066380024, 0.037309546023607254, 0.16350217163562775, -0.008597648702561855, 0.06584878265857697, -0.0693814679980278, 0.09582153707742691, -0.15983422100543976, -0.11123470216989517, 0.13760553300380707, -0.09686251729726791, -0.0953822210431099, 0.04832693561911583, -0.14338122308254242, 0.172869011759758, 0.04082074016332626, 0.05448426678776741, 0.06132149696350098, 0.03283035382628441, 0.0020930964965373278, -0.047876179218292236, -0.045925211161375046, -0.15841607749462128, -0.10228123515844345, 0.13515639305114746, 0.04156121984124184, -0.1086570993065834, 0.5666077733039856, -0.09770353883504868, -0.20117390155792236, -0.03445897623896599, 0.11008783429861069, -0.04360705241560936, 0.010897169820964336, 0.2838969826698303, 0.1496361345052719, -0.015099515207111835, -0.10008571296930313, 0.06635027378797531, 0.03263722360134125, 0.12625807523727417, 0.10215029865503311, 0.06436332315206528, 0.1939101368188858, 0.0030153729021549225, 0.07837074249982834, -0.06960705667734146, 0.1326526254415512, -0.02200046367943287, -0.0477963350713253, -0.026132917031645775, 0.07075890153646469, -0.08534850925207138, 0.06698515266180038, 0.06758061051368713, -0.04631263017654419, -0.0687628909945488, 0.041344936937093735, -0.04028400406241417, -0.031544215977191925, -0.010984805412590504, -0.06487134844064713, 0.029535040259361267, -0.039712462574243546, -0.02109837345778942, 0.35903945565223694, 0.10490252822637558, -0.0413450263440609, 0.04244181886315346, -0.0016651550540700555, 0.04988675191998482, 0.17489497363567352, -0.01677139848470688, -0.0493013858795166, -0.02667863480746746, -0.07027189433574677, 0.05106274411082268, 0.03351854160428047, -0.04828212782740593, 0.05478420853614807, 0.01696067675948143, 0.012862916104495525, -0.16167758405208588, -0.08085943013429642, -0.03412497416138649, 0.13050924241542816, -0.09229395538568497, 0.012867942452430725, 0.01549565326422453, 0.01579338312149048, 0.022254476323723793, 0.06077401712536812, 0.02968979813158512, 0.08182951807975769, 0.01842097006738186, -0.0807170644402504, -0.0792156234383583, 0.1565258651971817, -0.036292076110839844, -0.09571480751037598, -0.06524129956960678, 0.06950683146715164, 0.3721780478954315, -0.12105900794267654, -0.0022563787642866373, -0.0058874450623989105, 0.053613681346178055, 0.038782667368650436, 0.1411617398262024, 0.005908206105232239, 0.1878807544708252, -0.0545477420091629, -0.056471481919288635, 0.11585352569818497, 0.008866309188306332, -0.04847869277000427, 0.00037536551826633513, 0.04696938768029213, 0.009902934543788433, -0.07122787088155746, 0.18789076805114746, -0.18397505581378937, 0.0990949273109436, -0.06057874485850334, -0.13424547016620636, -0.13820303976535797, -0.03708753362298012, 0.044302161782979965, -0.0018599489703774452, -0.022855529561638832, -0.036453913897275925, -0.02092784084379673, -0.15196646749973297, -0.02510981261730194, -0.23872214555740356, -0.24411754310131073, -0.007166492287069559, 0.10512592643499374, 0.07346997410058975, -0.018107358366250992, 0.07355322688817978, -0.04426058754324913, -0.05796849727630615, -0.08420637995004654, 0.0059480792842805386, 0.03606925904750824, 0.06559589505195618, -0.02737581729888916, -0.038839615881443024, -0.026021242141723633, -0.055696308612823486, 0.16681723296642303, -0.00867763627320528, -0.04761754348874092, -0.03507307544350624, -0.07077628374099731, -0.02273312769830227, -0.005367024336010218, -0.013227030634880066, 0.06430273503065109, 0.06093640625476837, -0.06292504817247391, 0.007846717722713947, -0.019652245566248894, 0.12295528501272202, 0.10332470387220383, -0.09907827526330948, -0.09604860097169876, -0.030828231945633888, -0.05923546478152275, 0.056156862527132034, 0.056976113468408585, -0.10387524217367172, 0.13327954709529877, -0.09560009837150574, 0.050113845616579056, 0.04774889722466469, -0.004249455872923136, 0.1389092057943344, 0.05598634108901024, -0.033446405082941055, -0.11310762166976929, 0.06441227346658707, -0.059186697006225586, -0.10589434951543808, -0.08394110202789307 ]
1d9ba3238bc60c6cde98ab8a8ef65b46dcd1975b
# Dataset Card for "massive_datetime" [More Information needed](https://github.com/huggingface/datasets/blob/main/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
fathyshalab/massive_datetime
[ "region:us" ]
2023-02-08T11:13:12+00:00
{"dataset_info": {"features": [{"name": "id", "dtype": "string"}, {"name": "label", "dtype": "int64"}, {"name": "text", "dtype": "string"}], "splits": [{"name": "train", "num_bytes": 21237, "num_examples": 402}, {"name": "validation", "num_bytes": 3849, "num_examples": 73}, {"name": "test", "num_bytes": 5464, "num_examples": 103}], "download_size": 18224, "dataset_size": 30550}}
2023-02-08T12:22:05+00:00
[]
[]
TAGS #region-us
# Dataset Card for "massive_datetime" More Information needed
[ "# Dataset Card for \"massive_datetime\"\n\nMore Information needed" ]
[ "TAGS\n#region-us \n", "# Dataset Card for \"massive_datetime\"\n\nMore Information needed" ]
[ 6, 15 ]
[ "passage: TAGS\n#region-us \n# Dataset Card for \"massive_datetime\"\n\nMore Information needed" ]
[ -0.06970780342817307, 0.13160434365272522, -0.002183035481721163, -0.05993227660655975, 0.021328255534172058, 0.1271771788597107, 0.03908902406692505, 0.03654069826006889, 0.08714297413825989, -0.002354620723053813, 0.18212708830833435, -0.06169578433036804, 0.01619715988636017, 0.2556688189506531, -0.11223749071359634, -0.06703288108110428, 0.06203332543373108, 0.041145406663417816, -0.12524953484535217, 0.05696145445108414, 0.033461302518844604, -0.08963173627853394, 0.05866675451397896, -0.17790883779525757, -0.18871936202049255, 0.040970370173454285, -0.10400392860174179, -0.0970073863863945, 0.0554402619600296, -0.06823445856571198, 0.042600587010383606, -0.0246205385774374, 0.022605039179325104, 0.04014220088720322, -0.009756620042026043, 0.022078383713960648, -0.0000023436546143784653, -0.0054579926654696465, -0.012486607767641544, 0.0512288361787796, -0.14280477166175842, -0.023317871615290642, 0.003594817593693733, -0.008883243426680565, -0.13361190259456635, -0.2569974958896637, -0.10840780287981033, -0.14477771520614624, 0.02474142238497734, 0.00348670850507915, 0.07226375490427017, 0.1679951250553131, -0.1342315673828125, -0.015707189217209816, -0.01883932575583458, -0.033693935722112656, 0.03564421087503433, 0.2136993557214737, -0.025869721546769142, 0.16285862028598785, 0.06861908733844757, 0.03552447259426117, 0.13522426784038544, -0.07231595367193222, 0.006311262957751751, -0.0243289303034544, -0.08467228710651398, 0.11393066495656967, -0.08667813986539841, -0.11140504479408264, 0.32301467657089233, -0.04240647703409195, 0.0416434183716774, -0.018321571871638298, -0.0579032376408577, -0.09002012014389038, -0.06314298510551453, 0.011922241188585758, 0.13026972115039825, 0.03202161565423012, 0.08438682556152344, 0.032390046864748, -0.07325147837400436, -0.05463256314396858, -0.17768847942352295, 0.10938214510679245, -0.05270138755440712, 0.16827541589736938, -0.22698554396629333, -0.04803873226046562, -0.10130228102207184, 0.012155363336205482, 0.011495235376060009, -0.04426586255431175, -0.040395498275756836, -0.05355679616332054, -0.05913720279932022, 0.08076169341802597, 0.058695849031209946, -0.017091933637857437, -0.0038782095070928335, -0.02848353609442711, -0.017151426523923874, 0.02297806739807129, 0.1921764314174652, -0.002446053083986044, -0.0878148004412651, -0.20569871366024017, -0.024265341460704803, -0.14761735498905182, -0.01357442606240511, -0.011208358220756054, -0.05666901171207428, -0.08067229390144348, -0.09171609580516815, 0.0721626728773117, -0.11110124737024307, -0.0861157774925232, 0.049073170870542526, -0.0028773441445082426, 0.14191043376922607, -0.06280311942100525, -0.011089248582720757, 0.023157663643360138, -0.2029324769973755, 0.06140683963894844, -0.16266848146915436, -0.05770212039351463, 0.08366036415100098, -0.0054411087185144424, -0.10970756411552429, -0.06328116357326508, -0.07566775381565094, -0.025499718263745308, 0.1138267070055008, -0.2545630931854248, -0.006930065341293812, 0.012262387201189995, -0.3009909689426422, 0.04607771709561348, -0.014965741895139217, -0.023955347016453743, 0.09538646042346954, -0.001360789523459971, 0.04561786353588104, -0.04258324205875397, -0.06127048656344414, 0.27828922867774963, -0.11412912607192993, 0.011563493870198727, 0.04252232238650322, 0.11952517181634903, -0.19022953510284424, 0.0781743973493576, -0.15526410937309265, -0.053425487130880356, 0.00713680824264884, 0.028979234397411346, -0.019005727022886276, 0.06476455181837082, -0.06130731478333473, -0.025709472596645355, -0.11418895423412323, 0.048193491995334625, -0.05930367484688759, 0.08580747246742249, -0.2591589093208313, -0.047387536615133286, 0.22784237563610077, -0.0296754352748394, -0.1372644305229187, 0.03826165571808815, -0.03865296021103859, 0.027265649288892746, 0.06238951534032822, 0.12190727144479752, -0.092237688601017, 0.08027496933937073, 0.09879782050848007, 0.12360885739326477, -0.15009881556034088, -0.3109355866909027, 0.05192578211426735, -0.0034434283152222633, -0.04549324885010719, 0.03861148655414581, 0.19032715260982513, 0.053527623414993286, -0.04890195280313492, -0.049710649996995926, -0.0008281490299850702, -0.15091723203659058, -0.013006532564759254, 0.015492615289986134, 0.03636997193098068, -0.04528430849313736, 0.17356182634830475, 0.1866176575422287, 0.04570918157696724, 0.13205358386039734, -0.04101619869470596, 0.016565384343266487, 0.019955605268478394, -0.1052335649728775, 0.0073852031491696835, -0.16410505771636963, -0.0727272480726242, 0.033130839467048645, 0.1479647308588028, 0.02982938103377819, 0.19139502942562103, 0.051262568682432175, -0.09464338421821594, 0.03183628246188164, 0.1119576096534729, 0.22750884294509888, -0.005015844013541937, -0.03734666481614113, 0.10254313796758652, 0.10419666022062302, -0.08973316848278046, 0.013242388144135475, -0.03240647166967392, -0.04497150331735611, 0.07761869579553604, -0.05716651305556297, 0.00961347110569477, -0.04089828580617905, 0.05372926592826843, 0.02801063098013401, -0.008543581701815128, -0.039588771760463715, -0.04033936187624931, -0.09263961762189865, -0.05248616635799408, 0.158743754029274, -0.1449119597673416, 0.29043281078338623, 0.09331274032592773, 0.07642549276351929, 0.031087376177310944, 0.03022494725883007, 0.05764935165643692, -0.02501298487186432, -0.012165538035333157, 0.08398011326789856, -0.11090247333049774, -0.03621046245098114, 0.05348571762442589, -0.08225785195827484, 0.011254558339715004, 0.04369709640741348, 0.050723522901535034, -0.1145399883389473, 0.009756485000252724, 0.07396222651004791, -0.24693706631660461, 0.14103513956069946, 0.1690663844347, 0.10662692785263062, 0.1890466809272766, -0.03790486976504326, -0.11252406984567642, 0.029132220894098282, -0.14153632521629333, -0.14495643973350525, 0.09802000969648361, -0.07080130279064178, 0.0009504433255642653, 0.10173405706882477, 0.09591667354106903, 0.08446194976568222, -0.05626421794295311, -0.0341193713247776, -0.03182024136185646, -0.003328654682263732, -0.15241801738739014, 0.03119186870753765, 0.07104895263910294, 0.10170423239469528, 0.08576249331235886, -0.04901525005698204, 0.1279767006635666, 0.01158107165247202, 0.016225147992372513, 0.100863978266716, -0.13539676368236542, -0.1929444521665573, 0.009885523468255997, -0.11529777199029922, -0.0016990549629554152, -0.0237380750477314, -0.02248481661081314, -0.05148984491825104, -0.017060713842511177, 0.0153683852404356, -0.08951449394226074, -0.11294814199209213, 0.017859868705272675, -0.022763743996620178, -0.012215732596814632, -0.11606093496084213, -0.11897195875644684, 0.02065283991396427, -0.11092567443847656, 0.031078515574336052, 0.08647025376558304, -0.10556363314390182, 0.038864437490701675, 0.101868636906147, -0.07475253939628601, 0.09677000343799591, -0.038529809564352036, 0.046120937913656235, -0.09845536947250366, -0.08301912993192673, 0.21666017174720764, 0.12191691249608994, -0.022356174886226654, -0.04847722128033638, 0.04702117294073105, -0.1803516149520874, -0.05687018483877182, 0.04283691570162773, -0.19916221499443054, -0.18967004120349884, -0.19812855124473572, -0.052729204297065735, 0.05019516125321388, -0.00019209861056879163, 0.025832079350948334, -0.076211117208004, -0.04731782525777817, 0.0562087818980217, -0.035329461097717285, -0.12731467187404633, -0.11860814690589905, -0.1250409483909607, -0.013038085773587227, -0.03270762041211128, -0.14943893253803253, 0.0034620275255292654, 0.1852664202451706, 0.1277765929698944, 0.12447775155305862, 0.059606242924928665, 0.08756847679615021, -0.07603345811367035, 0.0018113780533894897, -0.003985555376857519, 0.023998957127332687, 0.07074380666017532, -0.054276615381240845, -0.0024283116217702627, 0.03945876657962799, -0.03145105019211769, 0.02367515303194523, 0.2006991058588028, -0.18697860836982727, 0.06652909517288208, -0.10153932869434357, 0.0401136688888073, 0.029788708314299583, 0.028242306783795357, -0.3222048282623291, 0.137054443359375, 0.026411743834614754, 0.16223327815532684, -0.12696117162704468, 0.13373374938964844, 0.009453866630792618, 0.04378699138760567, 0.15454012155532837, 0.03519350662827492, 0.06766042113304138, -0.03374118357896805, -0.012598888017237186, -0.10403754562139511, -0.03767921403050423, -0.010393662378191948, 0.0900886133313179, -0.08331108093261719, 0.19486556947231293, 0.01041122805327177, -0.034362535923719406, -0.15222947299480438, -0.09016555547714233, -0.009349934756755829, 0.03024606965482235, 0.044136740267276764, -0.003738529747352004, -0.08379867672920227, -0.05006258934736252, -0.10496462881565094, -0.037403445690870285, 0.04371769726276398, 0.08617279678583145, -0.13544555008411407, 0.04389758035540581, 0.020001206547021866, 0.013641600497066975, -0.1528077870607376, 0.05456767976284027, 0.03474631905555725, -0.024760529398918152, 0.11257579922676086, -0.19038917124271393, 0.0574791245162487, 0.043017059564590454, -0.13337714970111847, 0.030830226838588715, 0.15528324246406555, -0.011162430047988892, -0.11269207298755646, -0.07574998587369919, 0.2122102528810501, 0.07292602956295013, -0.0559840090572834, 0.05881291255354881, 0.10382247716188431, 0.027896957471966743, -0.15604539215564728, 0.11692836135625839, -0.035870540887117386, 0.11001243442296982, -0.02591429278254509, 0.006353350821882486, 0.04146803542971611, -0.0001783019251888618, -0.05772542953491211, 0.009435421787202358, -0.08641749620437622, 0.01561678759753704, 0.20085029304027557, -0.09792080521583557, 0.1472962498664856, 0.14544732868671417, 0.11561556160449982, -0.013303210958838463, 0.18851497769355774, -0.000012664794667216484, 0.08195561170578003, 0.12336162477731705, -0.023488622158765793, 0.19237510859966278, 0.1820591390132904, 0.0395607091486454, -0.3192371129989624, 0.14129747450351715, -0.17015938460826874, -0.043465014547109604, -0.04665626585483551, -0.19327743351459503, 0.006793887820094824, 0.2130991816520691, -0.026012815535068512, 0.29518187046051025, -0.27551883459091187, -0.005383057985454798, 0.14440467953681946, -0.13643553853034973, 0.40766528248786926, -0.04537791758775711, -0.00500213960185647, -0.09534747898578644, 0.014583311043679714, 0.15967176854610443, -0.05442271754145622, 0.01782781071960926, -0.02802976779639721, 0.12151502817869186, -0.03106996789574623, -0.039312686771154404, 0.07510677725076675, 0.005609688349068165, 0.158378005027771, -0.024698156863451004, -0.08711551874876022, 0.21474288403987885, -0.07130763679742813, 0.1149626225233078, 0.00979708507657051, 0.0065470244735479355, -0.10954040288925171, 0.006397179793566465, 0.026341406628489494, 0.020088396966457367, 0.07697513699531555, -0.05676514655351639, -0.03508398309350014, -0.0013360822340473533, -0.08927226811647415, -0.07319116592407227, 0.12684740126132965, 0.03562803566455841, -0.10475628077983856, 0.06260357052087784, 0.025893043726682663, -0.22547279298305511, 0.07213956117630005, -0.12216344475746155, -0.05506671592593193, 0.09081932157278061, -0.23382070660591125, 0.02046915329992771, 0.010759752243757248, 0.03209495544433594, -0.010749046690762043, 0.05806204676628113, 0.037312012165784836, 0.010026829317212105, 0.05583140254020691, -0.08667336404323578, -0.05545482784509659, 0.10708874464035034, -0.1504652351140976, 0.08212610334157944, 0.05987649783492088, 0.023916101083159447, 0.06652753055095673, -0.01703653298318386, -0.047037020325660706, 0.07377536594867706, -0.013329114764928818, 0.11548328399658203, -0.04790070652961731, 0.01072645466774702, -0.22161874175071716, 0.30890604853630066, 0.016656339168548584, -0.11001903563737869, 0.03577686473727226, 0.0508817583322525, -0.07942952960729599, -0.05633826181292534, 0.07553721964359283, 0.15021373331546783, -0.1682165563106537, -0.12144912034273148, 0.0467018187046051, -0.05776934698224068, 0.10402979701757431, 0.2842226028442383, 0.07649222016334534, 0.13798822462558746, 0.00722089409828186, -0.003512499388307333, -0.008203137665987015, -0.03527074679732323, -0.09821619093418121, 0.04275999963283539, 0.056263044476509094, 0.016975190490484238, -0.06586091965436935, 0.05598854646086693, -0.09176594763994217, -0.07461368292570114, -0.03192128241062164, 0.07392103970050812, -0.2128758281469345, -0.06338008493185043, 0.14726606011390686, 0.013229924254119396, -0.03808731585741043, 0.06054907664656639, -0.01911809854209423, -0.04047490656375885, -0.08914205431938171, 0.10780269652605057, 0.019170040264725685, 0.03442886471748352, -0.1002664566040039, -0.03395189344882965, -0.01772349514067173, 0.05562227591872215, 0.11926183104515076, 0.19615371525287628, 0.0026527666486799717, -0.01705799251794815, 0.048866625875234604, -0.15340059995651245, 0.10370144993066788, 0.06551692634820938, 0.1420591026544571, 0.09475935250520706, 0.001291660126298666, 0.12228185683488846, -0.11270617693662643, 0.06531921029090881, -0.14346876740455627, -0.06983832269906998, 0.08181244134902954, -0.18506786227226257, -0.045206304639577866, 0.03718830645084381, -0.11077939718961716, 0.2069869190454483, 0.07041400671005249, -0.05755143240094185, 0.08612281829118729, -0.08769296854734421, 0.03204961493611336, -0.0911690816283226, -0.039579786360263824, -0.181961789727211, -0.13234908878803253, 0.15445482730865479, 0.0633980929851532, -0.055043675005435944, 0.5333625078201294, 0.004109522327780724, -0.15365846455097198, -0.009586529806256294, 0.14817842841148376, -0.050357647240161896, 0.03361762687563896, 0.2493770271539688, 0.07471778988838196, -0.05753646045923233, -0.011798293329775333, 0.16932113468647003, 0.08838572353124619, 0.08086548000574112, 0.0798925906419754, 0.07515447586774826, 0.1338321566581726, 0.03133390471339226, -0.013142209500074387, -0.14577002823352814, -0.026871025562286377, 0.0855332762002945, 0.010367533192038536, 0.03332147374749184, 0.055027175694704056, 0.013066831044852734, 0.02681802585721016, 0.008473631925880909, -0.017379043623805046, -0.11274079978466034, 0.0424424409866333, -0.0332641564309597, 0.07079955190420151, -0.03997853770852089, -0.05566111579537392, 0.03618750721216202, -0.05306876078248024, 0.03448213264346123, 0.21578048169612885, 0.08660540729761124, 0.03143583610653877, 0.020819859579205513, -0.1200656145811081, 0.07613661140203476, 0.05531611293554306, -0.03592133894562721, -0.061928171664476395, 0.013122234493494034, -0.15438657999038696, 0.06228767707943916, -0.14184460043907166, 0.02057446539402008, -0.007783319801092148, 0.017097439616918564, 0.02703872136771679, -0.07728967815637589, -0.03278796374797821, -0.0424276739358902, 0.018613701686263084, -0.0902198776602745, -0.028068386018276215, 0.037467870861291885, -0.01586855947971344, 0.0421697236597538, 0.05724700912833214, -0.04288642480969429, 0.08160986006259918, 0.014985176734626293, -0.006458101328462362, 0.0695638433098793, 0.16954584419727325, -0.003608791856095195, -0.0050118607468903065, -0.10035989433526993, 0.07270636409521103, 0.2031741738319397, -0.10592123121023178, -0.06462621688842773, 0.03157608583569527, 0.02504672110080719, -0.019084207713603973, 0.19288817048072815, -0.002949254820123315, 0.1838575005531311, 0.010008726269006729, -0.13394007086753845, 0.026507379487156868, 0.0028988677076995373, -0.06321319192647934, 0.16459929943084717, 0.012707867659628391, -0.036388419568538666, -0.04897250980138779, 0.05278544872999191, -0.15070252120494843, 0.06739237159490585, 0.040917232632637024, -0.11496635526418686, -0.08986470103263855, -0.0032129320316016674, 0.041187599301338196, -0.008730724453926086, 0.05484877899289131, -0.05729559808969498, -0.010449659079313278, -0.2030850648880005, -0.029933486133813858, -0.28804779052734375, -0.23997774720191956, -0.01302151195704937, 0.1792881339788437, 0.16383765637874603, -0.03414280712604523, 0.08426430821418762, -0.031490132212638855, -0.029477041214704514, -0.03799853473901749, 0.02978465147316456, -0.032061219215393066, 0.05427850782871246, -0.07025828957557678, -0.05693421512842178, -0.12302770465612411, 0.011185681447386742, 0.08468620479106903, 0.024292120710015297, -0.07179438322782516, 0.05531541258096695, -0.027457209303975105, -0.002790010068565607, -0.06122506037354469, 0.007868667133152485, 0.07254521548748016, -0.025518693029880524, 0.00679799634963274, 0.0021130992099642754, -0.032745927572250366, 0.10824026167392731, 0.037181075662374496, -0.04907840117812157, -0.07036323100328445, -0.041270140558481216, -0.08508934080600739, 0.14409007132053375, 0.012689781375229359, -0.07835272699594498, 0.08075393736362457, -0.0828842744231224, 0.0673195943236351, 0.06459509581327438, 0.012201059609651566, 0.11181755363941193, 0.047373875975608826, -0.039070796221494675, 0.004263005219399929, 0.05916823074221611, 0.03043282777070999, -0.0875391736626625, -0.09537416696548462 ]
c2e985c49ec679324d50700da239be419b4967cb
# Dataset Card for "massive_recommendation" [More Information needed](https://github.com/huggingface/datasets/blob/main/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
fathyshalab/massive_recommendation
[ "region:us" ]
2023-02-08T11:13:29+00:00
{"dataset_info": {"features": [{"name": "id", "dtype": "string"}, {"name": "label", "dtype": "int64"}, {"name": "text", "dtype": "string"}], "splits": [{"name": "train", "num_bytes": 25598, "num_examples": 433}, {"name": "validation", "num_bytes": 4186, "num_examples": 69}, {"name": "test", "num_bytes": 5994, "num_examples": 94}], "download_size": 21463, "dataset_size": 35778}}
2023-02-08T12:22:26+00:00
[]
[]
TAGS #region-us
# Dataset Card for "massive_recommendation" More Information needed
[ "# Dataset Card for \"massive_recommendation\"\n\nMore Information needed" ]
[ "TAGS\n#region-us \n", "# Dataset Card for \"massive_recommendation\"\n\nMore Information needed" ]
[ 6, 17 ]
[ "passage: TAGS\n#region-us \n# Dataset Card for \"massive_recommendation\"\n\nMore Information needed" ]
[ -0.06668324023485184, 0.10394705832004547, -0.004594139289110899, -0.07591934502124786, 0.11959192156791687, 0.1340341418981552, -0.03732341155409813, 0.11186803132295609, 0.12705886363983154, -0.06385820358991623, 0.06885913014411926, 0.09164799749851227, 0.019760021939873695, 0.23848791420459747, -0.08204752206802368, -0.01134786568582058, 0.04234795272350311, 0.02265862189233303, -0.1536797136068344, 0.058705855160951614, 0.04183230176568031, -0.13590556383132935, 0.07685579359531403, -0.10941699892282486, -0.12020407617092133, 0.0465913787484169, 0.015566833317279816, -0.06852532923221588, 0.031196938827633858, -0.07629641890525818, 0.11054783314466476, 0.006062124390155077, -0.055109310895204544, -0.10300097614526749, 0.008908380754292011, 0.00832701101899147, -0.015918605029582977, 0.07729750126600266, 0.09521252661943436, -0.08629883080720901, -0.05279478058218956, -0.005181393586099148, 0.03416531905531883, 0.01772698201239109, -0.08214884251356125, -0.2567285895347595, -0.09311454743146896, -0.020939020439982414, -0.030599744990468025, -0.11454248428344727, 0.05650065466761589, 0.17145244777202606, -0.2206045389175415, -0.03713955730199814, -0.022885892540216446, 0.09488265961408615, 0.032090943306684494, 0.19209671020507812, -0.05914490669965744, 0.12907381355762482, -0.013583972118794918, 0.03434954583644867, 0.11628399789333344, -0.1000843420624733, 0.030825266614556313, 0.009780465625226498, 0.006008953787386417, 0.09208398312330246, -0.017200782895088196, -0.008283908478915691, 0.3408004343509674, 0.05904238298535347, -0.022653592750430107, -0.02200910821557045, -0.03593267500400543, -0.019990481436252594, 0.0171358659863472, -0.022062893956899643, 0.05823850631713867, 0.00911770574748516, 0.03273918479681015, 0.0043357256799936295, -0.07764455676078796, -0.14245367050170898, -0.15692579746246338, 0.0865795686841011, -0.08559661358594894, 0.13136394321918488, -0.09412091970443726, 0.05040758103132248, -0.06972874701023102, -0.01914888806641102, 0.03138885647058487, -0.1840079426765442, -0.12491697818040848, -0.10322389006614685, 0.05929446965456009, 0.10375796258449554, 0.173533096909523, 0.07513316720724106, 0.19599133729934692, -0.0131113575771451, -0.1006796807050705, 0.05310683697462082, 0.13880567252635956, -0.14041779935359955, -0.07728389650583267, -0.08941254764795303, -0.04879825934767723, -0.0638267993927002, 0.006783720105886459, -0.02655760943889618, -0.0096464017406106, 0.003758075414225459, -0.09999097883701324, 0.09947223216295242, -0.11045429110527039, -0.08527646213769913, -0.09506896138191223, -0.04578715190291405, 0.17520128190517426, -0.020844316110014915, -0.0005285447114147246, 0.08354996889829636, -0.12966890633106232, 0.09538435190916061, -0.1579826921224594, -0.0003429187636356801, 0.10908084362745285, 0.1751340627670288, -0.09741760045289993, -0.020072519779205322, -0.07641744613647461, 0.03669285029172897, 0.11253271996974945, -0.155611053109169, 0.10567177832126617, -0.06882363557815552, -0.16087977588176727, 0.059848539531230927, 0.007708785589784384, -0.07073064148426056, 0.06078150495886803, 0.06531967967748642, 0.021404609084129333, -0.01885986328125, -0.0776384174823761, 0.3016798198223114, -0.13213135302066803, 0.07619418203830719, -0.036058347672224045, 0.011813118122518063, -0.15278424322605133, 0.005539187230169773, -0.12210448831319809, -0.04107191041111946, -0.03785058483481407, 0.007699242327362299, -0.13784505426883698, 0.24551832675933838, -0.14453503489494324, -0.04156821221113205, -0.09503763914108276, -0.011463211849331856, -0.10379229485988617, 0.12470155209302902, -0.2518850266933441, -0.015897057950496674, 0.06824908405542374, -0.0970502719283104, -0.17602786421775818, 0.08970723301172256, -0.0967329889535904, 0.04613122344017029, 0.10758110135793686, 0.2091028392314911, 0.03164561465382576, 0.03798063099384308, 0.04848473146557808, 0.08776766806840897, -0.17192696034908295, -0.2928997874259949, 0.12757045030593872, -0.00507392268627882, -0.2584666311740875, 0.02755017578601837, 0.1092122495174408, 0.006175709888339043, -0.058649711310863495, -0.051162172108888626, 0.0011226281058043242, -0.19138091802597046, 0.017563804984092712, 0.01656736619770527, 0.0011110780760645866, -0.10549405217170715, 0.09152523428201675, -0.008014415390789509, 0.13205060362815857, 0.09757688641548157, -0.10059117525815964, -0.010370131582021713, 0.15958340466022491, -0.11646120995283127, -0.02754843421280384, -0.12815751135349274, 0.07353706657886505, -0.00044552484177984297, 0.0010693774092942476, -0.044947266578674316, 0.154462993144989, 0.045010391622781754, -0.10261863470077515, 0.005349686834961176, 0.1028989627957344, 0.21229848265647888, 0.03548659756779671, 0.07446164637804031, -0.031933095306158066, 0.06119072809815407, -0.08836206793785095, -0.1131204143166542, -0.15031535923480988, -0.10752831399440765, 0.2130831629037857, 0.044867031276226044, 0.10949583351612091, -0.009294617921113968, 0.11669236421585083, -0.022839520126581192, -0.014562706463038921, -0.011473902501165867, 0.03372970223426819, -0.054929688572883606, -0.12282473593950272, -0.03170744702219963, -0.05730615183711052, 0.3808944821357727, 0.11160731315612793, -0.06016213074326515, 0.04401557520031929, -0.035355716943740845, 0.0375991128385067, 0.022774765267968178, -0.10556987673044205, 0.051351167261600494, -0.13052326440811157, 0.010254676453769207, 0.06745938211679459, -0.050351619720458984, -0.0031462516635656357, 0.05628672242164612, 0.039189666509628296, -0.026241479441523552, 0.05219037085771561, 0.12392342835664749, -0.22206757962703705, 0.12289448082447052, 0.1237165555357933, 0.08591561764478683, 0.11032786220312119, -0.06462158262729645, -0.06866700202226639, 0.017828192561864853, -0.03503137454390526, -0.09274521470069885, 0.1242605671286583, -0.10737096518278122, 0.04414908587932587, 0.11627386510372162, 0.020636890083551407, 0.05266964063048363, -0.0626385509967804, -0.07103575766086578, 0.007018635515123606, -0.0323621965944767, -0.16926422715187073, 0.04881203547120094, 0.04451797902584076, 0.09838046133518219, 0.006684304215013981, 0.024708667770028114, 0.1394266039133072, -0.062459204345941544, 0.034974101930856705, 0.1022484302520752, -0.0374179370701313, -0.14248739182949066, 0.020087873563170433, -0.10127293318510056, 0.04512219876050949, 0.01535705104470253, -0.06655406206846237, -0.13288302719593048, -0.07608828693628311, 0.039871953427791595, -0.079290471971035, -0.12786278128623962, 0.01321900263428688, -0.11325737088918686, 0.09418980032205582, -0.013546394184231758, -0.06585053354501724, 0.004541047848761082, -0.049936648458242416, 0.06446420401334763, 0.08845659345388412, -0.009655702859163284, 0.11292511969804764, 0.048270296305418015, -0.007865441963076591, 0.056495074182748795, -0.023139052093029022, -0.057464975863695145, -0.07096638530492783, -0.08360239118337631, 0.1288614273071289, -0.000034426924685249105, -0.014676588587462902, 0.13062351942062378, 0.11851441115140915, -0.1775486022233963, 0.022971507161855698, -0.022631267085671425, -0.13796861469745636, -0.25745314359664917, -0.1791626214981079, -0.058284662663936615, 0.025831619277596474, 0.051319900900125504, 0.05468093603849411, -0.060978133231401443, 0.08841165155172348, 0.10160642862319946, -0.07052306085824966, -0.14794383943080902, -0.06679130345582962, -0.07180552929639816, 0.029143746942281723, 0.017784718424081802, -0.19442710280418396, -0.04688101261854172, 0.2203250527381897, 0.10982764512300491, 0.2433665543794632, 0.07486561685800552, 0.14106082916259766, -0.003162380075082183, 0.01440456323325634, 0.10676173865795135, 0.1566380262374878, 0.13219337165355682, -0.026997577399015427, -0.019970791414380074, 0.02723793499171734, -0.08133183419704437, 0.02273973636329174, 0.16420422494411469, -0.06867950409650803, -0.01804838329553604, -0.14877574145793915, 0.09252408891916275, -0.09711149334907532, 0.00972797255963087, -0.22144486010074615, 0.14710582792758942, 0.08757637441158295, 0.07628998160362244, -0.06547922641038895, 0.11106730997562408, 0.01870768517255783, -0.014308405108749866, 0.13702009618282318, -0.01704898290336132, 0.08856453746557236, -0.2027277797460556, 0.0036603619810193777, -0.07621502131223679, -0.037699006497859955, -0.03000931814312935, 0.14577323198318481, -0.17892548441886902, 0.23312661051750183, 0.01693309284746647, -0.04202535003423691, -0.15844249725341797, -0.12741023302078247, 0.033812154084444046, 0.04787147417664528, 0.1361631602048874, -0.025608768686652184, -0.11195547133684158, -0.12356799095869064, -0.13358470797538757, 0.008983601815998554, 0.011231022886931896, -0.04359208047389984, -0.15214227139949799, 0.02114230766892433, 0.02929328754544258, -0.07049519568681717, -0.13015387952327728, -0.01615808717906475, -0.03078341856598854, -0.06781158596277237, 0.012074627913534641, -0.07416100800037384, 0.006312720011919737, -0.019740773364901543, 0.005015493370592594, 0.06979244202375412, 0.010248835198581219, -0.02351013384759426, -0.11952369660139084, 0.013193808495998383, 0.16726428270339966, 0.04298640042543411, -0.044717516750097275, -0.003473840421065688, 0.033663682639598846, 0.04281036555767059, -0.14388076961040497, 0.0903625637292862, -0.07358800619840622, 0.07266374677419662, -0.05818028748035431, 0.09529929608106613, -0.04934186488389969, 0.06098056584596634, -0.02252047322690487, -0.04397939145565033, -0.02063640207052231, -0.084869384765625, 0.12157706916332245, -0.01937979832291603, 0.10125312209129333, 0.2552655339241028, 0.16890543699264526, -0.023163044825196266, 0.11206178367137909, -0.026093771681189537, 0.15146958827972412, 0.10274320095777512, -0.04238925501704216, 0.18461434543132782, 0.07272785902023315, -0.016664868220686913, -0.18863144516944885, 0.11722481995820999, -0.13590943813323975, -0.06901967525482178, -0.07321563363075256, -0.22641624510288239, 0.17302753031253815, 0.1368490308523178, -0.066444531083107, 0.20781618356704712, 0.011633384972810745, -0.01777634769678116, 0.12156625092029572, -0.012971870601177216, 0.50273197889328, -0.10034852474927902, -0.09456706047058105, -0.13046270608901978, 0.0024835169315338135, 0.29765552282333374, -0.10283252596855164, -0.033522382378578186, 0.01169741153717041, 0.03272957727313042, 0.03619446977972984, -0.05758365988731384, 0.1803407371044159, -0.00033341514063067734, 0.19422395527362823, -0.06937842071056366, -0.03592962026596069, 0.03999190032482147, -0.0002470507752150297, 0.05976800248026848, -0.023212864995002747, -0.01272638887166977, -0.0418364554643631, -0.0467609167098999, 0.00780476676300168, 0.03527751937508583, 0.11504892259836197, -0.07475335150957108, -0.10145410150289536, 0.04705553874373436, -0.11537204682826996, -0.030370550230145454, 0.1027965396642685, 0.010503415949642658, -0.0021687194239348173, -0.10575778037309647, 0.23955227434635162, -0.20081005990505219, -0.022007454186677933, -0.02737496979534626, -0.07899443060159683, 0.13360907137393951, -0.34099361300468445, 0.05736519768834114, 0.10363209992647171, 0.010735462419688702, 0.006614309269934893, 0.04163838177919388, -0.03766169399023056, 0.036900486797094345, 0.1928452104330063, -0.07590316981077194, -0.059642888605594635, 0.08172675967216492, -0.026767965406179428, 0.04964191094040871, 0.02922947332262993, -0.006014522165060043, 0.07361007481813431, 0.012971008196473122, 0.011172563768923283, 0.035611364990472794, -0.02889445796608925, 0.08913480490446091, 0.07131628692150116, 0.06213422119617462, -0.19390137493610382, 0.23379658162593842, 0.02503419667482376, -0.18470078706741333, -0.06780542433261871, -0.15975666046142578, -0.10650057345628738, -0.06476651877164841, -0.0120812663808465, 0.20346736907958984, 0.03243662789463997, -0.17780335247516632, 0.0059876651503145695, -0.0774814635515213, 0.033701296895742416, 0.05887797102332115, 0.11673637479543686, 0.10706695914268494, -0.033531371504068375, -0.06394604593515396, 0.002268714364618063, -0.05196235328912735, -0.062143441289663315, -0.010972038842737675, -0.15397383272647858, -0.15249206125736237, -0.017113136127591133, 0.06589291244745255, -0.09369209408760071, 0.009800029918551445, -0.03148278594017029, 0.07280854880809784, -0.22983600199222565, 0.03679949417710304, 0.03330279514193535, 0.05141894891858101, -0.0032020907383412123, 0.03364478051662445, -0.0720176100730896, -0.07209736853837967, -0.15013758838176727, 0.11125302314758301, 0.10308327525854111, 0.0977291464805603, -0.009858761914074421, 0.015556268393993378, 0.07000073790550232, 0.03911849483847618, 0.1454135775566101, 0.06482192128896713, -0.014666791073977947, 0.030316047370433807, -0.07349298894405365, -0.13142657279968262, 0.11355474591255188, 0.06910333037376404, 0.028148753568530083, -0.030984146520495415, 0.07507915049791336, 0.10844064503908157, -0.026277542114257812, 0.04077988490462303, -0.14757966995239258, -0.11189112067222595, -0.0021425613667815924, -0.06432672590017319, -0.06740645319223404, 0.031229758635163307, -0.11461219191551208, 0.14886711537837982, 0.09487481415271759, 0.05173201113939285, 0.11962523311376572, -0.030712226405739784, 0.008562557399272919, -0.07377106696367264, -0.07676681876182556, -0.17135030031204224, -0.1358388215303421, 0.1111966073513031, 0.05501990765333176, -0.06348053365945816, 0.6238619685173035, -0.03392801061272621, -0.09957486391067505, -0.05744102597236633, 0.21188852190971375, 0.0633239597082138, 0.026476774364709854, 0.3867451846599579, 0.0846591591835022, -0.06420141458511353, -0.013054989278316498, 0.04858412593603134, 0.08184856921434402, 0.11881155520677567, 0.06013372913002968, 0.2039107233285904, 0.05797296017408371, -0.0654965415596962, -0.017399469390511513, -0.1000024825334549, 0.12440388649702072, 0.05173775181174278, 0.01225315872579813, 0.005138188600540161, 0.06543669104576111, -0.021343164145946503, 0.04428163170814514, 0.021039525046944618, -0.01129115093499422, -0.04864271357655525, 0.003953105304390192, -0.09311205893754959, -0.11837957799434662, -0.049811556935310364, -0.13912293314933777, 0.08640608936548233, -0.012307344004511833, -0.06355582177639008, 0.2825070023536682, 0.0936916172504425, -0.03292360156774521, 0.0004662242135964334, -0.09568838030099869, 0.0534701868891716, 0.1245710477232933, 0.01703537255525589, -0.15444990992546082, 0.02724747732281685, -0.08646415174007416, 0.0023244621697813272, -0.08635946363210678, -0.05572881922125816, 0.008464468643069267, -0.030414629727602005, 0.009869630448520184, -0.0878385677933693, -0.013963446952402592, -0.0708194151520729, -0.013195646926760674, -0.11619632691144943, 0.09836362302303314, -0.009010118432343006, 0.03401206061244011, 0.016443844884634018, 0.159005805850029, 0.0180521160364151, 0.1084514781832695, -0.10743825882673264, -0.0783006027340889, -0.03425195440649986, 0.10430959612131119, 0.015021858736872673, -0.07675080746412277, -0.03126991167664528, 0.07278970628976822, 0.32287201285362244, -0.04798141494393349, 0.02120623178780079, -0.016915397718548775, 0.03300836309790611, -0.0007987144053913653, 0.17949143052101135, -0.0904529020190239, -0.02729559876024723, -0.02287222445011139, -0.05754411965608597, 0.052543435245752335, -0.02536141872406006, 0.09586633741855621, 0.13978835940361023, 0.09395667165517807, -0.04131529480218887, -0.13481588661670685, 0.17964297533035278, -0.20041754841804504, 0.13117386400699615, 0.008287309668958187, -0.10726680606603622, -0.1430869847536087, -0.04991145431995392, 0.01351957954466343, 0.07160547375679016, -0.02795213647186756, -0.07249317318201065, -0.07022295147180557, -0.11016886681318283, -0.03519590198993683, -0.40078142285346985, -0.22110094130039215, 0.003597137052565813, 0.2702096402645111, 0.10355003923177719, 0.024079671129584312, 0.10807313024997711, 0.01796521060168743, -0.05870632454752922, -0.12027634680271149, 0.051708247512578964, -0.0017673296388238668, 0.0035538766533136368, 0.008555210195481777, 0.005620154552161694, -0.04791543260216713, -0.061949923634529114, 0.06470135599374771, -0.0381854847073555, -0.06548577547073364, -0.014921629801392555, -0.07231730222702026, -0.0900726318359375, 0.009976468980312347, -0.05154242366552353, 0.0648861974477768, 0.029970725998282433, -0.024836502969264984, 0.008020710200071335, -0.017577242106199265, 0.16429370641708374, 0.0464361347258091, -0.06413327157497406, -0.036447517573833466, -0.06941765546798706, -0.050787005573511124, 0.12338694930076599, -0.021059023216366768, -0.10046833008527756, 0.09940601140260696, -0.11120090633630753, 0.06013081222772598, 0.0036199865862727165, 0.024170948192477226, 0.06453629583120346, 0.08036385476589203, -0.039640095084905624, -0.059855565428733826, 0.02759261429309845, 0.0006483798497356474, -0.06307705491781235, -0.09096121042966843 ]
dddc8eac4cbb1f655feca3b98f651ef7fea56a7d
# Dataset Card for "massive_email" [More Information needed](https://github.com/huggingface/datasets/blob/main/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
fathyshalab/massive_email
[ "region:us" ]
2023-02-08T11:13:45+00:00
{"dataset_info": {"features": [{"name": "id", "dtype": "string"}, {"name": "label", "dtype": "int64"}, {"name": "text", "dtype": "string"}], "splits": [{"name": "train", "num_bytes": 55111, "num_examples": 953}, {"name": "validation", "num_bytes": 9057, "num_examples": 157}, {"name": "test", "num_bytes": 15530, "num_examples": 271}], "download_size": 42235, "dataset_size": 79698}}
2023-02-08T12:22:46+00:00
[]
[]
TAGS #region-us
# Dataset Card for "massive_email" More Information needed
[ "# Dataset Card for \"massive_email\"\n\nMore Information needed" ]
[ "TAGS\n#region-us \n", "# Dataset Card for \"massive_email\"\n\nMore Information needed" ]
[ 6, 14 ]
[ "passage: TAGS\n#region-us \n# Dataset Card for \"massive_email\"\n\nMore Information needed" ]
[ 0.01426263153553009, 0.0893298014998436, -0.002402265788987279, 0.007409225683659315, 0.10014658421278, 0.1498561054468155, 0.10503242164850235, 0.034841638058423996, 0.15657489001750946, -0.05151987448334694, 0.18656116724014282, -0.06324861943721771, -0.04132309928536415, 0.2984755337238312, -0.08682868629693985, -0.0076228417456150055, -0.025902120396494865, -0.02067752555012703, -0.22399967908859253, 0.029359059408307076, 0.04193839430809021, -0.08779933303594589, 0.08998873084783554, -0.1945079118013382, -0.098549485206604, 0.09761401265859604, -0.04647069051861763, -0.03719666227698326, 0.017138123512268066, -0.03622982278466225, 0.08214954286813736, -0.03417036309838295, -0.009642310440540314, -0.11292888969182968, -0.006178395822644234, -0.010265395045280457, -0.030096298083662987, 0.045705750584602356, -0.040642980486154556, -0.08304818719625473, -0.061157092452049255, -0.11995196342468262, 0.006637896876782179, -0.035937704145908356, -0.03380822390317917, -0.16387833654880524, -0.09355141967535019, 0.046920787543058395, 0.03794465586543083, 0.04525940492749214, 0.10765314102172852, 0.09699374437332153, -0.10310319811105728, 0.00800554919987917, -0.020947253331542015, 0.04638165235519409, 0.07590362429618835, 0.12268068641424179, -0.10363701730966568, 0.23364275693893433, 0.04612332209944725, 0.03846163675189018, 0.13090237975120544, -0.0635262206196785, -0.03884575888514519, 0.023761803284287453, -0.09706541150808334, 0.081914521753788, 0.008118861354887486, -0.12294922024011612, 0.27055633068084717, 0.07464804500341415, 0.04145902395248413, -0.01904379390180111, -0.017331747338175774, -0.06247198209166527, 0.031797539442777634, 0.019944440573453903, 0.04120786488056183, 0.005954116582870483, -0.006787397433072329, -0.030735192820429802, -0.10346847027540207, -0.10254856199026108, -0.19996029138565063, -0.012572632171213627, -0.11568987369537354, 0.17146235704421997, -0.206338569521904, -0.025659726932644844, -0.023252064362168312, -0.018127864226698875, 0.11023661494255066, -0.06884810328483582, 0.1023690477013588, -0.032345544546842575, -0.0053762346506118774, 0.01309866551309824, 0.16556215286254883, 0.03564104810357094, 0.1512160301208496, -0.023629190400242805, -0.006839456502348185, 0.05739977955818176, 0.22298502922058105, -0.1839808225631714, 0.010275527834892273, -0.10527526587247849, 0.004777926951646805, -0.1119280532002449, -0.02942497283220291, -0.061203908175230026, -0.10769719630479813, 0.07965850830078125, -0.0826234519481659, 0.10362470149993896, -0.08353850245475769, -0.12185108661651611, 0.011917655356228352, 0.012653484009206295, 0.14996203780174255, -0.092862568795681, 0.02690216898918152, 0.010472682304680347, -0.13103307783603668, 0.09945666790008545, -0.12396638840436935, 0.020879162475466728, 0.08736828714609146, 0.14152906835079193, -0.0664241835474968, -0.016994111239910126, -0.04898881912231445, -0.0035797443706542253, 0.14526720345020294, -0.2449178248643875, 0.03841439634561539, -0.05457817390561104, -0.21211998164653778, 0.053179945796728134, 0.0005103855510242283, -0.01121706422418356, 0.08215183019638062, 0.04796481132507324, 0.07524914294481277, 0.05199934542179108, -0.06493578851222992, 0.2639768123626709, -0.12156637758016586, 0.034934189170598984, -0.03275390341877937, 0.04696103557944298, -0.20889346301555634, -0.00829820055514574, -0.038999512791633606, -0.0940614715218544, 0.0598595030605793, -0.01100217830389738, -0.13694103062152863, 0.15174710750579834, -0.13859225809574127, 0.0369051918387413, -0.04095922037959099, 0.019177056849002838, -0.08772297948598862, 0.10220805555582047, -0.1447615772485733, -0.03594464436173439, 0.011847983114421368, -0.0719226822257042, -0.19465689361095428, 0.054004013538360596, -0.05217684805393219, 0.039120785892009735, 0.05964352563023567, 0.1606566309928894, -0.07816300541162491, 0.018257299438118935, -0.012563042342662811, 0.15727372467517853, -0.15384946763515472, -0.3140360414981842, 0.0775538757443428, -0.05098797753453255, -0.07241764664649963, 0.00019679714750964195, 0.21405141055583954, 0.024342501536011696, -0.07668445259332657, -0.07068786770105362, -0.005164970178157091, -0.17492716014385223, -0.07893816381692886, -0.05883507430553436, 0.04939169064164162, -0.041966017335653305, 0.1422901153564453, 0.0935949757695198, 0.013435461558401585, 0.060619205236434937, -0.03219763562083244, -0.0181804820895195, -0.04291674494743347, -0.0922870934009552, -0.02322707511484623, -0.13100320100784302, -0.06946470588445663, -0.033631034195423126, 0.0649331733584404, 0.08987762778997421, 0.034447673708200455, 0.11497963219881058, -0.10642540454864502, -0.016050344333052635, 0.1378583163022995, 0.19145990908145905, 0.04508712515234947, -0.030597558245062828, 0.0049537792801856995, 0.03167443349957466, -0.06728678196668625, -0.017527496442198753, -0.03493710234761238, -0.06563504785299301, 0.15847666561603546, 0.017576230689883232, 0.05176464840769768, -0.02041894756257534, 0.029316356405615807, -0.03060946799814701, -0.01449738722294569, -0.04288297891616821, -0.010335500352084637, -0.08337598294019699, -0.1416265219449997, -0.08030707389116287, 0.036482904106378555, 0.4165445566177368, 0.09966426342725754, 0.07181438058614731, 0.0366196371614933, -0.0288297887891531, 0.039619337767362595, -0.004984764847904444, -0.08576218038797379, 0.01803741045296192, -0.00355249154381454, -0.06749313324689865, 0.03964603319764137, -0.05010099709033966, -0.006238380912691355, 0.04008040204644203, 0.05143466219305992, -0.0685742124915123, -0.0010847685625776649, 0.10283968597650528, -0.25543105602264404, 0.11850566416978836, 0.1280560940504074, 0.03744848817586899, 0.1383228898048401, -0.07991480827331543, -0.04392920807003975, 0.01837811805307865, -0.14709030091762543, -0.0842304453253746, 0.04916228726506233, -0.018519632518291473, 0.023171260952949524, 0.07955728471279144, 0.06967777013778687, 0.09877849370241165, 0.027450859546661377, -0.08627256006002426, 0.011004392988979816, -0.022252066060900688, -0.11282383650541306, -0.0015770606696605682, 0.01988065429031849, 0.12230221182107925, 0.03916830196976662, 0.0051800268702209, 0.1562042385339737, -0.04036647453904152, -0.023224452510476112, 0.04621778056025505, -0.07819835841655731, -0.22385269403457642, -0.01565653458237648, -0.0967937484383583, 0.004155926406383514, -0.03612687811255455, -0.06431088596582413, -0.18175852298736572, -0.036224037408828735, -0.04791814088821411, -0.158589705824852, -0.07887406647205353, 0.07890325039625168, 0.040375594049692154, 0.029462328180670738, -0.004767043050378561, -0.06942585855722427, 0.02544138766825199, -0.050841182470321655, 0.05820561945438385, 0.053591351956129074, -0.02528121881186962, 0.1439603865146637, 0.03267886862158775, -0.0581820048391819, 0.11077406257390976, 0.006698548328131437, 0.0050455681048333645, -0.04592413082718849, -0.03491683304309845, 0.1443614512681961, 0.048546504229307175, -0.023876262828707695, 0.014418809674680233, 0.068196602165699, -0.13912487030029297, 0.00814015232026577, 0.028808707371354103, -0.16616156697273254, -0.26648929715156555, -0.1984587162733078, 0.035366933792829514, 0.04964164271950722, 0.0748237892985344, 0.09517168998718262, 0.013825233094394207, -0.016429584473371506, 0.11416348069906235, -0.04314360395073891, -0.1225963905453682, -0.03228963539004326, -0.15231572091579437, 0.07301167398691177, -0.025037480518221855, -0.19886623322963715, -0.03633229434490204, 0.20878742635250092, 0.0752497985959053, 0.10958337783813477, 0.07052086293697357, 0.08164416998624802, -0.11722161620855331, -0.029224321246147156, 0.06494379788637161, 0.16184958815574646, 0.09971573948860168, -0.061437398195266724, -0.01344302762299776, 0.06476820260286331, -0.027069220319390297, 0.004871804732829332, 0.13306866586208344, -0.1411668062210083, -0.005527815315872431, -0.09721272438764572, 0.04350194334983826, -0.09625489264726639, 0.007425395306199789, -0.17604178190231323, 0.10577694326639175, 0.041600923985242844, 0.05999944731593132, -0.045961569994688034, 0.04849174618721008, 0.08028072863817215, -0.012273252010345459, 0.13439743220806122, 0.04370827600359917, 0.08757444471120834, -0.11678922921419144, 0.01599142514169216, -0.09093904495239258, -0.09401160478591919, 0.003577630268409848, 0.15394939482212067, -0.14873333275318146, 0.1678611785173416, 0.03025703690946102, -0.08483967930078506, -0.15761883556842804, -0.11081021279096603, -0.015475336462259293, -0.02928987704217434, 0.03000086359679699, 0.016603128984570503, 0.051088884472846985, -0.057977039366960526, -0.11661975830793381, 0.02638387680053711, 0.11588472127914429, 0.001046735793352127, -0.11699003726243973, 0.10256564617156982, 0.004037370439618826, -0.005667084362357855, -0.073740653693676, -0.0067150890827178955, -0.13851980865001678, -0.09701946377754211, 0.07652386277914047, -0.07468616217374802, 0.0690808966755867, -0.00909687951207161, -0.07423391938209534, 0.10607045888900757, -0.014498353935778141, -0.009683582000434399, -0.0856371521949768, 0.02403593808412552, 0.10390370339155197, 0.040031105279922485, -0.040756430476903915, 0.06324925273656845, -0.026118949055671692, -0.06078334525227547, -0.15374676883220673, 0.09854159504175186, -0.050859641283750534, 0.09235658496618271, -0.04684342443943024, 0.05489148572087288, -0.018255198374390602, 0.005966442171484232, -0.06455659121274948, -0.04863487556576729, -0.06810998916625977, -0.11104334145784378, 0.1796097308397293, 0.05426512286067009, 0.17853939533233643, 0.29680073261260986, 0.16064582765102386, -0.05260758474469185, 0.1510622650384903, -0.05411253497004509, 0.230325385928154, 0.17635244131088257, -0.037437453866004944, 0.14750148355960846, 0.11560291051864624, -0.017084669321775436, -0.2257404774427414, -0.007660904433578253, -0.12471570819616318, -0.08345479518175125, -0.03226034715771675, -0.16202212870121002, 0.0683264508843422, 0.16683076322078705, -0.049163609743118286, 0.16796791553497314, -0.11197618395090103, -0.050052981823682785, 0.06559103727340698, -0.12249410897493362, 0.44965243339538574, -0.10004369169473648, -0.060115113854408264, -0.23605632781982422, -0.05103793740272522, 0.2836120128631592, -0.08422642946243286, -0.005478550214320421, 0.03231050446629524, 0.04528869315981865, -0.05583547428250313, -0.0930878296494484, 0.11051023006439209, 0.05169007182121277, 0.17032097280025482, -0.05079304054379463, -0.11605342477560043, 0.07084061950445175, -0.03675684705376625, 0.15427882969379425, -0.13771045207977295, -0.0065294899977743626, -0.13368993997573853, -0.045949727296829224, 0.02316235937178135, 0.02214142680168152, 0.1263449341058731, -0.04254722222685814, -0.0966956838965416, -0.037725526839494705, -0.07721167057752609, -0.03196266293525696, 0.1394670307636261, 0.004162276163697243, 0.022896969690918922, 0.10668551921844482, 0.13959497213363647, -0.23509466648101807, 0.03203125670552254, -0.073786161839962, -0.13625892996788025, 0.0743265375494957, -0.3270712196826935, 0.03841814771294594, 0.07734254002571106, -0.008223723620176315, 0.0336681492626667, 0.03575855866074562, 0.019731320440769196, -0.04484722018241882, 0.12181393057107925, -0.08584199100732803, -0.0034716997761279345, 0.09679802507162094, 0.03721994534134865, 0.05269521102309227, 0.07611105591058731, 0.044973183423280716, 0.0035227362532168627, -0.007750933989882469, -0.012105192057788372, 0.05221237614750862, -0.049532052129507065, 0.08126499503850937, 0.053081899881362915, 0.04852189123630524, -0.1774391382932663, 0.25730764865875244, 0.05025586485862732, -0.21810710430145264, 0.07053371518850327, 0.03524850681424141, -0.10584232956171036, -0.03985326364636421, 0.12216933816671371, 0.25631609559059143, -0.02800639159977436, -0.11325457692146301, 0.015008911490440369, -0.01966213993728161, 0.05407077074050903, 0.17217516899108887, 0.05326824262738228, 0.09525563567876816, 0.010824124328792095, -0.01827765256166458, -0.006138613447546959, -0.10618414729833603, -0.08011268824338913, -0.030200326815247536, -0.06983071565628052, -0.11049643903970718, -0.012331369332969189, 0.07359830290079117, -0.07732944935560226, -0.009837036021053791, -0.05058244988322258, 0.02123427391052246, -0.14128638803958893, -0.013334346003830433, 0.14755567908287048, 0.028482459485530853, -0.03569421544671059, 0.02449340559542179, 0.0066657173447310925, -0.056759536266326904, -0.07342664152383804, 0.08649716526269913, 0.07145360112190247, 0.021448826417326927, -0.06405549496412277, 0.006571892648935318, 0.03190213441848755, 0.12481483072042465, 0.1614770144224167, 0.14099949598312378, 0.005089619662612677, 0.017486674711108208, -0.028650963678956032, -0.11301174759864807, 0.0735890120267868, 0.05796440318226814, 0.041256267577409744, 0.08981538563966751, -0.006971454713493586, 0.09896013885736465, -0.03482775762677193, 0.07013324648141861, -0.09605500847101212, -0.056273747235536575, 0.07784175872802734, -0.07315046340227127, -0.06500058621168137, -0.034300342202186584, -0.12101341038942337, 0.2340840846300125, 0.055246878415346146, 0.053028326481580734, 0.05775836110115051, -0.03110947273671627, -0.01840321160852909, -0.044815272092819214, -0.030728695914149284, -0.11103471368551254, -0.21574608981609344, 0.08983123302459717, 0.02815738506615162, -0.08996158838272095, 0.5400648713111877, -0.026342550292611122, -0.1981121301651001, -0.019784873351454735, 0.10689758509397507, 0.005592927802354097, -0.023635471239686012, 0.31148234009742737, 0.06891868263483047, -0.022617056965827942, 0.017373839393258095, 0.0430166982114315, 0.04440006986260414, 0.23015181720256805, 0.13681930303573608, 0.030830567702651024, 0.15764321386814117, -0.037080537527799606, 0.043810129165649414, -0.08693095296621323, 0.14066743850708008, -0.07020814716815948, 0.04134972766041756, 0.014911878854036331, 0.0324847586452961, -0.1559033840894699, 0.03170939162373543, 0.03000790812075138, -0.03916323557496071, -0.08755753189325333, 0.01632363721728325, -0.004363263491541147, -0.02707247994840145, -0.041876763105392456, -0.09483283013105392, 0.07698532193899155, -0.01878989301621914, -0.04846437647938728, 0.22180688381195068, 0.06477578729391098, 0.009024296887218952, -0.043763116002082825, -0.19599802792072296, 0.08670247346162796, 0.08486700057983398, -0.04069617763161659, -0.1148432120680809, 0.06184029579162598, -0.09682166576385498, -0.005721487104892731, -0.07196827977895737, -0.08716055005788803, 0.04158426821231842, 0.05915730074048042, 0.02240040898323059, -0.073723703622818, -0.055622342973947525, -0.051328402012586594, 0.04628194496035576, -0.0452139638364315, 0.13029040396213531, -0.012350003235042095, 0.010804537683725357, 0.02346702106297016, 0.12029492855072021, -0.02982597053050995, -0.04387356713414192, -0.008982321247458458, 0.020256252959370613, -0.02302504889667034, 0.14890222251415253, -0.05023324489593506, -0.01848434843122959, -0.12925715744495392, 0.010878701694309711, 0.38173529505729675, -0.1267167031764984, 0.028076717630028725, -0.030143916606903076, 0.0372106097638607, 0.0698499083518982, 0.16108375787734985, 0.03333915024995804, 0.13030771911144257, -0.015267814509570599, 0.015445792116224766, 0.06108604744076729, -0.017116745933890343, -0.03285172954201698, 0.1925547569990158, 0.05222150683403015, -0.0416564978659153, -0.05047915503382683, 0.11081787198781967, -0.21609652042388916, 0.10913633555173874, -0.03841126337647438, -0.17245705425739288, -0.10571727901697159, 0.040552616119384766, 0.11418554931879044, 0.028369883075356483, -0.02761693485081196, -0.024098893627524376, -0.011047504842281342, -0.18659758567810059, -0.0288835559040308, -0.3609323799610138, -0.19356165826320648, -0.04518879950046539, 0.045498326420784, -0.02065497450530529, 0.04541023448109627, 0.19550101459026337, 0.015680864453315735, -0.04900037869811058, -0.05594143271446228, 0.09250751882791519, -0.033522725105285645, 0.052685242146253586, -0.01392690185457468, -0.06052914634346962, -0.046047743409872055, -0.06979676336050034, 0.049369651824235916, -0.07350993901491165, -0.09407936781644821, 0.11931737512350082, 0.011452321894466877, -0.04254739359021187, -0.010858237743377686, -0.05040382221341133, 0.0966343954205513, 0.015020434744656086, -0.025665046647191048, 0.0019570353906601667, 0.007804412394762039, 0.13814522325992584, 0.04796059802174568, -0.10475213080644608, -0.11603002995252609, -0.04007536172866821, -0.09320962429046631, 0.02110658586025238, 0.023156672716140747, -0.04138036444783211, 0.07605068385601044, -0.16820783913135529, 0.005587063729763031, -0.04783705249428749, -0.0020005449187010527, 0.1900373250246048, 0.0581752173602581, -0.0441671721637249, 0.04546336457133293, 0.10193830728530884, -0.0049663120880723, -0.06816116720438004, -0.05565595254302025 ]
110b5381fa39976c9c550b2f71a1640403aab113
# Dataset Card for "massive_iot" [More Information needed](https://github.com/huggingface/datasets/blob/main/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
fathyshalab/massive_iot
[ "region:us" ]
2023-02-08T11:14:02+00:00
{"dataset_info": {"features": [{"name": "id", "dtype": "string"}, {"name": "label", "dtype": "int64"}, {"name": "text", "dtype": "string"}], "splits": [{"name": "train", "num_bytes": 37756, "num_examples": 769}, {"name": "validation", "num_bytes": 5688, "num_examples": 118}, {"name": "test", "num_bytes": 10603, "num_examples": 220}], "download_size": 29170, "dataset_size": 54047}}
2023-02-08T12:23:06+00:00
[]
[]
TAGS #region-us
# Dataset Card for "massive_iot" More Information needed
[ "# Dataset Card for \"massive_iot\"\n\nMore Information needed" ]
[ "TAGS\n#region-us \n", "# Dataset Card for \"massive_iot\"\n\nMore Information needed" ]
[ 6, 15 ]
[ "passage: TAGS\n#region-us \n# Dataset Card for \"massive_iot\"\n\nMore Information needed" ]
[ -0.09784559160470963, 0.015875589102506638, -0.003937480505555868, 0.011416821740567684, 0.06890954822301865, 0.12656638026237488, 0.055805694311857224, 0.08946184068918228, 0.18749980628490448, -0.009728457778692245, 0.13413721323013306, 0.013099219650030136, 0.029075544327497482, 0.2932247817516327, -0.06876722723245621, -0.0017463922267779708, 0.0483890138566494, 0.04819488525390625, -0.2447184920310974, 0.009623303078114986, 0.07459814101457596, -0.08999507874250412, 0.07916473597288132, -0.160211443901062, -0.17742383480072021, 0.07303964346647263, -0.017785685136914253, -0.04111407324671745, 0.03862791135907173, -0.053644999861717224, 0.03534044325351715, -0.018330615013837814, -0.007402490358799696, -0.06553652882575989, 0.01696094125509262, 0.05011878162622452, -0.010149795562028885, 0.06524082273244858, 0.03776407614350319, -0.03912260755896568, -0.19108492136001587, -0.08966948837041855, -0.0171351358294487, -0.009156256914138794, -0.01632755808532238, -0.272955983877182, -0.0669727697968483, 0.010181362740695477, -0.004726652521640062, -0.04576418548822403, 0.08782695978879929, 0.17010557651519775, -0.09154586493968964, 0.019327856600284576, 0.017253393307328224, 0.05286801978945732, 0.05845532938838005, 0.188080295920372, -0.08215124160051346, 0.2357591688632965, 0.037832170724868774, 0.03919783607125282, 0.12944021821022034, -0.04591228440403938, -0.012667706236243248, -0.0002909422037191689, -0.12461280077695847, 0.07520684599876404, -0.020286614075303078, -0.05553686246275902, 0.3450240194797516, 0.002791883423924446, 0.03202468156814575, 0.011191342957317829, -0.06035774201154709, -0.0805993303656578, -0.0023136211093515158, 0.008575428277254105, 0.0720810666680336, 0.03851914778351784, 0.05970446765422821, -0.006663264241069555, -0.1044110655784607, -0.09670060873031616, -0.1895781308412552, 0.05441324785351753, -0.04532258212566376, 0.17647427320480347, -0.17942321300506592, -0.058255359530448914, -0.22871263325214386, -0.0124320387840271, 0.03196326643228531, -0.08838512748479843, -0.05003857985138893, -0.030071359127759933, -0.0015672158915549517, 0.0009970295941457152, 0.1727394163608551, 0.000015366673324024305, 0.07313459366559982, 0.002352486364543438, -0.09873342514038086, 0.0973382219672203, 0.2080797702074051, -0.09878864139318466, -0.12063907831907272, -0.07836167514324188, -0.003402076894417405, -0.1102069690823555, -0.022304631769657135, -0.08246500045061111, -0.07486594468355179, -0.024782679975032806, -0.04510236904025078, 0.07174492627382278, 0.004881239961832762, -0.10933934897184372, -0.03771573677659035, -0.034638844430446625, 0.0891236886382103, -0.04674840345978737, 0.016758665442466736, 0.016955623403191566, -0.08896578103303909, 0.11772125214338303, -0.1513310819864273, -0.013762269169092178, 0.08014222979545593, 0.058643244206905365, -0.07795941084623337, -0.008222621865570545, -0.04596015810966492, -0.005999194458127022, 0.13257648050785065, -0.15375913679599762, 0.04999257251620293, -0.05854858458042145, -0.19485734403133392, 0.061955347657203674, 0.04441244900226593, -0.05857646092772484, 0.13760441541671753, 0.09073833376169205, 0.04190950095653534, -0.03309323638677597, -0.06644052267074585, 0.18828384578227997, -0.07749444991350174, 0.05591679736971855, -0.030718598514795303, 0.07413557916879654, -0.2374538779258728, 0.03515290096402168, -0.11557412892580032, -0.03359537944197655, 0.007391082588583231, 0.015814969316124916, -0.11845935136079788, 0.07605443894863129, -0.12261543422937393, -0.009718852117657661, -0.12542091310024261, 0.009630248881876469, -0.030795492231845856, 0.08028636127710342, -0.25917938351631165, -0.01735091209411621, 0.08329683542251587, -0.082343190908432, -0.19231492280960083, 0.11595520377159119, -0.012228609062731266, 0.033254221081733704, 0.010539130307734013, 0.2712065875530243, -0.052121855318546295, 0.04655923694372177, 0.003241295926272869, 0.17041057348251343, -0.12844888865947723, -0.32063937187194824, 0.1347583830356598, -0.013246153481304646, -0.07208326458930969, -0.0005072253989055753, 0.13557101786136627, -0.014330330304801464, -0.056909896433353424, -0.06927463412284851, -0.03306248039007187, -0.15266886353492737, -0.004730271175503731, 0.004439418204128742, 0.029764866456389427, -0.018874557688832283, 0.16456779837608337, 0.03317049890756607, 0.07940405607223511, 0.055897969752550125, -0.010371026583015919, -0.008121319115161896, 0.13388945162296295, -0.22483819723129272, 0.010441968217492104, -0.17304927110671997, -0.048007506877183914, 0.02875952422618866, 0.00425520958378911, 0.04007996618747711, 0.06672486662864685, 0.07233233749866486, -0.08672691136598587, -0.006718833465129137, 0.12711554765701294, 0.20571231842041016, 0.03125341236591339, -0.0017857265193015337, -0.031072329729795456, 0.01570386067032814, -0.07769183814525604, -0.036833468824625015, -0.0548161119222641, -0.045451194047927856, 0.13014473021030426, -0.03446744754910469, 0.03510370850563049, -0.01350761391222477, 0.018258649855852127, -0.04013461992144585, -0.046548549085855484, -0.05779928341507912, -0.039764437824487686, -0.07362637668848038, -0.10707910358905792, 0.003594506997615099, 0.020419621840119362, 0.44148245453834534, 0.1475386768579483, 0.03217555582523346, 0.06627859175205231, -0.056003496050834656, 0.051074136048555374, -0.026597490534186363, -0.05454394221305847, 0.038691725581884384, -0.18212807178497314, -0.046355053782463074, 0.011819235980510712, -0.052577681839466095, 0.02590898983180523, 0.07192856073379517, 0.007833405397832394, -0.10000655800104141, 0.0158116202801466, 0.17497864365577698, -0.2554263174533844, 0.17319397628307343, 0.18804971873760223, 0.044961828738451004, 0.10575835406780243, -0.05477988347411156, -0.08741376549005508, 0.01816871576011181, -0.0674566999077797, -0.060131482779979706, 0.1362789273262024, -0.1340261846780777, 0.05828800052404404, 0.111246258020401, 0.030754465609788895, 0.07829780876636505, -0.01831081137061119, -0.05858972668647766, -0.006940568797290325, -0.0026774639263749123, -0.18206386268138885, 0.03181341290473938, 0.020167561247944832, 0.09731508046388626, 0.04485291987657547, 0.029214048758149147, 0.13517577946186066, -0.009559947066009045, 0.005325847305357456, 0.09196825325489044, -0.11744604259729385, -0.16048261523246765, -0.010575656779110432, -0.08811729401350021, 0.014312700368463993, -0.01610216312110424, -0.072547048330307, -0.13926631212234497, -0.03266734257340431, 0.003272522706538439, -0.06741955876350403, -0.10046430677175522, 0.06067562475800514, 0.04351438209414482, -0.00662331935018301, -0.046627532690763474, -0.07898418605327606, 0.02108822576701641, -0.017623700201511383, 0.06101119518280029, 0.08379063010215759, -0.05943376570940018, 0.0955369845032692, 0.07291925698518753, -0.0488092340528965, 0.09333434700965881, -0.010770745575428009, -0.021360602229833603, -0.07858014851808548, -0.0067379712127149105, 0.17119571566581726, 0.05894948169589043, -0.036218926310539246, 0.05046619474887848, 0.07455292344093323, -0.11718027293682098, -0.05625901743769646, -0.05707411840558052, -0.1932428479194641, -0.25971758365631104, -0.17495174705982208, -0.06443548947572708, 0.11317100375890732, 0.015119007788598537, 0.09479676187038422, -0.026190590113401413, 0.06834451854228973, 0.1073622927069664, 0.04202263429760933, -0.14391498267650604, -0.07480686157941818, -0.1285308450460434, 0.011347136460244656, -0.018946142867207527, -0.1507573127746582, 0.0169813372194767, 0.2265879064798355, 0.1375044882297516, 0.18377768993377686, 0.0314648263156414, 0.09000840783119202, -0.05158928781747818, 0.12376367300748825, 0.029925573617219925, 0.17253321409225464, 0.05250752344727516, -0.02330963872373104, 0.007453975733369589, 0.014342336915433407, -0.02274828962981701, 0.01812998577952385, 0.17966073751449585, -0.13749510049819946, 0.08712060749530792, -0.06915374100208282, 0.10174579918384552, -0.09982698410749435, 0.009019454941153526, -0.22350697219371796, 0.07851020991802216, 0.06316050887107849, 0.15522710978984833, -0.0921054258942604, 0.08084841072559357, 0.12046441435813904, 0.01525917649269104, 0.07318636775016785, 0.0071660359390079975, 0.028893206268548965, -0.044578589498996735, -0.0015882989391684532, 0.026143526658415794, -0.01818547397851944, 0.007927673868834972, 0.11168737709522247, -0.14799129962921143, 0.1609119474887848, 0.026233920827507973, -0.08061476051807404, -0.175990492105484, -0.08108575642108917, -0.00016869664250407368, 0.038029398769140244, 0.10313116014003754, 0.029925741255283356, 0.04656757414340973, -0.13422849774360657, -0.11523742973804474, -0.010096097365021706, 0.08306411653757095, 0.05149827152490616, -0.16577346622943878, 0.03293122351169586, 0.009170174598693848, -0.012107941322028637, -0.07115034759044647, 0.03089938685297966, -0.0788353756070137, -0.014075910672545433, 0.09672197699546814, -0.12311653047800064, -0.003524570958688855, -0.026082033291459084, -0.032233621925115585, 0.15170568227767944, 0.0333075076341629, -0.01339761633425951, -0.12335484474897385, 0.07187577337026596, 0.20079921185970306, 0.02514418214559555, -0.03803391382098198, 0.04169725999236107, 0.05081814154982567, -0.012051098048686981, -0.16833557188510895, 0.1309145987033844, -0.0983799397945404, 0.10395901650190353, -0.056676436215639114, 0.0378781333565712, -0.05162109434604645, 0.04216756671667099, -0.05418141186237335, -0.02174774557352066, -0.024700626730918884, -0.0812079906463623, 0.14832746982574463, -0.00413564033806324, 0.036867450922727585, 0.26847338676452637, 0.1506694257259369, -0.11497333645820618, 0.16210836172103882, -0.07586479187011719, 0.14077718555927277, 0.11793777346611023, -0.03301926702260971, 0.13828952610492706, 0.180101677775383, -0.008383509702980518, -0.2925156056880951, 0.12827247381210327, -0.18346604704856873, -0.057048529386520386, -0.02014366164803505, -0.15743917226791382, 0.12855975329875946, 0.15266819298267365, -0.047218624502420425, 0.27339282631874084, -0.18429969251155853, -0.02759673073887825, 0.11348076164722443, -0.03138061612844467, 0.4145793914794922, -0.12046891450881958, -0.04294286295771599, -0.14297449588775635, -0.013185346499085426, 0.1443450152873993, -0.13453832268714905, 0.02068973332643509, -0.0004672449722420424, 0.050525303930044174, -0.023347551003098488, -0.09080363065004349, 0.13664089143276215, 0.008189817890524864, 0.13507036864757538, -0.02830389514565468, -0.0684737041592598, 0.16873736679553986, -0.024987349286675453, 0.1273147463798523, 0.0011497103841975331, -0.0020624040625989437, 0.011169441044330597, -0.02281365543603897, 0.016337301582098007, 0.01468562614172697, 0.07781802862882614, -0.0923735648393631, -0.08880799263715744, 0.039873093366622925, -0.11430080235004425, -0.06733047217130661, 0.1279364973306656, 0.08204799890518188, -0.0692530944943428, 0.02262851968407631, 0.09878944605588913, -0.17578960955142975, 0.02219952829182148, -0.05332792177796364, -0.10163526237010956, 0.0983540415763855, -0.2750168442726135, 0.06219635158777237, 0.10304728150367737, 0.014588420279324055, -0.0028237593360245228, 0.08006415516138077, -0.03974569961428642, 0.024787994101643562, 0.14482396841049194, -0.060427069664001465, -0.1018485277891159, 0.09927933663129807, -0.0015682530356571078, 0.03376104682683945, 0.10457472503185272, 0.010813350789248943, 0.016474008560180664, -0.0005115491803735495, -0.024628696963191032, 0.09422674775123596, -0.07629616558551788, 0.11867448687553406, 0.055251482874155045, 0.034168340265750885, -0.20122355222702026, 0.2397347390651703, 0.00444651348516345, -0.1344248652458191, 0.03045065887272358, -0.01733793504536152, -0.05951964482665062, -0.0778123140335083, 0.11139528453350067, 0.09411366283893585, 0.010680229403078556, -0.12546050548553467, 0.06357081979513168, -0.06333912909030914, 0.020235782489180565, 0.10026983171701431, 0.0661202073097229, 0.056906722486019135, -0.007350347004830837, -0.0552380196750164, -0.06318839639425278, -0.03916532173752785, -0.06399558484554291, 0.0374414324760437, -0.09671759605407715, -0.16698327660560608, -0.07006041705608368, 0.11442415416240692, -0.07920561730861664, -0.030345965176820755, -0.02356547862291336, 0.05759738013148308, -0.1887344866991043, -0.032071664929389954, 0.07050206512212753, 0.011137410067021847, -0.016123706474900246, 0.011949124746024609, -0.02904537506401539, -0.01756920851767063, -0.08951055258512497, 0.0973641574382782, 0.0378633588552475, 0.016307704150676727, -0.09108881652355194, -0.012998943217098713, 0.037073392421007156, 0.07532206177711487, 0.15217295289039612, 0.1361585259437561, -0.024239452555775642, 0.02784537523984909, -0.06697110831737518, -0.13575756549835205, 0.08420147001743317, 0.09629188477993011, 0.11697444319725037, 0.06004607304930687, 0.02481682598590851, 0.11657144874334335, -0.03773285821080208, 0.0397099107503891, -0.031587377190589905, -0.024830859154462814, 0.055996693670749664, -0.196568101644516, -0.028514744713902473, 0.001417950727045536, -0.05450253561139107, 0.2104707509279251, 0.054461345076560974, -0.042432140558958054, 0.09272561967372894, 0.006185844540596008, -0.021879922598600388, -0.035229578614234924, -0.024440571665763855, -0.14584234356880188, -0.07834985852241516, 0.11521631479263306, 0.0731453150510788, -0.08355078101158142, 0.521760106086731, -0.008001307025551796, -0.2130800187587738, -0.03705575317144394, 0.058160725980997086, -0.005108565092086792, -0.0006980717298574746, 0.26548030972480774, 0.07977578788995743, -0.045986175537109375, -0.059947654604911804, 0.10185282677412033, 0.08335202932357788, 0.22055859863758087, 0.09102538228034973, 0.1217002272605896, 0.07891875505447388, -0.028238290920853615, 0.03578471019864082, -0.11232530325651169, 0.036325130611658096, -0.010910123586654663, -0.05283414199948311, 0.037989541888237, 0.06405339390039444, -0.03837067261338234, 0.003171987598761916, -0.015933413058519363, -0.046552181243896484, -0.11585071682929993, -0.028525419533252716, -0.05431403964757919, -0.07894957810640335, -0.04364548251032829, -0.09821117669343948, 0.030440306290984154, -0.03881281241774559, -0.036453839391469955, 0.2545631527900696, 0.12482815980911255, 0.005463544279336929, 0.08448992669582367, -0.1295272260904312, 0.08785930275917053, 0.05150146037340164, -0.020165903493762016, -0.12215311080217361, 0.08478465676307678, -0.13043846189975739, 0.0017395475879311562, -0.08412395417690277, 0.0050117867067456245, 0.02980394847691059, 0.015438580885529518, 0.054629601538181305, -0.10597006976604462, -0.06176687404513359, -0.09677723795175552, 0.01436617225408554, -0.1057422086596489, 0.05491698160767555, -0.008548988029360771, 0.012623426504433155, 0.03885611519217491, 0.06299404799938202, 0.00556673388928175, 0.004330270458012819, -0.006344103254377842, -0.06420668959617615, -0.02546941302716732, 0.0625409483909607, 0.003119400702416897, -0.07020208239555359, -0.10218682885169983, 0.09188291430473328, 0.31710734963417053, -0.08410725742578506, -0.014998652040958405, 0.08188967406749725, 0.03562585264444351, -0.05604728311300278, 0.19798213243484497, 0.039231400936841965, 0.09709272533655167, -0.027222618460655212, 0.012193727307021618, 0.040938302874565125, -0.043223462998867035, -0.003366486169397831, 0.12882953882217407, 0.037493910640478134, -0.024262676015496254, -0.11719421297311783, 0.0947091281414032, -0.12213911861181259, -0.007939714938402176, 0.06252894550561905, -0.12407350540161133, -0.11061873286962509, -0.014184733852744102, 0.09091322869062424, 0.013216238468885422, -0.03067055717110634, -0.0696340948343277, 0.017685405910015106, -0.19904297590255737, -0.007161383051425219, -0.31061679124832153, -0.1376257687807083, 0.010558650828897953, 0.04570408910512924, 0.09423726797103882, 0.010467495769262314, 0.12768951058387756, 0.018783099949359894, -0.021666157990694046, -0.11769050359725952, 0.036790501326322556, -0.031055478379130363, 0.07876140624284744, -0.06370628625154495, 0.0011560351122170687, -0.09494338929653168, -0.0459815114736557, 0.07658876478672028, 0.006392789538949728, -0.09899265319108963, 0.003412644611671567, -0.025318659842014313, -0.06784632802009583, -0.05969197303056717, -0.054771050810813904, 0.1030750647187233, 0.0030739796347916126, -0.027208833023905754, -0.008735543116927147, -0.05407913029193878, 0.12950778007507324, 0.03608809411525726, -0.05332531780004501, -0.10284069180488586, -0.02848370000720024, -0.06264615803956985, 0.05195312201976776, 0.02890826016664505, -0.0637284368276596, 0.06772151589393616, -0.13090616464614868, 0.02098899334669113, -0.02529740333557129, 0.021378159523010254, 0.17368845641613007, 0.05878010764718056, -0.03607451915740967, -0.013636437244713306, 0.02457915060222149, -0.020776059478521347, -0.038754917681217194, -0.07794638723134995 ]
58078358688ab8818d43d3e8962ce3f8f3daef44
# Dataset Card for "massive_general" [More Information needed](https://github.com/huggingface/datasets/blob/main/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
fathyshalab/massive_general
[ "region:us" ]
2023-02-08T11:14:20+00:00
{"dataset_info": {"features": [{"name": "id", "dtype": "string"}, {"name": "label", "dtype": "int64"}, {"name": "text", "dtype": "string"}], "splits": [{"name": "train", "num_bytes": 34565, "num_examples": 652}, {"name": "validation", "num_bytes": 6418, "num_examples": 122}, {"name": "test", "num_bytes": 9865, "num_examples": 189}], "download_size": 32932, "dataset_size": 50848}}
2023-02-08T12:23:27+00:00
[]
[]
TAGS #region-us
# Dataset Card for "massive_general" More Information needed
[ "# Dataset Card for \"massive_general\"\n\nMore Information needed" ]
[ "TAGS\n#region-us \n", "# Dataset Card for \"massive_general\"\n\nMore Information needed" ]
[ 6, 14 ]
[ "passage: TAGS\n#region-us \n# Dataset Card for \"massive_general\"\n\nMore Information needed" ]
[ -0.08944397419691086, 0.10905518382787704, -0.0027768921572715044, -0.0404861755669117, 0.09416705369949341, 0.1516943722963333, -0.039975523948669434, 0.09731992334127426, 0.10643642395734787, -0.032112572342157364, 0.18124544620513916, -0.06328988820314407, 0.010552513413131237, 0.19211627542972565, -0.01839824765920639, -0.08800208568572998, 0.028955377638339996, 0.04220494255423546, -0.17699672281742096, -0.013599065132439137, 0.027891328558325768, -0.07668186724185944, 0.04088025167584419, -0.15877336263656616, -0.1684030145406723, 0.09106653183698654, -0.0367179699242115, -0.06587677448987961, 0.07170120626688004, -0.04433019459247589, 0.05183246731758118, -0.04229360818862915, 0.011575196869671345, -0.11946810036897659, 0.0015599429607391357, -0.009039354510605335, -0.04236146807670593, 0.07809371501207352, 0.07822335511445999, -0.05314033105969429, -0.13175247609615326, -0.09604326635599136, -0.016568945720791817, 0.008647603914141655, -0.07096876949071884, -0.38127759099006653, -0.04356507956981659, -0.06371570378541946, -0.05689443647861481, -0.08271551877260208, 0.07104338705539703, 0.010987862013280392, -0.1467224657535553, -0.008817591704428196, 0.015087376348674297, -0.06912250816822052, 0.05080970749258995, 0.24679632484912872, -0.10428925603628159, 0.16322526335716248, 0.01359026599675417, 0.10670632869005203, 0.12836942076683044, -0.045267101377248764, 0.01680939644575119, -0.0005162041634321213, -0.11695168167352676, 0.12131946533918381, -0.018653711304068565, -0.06416303664445877, 0.33329978585243225, -0.014349785633385181, 0.06287718564271927, -0.025734208524227142, -0.019889436662197113, -0.0041696480475366116, -0.0007669075857847929, 0.049845460802316666, 0.043225374072790146, 0.03006669133901596, 0.017044100910425186, -0.05175412818789482, -0.07375241816043854, -0.15538878738880157, -0.23063130676746368, 0.04402993619441986, -0.06659739464521408, 0.14352388679981232, -0.1191895604133606, -0.003746492089703679, -0.2828797698020935, -0.006011831108480692, 0.006567415315657854, -0.06861229985952377, -0.08297545462846756, -0.02631581760942936, -0.024815015494823456, 0.08193966001272202, 0.1744518280029297, -0.006329608615487814, 0.06993939727544785, 0.0357547402381897, -0.08989045768976212, 0.07699056714773178, 0.2077343463897705, -0.025477558374404907, -0.13927097618579865, -0.0477755069732666, -0.018247539177536964, -0.1658449023962021, -0.02724461257457733, -0.07533447444438934, -0.08055157214403152, -0.01220348197966814, -0.0683620274066925, 0.08294858783483505, -0.08371549099683762, -0.12401735782623291, -0.050432708114385605, 0.004188258200883865, 0.11454465240240097, -0.06776470690965652, 0.013974924571812153, 0.003975158091634512, -0.055561840534210205, 0.04433594271540642, -0.15461832284927368, 0.0006520450115203857, 0.12046743184328079, 0.07916127890348434, -0.09829092025756836, -0.06413530558347702, -0.04972938820719719, 0.038714244961738586, 0.07460770010948181, -0.12044274806976318, 0.06736716628074646, -0.04337155446410179, -0.25570204854011536, 0.11426105350255966, 0.052104923874139786, -0.09698907285928726, 0.10801875591278076, 0.08721879869699478, 0.11087150126695633, -0.044278115034103394, -0.09175368398427963, 0.2561853229999542, -0.10682860761880875, 0.032851241528987885, 0.026523783802986145, 0.04383476451039314, -0.2305717021226883, 0.026217414066195488, -0.10025221109390259, 0.011535624973475933, 0.009414497762918472, 0.05514904856681824, -0.12356039881706238, 0.06592201441526413, -0.0998997762799263, -0.03273918852210045, -0.09989708662033081, 0.011182309128344059, -0.05237062647938728, 0.03242144361138344, -0.20082592964172363, -0.046155840158462524, 0.17096088826656342, -0.08461260795593262, -0.13842563331127167, 0.059300173074007034, -0.04166905954480171, 0.016929766163229942, 0.06536868214607239, 0.3060031831264496, -0.07013070583343506, 0.0874488577246666, 0.07849899679422379, 0.16682922840118408, -0.10982447862625122, -0.245072603225708, 0.1444144994020462, -0.07096433639526367, -0.19116754829883575, 0.04530136659741402, 0.1362399458885193, 0.007323714438825846, -0.05897824838757515, -0.05624435469508171, -0.0183021891862154, -0.15807028114795685, 0.019367972388863564, 0.012039040215313435, 0.06870182603597641, -0.02450481615960598, 0.14777342975139618, 0.06082804128527641, 0.07066452503204346, 0.029561439529061317, -0.05702937766909599, 0.023597585037350655, 0.08854696154594421, -0.19199742376804352, 0.0022125232499092817, -0.15476585924625397, -0.08252882957458496, 0.02144760452210903, 0.012396223843097687, 0.02534239925444126, 0.07000266760587692, 0.09716968983411789, -0.03337893262505531, -0.05590273067355156, 0.12898029386997223, 0.16995058953762054, 0.04392541944980621, 0.03756186366081238, 0.004553274717181921, 0.012080269865691662, -0.0751776322722435, -0.09850165992975235, -0.04796087369322777, -0.062475260347127914, 0.15771625936031342, -0.03807594254612923, 0.02410135231912136, -0.019150303676724434, 0.060645222663879395, 0.0010777065763249993, 0.006095375865697861, -0.05434177443385124, -0.020000852644443512, -0.06085677817463875, -0.12610746920108795, -0.018525926396250725, 0.04939080774784088, 0.45103320479393005, 0.08224416524171829, 0.03237784281373024, 0.04601876810193062, -0.09524234384298325, 0.039689067751169205, -0.012776877731084824, -0.0760478675365448, -0.013466876931488514, -0.025893257930874825, -0.038607824593782425, 0.026145918294787407, -0.054962288588285446, 0.02980037033557892, 0.05601270869374275, 0.00007012439891695976, -0.052208323031663895, 0.012722191400825977, 0.13287824392318726, -0.27927708625793457, 0.1673153042793274, 0.1378788948059082, 0.02208261936903, 0.18718059360980988, -0.03412147983908653, -0.10934862494468689, 0.0005018487572669983, -0.1353980451822281, -0.06904690712690353, 0.19876718521118164, -0.12022978067398071, 0.0407133586704731, 0.10904709249734879, 0.0323471762239933, 0.13519415259361267, -0.04681681469082832, -0.0888059064745903, 0.00577351450920105, -0.008585195988416672, -0.12702327966690063, -0.0019824914634227753, -0.02409002184867859, 0.09970569610595703, 0.06392830610275269, 0.03250040486454964, 0.1362823247909546, -0.01428894605487585, 0.029668070375919342, 0.09716635197401047, -0.10285911709070206, -0.17026285827159882, 0.026485323905944824, -0.05921389162540436, 0.006387021392583847, 0.014440502040088177, -0.05774917080998421, -0.18120913207530975, -0.05169824883341789, 0.033247604966163635, -0.10315101593732834, -0.16005627810955048, 0.02337568812072277, -0.007029516156762838, 0.009124179370701313, -0.05672834813594818, -0.10434991866350174, 0.017056114971637726, -0.04078124463558197, -0.015917984768748283, 0.08238591998815536, -0.0931076630949974, 0.13243414461612701, 0.11519160866737366, 0.014784247614443302, 0.10227032750844955, -0.0459761805832386, -0.0658297911286354, -0.06646830588579178, -0.09491690993309021, 0.08192262798547745, 0.05559900403022766, -0.026781631633639336, 0.022463327273726463, 0.11551503092050552, -0.1627534180879593, -0.05884217843413353, -0.027696678414940834, -0.19347833096981049, -0.20811493694782257, -0.19172154366970062, -0.06145896390080452, 0.10027596354484558, 0.07944267243146896, 0.06576178222894669, -0.046876728534698486, 0.06129516661167145, 0.13028335571289062, -0.03344471752643585, -0.15010476112365723, -0.07411538809537888, -0.062499284744262695, -0.015302988700568676, -0.0043199029751122, -0.13004885613918304, -0.011386319994926453, 0.2062007635831833, 0.1735522598028183, 0.2289322167634964, 0.07080527395009995, 0.17733006179332733, -0.07674679905176163, 0.10774173587560654, 0.048365477472543716, 0.14494472742080688, 0.05240214988589287, -0.01915634237229824, -0.007314994931221008, 0.024382635951042175, -0.04410690441727638, -0.008209527470171452, 0.16364343464374542, -0.17173059284687042, 0.05615411698818207, -0.21246576309204102, 0.0834222137928009, -0.12628744542598724, -0.014381791464984417, -0.1932126134634018, 0.07988124340772629, 0.05877718701958656, 0.17464177310466766, -0.10199763625860214, 0.08915171772241592, 0.10382022708654404, -0.05450943112373352, 0.09989869594573975, 0.022951433435082436, 0.03457968682050705, -0.05662715435028076, 0.01071127224713564, -0.06180894747376442, -0.07324463874101639, -0.006435254123061895, 0.17206452786922455, -0.13250529766082764, 0.22848327457904816, 0.029317503795027733, -0.09119341522455215, -0.1874997466802597, -0.07382062822580338, -0.0015955716371536255, -0.030006922781467438, 0.12397288531064987, -0.0020595367532223463, -0.07183235883712769, -0.10716275125741959, -0.06959245353937149, 0.030130773782730103, 0.053622543811798096, -0.0553000271320343, -0.1723756641149521, 0.06291106343269348, 0.00943793822079897, -0.009623645804822445, -0.15375249087810516, -0.0032878518104553223, -0.11436174064874649, -0.020077910274267197, 0.03336772695183754, -0.10880700498819351, 0.0038110900204628706, -0.01747087948024273, -0.07387292385101318, 0.2011362463235855, 0.07980821281671524, -0.04681500792503357, -0.10002701729536057, 0.025118263438344002, 0.22389577329158783, 0.034941039979457855, -0.0044157919473946095, 0.029442546889185905, 0.0532010979950428, -0.00936062354594469, -0.19952253997325897, 0.13846136629581451, -0.0716494619846344, 0.083760105073452, -0.04603630676865578, 0.07425268739461899, -0.03534698486328125, 0.05798535421490669, -0.041811417788267136, 0.029624463990330696, -0.02043905295431614, -0.11916164308786392, 0.20816762745380402, -0.06678275763988495, 0.10998901724815369, 0.26196232438087463, 0.12630997598171234, -0.0062774233520030975, 0.19970662891864777, -0.05254243314266205, 0.21792249381542206, 0.03794114291667938, -0.04273349419236183, 0.1646341234445572, 0.1592535674571991, -0.023444252088665962, -0.2550762891769409, 0.0706600546836853, -0.13728302717208862, -0.03980397805571556, 0.027449483051896095, -0.29198864102363586, 0.14324042201042175, 0.24255485832691193, -0.07364040613174438, 0.2442438006401062, -0.20077575743198395, -0.017763514071702957, 0.1511831134557724, -0.03828209266066551, 0.4463561773300171, -0.14582830667495728, -0.059062838554382324, -0.13185568153858185, 0.05617943033576012, 0.20617462694644928, -0.140848770737648, 0.04111267253756523, -0.0023405728861689568, 0.06829627603292465, 0.0074506779201328754, -0.0874878540635109, 0.2033601999282837, -0.023335019126534462, 0.12628217041492462, -0.04245755076408386, -0.032550547271966934, 0.2061600238084793, -0.010184467770159245, 0.05764269456267357, -0.039305027574300766, -0.016577159985899925, -0.0521516390144825, -0.04134846106171608, 0.047384411096572876, 0.02061266079545021, 0.11311421543359756, -0.11102533340454102, -0.06525138765573502, 0.04418588802218437, -0.11491841077804565, -0.04329364374279976, 0.17204450070858002, 0.006565594580024481, 0.0013766040792688727, -0.02123933471739292, 0.09127113968133926, -0.18769441545009613, -0.03692624717950821, -0.04453618451952934, -0.09559141844511032, 0.11973967403173447, -0.2589508295059204, 0.07912144809961319, 0.13670390844345093, 0.03329716995358467, 0.0063363537192344666, 0.07980083674192429, 0.005634058266878128, 0.0541459359228611, 0.1414715051651001, -0.06588994711637497, -0.12934552133083344, 0.07530394196510315, 0.004694522824138403, 0.044157590717077255, 0.09918699413537979, -0.019153950735926628, 0.09756406396627426, -0.018540963530540466, -0.01795283891260624, 0.05989282950758934, -0.07527764141559601, 0.10937974601984024, 0.02953246235847473, 0.009460784494876862, -0.20149867236614227, 0.23289604485034943, 0.06344082206487656, -0.08218228816986084, 0.005448445677757263, -0.05488933250308037, -0.036460477858781815, -0.04857221618294716, 0.009646841324865818, 0.18056529760360718, -0.04026446118950844, -0.11126009374856949, 0.06372875720262527, -0.08040348440408707, -0.007396554108709097, 0.0741138905286789, 0.09120921045541763, 0.07925774157047272, -0.019392017275094986, -0.02867892198264599, -0.008041695691645145, -0.07099766284227371, -0.08928630501031876, 0.026037953794002533, -0.06784674525260925, -0.149380162358284, -0.023063743487000465, 0.10839613527059555, -0.09091994911432266, -0.04425154626369476, -0.05528794229030609, 0.06621480733156204, -0.26925113797187805, -0.022495143115520477, 0.026792531833052635, 0.02457321248948574, -0.007184208836406469, 0.0540216825902462, -0.008504224009811878, -0.03580278903245926, -0.08813363313674927, 0.10698479413986206, 0.05162294581532478, 0.04104197770357132, -0.06070129945874214, -0.026860719546675682, 0.05303013324737549, 0.07462815195322037, 0.15320195257663727, 0.12409303337335587, 0.03741447255015373, 0.05887426808476448, -0.07138039916753769, -0.12680698931217194, 0.08102667331695557, 0.06106752157211304, 0.05352379009127617, 0.017959492281079292, 0.004288135562092066, 0.11442434042692184, -0.06886761635541916, 0.07498517632484436, -0.06654274463653564, -0.09108190983533859, 0.06249791011214256, -0.11375891417264938, -0.05994676053524017, 0.04234706237912178, -0.10878562927246094, 0.18499703705310822, 0.07805519551038742, -0.1099432110786438, 0.07239483296871185, -0.008757181465625763, -0.044898808002471924, -0.04526211693882942, -0.047662943601608276, -0.12494858354330063, -0.14295770227909088, 0.13233304023742676, 0.059243474155664444, -0.06227074936032295, 0.6666872501373291, -0.09966640919446945, -0.16575627028942108, -0.06262478977441788, 0.1198643147945404, 0.12271245568990707, 0.015608131885528564, 0.3638405501842499, 0.08215462416410446, -0.06097523495554924, -0.013440676964819431, 0.11884214729070663, 0.02391400747001171, 0.16923432052135468, 0.08974313735961914, 0.009670712053775787, 0.05491986870765686, -0.0857359990477562, -0.019979063421487808, -0.1644834578037262, 0.10297269374132156, 0.10347100347280502, 0.03417324647307396, -0.012416132725775242, 0.06720412522554398, -0.10970199853181839, 0.06060349941253662, -0.025605246424674988, 0.017913518473505974, -0.0648927316069603, -0.02265247516334057, -0.029476523399353027, -0.11547326296567917, -0.04277681186795235, -0.09257779270410538, 0.041748493909835815, -0.08143090456724167, -0.03722101449966431, 0.2842423617839813, 0.08134818077087402, 0.021256690844893456, 0.08051961660385132, -0.1092386320233345, 0.06408002227544785, 0.041281502693891525, -0.006471466273069382, -0.08555784076452255, 0.03647512570023537, -0.10573995113372803, 0.00548172602429986, -0.04929704591631889, -0.021476395428180695, 0.02522698976099491, -0.004912213888019323, -0.01076441165059805, -0.07538580894470215, -0.002108838176354766, -0.10991227626800537, 0.044579725712537766, -0.11359281092882156, 0.06169837713241577, -0.011063646525144577, -0.008454128168523312, 0.04203658178448677, 0.10059704631567001, -0.006100935395807028, 0.06910126656293869, -0.022092698141932487, 0.015388776548206806, -0.023129479959607124, 0.09215303510427475, 0.008763286285102367, -0.056966155767440796, -0.04676074907183647, 0.06633683294057846, 0.34483352303504944, -0.09686026722192764, -0.023327341303229332, 0.0033122070599347353, 0.03229879215359688, 0.04789425805211067, 0.1361885517835617, 0.0027413058560341597, 0.15583743155002594, -0.06130977347493172, -0.09954855591058731, 0.07098077982664108, -0.00019864329078700393, -0.037894342094659805, 0.0644327700138092, 0.08046957105398178, -0.0096442811191082, -0.11227665096521378, 0.12129294872283936, -0.17336644232273102, 0.13623277842998505, 0.007097338791936636, -0.1406799554824829, -0.12949341535568237, 0.010508467443287373, 0.019855184480547905, -0.02536213956773281, 0.006341186817735434, -0.07602083683013916, -0.0034946773666888475, -0.1919790357351303, 0.00008704388892510906, -0.35295021533966064, -0.18722476065158844, 0.006190349813550711, 0.1625594049692154, 0.14500100910663605, -0.013777104206383228, 0.12343432754278183, -0.011698185466229916, -0.013537243008613586, -0.09096626192331314, 0.03392374888062477, -0.005336737725883722, 0.021030297502875328, -0.06594499200582504, -0.021923040971159935, -0.06657696515321732, -0.03856123611330986, 0.0706624686717987, 0.006402639672160149, -0.06476018577814102, 0.14356352388858795, 0.004293587990105152, -0.010413194075226784, -0.07437485456466675, -0.08552845567464828, 0.10104048252105713, -0.003348651574924588, -0.032861728221178055, -0.026495128870010376, -0.04806689918041229, 0.13026346266269684, 0.055155813694000244, -0.02187039516866207, -0.11664725095033646, -0.046909283846616745, -0.06157337501645088, 0.10534558445215225, -0.02944657951593399, -0.031269703060388565, 0.05229790508747101, -0.04465526342391968, 0.0922442078590393, 0.02576945163309574, 0.004863501060754061, 0.15522800385951996, 0.0533575676381588, -0.025045448914170265, -0.08282902836799622, 0.028519243001937866, -0.03483079746365547, -0.061168402433395386, -0.074441097676754 ]
62ca0fb91134b17d7bf6f9dc9a1c0d4c131fbe37
# Dataset Card for "massive_audio" [More Information needed](https://github.com/huggingface/datasets/blob/main/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
fathyshalab/massive_audio
[ "region:us" ]
2023-02-08T11:14:37+00:00
{"dataset_info": {"features": [{"name": "id", "dtype": "string"}, {"name": "label", "dtype": "int64"}, {"name": "text", "dtype": "string"}], "splits": [{"name": "train", "num_bytes": 12795, "num_examples": 290}, {"name": "validation", "num_bytes": 1499, "num_examples": 35}, {"name": "test", "num_bytes": 2615, "num_examples": 62}], "download_size": 12219, "dataset_size": 16909}}
2023-02-08T12:23:48+00:00
[]
[]
TAGS #region-us
# Dataset Card for "massive_audio" More Information needed
[ "# Dataset Card for \"massive_audio\"\n\nMore Information needed" ]
[ "TAGS\n#region-us \n", "# Dataset Card for \"massive_audio\"\n\nMore Information needed" ]
[ 6, 15 ]
[ "passage: TAGS\n#region-us \n# Dataset Card for \"massive_audio\"\n\nMore Information needed" ]
[ -0.1246713250875473, 0.11158417910337448, -0.001160744926892221, -0.03189489245414734, 0.08619985729455948, 0.04879426956176758, 0.04552216827869415, 0.027701959013938904, 0.03633367642760277, -0.004699995741248131, 0.02870757505297661, 0.05246466025710106, -0.004100486170500517, 0.15467704832553864, -0.03464442119002342, -0.061209436506032944, -0.0070350742898881435, 0.01546436920762062, -0.15564367175102234, 0.006513116881251335, 0.04198639467358589, -0.052492719143629074, 0.007186913397163153, -0.10745689272880554, -0.19557197391986847, 0.057191673666238785, 0.007110432256013155, -0.05693963170051575, 0.01707373559474945, -0.08226294815540314, 0.04104269668459892, -0.0030873464420437813, 0.032599497586488724, -0.04744066298007965, 0.02019987627863884, -0.006908504758030176, 0.01605304703116417, 0.045764826238155365, 0.09228558838367462, -0.07540272921323776, -0.2230139523744583, 0.021211350336670876, -0.06073644757270813, 0.01178707554936409, -0.02214960567653179, -0.3482852578163147, -0.06258546561002731, -0.07946605980396271, -0.024169694632291794, -0.0213665459305048, 0.025893835350871086, 0.03010178729891777, -0.0919823944568634, 0.027858927845954895, 0.03250649571418762, 0.03759289160370827, 0.0959274098277092, 0.15374155342578888, 0.0031849027145653963, 0.2382328063249588, 0.051253512501716614, 0.09911853820085526, 0.13640914857387543, -0.04480470344424248, -0.03913719207048416, -0.04829614609479904, -0.12182480096817017, -0.015260797925293446, -0.011929822154343128, -0.03275502845644951, 0.3871806263923645, -0.007230798713862896, -0.020096521824598312, 0.0076254322193562984, -0.003793001174926758, -0.12827043235301971, -0.007950382307171822, 0.0724165216088295, 0.03812183067202568, 0.02456406131386757, -0.07042346149682999, -0.008362572640180588, -0.04417002573609352, -0.13673940300941467, -0.14694839715957642, -0.006276157684624195, -0.08194898813962936, 0.11129104346036911, -0.12532198429107666, -0.04810511693358421, -0.20788565278053284, -0.026714952662587166, 0.06241169944405556, -0.04711759462952614, -0.053613051772117615, -0.02679573930799961, -0.0019613218028098345, 0.02067314088344574, 0.10471189767122269, -0.029174841940402985, 0.046988457441329956, -0.016136201098561287, -0.15038298070430756, 0.09690408408641815, 0.19962875545024872, -0.16589446365833282, -0.02246907725930214, -0.17565670609474182, -0.01088572945445776, -0.11838460713624954, 0.012969945557415485, -0.08981501311063766, -0.11743660271167755, 0.023500589653849602, -0.12258090078830719, 0.07611539959907532, -0.05392642319202423, -0.17930668592453003, -0.0825098305940628, -0.029505012556910515, 0.01771334931254387, -0.06547913700342178, 0.028466589748859406, -0.026637602597475052, 0.04987345635890961, 0.0891396552324295, -0.14640404284000397, 0.054505329579114914, 0.10057670623064041, 0.13583318889141083, -0.006623365916311741, -0.027569551020860672, -0.031947582960128784, 0.03528715670108795, 0.1363406628370285, -0.1462664157152176, 0.09856182336807251, -0.013060459867119789, -0.13548876345157623, 0.027746811509132385, 0.050121936947107315, 0.01552921999245882, -0.015290463343262672, 0.05722823739051819, 0.08790063858032227, 0.03503160923719406, -0.1566658616065979, 0.2123110145330429, -0.11204681545495987, 0.07609941810369492, 0.03436020389199257, 0.1079443171620369, -0.22407668828964233, 0.09914764761924744, -0.06793984770774841, 0.009730556048452854, -0.08932400494813919, 0.07149443030357361, -0.10632000118494034, 0.009141669608652592, -0.0632338672876358, -0.05021219700574875, -0.1588919460773468, 0.0814846009016037, -0.03463689982891083, -0.05490890517830849, -0.28676173090934753, -0.1232151985168457, 0.0915074273943901, -0.0841134712100029, -0.12449785321950912, 0.14292117953300476, -0.00582663482055068, 0.03158172592520714, 0.07767228782176971, 0.30557265877723694, 0.003640863811597228, -0.02318457141518593, 0.0453076995909214, 0.1184006780385971, -0.06049299240112305, -0.2570370137691498, 0.11808837950229645, -0.10022205114364624, -0.07852710783481598, -0.04113591089844704, 0.24303142726421356, 0.03404717892408371, -0.02949274145066738, -0.03969556465744972, -0.006885996088385582, -0.15327607095241547, -0.01222678180783987, -0.0041115437634289265, -0.016837777569890022, -0.017161209136247635, 0.11072658747434616, 0.14754363894462585, 0.0669332817196846, 0.022326603531837463, -0.0201359111815691, 0.035395100712776184, 0.15469607710838318, -0.2605127692222595, -0.031140713021159172, -0.21867001056671143, 0.14959104359149933, -0.022053226828575134, -0.0063490490429103374, 0.17137187719345093, 0.10522105544805527, 0.03915855661034584, -0.05884154886007309, -0.040629930794239044, 0.05280784144997597, 0.1639532446861267, 0.025585444644093513, 0.07352487742900848, -0.05154362693428993, 0.05896027386188507, -0.07005379348993301, -0.10119158029556274, 0.04212779179215431, -0.14665371179580688, 0.09807449579238892, -0.04289664328098297, 0.04412147402763367, -0.042047448456287384, 0.04662935808300972, 0.00770192313939333, -0.005219615530222654, 0.02946392260491848, -0.01947253942489624, -0.05176660418510437, -0.06685488671064377, 0.07215701043605804, -0.09608351439237595, 0.38161253929138184, 0.1525779664516449, -0.0391681045293808, 0.05124130845069885, 0.0012274925829842687, 0.08995651453733444, -0.041001543402671814, -0.11338002979755402, -0.029202118515968323, -0.01180984452366829, -0.06621608138084412, 0.061759356409311295, -0.08996593207120895, 0.04876812919974327, 0.07891529053449631, 0.008500386029481888, -0.02478523552417755, 0.017936302348971367, 0.05788874626159668, -0.20968589186668396, 0.14763370156288147, 0.23876559734344482, -0.03154386952519417, 0.31695637106895447, -0.06631768494844437, -0.14859238266944885, 0.021075421944260597, -0.12655822932720184, -0.0837087407708168, 0.16186100244522095, -0.09827989339828491, 0.05831842124462128, 0.11491341888904572, 0.08364872634410858, 0.046889934688806534, -0.05385119467973709, -0.01588376611471176, 0.014894639141857624, -0.015326232649385929, -0.26366332173347473, -0.00928928330540657, 0.018179243430495262, 0.03129539266228676, -0.035644978284835815, -0.02159075066447258, 0.1623641550540924, -0.05171283334493637, 0.0034949148539453745, -0.04732883349061012, -0.15993723273277283, -0.16657966375350952, -0.08382067084312439, -0.14894519746303558, 0.010733166709542274, 0.04110711067914963, 0.040900543332099915, -0.11303456127643585, -0.025630824267864227, 0.09177345037460327, -0.00446536997333169, -0.1309736967086792, -0.011813811957836151, 0.04370568320155144, 0.045652762055397034, 0.030082257464528084, -0.06396201252937317, 0.03656962886452675, 0.027024703100323677, 0.10534732788801193, 0.012427527457475662, 0.00469691026955843, 0.08718344569206238, 0.12644343078136444, 0.054062776267528534, 0.0481749065220356, -0.010494794696569443, -0.03511554375290871, -0.1349848210811615, -0.03834320232272148, 0.15242429077625275, -0.060400981456041336, -0.05205952748656273, 0.1250431388616562, 0.12683230638504028, -0.0743345096707344, -0.05278267711400986, -0.002065720036625862, -0.19948743283748627, -0.2682685852050781, -0.18474183976650238, -0.11901351809501648, 0.07943303138017654, -0.01870082877576351, 0.02718212641775608, -0.0012683814857155085, 0.006362130865454674, 0.07695287466049194, 0.0027261755894869566, -0.0718650296330452, -0.1091228500008583, -0.09542707353830338, -0.040679316967725754, 0.0164983868598938, -0.1471346914768219, -0.036968085914850235, 0.17318233847618103, 0.18283870816230774, 0.15491171181201935, 0.1654725968837738, 0.19421271979808807, -0.03404892235994339, 0.0019623751286417246, 0.1385461688041687, 0.17126254737377167, 0.0879175066947937, 0.005456758663058281, -0.0037580477073788643, -0.0367426723241806, -0.004020392894744873, -0.003903648816049099, 0.2881683111190796, -0.06407496333122253, 0.017977438867092133, -0.11081381887197495, -0.021087072789669037, -0.11708589643239975, 0.048521675169467926, -0.16689211130142212, 0.11055700480937958, 0.0876428484916687, 0.13091160356998444, -0.12325280904769897, 0.14862413704395294, 0.14198608696460724, 0.010190937668085098, 0.08212116360664368, 0.0657830536365509, 0.07870790362358093, -0.12032266706228256, 0.001463823369704187, -0.021329306066036224, -0.01610608771443367, -0.0006282822578214109, 0.05372172221541405, -0.06816291809082031, 0.16955804824829102, 0.07820376753807068, -0.0011914909118786454, -0.06550157815217972, -0.04960497468709946, 0.012835740111768246, -0.015561374835669994, 0.13946348428726196, 0.0084757711738348, -0.15987978875637054, -0.10486605018377304, -0.10882885754108429, -0.04502841457724571, 0.09760811179876328, 0.09640735387802124, -0.2209271639585495, 0.018168026581406593, -0.013443950563669205, 0.010577701032161713, -0.1982244849205017, -0.06657335162162781, -0.09597694128751755, -0.052657440304756165, 0.20782427489757538, -0.04101254791021347, 0.009247928857803345, -0.0544244758784771, -0.11789757013320923, 0.09157157689332962, 0.04525737836956978, -0.004889979027211666, -0.05085943266749382, -0.11794168502092361, 0.22605888545513153, 0.11385012418031693, 0.045724064111709595, 0.03545844182372093, 0.0392526239156723, -0.05864309147000313, -0.14387927949428558, 0.12160604447126389, -0.0890611857175827, 0.1282101571559906, -0.08494925498962402, 0.2047620713710785, -0.015700262039899826, 0.08707599341869354, -0.058521583676338196, 0.01672108843922615, 0.013314332813024521, -0.027488455176353455, 0.17366643249988556, -0.1103549376130104, 0.07724824547767639, 0.25034672021865845, 0.0781063362956047, -0.1097501739859581, 0.18810302019119263, -0.11174570024013519, 0.16017642617225647, 0.1181509792804718, -0.008525554090738297, 0.22225765883922577, 0.21852214634418488, -0.012709449976682663, -0.3037545680999756, 0.09535974264144897, -0.06585787236690521, -0.028081323951482773, 0.054010964930057526, -0.22258491814136505, 0.161468505859375, 0.08020943403244019, -0.05213240534067154, 0.23659180104732513, -0.12802210450172424, 0.0007040715427137911, 0.16014297306537628, -0.15204383432865143, 0.35764560103416443, -0.03889618441462517, -0.07477662712335587, -0.2011711448431015, -0.045991528779268265, 0.18654468655586243, -0.2323158234357834, 0.0787251740694046, 0.11244600266218185, 0.09924016892910004, -0.007542657200247049, -0.035660263150930405, 0.0940483957529068, 0.04500746726989746, 0.05724596977233887, 0.006488394923508167, 0.052532996982336044, 0.09240581840276718, 0.021833470091223717, -0.006708334665745497, -0.05066930875182152, -0.033675890415906906, -0.04353516921401024, -0.053831156343221664, 0.05240900069475174, 0.040180012583732605, 0.06623796373605728, -0.06378945708274841, 0.000013796091479889583, -0.003368286183103919, -0.12971900403499603, -0.0689588412642479, 0.22119319438934326, -0.016512561589479446, -0.00958471279591322, 0.046117812395095825, 0.17306213080883026, -0.13052740693092346, -0.1715017557144165, -0.02593217045068741, -0.10434242337942123, 0.09978722780942917, -0.21155495941638947, 0.12089739739894867, 0.0594300851225853, 0.051006004214286804, -0.011252885684370995, 0.07960715889930725, -0.046509310603141785, 0.03592352569103241, 0.12902997434139252, -0.013943019323050976, -0.005996620748192072, 0.025248205289244652, -0.024351829662919044, 0.10422249138355255, 0.021167857572436333, 0.016429103910923004, 0.07204121351242065, 0.010790406726300716, 0.02512761764228344, 0.02298293076455593, -0.16805653274059296, 0.14425423741340637, -0.006204828154295683, 0.02594969980418682, -0.20550021529197693, 0.25791531801223755, 0.0010547828860580921, -0.18435238301753998, -0.00901724211871624, -0.06731024384498596, -0.006051959004253149, -0.04489882290363312, 0.08158431947231293, 0.13664516806602478, 0.0037828637287020683, -0.14149349927902222, 0.1253758668899536, -0.07770100235939026, -0.031962741166353226, 0.05088141933083534, 0.03161632642149925, 0.049304790794849396, -0.05962109565734863, -0.022259991616010666, -0.03909122943878174, 0.029418351128697395, -0.06847795099020004, 0.06732681393623352, -0.12961174547672272, -0.1450088620185852, -0.052848998457193375, 0.09432094544172287, -0.10908317565917969, -0.016561394557356834, -0.02215096913278103, 0.0986364334821701, -0.20657695829868317, -0.028756840154528618, 0.07677087187767029, 0.0010507762199267745, -0.007809168193489313, 0.08217968791723251, -0.009388387203216553, 0.012186562642455101, -0.07693866640329361, 0.08240822702646255, 0.07282087206840515, 0.0426366962492466, -0.03102078288793564, 0.022053593769669533, 0.015483330935239792, 0.03519845008850098, 0.08568371087312698, 0.16313056647777557, -0.03122725896537304, -0.008772766217589378, -0.19208355247974396, -0.22634506225585938, 0.1277908831834793, 0.0707540512084961, 0.04974044859409332, -0.053966306149959564, 0.0024399745743721724, 0.1314513236284256, 0.015466422773897648, 0.0029959166422486305, -0.09564187377691269, -0.033598560839891434, 0.014061217196285725, -0.18675163388252258, -0.05569660663604736, 0.0010899817571043968, -0.08288273215293884, 0.22898060083389282, 0.08505186438560486, 0.028372151777148247, 0.07363608479499817, 0.0041238171979784966, 0.04043274745345116, 0.0019826621282845736, -0.028524480760097504, -0.19010262191295624, -0.1858157515525818, 0.06655988842248917, 0.010682408697903156, -0.09647339582443237, 0.4570891857147217, -0.03877059742808342, -0.17773228883743286, -0.04679376631975174, 0.06442233920097351, -0.0011732062557712197, 0.0032190107740461826, 0.37297356128692627, 0.047451093792915344, -0.04847625270485878, -0.10623243451118469, 0.05692184343934059, 0.06956186145544052, 0.2808648347854614, 0.00299609056673944, 0.08063684403896332, 0.09186192601919174, -0.07921499013900757, 0.08781933039426804, -0.11261623352766037, -0.06414606422185898, 0.06050702556967735, 0.07958879321813583, 0.04243452847003937, 0.07382889837026596, 0.004660102538764477, -0.0397920235991478, 0.01627759262919426, 0.0717850998044014, -0.1013154685497284, -0.006909686140716076, -0.12957820296287537, -0.022757520899176598, -0.05046682059764862, -0.0801062360405922, 0.03631642460823059, -0.07346312701702118, 0.05564482510089874, 0.16367626190185547, 0.04386422038078308, -0.01566130481660366, 0.11232629418373108, -0.18210221827030182, 0.017697419971227646, 0.056092292070388794, -0.005556866992264986, -0.10521402209997177, 0.05305296927690506, -0.10300950706005096, 0.12509019672870636, -0.09002798795700073, -0.026516981422901154, -0.017180494964122772, -0.03635014593601227, 0.0417921207845211, -0.11046330630779266, -0.04566708579659462, -0.060129936784505844, 0.009432789869606495, -0.028948742896318436, 0.1499316543340683, 0.012600834481418133, -0.03217443451285362, 0.03556050360202789, 0.053359728306531906, -0.05480236932635307, 0.01872934028506279, 0.01707572489976883, -0.08445814251899719, -0.14825594425201416, 0.14050619304180145, -0.01741739548742771, -0.052584484219551086, -0.07136990129947662, 0.04109250381588936, 0.3065854012966156, -0.07873835414648056, 0.005685518495738506, 0.038718756288290024, 0.0139660919085145, -0.10546701401472092, 0.09983821958303452, 0.07915548235177994, 0.14596334099769592, 0.020955834537744522, -0.04055006429553032, -0.0009047365165315568, -0.0020392178557813168, -0.006218848749995232, 0.07273342460393906, 0.015125531703233719, -0.09510471671819687, 0.014275524765253067, 0.1252092570066452, -0.23977155983448029, 0.06371340900659561, -0.06049982085824013, -0.10754433274269104, -0.07751966267824173, -0.05473116412758827, 0.14451414346694946, 0.08821766078472137, -0.10612974315881729, -0.09634760022163391, -0.053119562566280365, -0.15159347653388977, -0.022006100043654442, -0.2620454430580139, -0.09217377752065659, -0.0949963927268982, 0.05053705349564552, 0.00851459987461567, 0.027401480823755264, 0.13792091608047485, -0.05449359863996506, 0.062142640352249146, 0.0010627653682604432, 0.08924674987792969, -0.03140749782323837, -0.11485371738672256, -0.05970223248004913, 0.2057717889547348, -0.1206236258149147, 0.07092230021953583, 0.05807249993085861, 0.05858426168560982, -0.04002930223941803, 0.02302253060042858, -0.05982581153512001, -0.06437055766582489, -0.08912786841392517, -0.08103737235069275, 0.1145021989941597, -0.0982443243265152, 0.03824130445718765, -0.014035114087164402, -0.048810698091983795, 0.11088424921035767, 0.14293314516544342, -0.025476854294538498, -0.05369503051042557, -0.042346302419900894, -0.10095998644828796, 0.09219631552696228, 0.013219889253377914, -0.1798127293586731, 0.0796910747885704, -0.11999582499265671, 0.04418296366930008, -0.06484982371330261, -0.04215068742632866, 0.11348701268434525, 0.04508524015545845, -0.03856887295842171, -0.020386405289173126, 0.05867168307304382, -0.03463786467909813, -0.08307262510061264, -0.09235010296106339 ]
e6300789ee5a47918e5f0b1504258eef326f7ee1
# Dataset Card for "massive_lists" [More Information needed](https://github.com/huggingface/datasets/blob/main/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
fathyshalab/massive_lists
[ "region:us" ]
2023-02-08T11:14:54+00:00
{"dataset_info": {"features": [{"name": "id", "dtype": "string"}, {"name": "label", "dtype": "int64"}, {"name": "text", "dtype": "string"}], "splits": [{"name": "train", "num_bytes": 27330, "num_examples": 539}, {"name": "validation", "num_bytes": 5583, "num_examples": 112}, {"name": "test", "num_bytes": 7000, "num_examples": 142}], "download_size": 23148, "dataset_size": 39913}}
2023-02-08T12:24:08+00:00
[]
[]
TAGS #region-us
# Dataset Card for "massive_lists" More Information needed
[ "# Dataset Card for \"massive_lists\"\n\nMore Information needed" ]
[ "TAGS\n#region-us \n", "# Dataset Card for \"massive_lists\"\n\nMore Information needed" ]
[ 6, 15 ]
[ "passage: TAGS\n#region-us \n# Dataset Card for \"massive_lists\"\n\nMore Information needed" ]
[ -0.0809321179986, 0.1458730846643448, -0.0033430897165089846, -0.006124245934188366, 0.13415862619876862, 0.17129148542881012, -0.006197669543325901, 0.09179957211017609, 0.225857213139534, -0.02935144118964672, 0.13353613018989563, 0.0354144349694252, -0.024132752791047096, 0.20401416718959808, -0.03471880778670311, -0.06613510102033615, 0.039648689329624176, 0.02796565555036068, -0.23806419968605042, 0.012812669388949871, 0.037336189299821854, -0.1074320375919342, 0.04566241428256035, -0.1703208088874817, -0.12018722295761108, 0.05746724456548691, -0.040810827165842056, -0.04096351936459541, 0.0725780501961708, -0.0935102254152298, 0.06962549686431885, -0.03536255657672882, 0.0008037924999371171, -0.10527482628822327, 0.009181613102555275, -0.0024102949537336826, -0.021745312958955765, 0.06197064369916916, 0.030381686985492706, -0.07410271465778351, -0.18455111980438232, -0.11621267348527908, -0.008613084442913532, 0.02587769739329815, -0.07268550992012024, -0.3424791395664215, -0.07587704062461853, -0.08131556212902069, -0.04114930331707001, -0.04466143622994423, 0.07745399326086044, 0.1360446810722351, -0.12638437747955322, -0.0033236287999898195, 0.0776195079088211, -0.03040001168847084, 0.042471375316381454, 0.17133378982543945, -0.061834849417209625, 0.14623187482357025, 0.02889382280409336, 0.06842419505119324, 0.11343042552471161, -0.06598429381847382, -0.0046892790123820305, -0.011709454469382763, -0.11869332939386368, 0.04380383342504501, 0.010587980970740318, -0.04981787130236626, 0.3895721137523651, 0.011849130503833294, 0.07192391157150269, -0.041798099875450134, -0.054183606058359146, -0.044625088572502136, 0.02879999950528145, 0.06109624728560448, 0.05961398035287857, 0.000014803409612795804, 0.006239952985197306, -0.01758367381989956, -0.07211806625127792, -0.10182090848684311, -0.1502118706703186, 0.009335788898169994, -0.0894998237490654, 0.12626376748085022, -0.14661769568920135, -0.03374793380498886, -0.164881631731987, -0.03016175702214241, 0.03344608470797539, -0.10689274966716766, -0.11665813624858856, -0.05012364685535431, 0.022383172065019608, 0.06637968868017197, 0.17526617646217346, 0.030195409432053566, 0.12768909335136414, -0.01268419623374939, -0.09655233472585678, 0.07093822211027145, 0.20420080423355103, -0.08791858702898026, -0.08939459174871445, -0.12923893332481384, -0.039601508527994156, -0.1193491742014885, -0.020344369113445282, -0.058821067214012146, -0.0648023933172226, -0.03566468879580498, -0.07809550315141678, 0.1159735843539238, -0.06376223266124725, -0.11546561866998672, -0.05261844024062157, 0.005145464092493057, 0.009163160808384418, -0.08428481221199036, 0.028513293713331223, 0.049568504095077515, -0.06443359702825546, 0.07589330524206161, -0.1593778282403946, -0.027016453444957733, 0.10926927626132965, 0.13183078169822693, -0.10534065216779709, -0.04482215270400047, -0.05501236021518707, 0.007072304375469685, 0.09576480835676193, -0.21915382146835327, 0.08279561251401901, -0.012981044128537178, -0.20992185175418854, 0.07984057813882828, 0.039356015622615814, -0.048643335700035095, 0.09264207631349564, 0.09423305839300156, 0.08009514212608337, -0.048519592732191086, -0.07516097277402878, 0.22639548778533936, -0.10654592514038086, 0.07171668857336044, -0.01115434616804123, 0.05737283080816269, -0.18406029045581818, 0.024250833317637444, -0.11135761439800262, -0.00009366393351228908, -0.012558884918689728, 0.018887942656874657, -0.07364597916603088, 0.16947345435619354, -0.09118717908859253, -0.014707428403198719, -0.08291463553905487, -0.005462870467454195, -0.06922952830791473, 0.08065243065357208, -0.29716673493385315, -0.029938194900751114, 0.14011716842651367, -0.08299608528614044, -0.22092807292938232, 0.0704793855547905, -0.059853848069906235, 0.0624532550573349, 0.06132608279585838, 0.2395142763853073, -0.05248348414897919, 0.1367088109254837, 0.011283259838819504, 0.13240739703178406, -0.09628576040267944, -0.29277363419532776, 0.13786371052265167, -0.06954602897167206, -0.09101715683937073, 0.008471443317830563, 0.18984173238277435, -0.025283455848693848, -0.05466992408037186, -0.05859731510281563, -0.02177201583981514, -0.16754353046417236, 0.03732668235898018, 0.0013407340738922358, 0.01798180118203163, -0.047110818326473236, 0.15828818082809448, 0.1134466826915741, 0.08054256439208984, 0.03445952385663986, -0.06384611874818802, 0.055391907691955566, 0.08265531808137894, -0.14199745655059814, -0.027395443990826607, -0.18400993943214417, -0.06567688286304474, 0.0025716263335198164, -0.016182852908968925, 0.011092917993664742, 0.08834264427423477, 0.07051193714141846, -0.08640533685684204, 0.00734182121232152, 0.14973649382591248, 0.18779808282852173, 0.06193569302558899, 0.044451333582401276, -0.006638695485889912, -0.00462530180811882, -0.0819995105266571, -0.09724252671003342, -0.06511593610048294, -0.07833286374807358, 0.14023737609386444, 0.024442316964268684, 0.05287499725818634, -0.02708873525261879, 0.06537275016307831, -0.008057866245508194, -0.00029880882357247174, -0.059456538408994675, 0.017788702622056007, -0.08136637508869171, -0.07721995562314987, -0.09295181185007095, -0.002332801930606365, 0.4078887104988098, 0.1380116492509842, 0.020890893414616585, 0.06890720874071121, -0.022376494482159615, 0.05743608623743057, -0.0002468699240125716, -0.0955890640616417, 0.027233529835939407, -0.1655343621969223, -0.010023081675171852, 0.07190371304750443, -0.04098351299762726, 0.028409268707036972, 0.055950287729501724, 0.06063279137015343, -0.05270395427942276, 0.028793055564165115, 0.18349142372608185, -0.26905667781829834, 0.17091399431228638, 0.17247791588306427, 0.07897516340017319, 0.17157863080501556, -0.06368496268987656, -0.08193162828683853, 0.011624481528997421, -0.10612831264734268, -0.07811994850635529, 0.1492699831724167, -0.17735916376113892, 0.05473648011684418, 0.11898480355739594, 0.0041219317354261875, 0.060817450284957886, -0.029670141637325287, -0.07505516707897186, 0.025786032900214195, -0.0047644637525081635, -0.09022261947393417, -0.015415340662002563, 0.04846421256661415, 0.09022369235754013, 0.05079200863838196, 0.02125885896384716, 0.14997468888759613, -0.036481283605098724, 0.029081320390105247, 0.08019581437110901, -0.09953631460666656, -0.16950292885303497, 0.014233887195587158, -0.11235420405864716, 0.013556628488004208, 0.020902413874864578, -0.052917271852493286, -0.10095607489347458, -0.02909567393362522, 0.05860762298107147, -0.04969021677970886, -0.1834423840045929, 0.044321928173303604, 0.018648440018296242, 0.07353845238685608, -0.06633849442005157, -0.08319535106420517, 0.030364684760570526, -0.041151262819767, 0.04225335270166397, 0.07411900162696838, -0.05832884833216667, 0.09140323847532272, 0.06746542453765869, -0.02892310544848442, 0.0905795767903328, -0.04089676961302757, -0.06044382229447365, -0.07214592397212982, -0.07950032502412796, 0.10652505606412888, -0.003479359205812216, -0.03822493180632591, 0.07754674553871155, 0.11176589131355286, -0.15206818282604218, -0.025925181806087494, -0.03769794479012489, -0.18363146483898163, -0.23174481093883514, -0.182906836271286, -0.06912039965391159, 0.10268016904592514, 0.12308192998170853, 0.05222607031464577, -0.10658525675535202, 0.08287514001131058, 0.10609374940395355, -0.026041246950626373, -0.1759336143732071, -0.07925088703632355, -0.039134591817855835, 0.0044718291610479355, -0.03081583045423031, -0.15915310382843018, -0.022151876240968704, 0.1845952272415161, 0.1438373625278473, 0.21629169583320618, 0.09184267371892929, 0.18939067423343658, -0.07852393388748169, 0.06037518382072449, 0.08621852844953537, 0.21164558827877045, 0.09560611844062805, -0.0011408972786739469, 0.0008262526826001704, -0.0005040905089117587, -0.07087477296590805, -0.0017451494932174683, 0.16453810036182404, -0.0855260118842125, 0.030895104631781578, -0.15197139978408813, 0.07606526464223862, -0.05293970927596092, 0.0741114541888237, -0.18576069176197052, 0.10734499990940094, 0.06321612000465393, 0.15341120958328247, -0.11163811385631561, 0.10227502137422562, 0.04901124909520149, -0.03673465549945831, 0.09976888447999954, -0.016937825828790665, 0.060239724814891815, -0.11622576415538788, 0.03379219025373459, -0.05211353302001953, -0.04823826625943184, -0.01280323974788189, 0.15928909182548523, -0.1154351606965065, 0.2498483806848526, 0.021586453542113304, -0.08822590857744217, -0.18145275115966797, -0.10305038094520569, -0.013421159237623215, -0.03593425825238228, 0.1504307985305786, -0.02943502366542816, -0.03238603100180626, -0.08095552772283554, -0.07840424031019211, 0.0046117426827549934, 0.047906555235385895, -0.047832656651735306, -0.13036875426769257, 0.029329271987080574, 0.014096859842538834, -0.013018183410167694, -0.07760641723871231, 0.05024850741028786, -0.12168941646814346, -0.04209249094128609, 0.04390862584114075, -0.10201799124479294, 0.028604330494999886, -0.01900612749159336, -0.08218970894813538, 0.1652030050754547, 0.03177198767662048, -0.04921220615506172, -0.10402876138687134, -0.027199342846870422, 0.267181932926178, 0.03342948108911514, -0.0077616130001842976, -0.002353791380301118, 0.03545711189508438, -0.07510039955377579, -0.16805234551429749, 0.1246165931224823, -0.08227252215147018, 0.09395129233598709, -0.059527330100536346, 0.11164525896310806, -0.07758010923862457, 0.05104590579867363, -0.03456762805581093, 0.03920060023665428, -0.003112050937488675, -0.07702115178108215, 0.13322772085666656, -0.08250413835048676, 0.11843767017126083, 0.3070874810218811, 0.07566135376691818, -0.02326570823788643, 0.16882142424583435, -0.06404270976781845, 0.2249688357114792, 0.11161841452121735, -0.07871939986944199, 0.1827618032693863, 0.14018568396568298, -0.0025554329622536898, -0.22482232749462128, 0.04649979993700981, -0.17916272580623627, -0.0628785565495491, 0.0526423454284668, -0.2621077001094818, 0.1385190784931183, 0.1897488832473755, -0.045192308723926544, 0.22911420464515686, -0.20948192477226257, -0.01611975021660328, 0.15506739914417267, -0.04781804606318474, 0.4099183976650238, -0.12401818484067917, -0.04529130458831787, -0.181287944316864, 0.02901824750006199, 0.2789299786090851, -0.1178913414478302, 0.026712631806731224, 0.00783455464988947, 0.028343437239527702, 0.0018116435967385769, -0.06543577462434769, 0.16913019120693207, 0.019517384469509125, 0.1171310544013977, -0.042605020105838776, -0.07792653888463974, 0.16652432084083557, -0.032608382403850555, 0.06101960688829422, -0.005371187813580036, -0.03794239088892937, -0.15905722975730896, -0.04419270530343056, 0.06407751142978668, 0.030547048896551132, 0.08887767791748047, -0.09880174696445465, -0.07729169726371765, 0.017983386293053627, -0.12596268951892853, -0.044840678572654724, 0.1860610842704773, 0.06441120058298111, 0.0448308028280735, -0.008770988322794437, 0.15786141157150269, -0.14874596893787384, -0.06296218186616898, -0.022491982206702232, -0.07259052991867065, 0.08242262899875641, -0.21747370064258575, 0.06766972690820694, 0.13443529605865479, 0.03966566547751427, -0.007586693856865168, 0.07368196547031403, -0.01665305346250534, 0.021997148171067238, 0.13414832949638367, -0.052145928144454956, -0.1479923576116562, 0.09115713089704514, -0.0915263369679451, -0.006004986818879843, 0.04586319625377655, 0.012204072438180447, 0.06798693537712097, -0.007476186379790306, -0.028805099427700043, 0.03269854933023453, -0.03744428977370262, 0.08423443883657455, 0.022888977080583572, 0.05984751880168915, -0.2092849761247635, 0.24251380562782288, 0.05408254638314247, -0.10051366686820984, -0.013366750441491604, 0.03576992079615593, -0.05446281284093857, -0.0819510743021965, 0.009144830517470837, 0.13599593937397003, -0.034082766622304916, -0.09273023903369904, 0.05915207043290138, -0.06296596676111221, 0.009326526895165443, 0.11774798482656479, 0.1015561893582344, 0.08315969258546829, -0.023478109389543533, -0.08695989847183228, -0.031691767275333405, -0.05955391749739647, -0.07802796363830566, -0.0161647517234087, -0.09339582175016403, -0.13922972977161407, -0.04768124595284462, 0.11090926826000214, -0.08043936640024185, -0.03279818221926689, -0.07836420834064484, 0.07892031967639923, -0.25264331698417664, -0.004763924051076174, 0.028906693682074547, 0.0026572912465780973, -0.008051050826907158, 0.05237283557653427, -0.014826260507106781, -0.08296453207731247, -0.09621146321296692, 0.10277514159679413, 0.03794855624437332, 0.04753350839018822, -0.06521398574113846, 0.0010863256175071, 0.04286188632249832, 0.033811360597610474, 0.15527893602848053, 0.0931403636932373, -0.012387432157993317, 0.007071720436215401, -0.0508921816945076, -0.1895812451839447, 0.07396601885557175, 0.05792074277997017, 0.07861398905515671, 0.007287111133337021, 0.02301575429737568, 0.10603012144565582, 0.011827224865555763, 0.05307896062731743, -0.12221147865056992, -0.08641870319843292, 0.028163963928818703, -0.09468510746955872, -0.027193384245038033, 0.06786339730024338, -0.1264106184244156, 0.22248920798301697, 0.06150056794285774, -0.03143344447016716, 0.10993362218141556, 0.022212941199541092, -0.03627903759479523, -0.05921833962202072, -0.07434680312871933, -0.14465034008026123, -0.08674423396587372, 0.13820640742778778, 0.05763411521911621, -0.048969365656375885, 0.6174222826957703, -0.04140603169798851, -0.1241079717874527, -0.029918009415268898, 0.11829406768083572, -0.018459027633070946, 0.013168785721063614, 0.39159637689590454, 0.12291143089532852, -0.03123307228088379, -0.0166891161352396, 0.0954776480793953, 0.04380805790424347, 0.2263108491897583, 0.12842874228954315, 0.11123386025428772, 0.08936813473701477, -0.06619486957788467, 0.030529135838150978, -0.12566925585269928, 0.08128448575735092, 0.035922180861234665, 0.10125113278627396, 0.007062374148517847, 0.0687096044421196, -0.14859738945960999, 0.048027802258729935, 0.010255062952637672, 0.019984889775514603, -0.09571016579866409, -0.0010985762346535921, -0.0651172623038292, -0.0559568777680397, -0.059016939252614975, -0.03840455412864685, 0.04222525656223297, -0.052492331713438034, -0.061730287969112396, 0.311001718044281, 0.10454704612493515, 0.02301318198442459, -0.00033400775282643735, -0.10438104718923569, 0.05446556955575943, 0.05002830550074577, 0.012270762585103512, -0.0802401602268219, 0.04957229271531105, -0.0988103598356247, -0.010281248018145561, -0.0988912507891655, -0.057393744587898254, 0.026018256321549416, 0.007102509029209614, 0.019336596131324768, -0.1020689606666565, -0.03006642311811447, -0.07999414205551147, 0.04383976384997368, -0.08457303792238235, 0.10617521405220032, -0.015061682090163231, -0.028075765818357468, 0.02123882807791233, 0.09734957665205002, -0.003696649568155408, 0.004595516715198755, -0.007916533388197422, -0.0019368636421859264, -0.03569267690181732, 0.07610068470239639, -0.012081376276910305, -0.05218930169939995, -0.04615611955523491, 0.04977145045995712, 0.4012170135974884, -0.08014204353094101, 0.003469038289040327, 0.021471772342920303, 0.03412790969014168, 0.013333883136510849, 0.15334998071193695, -0.000987991108559072, 0.11691079288721085, -0.013211717829108238, -0.004776826128363609, 0.06069817394018173, -0.0334571972489357, -0.04716062545776367, 0.07474470138549805, 0.0941382423043251, -0.007017109543085098, -0.07846413552761078, 0.17007741332054138, -0.15099933743476868, 0.0605134479701519, 0.03204275667667389, -0.15982389450073242, -0.1495179533958435, -0.01903100684285164, 0.015217521227896214, 0.03048810549080372, -0.023653544485569, -0.06307386606931686, -0.04023090377449989, -0.18023258447647095, -0.01674843020737171, -0.3894125819206238, -0.18710662424564362, -0.016073696315288544, 0.1320360004901886, 0.07496459782123566, 0.006151705514639616, 0.0762026235461235, -0.011551177129149437, -0.039143968373537064, -0.10494691878557205, 0.01611628383398056, 0.022210130468010902, 0.08945842832326889, -0.029705191031098366, -0.01857893168926239, -0.09215999394655228, -0.05275007337331772, 0.054903220385313034, -0.01724141649901867, -0.05731969699263573, 0.11096645146608353, -0.02310478873550892, -0.0341227687895298, -0.04076593369245529, -0.06415102630853653, 0.09547185897827148, 0.027445349842309952, -0.03279764577746391, -0.007047490682452917, 0.0006927996873855591, 0.11318172514438629, 0.0356636606156826, -0.09694445878267288, -0.1426464319229126, -0.033737074583768845, -0.0900290459394455, 0.05696312338113785, -0.042018257081508636, -0.06293915957212448, 0.07507109642028809, -0.09138036519289017, 0.035703931003808975, -0.013845613226294518, -0.005673691630363464, 0.10751442611217499, 0.0654672309756279, -0.02076643519103527, -0.05399613827466965, 0.03420550376176834, -0.022186510264873505, -0.08844694495201111, -0.09145383536815643 ]
45f01388fa2b1cd7cfcf1a3c05ed2931aed11ecb
# Dataset Card for "massive_qa" [More Information needed](https://github.com/huggingface/datasets/blob/main/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
fathyshalab/massive_qa
[ "region:us" ]
2023-02-08T11:15:11+00:00
{"dataset_info": {"features": [{"name": "id", "dtype": "string"}, {"name": "label", "dtype": "int64"}, {"name": "text", "dtype": "string"}], "splits": [{"name": "train", "num_bytes": 64967, "num_examples": 1183}, {"name": "validation", "num_bytes": 11778, "num_examples": 214}, {"name": "test", "num_bytes": 15940, "num_examples": 288}], "download_size": 54118, "dataset_size": 92685}}
2023-02-08T12:24:29+00:00
[]
[]
TAGS #region-us
# Dataset Card for "massive_qa" More Information needed
[ "# Dataset Card for \"massive_qa\"\n\nMore Information needed" ]
[ "TAGS\n#region-us \n", "# Dataset Card for \"massive_qa\"\n\nMore Information needed" ]
[ 6, 14 ]
[ "passage: TAGS\n#region-us \n# Dataset Card for \"massive_qa\"\n\nMore Information needed" ]
[ -0.12098711729049683, 0.07765713334083557, -0.0020539304241538048, -0.018137047067284584, 0.05127480998635292, 0.11983800679445267, -0.046152856200933456, 0.10761133581399918, 0.1562817245721817, -0.023368269205093384, 0.12744106352329254, -0.05405809357762337, 0.05949488282203674, 0.23205547034740448, -0.02135835774242878, -0.024183733388781548, 0.007095281034708023, 0.0265196505934, -0.2595168948173523, 0.023105265572667122, 0.042642008513212204, -0.08025100827217102, 0.056331831961870193, -0.12095257639884949, -0.14049606025218964, 0.07762325555086136, -0.029207998886704445, -0.08077745139598846, 0.083859883248806, -0.019327638670802116, 0.07043767720460892, 0.050285592675209045, -0.00006419544661184773, -0.14378271996974945, 0.0355086587369442, -0.022271739318966866, -0.08371437340974808, 0.03955124691128731, 0.026013970375061035, -0.014081843197345734, -0.21413682401180267, -0.06040719524025917, -0.06379092484712601, 0.03803528845310211, -0.05849556252360344, -0.2817305028438568, -0.04142953082919121, -0.019150063395500183, -0.021404987201094627, -0.05949193239212036, 0.07268168777227402, 0.06764476746320724, -0.17014187574386597, 0.012929406948387623, -0.002419271506369114, -0.10225176811218262, 0.06495579332113266, 0.1353045403957367, -0.070203997194767, 0.20112495124340057, 0.030446713790297508, 0.06883590668439865, 0.13128745555877686, -0.06993704289197922, -0.04773586615920067, -0.029343610629439354, -0.02678377367556095, 0.08236397057771683, -0.005174004472792149, -0.0316467247903347, 0.256669282913208, 0.016905294731259346, 0.02228834293782711, 0.048659127205610275, -0.048248957842588425, -0.07459766417741776, 0.020427467301487923, 0.06491237133741379, 0.05397792160511017, 0.01577952690422535, 0.022483808919787407, 0.02688952349126339, -0.07560835033655167, -0.15043210983276367, -0.22077225148677826, -0.030363524332642555, -0.05024081841111183, 0.14371542632579803, -0.20389950275421143, -0.023214630782604218, -0.24062365293502808, -0.04899023473262787, -0.006556025240570307, -0.13324730098247528, -0.0647805705666542, 0.011978983879089355, -0.0043295263312757015, 0.0977320671081543, 0.19315789639949799, -0.06120334938168526, 0.07990028709173203, 0.03536836430430412, -0.07589345425367355, 0.07333344221115112, 0.14951539039611816, -0.011251203715801239, -0.09010320901870728, -0.10759160667657852, 0.02084745652973652, -0.07753094285726547, -0.08660320192575455, -0.06549093872308731, -0.08465049415826797, -0.05275167152285576, -0.11211562901735306, 0.12460711598396301, -0.070857472717762, -0.10416039079427719, 0.019126644358038902, 0.005484004970639944, 0.0592244453728199, -0.07343584299087524, -0.0467979721724987, 0.043551161885261536, -0.053768206387758255, 0.059311460703611374, -0.15121686458587646, -0.010614432394504547, 0.11113011091947556, -0.0036240320187062025, -0.04596814140677452, -0.06426556408405304, -0.004635410849004984, 0.020044980570673943, 0.061238229274749756, -0.13509654998779297, 0.08102477341890335, -0.10325338691473007, -0.15132400393486023, 0.09815466403961182, -0.010979006998240948, -0.03006652742624283, 0.07604297250509262, 0.10182422399520874, 0.0780303031206131, -0.05099765583872795, -0.09292016178369522, 0.2572803199291229, -0.10227495431900024, 0.08797580003738403, 0.05488140508532524, 0.09905240684747696, -0.24694328010082245, 0.028320180252194405, -0.06450667232275009, 0.03396103158593178, 0.030637556686997414, 0.08105915039777756, -0.11383051425218582, 0.04886972904205322, -0.10521161556243896, -0.03755370154976845, -0.056707147508859634, -0.013050008565187454, -0.04745720326900482, 0.05549299716949463, -0.3051292598247528, -0.05193130299448967, 0.1976703405380249, -0.0652945414185524, -0.2295304536819458, 0.0706762745976448, -0.023180127143859863, 0.020663084462285042, 0.03845889866352081, 0.26766422390937805, 0.013770204037427902, 0.06394565850496292, -0.026530854403972626, 0.18021118640899658, -0.09601479768753052, -0.3132436275482178, 0.1514887660741806, 0.0009265653789043427, -0.13203005492687225, 0.02609086222946644, 0.15141834318637848, 0.024163804948329926, -0.036726295948028564, -0.11430936306715012, -0.026667632162570953, -0.200968936085701, -0.02399403601884842, -0.027280056849122047, 0.05938314273953438, 0.023441553115844727, 0.15496967732906342, -0.0607808418571949, 0.06615724414587021, 0.07323611527681351, -0.04106808081269264, -0.02062997967004776, 0.1677875518798828, -0.19783468544483185, 0.021789267659187317, -0.14278967678546906, -0.017302541062235832, 0.0015083252219483256, -0.04817977175116539, 0.021543795242905617, 0.0695762038230896, 0.07374254614114761, -0.05712755396962166, -0.006467603147029877, 0.09018094092607498, 0.12781080603599548, 0.04420996829867363, -0.005341414362192154, 0.04537190496921539, 0.03597048297524452, -0.08577490597963333, -0.058761853724718094, 0.028210630640387535, -0.07061047106981277, 0.11859377473592758, -0.0614657998085022, 0.01363347563892603, 0.06907869130373001, 0.05004020035266876, 0.03157244250178337, 0.014455628581345081, -0.010076018050312996, 0.008748396299779415, -0.08513534069061279, -0.1644212156534195, -0.023022761568427086, 0.029845938086509705, 0.4175855219364166, 0.10077366977930069, 0.07268550246953964, 0.08223649859428406, -0.13448317348957062, 0.025579696521162987, 0.006720304489135742, -0.02917066216468811, 0.05806712433695793, -0.033896446228027344, -0.03883432224392891, 0.061237115412950516, -0.08441495150327682, 0.03782185912132263, 0.06454021483659744, 0.07735585421323776, -0.051712166517972946, 0.06773797422647476, 0.18909263610839844, -0.28301528096199036, 0.10571187734603882, 0.2925567626953125, 0.10880520194768906, 0.1257672905921936, -0.08721158653497696, -0.1034095510840416, 0.03046697936952114, -0.07499780505895615, -0.07983573526144028, 0.185892716050148, -0.026061460375785828, 0.043076466768980026, 0.09968426823616028, 0.012951564975082874, 0.06318315118551254, -0.03182361647486687, -0.11862167716026306, -0.03106626868247986, -0.009685298427939415, -0.3326781690120697, 0.009446576237678528, 0.04459582641720772, 0.12271648645401001, 0.07953917235136032, 0.018314456567168236, 0.1132715716958046, -0.04330265894532204, 0.021863261237740517, 0.12518954277038574, -0.09150687605142593, -0.1672823429107666, 0.06556958705186844, -0.08432173728942871, 0.02903560735285282, -0.059023547917604446, -0.045893505215644836, -0.2227458506822586, -0.006460281554609537, 0.046986792236566544, -0.08427035808563232, -0.09458356350660324, 0.06473440676927567, 0.0002742235956247896, 0.013558201491832733, 0.0012695739278569818, -0.07634054869413376, 0.025394266471266747, -0.07193940132856369, 0.01753055490553379, 0.08694884926080704, -0.09036722034215927, 0.14030583202838898, 0.06945591419935226, -0.05450707674026489, 0.09790416806936264, -0.052286308258771896, 0.09650144726037979, -0.06731686741113663, -0.04889306053519249, 0.1514156460762024, 0.041173115372657776, -0.015946758911013603, 0.10390236228704453, 0.08525750786066055, -0.12105266004800797, -0.054916638880968094, -0.022215446457266808, -0.19939810037612915, -0.21524851024150848, -0.12825997173786163, -0.026305899024009705, 0.06506676971912384, -0.02785133756697178, 0.07940758764743805, -0.15250051021575928, 0.054695311933755875, 0.1441204994916916, -0.05242982506752014, -0.21791677176952362, -0.10833903402090073, -0.10996666550636292, 0.025681832805275917, 0.009392053820192814, -0.17975890636444092, 0.01935439743101597, 0.18608994781970978, 0.28128209710121155, 0.1824120730161667, 0.012743785977363586, 0.11171120405197144, -0.03284444659948349, 0.19157803058624268, 0.12011706084012985, 0.12805096805095673, 0.03298428654670715, -0.043485794216394424, -0.0014598891139030457, 0.02988208830356598, -0.06347567588090897, 0.012536627240478992, 0.1979227066040039, -0.0805620476603508, -0.009254232048988342, -0.046319276094436646, 0.06716359406709671, -0.07962464541196823, 0.0015854587545618415, -0.08647323399782181, 0.08565551042556763, 0.04649953171610832, 0.15518824756145477, -0.04637115076184273, 0.12816502153873444, 0.0846894383430481, -0.051876943558454514, 0.06197308376431465, 0.019878312945365906, 0.08332989364862442, -0.008991545997560024, 0.04545406624674797, -0.040699876844882965, -0.1032073125243187, -0.024323157966136932, 0.1425343155860901, -0.22687645256519318, 0.23910307884216309, 0.036504022777080536, -0.06826841086149216, -0.12123420834541321, -0.10265559703111649, 0.017456689849495888, 0.0008164321188814938, 0.15218485891819, -0.009266016073524952, -0.0012009380152449012, -0.21210302412509918, -0.10745975375175476, 0.10549316555261612, 0.03856693580746651, 0.03657009080052376, -0.13404275476932526, 0.052799779921770096, 0.03811008855700493, -0.039365701377391815, 0.007281457539647818, 0.013212923891842365, -0.07761599868535995, -0.04412766173481941, 0.029376888647675514, -0.120659239590168, 0.003096355125308037, 0.00047036571777425706, -0.1645936816930771, 0.03991708904504776, -0.04777953028678894, -0.06391412019729614, -0.07318248599767685, -0.048134371638298035, 0.16068513691425323, -0.031018570065498352, -0.03909960016608238, 0.006182674318552017, 0.006442796438932419, -0.021020948886871338, -0.19374202191829681, 0.08646935969591141, -0.08871760964393616, 0.08230971544981003, -0.027621284127235413, 0.07286959141492844, -0.09501463174819946, 0.08195579051971436, -0.010250876657664776, -0.04826701804995537, -0.07170074433088303, -0.10257193446159363, 0.1722809225320816, -0.16609260439872742, 0.05668574944138527, 0.20385326445102692, 0.08645987510681152, 0.023457206785678864, 0.13138550519943237, -0.01910732313990593, 0.2359132319688797, 0.1509600430727005, -0.06735027581453323, 0.2012328952550888, 0.16506753861904144, 0.02818257175385952, -0.24239438772201538, 0.028120817616581917, -0.14747248589992523, -0.02859661914408207, 0.012994161807000637, -0.19665265083312988, 0.0798192024230957, 0.17199619114398956, -0.04278774559497833, 0.17435158789157867, -0.16989298164844513, -0.01101138349622488, 0.14749111235141754, -0.023174196481704712, 0.4009016752243042, -0.15381097793579102, -0.03487349674105644, -0.14173951745033264, -0.04311162233352661, 0.16491955518722534, -0.18788187205791473, 0.038813307881355286, -0.03758544847369194, 0.09428620338439941, -0.020799778401851654, -0.057911526411771774, 0.17270606756210327, -0.018279550597071648, 0.0681241825222969, -0.029812097549438477, -0.0971953272819519, 0.05979736149311066, -0.031290147453546524, -0.012667648494243622, -0.05585388466715813, 0.03746865317225456, -0.13913623988628387, -0.014237907715141773, 0.0035582289565354586, -0.006292179226875305, 0.07406222075223923, -0.10160408169031143, -0.06972155719995499, 0.026430882513523102, -0.07025039941072464, -0.04421325400471687, 0.08382055163383484, -0.023208079859614372, 0.030034124851226807, 0.038590673357248306, 0.13650475442409515, -0.13353611528873444, -0.017310423776507378, -0.057906825095415115, -0.08499894291162491, 0.12490978091955185, -0.28523901104927063, 0.08113165199756622, 0.15479160845279694, 0.006609676871448755, -0.031201303005218506, 0.07719793170690536, 0.008302085101604462, 0.12794198095798492, 0.13714416325092316, -0.019123034551739693, -0.13275380432605743, 0.07628246396780014, -0.019569963216781616, 0.021348662674427032, 0.07056950777769089, -0.041258957237005234, 0.074671171605587, -0.007964025251567364, -0.021898498758673668, 0.022725576534867287, -0.07027575373649597, 0.09027273207902908, 0.0958358570933342, 0.06857255846261978, -0.20159859955310822, 0.2130136489868164, 0.005324976053088903, -0.06372480094432831, 0.0101168779656291, -0.02699638344347477, -0.06241973862051964, -0.04663325846195221, 0.044878557324409485, 0.1764933466911316, -0.09692544490098953, -0.12287545949220657, 0.04258286952972412, -0.10933202505111694, 0.027313312515616417, 0.1880994439125061, 0.031228646636009216, 0.015247348695993423, 0.008323274552822113, -0.08320002257823944, 0.0020769264083355665, -0.013763539493083954, -0.19366200268268585, -0.00466466648504138, -0.06501329690217972, -0.15259623527526855, -0.06550193578004837, 0.27239322662353516, -0.08554389327764511, -0.035327520221471786, -0.05811997875571251, 0.07695567607879639, -0.39803028106689453, 0.011901375837624073, 0.09608572721481323, 0.03598231077194214, -0.06047151982784271, 0.040552545338869095, -0.04450178146362305, -0.024635883048176765, -0.10841355472803116, 0.10204660147428513, 0.05229514464735985, 0.0374629907310009, -0.06287574768066406, 0.014159112237393856, 0.015523792244493961, 0.11974851042032242, 0.1671690195798874, 0.0669744610786438, -0.00318097323179245, 0.07876068353652954, 0.013450313359498978, -0.1410490721464157, 0.019762912765145302, 0.07117132097482681, 0.11040683835744858, 0.07651709765195847, 0.048629652708768845, 0.04923403263092041, -0.14606726169586182, 0.05872192978858948, -0.044988226145505905, -0.04581620171666145, 0.04798119142651558, -0.11466098576784134, 0.0010626502335071564, 0.03210025653243065, -0.08040279150009155, 0.16025854647159576, 0.06656547635793686, -0.09422210603952408, 0.07930754870176315, 0.019943175837397575, -0.042960405349731445, -0.07889372855424881, -0.023808250203728676, -0.1095186099410057, -0.16734309494495392, 0.0916987732052803, 0.06042599678039551, -0.10413100570440292, 0.5638594627380371, -0.08972272276878357, -0.0952494814991951, -0.031775180250406265, 0.06329230219125748, 0.014009810984134674, -0.03052794374525547, 0.3830703794956207, 0.12468069791793823, -0.011696644127368927, 0.0151725048199296, 0.07394180446863174, -0.023471659049391747, 0.2543107271194458, 0.10593203455209732, 0.06792076677083969, 0.15362542867660522, -0.04946720600128174, 0.05949069559574127, -0.0968484953045845, 0.10163148492574692, -0.01287460420280695, 0.004267646465450525, -0.03259103745222092, 0.07734037190675735, -0.15038330852985382, 0.05834229663014412, 0.017411882057785988, 0.00045885611325502396, -0.11223282665014267, -0.02481367252767086, -0.08495032787322998, 0.00894125271588564, -0.047148823738098145, -0.019312461838126183, 0.025570565834641457, -0.07381564378738403, -0.07432647794485092, 0.25964587926864624, 0.08234088867902756, 0.007383586373180151, 0.08670366555452347, -0.11647534370422363, 0.0629705935716629, 0.05178697779774666, 0.012354609556496143, -0.054563868790864944, 0.06303942203521729, -0.06269950419664383, 0.07407039403915405, -0.11259263753890991, -0.06126510724425316, 0.030054643750190735, -0.04431329295039177, 0.0006667475099675357, -0.12794174253940582, -0.024148577824234962, -0.0726364403963089, 0.07508321851491928, -0.037386734038591385, 0.11484000831842422, -0.007366857957094908, 0.007672350853681564, 0.03522777184844017, 0.061524007469415665, 0.03879738599061966, 0.08345967531204224, -0.018363477662205696, -0.0069135017693042755, -0.08751776069402695, 0.08974704146385193, 0.001673243590630591, -0.0607307143509388, -0.07771161943674088, 0.1476641744375229, 0.27374136447906494, -0.21049201488494873, 0.003955854568630457, 0.022534703835844994, 0.05853875353932381, 0.009458939544856548, 0.20189355313777924, 0.059649329632520676, 0.13106591999530792, -0.09216060489416122, -0.0478980652987957, 0.0380888395011425, -0.029546037316322327, -0.01964847929775715, 0.17952926456928253, 0.06628071516752243, -0.011640076525509357, -0.1155364140868187, 0.10148414969444275, -0.1994789093732834, 0.15020762383937836, -0.020894043147563934, -0.1424354761838913, -0.16895616054534912, -0.035860273987054825, 0.043095704168081284, 0.04076541215181351, -0.08253354579210281, -0.08119115978479385, 0.016558127477765083, -0.15106214582920074, -0.0243705864995718, -0.25996991991996765, -0.15858958661556244, 0.01935899443924427, 0.1783953160047531, 0.04805803298950195, 0.030334139242768288, 0.0808478370308876, 0.0034510064870119095, 0.01446549966931343, -0.07236674427986145, 0.09030855447053909, 0.048371315002441406, -0.016314132139086723, -0.08694543689489365, -0.012060035951435566, -0.03405405953526497, -0.05807814002037048, 0.0906427726149559, 0.06605314463376999, -0.0420222245156765, 0.06230921670794487, -0.019820423796772957, -0.035825107246637344, 0.026600385084748268, -0.04347934201359749, 0.11369788646697998, 0.030153436586260796, -0.03242159262299538, 0.008647908456623554, -0.046300727874040604, 0.11545276641845703, 0.06235067546367645, -0.07439209520816803, -0.12037817388772964, 0.03339416906237602, -0.04235631600022316, 0.05854475870728493, -0.03412840887904167, -0.1062060073018074, 0.06555157899856567, -0.1065988838672638, 0.06700112670660019, 0.017934055998921394, 0.043227266520261765, 0.15474404394626617, 0.0785965546965599, -0.009413106366991997, -0.016344433650374413, 0.022018246352672577, -0.036862410604953766, -0.0796675980091095, -0.09553274512290955 ]
06841bf18f29cd612f57387d30e201a7a04dfa33
# Dataset Card for "massive_cooking" [More Information needed](https://github.com/huggingface/datasets/blob/main/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
fathyshalab/massive_cooking
[ "region:us" ]
2023-02-08T11:15:28+00:00
{"dataset_info": {"features": [{"name": "id", "dtype": "string"}, {"name": "label", "dtype": "int64"}, {"name": "text", "dtype": "string"}], "splits": [{"name": "train", "num_bytes": 11804, "num_examples": 211}, {"name": "validation", "num_bytes": 2237, "num_examples": 43}, {"name": "test", "num_bytes": 4053, "num_examples": 72}], "download_size": 13756, "dataset_size": 18094}}
2023-02-08T12:24:48+00:00
[]
[]
TAGS #region-us
# Dataset Card for "massive_cooking" More Information needed
[ "# Dataset Card for \"massive_cooking\"\n\nMore Information needed" ]
[ "TAGS\n#region-us \n", "# Dataset Card for \"massive_cooking\"\n\nMore Information needed" ]
[ 6, 16 ]
[ "passage: TAGS\n#region-us \n# Dataset Card for \"massive_cooking\"\n\nMore Information needed" ]
[ -0.14675204455852509, 0.12920960783958435, 0.0020472409669309855, -0.03214319422841072, 0.06339022517204285, 0.15997184813022614, -0.030961990356445312, 0.10912159830331802, 0.1924678534269333, -0.031977616250514984, 0.09461227059364319, 0.0370926596224308, -0.019610075280070305, 0.26658952236175537, -0.0040025124326348305, -0.021004585549235344, 0.036974892020225525, 0.06932626664638519, -0.22061212360858917, 0.08714745938777924, 0.032106634229421616, -0.09390700608491898, 0.09722036868333817, -0.11386169493198395, -0.2375968098640442, 0.05078941211104393, -0.019140882417559624, -0.06264171004295349, 0.09996795654296875, -0.09422529488801956, 0.1257871687412262, -0.03645328804850578, -0.007867028936743736, -0.09044281393289566, 0.027854708954691887, -0.010776707902550697, -0.026232372969388962, 0.06630326062440872, 0.002407078631222248, 0.03010966256260872, -0.11642547696828842, -0.04271654784679413, -0.016900308430194855, 0.09135861694812775, -0.07483226805925369, -0.26463794708251953, -0.020691590383648872, -0.09584137052297592, -0.12248490750789642, -0.05154207721352577, 0.10717153549194336, -0.07432349771261215, -0.1866515427827835, 0.007802273146808147, 0.01032282318919897, 0.09996772557497025, -0.007739712484180927, 0.1148236095905304, -0.04396019130945206, 0.11344920098781586, 0.028991732746362686, 0.08716252446174622, 0.14572636783123016, -0.022015294060111046, -0.13850137591362, 0.020074903964996338, -0.06435802578926086, 0.009754251688718796, 0.07244371622800827, -0.04363512620329857, 0.33741965889930725, -0.07021605223417282, -0.015618445351719856, 0.005443790927529335, -0.12325727194547653, -0.08498375117778778, -0.009842723608016968, -0.04746345430612564, 0.042120132595300674, 0.012155978940427303, -0.003558388212695718, -0.03069937415421009, -0.052121832966804504, -0.1833907961845398, -0.13840200006961823, 0.12410061806440353, -0.07246008515357971, 0.03548246994614601, -0.14282384514808655, -0.00952681340277195, -0.10523883253335953, -0.046068981289863586, 0.03156832605600357, -0.06610064208507538, -0.037159986793994904, -0.008856179192662239, 0.05475142225623131, 0.10802555829286575, 0.15789732336997986, 0.03459116443991661, 0.07416325807571411, 0.01721976138651371, -0.08909069746732712, -0.004643637221306562, 0.143183171749115, -0.08275632560253143, -0.0009260934311896563, -0.10555754601955414, -0.09197013825178146, -0.13817724585533142, -0.08479119837284088, -0.10236866772174835, -0.03128468245267868, -0.06038757413625717, -0.03201323375105858, 0.05758075416088104, -0.02330607920885086, -0.1620873063802719, -0.062344327569007874, -0.01982569508254528, 0.2113923877477646, -0.04918761923909187, -0.006053391378372908, 0.03619106113910675, -0.03297162801027298, 0.13962842524051666, -0.1267823576927185, 0.015574147924780846, 0.11478901654481888, 0.07420022040605545, -0.10502530634403229, -0.11497534066438675, -0.05594617500901222, 0.06015085428953171, 0.07446758449077606, -0.23026250302791595, 0.06827033311128616, -0.013611993752419949, -0.19466447830200195, 0.021011004224419594, 0.06472844630479813, -0.0717606246471405, 0.05320493131875992, 0.05567595735192299, 0.10663317888975143, -0.036401938647031784, -0.024238310754299164, 0.295254111289978, -0.07182098925113678, 0.10720255970954895, -0.017907191067934036, 0.003344855038449168, -0.14559252560138702, 0.06284938752651215, -0.06099116802215576, 0.029886901378631592, -0.09282088279724121, -0.012581671588122845, -0.039490919560194016, 0.05188942328095436, -0.11431730538606644, 0.00027609214885160327, -0.11529459059238434, -0.01390222180634737, -0.10671285539865494, 0.1490342915058136, -0.2924451529979706, 0.01283981092274189, 0.11247707158327103, -0.09696148335933685, -0.13493283092975616, 0.08531182259321213, -0.021620366722345352, 0.14678524434566498, 0.11005457490682602, 0.18556281924247742, 0.01788298971951008, 0.0746118351817131, 0.10264066606760025, 0.1833525002002716, -0.02275709994137287, -0.26316559314727783, 0.10380116105079651, -0.05787718668580055, -0.27065035700798035, 0.019118590280413628, 0.1912582814693451, -0.027698732912540436, -0.0427677258849144, -0.10494555532932281, -0.010519888252019882, -0.15156200528144836, 0.09226548671722412, -0.04334678873419762, 0.04469502344727516, 0.017789699137210846, 0.13777558505535126, 0.00837510172277689, 0.051287028938531876, 0.030477695167064667, -0.024962903931736946, 0.07635100930929184, 0.0985165387392044, -0.1215277835726738, -0.02586977928876877, -0.11839235574007034, -0.05333733931183815, 0.008375407196581364, 0.05824429169297218, -0.03931393846869469, 0.06328939646482468, 0.07897146046161652, -0.01783275604248047, 0.06429140269756317, 0.07851723581552505, 0.1333020031452179, 0.09106485545635223, -0.04152044281363487, 0.04569532349705696, -0.021582238376140594, -0.07380854338407516, -0.015912743285298347, -0.019932307302951813, -0.059902410954236984, 0.10190744698047638, 0.0032429557759314775, 0.014349231496453285, -0.04255712777376175, -0.0123331593349576, -0.00862452294677496, 0.022337976843118668, 0.029216060414910316, -0.03277873620390892, -0.11387424170970917, -0.13722370564937592, 0.013148289173841476, 0.05285767838358879, 0.3761065602302551, 0.0479477196931839, 0.018481271341443062, 0.04595772549510002, -0.14077337086200714, 0.03859514743089676, -0.03240394964814186, -0.11854927986860275, 0.03273715451359749, -0.13808242976665497, -0.0238984152674675, 0.02785794623196125, -0.02485565096139908, 0.05666610971093178, 0.06330104917287827, 0.0866730734705925, -0.055298902094364166, 0.05133839696645737, 0.09440530091524124, -0.17799703776836395, 0.0932270959019661, 0.24109840393066406, 0.22254449129104614, 0.07612799853086472, 0.01310768909752369, -0.049647651612758636, 0.003177418140694499, -0.027423487976193428, -0.12521201372146606, 0.15775075554847717, -0.13508330285549164, 0.12927114963531494, 0.05631769448518753, 0.0683773010969162, 0.0875902995467186, -0.052825961261987686, -0.04256105422973633, 0.02942865714430809, -0.045531708747148514, -0.15092141926288605, -0.03945471718907356, 0.02168331667780876, 0.018715135753154755, 0.05247906595468521, 0.02578284591436386, 0.14546643197536469, -0.004696036223322153, 0.09316480904817581, 0.14082331955432892, -0.1281520277261734, -0.08112947642803192, 0.010610231198370457, -0.14467903971672058, 0.07186026126146317, 0.002925323089584708, -0.047222062945365906, -0.14767000079154968, -0.08336285501718521, 0.07224872708320618, -0.16353090107440948, -0.11952853202819824, 0.0029043604154139757, -0.08863881230354309, 0.0031261155381798744, -0.06988956034183502, -0.09628579020500183, 0.007551964838057756, -0.023013224825263023, 0.053273484110832214, 0.058401916176080704, -0.06465733796358109, 0.12657330930233002, -0.0027083707973361015, 0.02327268011868, 0.06038133054971695, 0.005383219104260206, -0.03741855546832085, -0.06600426137447357, -0.0686095580458641, 0.1599249243736267, 0.04974167048931122, 0.0020473049953579903, 0.04480946436524391, 0.139876589179039, -0.1234779879450798, -0.05466821417212486, -0.03922726586461067, -0.1706073135137558, -0.18519529700279236, -0.15824583172798157, -0.054087504744529724, 0.031019914895296097, 0.11466526985168457, 0.07753126323223114, -0.08765328675508499, 0.07009812444448471, 0.09012561291456223, 0.022976838052272797, -0.1515958160161972, -0.13293835520744324, -0.03598237782716751, -0.028336111456155777, -0.06917364150285721, -0.10438083112239838, 0.028749842196702957, 0.2051141858100891, 0.24411559104919434, 0.1932247281074524, 0.13054031133651733, 0.24380874633789062, 0.02798283100128174, 0.08773999661207199, 0.054569002240896225, 0.17708326876163483, 0.005060933064669371, 0.010333473794162273, -0.06341031938791275, -0.004149693064391613, -0.1080770343542099, -0.0410592146217823, 0.06751157343387604, -0.1608434021472931, 0.02193499729037285, -0.058942560106515884, 0.04637029394507408, -0.08389417082071304, -0.03274743631482124, -0.15003544092178345, 0.12401007860898972, 0.08038835972547531, 0.09825662523508072, -0.13185998797416687, 0.0753711462020874, 0.03907240182161331, -0.06196703389286995, -0.0012792417546734214, -0.0025347608607262373, 0.07721154391765594, -0.043312594294548035, 0.022182710468769073, 0.017780598253011703, -0.038840070366859436, -0.002243750263005495, 0.16903506219387054, -0.2053290158510208, 0.22911015152931213, 0.02905397303402424, -0.06181789189577103, -0.23883658647537231, -0.10044583678245544, -0.07180067896842957, -0.034214600920677185, 0.15824788808822632, 0.019639592617750168, -0.06962167471647263, -0.15594874322414398, -0.1567533314228058, 0.0803305059671402, 0.04049744829535484, -0.00564135517925024, -0.22185677289962769, 0.0329979844391346, 0.03456501662731171, -0.009675840847194195, -0.12823249399662018, -0.08584858477115631, -0.08410752564668655, -0.06953007727861404, 0.02353370003402233, -0.06741449236869812, 0.019473789259791374, 0.004343168810009956, -0.00010070262214867398, 0.12604254484176636, 0.014937875792384148, -0.0018267047125846148, -0.14930659532546997, -0.06162813678383827, 0.17695148289203644, 0.009814308024942875, -0.0023757419548928738, -0.00921216793358326, 0.026193615049123764, -0.07322517037391663, -0.12975063920021057, 0.18591319024562836, -0.05503294616937637, 0.022682558745145798, -0.017956681549549103, -0.009492938406765461, 0.08092130720615387, 0.03581959754228592, 0.00013822532491758466, 0.04411623999476433, -0.1021723747253418, -0.0796004980802536, -0.019691430032253265, -0.04414641857147217, 0.11775389313697815, 0.3130997121334076, 0.009271800518035889, 0.030726565048098564, 0.1910194307565689, 0.02097778581082821, 0.13776937127113342, 0.08051747828722, -0.006411811336874962, 0.2414284348487854, 0.10942064225673676, -0.013231126591563225, -0.20493139326572418, -0.0013582812389358878, -0.21792350709438324, -0.018141644075512886, -0.009196151047945023, -0.25882941484451294, 0.2981896996498108, 0.2429782599210739, -0.05416727066040039, 0.23660117387771606, -0.20511344075202942, -0.08728805929422379, 0.08224033564329147, 0.016714375466108322, 0.4605752229690552, 0.0018093156395480037, -0.04058811813592911, -0.19230395555496216, -0.014490095898509026, 0.16691270470619202, -0.17240554094314575, 0.01932034082710743, -0.029684219509363174, 0.03410880267620087, -0.04054991900920868, -0.08671804517507553, 0.14282390475273132, 0.11014390736818314, 0.09800516813993454, -0.015247120521962643, -0.08849171549081802, 0.0497254878282547, 0.019223302602767944, 0.01864698715507984, -0.08135829865932465, -0.029044367372989655, -0.1395193487405777, -0.020267128944396973, 0.0278342142701149, 0.06056839972734451, 0.0066686514765024185, -0.07622625678777695, -0.011780189350247383, 0.06200035661458969, -0.11268658190965652, -0.028019262477755547, 0.09560156613588333, 0.06525016576051712, 0.13050785660743713, 0.01177289616316557, 0.12439405173063278, -0.17749015986919403, 0.014868183992803097, -0.05039961636066437, -0.059244077652692795, 0.058755114674568176, -0.17141419649124146, 0.06665252894163132, 0.08726796507835388, 0.02452222630381584, 0.002177685499191284, 0.04946357011795044, 0.015835510566830635, 0.013190343976020813, 0.07822810113430023, -0.08027681708335876, -0.02940613217651844, 0.13233953714370728, -0.09855008125305176, -0.024749167263507843, -0.0006817796966060996, 0.024509480223059654, 0.08818134665489197, 0.008243251591920853, -0.0293961800634861, 0.08270744979381561, -0.09584350138902664, 0.13938048481941223, 0.08241008222103119, 0.04838016256690025, -0.18403376638889313, 0.18007038533687592, 0.07421504706144333, -0.1386723518371582, -0.005770484916865826, -0.03051254153251648, -0.056458454579114914, -0.07764172554016113, 0.06685234606266022, 0.21041862666606903, -0.07767311483621597, -0.1243995875120163, 0.019135763868689537, -0.057868678122758865, 0.026288539171218872, 0.024271417409181595, 0.1455548107624054, 0.11674130707979202, -0.06917630136013031, -0.060946837067604065, -0.002939505036920309, -0.025027664378285408, -0.07402186095714569, 0.07567532360553741, -0.02476591058075428, -0.1554558277130127, 0.006189200561493635, 0.16749657690525055, -0.08415628969669342, -0.01949547789990902, -0.05099574476480484, 0.06792518496513367, -0.21060115098953247, 0.01426404807716608, 0.04883071407675743, 0.014439510181546211, -0.07405682653188705, 0.046091463416814804, 0.0011257356964051723, -0.048716459423303604, -0.07373186945915222, 0.13259932398796082, 0.05369936674833298, 0.00978618860244751, -0.12922462821006775, 0.02809464931488037, 0.10173105448484421, 0.07036373019218445, 0.06214944273233414, 0.055805906653404236, 0.0009815990924835205, -0.005624829791486263, -0.021229635924100876, -0.14411692321300507, 0.01882166601717472, 0.03817194700241089, 0.1024789810180664, 0.000603037653490901, 0.004467471968382597, 0.09337294846773148, 0.01761581189930439, 0.05876315385103226, 0.015810564160346985, -0.11069590598344803, 0.03872562199831009, -0.11345507204532623, -0.10405183583498001, -0.01733023300766945, -0.09813732653856277, 0.15969720482826233, -0.023022789508104324, -0.034426573663949966, 0.11346602439880371, -0.01552499458193779, 0.013459676876664162, -0.047773007303476334, -0.049982886761426926, -0.13820303976535797, -0.10301069170236588, 0.07042652368545532, 0.03462248295545578, -0.024817008525133133, 0.5626746416091919, -0.03823492303490639, -0.06288479268550873, 0.006670150440186262, 0.021337687969207764, -0.06361186504364014, -0.051373593509197235, 0.34863296151161194, 0.09635329991579056, 0.027933748438954353, 0.07688630372285843, 0.1110151931643486, 0.00844667199999094, 0.1783381551504135, 0.15527477860450745, 0.16423122584819794, 0.027369201183319092, -0.09828448295593262, 0.04900401458144188, -0.08381079137325287, -0.02451467700302601, -0.016015879809856415, -0.05747807025909424, -0.011254100129008293, 0.04674976319074631, -0.1358322948217392, -0.09529920667409897, -0.08360684663057327, -0.023254701867699623, -0.03135697543621063, -0.030252354219555855, -0.10088111460208893, -0.0294038075953722, -0.05630049481987953, -0.04225330799818039, 0.02850726991891861, -0.048099782317876816, -0.03309350460767746, 0.26208311319351196, 0.05659777298569679, 0.06664851307868958, 0.20066727697849274, -0.11216394603252411, 0.1005559116601944, 0.01477848831564188, 0.017442937940359116, -0.019880058243870735, -0.013891519978642464, -0.16112735867500305, -0.044230762869119644, 0.010972275398671627, -0.003149104304611683, -0.019956689327955246, 0.005019061267375946, -0.01979496330022812, -0.04137757048010826, -0.05533269792795181, -0.12325884401798248, 0.00856485590338707, -0.06533736735582352, 0.013200391083955765, -0.0038236838299781084, 0.0021448913030326366, 0.021750908344984055, 0.03936878591775894, 0.004297909792512655, 0.007991410791873932, 0.04566720873117447, 0.0411403551697731, -0.036748599261045456, 0.008721564896404743, 0.0021770780440419912, 0.0006070332019589841, -0.008011325262486935, 0.03920503705739975, 0.3423292338848114, -0.1574728637933731, -0.021872110664844513, 0.04577235132455826, 0.03170206397771835, 0.07679826766252518, 0.1802653968334198, 0.014328786171972752, 0.03617968410253525, -0.05682237446308136, -0.055436331778764725, 0.09725041687488556, -0.0398891344666481, -0.11789747327566147, 0.10278734564781189, 0.06369639188051224, -0.052170541137456894, -0.08154421299695969, 0.19723811745643616, -0.09807669371366501, 0.05302441120147705, -0.0022263319697231054, -0.03696203976869583, -0.15374936163425446, -0.06996191293001175, 0.0870438888669014, 0.029314478859305382, -0.007494745310395956, -0.0871707946062088, -0.018959006294608116, -0.07955104857683182, 0.017221512272953987, -0.3451306223869324, -0.10040773451328278, 0.05288385972380638, 0.14582236111164093, 0.12737439572811127, 0.060130417346954346, -0.004042138811200857, 0.034221671521663666, -0.0033188583329319954, -0.08906809985637665, -0.040492910891771317, 0.008087481372058392, 0.004013285972177982, -0.0496833510696888, -0.04932402819395065, -0.06526587903499603, -0.1322559416294098, 0.0453464612364769, -0.09069570153951645, -0.05133487656712532, 0.23413054645061493, 0.014162027277052402, -0.05373957380652428, -0.06196911633014679, -0.05672565847635269, 0.1531931757926941, 0.0675705224275589, 0.006060056854039431, -0.029958151280879974, -0.03311708942055702, 0.12118908017873764, 0.0302495826035738, -0.10532200336456299, -0.14532946050167084, -0.07695751637220383, -0.1127779483795166, 0.11889216303825378, -0.041706740856170654, -0.10717491060495377, 0.05901705473661423, -0.13543294370174408, 0.04078768193721771, 0.015088860876858234, 0.001105321105569601, 0.059158191084861755, 0.020625732839107513, 0.02821238711476326, -0.038488008081912994, -0.0035719326697289944, 0.022746939212083817, -0.15568660199642181, -0.0649910643696785 ]
ee4b72801a94f7bd65c7038592985c747374f513
# Dataset Card for "massive_takeaway" [More Information needed](https://github.com/huggingface/datasets/blob/main/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
fathyshalab/massive_takeaway
[ "region:us" ]
2023-02-08T11:15:45+00:00
{"dataset_info": {"features": [{"name": "id", "dtype": "string"}, {"name": "label", "dtype": "int64"}, {"name": "text", "dtype": "string"}], "splits": [{"name": "train", "num_bytes": 14816, "num_examples": 257}, {"name": "validation", "num_bytes": 2450, "num_examples": 44}, {"name": "test", "num_bytes": 3176, "num_examples": 57}], "download_size": 14963, "dataset_size": 20442}}
2023-02-08T12:25:09+00:00
[]
[]
TAGS #region-us
# Dataset Card for "massive_takeaway" More Information needed
[ "# Dataset Card for \"massive_takeaway\"\n\nMore Information needed" ]
[ "TAGS\n#region-us \n", "# Dataset Card for \"massive_takeaway\"\n\nMore Information needed" ]
[ 6, 15 ]
[ "passage: TAGS\n#region-us \n# Dataset Card for \"massive_takeaway\"\n\nMore Information needed" ]
[ -0.09985494613647461, 0.1305399388074875, -0.0025114016607403755, -0.0033710235729813576, 0.07422958314418793, 0.13195309042930603, -0.023057332262396812, 0.09355644136667252, 0.07846236974000931, -0.03283493593335152, 0.1504095047712326, 0.040853265672922134, 0.010699394159018993, 0.26626166701316833, -0.04369484260678291, -0.07277514785528183, 0.01909136027097702, 0.005219477228820324, -0.23387424647808075, 0.011809183284640312, 0.025773562490940094, -0.10255640000104904, 0.05064205080270767, -0.13863851130008698, -0.1372911036014557, 0.054129838943481445, -0.04887302219867706, -0.0445098914206028, 0.05683919042348862, -0.07331226021051407, 0.10036711394786835, 0.0052799927070736885, 0.0015668798005208373, -0.08584423363208771, 0.011748066172003746, -0.03551178053021431, -0.012915256433188915, 0.07023117691278458, 0.023532716557383537, -0.05967206135392189, -0.1440938115119934, 0.010087890550494194, 0.000720893731340766, 0.027430182322859764, -0.06729324162006378, -0.26850494742393494, -0.11265083402395248, -0.05675326660275459, -0.0041070785373449326, -0.06274227052927017, 0.07699881494045258, 0.06997361779212952, -0.1651594489812851, -0.0019565534312278032, -0.0014976144302636385, -0.003979132045060396, 0.0614447221159935, 0.1316474974155426, -0.08746817708015442, 0.12872737646102905, 0.040303345769643784, 0.06603725254535675, 0.13903112709522247, -0.03283489868044853, -0.027508771046996117, 0.024148471653461456, -0.0939468964934349, 0.09472447633743286, -0.036559902131557465, -0.04348011314868927, 0.3318731188774109, 0.02161664329469204, 0.03407302498817444, -0.07462877035140991, -0.043639011681079865, -0.07450220733880997, -0.00191947550047189, 0.035826798528432846, 0.07375115901231766, 0.012241089716553688, 0.005750465206801891, -0.014867856167256832, -0.10067609697580338, -0.11021494120359421, -0.18074791133403778, -0.058912243694067, -0.0808388814330101, 0.17321166396141052, -0.14491823315620422, 0.005675786640495062, -0.1447574496269226, -0.027165353298187256, 0.03859540820121765, -0.1076984629034996, -0.03542988374829292, -0.03625789284706116, 0.014910142868757248, 0.03711380064487457, 0.12725627422332764, -0.02212461642920971, 0.1127965897321701, -0.016463669016957283, -0.1301075965166092, 0.08638793230056763, 0.191620334982872, -0.09830079972743988, -0.09010475128889084, -0.12848827242851257, -0.040023721754550934, -0.10667236149311066, -0.029433751478791237, -0.05316506326198578, -0.08304762840270996, 0.015101185068488121, -0.13608163595199585, 0.11221013963222504, -0.053863525390625, -0.12328635156154633, -0.04013920947909355, -0.03312984108924866, 0.17983414232730865, -0.06035229191184044, 0.0023823552764952183, 0.010483810678124428, -0.101432666182518, 0.11578617990016937, -0.1162380799651146, -0.03408196568489075, 0.123157799243927, 0.04204604774713516, -0.11521721631288528, -0.05424174293875694, -0.06521009653806686, 0.0024939223658293486, 0.11264464259147644, -0.15797960758209229, 0.05339699611067772, -0.04959695041179657, -0.2872096598148346, 0.08757778257131577, 0.036498796194791794, -0.08039300888776779, 0.12289630621671677, 0.008500115014612675, 0.08860321342945099, -0.038506560027599335, -0.07845662534236908, 0.25805309414863586, -0.10927654057741165, 0.0659530833363533, 0.0015925097977742553, 0.06788638234138489, -0.16818135976791382, 0.018711227923631668, -0.11381138861179352, 0.006941850762814283, -0.09363415837287903, 0.04933157563209534, -0.08976645767688751, 0.15144385397434235, -0.11016780883073807, -0.02304510399699211, -0.11545111984014511, 0.010927126742899418, -0.08158890902996063, 0.08816561102867126, -0.25500860810279846, -0.04397015646100044, 0.1332225203514099, -0.10256381332874298, -0.17372043430805206, 0.053600527346134186, -0.06418585032224655, 0.12959866225719452, 0.061330776661634445, 0.260143518447876, -0.027644814923405647, 0.04592440277338028, 0.024481378495693207, 0.14001797139644623, -0.17888790369033813, -0.32942894101142883, 0.10568799078464508, -0.06063832342624664, -0.13648273050785065, 0.03635522350668907, 0.1805637776851654, 0.05833534151315689, -0.055602140724658966, -0.06534283608198166, 0.012781999073922634, -0.21517711877822876, -0.014762976206839085, -0.01726456917822361, 0.06210578978061676, -0.0406138151884079, 0.14424966275691986, 0.08239340037107468, 0.08455587178468704, 0.05319850519299507, -0.046570442616939545, -0.0226549431681633, 0.10194198787212372, -0.22543588280677795, -0.01656935177743435, -0.13141195476055145, -0.0017441415693610907, 0.0030764841940253973, 0.0038003670051693916, -0.007851779460906982, 0.12570367753505707, 0.10048194229602814, -0.06673026084899902, -0.02058260515332222, 0.11337791383266449, 0.19684845209121704, 0.04564031586050987, 0.02273736707866192, 0.00266258860938251, 0.024852456524968147, -0.07498972862958908, -0.02602512575685978, -0.0415772944688797, -0.05409752205014229, 0.09580706804990768, -0.01968284323811531, 0.04587044566869736, -0.014551999978721142, 0.03279133141040802, -0.01128760538995266, -0.018942810595035553, -0.03870881721377373, -0.010418493300676346, -0.09301348775625229, -0.10329318791627884, 0.004000308457762003, -0.02591383457183838, 0.3223892152309418, 0.11835207045078278, 0.0624176487326622, 0.02445060759782791, -0.07596515864133835, 0.030539734289050102, -0.0000566071284993086, -0.05573393404483795, 0.040297284722328186, -0.22834090888500214, -0.025520509108901024, 0.08312146365642548, -0.03932453691959381, 0.042220015078783035, 0.06506362557411194, 0.056002043187618256, -0.07297913730144501, 0.023803317919373512, 0.14387677609920502, -0.2564418911933899, 0.15742827951908112, 0.2140350341796875, 0.1040562242269516, 0.14365796744823456, -0.06566037982702255, -0.09791447967290878, -0.005289028864353895, -0.09635350853204727, -0.09501127153635025, 0.1937997043132782, -0.05159543827176094, 0.08647061139345169, 0.10840656608343124, 0.04808982461690903, 0.11161167919635773, -0.02987968735396862, -0.09868135303258896, 0.013304752297699451, -0.00021137564908713102, -0.20033462345600128, 0.009241548366844654, 0.007363070268183947, 0.07658780366182327, 0.03288664296269417, 0.029219212010502815, 0.14802616834640503, -0.013192780315876007, 0.0408935546875, 0.0944170355796814, -0.10646926611661911, -0.18650244176387787, -0.001753138261847198, -0.15159021317958832, 0.06919313222169876, 0.002110021188855171, -0.058547548949718475, -0.13151651620864868, -0.07021471112966537, 0.01811244897544384, -0.07620824873447418, -0.13780097663402557, -0.000555595732294023, -0.02622227929532528, 0.019022084772586823, -0.07011477649211884, -0.1006585881114006, 0.037755489349365234, -0.054326001554727554, 0.04833676666021347, 0.07216071337461472, -0.09400193393230438, 0.10887715965509415, 0.10064376890659332, -0.00918682012706995, 0.09603717923164368, -0.019496463239192963, -0.04549208655953407, -0.07494226098060608, -0.06548352539539337, 0.1647324562072754, 0.05032307282090187, -0.026610247790813446, 0.032789912074804306, 0.08901379257440567, -0.1358555555343628, -0.03723728656768799, -0.05335385352373123, -0.17990410327911377, -0.24045909941196442, -0.15712058544158936, -0.030893422663211823, 0.1525682955980301, 0.0868963822722435, 0.04574050009250641, -0.06615757197141647, 0.08431223034858704, 0.14098268747329712, -0.0819048210978508, -0.16638369858264923, -0.08299974352121353, -0.06924659758806229, -0.04568716883659363, -0.01570996828377247, -0.18245306611061096, -0.0226103737950325, 0.19818946719169617, 0.168314129114151, 0.1904289871454239, 0.05877199023962021, 0.19958019256591797, -0.05787137150764465, 0.133501797914505, 0.049165673553943634, 0.23743072152137756, 0.09616370499134064, -0.03411262109875679, -0.030972426757216454, 0.03402092307806015, -0.011738586239516735, -0.00029258907306939363, 0.2111467719078064, -0.08716627210378647, 0.011723198927938938, -0.10379617661237717, 0.08452150225639343, -0.06164003536105156, 0.039417047053575516, -0.2243548184633255, 0.10284962505102158, 0.056025732308626175, 0.14008331298828125, -0.08370315283536911, 0.09362556785345078, 0.11547857522964478, -0.01164928451180458, 0.1045399084687233, 0.014514671638607979, 0.04130485653877258, -0.015663983300328255, 0.015442294999957085, -0.07557538151741028, -0.09060194343328476, -0.03356434032320976, 0.1580943614244461, -0.13376881182193756, 0.1573149561882019, 0.01867683231830597, -0.09668860584497452, -0.17382580041885376, -0.09716105461120605, -0.010066036134958267, -0.0391264334321022, 0.15979662537574768, -0.03911459818482399, -0.07038623839616776, -0.0828988328576088, -0.11126697808504105, 0.014789328910410404, 0.03651843219995499, -0.012011773884296417, -0.11237078905105591, 0.050038281828165054, 0.003278474323451519, 0.0012907529016956687, -0.1185358539223671, 0.04571026936173439, -0.11057598143815994, -0.06417711824178696, -0.011858263052999973, -0.09980525076389313, 0.04257252812385559, 0.004667213186621666, -0.09708953648805618, 0.09689609706401825, 0.013954720459878445, -0.004003655165433884, -0.1069662868976593, 0.03315162658691406, 0.21844890713691711, 0.04656548425555229, -0.009928297251462936, 0.0445035919547081, 0.0022262693382799625, -0.031735654920339584, -0.1579592227935791, 0.12070127576589584, -0.07107648253440857, 0.058307014405727386, -0.04643012210726738, 0.029723919928073883, -0.045013900846242905, 0.03159375861287117, -0.049997586756944656, -0.025183970108628273, -0.0656052827835083, -0.07477817684412003, 0.13133734464645386, -0.12675821781158447, 0.10598867386579514, 0.2658224403858185, 0.1147618517279625, -0.0418848991394043, 0.16153274476528168, -0.055605337023735046, 0.1919325441122055, 0.1574135571718216, -0.062195468693971634, 0.1969192624092102, 0.10341813415288925, 0.005372673273086548, -0.2736143469810486, 0.06840667128562927, -0.20167866349220276, -0.063497394323349, 0.06787009537220001, -0.18982762098312378, 0.14410103857517242, 0.19779027998447418, -0.06183796748518944, 0.31970760226249695, -0.19037674367427826, -0.04341229051351547, 0.14251230657100677, -0.014315144158899784, 0.43287956714630127, -0.10551658272743225, -0.004412040580064058, -0.15351156890392303, 0.04929526895284653, 0.23048821091651917, -0.07971040904521942, 0.017214929684996605, 0.0003851966466754675, 0.11946623027324677, -0.02253551222383976, -0.09620458632707596, 0.1600225865840912, -0.03215179219841957, 0.1500018835067749, -0.0468832291662693, -0.052122678607702255, 0.18408848345279694, -0.04355870187282562, 0.08616836369037628, -0.025712160393595695, -0.025150228291749954, -0.032891999930143356, -0.025442056357860565, 0.024842645972967148, 0.038166213780641556, 0.08928274363279343, -0.0612843781709671, -0.09274500608444214, 0.023650512099266052, -0.10406412184238434, -0.040673330426216125, 0.14389175176620483, 0.032709941267967224, -0.020009364932775497, -0.014230686239898205, 0.10929280519485474, -0.08638020604848862, 0.02832728810608387, -0.06868017464876175, -0.10239254683256149, 0.07617393881082535, -0.30427610874176025, 0.05873904377222061, 0.10100249946117401, 0.031208688393235207, 0.024234630167484283, 0.08517976105213165, -0.00786561518907547, 0.058555614203214645, 0.14847512543201447, -0.027597052976489067, -0.12237556278705597, 0.09817004948854446, -0.031414300203323364, 0.007862275466322899, 0.05064801126718521, -0.020751990377902985, 0.07573607563972473, -0.0025264122523367405, -0.02313990518450737, 0.07011353969573975, -0.07556057721376419, 0.10464468598365784, 0.05344138666987419, 0.04258603975176811, -0.21467141807079315, 0.2422364056110382, 0.02599399723112583, -0.17922979593276978, 0.00856732577085495, -0.06046879291534424, -0.04436839744448662, -0.07046680152416229, 0.04439245164394379, 0.20304657518863678, -0.037098173052072525, -0.10667763650417328, 0.03072834201157093, -0.07216651737689972, 0.03600473701953888, 0.12669652700424194, 0.08013027161359787, 0.08087524771690369, 0.006637451704591513, -0.029176509007811546, -0.057967472821474075, -0.03420109301805496, -0.10020160675048828, -0.008938218466937542, -0.04972909018397331, -0.1525091677904129, -0.04653482511639595, 0.1365719437599182, -0.08901889622211456, -0.020542822778224945, -0.03846895322203636, 0.06978388130664825, -0.21484676003456116, -0.0122276172041893, 0.02777174860239029, 0.007386130280792713, 0.0006244975957088172, 0.06540253758430481, -0.0183331910520792, -0.051831312477588654, -0.13122616708278656, 0.14237341284751892, 0.06749224662780762, 0.01888420805335045, -0.06642307341098785, -0.004229389596730471, 0.02548101171851158, 0.051263805478811264, 0.12108732014894485, 0.1268596202135086, 0.023253753781318665, 0.08305396139621735, -0.006762001663446426, -0.15723344683647156, 0.030313506722450256, 0.06599719822406769, 0.07848174124956131, 0.09199816733598709, 0.012715634889900684, 0.11474433541297913, -0.07456489652395248, 0.03612819314002991, -0.132888525724411, -0.10623349994421005, 0.061311010271310806, -0.07958763837814331, -0.05416073650121689, 0.035434234887361526, -0.0884452611207962, 0.1440352499485016, 0.03822654113173485, -0.02867720276117325, 0.10156592726707458, 0.010754172690212727, -0.02718578837811947, -0.07850129157304764, -0.04390311241149902, -0.12310842424631119, -0.09865687042474747, 0.12971846759319305, 0.04741491377353668, -0.06873025000095367, 0.5526249408721924, -0.036742404103279114, -0.1540650874376297, -0.052264504134655, 0.1158355325460434, -0.02200300432741642, 0.01705942302942276, 0.38304924964904785, 0.07639613747596741, -0.02114524319767952, -0.019649876281619072, 0.14120055735111237, 0.060637254267930984, 0.179044708609581, 0.045220427215099335, 0.09287477284669876, 0.021606678143143654, -0.05226064845919609, 0.002470988081768155, -0.13040244579315186, 0.07400011271238327, 0.0691930502653122, 0.036154840141534805, 0.007663215976208448, 0.0449930764734745, -0.11448990553617477, -0.0071520437486469746, 0.022743143141269684, 0.001892917207442224, -0.07561851292848587, 0.002735694870352745, -0.07571543008089066, -0.09566786885261536, -0.04776150360703468, -0.08924804627895355, 0.047822922468185425, -0.038756486028432846, -0.06937744468450546, 0.32575637102127075, 0.11030620336532593, 0.01263301819562912, 0.03641317039728165, -0.11712466925382614, 0.0818205326795578, 0.037669841200113297, -0.003600313561037183, -0.1194271668791771, 0.02169431932270527, -0.08036864548921585, 0.019976137205958366, -0.08480148017406464, -0.014290721155703068, 0.002616672543808818, -0.0380064882338047, 0.03115699253976345, -0.06888772547245026, -0.038689024746418, -0.10589784383773804, 0.05961121618747711, -0.08403628319501877, 0.10003247857093811, -0.02841787599027157, 0.026031527668237686, 0.01371691469103098, 0.07346311211585999, -0.001625626697205007, 0.03981487452983856, -0.05123312026262283, 0.05621941387653351, -0.029418397694826126, 0.09118178486824036, -0.021685583516955376, -0.0433708094060421, -0.04024701938033104, 0.14732614159584045, 0.3466757535934448, -0.11609490215778351, -0.020712606608867645, 0.03766099736094475, 0.03565001115202904, 0.010645026341080666, 0.16330425441265106, 0.02056344598531723, 0.10574670881032944, -0.055631108582019806, -0.010499208234250546, 0.04648890346288681, -0.05550474300980568, 0.015010591596364975, 0.082183338701725, 0.042513903230428696, -0.006699289660900831, -0.1007971540093422, 0.1278223991394043, -0.174387127161026, 0.11258096992969513, 0.05886147916316986, -0.11434923112392426, -0.103993721306324, -0.026969606056809425, 0.12551695108413696, 0.013078237883746624, -0.019603250548243523, -0.10286161303520203, -0.01547893974930048, -0.08608221262693405, -0.02812364138662815, -0.35044801235198975, -0.19245940446853638, 0.019656997174024582, 0.11896069347858429, 0.09555476158857346, 0.0004772311367560178, 0.054914798587560654, 0.008388037793338299, -0.01018067728728056, -0.07309647649526596, 0.044596925377845764, -0.0033316705375909805, 0.00601735757663846, -0.05337735638022423, -0.01002421136945486, -0.0715227946639061, -0.036706648766994476, 0.025869427248835564, -0.08944368362426758, -0.06373012810945511, 0.10397785156965256, -0.049825720489025116, -0.019793547689914703, -0.030479595065116882, -0.03513548523187637, 0.12159126251935959, 0.021435629576444626, -0.03251395374536514, 0.01837306097149849, -0.04981139302253723, 0.12640628218650818, 0.08883970230817795, -0.06292664259672165, -0.1095210611820221, -0.019366798922419548, -0.07295964658260345, 0.07695358991622925, -0.028389690443873405, -0.1215679869055748, 0.08699266612529755, -0.102165088057518, 0.010559223592281342, 0.012979434803128242, 0.004919461905956268, 0.1531607210636139, 0.09317616373300552, -0.01147241797298193, 0.08533725887537003, 0.026295945048332214, -0.02420775406062603, -0.05815473943948746, -0.09100798517465591 ]
2246e56eacbaa04bae156064ea64af5f4211f7b6
# Dataset Card for "massive_music" [More Information needed](https://github.com/huggingface/datasets/blob/main/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
fathyshalab/massive_music
[ "region:us" ]
2023-02-08T11:16:01+00:00
{"dataset_info": {"features": [{"name": "id", "dtype": "string"}, {"name": "label", "dtype": "int64"}, {"name": "text", "dtype": "string"}], "splits": [{"name": "train", "num_bytes": 16865, "num_examples": 332}, {"name": "validation", "num_bytes": 2899, "num_examples": 56}, {"name": "test", "num_bytes": 4123, "num_examples": 81}], "download_size": 16262, "dataset_size": 23887}}
2023-02-08T12:25:29+00:00
[]
[]
TAGS #region-us
# Dataset Card for "massive_music" More Information needed
[ "# Dataset Card for \"massive_music\"\n\nMore Information needed" ]
[ "TAGS\n#region-us \n", "# Dataset Card for \"massive_music\"\n\nMore Information needed" ]
[ 6, 14 ]
[ "passage: TAGS\n#region-us \n# Dataset Card for \"massive_music\"\n\nMore Information needed" ]
[ -0.12067761272192001, 0.14498735964298248, -0.003379830392077565, 0.02336651086807251, 0.0909576341509819, 0.050432924181222916, -0.01053133886307478, 0.008942724205553532, 0.07306947559118271, 0.028854670003056526, 0.038075041025877, 0.06688596308231354, -0.004188558552414179, 0.15756303071975708, -0.03621508553624153, -0.08454754948616028, 0.02976205386221409, -0.015214365907013416, -0.1762416809797287, 0.012603037059307098, -0.006859696004539728, -0.02026498131453991, -0.008406911976635456, -0.12161728739738464, -0.1835796982049942, 0.06337719410657883, -0.07535620778799057, -0.018343277275562286, -0.014628459699451923, -0.08038777858018875, -0.017417117953300476, 0.023494111374020576, -0.0036752994637936354, -0.013663933612406254, 0.018269561231136322, -0.0230389516800642, -0.03727344796061516, 0.01896301470696926, 0.12669360637664795, -0.1310657262802124, -0.20796699821949005, 0.017741136252880096, -0.03347572684288025, 0.03570841997861862, -0.05138218402862549, -0.33962467312812805, -0.154676154255867, -0.12501536309719086, -0.015352852642536163, -0.02368929795920849, 0.027961365878582, 0.05531439557671547, -0.135665163397789, -0.00026700273156166077, 0.05456338822841644, 0.02813124470412731, 0.06782609224319458, 0.24488407373428345, 0.04897226020693779, 0.18029256165027618, 0.027316344901919365, 0.11503782868385315, 0.13735157251358032, -0.039533451199531555, 0.014002211391925812, -0.04999599978327751, -0.13820576667785645, -0.00815911591053009, 0.020356981083750725, -0.03565690666437149, 0.39370450377464294, -0.029182719066739082, -0.0065741403959691525, 0.007974113337695599, 0.04237683117389679, -0.094507597386837, -0.046207454055547714, 0.04713837429881096, 0.07531685382127762, 0.05218653008341789, -0.055793870240449905, -0.030733779072761536, 0.0015166321536526084, -0.11101895570755005, -0.12484698742628098, -0.05320972576737404, -0.09209349006414413, 0.0624924898147583, -0.04788625240325928, -0.06821855157613754, -0.2300982028245926, 0.0009250541334040463, 0.009716716594994068, -0.05657875910401344, -0.0804990902543068, -0.0032077182549983263, -0.041941314935684204, 0.10605079680681229, 0.13697409629821777, 0.030417425557971, 0.10527002066373825, -0.05899059399962425, -0.09730974584817886, 0.0799429640173912, 0.22377264499664307, -0.17578501999378204, -0.029870769008994102, -0.1859094351530075, 0.03140455111861229, -0.13597066700458527, 0.05276206135749817, -0.07232490926980972, -0.1317625492811203, 0.0023730245884507895, -0.05052544176578522, 0.06291133165359497, -0.06301497668027878, -0.16035448014736176, -0.11082067340612411, -0.021956348791718483, 0.10814452171325684, -0.0643354058265686, 0.0414033867418766, -0.021440209820866585, 0.01946844346821308, 0.1029084324836731, -0.15481482446193695, 0.10623764991760254, 0.1394670158624649, 0.17222197353839874, -0.02109481208026409, -0.053528714925050735, -0.028818942606449127, 0.06381436437368393, 0.18771255016326904, -0.23606233298778534, 0.13893727958202362, 0.036090124398469925, -0.1387794464826584, 0.017569681629538536, 0.050762634724378586, -0.008293118327856064, -0.04906070604920387, 0.04178796336054802, 0.07122086733579636, -0.0018777897348627448, -0.14973947405815125, 0.1675317883491516, -0.12950563430786133, 0.057951420545578, -0.018454881384968758, 0.10327399522066116, -0.20220933854579926, 0.12445080280303955, -0.1286749690771103, -0.006962226238101721, -0.11583251506090164, 0.01918349787592888, -0.1370512992143631, 0.03840917721390724, -0.018465539440512657, -0.04004986211657524, -0.13510674238204956, 0.0643300712108612, -0.02627618797123432, -0.042055170983076096, -0.2989291846752167, -0.12667186558246613, 0.08073687553405762, -0.059198979288339615, -0.16576121747493744, 0.12100353091955185, -0.013675163500010967, 0.027020342648029327, 0.025363275781273842, 0.25719934701919556, 0.008362357504665852, 0.04314149543642998, -0.012912404723465443, 0.1381639689207077, -0.06287991255521774, -0.2863003611564636, 0.1212773323059082, -0.08500764518976212, -0.057477157562971115, -0.0006890613585710526, 0.24968890845775604, 0.0021905277390033007, -0.02865437977015972, -0.0013502842048183084, -0.016252705827355385, -0.15311004221439362, -0.0062467302195727825, 0.07994116097688675, -0.011976789683103561, -0.028171783313155174, 0.10235340148210526, 0.17569243907928467, 0.07105351239442825, 0.07974030822515488, -0.02853837050497532, 0.03254267945885658, 0.14506690204143524, -0.17288382351398468, -0.01000081654638052, -0.22115255892276764, 0.16072647273540497, -0.0066762082278728485, 0.03777848929166794, 0.1396443247795105, 0.04719792678952217, 0.0032869994174689054, -0.09728437662124634, 0.005477315280586481, 0.07492177933454514, 0.16602078080177307, 0.023338017985224724, 0.06027704477310181, -0.07606135308742523, 0.03609557822346687, -0.06250277906656265, -0.024223938584327698, 0.03429475426673889, -0.13895203173160553, 0.15369318425655365, -0.0793403908610344, 0.04812923073768616, -0.04882069304585457, 0.06462550908327103, 0.034257709980010986, -0.006492966320365667, 0.033088430762290955, -0.050410300493240356, -0.0011053129564970732, -0.02248896099627018, -0.013832678087055683, -0.023552848026156425, 0.3800930976867676, 0.1639513522386551, 0.017274072393774986, 0.032730575650930405, -0.0015319321537390351, 0.11496522277593613, -0.03547339141368866, -0.09957253187894821, 0.04097525402903557, -0.16248182952404022, -0.043613776564598083, 0.06690479069948196, -0.1310616433620453, 0.04400726035237312, 0.09683249145746231, 0.028866207227110863, -0.03390124812722206, 0.007922006770968437, 0.12421197444200516, -0.23259834945201874, 0.1640034168958664, 0.2495182752609253, -0.004921579267829657, 0.29912424087524414, -0.06144436076283455, -0.09264498203992844, 0.004755857866257429, -0.1805749535560608, -0.09217772632837296, 0.16496390104293823, -0.06702166050672531, 0.07682643830776215, 0.08248380571603775, 0.06885282695293427, 0.034302979707717896, -0.056579139083623886, -0.09139194339513779, 0.022962240502238274, 0.006545299664139748, -0.23607444763183594, 0.03188789263367653, 0.03290475532412529, -0.023511016741394997, -0.02381829172372818, -0.05435093119740486, 0.18359124660491943, -0.05628516152501106, -0.015634601935744286, -0.05501781776547432, -0.20000134408473969, -0.11893123388290405, 0.013282964937388897, -0.12757588922977448, -0.020049920305609703, -0.002927590161561966, 0.021648064255714417, -0.10010295361280441, -0.01373811811208725, 0.06492014974355698, -0.04703051969408989, -0.14761410653591156, -0.06881928443908691, -0.034090686589479446, 0.07613542675971985, -0.03838836029171944, -0.005490223411470652, 0.055086832493543625, 0.020131153985857964, 0.054133106023073196, 0.005081893410533667, -0.11384931951761246, 0.12515437602996826, 0.09746841341257095, 0.12161049991846085, 0.06896039098501205, -0.02008475735783577, -0.06965882331132889, -0.1285819709300995, -0.005577701609581709, 0.10112324357032776, 0.00494370236992836, -0.06285921484231949, 0.052009467035532, 0.15854401886463165, -0.04691823199391365, -0.03910408169031143, 0.049951449036598206, -0.16903124749660492, -0.25039196014404297, -0.20107519626617432, -0.09409412741661072, 0.06124347448348999, -0.044705312699079514, 0.006839328911155462, 0.014441121369600296, -0.0091015063226223, 0.07651473581790924, 0.03944874554872513, -0.08034088462591171, -0.11872148513793945, -0.1120898500084877, 0.00848742201924324, -0.00011237027501920238, -0.15352840721607208, 0.012386751361191273, 0.21268953382968903, 0.12221533805131912, 0.1877143383026123, 0.17005343735218048, 0.17440146207809448, -0.06021369993686676, 0.11758933216333389, 0.04282645881175995, 0.19831039011478424, 0.1171875, 0.0209380891174078, -0.003000230761244893, -0.022996865212917328, -0.01641160063445568, -0.018097981810569763, 0.21467375755310059, -0.1166912317276001, -0.019547414034605026, -0.1232677474617958, -0.06512729078531265, -0.08737067133188248, -0.01989559642970562, -0.12829133868217468, 0.12133032083511353, 0.08783501386642456, 0.1899673342704773, -0.09268065541982651, 0.19327227771282196, 0.02660566009581089, 0.014990725554525852, 0.1610286831855774, 0.03191223368048668, 0.11633476614952087, -0.04842191934585571, -0.027892492711544037, 0.03853972628712654, -0.05593074485659599, 0.0387825109064579, 0.07136186212301254, -0.03135310113430023, 0.16668744385242462, 0.06119641661643982, 0.0036420549731701612, -0.05976888909935951, -0.0845879539847374, 0.03386140987277031, 0.06857218593358994, 0.16441355645656586, -0.0225689634680748, -0.10487885028123856, -0.07239163666963577, -0.10063690692186356, -0.0170452818274498, 0.06647377461194992, 0.01720353029668331, -0.19954991340637207, -0.01627255231142044, 0.007321392651647329, 0.015791162848472595, -0.12453574687242508, -0.05656623840332031, -0.09382889419794083, -0.08786702901124954, 0.05859307944774628, -0.1008128747344017, 0.01647024415433407, -0.055604416877031326, -0.1369256228208542, 0.06493542343378067, 0.09683545678853989, 0.019969860091805458, -0.09025513380765915, -0.1196124255657196, 0.23359274864196777, 0.10678251832723618, 0.042983923107385635, -0.0032331421971321106, 0.006962726358324289, -0.08103299885988235, -0.15022091567516327, 0.12158485502004623, -0.07752890139818192, 0.08937418460845947, -0.05387990176677704, 0.13521994650363922, -0.011743168346583843, 0.06956943869590759, -0.02937188744544983, 0.06300311535596848, 0.042219143360853195, -0.039248354732990265, 0.21820688247680664, -0.10196147114038467, 0.056464891880750656, 0.21937508881092072, 0.1187957301735878, -0.04635945335030556, 0.2537015974521637, -0.12239358574151993, 0.1244271993637085, 0.15250584483146667, -0.02631349302828312, 0.25333285331726074, 0.14344476163387299, -0.06576254963874817, -0.3087305724620819, 0.10447416454553604, -0.12178546190261841, -0.08132585138082504, 0.09820673614740372, -0.3042466342449188, 0.0777595266699791, 0.11237826198339462, -0.07736534625291824, 0.1502675563097, -0.17831416428089142, 0.03733186051249504, 0.1234327033162117, -0.16109074652194977, 0.39987102150917053, -0.06477689743041992, -0.07672932744026184, -0.22115807235240936, -0.06370241940021515, 0.251767098903656, -0.19653451442718506, 0.061012834310531616, 0.10547899454832077, 0.006400652229785919, 0.013065415434539318, -0.00617821142077446, 0.05949757620692253, 0.018029117956757545, 0.07904251664876938, 0.008648505434393883, 0.03217896446585655, 0.13850699365139008, 0.03767712041735649, -0.00526168430224061, -0.05850420519709587, -0.027339354157447815, -0.08181454241275787, -0.07357939332723618, 0.04753437265753746, 0.02462761104106903, 0.01755066029727459, -0.019243890419602394, -0.05815352872014046, 0.06493529677391052, -0.11965753883123398, -0.07388333231210709, 0.19907112419605255, 0.031660716980695724, -0.08997810631990433, -0.010975663550198078, 0.1385953724384308, -0.07359158992767334, -0.14525540173053741, 0.008215800859034061, -0.08586287498474121, 0.0823141559958458, -0.22518368065357208, 0.11797360330820084, 0.044722024351358414, 0.08813726902008057, -0.08329731971025467, 0.08306596428155899, -0.10746359825134277, -0.002367529785260558, 0.1167847141623497, -0.07356829941272736, -0.11171082407236099, 0.016443271189928055, -0.05724451318383217, 0.1564403474330902, 0.023964524269104004, -0.04027017951011658, 0.06384574621915817, -0.050720810890197754, 0.03771000728011131, 0.05744175240397453, -0.09833076596260071, 0.019632095471024513, -0.003536197589710355, -0.007259732112288475, -0.21406610310077667, 0.28809458017349243, 0.04510292410850525, -0.1611359417438507, -0.029143353924155235, -0.026695266366004944, -0.0030169168021529913, -0.0628950372338295, 0.14152215421199799, 0.15104418992996216, -0.05923612415790558, -0.11914053559303284, 0.13483501970767975, -0.06900914758443832, -0.023785917088389397, 0.11566046625375748, 0.08670977503061295, 0.05974885821342468, -0.032671235501766205, -0.029637372121214867, -0.016245367005467415, 0.03858964517712593, -0.03546488285064697, 0.042170122265815735, -0.1114303469657898, -0.22786009311676025, -0.03208912909030914, 0.10083148628473282, -0.10347754508256912, -0.03739700838923454, -0.01652003638446331, 0.07367204874753952, -0.22843320667743683, -0.024576887488365173, 0.08375916630029678, -0.014714610762894154, -0.030319148674607277, 0.08010291308164597, -0.024417899549007416, -0.05000613257288933, -0.05278518795967102, 0.07546860724687576, 0.06579054147005081, 0.05248511955142021, -0.08840491622686386, -0.0008619963773526251, 0.034344885498285294, 0.03916036710143089, 0.10452709347009659, 0.1295984387397766, -0.0030932649970054626, -0.02235320210456848, -0.11518993228673935, -0.22806185483932495, 0.11663355678319931, 0.07269886881113052, 0.08590290695428848, -0.033173996955156326, -0.01836361736059189, 0.08535625785589218, -0.012489874847233295, 0.033461909741163254, -0.07668663561344147, -0.08607902377843857, -0.02943376637995243, -0.16908931732177734, -0.09996619075536728, 0.05475281551480293, -0.056675974279642105, 0.2573534846305847, 0.09297624975442886, 0.07703135162591934, 0.10278228670358658, -0.00375975645147264, 0.022247860208153725, -0.05031082034111023, -0.02494145929813385, -0.17882020771503448, -0.2327488213777542, 0.1259615272283554, -0.000358908117050305, -0.05593542754650116, 0.47088944911956787, 0.043750789016485214, -0.19599772989749908, -0.06544644385576248, 0.1241726279258728, 0.08103852719068527, 0.003352581290528178, 0.367410808801651, 0.04622039571404457, -0.061393678188323975, -0.06444744020700455, 0.0838746502995491, 0.01901966519653797, 0.2046067714691162, -0.02862475998699665, 0.06709509342908859, 0.15118108689785004, -0.08551573753356934, 0.10773024708032608, -0.12548959255218506, 0.0010671485215425491, 0.05769137665629387, 0.12082628160715103, 0.058284942060709, 0.09657705575227737, 0.015185746364295483, -0.05666644498705864, -0.004617180675268173, 0.0989498719573021, -0.15429198741912842, 0.006327683571726084, -0.10823137313127518, -0.06490151584148407, -0.06907253712415695, -0.11029404401779175, 0.051253046840429306, -0.0909852609038353, 0.046906664967536926, 0.16908025741577148, -0.0025125269312411547, 0.027987003326416016, -0.01960497908294201, -0.16681401431560516, 0.04227178171277046, 0.07869897782802582, -0.05957399681210518, -0.1408403366804123, 0.06374282389879227, -0.09279847145080566, 0.11220002174377441, -0.10473356395959854, -0.022364899516105652, 0.014520916156470776, -0.005301898345351219, 0.08594923466444016, -0.12000007182359695, -0.024313217028975487, -0.038508091121912, 0.026192180812358856, -0.05147354677319527, 0.1271020919084549, 0.0409226231276989, 0.027289343997836113, 0.05504423752427101, 0.06674517691135406, 0.00408419081941247, 0.12480401992797852, 0.030099911615252495, -0.10493620485067368, -0.11833026260137558, 0.1348084807395935, 0.03818673640489578, -0.02627325989305973, -0.044715944677591324, 0.04104681685566902, 0.2848764955997467, -0.08981076627969742, -0.02460010163486004, 0.030007844790816307, 0.003592325374484062, -0.06731311976909637, 0.12341389805078506, 0.05455726385116577, 0.15614992380142212, 0.010062125511467457, -0.052254822105169296, -0.08570214360952377, -0.0044115944765508175, -0.013064880855381489, 0.08628660440444946, 0.09401621669530869, -0.10710694640874863, 0.030257679522037506, 0.1904163807630539, -0.24921007454395294, 0.12831147015094757, -0.054334402084350586, -0.08048233389854431, -0.13365817070007324, -0.07711987942457199, 0.09070122241973877, 0.13072693347930908, -0.03801918402314186, -0.10725706815719604, -0.048215579241514206, -0.15256008505821228, 0.0037748764734715223, -0.29854872822761536, -0.10969511419534683, -0.1049128845334053, 0.05723307654261589, 0.05131080374121666, 0.019182434305548668, 0.12602443993091583, -0.05116364732384682, 0.08314461261034012, -0.015303339809179306, 0.010848474688827991, -0.002821904607117176, -0.01225802768021822, -0.022847071290016174, 0.12740947306156158, -0.07955826073884964, 0.026421165093779564, 0.09464617818593979, 0.11418166011571884, -0.021283715963363647, 0.0960991159081459, -0.09654375910758972, -0.057156652212142944, -0.023009778931736946, -0.1274089366197586, 0.07012752443552017, -0.08890029788017273, 0.0016023063799366355, -0.03523273766040802, -0.02491096593439579, 0.1271570473909378, 0.10886126756668091, -0.034048642963171005, -0.03631285950541496, 0.03249131515622139, -0.07558100670576096, 0.13815072178840637, 0.010371928103268147, -0.08075172454118729, 0.11324990540742874, -0.1422438770532608, 0.06843580305576324, -0.06626438349485397, -0.0024192749988287687, 0.06930215656757355, 0.047478076070547104, -0.042586639523506165, -0.0048004500567913055, 0.03369041159749031, -0.06367553025484085, -0.09305945783853531, -0.1191762387752533 ]
20ff832d5a0a6d084e7a4c89145b58bce67cbdef
# Dataset Card for "massive_alarm" [More Information needed](https://github.com/huggingface/datasets/blob/main/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
fathyshalab/massive_alarm
[ "region:us" ]
2023-02-08T11:16:19+00:00
{"dataset_info": {"features": [{"name": "id", "dtype": "string"}, {"name": "label", "dtype": "int64"}, {"name": "text", "dtype": "string"}], "splits": [{"name": "train", "num_bytes": 20844, "num_examples": 390}, {"name": "validation", "num_bytes": 3251, "num_examples": 64}, {"name": "test", "num_bytes": 4818, "num_examples": 96}], "download_size": 17873, "dataset_size": 28913}}
2023-02-08T12:25:50+00:00
[]
[]
TAGS #region-us
# Dataset Card for "massive_alarm" More Information needed
[ "# Dataset Card for \"massive_alarm\"\n\nMore Information needed" ]
[ "TAGS\n#region-us \n", "# Dataset Card for \"massive_alarm\"\n\nMore Information needed" ]
[ 6, 14 ]
[ "passage: TAGS\n#region-us \n# Dataset Card for \"massive_alarm\"\n\nMore Information needed" ]
[ -0.09936729818582535, 0.020944783464074135, -0.005333609413355589, -0.021873198449611664, 0.06448637694120407, 0.10019397735595703, 0.01589846797287464, 0.013543966226279736, 0.14577700197696686, -0.00995036493986845, 0.20021295547485352, 0.03537099435925484, -0.06032600998878479, 0.23288357257843018, -0.08677663654088974, 0.07590014487504959, 0.045356109738349915, 0.0034598466008901596, -0.1507408767938614, 0.049487482756376266, 0.08601629734039307, -0.11116837710142136, 0.08460181206464767, -0.09135929495096207, -0.19699962437152863, 0.09918093681335449, 0.008822042495012283, -0.08070210367441177, 0.06883824616670609, -0.1407911628484726, 0.09520610421895981, -0.043633073568344116, -0.014212675392627716, -0.04690851643681526, -0.0003058376314584166, 0.02676137536764145, -0.007391670253127813, 0.030179129913449287, 0.08742538839578629, -0.09251785278320312, -0.12325912714004517, -0.15101087093353271, 0.03828297555446625, -0.002694143680855632, -0.029091835021972656, -0.36249932646751404, -0.10415855795145035, 0.003010069252923131, 0.0760670006275177, 0.02662447653710842, 0.06684525310993195, 0.10264670103788376, -0.08230962604284286, 0.016860147938132286, -0.0374726839363575, -0.03183211386203766, 0.08276007324457169, 0.13657061755657196, -0.0123722730204463, 0.18699167668819427, 0.04141511395573616, 0.07499883323907852, 0.15493257343769073, -0.03215409442782402, -0.006523370277136564, 0.00012847936886828393, -0.09779559820890427, 0.03856029734015465, -0.050080716609954834, -0.06997684389352798, 0.25680312514305115, 0.007336229085922241, 0.021356575191020966, -0.027763500809669495, -0.0034748625475913286, -0.07632017880678177, 0.06150981783866882, -0.04426565393805504, 0.015594758093357086, 0.029961010441184044, 0.03779019042849541, 0.04786510765552521, -0.12025568634271622, -0.13459087908267975, -0.15964888036251068, 0.06004244461655617, -0.09440096467733383, 0.17001847922801971, -0.2074374407529831, -0.034315336495637894, -0.09340687841176987, -0.01104042213410139, 0.052677858620882034, -0.08611663430929184, -0.05913594737648964, -0.03892385959625244, -0.011573308147490025, -0.03881549835205078, 0.15326562523841858, -0.07559388130903244, -0.07282433658838272, 0.0074005089700222015, -0.12085584551095963, 0.06647980958223343, 0.20128078758716583, -0.09527451545000076, -0.05840795114636421, -0.09336638450622559, -0.05124524235725403, -0.10510452836751938, 0.0009468967909924686, -0.07811787724494934, -0.043340861797332764, -0.013371921144425869, 0.008921810425817966, 0.14065653085708618, -0.07521836459636688, -0.15080563724040985, -0.020092004910111427, -0.0020192821975797415, 0.05988626182079315, -0.04956511780619621, -0.004783231299370527, 0.04127297177910805, 0.012262883596122265, 0.05578033998608589, -0.13862834870815277, 0.005444796290248632, 0.11106256395578384, 0.1148650273680687, -0.0763574168086052, -0.0666787251830101, -0.06049218773841858, 0.06067318841814995, 0.0757865235209465, -0.16937829554080963, 0.04065416753292084, -0.00939189363270998, -0.24035270512104034, 0.07725819945335388, -0.021035393700003624, 0.009610109962522984, 0.07897515594959259, 0.05988718569278717, 0.052829448133707047, -0.007186598610132933, -0.03569735959172249, 0.2743644118309021, -0.10531345754861832, 0.02547478675842285, 0.014054222963750362, 0.010595835745334625, -0.19869433343410492, -0.006017725449055433, -0.13516360521316528, -0.005204636603593826, 0.009245461784303188, 0.0570271797478199, -0.055234890431165695, 0.10440772026777267, -0.12872852385044098, 0.03899851068854332, -0.1346508413553238, 0.01777893491089344, -0.06689784675836563, 0.10148701071739197, -0.18480710685253143, -0.03531748056411743, 0.042587507516145706, -0.09086594730615616, -0.1619860678911209, 0.024982424452900887, -0.03492036461830139, -0.017010774463415146, 0.07209524512290955, 0.23505651950836182, -0.14771932363510132, 0.08334025740623474, 0.00801254715770483, 0.12882433831691742, -0.25176846981048584, -0.2455964833498001, 0.1052057147026062, -0.07933968305587769, -0.2704261541366577, -0.015479214489459991, 0.19470123946666718, -0.04090006276965141, -0.05992024019360542, -0.08710804581642151, -0.03943171724677086, -0.15842580795288086, -0.0792270228266716, -0.06292319297790527, -0.0026998482644557953, -0.08346343040466309, 0.12126573175191879, 0.011015566997230053, 0.06644589453935623, 0.08408809453248978, -0.0341564379632473, -0.05587179586291313, 0.03144510090351105, -0.16663135588169098, -0.032513197511434555, -0.1748638153076172, 0.0443275161087513, -0.012118443846702576, 0.037417322397232056, 0.036084774881601334, -0.052774976938962936, 0.12731441855430603, -0.06129394844174385, -0.021430930122733116, 0.08729717135429382, 0.18587185442447662, 0.038696516305208206, -0.003027531085535884, -0.05312708392739296, 0.07715640217065811, -0.10474682599306107, -0.0728309154510498, -0.1490420252084732, -0.07991719245910645, 0.177284836769104, -0.049953628331422806, 0.05756142735481262, -0.03527989611029625, 0.04484795406460762, -0.06269294023513794, -0.010557680390775204, -0.017251215875148773, -0.01627032458782196, -0.09252041578292847, -0.1470879763364792, 0.04210619628429413, -0.053117018193006516, 0.3906322717666626, 0.12840865552425385, 0.022523164749145508, 0.03833181783556938, 0.00862214807420969, 0.01847604662179947, 0.012312758713960648, -0.03143962100148201, -0.00821318756788969, -0.11260483413934708, -0.06364838033914566, 0.02246692217886448, -0.019075093790888786, 0.020210547372698784, 0.07026507705450058, 0.05575871840119362, -0.10385140031576157, 0.03836502134799957, 0.06836425513029099, -0.22294020652770996, 0.128804013133049, 0.22116273641586304, 0.058620233088731766, 0.10284081101417542, -0.01293997187167406, -0.09431421756744385, -0.0025184706319123507, -0.10166826099157333, -0.05301206186413765, 0.14814715087413788, -0.1090853288769722, 0.07500385493040085, 0.09909505397081375, -0.0047675673849880695, 0.09698748588562012, -0.05034223198890686, -0.08522684127092361, -0.0039056192617863417, 0.0007607567240484059, -0.17061658203601837, 0.041412703692913055, 0.0389123260974884, 0.13656336069107056, 0.02952507697045803, -0.07315877079963684, 0.14007019996643066, -0.025143221020698547, -0.005599306896328926, 0.08040726184844971, -0.09415335208177567, -0.25120821595191956, -0.023643741384148598, -0.06848137080669403, 0.07295168191194534, 0.024483025074005127, -0.03022577427327633, -0.22484619915485382, -0.02475333772599697, -0.04293351247906685, -0.11554663628339767, -0.18966209888458252, 0.08577636629343033, 0.16731078922748566, 0.05648212507367134, -0.007138971704989672, -0.046079736202955246, 0.031155606731772423, -0.08104754239320755, -0.020342042669653893, 0.011974739842116833, -0.03040839172899723, 0.08966296911239624, 0.16458919644355774, -0.015111136250197887, 0.08226361870765686, -0.007770645897835493, -0.09445061534643173, -0.06153447553515434, -0.12174608558416367, 0.13096214830875397, -0.027390241622924805, -0.010347493924200535, 0.04731690511107445, 0.0840815007686615, -0.16333059966564178, -0.030025990679860115, -0.01634836755692959, -0.18020759522914886, -0.3036320209503174, -0.15487273037433624, -0.018217526376247406, 0.054397422820329666, -0.018598169088363647, 0.07930455356836319, 0.03048820234835148, 0.050626080483198166, 0.13853766024112701, -0.11137756705284119, -0.11351248621940613, -0.06799417734146118, -0.17859964072704315, 0.008288984186947346, -0.012374001555144787, -0.1703169196844101, -0.04275083541870117, 0.17885525524616241, 0.05614331737160683, 0.17226141691207886, 0.10066565126180649, 0.010396081954240799, -0.058713942766189575, -0.031165754422545433, 0.07224147766828537, 0.11672862619161606, 0.03247351571917534, -0.026869742199778557, -0.007499799132347107, -0.005054360721260309, 0.012038138695061207, 0.011625655926764011, 0.14130188524723053, -0.023499757051467896, 0.03301549330353737, -0.06365921348333359, 0.1099722757935524, -0.04097949340939522, 0.01217337790876627, -0.28862276673316956, 0.11211860924959183, 0.037974413484334946, 0.1313096284866333, -0.04454394057393074, 0.1042332872748375, 0.07299112528562546, 0.07811575382947922, 0.11659636348485947, 0.03749817609786987, 0.004908690694719553, -0.025746433064341545, 0.054756272584199905, -0.16156412661075592, -0.02390235662460327, -0.058074045926332474, 0.08904224634170532, -0.10111021995544434, 0.18005894124507904, 0.030904047191143036, -0.034242842346429825, -0.13224701583385468, -0.09497138112783432, 0.0028530291747301817, 0.04080948233604431, 0.17399702966213226, 0.011581270955502987, -0.0658247247338295, -0.11840824037790298, -0.12260491400957108, 0.017418988049030304, 0.087164968252182, -0.001797601580619812, -0.14977794885635376, 0.059806764125823975, 0.026640206575393677, 0.008221756666898727, -0.22969502210617065, -0.05782364308834076, -0.04657188057899475, -0.06313951313495636, 0.10325303673744202, -0.13348187506198883, -0.015710243955254555, -0.014804400503635406, -0.014895814470946789, 0.08431429415941238, -0.05453173443675041, -0.009533489122986794, -0.06694822758436203, -0.08851014822721481, 0.1981843113899231, 0.05862966179847717, -0.04032663628458977, 0.06960064172744751, 0.0021493136882781982, -0.012715204618871212, -0.14262981712818146, 0.1300041526556015, -0.10184326022863388, 0.057151734828948975, -0.08376619219779968, 0.15109169483184814, 0.021629884839057922, 0.0077280611731112, -0.02712641842663288, 0.009762845933437347, -0.008690465241670609, -0.04507899656891823, 0.20760440826416016, -0.03631389141082764, 0.14135688543319702, 0.300280898809433, 0.18730585277080536, -0.17695939540863037, 0.11611661314964294, -0.060446854680776596, 0.1548389345407486, 0.1638239175081253, -0.009434007108211517, 0.17142005264759064, 0.17181174457073212, 0.01723119430243969, -0.2564498484134674, 0.09389164298772812, -0.1268119066953659, -0.038060467690229416, 0.00932712759822607, -0.11539915949106216, 0.1568288654088974, 0.22172679007053375, -0.08236412703990936, 0.2935847043991089, -0.22494971752166748, -0.009590944275259972, 0.14248846471309662, -0.05634374916553497, 0.44944581389427185, -0.12251491099596024, -0.07290176302194595, -0.14158301055431366, 0.12276721000671387, 0.23813629150390625, -0.15663951635360718, 0.021488554775714874, 0.02221776358783245, -0.039982590824365616, -0.006278546992689371, -0.07386062294244766, 0.1763988584280014, 0.017007609829306602, 0.15418238937854767, -0.0006291124154813588, -0.11309864372015, 0.10916980355978012, -0.036423459649086, 0.09563510864973068, -0.07087522000074387, 0.01397765427827835, -0.07542065531015396, -0.032438892871141434, 0.05142756178975105, 0.10552509874105453, 0.09503307938575745, -0.07237625867128372, -0.05283849313855171, -0.03331013396382332, -0.1600562483072281, -0.04316406324505806, 0.25587907433509827, 0.019178977236151695, -0.04653240367770195, 0.05811462923884392, 0.16431520879268646, -0.16452644765377045, 0.02154763974249363, -0.012705578468739986, -0.12346164137125015, 0.13589225709438324, -0.26878008246421814, 0.06286200135946274, 0.05879576876759529, 0.055228546261787415, -0.030042463913559914, 0.08647685497999191, -0.025881916284561157, 0.03838665410876274, 0.17130659520626068, -0.09692595154047012, -0.0868237242102623, 0.09260442852973938, -0.02777157537639141, 0.08539652079343796, 0.17915953695774078, 0.05596570298075676, 0.06209195777773857, 0.0035277623683214188, -0.015327490866184235, 0.11425270885229111, -0.07481342554092407, 0.13040770590305328, 0.018287628889083862, 0.030749833211302757, -0.18164147436618805, 0.25455909967422485, 0.06631532311439514, -0.13131697475910187, 0.07009506970643997, -0.016955643892288208, -0.04387759044766426, 0.007797136437147856, -0.013949640095233917, 0.20841769874095917, 0.0348580963909626, -0.14709457755088806, 0.06110408902168274, -0.0767412781715393, 0.04082001373171806, 0.22822336852550507, 0.06325303018093109, 0.11345420032739639, 0.013550152070820332, -0.03461198881268501, -0.08301789313554764, -0.04911761358380318, -0.10281642526388168, 0.007472774479538202, -0.10344233363866806, -0.1305527538061142, 0.01129207480698824, 0.07371478527784348, -0.10336717963218689, -0.036817748099565506, -0.047804128378629684, 0.0582796074450016, -0.22979503870010376, -0.014884510077536106, 0.1046895980834961, 0.007706917822360992, -0.022361300885677338, 0.06718281656503677, -0.03887230530381203, 0.01899036206305027, -0.0696948766708374, 0.08600914478302002, 0.06478530913591385, 0.03365381807088852, -0.12420612573623657, -0.013893049210309982, -0.00985958706587553, 0.07260659337043762, 0.13326628506183624, 0.17859195172786713, -0.026180841028690338, 0.006862039212137461, -0.14424939453601837, -0.16199304163455963, 0.09688030928373337, 0.0338631272315979, 0.04360535368323326, 0.02213691733777523, 0.00985751859843731, 0.11144128441810608, -0.056854236871004105, 0.06514336168766022, -0.007375625427812338, -0.05578641593456268, 0.09131908416748047, -0.07715436071157455, -0.0722573921084404, 0.04985044524073601, -0.10597620159387589, 0.2331184297800064, 0.037948887795209885, 0.025143319740891457, 0.08124632388353348, -0.03457380458712578, -0.03822534158825874, -0.039609670639038086, -0.08718610554933548, -0.06774240732192993, -0.18769097328186035, 0.1578633338212967, 0.03034547157585621, -0.12227415293455124, 0.54705411195755, -0.12136086076498032, -0.14115844666957855, -0.021305909380316734, 0.1026817262172699, -0.006447931285947561, 0.018591752275824547, 0.3757072687149048, 0.07625801116228104, -0.02670884132385254, 0.022521160542964935, 0.0627615675330162, 0.1016358733177185, 0.15712304413318634, 0.06293343752622604, 0.08984289318323135, 0.10512585192918777, -0.022562861442565918, 0.09135056287050247, -0.07704595476388931, 0.09930326789617538, 0.04054535552859306, -0.03573954105377197, -0.06846891343593597, 0.12547677755355835, -0.08023079484701157, 0.13711458444595337, 0.06978362053632736, -0.04748280346393585, -0.08219923824071884, 0.0224164966493845, -0.03700540214776993, 0.030978724360466003, -0.029848234727978706, -0.04520586505532265, 0.04548303410410881, -0.02961445413529873, -0.06791896373033524, 0.28134748339653015, 0.10203079134225845, -0.016486337408423424, 0.09436657279729843, -0.10468697547912598, 0.1324741393327713, 0.0615338496863842, 0.008111095987260342, -0.107114277780056, 0.09559687972068787, -0.09782020002603531, 0.06834853440523148, -0.05264751985669136, -0.05764579772949219, 0.020165247842669487, -0.022653991356492043, 0.045790672302246094, -0.062806136906147, -0.018683139234781265, -0.06554311513900757, 0.06057725474238396, -0.08218096941709518, 0.011757771484553814, 0.01649130880832672, -0.029585817828774452, 0.02598649449646473, 0.08769318461418152, -0.045751508325338364, 0.03547804057598114, 0.0639406070113182, 0.09445955604314804, -0.038180459290742874, 0.15276984870433807, -0.008282286114990711, -0.03028854727745056, -0.09279567003250122, -0.01485299039632082, 0.3017561137676239, -0.11644572764635086, -0.0030662536155432463, -0.011472667567431927, 0.0611313097178936, -0.05745856463909149, 0.08677367120981216, 0.0784681886434555, 0.13804908096790314, 0.004398070741444826, 0.007329379674047232, 0.05923299863934517, 0.014082878828048706, -0.01233800407499075, 0.11018439382314682, 0.017984459176659584, -0.018475601449608803, -0.06595296412706375, 0.13593502342700958, -0.1308370679616928, 0.05095197260379791, -0.006050358060747385, -0.0907185897231102, -0.12786485254764557, 0.06802314519882202, 0.12791208922863007, -0.06339794397354126, -0.03638025000691414, -0.037569571286439896, -0.036248210817575455, -0.2726328670978546, -0.02127997577190399, -0.3054389953613281, -0.18498627841472626, -0.06480126827955246, 0.08229921013116837, 0.2105797976255417, 0.0233142152428627, 0.16288667917251587, 0.0012586098164319992, -0.06037453934550285, -0.0857003927230835, 0.05093929544091225, -0.0223460141569376, 0.051573771983385086, -0.025092924013733864, -0.04052691534161568, -0.07664396613836288, -0.00943611841648817, 0.07176966220140457, -0.011132716201245785, -0.09321314096450806, 0.0893855094909668, -0.040415097028017044, -0.02916938066482544, -0.06495874375104904, -0.06845105439424515, 0.05779154971241951, -0.01048184186220169, 0.005440961569547653, 0.02293206937611103, -0.01195888128131628, 0.14651717245578766, 0.08985328674316406, -0.03637704625725746, -0.08224590867757797, -0.09494811296463013, -0.022898821160197258, 0.10167024284601212, -0.0036778524518013, -0.1100393757224083, 0.042826104909181595, -0.12418665736913681, 0.039399661123752594, -0.026539882645010948, -0.05744302645325661, 0.13972999155521393, 0.09266185760498047, -0.035345014184713364, -0.004178255796432495, 0.05959427356719971, 0.014747063629329205, -0.1193149983882904, -0.11191656440496445 ]
d45013e84342c3e504103232da6c425b7db141f2
# Dataset Card for "massive_weather" [More Information needed](https://github.com/huggingface/datasets/blob/main/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
fathyshalab/massive_weather
[ "region:us" ]
2023-02-08T11:16:36+00:00
{"dataset_info": {"features": [{"name": "id", "dtype": "string"}, {"name": "label", "dtype": "int64"}, {"name": "text", "dtype": "string"}], "splits": [{"name": "train", "num_bytes": 30514, "num_examples": 573}, {"name": "validation", "num_bytes": 6972, "num_examples": 126}, {"name": "test", "num_bytes": 8504, "num_examples": 156}], "download_size": 25707, "dataset_size": 45990}}
2023-02-08T12:26:11+00:00
[]
[]
TAGS #region-us
# Dataset Card for "massive_weather" More Information needed
[ "# Dataset Card for \"massive_weather\"\n\nMore Information needed" ]
[ "TAGS\n#region-us \n", "# Dataset Card for \"massive_weather\"\n\nMore Information needed" ]
[ 6, 16 ]
[ "passage: TAGS\n#region-us \n# Dataset Card for \"massive_weather\"\n\nMore Information needed" ]
[ -0.21499179303646088, 0.10206765681505203, -0.0025655836798250675, 0.07436186075210571, 0.09371796250343323, 0.08786079287528992, 0.018476741388440132, -0.08506055921316147, 0.2122572809457779, -0.007691702805459499, 0.19126468896865845, 0.02738352306187153, 0.004967455752193928, 0.1813761591911316, -0.06990868598222733, -0.1726178079843521, 0.01190338097512722, -0.05020701885223389, -0.21340414881706238, 0.07938069850206375, 0.061197225004434586, -0.08782810717821121, 0.07736170291900635, -0.13141842186450958, -0.11267776042222977, 0.06031985580921173, -0.05914412438869476, -0.05122227966785431, 0.07715579122304916, -0.07718876749277115, 0.09556613862514496, 0.011070908047258854, 0.044860921800136566, -0.04192406311631203, 0.014891153201460838, -0.07004868239164352, -0.01577223464846611, 0.06995974481105804, 0.1298528015613556, -0.08393929898738861, -0.15987637639045715, -0.10234423726797104, 0.08672721683979034, 0.003061775118112564, -0.12123490869998932, -0.2353861927986145, -0.06014092266559601, -0.07161498069763184, -0.01329287700355053, -0.008885396644473076, 0.09492221474647522, 0.08603987097740173, -0.14692407846450806, 0.07883621752262115, 0.0012878128327429295, 0.05582871660590172, -0.0071024647913873196, 0.12410800158977509, -0.051681455224752426, 0.19347859919071198, 0.0627889633178711, 0.10157343000173569, 0.13364169001579285, -0.058318376541137695, -0.046176787465810776, 0.04969091713428497, 0.03249248489737511, 0.08985420316457748, -0.0453200601041317, -0.03212101012468338, 0.28375494480133057, -0.021852485835552216, 0.01786963827908039, 0.0017648086650297046, 0.058550938963890076, -0.01645916886627674, -0.0033967250492423773, -0.040363434702157974, 0.0564337782561779, 0.0021172533743083477, 0.0050628711469471455, -0.011601436883211136, -0.05570612847805023, -0.04134909436106682, -0.1043272539973259, 0.23568272590637207, -0.11667513102293015, 0.1550678312778473, -0.2218780517578125, -0.005186975933611393, -0.10163813084363937, -0.0617661215364933, -0.012982765212655067, -0.1062840148806572, -0.100258469581604, 0.014572668820619583, -0.0803433209657669, 0.06630448251962662, 0.019029628485441208, 0.030875273048877716, 0.14511041343212128, -0.023506004363298416, 0.04192722588777542, 0.0422617606818676, 0.23017668724060059, -0.06166927516460419, -0.02376367710530758, -0.16894513368606567, -0.06719119846820831, -0.22170470654964447, 0.016852783039212227, -0.1833479106426239, 0.017576102167367935, -0.060594312846660614, -0.1351553350687027, 0.1468450278043747, -0.01832483895123005, -0.22320438921451569, -0.04227880388498306, -0.01148159895092249, 0.15153633058071136, -0.09513533115386963, 0.08292054384946823, -0.0033567501232028008, -0.05118795111775398, 0.08876276761293411, -0.17300036549568176, 0.007382005453109741, 0.22027991712093353, 0.15425466001033783, -0.12970811128616333, -0.055291276425123215, -0.019835589453577995, 0.011363382451236248, 0.07516267895698547, -0.22035279870033264, 0.10645389556884766, -0.027058569714426994, -0.21604450047016144, 0.09812089055776596, 0.032741621136665344, -0.09584303945302963, 0.004663152154535055, 0.08321618288755417, 0.00811250600963831, 0.04798966273665428, -0.04154428094625473, 0.22529767453670502, -0.10945666581392288, -0.006931361276656389, -0.08201969414949417, 0.04972056299448013, -0.2069828361272812, -0.037333786487579346, -0.08041412383317947, -0.01516978070139885, 0.0253122728317976, 0.054691560566425323, -0.1558733731508255, 0.10688985139131546, -0.102929025888443, -0.03847291320562363, 0.017038125544786453, -0.006720366887748241, -0.026691067963838577, 0.1517215520143509, -0.2926996648311615, -0.03460624814033508, 0.027169732376933098, -0.15255631506443024, -0.09667269140481949, -0.030517349019646645, -0.08414585888385773, 0.035421036183834076, 0.08673520386219025, 0.12360318005084991, -0.06090911850333214, 0.07368610799312592, 0.11320161819458008, 0.19553866982460022, -0.11890339851379395, -0.2432345300912857, 0.09003528207540512, -0.017355669289827347, -0.28673693537712097, 0.022447485476732254, 0.17100344598293304, -0.011882071383297443, -0.07350761443376541, -0.09134344011545181, -0.044036865234375, -0.09545744955539703, -0.017408208921551704, -0.0716472938656807, -0.010429320856928825, -0.07616827636957169, 0.15355327725410461, 0.09697074443101883, 0.012743774801492691, 0.08965477347373962, -0.017456665635108948, 0.09791302680969238, -0.01820973865687847, -0.07534237951040268, -0.09120400249958038, -0.10376616567373276, -0.045806583017110825, -0.002787902019917965, 0.05172722041606903, -0.017750179395079613, 0.07929469645023346, 0.17579105496406555, -0.04145454615354538, -0.004715892020612955, 0.14662306010723114, 0.13216064870357513, 0.054616596549749374, -0.027599822729825974, -0.06980249285697937, -0.01276532281190157, -0.0889677181839943, 0.04879456385970116, -0.09943098574876785, -0.08711929619312286, 0.14841368794441223, -0.08556254208087921, 0.006124041508883238, -0.060399558395147324, 0.053670939058065414, -0.06536220014095306, 0.015819644555449486, -0.0010905856033787131, -0.025296321138739586, -0.042287394404411316, -0.2276144027709961, 0.12102733552455902, 0.004743742290884256, 0.24519085884094238, 0.006312723271548748, 0.09162633866071701, 0.02324710227549076, -0.030083468183875084, 0.046855244785547256, -0.052046097815036774, 0.00596568314358592, 0.018965816125273705, -0.0823686271905899, -0.05903886258602142, -0.00653912965208292, -0.03059164434671402, 0.018495960161089897, 0.050897736102342606, 0.01680356077849865, -0.07400102913379669, 0.09575215727090836, 0.11022991687059402, -0.15475846827030182, 0.03830072283744812, 0.17323262989521027, 0.06555640697479248, 0.08888621628284454, 0.0011110976338386536, -0.12910303473472595, 0.003244119230657816, -0.18121808767318726, -0.0344855822622776, 0.130608469247818, -0.014519299380481243, 0.11124856770038605, 0.11554457247257233, 0.03733339533209801, 0.0623224638402462, -0.027053792029619217, -0.1004989966750145, 0.09586189687252045, 0.0940779596567154, -0.22447600960731506, -0.04343822970986366, -0.026086565107107162, 0.10900954157114029, 0.030710488557815552, -0.1031513586640358, 0.10835189372301102, 0.02504509501159191, 0.04033578932285309, 0.1574806421995163, -0.10406550765037537, -0.10699130594730377, -0.04522605240345001, -0.097953662276268, -0.00465896213427186, -0.04244137182831764, -0.032790862023830414, -0.14419642090797424, -0.09816727042198181, -0.020492395386099815, -0.06927139312028885, -0.24151362478733063, 0.03492369130253792, -0.01740381494164467, -0.05786425247788429, -0.1060589998960495, -0.11572016775608063, 0.09261583536863327, -0.029441488906741142, 0.041490793228149414, 0.07606910169124603, 0.02055818773806095, 0.12410782277584076, 0.066324383020401, 0.007934583351016045, 0.06804750859737396, 0.05829581245779991, 0.11268693953752518, -0.02829934097826481, -0.0300547257065773, 0.03801008313894272, -0.022019200026988983, -0.029569990932941437, 0.013163960538804531, 0.1799350082874298, -0.15621979534626007, -0.11229092627763748, -0.07194418460130692, -0.16837312281131744, -0.29553937911987305, -0.16436457633972168, -0.005268124397844076, 0.03466304764151573, 0.019163070246577263, 0.07696755230426788, -0.11198098212480545, 0.06328253448009491, 0.1270155906677246, -0.2231999784708023, -0.17338547110557556, -0.08247808367013931, -0.22595585882663727, 0.005809262860566378, 0.057890258729457855, -0.15835663676261902, 0.06671366095542908, 0.18231534957885742, 0.15004083514213562, 0.12959721684455872, 0.11289343237876892, 0.14828819036483765, -0.08041433990001678, 0.0436319075524807, 0.04642907902598381, 0.187461718916893, 0.1299753338098526, -0.020031491294503212, 0.03753264993429184, 0.028885183855891228, -0.01553718838840723, -0.005014143884181976, 0.10940507799386978, -0.09410148113965988, 0.0827600434422493, -0.13558313250541687, -0.035537514835596085, -0.11537522822618484, 0.03933658078312874, -0.19334107637405396, 0.10069640725851059, 0.016373861581087112, 0.14716926217079163, -0.10729433596134186, 0.0955771952867508, 0.056191280484199524, -0.02125328779220581, 0.14241304993629456, 0.022695766761898994, 0.03956468403339386, -0.0072510321624577045, -0.08246198296546936, -0.09931661188602448, -0.024360505864024162, -0.07122724503278732, 0.06939982622861862, 0.011937378905713558, 0.148731529712677, 0.05861922353506088, -0.03767072781920433, -0.1647253781557083, -0.10865703225135803, -0.062355730682611465, 0.16323807835578918, 0.12166983634233475, 0.055539604276418686, 0.0074733542278409, -0.0756441056728363, -0.29004591703414917, 0.00759010249748826, 0.08811129629611969, -0.08376681059598923, -0.22918778657913208, 0.09460058808326721, 0.02476792223751545, 0.014176390133798122, -0.20083209872245789, -0.03467685356736183, -0.11564595997333527, -0.008793117478489876, -0.031558744609355927, -0.14604327082633972, -0.011985226534307003, -0.10131997615098953, -0.11179523915052414, 0.06555947661399841, 0.03196652978658676, -0.06479991972446442, -0.16676975786685944, -0.09048695862293243, 0.1961657851934433, 0.047611650079488754, -0.039614006876945496, 0.06976417452096939, 0.05586489289999008, 0.017318792641162872, -0.11792013049125671, 0.10567434132099152, -0.06357331573963165, 0.1258370280265808, -0.0006466576596722007, 0.020522983744740486, 0.12266678363084793, 0.09410833567380905, -0.04591144621372223, 0.10252860188484192, -0.13360165059566498, -0.10323940217494965, 0.12484662234783173, -0.16722647845745087, 0.08879096806049347, 0.22255578637123108, 0.19721601903438568, 0.09224288165569305, 0.1910053789615631, -0.00814684759825468, 0.2559114694595337, 0.03539017587900162, -0.10042553395032883, 0.2248922884464264, 0.15840443968772888, 0.0030956040136516094, -0.28246062994003296, 0.11747090518474579, -0.11318234354257584, -0.010529514402151108, 0.05272392928600311, -0.210346519947052, 0.21836870908737183, 0.19521723687648773, -0.05962970107793808, 0.27849990129470825, -0.1650320589542389, -0.031011901795864105, 0.1677764505147934, 0.022793980315327644, 0.45626163482666016, -0.10211502760648727, -0.08336298167705536, -0.11663039028644562, 0.0004832159902434796, 0.20671266317367554, -0.10596258193254471, 0.009830390103161335, -0.0005575359682552516, 0.008418275974690914, 0.016323398798704147, -0.04084150493144989, 0.22692394256591797, 0.07016853988170624, 0.09575068205595016, -0.011045914143323898, 0.07328354567289352, 0.09651537239551544, -0.020655857399106026, 0.0062554748728871346, -0.039828263223171234, 0.029933346435427666, -0.16213160753250122, -0.016049273312091827, 0.057132817804813385, 0.08069153875112534, -0.018100010231137276, -0.045997504144907, 0.03984002768993378, -0.0755937397480011, -0.08164232224225998, -0.11433696746826172, 0.1603492945432663, -0.025834619998931885, 0.008304000832140446, 0.04177608713507652, 0.13478533923625946, -0.08207495510578156, -0.06796421110630035, -0.12788830697536469, -0.05982259288430214, 0.10347285866737366, -0.2551507353782654, 0.030014527961611748, 0.05826988443732262, 0.11577165126800537, -0.08715733885765076, 0.044119175523519516, 0.06940080225467682, -0.008654268458485603, 0.10518816858530045, -0.11442989856004715, -0.08712286502122879, 0.02818307653069496, -0.03348910063505173, 0.017790522426366806, 0.16195639967918396, 0.017603756859898567, 0.064405158162117, 0.0268494114279747, -0.09478943049907684, 0.09367260336875916, -0.048589639365673065, 0.12122632563114166, 0.07817233353853226, 0.01187923550605774, -0.21198247373104095, 0.1834518313407898, -0.05230298265814781, -0.07592150568962097, 0.011539062485098839, 0.038317181169986725, -0.011145179159939289, -0.038915619254112244, 0.05120445042848587, 0.17618796229362488, -0.16679848730564117, -0.12281419336795807, 0.0630631297826767, -0.09928398579359055, 0.06177622452378273, 0.15112337470054626, 0.03156101331114769, 0.006745017599314451, -0.054951369762420654, -0.09245368838310242, 0.0012367883464321494, -0.08074433356523514, -0.060681477189064026, 0.04185660183429718, 0.02162177301943302, -0.16621361672878265, -0.011308013461530209, 0.0950002670288086, -0.08949965983629227, -0.07675275206565857, 0.02799391560256481, 0.028057975694537163, -0.15206465125083923, -0.0076532065868377686, 0.1492234170436859, 0.07892785966396332, -0.04449976235628128, -0.00925232283771038, 0.029951186850667, 0.009468651376664639, -0.1085824966430664, 0.11482270061969757, -0.016658484935760498, 0.04246211051940918, -0.022325722500681877, 0.03401999920606613, -0.010001447051763535, 0.014201254583895206, 0.135404571890831, 0.17934848368167877, -0.034380167722702026, 0.021549614146351814, -0.08727114647626877, -0.09674609452486038, -0.016631605103611946, 0.028770357370376587, 0.08951328694820404, 0.006173544097691774, -0.039142098277807236, 0.07051031291484833, -0.07884705066680908, 0.054130472242832184, -0.06706956028938293, -0.11975695192813873, 0.06743180006742477, -0.08211636543273926, -0.10418273508548737, 0.04270265996456146, -0.15387454628944397, 0.14102602005004883, 0.059509649872779846, -0.025171669200062752, 0.13333410024642944, 0.05075748264789581, 0.021563122048974037, -0.10878170281648636, -0.0038949334993958473, -0.1150263249874115, -0.1898922175168991, 0.20292161405086517, 0.09176386147737503, -0.05043689161539078, 0.49932339787483215, -0.07341199368238449, -0.22187858819961548, -0.07358109951019287, 0.17725302278995514, 0.01589474454522133, -0.016397790983319283, 0.38494542241096497, 0.12289512902498245, 0.07853610813617706, 0.05746449902653694, 0.1638667732477188, 0.06799369305372238, 0.11622404307126999, 0.04208655655384064, 0.013363166712224483, 0.0051521798595786095, 0.07546242326498032, 0.007810973096638918, -0.1446988880634308, 0.13575990498065948, 0.05483058840036392, -0.059982553124427795, 0.028853638097643852, 0.1131054237484932, -0.08217047154903412, 0.038659028708934784, 0.02816915512084961, -0.04909373074769974, 0.006123309955000877, -0.06470800936222076, -0.11714224517345428, 0.01578754186630249, 0.006250438746064901, -0.02493615262210369, 0.05109357088804245, -0.10131733119487762, 0.035941239446401596, 0.26313066482543945, 0.0985107570886612, 0.041320689022541046, -0.018673039972782135, -0.039009012281894684, 0.14142078161239624, 0.040823303163051605, -0.022274749353528023, -0.03865998610854149, -0.016647955402731895, -0.18531182408332825, -0.025217581540346146, -0.02510230615735054, -0.06668981909751892, 0.003808247623965144, 0.11486269533634186, 0.02499375492334366, -0.04516150429844856, -0.08455848693847656, -0.007722216192632914, 0.08600953966379166, -0.08714412152767181, 0.10197298228740692, -0.00264966138638556, 0.01772039383649826, 0.015354047529399395, 0.07959046959877014, -0.056661900132894516, 0.12861815094947815, 0.0531168207526207, 0.029860053211450577, -0.026600630953907967, 0.12433406710624695, 0.04079878330230713, -0.02330159768462181, -0.049016907811164856, -0.08674871176481247, 0.2203657478094101, -0.07835622876882553, -0.024037737399339676, 0.02878393791615963, 0.037838347256183624, 0.07007808238267899, 0.16237705945968628, -0.05459360405802727, 0.0705183818936348, -0.09479332715272903, -0.017039356753230095, 0.008964409120380878, -0.04567825794219971, -0.04696185141801834, 0.19422593712806702, 0.03133181855082512, -0.1410922110080719, -0.07826396822929382, 0.2188570648431778, -0.07417325675487518, 0.08997559547424316, 0.0971052348613739, -0.10928599536418915, -0.1190342903137207, -0.009648359380662441, 0.14039470255374908, -0.016801588237285614, 0.058260735124349594, 0.0019034766592085361, 0.004356905817985535, -0.16327959299087524, 0.00889302883297205, -0.3155784606933594, -0.13224028050899506, -0.018437031656503677, 0.06708523631095886, 0.08116655796766281, 0.061776868999004364, 0.059557899832725525, -0.011741695925593376, 0.021848458796739578, -0.13691315054893494, 0.013972863554954529, 0.011509423144161701, -0.04029204323887825, -0.044343046844005585, 0.035126786679029465, -0.09082229435443878, -0.15867191553115845, 0.008999895304441452, -0.0338398776948452, -0.05330628901720047, 0.15337976813316345, -0.06723912060260773, 0.06212248280644417, -0.0012663373490795493, -0.01976141519844532, 0.08791541308164597, 0.011550040915608406, 0.004748620558530092, -0.09146498143672943, -0.037409890443086624, 0.06257515400648117, 0.07857933640480042, -0.21685852110385895, -0.05623472109436989, -0.06093239039182663, -0.07971275597810745, 0.08986297249794006, 0.07431364804506302, -0.07480080425739288, 0.06826455146074295, -0.06622129678726196, 0.10501249134540558, 0.0584983266890049, -0.03546573221683502, 0.07318107783794403, -0.03400176391005516, 0.025894522666931152, 0.01336592249572277, 0.07649926841259003, -0.02936873771250248, -0.07271817326545715, -0.045678768306970596 ]
1ad50a2f9e6c7c84b6f01efeaf4ecf4af769c5c8
# Dataset Card for "massive_social-de" [More Information needed](https://github.com/huggingface/datasets/blob/main/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
fathyshalab/massive_social-de
[ "region:us" ]
2023-02-08T11:23:29+00:00
{"dataset_info": {"features": [{"name": "id", "dtype": "string"}, {"name": "label", "dtype": "int64"}, {"name": "text", "dtype": "string"}], "splits": [{"name": "train", "num_bytes": 28548, "num_examples": 391}, {"name": "validation", "num_bytes": 4886, "num_examples": 68}, {"name": "test", "num_bytes": 7331, "num_examples": 106}], "download_size": 25046, "dataset_size": 40765}}
2023-02-08T12:28:40+00:00
[]
[]
TAGS #region-us
# Dataset Card for "massive_social-de" More Information needed
[ "# Dataset Card for \"massive_social-de\"\n\nMore Information needed" ]
[ "TAGS\n#region-us \n", "# Dataset Card for \"massive_social-de\"\n\nMore Information needed" ]
[ 6, 16 ]
[ "passage: TAGS\n#region-us \n# Dataset Card for \"massive_social-de\"\n\nMore Information needed" ]
[ -0.11610089242458344, 0.11986097693443298, -0.004886073060333729, -0.045048363506793976, 0.09007615596055984, 0.10768651217222214, 0.029109124094247818, -0.005524188280105591, 0.19083155691623688, -0.03241603821516037, 0.12960483133792877, 0.052337609231472015, 0.011053957976400852, 0.2907201945781708, -0.08216375857591629, -0.008009340614080429, 0.051384810358285904, 0.026658054441213608, -0.23357552289962769, 0.0016491860151290894, 0.03201594203710556, -0.07227370142936707, 0.08351702988147736, -0.15178966522216797, -0.053711194545030594, 0.11772271245718002, -0.03349335491657257, -0.039622485637664795, 0.1068609282374382, -0.04666120186448097, 0.11025182902812958, 0.04567984491586685, 0.015194246545433998, -0.06603682786226273, 0.014578383415937424, -0.02046998031437397, -0.040581490844488144, 0.048376575112342834, -0.0047487905248999596, -0.0728394016623497, -0.11224984377622604, -0.0834919735789299, 0.02073298767209053, 0.00520473625510931, -0.11626829206943512, -0.3215715289115906, -0.011173813603818417, -0.12371645867824554, -0.024419615045189857, -0.10652755200862885, 0.058714088052511215, 0.034478746354579926, -0.1953786015510559, -0.029886066913604736, -0.04525680094957352, 0.1111631914973259, 0.05625424161553383, 0.1918732076883316, -0.07646189630031586, 0.162678062915802, 0.02420097403228283, 0.0928073450922966, 0.10540991276502609, -0.026379598304629326, 0.02040897123515606, -0.027461592108011246, 0.026366539299488068, 0.10148198902606964, -0.029076864942908287, -0.0182951632887125, 0.35642874240875244, 0.0022201703395694494, 0.0539398193359375, 0.018101971596479416, -0.030808448791503906, 0.09970799833536148, 0.03247153386473656, -0.06999662518501282, 0.03765255957841873, 0.044877760112285614, 0.04508642107248306, 0.024722756817936897, -0.0734395831823349, -0.08051925152540207, -0.17564243078231812, -0.003487152047455311, -0.09614456444978714, 0.1277572214603424, -0.2693723440170288, -0.0645536333322525, -0.09957806766033173, 0.015531780198216438, 0.07967187464237213, -0.13872243463993073, 0.01584549807012081, -0.0339181087911129, 0.03314399719238281, 0.05746675282716751, 0.16732102632522583, 0.037139538675546646, 0.04510508477687836, -0.019200483337044716, -0.05540744960308075, 0.06560339033603668, 0.24828225374221802, -0.13103260099887848, -0.07052202522754669, -0.16358336806297302, -0.027771281078457832, -0.14291873574256897, -0.03055831603705883, -0.05132177099585533, -0.041414160281419754, 0.03648139536380768, -0.17456454038619995, 0.133327454328537, -0.024152109399437904, -0.09665829688310623, -0.10082213580608368, 0.015513638965785503, 0.1584903597831726, -0.021280206739902496, 0.010636826045811176, 0.03650941699743271, -0.04667763411998749, 0.059326328337192535, -0.15854217112064362, -0.010187000036239624, 0.11025471985340118, 0.09840179979801178, -0.048404261469841, -0.10305406153202057, -0.03438030555844307, 0.023947468027472496, 0.08161907643079758, -0.19067247211933136, 0.09376168251037598, -0.06416812539100647, -0.27350741624832153, 0.04972591623663902, -0.01094583235681057, -0.03888391703367233, 0.0933738425374031, -0.00800517201423645, 0.11547490209341049, -0.04586534947156906, -0.11763816326856613, 0.11419014632701874, -0.13426531851291656, 0.035119690001010895, -0.02549758553504944, 0.04088485985994339, -0.24150730669498444, 0.04306640103459358, -0.06953345239162445, -0.0011403589742258191, 0.01297126803547144, 0.09265660494565964, -0.0648314505815506, 0.04196958988904953, -0.011347075924277306, 0.00367387430742383, -0.12403053790330887, 0.0626552551984787, -0.030704855918884277, 0.12827928364276886, -0.25273802876472473, -0.0679873377084732, 0.11474748700857162, -0.12571483850479126, -0.12912406027317047, 0.07272376120090485, -0.06305684894323349, 0.07285749912261963, 0.14041319489479065, 0.30975282192230225, -0.06949251145124435, 0.11129564791917801, -0.0039428407326340675, 0.15048830211162567, -0.1970806121826172, -0.2415616512298584, 0.08445596694946289, -0.04714243859052658, -0.08255065232515335, 0.008703372441232204, 0.10256866365671158, 0.01591668464243412, -0.07790204137563705, -0.05264432728290558, 0.051677267998456955, -0.14583000540733337, 0.1304607093334198, 0.038227442651987076, 0.011972651816904545, -0.0767570436000824, 0.1745397448539734, 0.0817817896604538, 0.044023547321558, 0.06408084183931351, -0.09342789649963379, -0.041044242680072784, 0.06990853697061539, -0.0728568285703659, 0.0161578506231308, -0.15907463431358337, -0.04368407279253006, -0.00016900725313462317, 0.02349526807665825, 0.03674223646521568, 0.24376535415649414, 0.06111721694469452, -0.09555161744356155, -0.030685903504490852, 0.09508860856294632, 0.16763414442539215, 0.047286197543144226, 0.028645019978284836, -0.01046205498278141, 0.04850802943110466, -0.06812139600515366, -0.020012356340885162, -0.10470433533191681, -0.05704633146524429, 0.14189162850379944, 0.03158559650182724, -0.013372237794101238, 0.03162461891770363, 0.014448187313973904, 0.029844986274838448, 0.014182830229401588, -0.018944619223475456, 0.009181863628327847, -0.07231299579143524, -0.13750721514225006, -0.018003595992922783, 0.03279413282871246, 0.38463151454925537, 0.08012533187866211, -0.05880413576960564, 0.05976444482803345, 0.10224388539791107, 0.07235042750835419, 0.027962949126958847, -0.0736541822552681, -0.017429284751415253, 0.06328551471233368, -0.047590453177690506, 0.017119714990258217, -0.02597295306622982, 0.06633741408586502, 0.008529478684067726, 0.04367624968290329, -0.056715745478868484, 0.008600205183029175, 0.0615774430334568, -0.27328750491142273, 0.1435280740261078, 0.19394277036190033, 0.174603670835495, 0.1169007271528244, -0.03877260908484459, -0.052788201719522476, -0.005276639945805073, -0.13120803236961365, -0.09366647154092789, 0.17313343286514282, -0.09488549828529358, 0.024632148444652557, 0.06939300894737244, 0.026144444942474365, 0.060005784034729004, -0.02627558819949627, -0.09199579805135727, -0.013068177737295628, -0.01658288761973381, -0.16922685503959656, 0.032865844666957855, 0.03141104057431221, 0.13352558016777039, 0.03896888345479965, -0.024227192625403404, 0.1554933339357376, -0.022314080968499184, -0.009566696360707283, 0.0911383256316185, -0.10035661607980728, -0.27537453174591064, 0.10526666045188904, -0.013741135597229004, 0.03294403851032257, 0.0419033020734787, -0.03576492890715599, -0.16742254793643951, -0.039027079939842224, 0.10079876333475113, 0.02047651819884777, -0.14607669413089752, -0.014356041327118874, 0.016437385231256485, 0.014768917113542557, -0.0518629290163517, -0.08331044018268585, -0.01736968755722046, -0.04093826189637184, 0.1123020350933075, 0.08166896551847458, -0.12143287062644958, 0.11135545372962952, 0.07057967036962509, -0.02939586527645588, 0.03059784509241581, -0.045943133533000946, -0.0624406524002552, -0.08501417189836502, -0.07749989628791809, 0.1300903707742691, 0.01088071521371603, -0.02121497504413128, 0.04257690906524658, 0.08911573886871338, -0.1525593250989914, -0.06691964715719223, -0.027120467275381088, -0.18402014672756195, -0.21476863324642181, -0.20355933904647827, -0.005767129827290773, 0.15271617472171783, 0.013962126336991787, 0.044019754976034164, -0.06879530102014542, 0.036950815469026566, 0.14335645735263824, -0.07265051454305649, -0.11247123032808304, -0.0777062252163887, -0.008072507567703724, -0.036749884486198425, 0.003127556759864092, -0.14671219885349274, -0.051052019000053406, 0.21476763486862183, 0.06883437931537628, 0.11089035123586655, 0.0820200964808464, 0.07235830277204514, -0.03095499984920025, 0.08615640550851822, 0.038368791341781616, 0.1047307550907135, 0.12939518690109253, 0.02387024648487568, -0.0537283793091774, 0.03950239717960358, -0.07849887758493423, -0.007292873226106167, 0.18489116430282593, -0.18219344317913055, 0.018254093825817108, -0.1736699491739273, 0.06967911124229431, -0.08842400461435318, 0.040386881679296494, -0.19652655720710754, 0.05601974576711655, 0.09122876077890396, 0.17947269976139069, -0.04780595004558563, 0.09055645763874054, 0.08439432829618454, -0.05868566781282425, 0.1902516931295395, 0.06347831338644028, 0.07223426550626755, -0.06022188812494278, 0.06850891560316086, -0.09830030798912048, -0.07920090109109879, 0.03774043172597885, 0.0935029610991478, -0.12666313350200653, 0.20065562427043915, 0.03901295363903046, -0.10147117078304291, -0.19152161478996277, -0.09106970578432083, 0.011633382178843021, 0.05472888797521591, 0.1387321799993515, 0.020243339240550995, -0.03793943300843239, -0.06889200210571289, 0.015807606279850006, 0.05619201436638832, 0.030992839485406876, -0.09708945453166962, -0.2039940506219864, 0.07995624095201492, 0.03495456278324127, -0.016197649762034416, -0.20566843450069427, 0.007960166782140732, -0.03661325201392174, -0.05562993139028549, 0.07907576113939285, -0.13807114958763123, 0.05325794219970703, -0.005021392367780209, -0.0533745214343071, 0.15057365596294403, 0.10143417865037918, -0.03257233276963234, -0.09966523945331573, 0.052306897938251495, 0.09925694018602371, 0.03990422934293747, -0.08982253074645996, 0.04199087992310524, -0.0033932740334421396, -0.05382543057203293, -0.19517429172992706, 0.14282861351966858, -0.08322464674711227, 0.08061788976192474, -0.0565318800508976, 0.06371335685253143, 0.035893864929676056, 0.02268843725323677, -0.02849123813211918, 0.009723654948174953, 0.024191061034798622, -0.10285195708274841, 0.15118208527565002, -0.05011991411447525, 0.10875623673200607, 0.2654266953468323, 0.11366783082485199, -0.1506071388721466, 0.16397468745708466, -0.05143996328115463, 0.12202421575784683, 0.16849902272224426, -0.08197549730539322, 0.1589750200510025, 0.23324504494667053, -0.06290852278470993, -0.31995198130607605, 0.08139168471097946, -0.24092385172843933, -0.059290070086717606, 0.1327538639307022, -0.22161303460597992, 0.09697986394166946, 0.1967700868844986, -0.05308683216571808, 0.13216319680213928, -0.15174773335456848, -0.03606593608856201, 0.15740424394607544, -0.10901658982038498, 0.5167860388755798, -0.10291177779436111, -0.06210751831531525, -0.14747272431850433, 0.09125979244709015, 0.19141849875450134, -0.18610206246376038, -0.023579074069857597, 0.033218689262866974, 0.06628337502479553, -0.015597065910696983, -0.026096148416399956, 0.20305809378623962, 0.006474583875387907, 0.1273079514503479, -0.050938837230205536, -0.10957468301057816, 0.20893147587776184, -0.03586818650364876, 0.04823152348399162, 0.02542068250477314, 0.010716548189520836, -0.13459084928035736, -0.02463037706911564, 0.001446972950361669, 0.039658911526203156, 0.09746234118938446, -0.07227694243192673, -0.1358042061328888, -0.0003366951714269817, -0.051855724304914474, -0.04274145886301994, 0.12235832214355469, -0.01710253208875656, 0.02109927125275135, -0.10911370813846588, 0.180304154753685, -0.16931040585041046, 0.011662756092846394, -0.04703300818800926, -0.08706839382648468, 0.031726688146591187, -0.229933962225914, 0.06284148246049881, 0.16533906757831573, 0.001736942445859313, 0.00939806830137968, 0.060609716922044754, 0.027391968294978142, 0.041980572044849396, 0.13267670571804047, -0.059537533670663834, -0.10135800391435623, 0.09608802199363708, -0.018763788044452667, 0.05181173235177994, 0.15992006659507751, 0.034045420587062836, 0.09151031076908112, -0.028821110725402832, -0.040398914366960526, 0.053341343998909, -0.09648337960243225, 0.02237367257475853, 0.005368403624743223, 0.034355469048023224, -0.19579410552978516, 0.24203070998191833, 0.03159693256020546, -0.10905048251152039, -0.027948247268795967, -0.024083275347948074, -0.0874820277094841, -0.042395271360874176, 0.010561206378042698, 0.2706131339073181, -0.08137719333171844, -0.17313605546951294, 0.02166859433054924, -0.14594846963882446, -0.003002251498401165, 0.1206754520535469, 0.07346493750810623, 0.09401024132966995, 0.026769986376166344, -0.03305870667099953, 0.009806030429899693, -0.0888262689113617, -0.10224461555480957, -0.044757481664419174, -0.012003683485090733, -0.18205833435058594, -0.01559405867010355, 0.12924735248088837, -0.10587895661592484, -0.04082576185464859, -0.06829321384429932, 0.08047162741422653, -0.22055864334106445, -0.05856432393193245, 0.023423489183187485, 0.004411568399518728, -0.02288055047392845, -0.00027394809876568615, -0.008340799249708652, -0.05508246272802353, -0.07325467467308044, 0.18311192095279694, 0.07043960690498352, 0.07291111350059509, -0.0993611291050911, -0.07384298741817474, 0.005685406271368265, 0.06738066673278809, 0.15485399961471558, 0.09450490772724152, -0.00938109215348959, 0.02345825359225273, -0.05856380611658096, -0.10018297284841537, 0.12344730645418167, 0.09151330590248108, 0.08723660558462143, 0.06949654966592789, -0.04152069613337517, 0.09945157915353775, -0.0435652919113636, 0.05633464828133583, -0.0830347090959549, -0.04618801176548004, 0.166537344455719, -0.12456563860177994, -0.07293490320444107, 0.03488950431346893, -0.09238825738430023, 0.17536561191082, 0.06902500987052917, -0.04604554548859596, 0.04861942678689957, 0.005726025439798832, -0.03269147872924805, -0.05359205976128578, -0.024655994027853012, -0.12345980107784271, -0.0945492833852768, 0.10513508319854736, 0.05076131969690323, -0.08115691691637039, 0.5619105100631714, -0.06898598372936249, -0.11442103981971741, -0.00027614861028268933, 0.1174866259098053, -0.00678668636828661, 0.019886789843440056, 0.15562589466571808, -0.00475178100168705, -0.05212385952472687, -0.05075063183903694, 0.12288269400596619, -0.00019678960961755365, 0.12475262582302094, 0.1173316165804863, 0.0491798110306263, 0.09378612786531448, -0.0415443554520607, -0.024089399725198746, -0.09109172224998474, 0.014324385672807693, 0.003067724872380495, -0.00552212493494153, -0.035038407891988754, 0.04088884964585304, -0.05642422288656235, -0.02827821858227253, -0.004871311131864786, 0.04047513008117676, -0.0998123362660408, 0.021504132077097893, -0.057558707892894745, -0.022046465426683426, -0.030132975429296494, -0.01844855397939682, 0.014085810631513596, -0.06389427185058594, -0.04702228680253029, 0.2507164776325226, 0.08372163772583008, -0.03130430728197098, -0.011367342434823513, -0.11641336977481842, 0.08620394766330719, 0.02335716225206852, -0.015223345719277859, -0.043255310505628586, -0.015551969408988953, -0.0883570984005928, -0.03157053887844086, 0.030240489169955254, -0.06995058059692383, -0.016997331753373146, -0.04068455845117569, -0.01953454501926899, -0.09662820398807526, -0.005228439811617136, -0.04058454558253288, 0.06875906139612198, -0.12510907649993896, 0.05433538183569908, 0.0006182399811223149, -0.032080650329589844, 0.07450562715530396, -0.005158514715731144, 0.03945557028055191, 0.12853656709194183, 0.005255242809653282, 0.020858734846115112, -0.06714531034231186, 0.09997329115867615, 0.040184710174798965, -0.038788583129644394, -0.07416202872991562, 0.03125781565904617, 0.3980175852775574, -0.08561643213033676, -0.022198280319571495, -0.07773160189390182, 0.04365249350667, 0.03306502476334572, 0.11329834908246994, 0.011912028305232525, 0.12117462605237961, -0.03958369791507721, -0.053161971271038055, 0.06084319204092026, 0.0413430780172348, 0.012702967040240765, 0.07016689330339432, 0.027758045122027397, 0.02035626396536827, -0.07107703387737274, 0.15828564763069153, -0.15242618322372437, 0.02890137955546379, 0.040882255882024765, -0.2117062360048294, -0.09929569065570831, -0.004698347765952349, -0.08692097663879395, -0.01786675862967968, 0.031136082485318184, -0.06066902354359627, -0.04989667981863022, -0.14058400690555573, 0.004600902553647757, -0.3200421631336212, -0.15006889402866364, 0.0012882358860224485, 0.1737668663263321, 0.040628597140312195, -0.030721230432391167, 0.09391891956329346, 0.003970488905906677, -0.011110742576420307, -0.051667727530002594, 0.004346152767539024, 0.01602737046778202, 0.11628983914852142, -0.07387059181928635, -0.1244707852602005, -0.08963979035615921, 0.0016884168144315481, 0.105201855301857, -0.08206216990947723, -0.039221711456775665, 0.17522846162319183, -0.07170342653989792, -0.03623431921005249, -0.011858796700835228, -0.07992105185985565, 0.04741988703608513, -0.06791171431541443, 0.020124880596995354, -0.014438278041779995, -0.005881528835743666, 0.09789013862609863, 0.013586855493485928, -0.06583614647388458, -0.10470632463693619, -0.05521612986922264, -0.042489998042583466, 0.11812948435544968, 0.03456658869981766, 0.00662196846678853, 0.09209419041872025, -0.1018771231174469, 0.09464498609304428, 0.03872460871934891, 0.01944071426987648, -0.02200893498957157, 0.03969881311058998, -0.023485688492655754, -0.1299814134836197, 0.038777370005846024, 0.01887914352118969, -0.04585905373096466, -0.0713995024561882 ]
cb5e422bf8b0e8cb05f0c8d675be566066dc0de9
# Dataset Card for "massive_transport-de" [More Information needed](https://github.com/huggingface/datasets/blob/main/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
fathyshalab/massive_transport-de
[ "region:us" ]
2023-02-08T11:23:46+00:00
{"dataset_info": {"features": [{"name": "id", "dtype": "string"}, {"name": "label", "dtype": "int64"}, {"name": "text", "dtype": "string"}], "splits": [{"name": "train", "num_bytes": 36885, "num_examples": 571}, {"name": "validation", "num_bytes": 7175, "num_examples": 110}, {"name": "test", "num_bytes": 7787, "num_examples": 124}], "download_size": 28802, "dataset_size": 51847}}
2023-02-08T12:29:02+00:00
[]
[]
TAGS #region-us
# Dataset Card for "massive_transport-de" More Information needed
[ "# Dataset Card for \"massive_transport-de\"\n\nMore Information needed" ]
[ "TAGS\n#region-us \n", "# Dataset Card for \"massive_transport-de\"\n\nMore Information needed" ]
[ 6, 16 ]
[ "passage: TAGS\n#region-us \n# Dataset Card for \"massive_transport-de\"\n\nMore Information needed" ]
[ -0.06127510964870453, 0.13856682181358337, -0.003089088946580887, 0.014958662912249565, 0.08379765599966049, 0.07369976490736008, 0.02097558230161667, 0.007231089752167463, 0.02344421297311783, -0.027047012001276016, 0.16435010731220245, 0.023379644379019737, -0.003261320758610964, 0.2568828761577606, 0.006069609895348549, -0.09749210625886917, 0.04650865122675896, 0.008917856961488724, -0.2763742208480835, 0.009080564603209496, 0.09808945655822754, -0.07131616026163101, 0.06111486256122589, -0.12581764161586761, -0.128683403134346, 0.12706312537193298, -0.0859367698431015, -0.06525085866451263, 0.031892240047454834, -0.0573769211769104, 0.141706183552742, 0.007934341207146645, 0.07421990483999252, -0.05955677852034569, 0.002782552968710661, 0.05470077693462372, -0.03820288926362991, 0.045073654502630234, 0.03357115760445595, -0.08743920922279358, -0.12184861302375793, -0.06535530090332031, 0.038403548300266266, -0.03162311762571335, -0.024554820731282234, -0.3326062560081482, -0.03336255997419357, -0.04796495661139488, 0.014489586465060711, -0.014576458372175694, 0.1363072693347931, 0.06971833109855652, -0.14245708286762238, 0.021777601912617683, -0.014471711590886116, -0.03911289945244789, 0.053783711045980453, 0.19339139759540558, -0.0317341610789299, 0.22870801389217377, -0.009082669392228127, 0.01348748616874218, 0.11355568468570709, -0.0678555816411972, 0.04856821522116661, -0.018332449719309807, -0.05412574112415314, 0.15642276406288147, -0.05940813198685646, -0.012055532075464725, 0.32912519574165344, -0.05566428601741791, 0.0541481152176857, 0.07950760424137115, -0.09621770679950714, -0.09739437699317932, 0.02320701628923416, -0.1025070995092392, 0.10385914146900177, 0.04260002076625824, -0.015938885509967804, -0.006529932841658592, -0.08554545044898987, -0.0661020576953888, -0.20128433406352997, 0.03562357649207115, -0.03835960477590561, 0.14054454863071442, -0.1480913758277893, 0.06224607676267624, -0.12717176973819733, -0.06761675328016281, 0.051626306027173996, -0.14348278939723969, -0.0758693739771843, -0.06724300980567932, 0.04599778354167938, -0.047863371670246124, 0.05411553382873535, -0.007012958638370037, 0.19356867671012878, -0.017306040972471237, -0.09945779293775558, 0.07180767506361008, 0.13571251928806305, -0.0007065947283990681, -0.14690324664115906, -0.182451069355011, -0.04997750371694565, -0.1071394607424736, -0.022844549268484116, -0.05659107863903046, -0.1977614015340805, -0.024898244068026543, -0.15878328680992126, 0.13287924230098724, -0.10178283601999283, -0.11295496672391891, -0.05409155786037445, -0.007665884681046009, 0.15610067546367645, -0.02281337045133114, 0.05363583564758301, -0.007251964882016182, -0.11113958805799484, 0.14623567461967468, -0.1065048798918724, -0.0230715274810791, 0.12021756172180176, 0.19657905399799347, -0.1565367877483368, -0.051428429782390594, -0.0920250341296196, -0.057197846472263336, 0.06924517452716827, -0.14159326255321503, 0.034191302955150604, -0.11301447451114655, -0.25894373655319214, 0.0900830551981926, 0.029736051335930824, -0.11390645056962967, 0.14649878442287445, 0.021783415228128433, 0.01611247844994068, -0.009334825910627842, -0.08407223969697952, 0.15539826452732086, -0.10747533291578293, 0.02657141536474228, -0.09667769074440002, 0.06833299249410629, -0.1905447095632553, 0.039095524698495865, -0.10859762132167816, -0.014907865785062313, -0.06489894539117813, 0.0007399675669148564, -0.16396504640579224, 0.10014697909355164, -0.10099229216575623, -0.02366124466061592, -0.1031833365559578, 0.005812645889818668, 0.010667775757610798, 0.04280364513397217, -0.2982979118824005, -0.03376193344593048, 0.07386254519224167, -0.08933188021183014, -0.06917000561952591, 0.06496942788362503, -0.06256222724914551, 0.09241154789924622, 0.059440724551677704, 0.20518268644809723, 0.02689068578183651, -0.02570788748562336, 0.09444616734981537, 0.2272949069738388, -0.20643176138401031, -0.3064422905445099, 0.07564698904752731, -0.02393576316535473, -0.1338542252779007, -0.0012659784406423569, 0.20892316102981567, 0.05866542086005211, -0.01875801756978035, -0.025708438828587532, 0.059775419533252716, -0.14378514885902405, 0.05730486661195755, -0.03398462384939194, 0.04234679788351059, -0.04768773540854454, 0.1192593052983284, 0.125731959939003, 0.06802169978618622, 0.0391843244433403, -0.07162777334451675, 0.04821367561817169, -0.005470564588904381, -0.18492907285690308, -0.018816081807017326, -0.07178432494401932, -0.08314844220876694, 0.034814365208148956, 0.014777123928070068, -0.0029065755661576986, 0.2293490469455719, 0.10338277369737625, -0.031222017481923103, -0.03959224373102188, 0.10637947916984558, 0.19141072034835815, 0.08514679223299026, -0.08083491027355194, -0.032478369772434235, 0.08603537082672119, -0.050810474902391434, -0.14255258440971375, -0.055505428463220596, -0.049511730670928955, 0.14418548345565796, 0.037109117954969406, 0.06564263254404068, 0.07848621159791946, 0.0008069047471508384, -0.009712045080959797, -0.03575032204389572, -0.0816144198179245, -0.04438318684697151, -0.07852311432361603, -0.04909934848546982, 0.13001452386379242, -0.02854149416089058, 0.4764690697193146, 0.09099318087100983, 0.07129278779029846, -0.02844843454658985, -0.0008791628060862422, 0.04874922335147858, -0.05211259797215462, -0.039451222866773605, -0.04987098649144173, -0.17589136958122253, -0.08970408886671066, 0.1334969401359558, -0.04782923310995102, 0.02189209870994091, 0.04991265386343002, 0.04772946611046791, -0.038549117743968964, 0.046250976622104645, 0.07135678082704544, -0.2505456209182739, 0.21721869707107544, 0.25058525800704956, 0.006383627653121948, 0.12708190083503723, 0.029168229550123215, -0.07973995804786682, -0.05884627252817154, -0.13603155314922333, -0.1134907677769661, 0.1925019919872284, -0.01950349286198616, 0.036829873919487, 0.059237949550151825, 0.0915127545595169, 0.09012264758348465, -0.04089662805199623, -0.05881226435303688, 0.016498148441314697, 0.02632785774767399, -0.09497229754924774, 0.037421297281980515, -0.032919175922870636, 0.1018480733036995, 0.02028016373515129, -0.1144336387515068, 0.1172766163945198, -0.01514382753521204, 0.04862044379115105, 0.10551905632019043, -0.16540230810642242, -0.21159058809280396, -0.049578726291656494, -0.13919448852539062, 0.04131864011287689, 0.0134707847610116, -0.05371808260679245, -0.17038743197917938, -0.09932844340801239, 0.03240739554166794, -0.08036347478628159, -0.23512180149555206, 0.008708038367331028, -0.13529863953590393, 0.0380038246512413, -0.092627614736557, -0.1292029470205307, 0.05211523547768593, -0.04219280183315277, 0.10595905035734177, 0.014821639284491539, -0.0828390046954155, 0.10758725553750992, 0.10070788115262985, -0.05665477365255356, 0.06878677755594254, -0.041215308010578156, -0.0896473079919815, -0.01715853065252304, -0.01919206790626049, 0.0842023715376854, 0.03305380046367645, 0.03333026543259621, 0.06819278746843338, 0.060031406581401825, -0.08727487921714783, -0.01289798691868782, -0.05821630731225014, -0.18327778577804565, -0.2697518467903137, -0.13894039392471313, -0.039083920419216156, 0.12447865307331085, 0.025672145187854767, 0.08638277649879456, 0.045160047709941864, 0.030833009630441666, 0.15621989965438843, 0.05562768504023552, -0.16717293858528137, -0.03453676775097847, -0.057802941650152206, -0.02528420276939869, 0.03595906123518944, -0.17865821719169617, -0.10691393166780472, 0.2096465528011322, 0.15373042225837708, 0.17221099138259888, 0.04887666180729866, 0.10868092626333237, -0.07146231830120087, 0.04244432970881462, 0.07172645628452301, 0.16362141072750092, 0.06697236746549606, -0.012167409062385559, -0.07281307131052017, 0.0332525260746479, 0.05797969549894333, 0.04843558743596077, 0.22349461913108826, -0.13488462567329407, 0.09127359837293625, -0.12840571999549866, 0.08757094293832779, -0.15450994670391083, 0.01574750430881977, -0.24610625207424164, 0.17565448582172394, 0.048631906509399414, 0.15124128758907318, -0.05421894043684006, 0.10781481862068176, 0.12920954823493958, -0.02883460372686386, 0.04136813431978226, 0.053231652826070786, 0.050903454422950745, -0.0710495188832283, 0.00975669827312231, 0.03332258015871048, 0.017542295157909393, -0.02076459862291813, 0.13858865201473236, -0.1800118237733841, 0.16921958327293396, 0.03119003400206566, -0.10699362307786942, -0.11552073061466217, -0.08861029893159866, 0.013944803737103939, 0.05411721020936966, 0.10875537991523743, 0.010250231251120567, -0.008006849326193333, -0.10337073355913162, -0.13522791862487793, -0.028195910155773163, 0.08279724419116974, 0.01951720006763935, -0.1589694321155548, 0.03741005063056946, -0.05721283704042435, 0.03417573124170303, -0.12541218101978302, 0.012749122455716133, -0.11721907556056976, -0.020443864166736603, 0.0709008127450943, -0.12061924487352371, 0.07890348136425018, -0.0070352074690163136, -0.06037447974085808, 0.14855653047561646, 0.006145169958472252, -0.0203312449157238, -0.10754423588514328, -0.03238963335752487, 0.1893426477909088, 0.04328775778412819, -0.014477095566689968, 0.0660235807299614, 0.003942382056266069, 0.010370521806180477, -0.12460195273160934, 0.15688969194889069, -0.06295067816972733, 0.12225750833749771, -0.09168724715709686, 0.013117383234202862, -0.029898758977651596, 0.0134962797164917, -0.09025736898183823, -0.05038094520568848, -0.07516466826200485, -0.1074228584766388, 0.11206386983394623, -0.024636927992105484, 0.12035398930311203, 0.21950316429138184, 0.09822249412536621, 0.031862370669841766, 0.1848313957452774, -0.018606163561344147, 0.15863117575645447, 0.0628466084599495, -0.09437927603721619, 0.20883019268512726, 0.18266251683235168, -0.040417276322841644, -0.3190001845359802, 0.10418372601270676, -0.16995802521705627, -0.029601771384477615, -0.005545446649193764, -0.14883819222450256, 0.08175325393676758, 0.23346880078315735, -0.061914604157209396, 0.25881579518318176, -0.17750667035579681, -0.07993043214082718, 0.13653159141540527, -0.11928863078355789, 0.43767648935317993, -0.08156339079141617, -0.027884680777788162, -0.2120027244091034, 0.04484913870692253, 0.15131373703479767, -0.18212758004665375, 0.014869840815663338, 0.012867951765656471, -0.005117553751915693, -0.024329625070095062, -0.08312659710645676, 0.18760691583156586, 0.03684405982494354, 0.18321606516838074, -0.04553809389472008, -0.051713187247514725, 0.25068211555480957, -0.04488220438361168, 0.11579836159944534, 0.030388537794351578, 0.006198704242706299, -0.014308551326394081, -0.04054420441389084, 0.08360005915164948, -0.0030401968397200108, 0.07444670796394348, -0.10563758760690689, -0.10619020462036133, 0.02949502319097519, -0.06436942517757416, -0.11763329058885574, 0.078763946890831, 0.10062883794307709, -0.08419492840766907, 0.055554307997226715, 0.06943809986114502, -0.06168036162853241, -0.04113911837339401, -0.05588837340474129, -0.07931657880544662, 0.11632442474365234, -0.31793534755706787, 0.07001125067472458, 0.14041051268577576, -0.019883492961525917, 0.013914380222558975, 0.07467258721590042, -0.0018965641502290964, -0.006051789037883282, 0.10003320872783661, -0.04275908321142197, -0.02100265957415104, 0.08380341529846191, -0.059295859187841415, 0.08829905092716217, 0.15718723833560944, 0.007101241033524275, 0.011395592242479324, 0.036372553557157516, 0.05259835347533226, 0.046866536140441895, -0.06183052435517311, 0.16490863263607025, 0.056154765188694, 0.03287626802921295, -0.16982604563236237, 0.24416683614253998, 0.0749751627445221, -0.11529333889484406, -0.015011584386229515, -0.046572666615247726, -0.0859212875366211, -0.0463097020983696, 0.04289994761347771, 0.194997638463974, -0.06680896878242493, -0.10741551965475082, 0.04879523068666458, -0.055296532809734344, 0.024366697296500206, 0.15051022171974182, 0.08937879651784897, 0.09431323409080505, -0.019991334527730942, -0.047272466123104095, -0.0350080206990242, -0.0010789689840748906, -0.09066501259803772, 0.07942622154951096, -0.12203674018383026, -0.13849088549613953, -0.025514014065265656, 0.13331414759159088, -0.0977773368358612, -0.00264595914632082, -0.09751231968402863, 0.056288234889507294, -0.30006831884384155, -0.05803733691573143, 0.06067778542637825, -0.016376640647649765, -0.024968555197119713, 0.021389007568359375, -0.03646800294518471, 0.00949554331600666, -0.0969640389084816, 0.13676047325134277, 0.05845709890127182, 0.02599921077489853, -0.03168173506855965, -0.05283090099692345, -0.008215246722102165, 0.06291870772838593, 0.11011477559804916, 0.12011361122131348, -0.00682228384539485, 0.007088427897542715, 0.03136400878429413, -0.0924069881439209, 0.04221908003091812, 0.07160350680351257, 0.15352126955986023, 0.11820800602436066, 0.0204546470195055, 0.060866840183734894, -0.06311102956533432, 0.012009640224277973, -0.05211931839585304, -0.08943343162536621, 0.1188666895031929, -0.09303387999534607, -0.09966014325618744, 0.0003076894790865481, -0.1146075651049614, 0.14049433171749115, 0.08433093130588531, 0.014516704715788364, 0.07862600684165955, 0.02095264382660389, 0.05222358554601669, -0.06643110513687134, -0.00545615516602993, -0.13270173966884613, -0.022156421095132828, 0.0862148329615593, 0.011805481277406216, -0.09239467978477478, 0.5931792259216309, 0.04445898160338402, -0.13887430727481842, -0.04366956278681755, 0.04599374532699585, 0.04667609930038452, 0.04624858871102333, 0.1720988154411316, 0.07278946787118912, -0.03574937954545021, -0.1442825198173523, 0.12139468640089035, 0.11329254508018494, 0.14575257897377014, 0.017249755561351776, 0.05699878931045532, 0.09989023953676224, -0.004466564394533634, 0.0020484167616814375, -0.12749549746513367, -0.05223296582698822, -0.015008294023573399, -0.008292298763990402, -0.039092596620321274, 0.0279233418405056, -0.11528927832841873, 0.037044283002614975, 0.04452178254723549, -0.037410374730825424, -0.04997508227825165, -0.004404934123158455, -0.10608772188425064, -0.020711850374937057, -0.03915787115693092, -0.13173221051692963, -0.016467927023768425, -0.0009181849309243262, -0.04319973289966583, 0.24256563186645508, 0.13345390558242798, 0.035046160221099854, 0.053298693150281906, -0.11884307116270065, 0.023658188059926033, 0.02203727699816227, 0.000888762588147074, -0.045497775077819824, -0.018095016479492188, -0.04493924230337143, -0.02088284306228161, -0.10163675248622894, -0.06494445353746414, 0.014212147332727909, 0.041114721447229385, 0.001657325541600585, -0.07650533318519592, 0.005180821754038334, -0.08338291943073273, 0.08182322233915329, -0.14081445336341858, 0.02846170775592327, 0.006818135268986225, -0.03691316395998001, 0.025921734049916267, 0.0014532414497807622, -0.03739285096526146, 0.04708416014909744, 0.00311234756372869, 0.09694972634315491, 0.020836619660258293, 0.17156626284122467, -0.015578889288008213, -0.045052990317344666, -0.09583358466625214, 0.0567033477127552, 0.37790825963020325, -0.1529027223587036, -0.01462592277675867, 0.08521156758069992, 0.02336696907877922, -0.0033238427713513374, 0.13192704319953918, 0.049220044165849686, 0.2017701268196106, -0.02690383978188038, -0.07006840407848358, 0.03458676487207413, -0.04657173901796341, 0.005062080454081297, 0.12637892365455627, 0.014225093647837639, -0.047273438423871994, -0.1345321387052536, 0.07521054893732071, -0.13778945803642273, 0.08751434832811356, 0.06649214774370193, -0.1060708612203598, -0.11800717562437057, 0.056299034506082535, 0.11767701059579849, -0.024158744141459465, -0.03967474028468132, -0.09909266978502274, -0.05861922353506088, -0.09998888522386551, -0.023838235065340996, -0.3112313449382782, -0.1652033030986786, 0.0044699739664793015, 0.1657097190618515, 0.08422846347093582, -0.018874917179346085, 0.08874814957380295, 0.03886514902114868, 0.011378505267202854, -0.08487056195735931, 0.020874859765172005, -0.014442263171076775, -0.06027340888977051, -0.0536448210477829, -0.10660435259342194, -0.09891624003648758, 0.016979889944195747, 0.009471508674323559, -0.01551592443138361, -0.04105648770928383, 0.13559912145137787, -0.06926240026950836, -0.03807644918560982, -0.05405351147055626, -0.027493217960000038, 0.07673180848360062, 0.014790089800953865, -0.015704836696386337, 0.018259750679135323, -0.02902686782181263, 0.046155016869306564, 0.07454735785722733, -0.06793026626110077, -0.03902966529130936, -0.01840888150036335, -0.06269554793834686, 0.1467493325471878, 0.06779511272907257, -0.02173667401075363, 0.09294689446687698, -0.07063592970371246, 0.04267803207039833, 0.0035045123659074306, -0.017740102484822273, 0.06515763700008392, 0.10120133310556412, -0.01900273934006691, -0.014044119976460934, 0.014418312348425388, -0.03161189332604408, -0.11047850549221039, -0.12811139225959778 ]
4bc695d3f616b8696e65f8700209ba79bf58474a
# Dataset Card for "massive_calendar-de" [More Information needed](https://github.com/huggingface/datasets/blob/main/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
fathyshalab/massive_calendar-de
[ "region:us" ]
2023-02-08T11:24:03+00:00
{"dataset_info": {"features": [{"name": "id", "dtype": "string"}, {"name": "label", "dtype": "int64"}, {"name": "text", "dtype": "string"}], "splits": [{"name": "train", "num_bytes": 113565, "num_examples": 1688}, {"name": "validation", "num_bytes": 18678, "num_examples": 280}, {"name": "test", "num_bytes": 27631, "num_examples": 402}], "download_size": 79139, "dataset_size": 159874}}
2023-02-08T12:29:23+00:00
[]
[]
TAGS #region-us
# Dataset Card for "massive_calendar-de" More Information needed
[ "# Dataset Card for \"massive_calendar-de\"\n\nMore Information needed" ]
[ "TAGS\n#region-us \n", "# Dataset Card for \"massive_calendar-de\"\n\nMore Information needed" ]
[ 6, 17 ]
[ "passage: TAGS\n#region-us \n# Dataset Card for \"massive_calendar-de\"\n\nMore Information needed" ]
[ -0.10607070475816727, 0.09151645749807358, -0.003827865468338132, -0.007055872119963169, 0.08924892544746399, 0.13863341510295868, -0.013246703892946243, 0.06177233159542084, 0.1393733024597168, -0.016610143706202507, 0.1409040242433548, 0.03899436816573143, 0.00041772369877435267, 0.23939381539821625, -0.05266977846622467, -0.08753557503223419, 0.02434791810810566, 0.043526023626327515, -0.22561155259609222, -0.006729332264512777, 0.0665925145149231, -0.083730548620224, 0.07699085026979446, -0.1628497838973999, -0.1740121692419052, 0.09883500635623932, -0.03580686077475548, -0.05987143516540527, 0.07554257661104202, -0.07748932391405106, 0.07072227448225021, -0.02660990133881569, 0.006665385328233242, -0.07000493258237839, -0.00023012801830191165, 0.007670059334486723, -0.02156643010675907, 0.06259463727474213, 0.03325868770480156, -0.046495936810970306, -0.12150344997644424, -0.12516389787197113, -0.006926265079528093, -0.0026143768336623907, -0.0725545585155487, -0.3321021795272827, -0.043294839560985565, -0.11061134934425354, -0.019817423075437546, -0.053082920610904694, 0.07487686723470688, 0.057594265788793564, -0.16027504205703735, -0.024269787594676018, -0.04911443963646889, -0.02868916280567646, 0.048660676926374435, 0.22232995927333832, -0.0697925016283989, 0.18764325976371765, 0.01924138516187668, 0.05396289378404617, 0.14402513206005096, -0.02962602488696575, 0.003425635164603591, -0.021687790751457214, -0.017150385305285454, 0.08537019044160843, -0.0045082708820700645, -0.049072250723838806, 0.324968546628952, -0.009649143554270267, 0.054412469267845154, -0.011059867218136787, -0.05333811417222023, -0.023259533569216728, 0.008996079675853252, -0.006472527049481869, 0.0788625106215477, 0.0313865952193737, 0.01971123181283474, -0.0010405315551906824, -0.07438713312149048, -0.10903578996658325, -0.2019064575433731, 0.007629789877682924, -0.07417496293783188, 0.1335269957780838, -0.20357002317905426, -0.008323109708726406, -0.2377738654613495, -0.02336355485022068, 0.008385149762034416, -0.11001963168382645, -0.07278309762477875, -0.024377964437007904, -0.010966475121676922, 0.06455685943365097, 0.16230785846710205, 0.026815827935934067, 0.04168669506907463, -0.0037670587189495564, -0.06758254766464233, 0.0557146854698658, 0.20333562791347504, -0.029480211436748505, -0.11172066628932953, -0.1924578696489334, -0.010660571046173573, -0.1373080164194107, 0.002072660718113184, -0.06374137848615646, -0.07596337050199509, -0.06046371906995773, -0.11619897931814194, 0.09642309695482254, -0.06060241907835007, -0.11807939410209656, -0.044167280197143555, -0.012746445834636688, 0.1667415052652359, -0.05476488173007965, 0.03358946368098259, 0.007932020351290703, -0.07195388525724411, 0.11540655791759491, -0.1820334643125534, -0.030002526938915253, 0.09936165809631348, 0.06767749786376953, -0.09770917892456055, -0.06352241337299347, -0.0827753096818924, 0.0009124494390562177, 0.09584493935108185, -0.19715966284275055, 0.09973940253257751, -0.05072042718529701, -0.23038136959075928, 0.07483777403831482, 0.011260922066867352, -0.07856718450784683, 0.0979338213801384, 0.04531598836183548, 0.05824974551796913, -0.03189692273736, -0.07385100424289703, 0.20635749399662018, -0.10392852127552032, 0.03343949839472771, 0.016268519684672356, 0.08453840017318726, -0.26857778429985046, 0.045404281467199326, -0.10567666590213776, -0.0014588303165510297, -0.07340563088655472, 0.07114709168672562, -0.08653170615434647, 0.08692080527544022, -0.07923191785812378, -0.014512967318296432, -0.11307758837938309, 0.014542886056005955, -0.026257263496518135, 0.05033271387219429, -0.30733320116996765, -0.030541829764842987, 0.14359799027442932, -0.0828421413898468, -0.1601843237876892, 0.07594925910234451, -0.05847783759236336, 0.057314131408929825, 0.08267387002706528, 0.2622562050819397, -0.050261445343494415, 0.07685348391532898, 0.028153348714113235, 0.1507008820772171, -0.1155635342001915, -0.300437867641449, 0.1145186498761177, -0.06714899092912674, -0.09467019885778427, 0.028321875259280205, 0.1469620019197464, -0.014065803959965706, -0.04785270243883133, -0.04096363112330437, -0.006932904943823814, -0.14920540153980255, 0.013593574054539204, -0.011651438660919666, 0.03538218513131142, -0.05214531347155571, 0.16510023176670074, 0.09871631860733032, 0.09255793690681458, 0.03903108462691307, -0.04936113953590393, 0.028446566313505173, 0.05843827500939369, -0.19992323219776154, 0.010297201573848724, -0.1727755218744278, -0.027020595967769623, 0.03286656364798546, -0.021969769150018692, 0.018039479851722717, 0.11681542545557022, 0.06876463443040848, -0.08742042630910873, -0.003933591768145561, 0.13878749310970306, 0.13135364651679993, 0.03860245645046234, 0.009133102372288704, 0.0087131317704916, 0.04263390600681305, -0.09948758780956268, -0.06347320973873138, -0.05675261840224266, -0.07284732908010483, 0.1142507866024971, -0.016223104670643806, 0.04042976722121239, 0.01893623359501362, 0.017080262303352356, 0.023067673668265343, -0.016180364415049553, -0.052242711186409, -0.020152267068624496, -0.07140707969665527, -0.07947181165218353, -0.030384568497538567, 0.005375195294618607, 0.3574312627315521, 0.12347735464572906, 0.0003188197151757777, 0.057171471416950226, -0.022313296794891357, 0.07278541475534439, -0.0013283839216455817, -0.054131340235471725, -0.0048757451586425304, -0.08414629846811295, -0.05570150166749954, 0.041856806725263596, -0.045042719691991806, 0.04125890135765076, 0.04643351212143898, 0.04942874610424042, -0.06632254272699356, 0.039595745503902435, 0.15239623188972473, -0.22949564456939697, 0.16238711774349213, 0.2445572018623352, 0.04231651499867439, 0.13075731694698334, -0.05361540988087654, -0.1158733069896698, 0.002223040210083127, -0.13699971139431, -0.08232634514570236, 0.17123247683048248, -0.13321274518966675, 0.038431163877248764, 0.09114190936088562, 0.04599699750542641, 0.11198233813047409, -0.03118554688990116, -0.05471128597855568, -0.011475772596895695, -0.002864912385120988, -0.1586119681596756, 0.02196713723242283, 0.02669209986925125, 0.09653870016336441, 0.04467436298727989, -0.02514044940471649, 0.15092331171035767, -0.01728735864162445, 0.03848307952284813, 0.1226799488067627, -0.12350864708423615, -0.17137661576271057, 0.029263557866215706, -0.050171490758657455, 0.015593772754073143, 0.010442407801747322, -0.03556526452302933, -0.13090530037879944, -0.039895109832286835, 0.04919304698705673, -0.04008115082979202, -0.1585913896560669, 0.014264179393649101, 0.015986144542694092, 0.021601663902401924, -0.06568820029497147, -0.09988576173782349, 0.009795897640287876, -0.04493563622236252, 0.04117359220981598, 0.06673794984817505, -0.07088106125593185, 0.12368979305028915, 0.09588225930929184, -0.027511755004525185, 0.06917315721511841, -0.020020021125674248, -0.015034046024084091, -0.08642920851707458, -0.055929996073246, 0.13020335137844086, 0.06392902880907059, -0.04159567877650261, 0.055058207362890244, 0.09208116680383682, -0.15763933956623077, -0.038780760020017624, -0.027165487408638, -0.1846006214618683, -0.23506003618240356, -0.1591983437538147, -0.0524238683283329, 0.07502800971269608, 0.03483425825834274, 0.05320846661925316, -0.05781514570116997, 0.044497910887002945, 0.14238235354423523, -0.00004936202822136693, -0.14288057386875153, -0.08465376496315002, -0.021865980699658394, -0.010685007087886333, -0.017233971506357193, -0.15880577266216278, -0.038671474903821945, 0.20473819971084595, 0.2023167759180069, 0.17656804621219635, 0.08252615481615067, 0.16730986535549164, -0.04802709445357323, 0.04505959153175354, 0.04167807474732399, 0.15362852811813354, 0.08638712763786316, -0.010380505584180355, -0.020550327375531197, 0.01746906153857708, -0.027150869369506836, 0.0057384860701859, 0.1710183471441269, -0.14148908853530884, 0.028580281883478165, -0.12051304429769516, 0.08387822657823563, -0.1271815150976181, 0.0664508268237114, -0.2545897960662842, 0.09196297079324722, 0.06451684981584549, 0.17648418247699738, -0.08555170893669128, 0.10037092119455338, 0.0808308944106102, 0.0012349175522103906, 0.09671829640865326, 0.04246652498841286, 0.05371711403131485, -0.07307566702365875, 0.03084127977490425, -0.05407674238085747, 0.003744462039321661, 0.009558780118823051, 0.10699388384819031, -0.17577064037322998, 0.1772492676973343, 0.02106495015323162, -0.05392679572105408, -0.1581968367099762, -0.07427192479372025, -0.0031420434825122356, 0.012856378220021725, 0.12127338349819183, -0.013340572826564312, -0.04552515223622322, -0.07442745566368103, -0.09083802253007889, 0.023407457396388054, 0.03830874711275101, -0.019730517640709877, -0.15326882898807526, 0.059313151985406876, 0.011448468081653118, -0.006689951289445162, -0.10825461149215698, -0.007401191629469395, -0.10679609328508377, -0.05998145043849945, 0.07306508719921112, -0.1402205526828766, 0.0366763211786747, 0.002708671847358346, -0.049183160066604614, 0.11612434685230255, 0.07264918833971024, -0.035194627940654755, -0.09995122253894806, -0.017889291048049927, 0.21870994567871094, 0.018005410209298134, -0.027304263785481453, 0.03234424069523811, 0.037765853106975555, -0.022202812135219574, -0.18299643695354462, 0.1428394913673401, -0.07168561220169067, 0.13719436526298523, -0.038959842175245285, 0.051431115716695786, -0.019214045256376266, 0.0379825085401535, -0.014655244536697865, -0.007771075237542391, -0.03062369115650654, -0.08004933595657349, 0.12768982350826263, -0.01729225181043148, 0.10726342350244522, 0.22500331699848175, 0.10332547128200531, -0.0364324115216732, 0.17805632948875427, -0.01180387381464243, 0.1785561442375183, 0.09674061834812164, -0.06579495221376419, 0.14364191889762878, 0.16752593219280243, -0.0006948246737010777, -0.27926716208457947, 0.09899000078439713, -0.17602087557315826, -0.029381945729255676, 0.0005278079770505428, -0.21485349535942078, 0.156957745552063, 0.21628713607788086, -0.04580691084265709, 0.26332080364227295, -0.21780851483345032, -0.023679696023464203, 0.16425715386867523, -0.06851833313703537, 0.438382089138031, -0.10498486459255219, -0.033619143068790436, -0.17527520656585693, 0.009583555161952972, 0.22529055178165436, -0.15235279500484467, 0.03005397692322731, -0.003748297691345215, 0.0860287994146347, -0.02322167344391346, -0.06089170649647713, 0.18627001345157623, 0.04732093587517738, 0.14880549907684326, -0.0040625338442623615, -0.05224680155515671, 0.14557446539402008, -0.032720860093832016, 0.07628826051950455, 0.021483132615685463, -0.015713149681687355, -0.09291711449623108, -0.03515883535146713, 0.02974725514650345, 0.0322747528553009, 0.07244846969842911, -0.09225049614906311, -0.07752512395381927, 0.014503933489322662, -0.10629630833864212, -0.04949985072016716, 0.14516794681549072, 0.05310015752911568, -0.0490645132958889, -0.04424258694052696, 0.09972051531076431, -0.16347497701644897, 0.00797355081886053, -0.04267878085374832, -0.08165062218904495, 0.09892555326223373, -0.27086442708969116, 0.07440328598022461, 0.12304225564002991, 0.009046283550560474, -0.006787803489714861, 0.078072689473629, -0.020716335624456406, 0.04900502413511276, 0.14215582609176636, -0.03020070679485798, -0.08155748248100281, 0.09198704361915588, -0.11569065600633621, 0.0598202720284462, 0.11884713917970657, 0.021289037540555, 0.07919087260961533, -0.0077942791394889355, -0.031664881855249405, 0.04679484665393829, -0.07505470514297485, 0.11615179479122162, 0.03814912587404251, 0.010082149878144264, -0.20813804864883423, 0.2546561658382416, 0.025031421333551407, -0.1435699462890625, -0.01402706652879715, -0.03232948109507561, -0.05595913529396057, -0.06535312533378601, -0.006137427408248186, 0.16591426730155945, -0.08977098017930984, -0.1316184252500534, 0.055966202169656754, -0.0805695429444313, 0.028333492577075958, 0.07799758017063141, 0.09575928002595901, 0.06843492388725281, -0.005095531698316336, -0.05473385006189346, -0.043231215327978134, -0.055421777069568634, -0.09879304468631744, 0.03858919069170952, -0.04868823662400246, -0.15282785892486572, -0.05047648027539253, 0.1118444874882698, -0.07983270287513733, -0.018730787560343742, -0.0427381806075573, 0.037879399955272675, -0.2808017432689667, -0.021706031635403633, 0.046126652508974075, 0.01791633851826191, -0.012061051093041897, 0.058069080114364624, -0.021009381860494614, -0.041677217930555344, -0.09089706838130951, 0.08843231201171875, 0.04835442826151848, 0.04532022774219513, -0.07509543001651764, -0.019580770283937454, 0.007865230552852154, 0.04434080421924591, 0.1500808149576187, 0.12026643007993698, 0.02212558686733246, 0.031644146889448166, -0.030129238963127136, -0.14464227855205536, 0.09157437086105347, 0.07128483057022095, 0.13267910480499268, 0.04747748002409935, 0.019377904012799263, 0.1188865676522255, -0.044562648981809616, 0.028363868594169617, -0.11818306893110275, -0.07565093785524368, 0.08031855523586273, -0.15441244840621948, -0.055554747581481934, 0.04721711203455925, -0.10172609239816666, 0.20575754344463348, 0.08052089810371399, -0.068807452917099, 0.08021510392427444, -0.004956493154168129, -0.01549552008509636, -0.06084202975034714, -0.055920157581567764, -0.11227046698331833, -0.09745403379201889, 0.13082638382911682, 0.06525486707687378, -0.05828347057104111, 0.5848913788795471, -0.03610555827617645, -0.1221776008605957, -0.04714256152510643, 0.0499543659389019, -0.010366891510784626, 0.03229069709777832, 0.32487067580223083, 0.1068301722407341, -0.04191720485687256, -0.035280730575323105, 0.11988652497529984, 0.06874985992908478, 0.2488209754228592, 0.1082422286272049, 0.11525597423315048, 0.0648772343993187, -0.013466873206198215, 0.008788431994616985, -0.11083397269248962, 0.035758618265390396, 0.06045292317867279, 0.03796534240245819, -0.017217811197042465, 0.07748527079820633, -0.11116606742143631, 0.02107173390686512, -0.018932757899165154, -0.027138689532876015, -0.06917902827262878, -0.018232179805636406, -0.074689581990242, -0.023606767877936363, -0.06474099308252335, -0.05522918701171875, 0.01118253543972969, -0.08181148022413254, -0.05304320529103279, 0.27967149019241333, 0.09054770320653915, -0.024055909365415573, 0.058187466114759445, -0.11234364658594131, 0.06494041532278061, 0.06188231334090233, 0.009575595147907734, -0.06160140782594681, 0.0607859306037426, -0.09221583604812622, -0.02615123800933361, -0.0463561937212944, -0.028893642127513885, 0.0054000429809093475, -0.0020936408545821905, 0.018396152183413506, -0.09732825309038162, 0.007983469404280186, -0.08022814244031906, 0.06242118775844574, -0.10677538812160492, 0.07957223802804947, 0.020752236247062683, -0.04916580393910408, 0.058554381132125854, 0.05437924340367317, 0.000052214221796020865, 0.04588635638356209, -0.015212489292025566, 0.05541716516017914, 0.0023137948010116816, 0.11589647084474564, 0.008335978724062443, -0.06226061284542084, -0.08650733530521393, 0.037269264459609985, 0.3553261160850525, -0.11602872610092163, -0.03574501723051071, 0.03196853771805763, 0.04088471457362175, -0.010288684628903866, 0.16439121961593628, 0.021418407559394836, 0.158194437623024, -0.011609605513513088, -0.05366457998752594, 0.03328615799546242, 0.005604120437055826, -0.04280421510338783, 0.09337275475263596, 0.0495043583214283, -0.05419318750500679, -0.07251925021409988, 0.13399624824523926, -0.13554738461971283, 0.06330341100692749, 0.057769451290369034, -0.146100714802742, -0.13487127423286438, 0.001372631755657494, 0.007963266223669052, -0.025972096249461174, 0.00044313460239209235, -0.09227719157934189, -0.01691596955060959, -0.10499536246061325, -0.023218465968966484, -0.3179619610309601, -0.1322852373123169, -0.01789984479546547, 0.16825106739997864, 0.0962400808930397, -0.0004427101812325418, 0.103748619556427, 0.01769719272851944, 0.0008811395964585245, -0.09380768239498138, 0.04801628366112709, 0.00018418139370623976, 0.08526641875505447, -0.026790175586938858, -0.06356939673423767, -0.09463904798030853, -0.07763219624757767, 0.08798666298389435, -0.0017522339476272464, -0.07204660028219223, 0.10699667781591415, -0.047678764909505844, -0.05477142333984375, -0.06120890751481056, -0.07631946355104446, 0.09224895387887955, -0.007592898327857256, -0.015070026740431786, 0.016229305416345596, -0.018094424158334732, 0.13014835119247437, 0.0791771411895752, -0.05350009724497795, -0.1315082460641861, -0.010101111605763435, -0.04930249974131584, 0.10083106905221939, -0.013626007363200188, -0.07458958774805069, 0.09101320058107376, -0.08233184367418289, 0.06210969388484955, 0.012979262508451939, 0.011497975327074528, 0.07839833945035934, 0.05933224409818649, -0.02830599434673786, -0.014488653279840946, 0.003675209591165185, -0.014279833994805813, -0.06378187239170074, -0.10636935383081436 ]
604f094c08dfd9a455acd3f1f7bd2158187cdd30
# Dataset Card for "massive_play-de" [More Information needed](https://github.com/huggingface/datasets/blob/main/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
fathyshalab/massive_play-de
[ "region:us" ]
2023-02-08T11:24:21+00:00
{"dataset_info": {"features": [{"name": "id", "dtype": "string"}, {"name": "label", "dtype": "int64"}, {"name": "text", "dtype": "string"}], "splits": [{"name": "train", "num_bytes": 76088, "num_examples": 1377}, {"name": "validation", "num_bytes": 14011, "num_examples": 260}, {"name": "test", "num_bytes": 21427, "num_examples": 387}], "download_size": 60317, "dataset_size": 111526}}
2023-02-08T12:29:43+00:00
[]
[]
TAGS #region-us
# Dataset Card for "massive_play-de" More Information needed
[ "# Dataset Card for \"massive_play-de\"\n\nMore Information needed" ]
[ "TAGS\n#region-us \n", "# Dataset Card for \"massive_play-de\"\n\nMore Information needed" ]
[ 6, 16 ]
[ "passage: TAGS\n#region-us \n# Dataset Card for \"massive_play-de\"\n\nMore Information needed" ]
[ -0.0850168839097023, 0.07988926023244858, -0.003625335404649377, 0.06947242468595505, 0.0752207562327385, 0.05687218904495239, 0.017924407497048378, 0.07675604522228241, 0.1031457930803299, -0.002620271174237132, 0.13914278149604797, 0.05709165334701538, 0.018572676926851273, 0.34529080986976624, 0.015762658789753914, -0.05422265827655792, 0.016775671392679214, 0.07163674384355545, -0.14042073488235474, 0.0019128213170915842, 0.009958479553461075, -0.08073138445615768, 0.05866694822907448, -0.11315853148698807, -0.08216492086648941, 0.07379286736249924, -0.05870427191257477, -0.0474623367190361, 0.06679673492908478, -0.09110919386148453, 0.07618382573127747, -0.050858065485954285, -0.015064642764627934, -0.10898350179195404, 0.03241069242358208, 0.02581014484167099, -0.016521040350198746, -0.013085749000310898, 0.014877665787935257, 0.0037888656370341778, -0.11299053579568863, -0.007857182063162327, 0.020810047164559364, 0.028371714055538177, -0.08135953545570374, -0.34418949484825134, -0.007506401278078556, -0.14825835824012756, -0.017794566228985786, -0.05136161670088768, 0.058926668018102646, 0.11385167390108109, -0.13144458830356598, -0.04191507771611214, 0.02234528586268425, 0.0009908229112625122, 0.03801055997610092, 0.21716561913490295, 0.01608378440141678, 0.15058256685733795, 0.030009333044290543, 0.036018483340740204, 0.11253339797258377, -0.028685836121439934, -0.06179268658161163, 0.006442905403673649, 0.05763344094157219, 0.11109957098960876, 0.02969922311604023, -0.038910768926143646, 0.26270434260368347, -0.04531368985772133, 0.04803798720240593, -0.04045414924621582, 0.017965199425816536, -0.07271330058574677, -0.02972172386944294, -0.016052257269620895, 0.11068360507488251, 0.02116634137928486, -0.008405271917581558, 0.03320564702153206, -0.05859208479523659, -0.11100037395954132, -0.13927429914474487, -0.06360069662332535, -0.0711207240819931, 0.11497059464454651, -0.24779266119003296, 0.009880722500383854, -0.18007397651672363, 0.003185704816132784, -0.05433012917637825, -0.1011660248041153, -0.14412054419517517, -0.05660427361726761, -0.03911846503615379, 0.10150659829378128, 0.15914812684059143, 0.05407130718231201, 0.13033904135227203, 0.05059133097529411, -0.05647723376750946, 0.06114223971962929, 0.20225979387760162, -0.13226749002933502, -0.050502948462963104, -0.1456179916858673, 0.004732847213745117, -0.05673830211162567, 0.015247263945639133, -0.0985260009765625, -0.14058338105678558, 0.018328797072172165, -0.1461847424507141, 0.09175371378660202, -0.0009150716941803694, -0.1282503753900528, -0.0644427239894867, -0.006916324142366648, 0.22526469826698303, -0.03823069483041763, 0.02782965637743473, 0.043510861694812775, -0.08801901340484619, 0.07185009121894836, -0.18593277037143707, 0.01050645299255848, 0.13187837600708008, 0.019972000271081924, -0.09194091707468033, -0.08539577573537827, -0.09325577318668365, 0.011857355013489723, 0.18543100357055664, -0.20149476826190948, 0.07401689141988754, -0.022951748222112656, -0.23034191131591797, 0.05983113497495651, 0.01224930677562952, -0.06438726931810379, 0.05972179397940636, -0.03364860266447067, 0.04211597144603729, -0.056682176887989044, -0.06768906116485596, 0.15551838278770447, -0.11253833770751953, 0.036669809371232986, 0.003066060598939657, 0.12690895795822144, -0.21608012914657593, 0.041841864585876465, -0.1014697402715683, -0.0005070933839306235, -0.10479211062192917, 0.07090182602405548, -0.08705729991197586, 0.02178974263370037, -0.051581062376499176, 0.00042746387771330774, -0.09891144931316376, 0.03933817520737648, -0.039593834429979324, 0.03234640508890152, -0.3430462181568146, -0.07715452462434769, 0.14564090967178345, -0.0738820731639862, -0.2320324033498764, 0.05113184079527855, -0.09302997589111328, -0.00989177729934454, 0.07857882231473923, 0.24192698299884796, -0.014530339278280735, -0.020961347967386246, 0.06608982384204865, 0.136805921792984, -0.18480828404426575, -0.2857038080692291, 0.16935697197914124, -0.0575811043381691, 0.0024473564699292183, -0.018160076811909676, 0.05867551267147064, 0.021594317629933357, -0.03384764492511749, -0.03765048459172249, 0.04752124100923538, -0.2025730013847351, 0.037585459649562836, 0.05194700509309769, 0.02589963562786579, -0.0694386437535286, 0.15852215886116028, 0.17741386592388153, 0.07843434810638428, 0.08735520392656326, -0.027564456686377525, -0.03909662738442421, 0.0852084681391716, -0.11402828991413116, 0.04368969053030014, -0.18924447894096375, -0.09216263890266418, -0.00021631643176078796, -0.058863405138254166, 0.03997503221035004, 0.13423766195774078, 0.1107439249753952, -0.01112920232117176, 0.044503968209028244, 0.10606928914785385, 0.0625830665230751, 0.044125720858573914, 0.07602962106466293, -0.05189422145485878, -0.02041427046060562, -0.11378110200166702, -0.04668679088354111, -0.04840114340186119, -0.10587373375892639, 0.0689089372754097, -0.025493094697594643, 0.005288976710289717, -0.05834176391363144, -0.03350544720888138, -0.012178300879895687, -0.004489362705498934, -0.03668057173490524, -0.005764653440564871, -0.0629325658082962, -0.08611579984426498, -0.019834931939840317, -0.04017139971256256, 0.3760177195072174, 0.1531539261341095, 0.029042469337582588, 0.055311672389507294, -0.03999006003141403, 0.04540101811289787, -0.04363947734236717, -0.03071933053433895, 0.0021679194178432226, -0.001640397822484374, 0.026836423203349113, 0.062048688530921936, -0.1080571785569191, 0.04296180233359337, 0.04269101843237877, 0.06459589302539825, -0.03709530457854271, -0.03138758987188339, 0.1726287305355072, -0.22698679566383362, 0.16192637383937836, 0.1808481216430664, 0.10525913536548615, 0.25184330344200134, -0.054170094430446625, -0.09374988824129105, 0.001463480875827372, -0.06409310549497604, -0.08379834145307541, 0.1286678910255432, -0.11097216606140137, 0.040726304054260254, 0.0547255203127861, 0.013131918385624886, 0.07935501635074615, -0.043677959591150284, -0.12136365473270416, 0.04823380708694458, 0.0062425630167126656, -0.2188265323638916, 0.04453834146261215, 0.03006618842482567, 0.060304202139377594, 0.08896823972463608, -0.040194425731897354, 0.1807195246219635, -0.04943077266216278, 0.004101694095879793, 0.0764092281460762, -0.17084306478500366, -0.1653660088777542, 0.0327625535428524, -0.09986294060945511, 0.03741234168410301, 0.05927440896630287, -0.05781574547290802, -0.1892566829919815, -0.013812371529638767, 0.06307998299598694, -0.08900194615125656, -0.18470899760723114, -0.068199522793293, 0.02964666672050953, 0.042541466653347015, -0.09088500589132309, -0.08596758544445038, 0.039893738925457, -0.0203954316675663, -0.008239408023655415, -0.0013307740446180105, -0.09034256637096405, 0.13740776479244232, 0.1557975709438324, -0.001695506856776774, 0.08601922541856766, -0.04741787910461426, -0.09519293904304504, -0.0558423176407814, -0.05341247469186783, 0.17301346361637115, -0.002308150287717581, -0.030343662947416306, -0.05847826227545738, 0.08996966481208801, -0.08795977383852005, -0.012270337902009487, -0.015760792419314384, -0.20407700538635254, -0.20163439214229584, -0.13052192330360413, -0.04245910421013832, 0.16989029943943024, 0.08352860808372498, 0.02744263783097267, -0.029643358662724495, -0.0023464928381145, 0.14553576707839966, -0.03432479128241539, -0.044572968035936356, -0.09128709137439728, -0.11128556728363037, -0.02236098051071167, -0.029031652957201004, -0.1733732372522354, -0.026701156049966812, 0.21679602563381195, 0.1438429057598114, 0.15994864702224731, 0.11093983054161072, 0.17809616029262543, -0.020591873675584793, -0.04649652913212776, 0.010100592859089375, 0.187413290143013, 0.13876377046108246, -0.031783852726221085, -0.041818901896476746, 0.01543671265244484, -0.040617670863866806, 0.05021139234304428, 0.21282900869846344, -0.17095254361629486, -0.0029300565365701914, -0.04253656044602394, 0.038249675184488297, -0.204087033867836, 0.034583352506160736, -0.22454410791397095, 0.14685985445976257, 0.08617822825908661, 0.1715427190065384, -0.1127915009856224, 0.1437055766582489, 0.026766808703541756, -0.06259573251008987, 0.12480420619249344, 0.052493974566459656, 0.05935468524694443, -0.0675034448504448, 0.02726810798048973, 0.007600362412631512, -0.006123647093772888, 0.0013457410968840122, 0.10407829284667969, -0.11460305750370026, 0.09160390496253967, -0.01520266942679882, -0.03174746409058571, -0.1542108654975891, -0.12268233299255371, 0.04245886579155922, -0.08486338704824448, 0.09608832746744156, -0.009100102819502354, -0.024551939219236374, -0.11860469728708267, -0.02370281331241131, 0.00019844650523737073, 0.021723700687289238, 0.04569300264120102, -0.1435956209897995, 0.040723249316215515, 0.020070044323801994, 0.013728895224630833, -0.052119236439466476, 0.017295684665441513, -0.06987357884645462, -0.09506630152463913, 0.08897746354341507, -0.07860946655273438, 0.011253328993916512, -0.0050596026703715324, -0.07780848443508148, 0.0847231075167656, 0.10998548567295074, -0.00028566099354065955, -0.04583633691072464, 0.012347512878477573, 0.14022517204284668, 0.054824355989694595, 0.0318092443048954, -0.04881628230214119, 0.10484835505485535, -0.12604054808616638, -0.12993477284908295, 0.12194888293743134, -0.05176364630460739, 0.10063663870096207, -0.04638928920030594, 0.010658929124474525, 0.04119859263300896, 0.03627435863018036, -0.009273679926991463, -0.01452738605439663, 0.007277477066963911, -0.06073133274912834, 0.20537938177585602, -0.1025056466460228, 0.00927839707583189, 0.1468355804681778, 0.22765350341796875, 0.08987859636545181, 0.20738139748573303, 0.0007525098044425249, 0.14190499484539032, 0.16793832182884216, -0.06907577812671661, 0.20837020874023438, 0.07020775228738785, -0.007662284653633833, -0.3259951174259186, 0.039599381387233734, -0.16778038442134857, -0.1406746208667755, 0.06006520614027977, -0.2711975872516632, 0.09765425324440002, 0.10800890624523163, -0.04349452629685402, 0.2986238896846771, -0.0897909551858902, -0.004344355780631304, 0.11678116023540497, -0.04728785902261734, 0.4557560384273529, -0.1144881397485733, -0.04539352282881737, -0.1503337323665619, -0.08338961005210876, 0.17420324683189392, -0.24581652879714966, 0.02072795294225216, 0.007870076224207878, 0.05530821532011032, -0.03082064539194107, -0.07290433347225189, 0.1564355194568634, 0.043176956474781036, 0.1543247103691101, 0.005059495102614164, -0.016649233177304268, 0.17556847631931305, -0.031759899109601974, 0.05114864930510521, 0.0176435187458992, -0.05945688113570213, -0.08907464146614075, 0.00008821487426757812, 0.037153031677007675, -0.009879334829747677, 0.06222466379404068, -0.03827502578496933, -0.07671214640140533, 0.05118709057569504, -0.14834657311439514, 0.026261769235134125, 0.19648009538650513, 0.0376184843480587, -0.08541765809059143, 0.0013974583707749844, 0.12613755464553833, -0.07317377626895905, -0.09977536648511887, -0.03294704109430313, -0.09580659121274948, 0.06433170288801193, -0.2267923653125763, 0.03857853636145592, 0.09406263381242752, 0.03374853357672691, -0.06424613296985626, 0.1407097429037094, -0.09017269313335419, 0.12518097460269928, 0.11822651326656342, 0.026540081948041916, -0.019133005291223526, 0.1059495061635971, -0.060430314391851425, 0.1248168796300888, 0.050361715257167816, -0.054772354662418365, 0.059045448899269104, 0.022705741226673126, -0.016904624179005623, 0.019765306264162064, -0.09016606211662292, 0.02225765772163868, 0.006806425750255585, 0.023425254970788956, -0.21655243635177612, 0.31908196210861206, -0.006700955796986818, -0.06892568618059158, 0.04404877871274948, -0.05658162385225296, -0.05702604725956917, -0.05903243273496628, 0.013311034999787807, 0.2060297280550003, -0.021567020565271378, -0.20890723168849945, 0.02845010906457901, -0.11076699942350388, 0.10183581709861755, 0.04847274348139763, 0.08131353557109833, 0.07878243178129196, 0.0010261673014611006, -0.011350140906870365, -0.050831280648708344, -0.022217432036995888, -0.07962512224912643, -0.021416382864117622, 0.014148274436593056, -0.1595144122838974, 0.004653348587453365, 0.10854247957468033, -0.07922735810279846, -0.03828516975045204, -0.059394121170043945, 0.10279545187950134, -0.3132384419441223, -0.06105281412601471, 0.04669712483882904, -0.0167738888412714, -0.03365493193268776, 0.09409265965223312, 0.0021755683701485395, -0.025946011766791344, -0.07281335443258286, 0.1078428402543068, 0.0837298333644867, 0.06009795516729355, -0.14829325675964355, -0.010255765169858932, 0.024162111803889275, 0.023199664428830147, 0.08668336272239685, 0.10521258413791656, 0.021980613470077515, 0.039557259529829025, -0.013654250651597977, -0.1594654619693756, 0.041438497602939606, 0.08698277920484543, 0.1011718362569809, 0.044326119124889374, -0.011428648605942726, 0.08199075609445572, -0.11094670742750168, 0.004906356334686279, -0.09065300971269608, -0.03261056914925575, 0.09104132652282715, -0.07663656771183014, -0.07616692036390305, 0.03785761073231697, -0.10553380101919174, 0.19476474821567535, 0.06075494736433029, -0.04073657467961311, 0.13302043080329895, 0.03226847946643829, -0.04776415601372719, -0.0616752952337265, -0.038570329546928406, -0.0809301882982254, -0.10263273119926453, 0.12618611752986908, 0.030753960832953453, -0.06461574137210846, 0.5434309840202332, -0.0643790140748024, -0.15020456910133362, -0.03860747814178467, 0.07206244021654129, 0.062353454530239105, 0.0664195716381073, 0.30085426568984985, 0.08007364720106125, -0.04382626339793205, -0.049187980592250824, 0.1595679670572281, 0.07139742374420166, 0.10900043696165085, 0.10892443358898163, 0.021841833367943764, -0.0002963817969430238, -0.007237523328512907, 0.03504185378551483, -0.11176039278507233, 0.009722545742988586, 0.09945297986268997, 0.1203007847070694, -0.03709796071052551, 0.05573940649628639, -0.0877607986330986, 0.06208690255880356, -0.01043291948735714, -0.010254777036607265, -0.1096135824918747, 0.0068884617649018764, -0.08111303299665451, 0.030616875737905502, -0.04113348573446274, -0.11547330021858215, 0.04569214582443237, -0.07101821899414062, 0.004410119727253914, 0.16388389468193054, 0.08188749104738235, 0.011641205288469791, 0.07564719021320343, -0.03846553713083267, 0.09620536118745804, 0.05456722527742386, -0.04967176914215088, -0.07689361274242401, 0.11855195462703705, -0.09741810709238052, 0.01651809550821781, -0.1426687389612198, -0.0083395354449749, 0.009398598223924637, -0.06396948546171188, 0.07363719493150711, -0.035427726805210114, -0.04695918783545494, -0.046930015087127686, 0.03209426999092102, -0.12164156138896942, 0.10531293600797653, 0.007638171315193176, -0.03563596308231354, 0.04330568015575409, -0.08154671639204025, 0.052217382937669754, 0.016646327450871468, 0.03324545919895172, 0.09741201996803284, -0.026876699179410934, 0.08809348195791245, 0.011944595724344254, -0.032430168241262436, -0.1103212982416153, 0.09151485562324524, 0.2873637080192566, -0.10997399687767029, -0.0311124324798584, -0.018003227189183235, 0.0430678129196167, 0.0019439398311078548, 0.23175591230392456, -0.03386097028851509, 0.11293404549360275, -0.09386149793863297, -0.08474506437778473, -0.02263302356004715, -0.004581685643643141, 0.02690625935792923, 0.06911623477935791, 0.1432250589132309, -0.003332453779876232, -0.05971115082502365, 0.09591446816921234, -0.2659192383289337, 0.08595483750104904, 0.06278367340564728, -0.05713460221886635, -0.05664552003145218, -0.020754622295498848, 0.04144683852791786, -0.011331427842378616, 0.057564277201890945, -0.05098779872059822, 0.007841353304684162, -0.11067330092191696, -0.011958743445575237, -0.3492144048213959, -0.10997215658426285, -0.008845086209475994, 0.11188923567533493, 0.06351646780967712, -0.053048089146614075, 0.12791746854782104, 0.021005410701036453, 0.05246923491358757, -0.057522691786289215, 0.03822200745344162, 0.010763472877442837, 0.0982028916478157, -0.11896966397762299, -0.10275638103485107, -0.05739050731062889, -0.004831909667700529, 0.06086033210158348, -0.0175873301923275, -0.057207707315683365, 0.16429923474788666, -0.13362978398799896, -0.10555049777030945, -0.014993596822023392, -0.04335404187440872, 0.07046478241682053, -0.05588364228606224, -0.033052317798137665, 0.0014263889752328396, -0.009155587293207645, 0.12911970913410187, 0.06454019248485565, -0.02958628349006176, -0.1283155083656311, 0.036719270050525665, -0.042225997895002365, 0.13265655934810638, 0.005957433953881264, -0.16586443781852722, 0.10209321230649948, -0.13261228799819946, 0.025233857333660126, 0.04461979120969772, 0.01444062776863575, 0.01611676998436451, 0.07073991745710373, -0.055577076971530914, 0.04199937358498573, 0.03612077236175537, 0.024176785722374916, -0.038104232400655746, -0.12873074412345886 ]
b906d0fa137c8018568bdd3e14ef932c361a7bb9
# Dataset Card for "massive_news-de" [More Information needed](https://github.com/huggingface/datasets/blob/main/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
fathyshalab/massive_news-de
[ "region:us" ]
2023-02-08T11:24:39+00:00
{"dataset_info": {"features": [{"name": "id", "dtype": "string"}, {"name": "label", "dtype": "int64"}, {"name": "text", "dtype": "string"}], "splits": [{"name": "train", "num_bytes": 30815, "num_examples": 503}, {"name": "validation", "num_bytes": 5434, "num_examples": 82}, {"name": "test", "num_bytes": 7882, "num_examples": 124}], "download_size": 25144, "dataset_size": 44131}}
2023-02-08T12:30:05+00:00
[]
[]
TAGS #region-us
# Dataset Card for "massive_news-de" More Information needed
[ "# Dataset Card for \"massive_news-de\"\n\nMore Information needed" ]
[ "TAGS\n#region-us \n", "# Dataset Card for \"massive_news-de\"\n\nMore Information needed" ]
[ 6, 16 ]
[ "passage: TAGS\n#region-us \n# Dataset Card for \"massive_news-de\"\n\nMore Information needed" ]
[ -0.07104779779911041, 0.0818089172244072, -0.004546191077679396, -0.06113605201244354, 0.040534716099500656, 0.12901648879051208, 0.06015940383076668, 0.037392932921648026, 0.05986223742365837, -0.05946740880608559, 0.16631923615932465, 0.04203406348824501, -0.03783322870731354, 0.22778962552547455, -0.035885296761989594, -0.038388293236494064, 0.09782832115888596, 0.0029864609241485596, -0.12283297628164291, 0.0033530746586620808, 0.056593719869852066, -0.058724090456962585, 0.026215892285108566, -0.1647765040397644, -0.136053204536438, 0.12572750449180603, -0.04165690764784813, -0.06834957003593445, 0.09264767915010452, -0.0709129050374031, 0.022758500650525093, -0.009255191311240196, -0.006243731360882521, -0.07425408065319061, 0.027426566928625107, 0.017683612182736397, -0.05370096489787102, 0.05098295956850052, 0.0029443444218486547, -0.07641637325286865, -0.12945754826068878, -0.2515698969364166, -0.033753540366888046, -0.015376094728708267, -0.10878752171993256, -0.33690929412841797, -0.009930623695254326, -0.08642782270908356, 0.0392482727766037, 0.045700863003730774, 0.04724116995930672, 0.09729577600955963, -0.13424159586429596, -0.018721820786595345, -0.0023073588963598013, 0.010926416143774986, 0.05550728365778923, 0.13805149495601654, -0.07569966465234756, 0.14419053494930267, 0.057089898735284805, 0.11480067670345306, 0.13525258004665375, -0.039909519255161285, -0.1227557510137558, -0.000650223228149116, 0.013843784108757973, 0.04377835616469383, 0.001745628658682108, -0.054180439561605453, 0.23001916706562042, 0.0016223284183070064, 0.04414407163858414, -0.021789701655507088, -0.0011370953870937228, 0.04378493130207062, 0.00286436197347939, 0.02923920564353466, -0.001233889488503337, 0.0429094061255455, 0.03221975266933441, -0.012385223060846329, -0.10026279836893082, -0.06107550114393234, -0.21845892071723938, 0.09976021945476532, -0.06587917357683182, 0.15801194310188293, -0.20135386288166046, 0.01750459522008896, -0.08652479946613312, -0.04441549628973007, 0.04143426567316055, -0.14141781628131866, 0.005526126362383366, -0.004099811427295208, -0.017528507858514786, 0.05303262919187546, 0.10486283898353577, -0.07732074707746506, -0.06639215350151062, -0.033961813896894455, -0.08790082484483719, 0.12236103415489197, 0.2428475171327591, -0.19360876083374023, -0.1396692395210266, -0.12378643453121185, 0.0026492064353078604, -0.12954464554786682, 0.02004178613424301, -0.04425453394651413, -0.027699073776602745, 0.05053197592496872, -0.16854113340377808, 0.10087895393371582, 0.010010994039475918, -0.08351051062345505, -0.060162995010614395, 0.021694643422961235, 0.10962903499603271, -0.06748183071613312, -0.02286979928612709, -0.003606557846069336, -0.06274854391813278, 0.19988742470741272, -0.1656743884086609, 0.025409739464521408, 0.1108509749174118, 0.1470073163509369, -0.1059299036860466, -0.10084022581577301, -0.05306401476264, 0.0421421080827713, 0.0821961835026741, -0.15250135958194733, 0.07035747915506363, -0.04142365604639053, -0.289747029542923, 0.03708365187048912, -0.017237413674592972, -0.05650770664215088, 0.09534689784049988, 0.008853448554873466, 0.06057826429605484, -0.003864516504108906, -0.07572951912879944, 0.1816200166940689, -0.15500523149967194, 0.06549901515245438, -0.015202781185507774, 0.05782433599233627, -0.23977389931678772, 0.018155110999941826, -0.11517225950956345, -0.014721267856657505, 0.06855686008930206, 0.1536635309457779, -0.10311301052570343, 0.13253705203533173, -0.05282875522971153, -0.002598683349788189, -0.1322220116853714, 0.04871993884444237, -0.024257369339466095, 0.1263292133808136, -0.27722224593162537, -0.06748498231172562, 0.0966528132557869, -0.06802767515182495, -0.02788626216351986, 0.008890132419764996, -0.08081246167421341, 0.11579117178916931, 0.1694622039794922, 0.1678922325372696, -0.09837226569652557, 0.10249830782413483, -0.00939878635108471, 0.10960138589143753, -0.1369224339723587, -0.16933418810367584, 0.06547253578901291, -0.0005685251671820879, -0.17194131016731262, 0.016334693878889084, 0.1148148700594902, 0.012323102913796902, -0.06973328441381454, -0.03925613686442375, 0.053232576698064804, -0.08240245282649994, 0.04722084850072861, -0.007939562201499939, 0.019104769453406334, -0.05943687632679939, 0.0765007734298706, 0.11688745766878128, 0.07408415526151657, 0.07193100452423096, -0.03657180070877075, -0.0076762312091887, 0.01695680245757103, -0.14610455930233002, 0.06675537675619125, -0.11450787633657455, -0.011154323816299438, -0.020481381565332413, 0.025540728121995926, 0.027955345809459686, 0.13984456658363342, 0.04410381615161896, -0.10909832268953323, -0.014637690037488937, 0.10696306824684143, 0.09415065497159958, 0.06260328739881516, 0.06059996411204338, -0.04916646331548691, 0.1092931479215622, -0.10643422603607178, -0.024163199588656425, -0.0775647833943367, -0.08611495792865753, 0.09023717790842056, -0.010460064746439457, 0.035491637885570526, 0.010551170445978642, 0.019552798941731453, 0.01597752422094345, 0.015453532338142395, -0.013646804727613926, -0.0047242483124136925, -0.05371861159801483, -0.07553445547819138, 0.018570564687252045, 0.005089406855404377, 0.33485862612724304, 0.07687610387802124, -0.08129037916660309, 0.04439409822225571, 0.05320296064019203, 0.050210706889629364, 0.013002173975110054, -0.08533619344234467, -0.04661325737833977, -0.06637804955244064, -0.08250855654478073, 0.015937648713588715, -0.028908971697092056, 0.010306894779205322, 0.01680423691868782, 0.11632001399993896, -0.09683256596326828, 0.039553944021463394, 0.08001021295785904, -0.23482118546962738, 0.11128665506839752, 0.23190990090370178, 0.09267617017030716, 0.1647471785545349, -0.06916645914316177, -0.10056063532829285, 0.016765117645263672, -0.1935054361820221, -0.1066695898771286, 0.13570919632911682, -0.057562246918678284, 0.08928759396076202, 0.07684358954429626, 0.02085002511739731, 0.10470463335514069, 0.021549902856349945, -0.14853671193122864, -0.02433694712817669, 0.013493009842932224, -0.2167084515094757, 0.006675658281892538, 0.005578010808676481, 0.08930690586566925, 0.06457877159118652, 0.0019460481125861406, 0.15027987957000732, -0.06495825946331024, 0.022504566237330437, 0.06882015615701675, -0.09729886054992676, -0.27384626865386963, 0.01963457092642784, -0.024003127589821815, 0.04240598529577255, 0.002310075331479311, -0.08102670311927795, -0.16868044435977936, -0.028759676963090897, 0.00739820534363389, -0.07021807134151459, -0.06348994374275208, 0.020382028073072433, 0.13924680650234222, 0.04680436849594116, -0.03169583901762962, -0.09537457674741745, 0.037088289856910706, -0.0896032378077507, 0.028153717517852783, -0.0052701737731695175, -0.08574201166629791, 0.12624123692512512, 0.03496258333325386, 0.019521472975611687, 0.10635693371295929, -0.030341126024723053, -0.004527247976511717, -0.11756908148527145, -0.07341423630714417, 0.1266801506280899, -0.005629206076264381, -0.019760701805353165, 0.09890323132276535, 0.131088525056839, -0.12035349756479263, -0.014578317292034626, 0.007972748950123787, -0.10163954645395279, -0.25423526763916016, -0.12948650121688843, 0.0024523239117115736, 0.09051655977964401, -0.04223167151212692, 0.05051984265446663, -0.026258932426571846, -0.01246595848351717, 0.061598360538482666, -0.04145314171910286, -0.07315672188997269, -0.054868992418050766, 0.021216245368123055, -0.01812415011227131, -0.02534821256995201, -0.16055385768413544, -0.06450147181749344, 0.20514997839927673, 0.10510841012001038, 0.058704569935798645, 0.07611862570047379, 0.1455201804637909, -0.051271386444568634, -0.08684395253658295, 0.06479822844266891, 0.13371048867702484, 0.0977979525923729, -0.05258321017026901, -0.017540596425533295, 0.03280104696750641, 0.028874127194285393, -0.01711389236152172, 0.0772877037525177, -0.1115003153681755, 0.08400028198957443, -0.15527231991291046, 0.055386848747730255, -0.04768814519047737, 0.1068032905459404, -0.21040251851081848, 0.11387325823307037, 0.07305964827537537, 0.1408405303955078, -0.09179727733135223, 0.07711827754974365, 0.05780598148703575, 0.022316528484225273, 0.15935812890529633, 0.08535788953304291, 0.08264696598052979, -0.139455184340477, 0.03811699524521828, -0.039656899869441986, -0.14930088818073273, -0.027181314304471016, 0.15693925321102142, -0.17732998728752136, 0.1917177140712738, 0.024916015565395355, -0.05296940356492996, -0.11602707952260971, -0.13003765046596527, -0.019208146259188652, 0.03600369766354561, 0.10097300261259079, -0.027534067630767822, 0.019158916547894478, -0.059791188687086105, -0.2039274275302887, 0.04856844246387482, -0.002063378691673279, -0.0719795897603035, -0.14027363061904907, 0.07035218924283981, 0.009950922802090645, 0.02597464993596077, -0.1675780862569809, -0.09006150811910629, -0.10045827925205231, -0.013457773253321648, 0.06009161099791527, -0.060560885816812515, -0.0005328116239979863, -0.06250638514757156, -0.04321925342082977, 0.09303916245698929, -0.003194010118022561, -0.04240903630852699, -0.11238794773817062, 0.07733089476823807, 0.07861322909593582, 0.04187817871570587, -0.11548306047916412, 0.08892469108104706, 0.07533921301364899, -0.012538806535303593, -0.2169954925775528, 0.11313196271657944, -0.0825059786438942, 0.062047820538282394, -0.04328933730721474, 0.04008350893855095, 0.06181991845369339, 0.015329875983297825, -0.02518991380929947, -0.002603822620585561, 0.013089491985738277, -0.06911198794841766, 0.17239893972873688, -0.012052144855260849, 0.07207135856151581, 0.23600739240646362, 0.13795341551303864, -0.13993318378925323, 0.12824885547161102, -0.024544555693864822, 0.16099317371845245, 0.18618646264076233, -0.0920378789305687, 0.14707183837890625, 0.21692386269569397, -0.02715674228966236, -0.32986119389533997, 0.0858207419514656, -0.14210659265518188, -0.07006291300058365, 0.031906623393297195, -0.2185971736907959, 0.11689821630716324, 0.22625845670700073, -0.05861448869109154, 0.27988195419311523, -0.26161524653434753, 0.0003170692070852965, 0.10818582028150558, -0.22624291479587555, 0.6214379668235779, -0.08796417713165283, -0.07336302101612091, -0.17282328009605408, 0.07618477195501328, 0.27559471130371094, -0.21117639541625977, -0.021959709003567696, 0.009667865000665188, 0.02551346831023693, -0.026278484612703323, -0.03360045328736305, 0.1901129186153412, 0.017757125198841095, 0.1210673600435257, -0.0720524862408638, -0.03613891452550888, 0.18309973180294037, -0.012068569660186768, 0.03492916375398636, -0.014312352985143661, -0.013101826421916485, -0.11451585590839386, -0.04801507294178009, 0.009864520281553268, 0.041860874742269516, 0.08059390634298325, -0.029037008062005043, -0.04620828852057457, -0.020072290673851967, -0.13268932700157166, -0.028093507513403893, 0.22611846029758453, -0.000504551047924906, 0.002457141876220703, -0.15613462030887604, 0.10084572434425354, -0.11463726311922073, 0.027363501489162445, -0.059644121676683426, -0.07799014449119568, 0.10064966976642609, -0.24844250082969666, 0.004754097666591406, 0.09155155718326569, -0.003047011326998472, -0.02482788823544979, 0.09194570034742355, -0.04907283931970596, 0.05689317360520363, 0.10211262106895447, -0.13935789465904236, -0.03185135871171951, 0.053378887474536896, -0.02996930293738842, 0.09676641970872879, 0.10988886654376984, 0.08864108473062515, 0.08326948434114456, -0.0019956189207732677, 0.0711088553071022, 0.07706619799137115, -0.040317244827747345, 0.06297923624515533, 0.03894517198204994, 0.011059663258492947, -0.20794516801834106, 0.2932807207107544, 0.09381517767906189, -0.1318715661764145, 0.006490527652204037, 0.023801174014806747, -0.05894691124558449, -0.04688425734639168, -0.037044163793325424, 0.20993764698505402, -0.06399419903755188, -0.13784585893154144, 0.014679663814604282, -0.06159587204456329, 0.07914996147155762, 0.1600753366947174, 0.05412955954670906, 0.09607776999473572, 0.006416729651391506, -0.04760676994919777, 0.027993347495794296, 0.011615216732025146, -0.10053063929080963, 0.0022204918786883354, -0.009754651226103306, -0.24149402976036072, -0.03157113492488861, 0.20309199392795563, -0.1219867542386055, -0.032236456871032715, -0.014802501536905766, 0.0923779085278511, -0.29950594902038574, -0.018123410642147064, 0.08760636299848557, -0.019940491765737534, -0.0764862447977066, 0.01385775301605463, -0.01727474294602871, -0.05485248193144798, -0.04444503039121628, 0.10429215431213379, 0.07292261719703674, 0.039565399289131165, -0.10508739203214645, -0.020377924665808678, -0.018708137795329094, 0.052324190735816956, 0.1597556322813034, 0.08930742740631104, 0.010372168384492397, 0.03163858875632286, -0.05652758106589317, -0.1362936645746231, 0.08879153430461884, -0.0011719204485416412, 0.039343494921922684, 0.15558138489723206, -0.002960213692858815, 0.0662485659122467, -0.08704391866922379, 0.06728067249059677, -0.1579855978488922, -0.09940048307180405, 0.15692394971847534, -0.10476407408714294, -0.09186752885580063, 0.04561193287372589, -0.14821098744869232, 0.17389409244060516, 0.05925226956605911, 0.032393548637628555, 0.05263715609908104, 0.024539709091186523, 0.02286829799413681, -0.05143526941537857, -0.04057925567030907, -0.13914911448955536, -0.10134682059288025, 0.1376122534275055, 0.0440959595143795, -0.09468944370746613, 0.5697945952415466, -0.08247394114732742, -0.19089141488075256, -0.030868062749505043, 0.053969793021678925, -0.02845083735883236, 0.03284476324915886, 0.2633933424949646, 0.13152313232421875, -0.01248766016215086, -0.1555623710155487, 0.06326865404844284, 0.0333821140229702, 0.1417870968580246, 0.10524789243936539, 0.09864504635334015, 0.19918181002140045, 0.024251040071249008, 0.07498084008693695, -0.0851740688085556, 0.09510396420955658, -0.008273971267044544, -0.021162638440728188, -0.032909367233514786, 0.07482254505157471, -0.10219299048185349, 0.07221522927284241, 0.06693874299526215, -0.054000385105609894, -0.05381370335817337, 0.044743314385414124, -0.03968089446425438, -0.013965705409646034, -0.011970847845077515, -0.06273933500051498, 0.007715694140642881, -0.0453578419983387, -0.026359934359788895, 0.3088022470474243, 0.10479952394962311, -0.05720842629671097, 0.043797485530376434, 0.02033582516014576, 0.03922174870967865, 0.17560894787311554, -0.016951359808444977, -0.039876487106084824, -0.02166539430618286, -0.0678325966000557, 0.03413506969809532, 0.053463779389858246, -0.052137408405542374, 0.042980339378118515, 0.02088226191699505, 0.018608514219522476, -0.15167392790317535, -0.06439341604709625, -0.02824559062719345, 0.13386647403240204, -0.1115490272641182, 0.039083242416381836, 0.03449196368455887, -0.01667163148522377, 0.05151940882205963, 0.014445731416344643, 0.03944418951869011, 0.05011386424303055, 0.02455882355570793, -0.04978650435805321, -0.0448424257338047, 0.17334222793579102, -0.01979072578251362, -0.09858954697847366, -0.08815820515155792, 0.016111593693494797, 0.3745196461677551, -0.11024259030818939, -0.003080271650105715, 0.013122654519975185, 0.05663830414414406, 0.036349814385175705, 0.1246325671672821, 0.008455531671643257, 0.22664085030555725, -0.043668363243341446, -0.09497564285993576, 0.08928601443767548, 0.01583334058523178, -0.046742215752601624, 0.00531215313822031, 0.044496528804302216, -0.008391751907765865, -0.06675783544778824, 0.18759091198444366, -0.16729582846164703, 0.09188835322856903, -0.03699031099677086, -0.10829048603773117, -0.1293705403804779, -0.008864800445735455, 0.027772627770900726, -0.018104825168848038, -0.017003323882818222, -0.05542707070708275, -0.02868918888270855, -0.09623613953590393, -0.04548104479908943, -0.21307100355625153, -0.21549732983112335, -0.02457471564412117, 0.17027173936367035, 0.04723226651549339, -0.02533799037337303, 0.10956741124391556, -0.026574643328785896, -0.03636147454380989, -0.07374915480613708, 0.02232581563293934, 0.0295951459556818, 0.08963730931282043, -0.026314111426472664, -0.07045566290616989, -0.03994276002049446, -0.06103518232703209, 0.16938206553459167, -0.013306394219398499, -0.045174505561590195, -0.0035430663265287876, -0.11123117059469223, -0.049966100603342056, -0.0032864855602383614, -0.018029050901532173, 0.06425479054450989, 0.038470558822155, -0.0410715714097023, 0.009231424890458584, -0.011052310466766357, 0.10606861114501953, 0.1218571737408638, -0.09207052737474442, -0.07841651886701584, -0.021954553201794624, -0.0374467596411705, 0.0579255037009716, 0.07253475487232208, -0.09837377816438675, 0.12937816977500916, -0.08977039903402328, 0.04924250394105911, 0.05535370483994484, -0.013125240802764893, 0.09896957129240036, 0.05489889159798622, -0.03802357241511345, -0.09415072947740555, 0.04908818379044533, -0.05542081966996193, -0.09338131546974182, -0.10684709995985031 ]
c72a2665a3fd8b5c40684fa526da54ecc373d471
# Dataset Card for "massive_datetime-de" [More Information needed](https://github.com/huggingface/datasets/blob/main/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
fathyshalab/massive_datetime-de
[ "region:us" ]
2023-02-08T11:24:57+00:00
{"dataset_info": {"features": [{"name": "id", "dtype": "string"}, {"name": "label", "dtype": "int64"}, {"name": "text", "dtype": "string"}], "splits": [{"name": "train", "num_bytes": 23001, "num_examples": 402}, {"name": "validation", "num_bytes": 4253, "num_examples": 73}, {"name": "test", "num_bytes": 5966, "num_examples": 103}], "download_size": 19657, "dataset_size": 33220}}
2023-02-08T12:30:27+00:00
[]
[]
TAGS #region-us
# Dataset Card for "massive_datetime-de" More Information needed
[ "# Dataset Card for \"massive_datetime-de\"\n\nMore Information needed" ]
[ "TAGS\n#region-us \n", "# Dataset Card for \"massive_datetime-de\"\n\nMore Information needed" ]
[ 6, 17 ]
[ "passage: TAGS\n#region-us \n# Dataset Card for \"massive_datetime-de\"\n\nMore Information needed" ]
[ -0.07511849701404572, 0.10826899111270905, -0.002397839678451419, -0.051373861730098724, 0.020901374518871307, 0.1199263259768486, 0.030369766056537628, 0.026612352579832077, 0.09179016202688217, 0.0017426720587536693, 0.16789375245571136, -0.015509571880102158, 0.019591184332966805, 0.25924152135849, -0.10393374413251877, -0.06735297292470932, 0.06873821467161179, 0.05561385676264763, -0.13170236349105835, 0.02615596167743206, 0.05699950084090233, -0.06656531244516373, 0.06645821034908295, -0.1800295114517212, -0.15810778737068176, 0.07435298711061478, -0.10097717493772507, -0.09130720794200897, 0.06887615472078323, -0.07747779041528702, 0.04339296743273735, -0.03128175064921379, 0.033482626080513, 0.026728840544819832, -0.015656352043151855, 0.03593084588646889, -0.012228175066411495, -0.02314668893814087, -0.025593960657715797, 0.04362623766064644, -0.12746800482273102, -0.06514277309179306, -0.0021047056652605534, -0.02202678471803665, -0.12878674268722534, -0.28974413871765137, -0.09048788994550705, -0.14948396384716034, 0.03732631728053093, 0.007884325459599495, 0.07396108657121658, 0.13492244482040405, -0.12767618894577026, -0.018294213339686394, -0.025777021422982216, -0.014387143775820732, 0.05062264949083328, 0.2131602019071579, -0.011797823011875153, 0.15039701759815216, 0.07761774957180023, 0.03784768655896187, 0.15070025622844696, -0.0607307031750679, -0.006552544422447681, -0.02925110049545765, -0.03245941177010536, 0.11993911862373352, -0.07055646181106567, -0.09569068998098373, 0.3007565140724182, -0.050107549875974655, 0.025438018143177032, 0.007935195229947567, -0.0512157641351223, -0.07926762849092484, -0.052501484751701355, -0.019962944090366364, 0.13893921673297882, 0.03585854545235634, 0.09466029703617096, 0.05008259043097496, -0.06612327694892883, -0.0644451230764389, -0.18547576665878296, 0.11587060242891312, -0.051434941589832306, 0.15119148790836334, -0.2401997447013855, -0.04007107764482498, -0.12615175545215607, 0.011313879862427711, -0.012999987229704857, -0.04024192690849304, -0.02830200083553791, -0.045947056263685226, -0.06910418719053268, 0.06799489259719849, 0.0637531578540802, 0.005150109529495239, -0.013187444768846035, -0.039160531014204025, -0.028210286051034927, 0.02023833803832531, 0.19728954136371613, 0.006998202297836542, -0.09257899969816208, -0.22998647391796112, -0.010549163445830345, -0.15407629311084747, 0.00774414511397481, -0.012060685083270073, -0.08070274442434311, -0.08956722170114517, -0.08471361547708511, 0.08101534098386765, -0.10325788706541061, -0.10178905725479126, 0.029649440199136734, -0.0023244821932166815, 0.1761203408241272, -0.05996503680944443, -0.003035280155017972, 0.011619450524449348, -0.1978636533021927, 0.07031770050525665, -0.1762242466211319, -0.05922992154955864, 0.07226107269525528, -0.000030257084290497005, -0.10536586493253708, -0.07310716062784195, -0.07588551938533783, -0.05504820868372917, 0.10711738467216492, -0.2490876466035843, 0.014725686982274055, -0.012008356861770153, -0.3300269842147827, 0.043303947895765305, -0.037239544093608856, -0.03998784348368645, 0.09740739315748215, -0.008839947171509266, 0.0445498451590538, -0.03887874260544777, -0.06222396343946457, 0.21195316314697266, -0.11655052751302719, 0.009276807308197021, 0.043238673359155655, 0.1258210837841034, -0.2210759073495865, 0.08867940306663513, -0.13557776808738708, -0.058219876140356064, -0.018752703443169594, 0.056361015886068344, -0.019952572882175446, 0.05195227265357971, -0.054248563945293427, -0.031030699610710144, -0.10852192342281342, 0.06387113034725189, -0.032371312379837036, 0.07043303549289703, -0.28932249546051025, -0.05524301528930664, 0.20457293093204498, -0.042450420558452606, -0.10663703829050064, 0.03696895018219948, -0.043315693736076355, 0.026600535959005356, 0.08044532686471939, 0.13829714059829712, -0.10713280737400055, 0.07565821707248688, 0.10842480510473251, 0.13175082206726074, -0.14455117285251617, -0.3048391044139862, 0.044499628245830536, -0.015508150681853294, -0.044660214334726334, 0.026940729469060898, 0.14643149077892303, 0.048863377422094345, -0.041880637407302856, -0.03684766963124275, 0.02023651823401451, -0.14920461177825928, 0.00018676121544558555, 0.0010658347746357322, 0.025808753445744514, -0.04601917415857315, 0.1804881989955902, 0.2069966346025467, 0.06174923852086067, 0.12472394853830338, -0.05086884647607803, 0.028694042935967445, 0.012530769221484661, -0.09696789085865021, 0.014295275323092937, -0.15971310436725616, -0.061031121760606766, 0.040161099284887314, 0.08320107311010361, 0.020405855029821396, 0.2108069509267807, 0.04337020590901375, -0.09366723150014877, 0.04532044753432274, 0.1142563447356224, 0.1795477271080017, 0.008020831272006035, -0.02227712608873844, 0.10259317606687546, 0.11665409803390503, -0.09179844707250595, -0.005370068363845348, -0.022561363875865936, -0.049403075128793716, 0.06837611645460129, -0.048426494002342224, 0.00592907564714551, -0.017527922987937927, 0.025241367518901825, 0.0442190021276474, -0.012399578467011452, -0.04814887046813965, -0.05897638574242592, -0.09431189298629761, -0.04830888286232948, 0.1521335244178772, -0.1372980773448944, 0.2818187475204468, 0.09627138078212738, 0.06325549632310867, 0.019931484013795853, 0.06257183104753494, 0.07035396993160248, -0.027159597724676132, 0.008245156146585941, 0.03199320286512375, -0.0898326113820076, -0.05073026195168495, 0.04726007953286171, -0.07356231659650803, 0.010914663784205914, 0.03362530097365379, 0.07334122806787491, -0.12568670511245728, -0.004106971435248852, 0.06642917543649673, -0.24213312566280365, 0.1429923176765442, 0.17500656843185425, 0.08774103969335556, 0.16085423529148102, -0.034295860677957535, -0.12920764088630676, 0.023300519213080406, -0.15698231756687164, -0.13547813892364502, 0.1258358657360077, -0.07974881678819656, -0.013711653649806976, 0.08327902853488922, 0.0901978462934494, 0.0966271311044693, -0.04247694090008736, -0.03587557375431061, -0.02703702077269554, -0.004803892225027084, -0.1623503714799881, 0.03173951432108879, 0.05783341825008392, 0.1018025279045105, 0.08788735419511795, -0.07702858000993729, 0.1306891143321991, 0.013910528272390366, 0.018646227195858955, 0.12482433766126633, -0.15018770098686218, -0.2234523892402649, 0.02032269723713398, -0.08442679792642593, 0.002919943304732442, -0.005124481860548258, -0.0036904634907841682, -0.06284807622432709, -0.03272994980216026, 0.024659622460603714, -0.06181174889206886, -0.1328597366809845, 0.004732422064989805, -0.013094959780573845, -0.025304464623332024, -0.10573587566614151, -0.13657920062541962, 0.016855401918292046, -0.0927424281835556, 0.05400118604302406, 0.0750119760632515, -0.10760442167520523, 0.05259610712528229, 0.10023368895053864, -0.0781245231628418, 0.08450933545827866, -0.043189048767089844, 0.05102977156639099, -0.09593483060598373, -0.08303941041231155, 0.21021032333374023, 0.11879073828458786, -0.025431547313928604, -0.03807763755321503, 0.03295157849788666, -0.17804968357086182, -0.04815668612718582, 0.05692365765571594, -0.18579766154289246, -0.1929710954427719, -0.1792549043893814, -0.039262160658836365, 0.045844271779060364, -0.016937337815761566, 0.040784355252981186, -0.019037211313843727, -0.0687112808227539, 0.06449215114116669, -0.008812271989881992, -0.11678258329629898, -0.1206878051161766, -0.08161735534667969, -0.014192868024110794, -0.02394094131886959, -0.14070643484592438, -0.010536660440266132, 0.1949034035205841, 0.13643908500671387, 0.09091762453317642, 0.06661296635866165, 0.08032511174678802, -0.08039722591638565, -0.05832929164171219, -0.023739146068692207, 0.023354163393378258, 0.0764017254114151, -0.04531657323241234, -0.011819417588412762, 0.03949080407619476, -0.010440496727824211, 0.03445891663432121, 0.18149425089359283, -0.18748828768730164, 0.058382000774145126, -0.1014951840043068, 0.04114549979567528, -0.010640972293913364, 0.06105849891901016, -0.3386486768722534, 0.12207211554050446, 0.03904226794838905, 0.1781800240278244, -0.12037057429552078, 0.12614458799362183, -0.023079905658960342, 0.05920571833848953, 0.1448889821767807, 0.06155022606253624, 0.06628736108541489, -0.05953674763441086, 0.0023834859021008015, -0.06541979312896729, -0.020570604130625725, -0.000050495586037868634, 0.06691039353609085, -0.12064452469348907, 0.1570977121591568, 0.010035977698862553, -0.020748663693666458, -0.14373469352722168, -0.07794523239135742, -0.013825041241943836, 0.040021222084760666, 0.05191243439912796, 0.00034051912371069193, -0.07927694916725159, -0.051302552223205566, -0.09068950265645981, -0.030633652582764626, 0.035405680537223816, 0.07025104761123657, -0.14875759184360504, 0.04977986216545105, 0.025918925181031227, 0.019344784319400787, -0.153117373585701, 0.01650761254131794, 0.038619063794612885, -0.01392219215631485, 0.10360778868198395, -0.1455582082271576, 0.05024140700697899, 0.03994077816605568, -0.11737953871488571, 0.037018634378910065, 0.12768180668354034, -0.02073543146252632, -0.10979420691728592, -0.059024836868047714, 0.18679894506931305, 0.0720517709851265, -0.054099805653095245, 0.0724504366517067, 0.09462518990039825, 0.02727515622973442, -0.16540759801864624, 0.12864503264427185, -0.044521182775497437, 0.14635401964187622, -0.024539664387702942, -0.01903538405895233, 0.05828249081969261, -0.008679982274770737, -0.04378543794155121, -0.016184037551283836, -0.0650041252374649, 0.01604960672557354, 0.19337151944637299, -0.06527701765298843, 0.14232280850410461, 0.1376974880695343, 0.10800457745790482, -0.02300204522907734, 0.17682790756225586, 0.015277964994311333, 0.06865576654672623, 0.10449796169996262, -0.02613619528710842, 0.16984669864177704, 0.19482554495334625, 0.029174456372857094, -0.3275570273399353, 0.15319959819316864, -0.1774773746728897, -0.024263571947813034, -0.05322318524122238, -0.20674556493759155, -0.004066303838044405, 0.23183196783065796, -0.01889961212873459, 0.3210984766483307, -0.2859649956226349, -0.013847775757312775, 0.17130544781684875, -0.14727500081062317, 0.4408586025238037, -0.049329861998558044, -0.0047940281219780445, -0.11924932897090912, 0.01315260585397482, 0.12756623327732086, -0.0742364451289177, 0.006208369508385658, -0.026228494942188263, 0.1273399144411087, -0.04009700194001198, -0.027905298396945, 0.10099524259567261, 0.034130342304706573, 0.1751989722251892, -0.018575157970190048, -0.07072258740663528, 0.21784928441047668, -0.06967965513467789, 0.12461060285568237, 0.0264284685254097, 0.013430909253656864, -0.10977912694215775, -0.008193017914891243, 0.033614631742239, 0.028414426371455193, 0.06889580190181732, -0.0716967061161995, -0.029736481606960297, -0.0050440640188753605, -0.09998660534620285, -0.07896707952022552, 0.09425188601016998, 0.042940277606248856, -0.12683317065238953, 0.003222852945327759, 0.018370389938354492, -0.18032020330429077, 0.07993439584970474, -0.0955171063542366, -0.05843335762619972, 0.09983772784471512, -0.21442964673042297, 0.029246795922517776, 0.021805528551340103, 0.015759872272610664, -0.0015479379799216986, 0.05474497750401497, 0.022523580119013786, 0.012859084643423557, 0.05635236203670502, -0.07022155821323395, -0.040721528232097626, 0.11042145639657974, -0.1854662299156189, 0.11362099647521973, 0.09365295618772507, 0.04142273962497711, 0.060729626566171646, -0.024317076429724693, -0.04190933331847191, 0.07445913553237915, -0.024868624284863472, 0.10805694013834, -0.04499467834830284, 0.0005209597293287516, -0.21434062719345093, 0.3021247982978821, -0.0005341172218322754, -0.124162957072258, 0.039088886231184006, 0.021470073610544205, -0.07163259387016296, -0.05937711521983147, 0.044460732489824295, 0.1604703664779663, -0.19765998423099518, -0.13541565835475922, 0.03241277486085892, -0.06786404550075531, 0.10397139191627502, 0.2621968984603882, 0.07560395449399948, 0.14283737540245056, 0.022218169644474983, 0.0016736454563215375, -0.007587107829749584, -0.0433090403676033, -0.1049925684928894, 0.05249182507395744, 0.05334436893463135, -0.009523154236376286, -0.07358033210039139, 0.05431213602423668, -0.0862003043293953, -0.05243378505110741, -0.03237256035208702, 0.05750955641269684, -0.2649645507335663, -0.07010140269994736, 0.14117401838302612, 0.011834051460027695, -0.024953272193670273, 0.06262126564979553, -0.008843895979225636, -0.02255873568356037, -0.07193844765424728, 0.09395954012870789, 0.02446126565337181, 0.034013669937849045, -0.10927290469408035, -0.04582323879003525, -0.03870837017893791, 0.05199192091822624, 0.12727129459381104, 0.19488878548145294, 0.02539421059191227, -0.01810654066503048, 0.062431540340185165, -0.1283559799194336, 0.1135789230465889, 0.06214253604412079, 0.13997675478458405, 0.09237416833639145, 0.002640045015141368, 0.11773239821195602, -0.13722234964370728, 0.04429943859577179, -0.15258537232875824, -0.05922427400946617, 0.09129389375448227, -0.18821211159229279, -0.04432101920247078, 0.04054649546742439, -0.11260911077260971, 0.2164529711008072, 0.07707919180393219, -0.08009502291679382, 0.07541473954916, -0.08294382691383362, 0.05034320428967476, -0.08954697847366333, -0.03728491812944412, -0.1545167714357376, -0.1325863003730774, 0.14516060054302216, 0.0697818174958229, -0.0510142520070076, 0.5289685726165771, 0.015246800146996975, -0.13085587322711945, -0.004980684258043766, 0.10000543296337128, -0.027831580489873886, 0.04667925462126732, 0.24908678233623505, 0.06786784529685974, -0.05279676988720894, -0.06552421301603317, 0.16304972767829895, 0.08601893484592438, 0.10449118167161942, 0.0860757902264595, 0.10007231682538986, 0.13512209057807922, 0.044846683740615845, -0.013757381588220596, -0.16268235445022583, -0.05356190353631973, 0.07150546461343765, 0.020288415253162384, 0.008470643311738968, 0.07240886986255646, 0.0003592018620111048, 0.03778500109910965, 0.01101306825876236, -0.03592248260974884, -0.10046213865280151, 0.04027971997857094, -0.03929629176855087, 0.09405674785375595, -0.037231918424367905, -0.05479709431529045, 0.01519535668194294, -0.05886140465736389, 0.028513750061392784, 0.1813431829214096, 0.0803612768650055, 0.01521447766572237, 0.025075482204556465, -0.1041698083281517, 0.0653732493519783, 0.06731920689344406, -0.028072061017155647, -0.05678783357143402, 0.031963739544153214, -0.14985105395317078, 0.04534624144434929, -0.12699264287948608, 0.016528436914086342, -0.021198615431785583, 0.02485220693051815, 0.030388936400413513, -0.08180593699216843, -0.013605295680463314, -0.03422302007675171, 0.03269501402974129, -0.11992066353559494, 0.0033019501715898514, 0.052972953766584396, -0.04049045965075493, 0.061436448246240616, 0.013834572397172451, -0.030301006510853767, 0.08334207534790039, 0.025603165850043297, 0.025786587968468666, 0.09716310352087021, 0.1887892335653305, 0.004346564877778292, -0.022008618339896202, -0.10740257054567337, 0.02588612027466297, 0.2060680091381073, -0.09508715569972992, -0.06445050239562988, 0.040276579558849335, 0.03098932094871998, -0.012682385742664337, 0.16179275512695312, 0.010310818441212177, 0.2163170725107193, 0.020190581679344177, -0.14913590252399445, 0.019263071939349174, 0.01219878625124693, -0.05979477986693382, 0.15628530085086823, 0.021166279911994934, -0.04846255108714104, -0.040161870419979095, 0.061385806649923325, -0.1377769559621811, 0.0592515729367733, 0.06721049547195435, -0.10114410519599915, -0.08442161977291107, 0.014014843851327896, 0.011574652045965195, -0.01867484860122204, 0.052074555307626724, -0.06630423665046692, -0.01902267523109913, -0.134674534201622, -0.033605217933654785, -0.28120386600494385, -0.21512387692928314, -0.0329444520175457, 0.2306259274482727, 0.12622645497322083, -0.040513116866350174, 0.10306229442358017, -0.023343391716480255, -0.003682193346321583, -0.034738633781671524, 0.03400848060846329, -0.028417877852916718, 0.06989215314388275, -0.06722055375576019, -0.08182984590530396, -0.13046731054782867, -0.015740565955638885, 0.08846711367368698, 0.01627049781382084, -0.07377787679433823, 0.0762995257973671, -0.060552410781383514, -0.020461134612560272, -0.06440021097660065, -0.00396237475797534, 0.06306225061416626, -0.0425172857940197, 0.017253823578357697, 0.009608842432498932, -0.023657264187932014, 0.08934076875448227, 0.05610577389597893, -0.04508708417415619, -0.06808744370937347, -0.014674507081508636, -0.059833720326423645, 0.13695210218429565, 0.02707212045788765, -0.07151754945516586, 0.08814843744039536, -0.07477562874555588, 0.0689396783709526, 0.0653139278292656, 0.004572978708893061, 0.08079945296049118, 0.04622959345579147, -0.044600971043109894, 0.013571186922490597, 0.04282371699810028, 0.031847160309553146, -0.07543789595365524, -0.11731972545385361 ]
11aed97fab1a7b8e281e504a7b3c330cba96c947
# Dataset Card for "massive_recommendation-de" [More Information needed](https://github.com/huggingface/datasets/blob/main/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
fathyshalab/massive_recommendation-de
[ "region:us" ]
2023-02-08T11:25:13+00:00
{"dataset_info": {"features": [{"name": "id", "dtype": "string"}, {"name": "label", "dtype": "int64"}, {"name": "text", "dtype": "string"}], "splits": [{"name": "train", "num_bytes": 28186, "num_examples": 433}, {"name": "validation", "num_bytes": 4608, "num_examples": 69}, {"name": "test", "num_bytes": 6729, "num_examples": 94}], "download_size": 23393, "dataset_size": 39523}}
2023-02-08T12:30:48+00:00
[]
[]
TAGS #region-us
# Dataset Card for "massive_recommendation-de" More Information needed
[ "# Dataset Card for \"massive_recommendation-de\"\n\nMore Information needed" ]
[ "TAGS\n#region-us \n", "# Dataset Card for \"massive_recommendation-de\"\n\nMore Information needed" ]
[ 6, 19 ]
[ "passage: TAGS\n#region-us \n# Dataset Card for \"massive_recommendation-de\"\n\nMore Information needed" ]
[ -0.061229147017002106, 0.09133070707321167, -0.0045415679924190044, -0.059527263045310974, 0.11975708603858948, 0.12278719246387482, -0.03521931543946266, 0.09146228432655334, 0.12992170453071594, -0.05459684878587723, 0.06496050953865051, 0.11141972988843918, 0.019784800708293915, 0.23720720410346985, -0.08194611221551895, -0.020605001598596573, 0.056445978581905365, 0.036187030375003815, -0.16200727224349976, 0.03435928747057915, 0.06877770274877548, -0.11652647703886032, 0.07668843865394592, -0.12027747929096222, -0.10307463258504868, 0.06603018939495087, 0.009042575024068356, -0.06992284208536148, 0.045923806726932526, -0.07434982061386108, 0.10839230567216873, 0.00564496498554945, -0.036735597997903824, -0.10560806095600128, 0.0021651368588209152, 0.017965732142329216, -0.022434120997786522, 0.057209841907024384, 0.07304579764604568, -0.08489733934402466, -0.05232377350330353, -0.03865574300289154, 0.03827660530805588, 0.0062543852254748344, -0.0761246606707573, -0.2786858379840851, -0.07662762701511383, -0.022701887413859367, -0.021476753056049347, -0.1054341048002243, 0.06666917353868484, 0.14793790876865387, -0.21841967105865479, -0.03864599019289017, -0.02483026497066021, 0.1084926426410675, 0.04092083126306534, 0.19356316328048706, -0.03631668537855148, 0.11606934666633606, -0.005094002932310104, 0.028481094166636467, 0.13253483176231384, -0.09005337953567505, 0.028876256197690964, 0.0065236627124249935, 0.059402063488960266, 0.09768934547901154, -0.012700212188065052, -0.0012614891165867448, 0.31858283281326294, 0.04783174395561218, -0.02998151071369648, 0.000036534565879264846, -0.03405652940273285, -0.010824865661561489, 0.016294382512569427, -0.03793397545814514, 0.06916703283786774, 0.00773337809368968, 0.05976640805602074, 0.029267525300383568, -0.06780081987380981, -0.14455905556678772, -0.15415313839912415, 0.11350300908088684, -0.07727598398923874, 0.11742926388978958, -0.10991623997688293, 0.049485232681035995, -0.08584193885326385, -0.017213137820363045, 0.011886954307556152, -0.17870108783245087, -0.11164369434118271, -0.09414298087358475, 0.047209467738866806, 0.09898621588945389, 0.17533637583255768, 0.10691295564174652, 0.18071652948856354, -0.023737303912639618, -0.10335452109575272, 0.05110966041684151, 0.1485544741153717, -0.12106948345899582, -0.08093315362930298, -0.11808841675519943, -0.03005189821124077, -0.0655943900346756, 0.012200623750686646, -0.029386088252067566, -0.034251559525728226, -0.014736923389136791, -0.09420730173587799, 0.10434798896312714, -0.10883983969688416, -0.09175857901573181, -0.09449070692062378, -0.04791839048266411, 0.21366852521896362, -0.018973305821418762, 0.004775703884661198, 0.076404869556427, -0.1342805176973343, 0.10160598903894424, -0.1785000115633011, -0.00850002933293581, 0.10221586376428604, 0.18654845654964447, -0.08782679587602615, -0.03403346240520477, -0.07750673592090607, 0.0008300846093334258, 0.10490146279335022, -0.16052930057048798, 0.12534698843955994, -0.09137285500764847, -0.17916205525398254, 0.048608507961034775, -0.010011821053922176, -0.08360172063112259, 0.053121525794267654, 0.06457436084747314, 0.021525835618376732, -0.018794594332575798, -0.07619170844554901, 0.23706139624118805, -0.13942743837833405, 0.06596637517213821, -0.0383698046207428, 0.022444091737270355, -0.1779155433177948, 0.02324092946946621, -0.10718511790037155, -0.04377476125955582, -0.06723062694072723, 0.017735721543431282, -0.12755714356899261, 0.23061420023441315, -0.12673936784267426, -0.048762246966362, -0.07619769126176834, 0.00504495482891798, -0.08503761142492294, 0.10324427485466003, -0.27687743306159973, -0.018543727695941925, 0.05485835671424866, -0.11056485772132874, -0.14965958893299103, 0.0925382748246193, -0.09801703691482544, 0.0351150706410408, 0.12236987799406052, 0.2140723615884781, 0.02209138125181198, 0.04759354516863823, 0.07143881916999817, 0.09238768368959427, -0.1669912040233612, -0.2787012457847595, 0.11713442206382751, -0.009669678285717964, -0.25769850611686707, 0.01917862333357334, 0.06454480439424515, -0.001462100655771792, -0.05296527221798897, -0.03524862974882126, 0.0163439754396677, -0.18324464559555054, 0.031095728278160095, -0.009260056540369987, -0.005373981315642595, -0.10350869596004486, 0.10109671205282211, 0.014658503234386444, 0.1372225135564804, 0.09357049316167831, -0.09834445267915726, -0.002954623894765973, 0.15025292336940765, -0.09823086857795715, -0.0160121638327837, -0.11813469231128693, 0.08937819302082062, 0.013169143348932266, -0.04592511057853699, -0.051650598645210266, 0.17440706491470337, 0.02839510515332222, -0.09609191119670868, 0.013224685564637184, 0.10439575463533401, 0.16890859603881836, 0.04274516925215721, 0.0798453614115715, -0.03439229354262352, 0.06751060485839844, -0.09300889819860458, -0.13697093725204468, -0.13980817794799805, -0.10884232074022293, 0.19995564222335815, 0.0458441823720932, 0.09590782970190048, 0.014996482990682125, 0.08293969184160233, -0.010302734561264515, -0.01618255488574505, -0.01792844571173191, 0.01713893935084343, -0.05326216667890549, -0.11904840171337128, -0.02461380325257778, -0.05295458063483238, 0.3815687298774719, 0.11142407357692719, -0.06729194521903992, 0.03557122126221657, -0.004435114096850157, 0.050129521638154984, 0.016935788094997406, -0.08632901310920715, 0.01938105933368206, -0.10532131791114807, 0.0024025256279855967, 0.06934697180986404, -0.04487644508481026, -0.0006311222678050399, 0.04574138671159744, 0.057555191218853, -0.03257197514176369, 0.03860145062208176, 0.11513198912143707, -0.2193346470594406, 0.11375044286251068, 0.1347932666540146, 0.07896017283201218, 0.09127071499824524, -0.054441921412944794, -0.0765577182173729, 0.017344627529382706, -0.055663373321294785, -0.09550056606531143, 0.13800525665283203, -0.11102088540792465, 0.0358516126871109, 0.09564905613660812, 0.03172895312309265, 0.06224978342652321, -0.04605027660727501, -0.06638634204864502, 0.007426016498357058, -0.027502143755555153, -0.17717061936855316, 0.0443270280957222, 0.04435180500149727, 0.10153145343065262, 0.023521361872553825, -0.01258465088903904, 0.14231257140636444, -0.06030365452170372, 0.035918526351451874, 0.12104262411594391, -0.04883180931210518, -0.16473691165447235, 0.03555992990732193, -0.07301012426614761, 0.040856096893548965, 0.02833322063088417, -0.05044877901673317, -0.13474763929843903, -0.08883566409349442, 0.041810616850852966, -0.04936816543340683, -0.14078891277313232, 0.01438811793923378, -0.10308005660772324, 0.0825844332575798, -0.019146673381328583, -0.08205199986696243, -0.0002674940915312618, -0.039357591420412064, 0.0806308388710022, 0.07770660519599915, -0.014858475886285305, 0.11334919929504395, 0.04977899044752121, -0.01766047440469265, 0.046715762466192245, -0.022409962490200996, -0.04790082201361656, -0.06534392386674881, -0.0839829295873642, 0.13191638886928558, 0.002096909796819091, -0.021643158048391342, 0.13944970071315765, 0.10541070997714996, -0.16961759328842163, 0.030113019049167633, -0.00948708038777113, -0.1317794919013977, -0.25175055861473083, -0.16731823980808258, -0.043335288763046265, 0.022442637011408806, 0.04107612743973732, 0.06728513538837433, -0.01634863205254078, 0.05721704661846161, 0.10366413742303848, -0.04374079778790474, -0.13125403225421906, -0.07051248848438263, -0.03802593797445297, 0.030796820297837257, 0.0200957003980875, -0.1846802830696106, -0.05940580740571022, 0.21950790286064148, 0.11736469715833664, 0.21291394531726837, 0.0815945640206337, 0.12371449172496796, -0.008113259449601173, -0.0448242649435997, 0.08960515260696411, 0.15227410197257996, 0.13496920466423035, -0.02819274179637432, -0.035821206867694855, 0.030201923102140427, -0.05047022923827171, 0.03412329778075218, 0.14931951463222504, -0.08210201561450958, -0.02722589671611786, -0.15458665788173676, 0.09383039176464081, -0.11670750379562378, 0.02651355415582657, -0.23593463003635406, 0.13544169068336487, 0.09208258986473083, 0.09154722839593887, -0.06583662331104279, 0.11207596957683563, -0.011510445736348629, -0.004484198056161404, 0.1302727311849594, 0.0164034441113472, 0.09564891457557678, -0.2203831523656845, 0.021023310720920563, -0.03779704123735428, -0.01842963695526123, -0.01690378040075302, 0.1162930503487587, -0.20168067514896393, 0.1978721022605896, 0.01206975243985653, -0.03204157575964928, -0.145706906914711, -0.11887277662754059, 0.02388111874461174, 0.07262007892131805, 0.1282026171684265, -0.019411522895097733, -0.10055302083492279, -0.11980612576007843, -0.11023107171058655, 0.0059553780592978, -0.001283438061363995, -0.05834309756755829, -0.15602931380271912, 0.02304372750222683, 0.03043896146118641, -0.06339244544506073, -0.13216358423233032, -0.04322708025574684, -0.029598966240882874, -0.055911097675561905, 0.011681320145726204, -0.04065548628568649, 0.0009682875825092196, -0.01583462953567505, 0.015360098332166672, 0.07250840961933136, -0.00954162422567606, -0.025359535589814186, -0.11354462802410126, 0.01556897908449173, 0.14839422702789307, 0.04588548094034195, -0.04587827995419502, 0.008927794173359871, 0.03005562163889408, 0.041067853569984436, -0.1419813185930252, 0.10088944435119629, -0.07680248469114304, 0.09016283601522446, -0.05599991977214813, 0.06715278327465057, -0.03213066980242729, 0.04807353764772415, -0.0133627038449049, -0.06371628493070602, -0.0031581998337060213, -0.08424274623394012, 0.11216846853494644, 0.005902131553739309, 0.09554262459278107, 0.23031553626060486, 0.1571395844221115, -0.025245262309908867, 0.11007879674434662, -0.013401553966104984, 0.13326676189899445, 0.09649311006069183, -0.04734876751899719, 0.16235655546188354, 0.08981500566005707, -0.024231260642409325, -0.19908994436264038, 0.13243532180786133, -0.1561657190322876, -0.05820435658097267, -0.08631972968578339, -0.22924861311912537, 0.15175484120845795, 0.14481566846370697, -0.05642115697264671, 0.2125001847743988, -0.012593388557434082, -0.022066541016101837, 0.13745412230491638, -0.03594367206096649, 0.5241345167160034, -0.08831637352705002, -0.08758099377155304, -0.15312735736370087, -0.001153298537246883, 0.27090156078338623, -0.12466946244239807, -0.043341320008039474, 0.010724415071308613, 0.027610577642917633, 0.025862595066428185, -0.04771506413817406, 0.19317284226417542, 0.0276232548058033, 0.2131466418504715, -0.06149807572364807, -0.03456375375390053, 0.04039636626839638, -0.00044388967216946185, 0.06964447349309921, -0.011060367338359356, -0.00815760437399149, -0.037918124347925186, -0.06112121418118477, 0.01877988688647747, 0.04767534136772156, 0.10488403588533401, -0.08410912752151489, -0.09093847125768661, 0.040564630180597305, -0.11492569744586945, -0.03942032903432846, 0.07484569400548935, 0.014851399697363377, -0.02539016865193844, -0.13841763138771057, 0.21396923065185547, -0.17346897721290588, -0.011456839740276337, -0.004896636586636305, -0.07706214487552643, 0.14440284669399261, -0.3174605667591095, 0.06262508779764175, 0.10758715122938156, -0.009107583202421665, 0.01414291188120842, 0.046275027096271515, -0.03100903332233429, 0.024624299257993698, 0.18012455105781555, -0.05594528466463089, -0.04076472669839859, 0.08776456117630005, -0.05805071443319321, 0.08660060912370682, 0.055977024137973785, 0.006362262647598982, 0.05714726448059082, 0.007467181421816349, 0.009489872492849827, 0.032080501317977905, -0.03734326362609863, 0.08130569756031036, 0.06744854152202606, 0.056618303060531616, -0.18480731546878815, 0.22917647659778595, 0.02141328901052475, -0.1997484266757965, -0.06230602413415909, -0.1642695963382721, -0.1037144586443901, -0.07206577807664871, -0.02431798353791237, 0.206883043050766, -0.004370029550045729, -0.1840951144695282, -0.009470311924815178, -0.09648413211107254, 0.03835732489824295, 0.04966554045677185, 0.1109631136059761, 0.11367768049240112, -0.020367125049233437, -0.06002386659383774, -0.002831003861501813, -0.05989013984799385, -0.0647657960653305, -0.0002451759937684983, -0.14524060487747192, -0.16415199637413025, -0.024722542613744736, 0.058710526674985886, -0.08836492896080017, 0.029811931774020195, -0.037171587347984314, 0.05647753179073334, -0.2850280702114105, 0.02830161713063717, 0.03908140957355499, 0.055315759032964706, -0.0038031458389014006, 0.04240434616804123, -0.059227194637060165, -0.061800990253686905, -0.13573312759399414, 0.09698231518268585, 0.10589884221553802, 0.09750400483608246, -0.015496952459216118, 0.0029402882792055607, 0.05106671154499054, 0.029401544481515884, 0.15543444454669952, 0.06848153471946716, -0.0008507781894877553, 0.014619430527091026, -0.04535602033138275, -0.11303799599409103, 0.11150436848402023, 0.06776724755764008, 0.031563423573970795, -0.034488875418901443, 0.07472515851259232, 0.1034776121377945, -0.04694715514779091, 0.02429519034922123, -0.15147580206394196, -0.10902760922908783, 0.013136623427271843, -0.08118124306201935, -0.07384166866540909, 0.033535219728946686, -0.12464151531457901, 0.1570664793252945, 0.10345049202442169, 0.029154272750020027, 0.10882978141307831, -0.02744973823428154, 0.031331855803728104, -0.07653305679559708, -0.07121700793504715, -0.14802978932857513, -0.14582636952400208, 0.10954256355762482, 0.056857891380786896, -0.0635288879275322, 0.622697114944458, -0.02075154334306717, -0.09436371177434921, -0.04420328140258789, 0.1685125082731247, 0.07053256779909134, 0.0475863441824913, 0.36326542496681213, 0.07632556557655334, -0.06037504971027374, -0.05510605126619339, 0.04070155695080757, 0.08471908420324326, 0.12937726080417633, 0.05922752991318703, 0.23127268254756927, 0.07420732825994492, -0.056292444467544556, -0.016375048086047173, -0.11557890474796295, 0.09021218121051788, 0.055086202919483185, 0.0396411158144474, -0.00829298235476017, 0.07191429287195206, -0.026572054252028465, 0.05126528441905975, 0.028273126110434532, -0.023438457399606705, -0.049578018486499786, 0.007080337963998318, -0.09357708692550659, -0.09099521487951279, -0.051286425441503525, -0.13627678155899048, 0.06518850475549698, -0.016229581087827682, -0.06511246412992477, 0.24471372365951538, 0.08304379135370255, -0.043226324021816254, -0.003352254629135132, -0.07012829929590225, 0.04935487359762192, 0.13472668826580048, 0.020169680938124657, -0.14354193210601807, 0.04041647911071777, -0.08011120557785034, -0.014257407747209072, -0.07805521041154861, -0.058286700397729874, 0.005716027691960335, -0.023851606994867325, 0.014561796560883522, -0.0876319631934166, -0.007113934960216284, -0.05644281953573227, -0.004659529309719801, -0.13517630100250244, 0.12094469368457794, 0.002188711427152157, 0.0009156465530395508, 0.03432530164718628, 0.12897352874279022, 0.026962142437696457, 0.094970703125, -0.08732983469963074, -0.06145673617720604, -0.0026136143133044243, 0.1253586709499359, 0.020815979689359665, -0.08093312382698059, -0.04713716357946396, 0.024658221751451492, 0.324754536151886, -0.04306988790631294, 0.01544149499386549, -0.008357489481568336, 0.03435167297720909, 0.0014163939049467444, 0.161357581615448, -0.07656503468751907, -0.0007793163531459868, -0.009245584718883038, -0.06919609755277634, 0.03775981813669205, -0.009247180074453354, 0.09000598639249802, 0.14217673242092133, 0.09349191933870316, -0.04833477362990379, -0.13378000259399414, 0.17579470574855804, -0.19343501329421997, 0.1215796023607254, 0.030525874346494675, -0.09380751848220825, -0.1341271996498108, -0.032139431685209274, -0.012471575289964676, 0.05680455267429352, -0.0177883543074131, -0.08488296717405319, -0.08532608300447464, -0.06296788156032562, -0.04629542678594589, -0.3831780254840851, -0.2011065036058426, -0.00978607963770628, 0.32594427466392517, 0.08147706836462021, 0.02021225541830063, 0.13642054796218872, 0.02070591226220131, -0.031105827540159225, -0.11818648874759674, 0.049658142030239105, -0.0003446990449447185, 0.02123859152197838, 0.008261567912995815, -0.025947408750653267, -0.0585150308907032, -0.06994406878948212, 0.07228605449199677, -0.050481222569942474, -0.06676487624645233, 0.0029475472401827574, -0.10542721301317215, -0.1108240857720375, 0.00391034223139286, -0.056499600410461426, 0.060152824968099594, 0.015319348312914371, -0.016694968566298485, 0.008136743679642677, -0.012042409740388393, 0.1417766958475113, 0.0639268308877945, -0.059927038848400116, -0.0346263125538826, -0.05652329698204994, -0.025716878473758698, 0.13062182068824768, -0.0015965504571795464, -0.09880223870277405, 0.09940027445554733, -0.10640554130077362, 0.06877510249614716, 0.01284350547939539, 0.01282522827386856, 0.033080823719501495, 0.08221219480037689, -0.052834320813417435, -0.06647095084190369, 0.01667771115899086, 0.004816305357962847, -0.05332707613706589, -0.1153024211525917 ]
1d07f0e56d69dcce4044d56a86098a5cc4f1ebb0
# Dataset Card for "massive_email-de" [More Information needed](https://github.com/huggingface/datasets/blob/main/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
fathyshalab/massive_email-de
[ "region:us" ]
2023-02-08T11:25:30+00:00
{"dataset_info": {"features": [{"name": "id", "dtype": "string"}, {"name": "label", "dtype": "int64"}, {"name": "text", "dtype": "string"}], "splits": [{"name": "train", "num_bytes": 61477, "num_examples": 953}, {"name": "validation", "num_bytes": 10136, "num_examples": 157}, {"name": "test", "num_bytes": 17478, "num_examples": 271}], "download_size": 46681, "dataset_size": 89091}}
2023-02-08T12:31:09+00:00
[]
[]
TAGS #region-us
# Dataset Card for "massive_email-de" More Information needed
[ "# Dataset Card for \"massive_email-de\"\n\nMore Information needed" ]
[ "TAGS\n#region-us \n", "# Dataset Card for \"massive_email-de\"\n\nMore Information needed" ]
[ 6, 16 ]
[ "passage: TAGS\n#region-us \n# Dataset Card for \"massive_email-de\"\n\nMore Information needed" ]
[ 0.00205874047242105, 0.08638421446084976, -0.0024484717287123203, 0.018431786447763443, 0.09029065817594528, 0.1383444219827652, 0.10534904897212982, 0.01961382105946541, 0.14970408380031586, -0.04578621685504913, 0.17153318226337433, -0.023364076390862465, -0.038183145225048065, 0.30337217450141907, -0.07957356423139572, -0.015069853514432907, -0.0020996469538658857, 0.002214518841356039, -0.22871993482112885, 0.0013514722231775522, 0.0722627192735672, -0.06695055216550827, 0.08654597401618958, -0.1986335963010788, -0.07481789588928223, 0.12666647136211395, -0.04955482855439186, -0.04163777083158493, 0.03808252885937691, -0.04198654368519783, 0.08514006435871124, -0.03180371969938278, -0.0004223166615702212, -0.11433221399784088, -0.011059889569878578, 0.004450666718184948, -0.04165898263454437, 0.02217033877968788, -0.05704198032617569, -0.06632734090089798, -0.06578133255243301, -0.1289362758398056, 0.006289706565439701, -0.054174378514289856, -0.03280561789870262, -0.19924171268939972, -0.07421032339334488, 0.026239126920700073, 0.03800000622868538, 0.035483818501234055, 0.110247902572155, 0.07178303599357605, -0.11952579766511917, 0.0004992358735762537, -0.030455853790044785, 0.0562656968832016, 0.08493942767381668, 0.12377465516328812, -0.08007632941007614, 0.19869767129421234, 0.05705825984477997, 0.03339330852031708, 0.14468978345394135, -0.048496924340724945, -0.03642687946557999, 0.01859852857887745, -0.05540147051215172, 0.08966390788555145, 0.021698882803320885, -0.11440695822238922, 0.26165100932121277, 0.05872688069939613, 0.0327831506729126, 0.012902865186333656, -0.012110669165849686, -0.049561694264411926, 0.031200872734189034, -0.015268001705408096, 0.06668433547019958, 0.007938533090054989, 0.008016327396035194, -0.005113656632602215, -0.09377685189247131, -0.10159552842378616, -0.20234276354312897, 0.009955118410289288, -0.10110346972942352, 0.15518881380558014, -0.21650725603103638, -0.022707559168338776, -0.05387735366821289, -0.01887958124279976, 0.07329754531383514, -0.06881789863109589, 0.1097615659236908, -0.02456860989332199, -0.020425189286470413, 0.0182226300239563, 0.1694953292608261, 0.07334356755018234, 0.13579481840133667, -0.037449583411216736, -0.011310512199997902, 0.04835428670048714, 0.22624699771404266, -0.16188707947731018, 0.00007434647704940289, -0.14788751304149628, 0.02172999642789364, -0.11390431970357895, -0.012992709875106812, -0.057238247245550156, -0.12844736874103546, 0.06579973548650742, -0.07632105052471161, 0.10465013235807419, -0.07294066250324249, -0.1416691243648529, 0.004637962207198143, 0.01032605767250061, 0.1990671306848526, -0.0845588743686676, 0.03306335583329201, 0.0010322710731998086, -0.1334541141986847, 0.09771985560655594, -0.14240425825119019, 0.016708169132471085, 0.07871323078870773, 0.13680550456047058, -0.0646582618355751, -0.04384037107229233, -0.056309718638658524, -0.03608085960149765, 0.1353299617767334, -0.23688261210918427, 0.06582195311784744, -0.08010204136371613, -0.24828584492206573, 0.04459065571427345, -0.0077440510503947735, -0.023838885128498077, 0.07618291676044464, 0.03992101922631264, 0.06665699928998947, 0.043422408401966095, -0.06922529637813568, 0.1955820769071579, -0.12576992809772491, 0.027630170807242393, -0.02475525066256523, 0.049684587866067886, -0.25317633152008057, 0.013526994735002518, -0.032328952103853226, -0.09455200284719467, 0.0329366996884346, 0.013672472909092903, -0.12257891148328781, 0.1252153217792511, -0.1196696013212204, 0.028223564848303795, -0.03999292477965355, 0.044310394674539566, -0.06071706488728523, 0.07225214689970016, -0.18267957866191864, -0.04243183135986328, 0.004310174845159054, -0.08985130488872528, -0.17098769545555115, 0.059408802539110184, -0.05844288691878319, 0.03459014743566513, 0.07270660996437073, 0.1730862408876419, -0.08061425387859344, 0.0200395118445158, 0.006074983160942793, 0.15687015652656555, -0.14504414796829224, -0.3154185712337494, 0.06805910170078278, -0.05370517075061798, -0.06664323061704636, -0.00639958493411541, 0.1633920520544052, 0.017017077654600143, -0.0634067952632904, -0.05743413418531418, 0.009535683318972588, -0.1702059656381607, -0.06691478937864304, -0.06656046211719513, 0.0374845489859581, -0.04236559569835663, 0.14930647611618042, 0.1253458708524704, 0.034634027630090714, 0.055450182408094406, -0.040782298892736435, -0.013561134226620197, -0.046128395944833755, -0.08091826736927032, -0.013657293282449245, -0.12025119364261627, -0.06688538938760757, -0.02198178693652153, -0.000926185108255595, 0.07268690317869186, 0.08281099051237106, 0.09756005555391312, -0.09808479994535446, -0.0038488656282424927, 0.14068007469177246, 0.14052267372608185, 0.057941630482673645, -0.0031339211855083704, 0.008169114589691162, 0.04015012085437775, -0.07446622103452682, -0.04164719209074974, -0.020267345011234283, -0.06810276955366135, 0.1339515894651413, 0.027915505692362785, 0.03677601367235184, 0.004684302024543285, -0.005681485403329134, -0.00674990052357316, -0.022767039015889168, -0.04614247381687164, -0.029412439092993736, -0.08240146189928055, -0.12338262051343918, -0.06860891729593277, 0.0388968326151371, 0.41530048847198486, 0.10198566317558289, 0.05492063984274864, 0.037573859095573425, 0.012944300659000874, 0.05589244142174721, -0.014014308340847492, -0.06046287715435028, -0.025334961712360382, 0.007425794377923012, -0.07078330218791962, 0.040938850492239, -0.04934212937951088, 0.005149691365659237, 0.025778980925679207, 0.06591067463159561, -0.07945958524942398, -0.01565365679562092, 0.11159881949424744, -0.24043576419353485, 0.1257953941822052, 0.14443200826644897, 0.022492630407214165, 0.11231478303670883, -0.07169520109891891, -0.060986749827861786, 0.018964858725667, -0.1617727279663086, -0.08976227790117264, 0.08939497172832489, -0.019467828795313835, 0.0207626111805439, 0.06618133932352066, 0.07253282517194748, 0.11284507066011429, 0.027802206575870514, -0.08248282968997955, 0.00890589039772749, -0.013735027983784676, -0.12972331047058105, 0.0010394752025604248, 0.016616901382803917, 0.11186150461435318, 0.04989844188094139, -0.04450104385614395, 0.15753380954265594, -0.03170746937394142, -0.01185233797878027, 0.07535798102617264, -0.09453843533992767, -0.25837498903274536, 0.007948032580316067, -0.05773327127099037, 0.0066736009903252125, -0.017901886254549026, -0.03904416412115097, -0.1712675243616104, -0.05191658064723015, -0.03249816223978996, -0.13331010937690735, -0.0983235090970993, 0.05476577579975128, 0.03668292611837387, 0.018884463235735893, -0.00916876271367073, -0.0944724828004837, 0.015385591425001621, -0.025110097602009773, 0.07509339600801468, 0.0493471622467041, -0.029856177046895027, 0.1429109126329422, 0.03618789464235306, -0.06197796389460564, 0.09655420482158661, -0.0020187252666801214, 0.011706283316016197, -0.05315334349870682, -0.04007018357515335, 0.15512916445732117, 0.05255960673093796, -0.025856511667370796, 0.02428733929991722, 0.05288147181272507, -0.13318735361099243, 0.012485717423260212, 0.037294723093509674, -0.15948155522346497, -0.25243857502937317, -0.17978166043758392, 0.04300360381603241, 0.05600503832101822, 0.0631754919886589, 0.1063883826136589, 0.058893997222185135, -0.034167561680078506, 0.11460686475038528, -0.01546892523765564, -0.11753848940134048, -0.04570380598306656, -0.10951430350542068, 0.06423621624708176, -0.018037859350442886, -0.18822339177131653, -0.04603244364261627, 0.2182084619998932, 0.10866295546293259, 0.07594918459653854, 0.07528224587440491, 0.07445280253887177, -0.10504414141178131, -0.07230408489704132, 0.03931766748428345, 0.14688077569007874, 0.10458683222532272, -0.05035852640867233, -0.02215786837041378, 0.06713240593671799, -0.00910807866603136, 0.019861947745084763, 0.1307820975780487, -0.15909257531166077, -0.003561188466846943, -0.09543145447969437, 0.04666329175233841, -0.11602368950843811, 0.03741595894098282, -0.2044134885072708, 0.09973417967557907, 0.05086248740553856, 0.07595612108707428, -0.04205622151494026, 0.05713627114892006, 0.03979547321796417, 0.00033167118090204895, 0.12131456285715103, 0.07469039410352707, 0.08273940533399582, -0.13423815369606018, 0.02647531032562256, -0.04035055264830589, -0.06576631218194962, 0.017726611346006393, 0.11985070258378983, -0.19039763510227203, 0.13182955980300903, 0.023680251091718674, -0.06641312688589096, -0.1453167051076889, -0.09902781993150711, -0.01713431626558304, -0.013637328520417213, 0.02582733705639839, 0.016770388931035995, 0.03827574476599693, -0.04428037256002426, -0.10325959324836731, 0.03586557134985924, 0.08799180388450623, -0.009744474664330482, -0.1276281476020813, 0.09804081916809082, 0.01778968796133995, -0.000993738998658955, -0.07922327518463135, -0.04317722097039223, -0.1232292577624321, -0.08182250708341599, 0.07967880368232727, -0.03686564788222313, 0.057507120072841644, -0.003160136751830578, -0.06619974970817566, 0.10566718131303787, -0.028615007176995277, -0.01483150664716959, -0.07908041775226593, 0.035562966018915176, 0.08795809745788574, 0.04249642416834831, -0.037428177893161774, 0.07395083457231522, -0.02750326320528984, -0.059682223945856094, -0.15986332297325134, 0.10458501428365707, -0.06726595759391785, 0.12993057072162628, -0.04097716510295868, 0.017515994608402252, -0.005646475125104189, -0.005423450842499733, -0.04655459150671959, -0.07026657462120056, -0.05209100618958473, -0.10072183609008789, 0.1612081676721573, 0.04924869164824486, 0.16232626140117645, 0.272255539894104, 0.1419895887374878, -0.04281860589981079, 0.14809027314186096, -0.04441288858652115, 0.20098325610160828, 0.1631420999765396, -0.03726833686232567, 0.1266583651304245, 0.14140652120113373, -0.018973322585225105, -0.2517791986465454, -0.0013513590674847364, -0.1453132927417755, -0.0729333832859993, -0.04078002646565437, -0.18280130624771118, 0.05687015876173973, 0.1881883144378662, -0.04374030977487564, 0.20521630346775055, -0.12639594078063965, -0.052592821419239044, 0.107248455286026, -0.12808950245380402, 0.48820847272872925, -0.10093417763710022, -0.04437188431620598, -0.25392359495162964, -0.05571239814162254, 0.24449293315410614, -0.10263720154762268, -0.018526464700698853, 0.031109753996133804, 0.052629683166742325, -0.07258342206478119, -0.07931283116340637, 0.1348341852426529, 0.07242532819509506, 0.18633629381656647, -0.045593373477458954, -0.09707769006490707, 0.07900960743427277, -0.03874431177973747, 0.16006891429424286, -0.10981675237417221, -0.00383497541770339, -0.12699326872825623, -0.049462657421827316, 0.0377468504011631, 0.03227035328745842, 0.10966813564300537, -0.0581137016415596, -0.0941607877612114, -0.033216215670108795, -0.0831495150923729, -0.037977252155542374, 0.10818254202604294, 0.01905527524650097, -0.021772194653749466, 0.044316139072179794, 0.10968761891126633, -0.19794398546218872, 0.032341983169317245, -0.05305791646242142, -0.13553309440612793, 0.08403957635164261, -0.3032293915748596, 0.04711572080850601, 0.07825164496898651, -0.026919884607195854, 0.04053981602191925, 0.03613654896616936, 0.020634660497307777, -0.033987198024988174, 0.1187533587217331, -0.06554476916790009, 0.013486076146364212, 0.10612527281045914, -0.009639104828238487, 0.09161126613616943, 0.10708796977996826, 0.06531377136707306, -0.002125111874192953, -0.01291745901107788, -0.013751729391515255, 0.052939679473638535, -0.06308480352163315, 0.07660932838916779, 0.04739294573664665, 0.03315466269850731, -0.17532889544963837, 0.2585584819316864, 0.03433271124958992, -0.21959814429283142, 0.07269736379384995, 0.0003961989423260093, -0.09754201769828796, -0.054061468690633774, 0.09598378092050552, 0.251681923866272, -0.07562040537595749, -0.13793031871318817, -0.008754163049161434, -0.03666365146636963, 0.06398007273674011, 0.15232013165950775, 0.05917451158165932, 0.10790368169546127, 0.026420069858431816, -0.010046298615634441, -0.01625254936516285, -0.1014341190457344, -0.08778922259807587, -0.010482752695679665, -0.06532294303178787, -0.1319255381822586, -0.02079825848340988, 0.06731816381216049, -0.07399964332580566, 0.00959122646600008, -0.0505167655646801, 0.008955327793955803, -0.19907328486442566, -0.022818826138973236, 0.13989774882793427, 0.030552132055163383, -0.01772255077958107, 0.03154366463422775, 0.010361617431044579, -0.036714907735586166, -0.06004871428012848, 0.07623661309480667, 0.07886164635419846, 0.021683594211935997, -0.0712832659482956, -0.004487064201384783, 0.006072444375604391, 0.11122327297925949, 0.1602095067501068, 0.138507679104805, 0.028555842116475105, 0.009094450622797012, 0.0011342305224388838, -0.09921570122241974, 0.07722951471805573, 0.06617632508277893, 0.04133230447769165, 0.09175458550453186, -0.004313105251640081, 0.10195596516132355, -0.06103651225566864, 0.04297306388616562, -0.10092736035585403, -0.04751136153936386, 0.0820620059967041, -0.09618142992258072, -0.06465623527765274, -0.022401781752705574, -0.12786370515823364, 0.24204696714878082, 0.06521633267402649, 0.03291098400950432, 0.05007834732532501, -0.0319620780646801, 0.007640323601663113, -0.049293022602796555, -0.029144641011953354, -0.09307840466499329, -0.2159622609615326, 0.0898861438035965, 0.03471941500902176, -0.08164462447166443, 0.5412354469299316, -0.011811659671366215, -0.18741336464881897, -0.01457875594496727, 0.051903728395700455, 0.008617857471108437, -0.000025295294108218513, 0.29926151037216187, 0.060915615409612656, -0.02236088179051876, -0.047618430107831955, 0.04318781569600105, 0.054996881633996964, 0.23043391108512878, 0.12946875393390656, 0.07213111221790314, 0.15645010769367218, -0.014521341770887375, 0.04451332613825798, -0.10433892905712128, 0.09362426400184631, -0.05931740254163742, 0.06182807683944702, 0.001027030753903091, 0.04920848831534386, -0.16054695844650269, 0.0351584292948246, 0.029663076624274254, -0.049018494784832, -0.07690408825874329, 0.01749824546277523, -0.01812679134309292, 0.009232314303517342, -0.0470334030687809, -0.0916217491030693, 0.05352063849568367, -0.031061310321092606, -0.05681411921977997, 0.20358960330486298, 0.0617644339799881, -0.010903123766183853, -0.0348152294754982, -0.16826441884040833, 0.08157292753458023, 0.09229551255702972, -0.03332584723830223, -0.10363028943538666, 0.07170874625444412, -0.10152287036180496, -0.020921753719449043, -0.056956227868795395, -0.07850801199674606, 0.02099517174065113, 0.059871334582567215, 0.023362047970294952, -0.07346656918525696, -0.03502980247139931, -0.04792488366365433, 0.0551341250538826, -0.06849228590726852, 0.14938798546791077, 0.0037010933738201857, -0.01929502747952938, 0.04695295915007591, 0.07036462426185608, -0.013200907036662102, -0.0534387081861496, -0.0068191951140761375, 0.042123667895793915, 0.011191202327609062, 0.16960588097572327, -0.03257329389452934, -0.028578102588653564, -0.1417335420846939, -0.025902610272169113, 0.37110406160354614, -0.12394581735134125, 0.018328331410884857, -0.007121413946151733, 0.03997253626585007, 0.060750290751457214, 0.1463354527950287, 0.03567416965961456, 0.15899279713630676, -0.0044592502526938915, -0.022674134001135826, 0.04264906421303749, -0.00784487184137106, -0.027575841173529625, 0.18018069863319397, 0.048947352916002274, -0.060126498341560364, -0.0470743365585804, 0.11103857308626175, -0.1938067227602005, 0.09262353926897049, 0.002529419492930174, -0.148092582821846, -0.09338824450969696, 0.05726595222949982, 0.08918432146310806, 0.013463442213833332, -0.022664470598101616, -0.04092995077371597, -0.019383873790502548, -0.12149294465780258, -0.03818845376372337, -0.34124282002449036, -0.16825753450393677, -0.05474647134542465, 0.11324571818113327, -0.027406364679336548, 0.029196299612522125, 0.21526169776916504, 0.021135877817869186, -0.02015632390975952, -0.04902634769678116, 0.09150750190019608, -0.0284331776201725, 0.06795187294483185, -0.014847101643681526, -0.09448675811290741, -0.0668410211801529, -0.07646030187606812, 0.06094890087842941, -0.0776352509856224, -0.09836050122976303, 0.14123636484146118, -0.034810230135917664, -0.05533576011657715, -0.016008244827389717, -0.056658439338207245, 0.09184098988771439, -0.00889094639569521, -0.015769734978675842, 0.0026257794816046953, 0.00988231971859932, 0.12634414434432983, 0.06072685867547989, -0.09331100434064865, -0.1082674115896225, -0.015841510146856308, -0.06394081562757492, 0.023818781599402428, 0.030714843422174454, -0.04672004282474518, 0.08112131804227829, -0.15563532710075378, 0.010424045845866203, -0.03340546786785126, -0.00005778269041911699, 0.15383388102054596, 0.06034610792994499, -0.05372059345245361, 0.04927061125636101, 0.07690034061670303, -0.003085462609305978, -0.05518144369125366, -0.08691444993019104 ]
922cd87c8e22a18b632b93de8952782468cc26b4
# Dataset Card for "massive_iot-de" [More Information needed](https://github.com/huggingface/datasets/blob/main/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
fathyshalab/massive_iot-de
[ "region:us" ]
2023-02-08T11:25:46+00:00
{"dataset_info": {"features": [{"name": "id", "dtype": "string"}, {"name": "label", "dtype": "int64"}, {"name": "text", "dtype": "string"}], "splits": [{"name": "train", "num_bytes": 41922, "num_examples": 769}, {"name": "validation", "num_bytes": 6206, "num_examples": 118}, {"name": "test", "num_bytes": 11808, "num_examples": 220}], "download_size": 31758, "dataset_size": 59936}}
2023-02-08T12:31:31+00:00
[]
[]
TAGS #region-us
# Dataset Card for "massive_iot-de" More Information needed
[ "# Dataset Card for \"massive_iot-de\"\n\nMore Information needed" ]
[ "TAGS\n#region-us \n", "# Dataset Card for \"massive_iot-de\"\n\nMore Information needed" ]
[ 6, 17 ]
[ "passage: TAGS\n#region-us \n# Dataset Card for \"massive_iot-de\"\n\nMore Information needed" ]
[ -0.10458763688802719, 0.004116720519959927, -0.0037367024924606085, 0.01762126386165619, 0.054394762963056564, 0.1178523525595665, 0.048844289034605026, 0.07396616786718369, 0.18085671961307526, -0.008228450082242489, 0.12606988847255707, 0.0496770478785038, 0.025113413110375404, 0.3001766502857208, -0.07443298399448395, -0.015449156053364277, 0.06322645395994186, 0.061457544565200806, -0.25107818841934204, -0.017377112060785294, 0.1023050844669342, -0.06448036432266235, 0.07623515278100967, -0.17033535242080688, -0.14492599666118622, 0.09959481656551361, -0.0226515531539917, -0.042058318853378296, 0.05834682285785675, -0.06251358985900879, 0.03888177126646042, -0.012162038125097752, -0.0009515236015431583, -0.06891399621963501, 0.008320103399455547, 0.05904102697968483, -0.022246308624744415, 0.04396974667906761, 0.010812302120029926, -0.02840215340256691, -0.16691836714744568, -0.1239839643239975, -0.018341461196541786, -0.03102290630340576, -0.028722191229462624, -0.3134593367576599, -0.05259954556822777, -0.012302667833864689, 0.01228916272521019, -0.038002826273441315, 0.08727709203958511, 0.1511123776435852, -0.09522655606269836, 0.01429593376815319, 0.010763883590698242, 0.05215642601251602, 0.0724007785320282, 0.18210066854953766, -0.059726450592279434, 0.20991775393486023, 0.05087798088788986, 0.031570080667734146, 0.14296674728393555, -0.040271107107400894, -0.01901927776634693, -0.006124498322606087, -0.06880184262990952, 0.0844099149107933, -0.01835189387202263, -0.048491355031728745, 0.3334715664386749, -0.003977301996201277, 0.016779208555817604, 0.03560858592391014, -0.056393031030893326, -0.06926996260881424, 0.003661300288513303, -0.029093123972415924, 0.08357911556959152, 0.04227006807923317, 0.07892723381519318, 0.023854056373238564, -0.09888642281293869, -0.09476041048765182, -0.20324493944644928, 0.06311550736427307, -0.038176678121089935, 0.15596820414066315, -0.18934357166290283, -0.038727182894945145, -0.25566935539245605, -0.014077959582209587, 0.004395574796944857, -0.09085451066493988, -0.03669700399041176, -0.028145290911197662, -0.011422799900174141, 0.0018933244282379746, 0.1700875610113144, 0.03676958382129669, 0.07112166285514832, -0.013078519143164158, -0.09924053400754929, 0.08701123297214508, 0.21751633286476135, -0.0865374207496643, -0.12258706241846085, -0.1250230222940445, 0.012748138047754765, -0.1092001274228096, -0.009377722628414631, -0.08036704361438751, -0.09341826289892197, -0.038090821355581284, -0.03783973678946495, 0.08017890900373459, 0.006261330097913742, -0.12174226343631744, -0.04706501215696335, -0.03065216727554798, 0.15074512362480164, -0.04068992659449577, 0.023298420011997223, 0.00637520058080554, -0.09040199220180511, 0.1295759230852127, -0.17281799018383026, -0.010374576784670353, 0.07581772655248642, 0.05573933944106102, -0.07583747059106827, -0.03653154522180557, -0.0533745214343071, -0.03987662494182587, 0.12577208876609802, -0.1600319743156433, 0.0693570002913475, -0.08256525546312332, -0.21794357895851135, 0.060870807617902756, 0.026544347405433655, -0.07695293426513672, 0.13731640577316284, 0.07515458762645721, 0.03645244240760803, -0.031028736382722855, -0.06560230255126953, 0.12425123155117035, -0.08569785207509995, 0.04717562720179558, -0.02093064785003662, 0.08542081713676453, -0.26506665349006653, 0.048650480806827545, -0.10375571995973587, -0.03145132213830948, -0.008592348545789719, 0.03782883286476135, -0.10757549852132797, 0.05097416043281555, -0.10481762140989304, -0.011133361607789993, -0.12023227661848068, 0.0289935152977705, -0.00835568830370903, 0.07275938242673874, -0.2966717481613159, -0.02482277899980545, 0.06443820893764496, -0.09180280566215515, -0.16140097379684448, 0.117568239569664, -0.020491115748882294, 0.030848590657114983, 0.03065173514187336, 0.2739657759666443, -0.06915322691202164, 0.036842647939920425, 0.019812246784567833, 0.177616149187088, -0.12424712628126144, -0.3111332058906555, 0.12302904576063156, -0.015096571296453476, -0.05763303488492966, -0.010880254209041595, 0.10671356320381165, -0.019109273329377174, -0.05112694948911667, -0.049442727118730545, -0.009724533185362816, -0.14212973415851593, 0.0010838774032890797, -0.009778115898370743, 0.024742813780903816, -0.019648926332592964, 0.16628512740135193, 0.058660153299570084, 0.09434175491333008, 0.05254071578383446, -0.01980680413544178, 0.003419354557991028, 0.10930674523115158, -0.20133541524410248, 0.01681278832256794, -0.15942324697971344, -0.0354008786380291, 0.03813483566045761, -0.05481274798512459, 0.02639094367623329, 0.12355286628007889, 0.059889812022447586, -0.07804803550243378, 0.003077503526583314, 0.12870411574840546, 0.1538330316543579, 0.050368983298540115, 0.011153892613947392, -0.03491995111107826, 0.035673052072525024, -0.08491691946983337, -0.054523926228284836, -0.05003196373581886, -0.048068489879369736, 0.11873551458120346, -0.022745808586478233, 0.0339873842895031, 0.017995541915297508, -0.01402423158288002, -0.015494887717068195, -0.051505498588085175, -0.0611279159784317, -0.05902004614472389, -0.07876802235841751, -0.09401174634695053, -0.0017744931392371655, 0.01585439406335354, 0.43231064081192017, 0.14570352435112, 0.029636740684509277, 0.057464007288217545, -0.013684452511370182, 0.06352594494819641, -0.03674857318401337, -0.023429112508893013, -0.011601933278143406, -0.16324390470981598, -0.0615515373647213, 0.010332943871617317, -0.04489240050315857, 0.03230392187833786, 0.05612470582127571, 0.021351970732212067, -0.11058501899242401, 0.008129749447107315, 0.16533905267715454, -0.25117814540863037, 0.17341172695159912, 0.20979973673820496, 0.03673829510807991, 0.08469519019126892, -0.050182316452264786, -0.10968408733606339, 0.01198664866387844, -0.08872103691101074, -0.059058550745248795, 0.16610899567604065, -0.1371489316225052, 0.05047690123319626, 0.09220865368843079, 0.05036228522658348, 0.09871026873588562, -0.007124790921807289, -0.05861867964267731, -0.008742855861783028, 0.0034859920851886272, -0.19840703904628754, 0.03814835846424103, 0.01483635138720274, 0.09772290289402008, 0.051176026463508606, -0.009173923172056675, 0.13954530656337738, -0.003907386679202318, 0.013801760040223598, 0.11617012321949005, -0.13071037828922272, -0.2039678394794464, 0.011933960020542145, -0.05188759043812752, 0.020639894530177116, -0.0016396840801462531, -0.04942500218749046, -0.13694944977760315, -0.052220962941646576, 0.005734412930905819, -0.030676983296871185, -0.12037760764360428, 0.05181407928466797, 0.038814421743154526, -0.011491878889501095, -0.04881297051906586, -0.09825202822685242, 0.014679296873509884, -0.006243235431611538, 0.08621620386838913, 0.0827045887708664, -0.07085846364498138, 0.09906081855297089, 0.07351383566856384, -0.04387328401207924, 0.08188056945800781, -0.011423693969845772, -0.01128274854272604, -0.08129716664552689, -0.006517121102660894, 0.17346632480621338, 0.06012555584311485, -0.038074664771556854, 0.06321913748979568, 0.05978038161993027, -0.12163840234279633, -0.0480865053832531, -0.04184272140264511, -0.18092890083789825, -0.24838592112064362, -0.15285708010196686, -0.058188747614622116, 0.11399306356906891, -0.0003773007192648947, 0.09458667039871216, 0.026346731930971146, 0.03417520597577095, 0.10994204878807068, 0.07083741575479507, -0.13492783904075623, -0.07769444584846497, -0.07974601536989212, 0.005184692796319723, -0.013204334303736687, -0.14809951186180115, -0.002249697223305702, 0.2339031994342804, 0.1580439656972885, 0.15132839977741241, 0.038672592490911484, 0.07909218221902847, -0.054164957255125046, 0.07139138132333755, 0.007930965162813663, 0.1631549894809723, 0.06067047268152237, -0.022506926208734512, -0.013280276209115982, 0.022061176598072052, 0.00256312801502645, 0.028891412541270256, 0.1645762324333191, -0.1667134314775467, 0.07991433143615723, -0.07448344677686691, 0.10484857857227325, -0.13815639913082123, 0.05849766731262207, -0.2427467703819275, 0.07326928526163101, 0.0716211348772049, 0.16960231959819794, -0.09060277044773102, 0.07543016225099564, 0.07528796046972275, 0.029439501464366913, 0.06225185468792915, 0.04339303821325302, 0.029121754691004753, -0.07576059550046921, 0.013351083733141422, 0.05139506235718727, 0.00833064317703247, 0.013520218431949615, 0.08194130659103394, -0.1882086992263794, 0.13393154740333557, 0.02113407664000988, -0.061607904732227325, -0.1678979992866516, -0.07431253045797348, -0.007535662967711687, 0.054712120443582535, 0.08674757927656174, 0.028233608230948448, 0.03764583170413971, -0.11821527779102325, -0.10795897990465164, -0.0014876751229166985, 0.06786781549453735, 0.034219350665807724, -0.17039383947849274, 0.035689327865839005, 0.017476754263043404, -0.00037961205816827714, -0.07654795795679092, -0.00921934749931097, -0.06737130880355835, 0.002151974942535162, 0.08753352612257004, -0.08604002743959427, -0.00242028059437871, -0.01987912878394127, -0.016351159662008286, 0.15106408298015594, 0.01163945160806179, -0.01621382124722004, -0.11667042970657349, 0.07729559391736984, 0.18528613448143005, 0.02690153568983078, -0.03841281682252884, 0.05519904941320419, 0.03720677271485329, -0.009469042532145977, -0.17280003428459167, 0.14567063748836517, -0.10737793892621994, 0.12968266010284424, -0.04901574179530144, 0.010342269204556942, -0.025674784556031227, 0.026876846328377724, -0.041320156306028366, -0.045588765293359756, -0.012881636619567871, -0.07394403964281082, 0.14032571017742157, 0.005123093258589506, 0.03562018647789955, 0.24276210367679596, 0.1450394243001938, -0.11414366960525513, 0.15438278019428253, -0.06020553782582283, 0.11454158276319504, 0.125531867146492, -0.034476954489946365, 0.12054801732301712, 0.19502346217632294, -0.00912471767514944, -0.3034646809101105, 0.13976582884788513, -0.20006027817726135, -0.04236588627099991, -0.032566241919994354, -0.17489510774612427, 0.10545854270458221, 0.17545658349990845, -0.03861717879772186, 0.3071931302547455, -0.19894176721572876, -0.03419366106390953, 0.14570805430412292, -0.057107385247945786, 0.469765841960907, -0.11478748917579651, -0.025009237229824066, -0.15692025423049927, -0.011729816906154156, 0.11977003514766693, -0.15686284005641937, 0.008712325245141983, -0.002555988961830735, 0.04974079132080078, -0.03183978050947189, -0.07429952174425125, 0.1633855700492859, 0.03861646726727486, 0.15807440876960754, -0.02095220237970352, -0.05733571946620941, 0.1752178966999054, -0.024173153564333916, 0.12855756282806396, 0.01828177087008953, -0.00026118976529687643, 0.013481841422617435, -0.03436962142586708, 0.02788602001965046, 0.024085164070129395, 0.0657448023557663, -0.10770674049854279, -0.08119163662195206, 0.03619987890124321, -0.12211702764034271, -0.08045969158411026, 0.10059209913015366, 0.08766423910856247, -0.11843223124742508, -0.033472925424575806, 0.0750744640827179, -0.1383204460144043, 0.043747201561927795, -0.028919043019413948, -0.09791812300682068, 0.10515455156564713, -0.25511372089385986, 0.06437789648771286, 0.10501981526613235, -0.0031272151973098516, 0.00870343204587698, 0.07792945951223373, -0.04614860936999321, 0.026237867772579193, 0.14014588296413422, -0.0472213439643383, -0.07211488485336304, 0.10870770364999771, -0.05210178345441818, 0.07882764935493469, 0.14584222435951233, 0.030801745131611824, 0.014569844119250774, -0.0010084850946441293, -0.023792732506990433, 0.08829934149980545, -0.08580333739519119, 0.11119436472654343, 0.04879209026694298, 0.017448561266064644, -0.19203676283359528, 0.24477814137935638, -0.008430641144514084, -0.15615005791187286, 0.030719222500920296, -0.042691633105278015, -0.0560183972120285, -0.08228692412376404, 0.07746022194623947, 0.09783276915550232, -0.02188022993505001, -0.139754518866539, 0.03928318992257118, -0.07238592952489853, 0.033135637640953064, 0.0761537030339241, 0.06574209779500961, 0.07331978529691696, 0.004008748102933168, -0.03985436260700226, -0.0686369240283966, -0.04648236930370331, -0.06528929620981216, 0.0499027743935585, -0.08916593343019485, -0.18644703924655914, -0.0790279358625412, 0.09956713020801544, -0.07587551325559616, -0.008585103787481785, -0.023245465010404587, 0.034869927912950516, -0.23705530166625977, -0.054386645555496216, 0.06491368263959885, 0.009933940134942532, -0.008083689026534557, 0.012760923244059086, -0.01947554014623165, -0.0028271465562283993, -0.07617317140102386, 0.08608269691467285, 0.04175814613699913, 0.012288756668567657, -0.09525707364082336, -0.02753615751862526, 0.013008753769099712, 0.0574745275080204, 0.16156552731990814, 0.14372208714485168, 0.007391887716948986, 0.02060340903699398, -0.03426055610179901, -0.10848787426948547, 0.09150815010070801, 0.1009368821978569, 0.12131456285715103, 0.05645949766039848, 0.021555526182055473, 0.11039111018180847, -0.06117319315671921, 0.020554129034280777, -0.04720229282975197, -0.020689718425273895, 0.07304193079471588, -0.202340766787529, -0.04157526418566704, 0.006675051990896463, -0.06613144278526306, 0.2177950143814087, 0.06670355051755905, -0.061332862824201584, 0.08886165171861649, 0.004268227145075798, 0.004798848181962967, -0.04171678051352501, -0.017232947051525116, -0.12469321489334106, -0.06843477487564087, 0.10849695652723312, 0.0810224860906601, -0.07292958348989487, 0.5280308127403259, 0.003928199876099825, -0.20095843076705933, -0.036427851766347885, 0.0009225319954566658, 0.01834358088672161, 0.01871502585709095, 0.25393328070640564, 0.07335977256298065, -0.04109858721494675, -0.13138720393180847, 0.10121331363916397, 0.0834912583231926, 0.22717298567295074, 0.1001460999250412, 0.15473461151123047, 0.07811028510332108, -0.01157815009355545, 0.0266615878790617, -0.13813956081867218, -0.0037731826305389404, -0.009209905751049519, -0.03379284590482712, 0.013799093663692474, 0.079868845641613, -0.05445181950926781, 0.011208701878786087, -0.016953112557530403, -0.06622161716222763, -0.10463491827249527, -0.024190541356801987, -0.053902801126241684, -0.038552459329366684, -0.04502156749367714, -0.09569874405860901, 0.00996888056397438, -0.049726661294698715, -0.03958189859986305, 0.2118033617734909, 0.11760054528713226, -0.00828308891505003, 0.0881705954670906, -0.10483001172542572, 0.07380085438489914, 0.06770345568656921, -0.013361595571041107, -0.1168215349316597, 0.0970098152756691, -0.1278027892112732, -0.01937861368060112, -0.07647467404603958, -0.002011476783081889, 0.013394307345151901, 0.018938636407256126, 0.048978857696056366, -0.10818684846162796, -0.0406220480799675, -0.08742565661668777, 0.02875366620719433, -0.13261887431144714, 0.07988563179969788, 0.013760654255747795, -0.02152901142835617, 0.06094598025083542, 0.011125695891678333, 0.017877690494060516, -0.00890165101736784, -0.0051378896459937096, -0.0335368849337101, 0.0020412157755345106, 0.08944857865571976, 0.009171539917588234, -0.07894731312990189, -0.11420360207557678, 0.040835291147232056, 0.318311482667923, -0.07720965892076492, -0.017730848863720894, 0.08641982823610306, 0.038898222148418427, -0.05252482369542122, 0.17335732281208038, 0.05221998319029808, 0.14364658296108246, -0.013545581139624119, -0.028490403667092323, 0.0246454905718565, -0.024814914911985397, -0.0040971371345222, 0.1316072642803192, 0.04371751844882965, -0.042970530688762665, -0.11426075547933578, 0.10010991245508194, -0.1056876853108406, -0.020731935277581215, 0.08996065706014633, -0.10710306465625763, -0.10302315652370453, 0.007447319105267525, 0.05559932813048363, -0.008194358088076115, -0.016843687742948532, -0.08725367486476898, 0.002695532748475671, -0.13298672437667847, -0.011917936615645885, -0.2914968729019165, -0.10811663419008255, -0.0014450284652411938, 0.11620178818702698, 0.05714688450098038, 0.0009489274816587567, 0.15917252004146576, 0.02791379764676094, 0.006379600148648024, -0.10290675610303879, 0.04603243246674538, -0.024566741660237312, 0.09969762712717056, -0.06220009922981262, -0.035518210381269455, -0.10270485281944275, -0.07059296220541, 0.0906120017170906, -0.012862805277109146, -0.10093070566654205, 0.03203049674630165, -0.07282143831253052, -0.08139344304800034, -0.060388557612895966, -0.06287277489900589, 0.0890917256474495, -0.011756636202335358, -0.017063554376363754, -0.004064685665071011, -0.04512638971209526, 0.1165037602186203, 0.0576074980199337, -0.05477237328886986, -0.09695373475551605, -0.00979798473417759, -0.032630398869514465, 0.06140344962477684, 0.04180582985281944, -0.05051514133810997, 0.07041650265455246, -0.12518566846847534, 0.024405280128121376, -0.018693897873163223, 0.014554064720869064, 0.12689845263957977, 0.05354197695851326, -0.04368710517883301, -0.004886523354798555, 0.005521563813090324, -0.014972876757383347, -0.027817580848932266, -0.09870759397745132 ]
448bcd3087873ad011f7edb1dee8b8db89a4d9b4
# Dataset Card for "massive_general-de" [More Information needed](https://github.com/huggingface/datasets/blob/main/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
fathyshalab/massive_general-de
[ "region:us" ]
2023-02-08T11:26:02+00:00
{"dataset_info": {"features": [{"name": "id", "dtype": "string"}, {"name": "label", "dtype": "int64"}, {"name": "text", "dtype": "string"}], "splits": [{"name": "train", "num_bytes": 38325, "num_examples": 652}, {"name": "validation", "num_bytes": 6823, "num_examples": 122}, {"name": "test", "num_bytes": 10941, "num_examples": 189}], "download_size": 36124, "dataset_size": 56089}}
2023-02-08T12:31:52+00:00
[]
[]
TAGS #region-us
# Dataset Card for "massive_general-de" More Information needed
[ "# Dataset Card for \"massive_general-de\"\n\nMore Information needed" ]
[ "TAGS\n#region-us \n", "# Dataset Card for \"massive_general-de\"\n\nMore Information needed" ]
[ 6, 16 ]
[ "passage: TAGS\n#region-us \n# Dataset Card for \"massive_general-de\"\n\nMore Information needed" ]
[ -0.09092967212200165, 0.08506710827350616, -0.002943311119452119, -0.017302559688687325, 0.07800261676311493, 0.13387878239154816, -0.03540764003992081, 0.0747709572315216, 0.11327234655618668, -0.023409385234117508, 0.1670369952917099, -0.024930277839303017, 0.006025522015988827, 0.20097798109054565, -0.019145542755723, -0.094252809882164, 0.045852139592170715, 0.0611884780228138, -0.18399301171302795, -0.042244020849466324, 0.06448667496442795, -0.053140658885240555, 0.04394383728504181, -0.17219217121601105, -0.13315550982952118, 0.12370951473712921, -0.040397047996520996, -0.06345987319946289, 0.09138742089271545, -0.04602447897195816, 0.05186202749609947, -0.03391345590353012, 0.0204689409583807, -0.11139761656522751, -0.004531669896095991, 0.005632578395307064, -0.05412990227341652, 0.0546039342880249, 0.04625384137034416, -0.03911847248673439, -0.11626951396465302, -0.12878632545471191, -0.019070357084274292, -0.012684538029134274, -0.07314886152744293, -0.39792683720588684, -0.028716223314404488, -0.08072684705257416, -0.03683828189969063, -0.06376311182975769, 0.07260890305042267, -0.008205050602555275, -0.14046503603458405, -0.015446176752448082, 0.010860888287425041, -0.060053832828998566, 0.060957781970500946, 0.24759861826896667, -0.06135781109333038, 0.14735423028469086, 0.03067796118557453, 0.09349539875984192, 0.14374154806137085, -0.03833557665348053, 0.009683885611593723, -0.008815467357635498, -0.06019449979066849, 0.12745441496372223, -0.015113044530153275, -0.055348340421915054, 0.31315088272094727, -0.025237441062927246, 0.04427991434931755, 0.007078811060637236, -0.021389968693256378, 0.000314850069116801, 0.006978348828852177, 0.007547390181571245, 0.05790367349982262, 0.031449075788259506, 0.04578575864434242, -0.02182750031352043, -0.06406454741954803, -0.1586843580007553, -0.2380465418100357, 0.06317669153213501, -0.05801428109407425, 0.12040600180625916, -0.1348903328180313, 0.0074433209374547005, -0.29212576150894165, -0.005872961599379778, -0.016823114827275276, -0.06592585146427155, -0.06330914795398712, -0.01630168966948986, -0.038471121340990067, 0.06699076294898987, 0.16920965909957886, 0.03966750577092171, 0.0604117177426815, 0.019475337117910385, -0.09272582828998566, 0.07107864320278168, 0.21776440739631653, -0.0147972721606493, -0.14860524237155914, -0.09030690789222717, 0.0006540397880598903, -0.16447800397872925, -0.007299662102013826, -0.0756290927529335, -0.1087518036365509, -0.029321271926164627, -0.06179714947938919, 0.0870959684252739, -0.07832671701908112, -0.13550697267055511, -0.05909799784421921, 0.0014325196389108896, 0.17828090488910675, -0.061752740293741226, 0.021928386762738228, -0.004156959243118763, -0.06417573988437653, 0.0501876063644886, -0.17394179105758667, -0.0034167547710239887, 0.10740721970796585, 0.07898017019033432, -0.09268040210008621, -0.08748417347669601, -0.06239628791809082, -0.005194989498704672, 0.07065173983573914, -0.12404784560203552, 0.08343111723661423, -0.06808754056692123, -0.2817387580871582, 0.10408900678157806, 0.02915235608816147, -0.11227864772081375, 0.10490994155406952, 0.0726204589009285, 0.09817889332771301, -0.0374048613011837, -0.09022752940654755, 0.1871759295463562, -0.1119627058506012, 0.022322438657283783, 0.03315607085824013, 0.05592382699251175, -0.26277172565460205, 0.041293270885944366, -0.07917455583810806, 0.007104848511517048, -0.027617815881967545, 0.07191390544176102, -0.11859253793954849, 0.04285707697272301, -0.07954846322536469, -0.037309568375349045, -0.08806169033050537, 0.035795874893665314, -0.02189970761537552, 0.013770559802651405, -0.24564647674560547, -0.04390470311045647, 0.14513196051120758, -0.09628556668758392, -0.10651164501905441, 0.06756331026554108, -0.05043468251824379, 0.008439895696938038, 0.07687122374773026, 0.3071797788143158, -0.0871492475271225, 0.08119933307170868, 0.08783214539289474, 0.17135144770145416, -0.10168631374835968, -0.24153845012187958, 0.13299061357975006, -0.06652478873729706, -0.179493248462677, 0.030002053827047348, 0.09150699526071548, 0.0002940729900728911, -0.05203556269407272, -0.03703111782670021, 0.0061024948954582214, -0.1470388025045395, 0.024460725486278534, -0.0092949653044343, 0.05680861696600914, -0.028367290273308754, 0.1490980088710785, 0.09123529493808746, 0.08789478242397308, 0.021245647221803665, -0.0613531693816185, 0.026557432487607002, 0.0690152570605278, -0.16495445370674133, 0.012838567607104778, -0.13711799681186676, -0.072869673371315, 0.03599672019481659, -0.05588331073522568, 0.012158756144344807, 0.1194802075624466, 0.08099674433469772, -0.02425381913781166, -0.04237210005521774, 0.12855294346809387, 0.1165986955165863, 0.056607503443956375, 0.04919557273387909, -0.0016632768092676997, 0.027957288548350334, -0.08079902082681656, -0.1183481365442276, -0.04017489403486252, -0.06569549441337585, 0.14019927382469177, -0.02781420573592186, 0.013612518087029457, 0.014203480444848537, 0.022431254386901855, 0.018160400912165642, -0.005449802614748478, -0.05600062757730484, -0.039224542677402496, -0.06596911698579788, -0.10860995948314667, -0.01550542376935482, 0.03958854451775551, 0.43306800723075867, 0.08210575580596924, 0.024486780166625977, 0.038247521966695786, -0.03843960538506508, 0.05687730014324188, -0.021561821922659874, -0.0475369431078434, -0.06762810051441193, -0.007965351454913616, -0.05238521844148636, 0.023600267246365547, -0.046178046613931656, 0.030340317636728287, 0.041437942534685135, 0.025382231920957565, -0.06341478228569031, 0.005267229862511158, 0.12496642768383026, -0.2562038004398346, 0.16737249493598938, 0.14963459968566895, 0.006570480763912201, 0.15250898897647858, -0.02568974904716015, -0.12183951586484909, -0.007445806637406349, -0.14215613901615143, -0.06738055497407913, 0.22786840796470642, -0.12049491703510284, 0.031207939609885216, 0.08501549810171127, 0.04796411842107773, 0.14648213982582092, -0.028551267459988594, -0.08455111086368561, -0.0031898196320980787, -0.010169082321226597, -0.14190348982810974, 0.004419761244207621, -0.031585704535245895, 0.10040170699357986, 0.0693497359752655, -0.020646659657359123, 0.1393912136554718, -0.008464241400361061, 0.03947683051228523, 0.1284676492214203, -0.11892453581094742, -0.20843496918678284, 0.042318619787693024, -0.02453455701470375, 0.0034776690881699324, 0.025399697944521904, -0.03379617631435394, -0.17284034192562103, -0.06924554705619812, 0.03229416534304619, -0.06745357811450958, -0.16770237684249878, 0.011554324999451637, -0.0014068656601011753, -0.011890826746821404, -0.050298187881708145, -0.13035036623477936, 0.01151325274258852, -0.0200667567551136, 0.009882505051791668, 0.07668527960777283, -0.09018118679523468, 0.1399749368429184, 0.11172334104776382, 0.006483917590230703, 0.08629551529884338, -0.04862305894494057, -0.05601133778691292, -0.06343782693147659, -0.08961272239685059, 0.08924944698810577, 0.05564546957612038, -0.033945754170417786, 0.032750632613897324, 0.09146705269813538, -0.1622951179742813, -0.04483203589916229, -0.012794808484613895, -0.18567517399787903, -0.20673273503780365, -0.1724260002374649, -0.04882797226309776, 0.10683882981538773, 0.05634552612900734, 0.07843474298715591, 0.006879485212266445, 0.023945042863488197, 0.13366109132766724, -0.0008345214882865548, -0.13315066695213318, -0.08007603138685226, -0.0182513315230608, -0.01365318801254034, 0.004993187729269266, -0.12504109740257263, -0.030394909903407097, 0.21558839082717896, 0.1929657757282257, 0.18139387667179108, 0.07062587141990662, 0.1583823412656784, -0.07658031582832336, 0.03911170735955238, 0.020918676629662514, 0.13767753541469574, 0.05888530984520912, -0.015841202810406685, -0.028586726635694504, 0.02842296101152897, -0.01035500131547451, 0.0017762479837983847, 0.13426309823989868, -0.18968938291072845, 0.0504252053797245, -0.20834024250507355, 0.08808542042970657, -0.16025090217590332, 0.03262682631611824, -0.21264079213142395, 0.06687691807746887, 0.06812180578708649, 0.18072058260440826, -0.09646325558423996, 0.08684269338846207, 0.06595088541507721, -0.029074590653181076, 0.08911073207855225, 0.05960845202207565, 0.039729032665491104, -0.0860944539308548, 0.028211554512381554, -0.018176354467868805, -0.03752095252275467, 0.006898309104144573, 0.13122886419296265, -0.17821121215820312, 0.18596673011779785, 0.016946904361248016, -0.0749749019742012, -0.1710306704044342, -0.06330659240484238, -0.008513500913977623, -0.01001066341996193, 0.11000561714172363, 0.005750552751123905, -0.07112988829612732, -0.08786554634571075, -0.06372113525867462, 0.037995077669620514, 0.034787897020578384, -0.06313493847846985, -0.17946770787239075, 0.06969369947910309, 0.018285755068063736, 0.002924184314906597, -0.14643314480781555, -0.0468338206410408, -0.09778840839862823, -0.006257439497858286, 0.024589143693447113, -0.0672038346529007, 0.0004255250096321106, -0.01409906055778265, -0.06197897717356682, 0.18827074766159058, 0.05578063055872917, -0.04362519085407257, -0.09105190634727478, 0.03328640013933182, 0.19958239793777466, 0.03749673068523407, -0.006663552951067686, 0.04975588619709015, 0.04687140882015228, -0.00893391016870737, -0.19677850604057312, 0.15489798784255981, -0.08251716196537018, 0.11591680347919464, -0.04138405993580818, 0.03558170422911644, -0.0031643076799809933, 0.04066772758960724, -0.02813817374408245, 0.0005112256039865315, -0.00023322037304751575, -0.11284037679433823, 0.1898810714483261, -0.05028928071260452, 0.10475712269544601, 0.23481236398220062, 0.11743395030498505, -0.012441396713256836, 0.1892566978931427, -0.034513458609580994, 0.1778753697872162, 0.046774618327617645, -0.047216515988111496, 0.140785351395607, 0.17646203935146332, -0.02395101636648178, -0.28051427006721497, 0.0848890170454979, -0.15859292447566986, -0.024703700095415115, 0.009578545577824116, -0.29895874857902527, 0.11547034233808517, 0.2543293237686157, -0.06067890301346779, 0.2714295983314514, -0.2260921597480774, -0.028320180252194405, 0.17353183031082153, -0.06000613793730736, 0.5039967894554138, -0.1368144154548645, -0.044136617332696915, -0.15618547797203064, 0.04200788214802742, 0.16763386130332947, -0.16272996366024017, 0.025953371077775955, -0.002063353545963764, 0.06265675276517868, -0.011079605668783188, -0.0718206837773323, 0.2208736538887024, 0.01723833940923214, 0.14613740146160126, -0.038424983620643616, -0.0186881422996521, 0.20593160390853882, -0.011709914542734623, 0.07417281717061996, -0.025731990113854408, -0.01129831187427044, -0.05021968111395836, -0.051299791783094406, 0.05881257355213165, 0.03046491928398609, 0.09972156584262848, -0.12291780859231949, -0.061676256358623505, 0.037812285125255585, -0.12126906216144562, -0.052935607731342316, 0.12960171699523926, 0.02306264266371727, -0.04716133326292038, -0.06244369596242905, 0.06809546053409576, -0.14022891223430634, -0.016653001308441162, -0.012566880322992802, -0.09357906877994537, 0.13087961077690125, -0.23097512125968933, 0.08181914687156677, 0.13726602494716644, 0.0036002190317958593, 0.014812842942774296, 0.07921595126390457, -0.0004655205993913114, 0.0518542155623436, 0.13760758936405182, -0.05654021352529526, -0.11009280383586884, 0.08910596370697021, -0.04620283842086792, 0.0938776358962059, 0.1397201418876648, 0.009722703136503696, 0.08193761855363846, -0.017926231026649475, -0.012967691756784916, 0.06012970581650734, -0.08459419757127762, 0.10508126765489578, 0.022268088534474373, -0.0017660968005657196, -0.18894603848457336, 0.23710417747497559, 0.0448775477707386, -0.1070992648601532, 0.011849354021251202, -0.07108066976070404, -0.03543052449822426, -0.0611189641058445, -0.017809800803661346, 0.18520699441432953, -0.08839810639619827, -0.127118319272995, 0.03463885560631752, -0.09483285248279572, 0.011389551684260368, 0.06596273928880692, 0.08979817479848862, 0.0894710123538971, -0.00008140905265463516, -0.01212198194116354, -0.015210443176329136, -0.07481597363948822, -0.08746684342622757, 0.04536980018019676, -0.058215297758579254, -0.16887100040912628, -0.031756751239299774, 0.09776011109352112, -0.08666091412305832, -0.016000133007764816, -0.05744006484746933, 0.03977149352431297, -0.32922106981277466, -0.039560701698064804, 0.03054969757795334, 0.022842448204755783, -0.0009315089555457234, 0.05523858591914177, -0.002982772421091795, -0.015637462958693504, -0.0703708827495575, 0.09478971362113953, 0.05973382666707039, 0.03880419209599495, -0.0697072446346283, -0.03958263620734215, 0.025842130184173584, 0.059353772550821304, 0.1645689159631729, 0.126887708902359, 0.0604921393096447, 0.04468807205557823, -0.028257420286536217, -0.09771008044481277, 0.08156930655241013, 0.0657365545630455, 0.05598035082221031, 0.012326433323323727, 0.0060494933277368546, 0.10778394341468811, -0.09156014025211334, 0.046641066670417786, -0.07477207481861115, -0.07735481858253479, 0.08294619619846344, -0.12538178265094757, -0.06798885762691498, 0.04356873780488968, -0.11316569149494171, 0.19042564928531647, 0.09203685075044632, -0.12610019743442535, 0.0644967183470726, -0.013303480111062527, -0.01273689791560173, -0.0496506504714489, -0.04009636491537094, -0.10775017738342285, -0.1477595865726471, 0.12687726318836212, 0.060816440731287, -0.05359836667776108, 0.655882716178894, -0.07420652359724045, -0.15408873558044434, -0.05591046065092087, 0.05527361109852791, 0.1315205991268158, 0.041145965456962585, 0.33903878927230835, 0.06728542596101761, -0.055425312370061874, -0.08624199777841568, 0.11670585721731186, 0.027139456942677498, 0.18810929358005524, 0.1014503538608551, 0.04969846457242966, 0.0608639195561409, -0.06026514619588852, -0.01854894682765007, -0.18195445835590363, 0.05183509737253189, 0.09221790730953217, 0.04800955578684807, -0.03196299821138382, 0.08088869601488113, -0.11943753063678741, 0.06272237002849579, -0.025392960757017136, -0.001658266526646912, -0.058862410485744476, -0.020192908123135567, -0.03429462015628815, -0.07585716247558594, -0.04217051714658737, -0.09142517298460007, 0.015117326751351357, -0.09020577371120453, -0.043233659118413925, 0.24187098443508148, 0.07602690160274506, 0.008139918558299541, 0.0862479880452156, -0.0839109793305397, 0.05892810970544815, 0.05329638719558716, -0.0018340165261179209, -0.07766037434339523, 0.05190783739089966, -0.09811392426490784, -0.011866660788655281, -0.03428763896226883, -0.02929486148059368, 0.010557468980550766, 0.00895667728036642, -0.004273824859410524, -0.07569950073957443, 0.015540276654064655, -0.09395665675401688, 0.058234188705682755, -0.14233136177062988, 0.0947646051645279, 0.011518195271492004, -0.04195421561598778, 0.06784374266862869, 0.04993324726819992, 0.006147465668618679, 0.049246810376644135, -0.008597824722528458, 0.053010325878858566, 0.00994079653173685, 0.12136256694793701, 0.019154014065861702, -0.06277818232774734, -0.07041352242231369, 0.009452352300286293, 0.34399038553237915, -0.09595700353384018, -0.029080094769597054, 0.01926046796143055, 0.03448326140642166, 0.046585943549871445, 0.1189003512263298, 0.018157051876187325, 0.19847989082336426, -0.04524620622396469, -0.12946635484695435, 0.052177365869283676, 0.01926572248339653, -0.034772150218486786, 0.06678184121847153, 0.07844094932079315, -0.03200717270374298, -0.10291927307844162, 0.11741436272859573, -0.1522781401872635, 0.10727553069591522, 0.03495245426893234, -0.12015807628631592, -0.11876094341278076, 0.033693697303533554, -0.0013612142065539956, -0.039171263575553894, 0.01470172218978405, -0.09353432059288025, -0.015166493132710457, -0.11860708892345428, -0.009330939501523972, -0.3219428062438965, -0.15475529432296753, -0.01095222495496273, 0.22771722078323364, 0.10892616212368011, -0.024945080280303955, 0.1592075228691101, 0.004581731744110584, 0.011209115386009216, -0.083530955016613, 0.04351937770843506, -0.001666076248511672, 0.046918973326683044, -0.06432364881038666, -0.05797979608178139, -0.08324355632066727, -0.05478684604167938, 0.07784576714038849, -0.00753368902951479, -0.06954232603311539, 0.16836510598659515, -0.039207909256219864, -0.03665321320295334, -0.07026521861553192, -0.09311543405056, 0.09035708010196686, -0.020587798207998276, -0.020658718422055244, -0.018553664907813072, -0.03779266029596329, 0.11065500229597092, 0.0680265724658966, -0.013515002094209194, -0.10484189540147781, -0.025719819590449333, -0.03262864798307419, 0.10532597452402115, -0.007244815118610859, -0.03148183971643448, 0.05834446847438812, -0.04293231666088104, 0.09175531566143036, 0.027950970456004143, -0.000014264709534472786, 0.11170025914907455, 0.05230598896741867, -0.03728347644209862, -0.06337091326713562, 0.004961883183568716, -0.025182204321026802, -0.04435622692108154, -0.10138668119907379 ]
cf5039d6410af0063c6b900d496c0e3099028c9b
# Dataset Card for "massive_audio-de" [More Information needed](https://github.com/huggingface/datasets/blob/main/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
fathyshalab/massive_audio-de
[ "region:us" ]
2023-02-08T11:26:19+00:00
{"dataset_info": {"features": [{"name": "id", "dtype": "string"}, {"name": "label", "dtype": "int64"}, {"name": "text", "dtype": "string"}], "splits": [{"name": "train", "num_bytes": 14612, "num_examples": 290}, {"name": "validation", "num_bytes": 1763, "num_examples": 35}, {"name": "test", "num_bytes": 2978, "num_examples": 62}], "download_size": 13084, "dataset_size": 19353}}
2023-02-08T12:32:13+00:00
[]
[]
TAGS #region-us
# Dataset Card for "massive_audio-de" More Information needed
[ "# Dataset Card for \"massive_audio-de\"\n\nMore Information needed" ]
[ "TAGS\n#region-us \n", "# Dataset Card for \"massive_audio-de\"\n\nMore Information needed" ]
[ 6, 17 ]
[ "passage: TAGS\n#region-us \n# Dataset Card for \"massive_audio-de\"\n\nMore Information needed" ]
[ -0.11895880848169327, 0.10528666526079178, -0.0012358586536720395, -0.01703461818397045, 0.07680445164442062, 0.04467890039086342, 0.0469418540596962, 0.012740970589220524, 0.03572065010666847, -0.004318328574299812, 0.03291621059179306, 0.08276890963315964, -0.007849329151213169, 0.16751432418823242, -0.0395195446908474, -0.06790660321712494, 0.0014209477230906487, 0.03323616087436676, -0.1562715321779251, -0.010410790331661701, 0.06325987726449966, -0.03638464957475662, 0.01067011896520853, -0.1192401871085167, -0.1699034422636032, 0.07684989273548126, 0.001831006957218051, -0.0551891103386879, 0.03103717230260372, -0.08302238583564758, 0.045542243868112564, 0.0022061322815716267, 0.046917624771595, -0.047804441303014755, 0.014994778670370579, 0.003993168007582426, 0.004426950588822365, 0.028211094439029694, 0.06445758789777756, -0.06276007741689682, -0.2093663066625595, -0.0034850111696869135, -0.05298841744661331, -0.006258455105125904, -0.027891848236322403, -0.37373217940330505, -0.05231955274939537, -0.08598819375038147, -0.013823657296597958, -0.022139770910143852, 0.03198569640517235, 0.014663905836641788, -0.08327896147966385, 0.01749410480260849, 0.021949628368020058, 0.047744493931531906, 0.09756563603878021, 0.15096765756607056, 0.03045506775379181, 0.21844832599163055, 0.05580988526344299, 0.09726408869028091, 0.15519660711288452, -0.03587744012475014, -0.032972630113363266, -0.04622962698340416, -0.07983225584030151, -0.007983515970408916, -0.007610772270709276, -0.0288765337318182, 0.36258068680763245, -0.021044544875621796, -0.029206113889813423, 0.029161689803004265, -0.000425352540332824, -0.12155478447675705, -0.01067345030605793, 0.033468201756477356, 0.04891189932823181, 0.026138722896575928, -0.05116625502705574, 0.00903182104229927, -0.0376027375459671, -0.14141184091567993, -0.15475720167160034, 0.013792022131383419, -0.07413938641548157, 0.09832719713449478, -0.1350872665643692, -0.034178003668785095, -0.21153749525547028, -0.025471152737736702, 0.04252169653773308, -0.05413103848695755, -0.035775892436504364, -0.01650182344019413, -0.015069209039211273, 0.021270444616675377, 0.10007739067077637, 0.009906427934765816, 0.032707951962947845, -0.03212787210941315, -0.14051254093647003, 0.09018780291080475, 0.21065443754196167, -0.15712709724903107, -0.03498470410704613, -0.201057568192482, -0.0014934311620891094, -0.1152549684047699, 0.026242109015583992, -0.08567053824663162, -0.13275620341300964, 0.01737084612250328, -0.11602574586868286, 0.0781794935464859, -0.04725246876478195, -0.19104547798633575, -0.08726774901151657, -0.029162637889385223, 0.06940902769565582, -0.05705271661281586, 0.03209565207362175, -0.03466848284006119, 0.035535428673028946, 0.09849781543016434, -0.1643417626619339, 0.046373944729566574, 0.09984613209962845, 0.13399994373321533, -0.006933016702532768, -0.04982426017522812, -0.03936590999364853, 0.005750870332121849, 0.13024485111236572, -0.14982378482818604, 0.1137293204665184, -0.03542913869023323, -0.16149991750717163, 0.028215359896421432, 0.03890863433480263, -0.008147099055349827, -0.010838358663022518, 0.05240310728549957, 0.07844287157058716, 0.037989236414432526, -0.14846046268939972, 0.1591225415468216, -0.11592788249254227, 0.06974022090435028, 0.03480156511068344, 0.11319158971309662, -0.2562355399131775, 0.10833185166120529, -0.04968291148543358, 0.008072834461927414, -0.09555203467607498, 0.08265277743339539, -0.10224994271993637, -0.006280285306274891, -0.05096135661005974, -0.05458502471446991, -0.15021952986717224, 0.09739513695240021, -0.010061150416731834, -0.07053163647651672, -0.31199949979782104, -0.1205412819981575, 0.07891538739204407, -0.09531143307685852, -0.10235782712697983, 0.1454222947359085, -0.01112345326691866, 0.030880417674779892, 0.08812498301267624, 0.29065170884132385, -0.006038133520632982, -0.029364578425884247, 0.04933587834239006, 0.12752188742160797, -0.06353645771741867, -0.24835678935050964, 0.10430091619491577, -0.08408787846565247, -0.07048369199037552, -0.051144566386938095, 0.19727760553359985, 0.02726326696574688, -0.028593575581908226, -0.03187403082847595, 0.008951048366725445, -0.14721180498600006, 0.0033436331432312727, -0.016262028366327286, -0.020507585257291794, -0.01833943836390972, 0.11211328953504562, 0.1639130860567093, 0.07872093468904495, 0.022394439205527306, -0.02803962491452694, 0.03830825537443161, 0.1364741027355194, -0.2319134920835495, -0.027111269533634186, -0.2002469152212143, 0.13935108482837677, -0.009230648167431355, -0.054911550134420395, 0.14943069219589233, 0.14723271131515503, 0.027291176840662956, -0.056702353060245514, -0.030874310061335564, 0.061964672058820724, 0.12287351489067078, 0.03671190142631531, 0.08480261266231537, -0.050640299916267395, 0.06959474831819534, -0.07658559083938599, -0.10706668347120285, 0.047610219568014145, -0.14555197954177856, 0.08028902858495712, -0.032308731228113174, 0.03285439684987068, -0.013418585993349552, 0.013151892460882664, 0.02296110801398754, -0.010105324909090996, 0.021261975169181824, -0.0320945680141449, -0.05749354138970375, -0.05066647380590439, 0.05713518336415291, -0.08634781092405319, 0.37088310718536377, 0.14934606850147247, -0.044852085411548615, 0.038986120373010635, 0.03406239673495293, 0.09550890326499939, -0.04552273452281952, -0.09036530554294586, -0.06528649479150772, -0.006617974489927292, -0.07900848984718323, 0.05678877979516983, -0.08354590833187103, 0.04806894809007645, 0.06845328211784363, 0.0266525000333786, -0.037468988448381424, 0.0008739012409932911, 0.06301015615463257, -0.2068767249584198, 0.14721719920635223, 0.24405287206172943, -0.04424171522259712, 0.2821011245250702, -0.05364682152867317, -0.15724307298660278, 0.01393421832472086, -0.13988347351551056, -0.08304064720869064, 0.1886020302772522, -0.0888512060046196, 0.04937385767698288, 0.09885286539793015, 0.0816752091050148, 0.05908849090337753, -0.04374315217137337, -0.015374324284493923, 0.006411784794181585, -0.010881773196160793, -0.2673683762550354, -0.0020052879117429256, 0.007353263441473246, 0.03875185549259186, -0.017911454662680626, -0.06620494276285172, 0.1623457670211792, -0.042394354939460754, 0.015546184964478016, -0.023093419149518013, -0.16653034090995789, -0.19718769192695618, -0.06537032127380371, -0.11390643566846848, 0.015359677374362946, 0.05377969890832901, 0.050573986023664474, -0.10736751556396484, -0.04062959551811218, 0.09422928839921951, 0.009746063500642776, -0.14632146060466766, -0.024156153202056885, 0.04846086725592613, 0.039883799850940704, 0.02448383904993534, -0.07898702472448349, 0.03174320235848427, 0.03565113618969917, 0.12115436047315598, 0.005486368667334318, -0.00519621791318059, 0.09113197773694992, 0.12467741221189499, 0.0441320575773716, 0.04016885906457901, -0.012750565074384212, -0.02553044632077217, -0.1340099573135376, -0.034694693982601166, 0.15273751318454742, -0.04981112852692604, -0.052720386534929276, 0.123631052672863, 0.11476145684719086, -0.08193077892065048, -0.045876678079366684, 0.007606205064803362, -0.19218233227729797, -0.25664693117141724, -0.16818799078464508, -0.10263003408908844, 0.07966811209917068, -0.029169170185923576, 0.031218066811561584, 0.047237176448106766, -0.012658387422561646, 0.07634997367858887, 0.027909791097044945, -0.06805296242237091, -0.11519760638475418, -0.05621250346302986, -0.04551488533616066, 0.025062164291739464, -0.14156079292297363, -0.04714462533593178, 0.17775958776474, 0.19688627123832703, 0.12117236852645874, 0.16134013235569, 0.17627212405204773, -0.033158618956804276, -0.03916346654295921, 0.11571184545755386, 0.15786021947860718, 0.08863435685634613, 0.008537848480045795, -0.01729750446975231, -0.027032706886529922, 0.013401764445006847, 0.001235730480402708, 0.2613372206687927, -0.08694321662187576, 0.021853074431419373, -0.10763796418905258, -0.01839916966855526, -0.1403598040342331, 0.07431073486804962, -0.18441085517406464, 0.10373124480247498, 0.0910039022564888, 0.14166061580181122, -0.12008414417505264, 0.14182990789413452, 0.10828738659620285, 0.020225269719958305, 0.07710758596658707, 0.08956080675125122, 0.07834380120038986, -0.13325980305671692, 0.010080468840897083, 0.01453789509832859, 0.006500250659883022, 0.011689495295286179, 0.03250708431005478, -0.09769517183303833, 0.13460327684879303, 0.07127686589956284, 0.008563801646232605, -0.057764746248722076, -0.041754093021154404, 0.007668512873351574, 0.004402360413223505, 0.1326567381620407, 0.0025983243249356747, -0.15074580907821655, -0.09016542881727219, -0.0940493643283844, -0.03450661897659302, 0.08368057757616043, 0.08639630675315857, -0.22211392223834991, 0.02028043568134308, -0.005285329185426235, 0.018513383343815804, -0.19760093092918396, -0.09289664030075073, -0.0880078598856926, -0.0389949306845665, 0.18486715853214264, -0.01987164095044136, 0.007648953702300787, -0.05493111163377762, -0.11101864278316498, 0.0867997482419014, 0.023524688556790352, -0.004099723882973194, -0.04706744849681854, -0.09351333975791931, 0.2026573121547699, 0.1141766682267189, 0.0430283285677433, 0.04915548115968704, 0.028964029625058174, -0.05316462367773056, -0.14806173741817474, 0.12285704910755157, -0.0945432260632515, 0.14715546369552612, -0.07685712724924088, 0.1629173904657364, 0.0019005172653123736, 0.0726127102971077, -0.04728250205516815, -0.0032114917412400246, 0.02418028563261032, -0.026164250448346138, 0.16072547435760498, -0.09207243472337723, 0.07577057927846909, 0.22431804239749908, 0.06861019879579544, -0.11147241294384003, 0.18360598385334015, -0.09120569378137589, 0.13304102420806885, 0.10638543963432312, -0.013836521655321121, 0.19288712739944458, 0.22961047291755676, -0.016556279733777046, -0.32005488872528076, 0.09783095121383667, -0.08084258437156677, -0.02441982738673687, 0.037112146615982056, -0.2343529611825943, 0.13374577462673187, 0.1039758250117302, -0.04211215674877167, 0.25712156295776367, -0.1478656679391861, 0.00038976085488684475, 0.1762888878583908, -0.15870429575443268, 0.37529146671295166, -0.0354803130030632, -0.060712169855833054, -0.21323667466640472, -0.04850024729967117, 0.16285067796707153, -0.23485106229782104, 0.06765349954366684, 0.10218624025583267, 0.08687710762023926, -0.022784359753131866, -0.024629609659314156, 0.11646143347024918, 0.0613868273794651, 0.07974352687597275, 0.010983454063534737, 0.05177328363060951, 0.10868476331233978, 0.02066788636147976, 0.006022967863827944, -0.037050943821668625, -0.02733163721859455, -0.03393876552581787, -0.06044561788439751, 0.06527531892061234, 0.043035268783569336, 0.05082574114203453, -0.07215134799480438, -0.0031906096264719963, -0.00030126559431664646, -0.13453792035579681, -0.07768892496824265, 0.1776626855134964, -0.00565717276185751, -0.04208977147936821, 0.0029658274725079536, 0.15780822932720184, -0.0965961366891861, -0.14816845953464508, -0.004495474509894848, -0.10615463554859161, 0.10806881636381149, -0.19754642248153687, 0.11828932911157608, 0.06029370054602623, 0.030589602887630463, -0.005285099148750305, 0.08074719458818436, -0.04541206359863281, 0.03712973743677139, 0.1222870945930481, -0.0010753775713965297, -0.00039300433127209544, 0.03529401123523712, -0.05712540075182915, 0.13353665173053741, 0.05570744723081589, 0.03462515026330948, 0.06067148968577385, 0.005271949339658022, 0.02505222149193287, 0.026520637795329094, -0.17235514521598816, 0.1389533430337906, -0.005131933372467756, 0.010456142947077751, -0.19437618553638458, 0.2519576847553253, -0.003869131673127413, -0.1933215707540512, -0.007522797677665949, -0.08513405919075012, -0.001981552457436919, -0.054232191294431686, 0.05945434048771858, 0.13810499012470245, -0.038896869868040085, -0.1573222130537033, 0.10243075340986252, -0.08845821768045425, -0.020744452252984047, 0.039083823561668396, 0.029720721766352654, 0.061123184859752655, -0.048735156655311584, -0.006004199385643005, -0.04122310131788254, 0.026445768773555756, -0.07209030538797379, 0.08007911592721939, -0.12152177095413208, -0.15754434466362, -0.053276579827070236, 0.08765193819999695, -0.10984009504318237, -0.0004846536321565509, -0.020284736528992653, 0.08000749349594116, -0.25437501072883606, -0.03603672608733177, 0.07556044310331345, -0.0022942153736948967, -0.0011257162550464272, 0.07962938398122787, -0.004787358921021223, 0.02340780198574066, -0.05916285514831543, 0.07394460588693619, 0.07591792941093445, 0.0413459837436676, -0.04368157684803009, 0.013688861392438412, -0.004546668380498886, 0.0263358224183321, 0.09279808402061462, 0.1573486328125, -0.005576768424361944, -0.01529922429472208, -0.1521207094192505, -0.2011280357837677, 0.12430167198181152, 0.07922521233558655, 0.052545927464962006, -0.04612400755286217, 0.0012184864608570933, 0.1251095086336136, -0.004849323537200689, -0.009596514515578747, -0.105977863073349, -0.02417224831879139, 0.03249209001660347, -0.1901167780160904, -0.05883778631687164, 0.00554382149130106, -0.0858946368098259, 0.23848822712898254, 0.09233862906694412, 0.010822989977896214, 0.0710475817322731, -0.0010796525748446584, 0.05783979967236519, -0.0021364386193454266, -0.02658344805240631, -0.17161887884140015, -0.17740920186042786, 0.0682901069521904, 0.01571379043161869, -0.08065147697925568, 0.4599522054195404, -0.023935027420520782, -0.17443475127220154, -0.04143574833869934, 0.02323717623949051, 0.01336091011762619, 0.023038098588585854, 0.34949395060539246, 0.04638374224305153, -0.04203126206994057, -0.16250112652778625, 0.05731499195098877, 0.06790924817323685, 0.27158406376838684, 0.009393268264830112, 0.11047720909118652, 0.09246505051851273, -0.06455058604478836, 0.08361534029245377, -0.12798632681369781, -0.09129514545202255, 0.0637899711728096, 0.0878010243177414, 0.024644680321216583, 0.08208483457565308, -0.01465139165520668, -0.03353258967399597, 0.011213032528758049, 0.05891289561986923, -0.09395137429237366, -0.008228777907788754, -0.12656135857105255, 0.01055766548961401, -0.04721784591674805, -0.07936905324459076, 0.017337555065751076, -0.07352438569068909, 0.0468284897506237, 0.13483606278896332, 0.03906495124101639, -0.030853642150759697, 0.10894273221492767, -0.15845279395580292, 0.020905684679746628, 0.06628936529159546, 0.0037980228662490845, -0.09888964146375656, 0.05292343720793724, -0.10286392271518707, 0.10576146841049194, -0.0753105953335762, -0.029466917738318443, -0.027223538607358932, -0.033737264573574066, 0.044928185641765594, -0.1056373193860054, -0.02794397808611393, -0.053999871015548706, 0.017215697094798088, -0.05444249510765076, 0.15683983266353607, 0.02232733927667141, -0.0498550646007061, 0.058004267513751984, 0.013315344229340553, -0.04061878100037575, 0.012148878537118435, 0.01484013069421053, -0.05355190858244896, -0.12326222658157349, 0.16170841455459595, -0.0024268438573926687, -0.051120396703481674, -0.08845029771327972, 0.0022446666844189167, 0.3116728365421295, -0.08193551748991013, -0.0006395175587385893, 0.05053794011473656, 0.015544931404292583, -0.10451194643974304, 0.08984945714473724, 0.08273173868656158, 0.18727214634418488, 0.02054850198328495, -0.0660800114274025, -0.013710985891520977, 0.013349155895411968, -0.00221359939314425, 0.06667310744524002, 0.017116792500019073, -0.10155659914016724, 0.009763263165950775, 0.12685880064964294, -0.22173373401165009, 0.06054246053099632, -0.029210349544882774, -0.08413292467594147, -0.0701080709695816, -0.03180159628391266, 0.11887135356664658, 0.06805621832609177, -0.09461364150047302, -0.10270752757787704, -0.05214262381196022, -0.09466341882944107, -0.029294077306985855, -0.24366050958633423, -0.07420903444290161, -0.09205083549022675, 0.1017468273639679, -0.009945179335772991, 0.013809539377689362, 0.16694752871990204, -0.044604573398828506, 0.07836499065160751, 0.007972882129251957, 0.0867905542254448, -0.02653362601995468, -0.09127416461706161, -0.050736404955387115, 0.16069279611110687, -0.127478688955307, 0.05155152827501297, 0.06307049840688705, 0.052094511687755585, -0.03952783718705177, 0.05480010062456131, -0.09090929478406906, -0.07699225842952728, -0.08656878024339676, -0.0861138179898262, 0.11214572191238403, -0.11098718643188477, 0.04280995577573776, -0.011466518975794315, -0.03675110638141632, 0.09615445137023926, 0.15393422544002533, -0.021490205079317093, -0.042710453271865845, -0.03323860466480255, -0.07477416098117828, 0.08619923144578934, 0.024333151057362556, -0.16430284082889557, 0.08661159127950668, -0.11311908811330795, 0.04475659504532814, -0.049071066081523895, -0.04801139980554581, 0.0836622416973114, 0.041279956698417664, -0.05045165866613388, -0.012950322590768337, 0.033246494829654694, -0.033954065293073654, -0.07124576717615128, -0.11062507331371307 ]
c3933c7b2c417a8d47aa3e7eed31636d1b361198
# Dataset Card for "massive_lists-de" [More Information needed](https://github.com/huggingface/datasets/blob/main/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
fathyshalab/massive_lists-de
[ "region:us" ]
2023-02-08T11:26:35+00:00
{"dataset_info": {"features": [{"name": "id", "dtype": "string"}, {"name": "label", "dtype": "int64"}, {"name": "text", "dtype": "string"}], "splits": [{"name": "train", "num_bytes": 31261, "num_examples": 539}, {"name": "validation", "num_bytes": 6519, "num_examples": 112}, {"name": "test", "num_bytes": 8119, "num_examples": 142}], "download_size": 25338, "dataset_size": 45899}}
2023-02-08T12:32:34+00:00
[]
[]
TAGS #region-us
# Dataset Card for "massive_lists-de" More Information needed
[ "# Dataset Card for \"massive_lists-de\"\n\nMore Information needed" ]
[ "TAGS\n#region-us \n", "# Dataset Card for \"massive_lists-de\"\n\nMore Information needed" ]
[ 6, 17 ]
[ "passage: TAGS\n#region-us \n# Dataset Card for \"massive_lists-de\"\n\nMore Information needed" ]
[ -0.08553612977266312, 0.12404808402061462, -0.0034098548348993063, 0.010555132292211056, 0.12140084058046341, 0.15593892335891724, -0.00789464171975851, 0.07565606385469437, 0.22194898128509521, -0.023798754438757896, 0.12494026124477386, 0.06843136996030807, -0.025567051023244858, 0.21793752908706665, -0.03648868203163147, -0.07507418096065521, 0.05530298501253128, 0.04430093616247177, -0.24388521909713745, -0.013687821105122566, 0.07170719653367996, -0.08148360252380371, 0.050859235227108, -0.17942197620868683, -0.09077400714159012, 0.0896916538476944, -0.048625703901052475, -0.04280634596943855, 0.09122762084007263, -0.09624037891626358, 0.06826812028884888, -0.03279799595475197, 0.020434435456991196, -0.10443166643381119, 0.0014055108185857534, 0.008337875828146935, -0.03069237805902958, 0.04103168845176697, 0.011367456056177616, -0.06349416822195053, -0.17198485136032104, -0.14807115495204926, -0.007707762531936169, 0.006392359733581543, -0.07077325880527496, -0.3653760850429535, -0.05680091679096222, -0.09697228670120239, -0.025792192667722702, -0.03887804225087166, 0.07925139367580414, 0.10756924748420715, -0.12805840373039246, -0.007866578176617622, 0.07475705444812775, -0.023388421162962914, 0.0537954717874527, 0.16922934353351593, -0.027255987748503685, 0.13261637091636658, 0.040001705288887024, 0.06345358490943909, 0.1290901154279709, -0.053341228514909744, -0.0068191830068826675, -0.014940579421818256, -0.06527750939130783, 0.05357757583260536, 0.012529418803751469, -0.040847353637218475, 0.3658753037452698, -0.00005642938776873052, 0.054681140929460526, -0.018970299512147903, -0.05038945749402046, -0.03668507933616638, 0.03129137307405472, 0.018847133964300156, 0.07469205558300018, 0.0051108067855238914, 0.03099295310676098, 0.0050258212722837925, -0.06375981122255325, -0.09922000765800476, -0.15729741752147675, 0.026817360892891884, -0.08212099969387054, 0.10905870050191879, -0.16293080151081085, -0.022036848589777946, -0.1831248551607132, -0.028838055208325386, 0.009778021834790707, -0.10282108187675476, -0.10253305733203888, -0.04196767881512642, 0.005691058002412319, 0.0565342977643013, 0.1720142364501953, 0.06311195343732834, 0.11118464916944504, -0.02804139442741871, -0.09227772057056427, 0.06366252899169922, 0.21901509165763855, -0.07651348412036896, -0.09135044366121292, -0.16859671473503113, -0.02354259602725506, -0.12190145254135132, -0.006324087735265493, -0.05683490261435509, -0.0960104763507843, -0.046384476125240326, -0.07362611591815948, 0.11933507025241852, -0.0601278692483902, -0.1333216428756714, -0.055628638714551926, 0.0029505430720746517, 0.06725906580686569, -0.07765889912843704, 0.0333031602203846, 0.03379954770207405, -0.07357050478458405, 0.08363839983940125, -0.1823645532131195, -0.030394187197089195, 0.10409577935934067, 0.1290936917066574, -0.0982665866613388, -0.0644039735198021, -0.061787039041519165, -0.030053744092583656, 0.08557755500078201, -0.2195122390985489, 0.10045033693313599, -0.0382273904979229, -0.24152135848999023, 0.07051651924848557, 0.018296657130122185, -0.06260328739881516, 0.07947579026222229, 0.07905396819114685, 0.07272473722696304, -0.04323446750640869, -0.07711883634328842, 0.1662359982728958, -0.11123400926589966, 0.05947795510292053, -0.00843819510191679, 0.06917090713977814, -0.21803075075149536, 0.040636636316776276, -0.09453679621219635, -0.004125049337744713, -0.036612529307603836, 0.043441157788038254, -0.06511877477169037, 0.14714384078979492, -0.07716814428567886, -0.0216378103941679, -0.06624747812747955, 0.019405243918299675, -0.04707660526037216, 0.05673927813768387, -0.32892099022865295, -0.029427139088511467, 0.11979103088378906, -0.09602966904640198, -0.18448598682880402, 0.07299817353487015, -0.06812707334756851, 0.05938122794032097, 0.08090285956859589, 0.24787013232707977, -0.06958853453397751, 0.13228951394557953, 0.028369955718517303, 0.1429136097431183, -0.09049854427576065, -0.28588637709617615, 0.125565305352211, -0.06731513887643814, -0.08013739436864853, -0.0005908707971684635, 0.14506679773330688, -0.029907144606113434, -0.0515960156917572, -0.04469135403633118, -0.0011640789452940226, -0.1621764451265335, 0.048681799322366714, -0.019164443016052246, 0.012768561951816082, -0.04960692301392555, 0.1623479276895523, 0.1394415646791458, 0.0956091359257698, 0.031648650765419006, -0.06938095390796661, 0.058384012430906296, 0.060791872441768646, -0.12196072190999985, -0.01923687942326069, -0.1690969169139862, -0.05940331518650055, 0.016275491565465927, -0.08286909013986588, 0.001378294313326478, 0.13478244841098785, 0.055270228534936905, -0.07765530049800873, 0.01593451015651226, 0.15446737408638, 0.13992653787136078, 0.07102019339799881, 0.05308586731553078, -0.00941084697842598, 0.008599362336099148, -0.09071952104568481, -0.1170809268951416, -0.05893182009458542, -0.07964842766523361, 0.12094027549028397, 0.025811655446887016, 0.04396412894129753, 0.002489330479875207, 0.03031708486378193, 0.008721430785953999, -0.009551232680678368, -0.06241634860634804, -0.0033155863638967276, -0.08069469034671783, -0.06734803318977356, -0.08651488274335861, -0.001231473870575428, 0.3955019414424896, 0.129216268658638, 0.020743247121572495, 0.05617974326014519, 0.021483050659298897, 0.06885994225740433, -0.007977808825671673, -0.07189370691776276, -0.020423317328095436, -0.1420806646347046, -0.023529550060629845, 0.06590548902750015, -0.03509208559989929, 0.02735299989581108, 0.04147832840681076, 0.0754256322979927, -0.06304353475570679, 0.016381055116653442, 0.170054093003273, -0.2601722180843353, 0.16759568452835083, 0.18169762194156647, 0.06612581759691238, 0.1428292691707611, -0.05302680283784866, -0.09663408994674683, 0.006159622222185135, -0.12054657191038132, -0.08062268793582916, 0.1775580793619156, -0.17308977246284485, 0.04498936980962753, 0.09764658659696579, 0.019504820927977562, 0.0801035538315773, -0.011868244968354702, -0.06996521353721619, 0.020277395844459534, -0.001979805761948228, -0.0992562398314476, -0.00868368148803711, 0.03783096745610237, 0.09322161227464676, 0.06013037636876106, -0.029150374233722687, 0.15275810658931732, -0.027628889307379723, 0.03666602075099945, 0.10585808753967285, -0.1136285811662674, -0.2038419544696808, 0.030284954234957695, -0.0853172019124031, 0.009410283528268337, 0.03346232697367668, -0.026618717238307, -0.10290256142616272, -0.04762447252869606, 0.059808023273944855, -0.02198505401611328, -0.19508640468120575, 0.028826765716075897, 0.013897012919187546, 0.05572345480322838, -0.06585241109132767, -0.10641536116600037, 0.023462342098355293, -0.023571541532874107, 0.06127958372235298, 0.06522241979837418, -0.06034816801548004, 0.09910468012094498, 0.06860727071762085, -0.03500194475054741, 0.07586441934108734, -0.04338178411126137, -0.048857469111680984, -0.06748561561107635, -0.07441230118274689, 0.11142244935035706, 0.003128659911453724, -0.043547067791223526, 0.08584205061197281, 0.09359578788280487, -0.15527179837226868, -0.017374128103256226, -0.02343236468732357, -0.1786676049232483, -0.22959916293621063, -0.16713596880435944, -0.05326448380947113, 0.09719623625278473, 0.09992668032646179, 0.06422863155603409, -0.049274541437625885, 0.05137374624609947, 0.11148606985807419, -0.003263454418629408, -0.16279447078704834, -0.08373025059700012, 0.001084835734218359, -0.0009236506884917617, -0.019874390214681625, -0.15062421560287476, -0.036462850868701935, 0.19335725903511047, 0.16187626123428345, 0.1786123514175415, 0.09420567750930786, 0.1745920032262802, -0.07588791102170944, -0.000644753105007112, 0.05762073025107384, 0.19644518196582794, 0.10529287904500961, 0.0032629554625600576, -0.01815919578075409, 0.008427039720118046, -0.03653086721897125, 0.007174239028245211, 0.1439743936061859, -0.11007136106491089, 0.025750886648893356, -0.14877425134181976, 0.07980761677026749, -0.08461376279592514, 0.10554532706737518, -0.21031969785690308, 0.09378381073474884, 0.06923478841781616, 0.16132669150829315, -0.1094416156411171, 0.10068139433860779, 0.017133736982941628, -0.021215438842773438, 0.08805859833955765, 0.022518757730722427, 0.06202957406640053, -0.1407829374074936, 0.04519926756620407, -0.012875880114734173, -0.021177085116505623, -0.0015849696937948465, 0.12552966177463531, -0.14751049876213074, 0.20503197610378265, 0.011342485435307026, -0.07214201241731644, -0.163430854678154, -0.08967962861061096, -0.018470389768481255, -0.012939675711095333, 0.14176885783672333, -0.024171778932213783, -0.034952227026224136, -0.06708241999149323, -0.06638199090957642, 0.010641933418810368, 0.031476814299821854, -0.061980314552783966, -0.13681986927986145, 0.037888478487730026, 0.022331569343805313, -0.006618144456297159, -0.08113651722669601, 0.012268753722310066, -0.10851139575242996, -0.03162160888314247, 0.038556408137083054, -0.06185684725642204, 0.024995990097522736, -0.01776711270213127, -0.08097558468580246, 0.16044624149799347, 0.018311547115445137, -0.054355472326278687, -0.09748397022485733, -0.013758189976215363, 0.2400931715965271, 0.038811132311820984, -0.009879167191684246, 0.01908065564930439, 0.03229748085141182, -0.0731394961476326, -0.16589771211147308, 0.13650251924991608, -0.08722944557666779, 0.12430010735988617, -0.0520063079893589, 0.07537568360567093, -0.04138360172510147, 0.03477171063423157, -0.019617687910795212, 0.009092126041650772, 0.012920452281832695, -0.07172145694494247, 0.11948377639055252, -0.0589488185942173, 0.10831910371780396, 0.2812178432941437, 0.06715065240859985, -0.02932552993297577, 0.15812629461288452, -0.047078657895326614, 0.20130687952041626, 0.10764648020267487, -0.08123379945755005, 0.16163204610347748, 0.15577180683612823, -0.006984805688261986, -0.2395055890083313, 0.06308268755674362, -0.18975985050201416, -0.045464444905519485, 0.03981694579124451, -0.2712242603302002, 0.1178278923034668, 0.20681674778461456, -0.0372270792722702, 0.2563413381576538, -0.23083145916461945, -0.024785809218883514, 0.18178731203079224, -0.07076805084943771, 0.4493359327316284, -0.11172027885913849, -0.03590232506394386, -0.20099429786205292, 0.029377460479736328, 0.24366414546966553, -0.1325749158859253, 0.012473278678953648, 0.006412941496819258, 0.039302729070186615, -0.0145904291421175, -0.04750669375061989, 0.19247396290302277, 0.056146614253520966, 0.14092636108398438, -0.034870702773332596, -0.05873151496052742, 0.17433226108551025, -0.03185684606432915, 0.07201815396547318, 0.012989887036383152, -0.034485988318920135, -0.15326061844825745, -0.05510943755507469, 0.07189911603927612, 0.03994638845324516, 0.07844668626785278, -0.11290585249662399, -0.0733298659324646, 0.015535526908934116, -0.12711690366268158, -0.05179312452673912, 0.1481829732656479, 0.06869616359472275, 0.0021498247515410185, -0.054586391896009445, 0.13065442442893982, -0.1111282929778099, -0.04985130578279495, -0.001956561114639044, -0.07333621382713318, 0.08996183425188065, -0.1987840086221695, 0.06938839703798294, 0.13483837246894836, 0.015839966014027596, 0.0012188287219032645, 0.07294653356075287, -0.017327675595879555, 0.023001257330179214, 0.12646007537841797, -0.036872509866952896, -0.12825797498226166, 0.09751410037279129, -0.13337337970733643, 0.03740357607603073, 0.08286567032337189, 0.03752637654542923, 0.058731693774461746, -0.01214255578815937, -0.026534438133239746, 0.03489600867033005, -0.05061247572302818, 0.08156467974185944, 0.015182220377027988, 0.04689459875226021, -0.1998475342988968, 0.24136067926883698, 0.03950086236000061, -0.12204049527645111, -0.012016828171908855, 0.012222842313349247, -0.05193500965833664, -0.09073466062545776, -0.011705365031957626, 0.1425786316394806, -0.0796063020825386, -0.11072635650634766, 0.04066340997815132, -0.07711636275053024, 0.020681751891970634, 0.10504598915576935, 0.10000719875097275, 0.09129513800144196, -0.0047804065980017185, -0.07349256426095963, -0.03425944969058037, -0.06228993460536003, -0.07584415376186371, 0.004342732019722462, -0.0851200744509697, -0.16149739921092987, -0.05957522988319397, 0.09894265234470367, -0.07805579155683517, -0.010683651082217693, -0.0727863684296608, 0.054943766444921494, -0.3062179684638977, -0.01888119801878929, 0.033839911222457886, 0.006166946142911911, 0.00044874404557049274, 0.056196197867393494, -0.005457303021103144, -0.06368085741996765, -0.08104372024536133, 0.09130019694566727, 0.04619752988219261, 0.05095883086323738, -0.07171503454446793, -0.0110714016482234, 0.014803500846028328, 0.023111773654818535, 0.16306817531585693, 0.09732610732316971, 0.010785513557493687, 0.0003661358787212521, -0.019736170768737793, -0.1626349240541458, 0.07651594281196594, 0.06318292766809464, 0.08090624958276749, 0.006617310922592878, 0.01797364093363285, 0.10183048248291016, -0.01680617593228817, 0.03165293112397194, -0.1300509124994278, -0.07743927091360092, 0.04809349402785301, -0.10548276454210281, -0.029916910454630852, 0.06399554759263992, -0.13341747224330902, 0.2254336029291153, 0.07710601389408112, -0.05043065920472145, 0.09997182339429855, 0.020362623035907745, -0.007540007587522268, -0.06377822905778885, -0.06743288040161133, -0.11848064512014389, -0.08603587001562119, 0.13197529315948486, 0.05875592306256294, -0.043767236173152924, 0.6109007596969604, -0.020506134256720543, -0.1057480201125145, -0.026090331375598907, 0.065957210958004, 0.0002992696827277541, 0.031762633472681046, 0.3695676624774933, 0.11141439527273178, -0.02899397537112236, -0.0785597711801529, 0.0942004844546318, 0.04790632799267769, 0.2333107739686966, 0.12779849767684937, 0.13970722258090973, 0.09272179007530212, -0.04550787806510925, 0.024913737550377846, -0.14588886499404907, 0.040227845311164856, 0.04102475568652153, 0.11970783025026321, -0.011932835914194584, 0.08113172650337219, -0.1566077619791031, 0.05720905587077141, 0.009533668868243694, 0.005191663280129433, -0.08436164259910583, -0.00030950401560403407, -0.0668298751115799, -0.02643303945660591, -0.05721946060657501, -0.03892829641699791, 0.01866619847714901, -0.059036288410425186, -0.06252186000347137, 0.2740411162376404, 0.09432241320610046, 0.00966727640479803, 0.004569045267999172, -0.08859437704086304, 0.04991304874420166, 0.059147074818611145, 0.01701994240283966, -0.07084666937589645, 0.05936014652252197, -0.09558463096618652, -0.026933996006846428, -0.0798715278506279, -0.06027209386229515, 0.009671984240412712, 0.01319451816380024, 0.020940732210874557, -0.10460109263658524, -0.008593867532908916, -0.06804259866476059, 0.056010883301496506, -0.11595039069652557, 0.12613999843597412, 0.004880699794739485, -0.062456630170345306, 0.044359780848026276, 0.05797439068555832, 0.007651501335203648, -0.006997507996857166, 0.0042615956626832485, 0.022654935717582703, 0.0000307802802126389, 0.10224223136901855, -0.0024824629072099924, -0.05798796936869621, -0.06484171748161316, -0.01015761960297823, 0.3995964527130127, -0.0783245638012886, -0.006111240945756435, 0.03003174252808094, 0.038070082664489746, 0.01165059581398964, 0.1292693316936493, 0.007542908191680908, 0.15974563360214233, -0.0051803491078317165, -0.029464244842529297, 0.045126765966415405, -0.014584150165319443, -0.043595004826784134, 0.07592051476240158, 0.09383567422628403, -0.023328956216573715, -0.07179499417543411, 0.1710023581981659, -0.13634364306926727, 0.04650450497865677, 0.05828180909156799, -0.13643284142017365, -0.13653722405433655, 0.003402132773771882, -0.004639854189008474, 0.012501750141382217, -0.013940807431936264, -0.07969697564840317, -0.04955480620265007, -0.11446348577737808, -0.026980245485901833, -0.3656478524208069, -0.15920588374137878, -0.027334393933415413, 0.1864689737558365, 0.04509597644209862, -0.0033111516386270523, 0.108725406229496, -0.004986334592103958, -0.015561480075120926, -0.095493845641613, 0.022912584245204926, 0.02076265774667263, 0.10723287612199783, -0.02559300698339939, -0.04915839806199074, -0.10430855304002762, -0.06637103855609894, 0.0636516660451889, -0.03167470172047615, -0.059866975992918015, 0.13440833985805511, -0.06229124963283539, -0.05285293236374855, -0.045389048755168915, -0.06765369325876236, 0.08622516691684723, 0.005260772071778774, -0.019795885309576988, 0.0014724538195878267, 0.006805577781051397, 0.09712338447570801, 0.056134797632694244, -0.08690811693668365, -0.13213175535202026, -0.014651777222752571, -0.06354088336229324, 0.05926567688584328, -0.024804728105664253, -0.058747392147779465, 0.07703075557947159, -0.08294600248336792, 0.042947668582201004, -0.005253797397017479, -0.013044390827417374, 0.07443676143884659, 0.06364315003156662, -0.03164727985858917, -0.03824717551469803, 0.013740146532654762, -0.014768971130251884, -0.07361315190792084, -0.1172785758972168 ]
106b0f62240c21560a00d7207696bb08a642cf8b
# Dataset Card for "massive_qa-de" [More Information needed](https://github.com/huggingface/datasets/blob/main/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
fathyshalab/massive_qa-de
[ "region:us" ]
2023-02-08T11:26:51+00:00
{"dataset_info": {"features": [{"name": "id", "dtype": "string"}, {"name": "label", "dtype": "int64"}, {"name": "text", "dtype": "string"}], "splits": [{"name": "train", "num_bytes": 67774, "num_examples": 1183}, {"name": "validation", "num_bytes": 12266, "num_examples": 214}, {"name": "test", "num_bytes": 16558, "num_examples": 288}], "download_size": 57078, "dataset_size": 96598}}
2023-02-08T12:32:56+00:00
[]
[]
TAGS #region-us
# Dataset Card for "massive_qa-de" More Information needed
[ "# Dataset Card for \"massive_qa-de\"\n\nMore Information needed" ]
[ "TAGS\n#region-us \n", "# Dataset Card for \"massive_qa-de\"\n\nMore Information needed" ]
[ 6, 16 ]
[ "passage: TAGS\n#region-us \n# Dataset Card for \"massive_qa-de\"\n\nMore Information needed" ]
[ -0.11844095587730408, 0.07510332763195038, -0.002119851764291525, -0.004915577359497547, 0.036263518035411835, 0.10981731861829758, -0.029772428795695305, 0.0847698450088501, 0.1437096893787384, -0.020012110471725464, 0.12813790142536163, -0.018745582550764084, 0.04984460398554802, 0.2383686602115631, -0.013505573384463787, -0.0350983627140522, 0.024419225752353668, 0.03197352960705757, -0.25480160117149353, 0.001245814491994679, 0.07059047371149063, -0.06352440267801285, 0.06583671271800995, -0.13139739632606506, -0.11260998994112015, 0.09826083481311798, -0.04123980551958084, -0.07806086540222168, 0.09349377453327179, -0.02862391620874405, 0.08432327955961227, 0.045786626636981964, 0.007353194057941437, -0.14120982587337494, 0.027041319757699966, -0.010922268964350224, -0.08673267811536789, 0.02585870958864689, 0.0014662346802651882, -0.015251373872160912, -0.18175795674324036, -0.08773352205753326, -0.06484436988830566, 0.006362972315400839, -0.06343663483858109, -0.3098087012767792, -0.03283626213669777, -0.030184637755155563, -0.0042095850221812725, -0.05672309920191765, 0.08372580260038376, 0.05096166953444481, -0.1603546440601349, 0.005357446614652872, -0.012750641442835331, -0.08420094102621078, 0.061766769737005234, 0.13435035943984985, -0.03594096750020981, 0.17693926393985748, 0.0349440798163414, 0.06529676169157028, 0.1388968527317047, -0.06422900408506393, -0.05280204117298126, -0.03204274922609329, 0.004485469777137041, 0.09235673397779465, 0.0008045611320994794, -0.030497321859002113, 0.2540523409843445, 0.0002409172448096797, 0.011669112369418144, 0.07278616726398468, -0.04476436227560043, -0.06031101569533348, 0.014508883468806744, 0.030746055766940117, 0.06361544877290726, 0.01575719378888607, 0.04470944404602051, 0.04401054605841637, -0.06948889046907425, -0.14842136204242706, -0.23143795132637024, -0.01655520126223564, -0.04938261955976486, 0.12542511522769928, -0.20868954062461853, -0.009947968646883965, -0.24250969290733337, -0.041436176747083664, -0.021876882761716843, -0.13078181445598602, -0.044088978320360184, -0.001690009725280106, -0.004312967881560326, 0.09167157858610153, 0.18619951605796814, -0.021159622818231583, 0.0747162401676178, 0.02364831045269966, -0.08023451268672943, 0.07292384654283524, 0.152621328830719, -0.02201945334672928, -0.09738373756408691, -0.14220993220806122, 0.018813153728842735, -0.0777362510561943, -0.06675319373607635, -0.05765938758850098, -0.10445397347211838, -0.048926837742328644, -0.11955852061510086, 0.12272295355796814, -0.07116429507732391, -0.12180019170045853, 0.009487464092671871, 0.0075289467349648476, 0.13553541898727417, -0.0653565302491188, -0.02581651136279106, 0.03281275928020477, -0.0599709190428257, 0.05703156441450119, -0.16823197901248932, -0.008656893856823444, 0.11143293976783752, 0.007784306071698666, -0.048527754843235016, -0.07802609354257584, -0.018456319347023964, -0.008499614894390106, 0.06615794450044632, -0.1400168091058731, 0.09021555632352829, -0.11430530995130539, -0.1869976669549942, 0.10121158510446548, -0.009549378417432308, -0.051999274641275406, 0.09658502042293549, 0.08230371028184891, 0.06473244726657867, -0.038168780505657196, -0.08634908497333527, 0.20328544080257416, -0.10855977237224579, 0.07849790155887604, 0.05144661292433739, 0.1076231524348259, -0.26623982191085815, 0.03729017823934555, -0.05034857988357544, 0.036205973476171494, -0.008584038354456425, 0.09579702466726303, -0.11028352379798889, 0.02339394949376583, -0.09346204251050949, -0.03246362879872322, -0.05742541328072548, 0.0030202472116798162, -0.01754460297524929, 0.048210229724645615, -0.3375324010848999, -0.05581008642911911, 0.17516151070594788, -0.07986057549715042, -0.19978997111320496, 0.07794508337974548, -0.0354536809027195, 0.02413606271147728, 0.04751620069146156, 0.25868067145347595, -0.004268018063157797, 0.05381854251027107, -0.016541561111807823, 0.18971148133277893, -0.08978590369224548, -0.2970370650291443, 0.13721132278442383, -0.006108427420258522, -0.12727586925029755, 0.010018983855843544, 0.12475740909576416, 0.025856247171759605, -0.028528006747364998, -0.09397686272859573, 0.0018787143053486943, -0.18906933069229126, 0.006106994114816189, -0.04165630042552948, 0.05234420299530029, 0.021895190700888634, 0.15952488780021667, -0.024771062657237053, 0.07863679528236389, 0.06974732130765915, -0.049503013491630554, -0.008647187612950802, 0.12991979718208313, -0.18206334114074707, 0.024569736793637276, -0.12515750527381897, -0.014487220905721188, 0.012768268585205078, -0.10128697752952576, 0.004475052934139967, 0.09322632104158401, 0.07518655806779861, -0.04046985134482384, 0.0012788239400833845, 0.10304569453001022, 0.0888199433684349, 0.05853143706917763, 0.004097057040780783, 0.038790684193372726, 0.0517335943877697, -0.08664166182279587, -0.0688452497124672, 0.019278980791568756, -0.07321784645318985, 0.10546703636646271, -0.03303879126906395, 0.013285065069794655, 0.08220097422599792, 0.018890205770730972, 0.039201147854328156, 0.004758031107485294, -0.014883444644510746, -0.016939079388976097, -0.0920868068933487, -0.14273467659950256, -0.020591141656041145, 0.02684798650443554, 0.4106224775314331, 0.10357396304607391, 0.06405597180128098, 0.06945737451314926, -0.08076299726963043, 0.05045253410935402, -0.004129423759877682, 0.0006794502260163426, 0.01269011851400137, -0.03327750414609909, -0.04993356764316559, 0.06199733167886734, -0.074137382209301, 0.042133111506700516, 0.0518944188952446, 0.08327749371528625, -0.06673787534236908, 0.05303413048386574, 0.17981940507888794, -0.2591171860694885, 0.11768783628940582, 0.29679715633392334, 0.09129022061824799, 0.10789544880390167, -0.0720858946442604, -0.11233018338680267, 0.018886275589466095, -0.08979438245296478, -0.0808827355504036, 0.21122385561466217, -0.03344245254993439, 0.03259408101439476, 0.08259917050600052, 0.032225918024778366, 0.07493854314088821, -0.026084771379828453, -0.11030778288841248, -0.040652282536029816, -0.008829810656607151, -0.32783228158950806, 0.015284200198948383, 0.029942966997623444, 0.11575670540332794, 0.08202816545963287, -0.03112649917602539, 0.1203528568148613, -0.029243409633636475, 0.03418544679880142, 0.1393282562494278, -0.11095304042100906, -0.20934589207172394, 0.08212585002183914, -0.06099281832575798, 0.02870776504278183, -0.03452223166823387, -0.0346788689494133, -0.21162422001361847, -0.02204357460141182, 0.05204341188073158, -0.06149420514702797, -0.11358659714460373, 0.044857271015644073, 0.008958907797932625, -0.005604701582342386, -0.006588906981050968, -0.09849958121776581, 0.023008478805422783, -0.05167321860790253, 0.041798267513513565, 0.07907482236623764, -0.09303271770477295, 0.13836662471294403, 0.06327391415834427, -0.05272264778614044, 0.09120214730501175, -0.04826575145125389, 0.08965544402599335, -0.07629809528589249, -0.03791266307234764, 0.14383724331855774, 0.04351600259542465, -0.017922673374414444, 0.10414353758096695, 0.07624895125627518, -0.11970555037260056, -0.0488024577498436, -0.010766873136162758, -0.18922708928585052, -0.1924559473991394, -0.12110873311758041, -0.023910939693450928, 0.0763285905122757, -0.03147386014461517, 0.08318738639354706, -0.09990803152322769, 0.03361307829618454, 0.1418648511171341, -0.02552684396505356, -0.19596225023269653, -0.10525926947593689, -0.08157647401094437, 0.017313070595264435, 0.009903689846396446, -0.17993460595607758, -0.0048928591422736645, 0.19295628368854523, 0.2872222065925598, 0.1414846032857895, 0.03648380562663078, 0.10299904644489288, -0.03345565125346184, 0.13229086995124817, 0.08859320729970932, 0.12920719385147095, 0.047002892941236496, -0.04260261356830597, -0.016691485419869423, 0.028471507132053375, -0.03492210805416107, 0.014449188485741615, 0.16690300405025482, -0.10736167430877686, 0.0026085232384502888, -0.06405853480100632, 0.07591653615236282, -0.1331983357667923, 0.047391779720783234, -0.11965550482273102, 0.08246485888957977, 0.053011205047369, 0.16364885866641998, -0.052253805100917816, 0.11517148464918137, 0.04770418256521225, -0.041373152285814285, 0.06131239980459213, 0.049391087144613266, 0.07326246052980423, -0.037508927285671234, 0.05641075223684311, -0.010318666696548462, -0.07772640138864517, -0.012236948125064373, 0.10722021013498306, -0.26048219203948975, 0.21392041444778442, 0.03248206898570061, -0.05644138157367706, -0.11549743264913559, -0.09218103438615799, 0.012594135478138924, 0.025553682819008827, 0.1360166221857071, -0.0007827338995411992, -0.0011140010319650173, -0.17653614282608032, -0.10367882251739502, 0.10033305734395981, 0.03267084062099457, 0.01803942583501339, -0.15150806307792664, 0.06109446659684181, 0.04023675620555878, -0.031879253685474396, -0.003403289942070842, -0.029468141496181488, -0.07414449751377106, -0.028732649981975555, 0.034112296998500824, -0.08299006521701813, 0.009140835143625736, 0.0020184756722301245, -0.14493955671787262, 0.04295390471816063, -0.06333106756210327, -0.05814674124121666, -0.06375643610954285, -0.05263451859354973, 0.151523157954216, -0.014090781100094318, -0.03634938970208168, 0.016243431717157364, -0.009236080572009087, -0.02434603124856949, -0.18472449481487274, 0.10358896851539612, -0.1037471741437912, 0.1174783706665039, -0.02906748838722706, 0.040156252682209015, -0.057135920971632004, 0.06098426133394241, -0.007548853754997253, -0.06075620651245117, -0.05869167670607567, -0.09246501326560974, 0.15257057547569275, -0.1491626799106598, 0.06470748782157898, 0.18361924588680267, 0.09005122631788254, 0.027817826718091965, 0.13458183407783508, -0.004549100063741207, 0.19546771049499512, 0.1363150179386139, -0.06598547101020813, 0.18305271863937378, 0.18248574435710907, 0.02644382044672966, -0.2671555280685425, 0.031827762722969055, -0.1576940268278122, -0.021723022684454918, -0.01232205331325531, -0.2216348946094513, 0.06600651144981384, 0.1809152066707611, -0.035734228789806366, 0.2093329131603241, -0.1929548680782318, -0.016021184623241425, 0.168138325214386, -0.06144159659743309, 0.442644864320755, -0.13993678987026215, -0.01733405888080597, -0.16434329748153687, -0.044882938265800476, 0.1457628309726715, -0.1970311999320984, 0.02746681310236454, -0.02932186797261238, 0.09475614130496979, -0.03931448608636856, -0.0531451515853405, 0.1954139918088913, 0.026650182902812958, 0.10152038186788559, -0.02634425275027752, -0.08526135981082916, 0.07437504082918167, -0.030585605651140213, 0.008047186769545078, -0.0384066142141819, 0.024604417383670807, -0.13404694199562073, -0.018369577825069427, 0.014974900521337986, 0.0076691219583153725, 0.06382636725902557, -0.10183033347129822, -0.06591606140136719, 0.02548331767320633, -0.08710461109876633, -0.04757650941610336, 0.0666923001408577, 0.005141898989677429, -0.015794571489095688, -0.007405278272926807, 0.11015672981739044, -0.10233831405639648, -0.000636175274848938, -0.03057767078280449, -0.08326028287410736, 0.13130518794059753, -0.27322134375572205, 0.0776442363858223, 0.1461341679096222, -0.012659971602261066, -0.015169883146882057, 0.07521180063486099, -0.0011144471354782581, 0.12082357704639435, 0.13298377394676208, -0.007714147679507732, -0.10767679661512375, 0.09198175370693207, -0.06208587437868118, 0.06364138424396515, 0.10894760489463806, -0.02193732000887394, 0.07051850855350494, -0.0034799634013324976, -0.02094459906220436, 0.026219431310892105, -0.08544480800628662, 0.08759375661611557, 0.0786123126745224, 0.052813608199357986, -0.19443684816360474, 0.2258831113576889, 0.00181890360545367, -0.08014678210020065, 0.01152708102017641, -0.05177085101604462, -0.0628201887011528, -0.05331793799996376, 0.004439608193933964, 0.18713906407356262, -0.121157206594944, -0.13822273910045624, 0.029917117208242416, -0.10965477675199509, 0.03384890779852867, 0.1605503410100937, 0.03848695755004883, 0.031052328646183014, 0.016929101198911667, -0.06559089571237564, -0.007993141189217567, -0.02114935591816902, -0.17547130584716797, 0.012878512032330036, -0.05245041847229004, -0.1684485226869583, -0.07015016674995422, 0.2430558204650879, -0.07954816520214081, -0.011697772890329361, -0.05417627468705177, 0.053513821214437485, -0.4280690550804138, -0.010219619609415531, 0.08538918942213058, 0.028295181691646576, -0.04593467712402344, 0.0419207438826561, -0.030937982723116875, -0.01907341554760933, -0.09578777849674225, 0.09977194666862488, 0.06043844670057297, 0.03766214847564697, -0.0756133496761322, -0.0003459258587099612, 0.003281851764768362, 0.10195044428110123, 0.16960753500461578, 0.08687850087881088, 0.025644484907388687, 0.06678535789251328, 0.03463292866945267, -0.12119165807962418, 0.021016541868448257, 0.07249526679515839, 0.11088941991329193, 0.07790835201740265, 0.03915461152791977, 0.045526377856731415, -0.14895027875900269, 0.03925386816263199, -0.05545271188020706, -0.0388680063188076, 0.059625864028930664, -0.12376945465803146, -0.013067036867141724, 0.040540438145399094, -0.07663547247648239, 0.16696618497371674, 0.06730939447879791, -0.10502893477678299, 0.07910295575857162, 0.0044527603313326836, -0.008646074682474136, -0.0810069739818573, -0.031018514186143875, -0.09904073178768158, -0.16625326871871948, 0.08439379185438156, 0.059098199009895325, -0.09374059736728668, 0.5602847933769226, -0.06353786587715149, -0.1005457192659378, -0.03753654286265373, 0.01907569169998169, 0.01353329885751009, -0.005063526798039675, 0.3504738211631775, 0.1146991103887558, -0.012186632491648197, -0.053212620317935944, 0.0852494165301323, -0.010170908644795418, 0.2465127408504486, 0.10133369266986847, 0.10282743722200394, 0.13359032571315765, -0.03610805422067642, 0.046475447714328766, -0.12151961773633957, 0.060910992324352264, -0.007396952249109745, 0.01809050515294075, -0.04470761865377426, 0.07839798927307129, -0.1665399968624115, 0.05375101417303085, 0.017237573862075806, -0.01897091418504715, -0.09899242222309113, -0.023297199979424477, -0.07916184514760971, 0.03645755350589752, -0.04353908449411392, -0.01931983232498169, 0.005911908578127623, -0.0699625313282013, -0.07258225232362747, 0.2302614003419876, 0.08016029000282288, -0.0006377891986630857, 0.10377451032400131, -0.09219543635845184, 0.06151530519127846, 0.059127695858478546, 0.014155823737382889, -0.04694646969437599, 0.0573914609849453, -0.06333884596824646, 0.048339761793613434, -0.10025013238191605, -0.05862579867243767, 0.017005395144224167, -0.0265592560172081, 0.0005978529225103557, -0.122556172311306, -0.012583180330693722, -0.06727002561092377, 0.08724357187747955, -0.06473740190267563, 0.12555496394634247, 0.01076318696141243, -0.022506238892674446, 0.05151920020580292, 0.013592521660029888, 0.04513198509812355, 0.06434550881385803, -0.012937407940626144, 0.027842151001095772, -0.06201422959566116, 0.11746545135974884, 0.003630021819844842, -0.05847948417067528, -0.09373654425144196, 0.09211002290248871, 0.287670373916626, -0.1984090507030487, -0.0026470012962818146, 0.03216617554426193, 0.05958690866827965, 0.008585973642766476, 0.17124660313129425, 0.06506463885307312, 0.15726859867572784, -0.07503681629896164, -0.07908357679843903, 0.02238336205482483, -0.011994106695055962, -0.021523484960198402, 0.1626725196838379, 0.06440773606300354, -0.03182150423526764, -0.10820797830820084, 0.10106261074542999, -0.1802348792552948, 0.12867116928100586, 0.006064985878765583, -0.12324570119380951, -0.14877015352249146, -0.01048378273844719, 0.022878896445035934, 0.03099975734949112, -0.07035272568464279, -0.09196833521127701, -0.004473695531487465, -0.08841215074062347, -0.02548081986606121, -0.24612070620059967, -0.1405339390039444, 0.007127157878130674, 0.21954822540283203, 0.0284945797175169, 0.015997646376490593, 0.11085256934165955, 0.010784139856696129, 0.027324000373482704, -0.06068358197808266, 0.0817604511976242, 0.049005407840013504, 0.022122055292129517, -0.08564862608909607, -0.05132189020514488, -0.0470799021422863, -0.0742901861667633, 0.09501369297504425, 0.04762567579746246, -0.04867836460471153, 0.09085119515657425, -0.05807747319340706, -0.04770650342106819, 0.028863169252872467, -0.048747047781944275, 0.10909596085548401, 0.014735521748661995, -0.017710160464048386, 0.020518161356449127, -0.035555217415094376, 0.1024957075715065, 0.0772429034113884, -0.07201974093914032, -0.11094166338443756, 0.043738167732954025, -0.02669437974691391, 0.06194872036576271, -0.009522915817797184, -0.09797107428312302, 0.07534435391426086, -0.10185830295085907, 0.07074372470378876, 0.031442828476428986, 0.03154294192790985, 0.11184200644493103, 0.07135959714651108, -0.021406713873147964, -0.0029936213977634907, 0.007055699825286865, -0.028116635978221893, -0.05511295795440674, -0.1107615977525711 ]
b8f19abc3131b6b7348969c1fb7cd9cb3cbf052d
# Dataset Card for "massive_cooking-de" [More Information needed](https://github.com/huggingface/datasets/blob/main/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
fathyshalab/massive_cooking-de
[ "region:us" ]
2023-02-08T11:27:08+00:00
{"dataset_info": {"features": [{"name": "id", "dtype": "string"}, {"name": "label", "dtype": "int64"}, {"name": "text", "dtype": "string"}], "splits": [{"name": "train", "num_bytes": 12678, "num_examples": 211}, {"name": "validation", "num_bytes": 2458, "num_examples": 43}, {"name": "test", "num_bytes": 4315, "num_examples": 72}], "download_size": 14356, "dataset_size": 19451}}
2023-02-08T12:33:16+00:00
[]
[]
TAGS #region-us
# Dataset Card for "massive_cooking-de" More Information needed
[ "# Dataset Card for \"massive_cooking-de\"\n\nMore Information needed" ]
[ "TAGS\n#region-us \n", "# Dataset Card for \"massive_cooking-de\"\n\nMore Information needed" ]
[ 6, 18 ]
[ "passage: TAGS\n#region-us \n# Dataset Card for \"massive_cooking-de\"\n\nMore Information needed" ]
[ -0.13894818723201752, 0.10487236827611923, 0.0015354143688455224, -0.023319602012634277, 0.05804958567023277, 0.14834244549274445, -0.029801076278090477, 0.08753084391355515, 0.1940075010061264, -0.031652215868234634, 0.09002697467803955, 0.06257417052984238, -0.019877927377820015, 0.26208263635635376, -0.009405001997947693, -0.02695455774664879, 0.047621987760066986, 0.0797613337635994, -0.22619856894016266, 0.05725709721446037, 0.055796824395656586, -0.07317620515823364, 0.09066014736890793, -0.12362255901098251, -0.20341841876506805, 0.08705519884824753, -0.02238122746348381, -0.0610482282936573, 0.11507894843816757, -0.10049215704202652, 0.12875819206237793, -0.03188714012503624, 0.0002695194270927459, -0.09340671449899673, 0.017641082406044006, -0.00034046758082695305, -0.036511700600385666, 0.04209234192967415, -0.015308758243918419, 0.025534024462103844, -0.10793968290090561, -0.07360822707414627, -0.01678008772432804, 0.06974225491285324, -0.07741769403219223, -0.29769283533096313, -0.013888472691178322, -0.10643162578344345, -0.09982168674468994, -0.049164481461048126, 0.11055361479520798, -0.07688073813915253, -0.19345617294311523, 0.005263849161565304, -0.005138562060892582, 0.0976451188325882, 0.014723584055900574, 0.12049321830272675, -0.017880847677588463, 0.10547064989805222, 0.037665583193302155, 0.07717970758676529, 0.16165173053741455, -0.011564290151000023, -0.13889554142951965, 0.014607919380068779, -0.01823047362267971, 0.02847355604171753, 0.07189925760030746, -0.04331033304333687, 0.319308340549469, -0.06932109594345093, -0.024008948355913162, 0.026835987344384193, -0.10774367302656174, -0.07715671509504318, -0.006733291316777468, -0.07244418561458588, 0.05639651045203209, 0.015577271580696106, 0.02066737413406372, 0.001409233664162457, -0.04932677000761032, -0.1791304647922516, -0.14883913099765778, 0.13008689880371094, -0.06327515095472336, 0.032276052981615067, -0.1683403104543686, 0.00005128128032083623, -0.13910138607025146, -0.04029986634850502, 0.014750322327017784, -0.0635719895362854, -0.028230637311935425, -0.003937665373086929, 0.03845860809087753, 0.09995467215776443, 0.15751402080059052, 0.06592117995023727, 0.05478372052311897, 0.001964023569598794, -0.09496372193098068, -0.00589727284386754, 0.1544562727212906, -0.06806643307209015, -0.006785189267247915, -0.14587052166461945, -0.07464345544576645, -0.1435611993074417, -0.06909377872943878, -0.092746801674366, -0.054758816957473755, -0.07192488014698029, -0.031092358753085136, 0.0704873576760292, -0.02618776075541973, -0.17749063670635223, -0.06730695813894272, -0.016634248197078705, 0.26267796754837036, -0.03590767830610275, -0.0017706009093672037, 0.02713887207210064, -0.04204019531607628, 0.1529485285282135, -0.1551823765039444, 0.014212274923920631, 0.1109730526804924, 0.07945113629102707, -0.10249726474285126, -0.13085129857063293, -0.06313671916723251, 0.018886420875787735, 0.07461085170507431, -0.23646779358386993, 0.07795046269893646, -0.03526557236909866, -0.2211478054523468, 0.022672375664114952, 0.04005875065922737, -0.08010692149400711, 0.05998260900378227, 0.05270839110016823, 0.09551097452640533, -0.028406621888279915, -0.02843654155731201, 0.23431849479675293, -0.08189480751752853, 0.09116490185260773, -0.012356845661997795, 0.02102140709757805, -0.1833706647157669, 0.069317527115345, -0.04626336321234703, 0.02115778438746929, -0.11055827140808105, 0.00023611528740730137, -0.03871247544884682, 0.04481589049100876, -0.10130928456783295, -0.006392055191099644, -0.11196470260620117, 0.005810690578073263, -0.08428283780813217, 0.12455308437347412, -0.32046040892601013, -0.00044931258889846504, 0.10133446753025055, -0.10897840559482574, -0.10683369636535645, 0.08861501514911652, -0.028071658685803413, 0.12471766769886017, 0.12907859683036804, 0.2005615234375, -0.01217906828969717, 0.0711008831858635, 0.10967277735471725, 0.18445546925067902, -0.029915299266576767, -0.2598343789577484, 0.09042418003082275, -0.06003323569893837, -0.24953341484069824, 0.009111873805522919, 0.15031982958316803, -0.028232773765921593, -0.037412118166685104, -0.08161771297454834, 0.006148205138742924, -0.14177283644676208, 0.09441913664340973, -0.05829872563481331, 0.03807142376899719, 0.008681880310177803, 0.13824161887168884, 0.0360080823302269, 0.06487462669610977, 0.036017898470163345, -0.03161874786019325, 0.0774904116988182, 0.07966576516628265, -0.09842053800821304, -0.01624458283185959, -0.10601881891489029, -0.04127182438969612, 0.018857164308428764, 0.002763534663245082, -0.04916170984506607, 0.09906522929668427, 0.07043410837650299, -0.02008117362856865, 0.06816854327917099, 0.08520270884037018, 0.09489371627569199, 0.09704525023698807, -0.024604422971606255, 0.03419121727347374, -0.006370487157255411, -0.07836001366376877, -0.03918592259287834, -0.013096041977405548, -0.06838374584913254, 0.09401174634695053, 0.007895520888268948, 0.010394175536930561, -0.013371857814490795, -0.04263477772474289, 0.003715499769896269, 0.009747040458023548, 0.022938726469874382, -0.051087282598018646, -0.11865638196468353, -0.12013638764619827, 0.02682381309568882, 0.04959828779101372, 0.36780601739883423, 0.05208384618163109, 0.022911056876182556, 0.04593568667769432, -0.09280651807785034, 0.05228571221232414, -0.034779008477926254, -0.08360118418931961, -0.014532799832522869, -0.12110824882984161, -0.032890450209379196, 0.02553878165781498, -0.021011648699641228, 0.055608827620744705, 0.05133664235472679, 0.10325360298156738, -0.07025165855884552, 0.03554829955101013, 0.08479678630828857, -0.17026792466640472, 0.09416959434747696, 0.251878559589386, 0.20418517291545868, 0.05642051249742508, 0.011011183261871338, -0.06386934965848923, -0.001812485745176673, -0.051321856677532196, -0.12529060244560242, 0.17736013233661652, -0.13428173959255219, 0.1118386909365654, 0.04200228676199913, 0.08085780590772629, 0.10152875632047653, -0.039901409298181534, -0.04110949859023094, 0.026155157014727592, -0.03969934955239296, -0.16590218245983124, -0.02917778119444847, 0.018860774114727974, 0.03174683079123497, 0.05727764591574669, -0.015649234876036644, 0.14535722136497498, -0.005544590763747692, 0.09616334736347198, 0.15263612568378448, -0.14179985225200653, -0.11870434135198593, 0.027291668578982353, -0.1057315245270729, 0.07159370929002762, 0.010986985638737679, -0.030247222632169724, -0.15547801554203033, -0.09781982749700546, 0.07523132860660553, -0.12919624149799347, -0.14330565929412842, -0.005740771535784006, -0.09230966120958328, -0.010047928430140018, -0.07513130456209183, -0.11179069429636002, -0.0007549082511104643, -0.013138234615325928, 0.06866159290075302, 0.05215364694595337, -0.0723048597574234, 0.12696895003318787, 0.012997938320040703, 0.013922838494181633, 0.05165516585111618, 0.005428378004580736, -0.035184912383556366, -0.0645555704832077, -0.05663678050041199, 0.1627310961484909, 0.055305805057287216, -0.009875127114355564, 0.04878870025277138, 0.11898704618215561, -0.12496305257081985, -0.04285776615142822, -0.02691572904586792, -0.16385285556316376, -0.18773408234119415, -0.1447460949420929, -0.04092242941260338, 0.0329844132065773, 0.08891480416059494, 0.08741118013858795, -0.03776448592543602, 0.03511323407292366, 0.09452955424785614, 0.030471807345747948, -0.14246807992458344, -0.1339820921421051, 0.0006246279226616025, -0.027950197458267212, -0.05628214031457901, -0.10730227082967758, 0.011937077157199383, 0.2135818898677826, 0.2539152503013611, 0.15087652206420898, 0.13461653888225555, 0.22683613002300262, 0.018853304907679558, 0.0317944698035717, 0.0363762192428112, 0.162672758102417, 0.020308183506131172, 0.011207017116248608, -0.07357947528362274, 0.0018952201353386045, -0.0711301937699318, -0.0274860467761755, 0.06415706127882004, -0.18319733440876007, 0.015787644311785698, -0.07017143815755844, 0.05092136189341545, -0.10942240059375763, 0.010161950252950191, -0.17157793045043945, 0.11385578662157059, 0.0850767269730568, 0.10848058760166168, -0.12056059390306473, 0.07949061691761017, 0.013554533012211323, -0.03879207745194435, -0.001855571405030787, 0.03620452806353569, 0.07422958314418793, -0.06437524408102036, 0.038121018558740616, 0.04419437423348427, -0.019925232976675034, 0.012945465743541718, 0.1352219581604004, -0.2238227277994156, 0.19163015484809875, 0.020881852135062218, -0.05061995983123779, -0.2210087776184082, -0.09250593185424805, -0.07334162294864655, -0.008505727164447308, 0.14442498981952667, 0.02112371288239956, -0.06843912601470947, -0.1383213847875595, -0.13677653670310974, 0.07931629568338394, 0.028318267315626144, -0.00920192338526249, -0.22403284907341003, 0.03644934296607971, 0.03967638686299324, 0.0012810698244720697, -0.12803113460540771, -0.11248450726270676, -0.07064802199602127, -0.06193259730935097, 0.021866990253329277, -0.04065544158220291, 0.013939673081040382, 0.009728528559207916, 0.004764894489198923, 0.1289953738451004, -0.00021440695854835212, -0.0018543334444984794, -0.14223037660121918, -0.05168893188238144, 0.1565069854259491, 0.018119437620043755, -0.003873839508742094, 0.0062058004550635815, 0.01560401264578104, -0.0724644884467125, -0.13576258718967438, 0.18571604788303375, -0.06460856646299362, 0.061178822070360184, -0.01804669201374054, -0.030188078060746193, 0.09643436223268509, 0.024961862713098526, 0.0069997976534068584, 0.016698066145181656, -0.07901687175035477, -0.0741039514541626, -0.012310243211686611, -0.026520999148488045, 0.10841640084981918, 0.28843531012535095, 0.010713447816669941, 0.022566471248865128, 0.18801458179950714, 0.033593837171792984, 0.12128683179616928, 0.08459322899580002, -0.013122801668941975, 0.21755997836589813, 0.12898439168930054, -0.012695600278675556, -0.22076289355754852, 0.018727362155914307, -0.23289868235588074, -0.010316726751625538, -0.02355968952178955, -0.2591450810432434, 0.2687617838382721, 0.2546813488006592, -0.0454750582575798, 0.2709292471408844, -0.23515532910823822, -0.08367408812046051, 0.1113734096288681, -0.008813478983938694, 0.49805885553359985, 0.0020604771561920643, -0.03518290817737579, -0.20801475644111633, -0.02529829367995262, 0.14058367908000946, -0.17999014258384705, 0.006171165965497494, -0.02925325743854046, 0.04432407394051552, -0.05130502209067345, -0.07487297058105469, 0.160671204328537, 0.1334550678730011, 0.12240660190582275, -0.005964674986898899, -0.07792728394269943, 0.06262220442295074, 0.013441707007586956, 0.030990201979875565, -0.0654243677854538, -0.028484953567385674, -0.131439670920372, -0.03125566244125366, 0.03251191973686218, 0.07486682385206223, 0.003991289064288139, -0.08563755452632904, -0.008594944141805172, 0.05986712500452995, -0.12105046212673187, -0.03509325534105301, 0.07354646921157837, 0.06527356058359146, 0.09433143585920334, -0.02990405447781086, 0.10305038839578629, -0.14580436050891876, 0.022132445126771927, -0.03320575878024101, -0.05693038925528526, 0.07405849546194077, -0.16067425906658173, 0.06995083391666412, 0.09146402776241302, 0.008907527662813663, 0.012836462818086147, 0.05469634383916855, 0.010451408103108406, 0.010280391201376915, 0.08266512304544449, -0.06047501787543297, -0.009770368225872517, 0.13728035986423492, -0.12760329246520996, 0.025737183168530464, 0.0305494237691164, 0.04164412245154381, 0.08337586373090744, 0.0037597056943923235, -0.031376779079437256, 0.0830523818731308, -0.10493497550487518, 0.1315760761499405, 0.07024361193180084, 0.033259473741054535, -0.17926451563835144, 0.1868259161710739, 0.06401677429676056, -0.16518926620483398, -0.0003231181181035936, -0.03691248968243599, -0.05398222431540489, -0.08022785186767578, 0.042874839156866074, 0.20784370601177216, -0.11181200295686722, -0.13906827569007874, 0.00016948847041931003, -0.07553458213806152, 0.037571925669908524, 0.018508659675717354, 0.13420872390270233, 0.12818500399589539, -0.05533164367079735, -0.05371798947453499, -0.004848009906709194, -0.033832382410764694, -0.07742509990930557, 0.08418150246143341, -0.022378960624337196, -0.169180229306221, -0.005982874892652035, 0.152581587433815, -0.07874128967523575, -0.003912614192813635, -0.0552179217338562, 0.04578373208642006, -0.2797296345233917, -0.0028791693039238453, 0.05359033867716789, 0.015797823667526245, -0.06160938739776611, 0.047606851905584335, 0.0033583331387490034, -0.03795396536588669, -0.06796366721391678, 0.12204881757497787, 0.06066238507628441, 0.017149722203612328, -0.13125517964363098, 0.01498471200466156, 0.07553263753652573, 0.05971115827560425, 0.07395480573177338, 0.06431470066308975, 0.025977399200201035, -0.011295540258288383, 0.0066462671384215355, -0.1251663863658905, 0.025308528915047646, 0.04207601025700569, 0.10518379509449005, 0.005422038491815329, 0.0061352006159722805, 0.08842957019805908, -0.006466038525104523, 0.04109390452504158, -0.00598473334684968, -0.10224593430757523, 0.05636027827858925, -0.11735781282186508, -0.11231732368469238, -0.011132250539958477, -0.10885468870401382, 0.1728781908750534, -0.007913989014923573, -0.05026344209909439, 0.1067063957452774, -0.017297780141234398, 0.03241375833749771, -0.05359812453389168, -0.04481440410017967, -0.11799757927656174, -0.0996253490447998, 0.07675091177225113, 0.03590733930468559, -0.025428785011172295, 0.5640081167221069, -0.02340671420097351, -0.06184075400233269, 0.012006431818008423, -0.011145942844450474, -0.04657956585288048, -0.029451658949255943, 0.325225293636322, 0.08290665596723557, 0.02565665729343891, 0.013413521461188793, 0.10975347459316254, 0.008400232531130314, 0.1866474449634552, 0.16394342482089996, 0.18926599621772766, 0.03425959125161171, -0.07320310920476913, 0.04616313800215721, -0.10505526512861252, -0.05428051948547363, -0.005307371728122234, -0.03751763701438904, -0.019894858822226524, 0.0600484274327755, -0.14619193971157074, -0.07611584663391113, -0.08346422016620636, -0.04092632606625557, -0.026301907375454903, -0.020511355251073837, -0.1011320948600769, -0.004844058770686388, -0.04855720326304436, -0.04560760036110878, 0.01093291211873293, -0.047782886773347855, -0.0318894200026989, 0.22768272459506989, 0.05524318292737007, 0.04571858420968056, 0.1829676479101181, -0.09194193035364151, 0.09048881381750107, 0.033193930983543396, 0.021016886457800865, -0.019055504351854324, 0.0002862768596969545, -0.15531179308891296, -0.059872306883335114, 0.014141996391117573, -0.014446204528212547, -0.024755770340561867, 0.0048819417133927345, -0.011650978587567806, -0.04591768980026245, -0.03504734858870506, -0.11257890611886978, 0.026698488742113113, -0.09106000512838364, 0.047654230147600174, 0.01634494587779045, -0.02402535080909729, 0.04155048355460167, 0.003300367621704936, 0.015167214907705784, 0.004118588287383318, 0.05415315553545952, 0.06934893876314163, -0.011501139961183071, 0.03542819991707802, 0.007062099874019623, -0.012934007681906223, -0.02899353578686714, -0.003529507201164961, 0.34421560168266296, -0.1451444923877716, -0.025957005098462105, 0.047685809433460236, 0.034758515655994415, 0.07536108046770096, 0.1598457545042038, 0.020423008129000664, 0.08939200639724731, -0.04482518881559372, -0.0763230249285698, 0.07891567796468735, -0.026415478438138962, -0.1033051535487175, 0.10905305296182632, 0.06462910026311874, -0.06443584710359573, -0.08176635205745697, 0.19666752219200134, -0.09156603366136551, 0.058086808770895004, 0.019291626289486885, -0.027961639687418938, -0.13751910626888275, -0.04547471925616264, 0.07063218206167221, 0.01247713528573513, 0.0022818983998149633, -0.10248026996850967, -0.03693843260407448, -0.03480665013194084, 0.0031306552700698376, -0.32672467827796936, -0.09464465826749802, 0.03914511948823929, 0.19216947257518768, 0.09990210086107254, 0.045894984155893326, 0.02939082682132721, 0.0372295007109642, 0.024382038041949272, -0.07815835624933243, -0.03308776766061783, 0.006684164982289076, 0.02187398634850979, -0.051041390746831894, -0.08049326390028, -0.07399041950702667, -0.1338643878698349, 0.05399812385439873, -0.09622715413570404, -0.048298824578523636, 0.24444934725761414, -0.028374450281262398, -0.06970840692520142, -0.06248107925057411, -0.06398466974496841, 0.1415070742368698, 0.05150357261300087, 0.01623648591339588, -0.021820828318595886, -0.028298931196331978, 0.10992687195539474, 0.04681822657585144, -0.10885412245988846, -0.13869795203208923, -0.062314629554748535, -0.0734410211443901, 0.1207030788064003, -0.027574222534894943, -0.0955578088760376, 0.06313885748386383, -0.13087601959705353, 0.04665569216012955, 0.02291426993906498, -0.0013921643840149045, 0.03274757042527199, 0.03267970308661461, 0.01744070276618004, -0.02727925218641758, -0.009931319393217564, 0.02358156070113182, -0.13622181117534637, -0.09023807942867279 ]
864e74ea05a3a8c611d7a1dd6b0215d836224759
# Dataset Card for "massive_takeaway-de" [More Information needed](https://github.com/huggingface/datasets/blob/main/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
fathyshalab/massive_takeaway-de
[ "region:us" ]
2023-02-08T11:27:26+00:00
{"dataset_info": {"features": [{"name": "id", "dtype": "string"}, {"name": "label", "dtype": "int64"}, {"name": "text", "dtype": "string"}], "splits": [{"name": "train", "num_bytes": 16746, "num_examples": 257}, {"name": "validation", "num_bytes": 2767, "num_examples": 44}, {"name": "test", "num_bytes": 3656, "num_examples": 57}], "download_size": 16262, "dataset_size": 23169}}
2023-02-08T12:33:37+00:00
[]
[]
TAGS #region-us
# Dataset Card for "massive_takeaway-de" More Information needed
[ "# Dataset Card for \"massive_takeaway-de\"\n\nMore Information needed" ]
[ "TAGS\n#region-us \n", "# Dataset Card for \"massive_takeaway-de\"\n\nMore Information needed" ]
[ 6, 17 ]
[ "passage: TAGS\n#region-us \n# Dataset Card for \"massive_takeaway-de\"\n\nMore Information needed" ]
[ -0.10251739621162415, 0.11192157864570618, -0.0024220722261816263, 0.009314932860434055, 0.07356201112270355, 0.1231016218662262, -0.022911403328180313, 0.07946974784135818, 0.08444967120885849, -0.03028997592628002, 0.13995672762393951, 0.06715496629476547, 0.010914118029177189, 0.2749483287334442, -0.04575720429420471, -0.0770055428147316, 0.02898825891315937, 0.018381446599960327, -0.23626835644245148, -0.007382539566606283, 0.05500735342502594, -0.08133874833583832, 0.049142953008413315, -0.14841896295547485, -0.11541911959648132, 0.07557536661624908, -0.052337974309921265, -0.04487587884068489, 0.0689895749092102, -0.07778863608837128, 0.10226111859083176, 0.0030891846399754286, 0.013463630340993404, -0.0855586975812912, 0.007394535467028618, -0.020079445093870163, -0.023757031187415123, 0.050457075238227844, 0.0054062362760305405, -0.0577428862452507, -0.13854610919952393, -0.02150660939514637, 0.004232935141772032, 0.01476382091641426, -0.0607219934463501, -0.2893308103084564, -0.09322112798690796, -0.06549099832773209, 0.0115395188331604, -0.05393439903855324, 0.0783705860376358, 0.049537625163793564, -0.16614599525928497, -0.0028464270289987326, -0.006580295506864786, 0.007211017422378063, 0.0693150982260704, 0.1345382034778595, -0.05876503139734268, 0.11550809442996979, 0.04707125201821327, 0.05305800586938858, 0.14855346083641052, -0.027089277282357216, -0.03099297173321247, 0.021584080532193184, -0.05631747096776962, 0.09966052323579788, -0.03207159787416458, -0.029651354998350143, 0.32181477546691895, 0.011500583961606026, 0.025402216240763664, -0.05524241924285889, -0.04594572260975838, -0.0654069036245346, 0.0006085957284085453, 0.003467036411166191, 0.08341009169816971, 0.015889380127191544, 0.02802705392241478, 0.006647302769124508, -0.09428243339061737, -0.10696716606616974, -0.18549063801765442, -0.04651064798235893, -0.07004792243242264, 0.15394200384616852, -0.1559402346611023, 0.013732844963669777, -0.15373311936855316, -0.029851045459508896, 0.025984909385442734, -0.10651473701000214, -0.03105265088379383, -0.03273160755634308, 0.0011719277827069163, 0.02743140421807766, 0.12378764897584915, 0.003330943873152137, 0.10576324164867401, -0.025114169344305992, -0.13633452355861664, 0.07752924412488937, 0.2053743302822113, -0.09190472960472107, -0.08992911130189896, -0.17371559143066406, -0.02267596870660782, -0.10622557997703552, -0.017291923984885216, -0.053371552377939224, -0.10661888122558594, 0.003890007734298706, -0.12326382100582123, 0.1155380830168724, -0.05112927407026291, -0.1316753476858139, -0.04625571519136429, -0.036475714296102524, 0.21896687150001526, -0.05752724036574364, 0.007438699249178171, 0.003155019599944353, -0.10706571489572525, 0.12488529086112976, -0.13563105463981628, -0.039915863424539566, 0.11390361934900284, 0.04261218011379242, -0.11207274347543716, -0.06820151209831238, -0.07268010824918747, -0.02918257564306259, 0.10520673543214798, -0.15820001065731049, 0.07521553337574005, -0.07260636240243912, -0.3174535930156708, 0.08023862540721893, 0.022882521152496338, -0.09147045016288757, 0.1115964949131012, 0.0007334153051488101, 0.08059962838888168, -0.034487560391426086, -0.08018217980861664, 0.20012809336185455, -0.11614947021007538, 0.05636788159608841, 0.0002911008195951581, 0.07480617612600327, -0.1862194985151291, 0.0306585431098938, -0.09759318083524704, -0.002216628286987543, -0.11089035123586655, 0.060037191957235336, -0.08543973416090012, 0.13860400021076202, -0.10016603767871857, -0.025402532890439034, -0.10034222155809402, 0.031669825315475464, -0.06325868517160416, 0.0723603293299675, -0.2797396183013916, -0.04302581027150154, 0.11248160153627396, -0.10932378470897675, -0.1439419388771057, 0.058363571763038635, -0.07112711668014526, 0.1323673129081726, 0.07269560545682907, 0.26682141423225403, -0.030392369255423546, 0.03990725055336952, 0.048805564641952515, 0.15064737200737, -0.18042157590389252, -0.3210269808769226, 0.0877966359257698, -0.05321488529443741, -0.12631332874298096, 0.026378344744443893, 0.15365158021450043, 0.05188725143671036, -0.04813329502940178, -0.05061101168394089, 0.029125360772013664, -0.20924217998981476, -0.007786429487168789, -0.03211488202214241, 0.05182019993662834, -0.044629186391830444, 0.14233306050300598, 0.10799331963062286, 0.0987737625837326, 0.052854351699352264, -0.052341897040605545, -0.018631719052791595, 0.08539655804634094, -0.2050117552280426, -0.009824949316680431, -0.11755600571632385, -0.002591088879853487, 0.013030780479311943, -0.04635925590991974, -0.013984388671815395, 0.16995719075202942, 0.08778060972690582, -0.0671750083565712, -0.011550428345799446, 0.11536625027656555, 0.1606169044971466, 0.05707240477204323, 0.028958020731806755, -0.004062893334776163, 0.04123399779200554, -0.07953767478466034, -0.0349886529147625, -0.03883101046085358, -0.05294344201683998, 0.0816565454006195, -0.013841290026903152, 0.03433770313858986, 0.010056262835860252, 0.005370286758989096, -0.004339354578405619, -0.025546969845891, -0.04344231262803078, -0.02322501130402088, -0.08949025720357895, -0.09595990926027298, 0.012970409356057644, -0.02664683572947979, 0.31554263830184937, 0.12066034227609634, 0.054627276957035065, 0.015060015954077244, -0.04418177902698517, 0.045087408274412155, -0.013251250609755516, -0.03164723142981529, -0.00432533910498023, -0.21011975407600403, -0.03353790193796158, 0.08186830580234528, -0.03371663764119148, 0.04092143476009369, 0.05350189656019211, 0.07153424620628357, -0.0778316855430603, 0.007369152270257473, 0.13619746267795563, -0.25500816106796265, 0.15675771236419678, 0.2254418432712555, 0.09421887248754501, 0.12736572325229645, -0.05584049969911575, -0.10984784364700317, -0.006325038615614176, -0.11060138791799545, -0.1005890890955925, 0.21481415629386902, -0.058871299028396606, 0.0750744491815567, 0.09018635004758835, 0.06143913418054581, 0.12208975851535797, -0.01847233437001705, -0.09351681172847748, 0.012454748153686523, 0.005845675244927406, -0.20625096559524536, 0.012142772786319256, 0.004305307287722826, 0.07588522881269455, 0.03697335720062256, -0.013797472231090069, 0.1496548056602478, -0.011170847341418266, 0.04639069363474846, 0.11191728711128235, -0.12157578021287918, -0.2188001275062561, 0.010163366794586182, -0.12829148769378662, 0.06824148446321487, 0.008860540576279163, -0.0405510812997818, -0.13184566795825958, -0.08708971738815308, 0.01910492405295372, -0.055632881820201874, -0.15078671276569366, -0.01287955604493618, -0.029255442321300507, 0.009901974350214005, -0.0707419291138649, -0.12122764438390732, 0.033771928399801254, -0.041163377463817596, 0.05983274057507515, 0.06816187500953674, -0.10123710334300995, 0.10542339831590652, 0.10609113425016403, -0.013614815659821033, 0.08436054736375809, -0.02555355802178383, -0.042706504464149475, -0.07079532742500305, -0.056765660643577576, 0.17453010380268097, 0.05350453779101372, -0.031018517911434174, 0.04399292916059494, 0.07355247437953949, -0.13685151934623718, -0.027210496366024017, -0.03850046172738075, -0.16883794963359833, -0.2432686984539032, -0.14182811975479126, -0.021053913980722427, 0.1418098360300064, 0.06675086170434952, 0.05458841472864151, -0.017214743420481682, 0.05800595134496689, 0.1491321325302124, -0.059904009103775024, -0.15474756062030792, -0.08344372361898422, -0.02895066700875759, -0.04933140426874161, -0.003399662906304002, -0.17019706964492798, -0.026797203347086906, 0.20316793024539948, 0.18540912866592407, 0.15608596801757812, 0.060639265924692154, 0.18638239800930023, -0.06280480325222015, 0.08465131372213364, 0.031180473044514656, 0.22365446388721466, 0.10069669038057327, -0.029404861852526665, -0.050026457756757736, 0.04184986650943756, 0.005670696496963501, 0.011793619953095913, 0.19907031953334808, -0.10569161921739578, 0.010114439763128757, -0.10474373400211334, 0.08895314484834671, -0.09259320795536041, 0.05957355350255966, -0.23919232189655304, 0.09610967338085175, 0.06494051218032837, 0.1371007263660431, -0.08448883891105652, 0.09595189988613129, 0.08070509880781174, -0.0029897019267082214, 0.09107287973165512, 0.04384486377239227, 0.04774922877550125, -0.03665582835674286, 0.02495829202234745, -0.04607415199279785, -0.06709638237953186, -0.020280130207538605, 0.1314326524734497, -0.15118516981601715, 0.11663173139095306, 0.013489728793501854, -0.07941886782646179, -0.16138328611850739, -0.08961702138185501, -0.012341205030679703, -0.02258964441716671, 0.15069732069969177, -0.036671798676252365, -0.06848198175430298, -0.06814371049404144, -0.10451129823923111, 0.016583917662501335, 0.024671385064721107, -0.01851782575249672, -0.11739125847816467, 0.04946473613381386, 0.011673636734485626, 0.009349467232823372, -0.12735781073570251, 0.01601226255297661, -0.10428805649280548, -0.052899740636348724, -0.016422893851995468, -0.06662058085203171, 0.04140477627515793, 0.0044621070846915245, -0.08919447660446167, 0.10004396736621857, -0.0062676710076630116, -0.008622027933597565, -0.10275169461965561, 0.04055676609277725, 0.19838489592075348, 0.0492202527821064, -0.005975767970085144, 0.057937078177928925, -0.003545559011399746, -0.027666188776493073, -0.15756671130657196, 0.13116146624088287, -0.07832649350166321, 0.08486024290323257, -0.046114157885313034, 0.00923363771289587, -0.026010384783148766, 0.018572984263300896, -0.038790516555309296, -0.05088939890265465, -0.05395932495594025, -0.06924200803041458, 0.1146928146481514, -0.10650292038917542, 0.10148433595895767, 0.24406670033931732, 0.10438995063304901, -0.04472217708826065, 0.15497463941574097, -0.045678600668907166, 0.16896580159664154, 0.15213976800441742, -0.060614682734012604, 0.18036609888076782, 0.12491550296545029, -0.0020638799760490656, -0.2846088111400604, 0.08878013491630554, -0.2125728875398636, -0.054226044565439224, 0.06039198115468025, -0.1963820606470108, 0.12953005731105804, 0.20941756665706635, -0.055375948548316956, 0.34165310859680176, -0.20108413696289062, -0.051967374980449677, 0.1629006415605545, -0.029945051297545433, 0.46861356496810913, -0.09753795713186264, 0.005601171869784594, -0.16740715503692627, 0.037741415202617645, 0.19523932039737701, -0.09858094155788422, 0.006442906800657511, 0.003734227968379855, 0.12447964400053024, -0.031484462320804596, -0.08580613881349564, 0.17583638429641724, -0.005104214884340763, 0.16634054481983185, -0.04393996670842171, -0.03742612898349762, 0.19095823168754578, -0.04353351145982742, 0.09397506713867188, -0.012155777774751186, -0.024243442341685295, -0.029794713482260704, -0.037575457245111465, 0.03523387014865875, 0.041124019771814346, 0.08205126971006393, -0.0723552256822586, -0.08019741624593735, 0.02677450329065323, -0.1033225953578949, -0.051095083355903625, 0.11733698844909668, 0.03142312541604042, -0.0557449534535408, -0.05078306794166565, 0.09572549909353256, -0.0605546273291111, 0.03408794850111008, -0.049197569489479065, -0.10302042961120605, 0.0851629301905632, -0.2896832227706909, 0.0623689703643322, 0.09917283058166504, 0.010029726661741734, 0.028827615082263947, 0.08572133630514145, -0.007433396764099598, 0.05183698609471321, 0.14171575009822845, -0.008747353218495846, -0.10087603330612183, 0.10476193577051163, -0.06675969064235687, 0.03998967632651329, 0.07883334159851074, 0.007816333323717117, 0.06710191816091537, -0.005591174121946096, -0.021472547203302383, 0.07238386571407318, -0.07891220599412918, 0.09503183513879776, 0.04737602174282074, 0.031013248488307, -0.20495375990867615, 0.2375018447637558, 0.018943332135677338, -0.19873113930225372, 0.014840541407465935, -0.07439481467008591, -0.044773295521736145, -0.0814003050327301, 0.023753872141242027, 0.20574061572551727, -0.0699504092335701, -0.11940592527389526, 0.01578889600932598, -0.0818638801574707, 0.036797426640987396, 0.12064991891384125, 0.08047236502170563, 0.08730810135602951, 0.015635166317224503, -0.016222240403294563, -0.06159127131104469, -0.03436591848731041, -0.09571292996406555, 0.003136025508865714, -0.047156691551208496, -0.16982810199260712, -0.04878277704119682, 0.12545369565486908, -0.08788343518972397, -0.003951717168092728, -0.04104068875312805, 0.052518654614686966, -0.26297762989997864, -0.02248653955757618, 0.029352424666285515, 0.009996547363698483, 0.010413680225610733, 0.06782190501689911, -0.01323816180229187, -0.03311841934919357, -0.11323767155408859, 0.13293835520744324, 0.07020226120948792, 0.019717762246727943, -0.07124637812376022, -0.01440779585391283, 0.0062067219987511635, 0.04145241528749466, 0.12799662351608276, 0.1279381364583969, 0.040191058069467545, 0.07561906427145004, 0.02145160175859928, -0.13237659633159637, 0.03269943967461586, 0.06703639775514603, 0.08189401775598526, 0.08903033286333084, 0.01568489521741867, 0.11040239781141281, -0.09030886739492416, 0.015104352496564388, -0.1323632150888443, -0.1007433608174324, 0.07812696695327759, -0.08920174837112427, -0.062106065452098846, 0.03050214797258377, -0.10092276334762573, 0.14607475697994232, 0.05245475471019745, -0.0380307137966156, 0.09516313672065735, 0.006790489889681339, -0.0013865083456039429, -0.08018570393323898, -0.038142282515764236, -0.10159648209810257, -0.09381204098463058, 0.12087014317512512, 0.048865415155887604, -0.07022746652364731, 0.5483183264732361, -0.017513439059257507, -0.14397074282169342, -0.04198889434337616, 0.07563520222902298, -0.011927422136068344, 0.02975907362997532, 0.35590860247612, 0.06638146191835403, -0.016006430611014366, -0.07730061560869217, 0.13372494280338287, 0.06496594846248627, 0.17167098820209503, 0.04382748529314995, 0.11707837134599686, 0.022900985553860664, -0.03271971642971039, -0.007350296713411808, -0.14891479909420013, 0.03812892735004425, 0.07603063434362411, 0.048331569880247116, -0.011238215491175652, 0.05391843616962433, -0.12153692543506622, 0.007481530774384737, 0.026356033980846405, -0.011142684146761894, -0.07412945479154587, 0.0033208902459591627, -0.07990726828575134, -0.07117585092782974, -0.047472722828388214, -0.08886031806468964, 0.027849320322275162, -0.04104328900575638, -0.07001364976167679, 0.29279112815856934, 0.10296815633773804, -0.0008439410594291985, 0.03962786868214607, -0.0939260944724083, 0.07332339882850647, 0.04224540665745735, 0.0038017630577087402, -0.10633973777294159, 0.034970562905073166, -0.0796041488647461, -0.003300128737464547, -0.06841887533664703, -0.020394206047058105, -0.006316078826785088, -0.0302861537784338, 0.03177686780691147, -0.07050773501396179, -0.02531047724187374, -0.09908982366323471, 0.0672588050365448, -0.11379634588956833, 0.12490095943212509, -0.01013895869255066, -0.00005219959712121636, 0.032107140868902206, 0.046863846480846405, 0.0059501975774765015, 0.025894537568092346, -0.0387096107006073, 0.07909151166677475, 0.002730890642851591, 0.1083497554063797, -0.012033517472445965, -0.04904314875602722, -0.05263085290789604, 0.10621857643127441, 0.351877361536026, -0.12295203655958176, -0.024962853640317917, 0.047777581959962845, 0.03795044124126434, 0.007903904654085636, 0.14795204997062683, 0.029372837394475937, 0.14106786251068115, -0.04211226478219032, -0.02813751995563507, 0.03469526022672653, -0.042371965944767, 0.012127606198191643, 0.07658486813306808, 0.03863641247153282, -0.01548659149557352, -0.0934053510427475, 0.12750299274921417, -0.15882615745067596, 0.09113156050443649, 0.07934314012527466, -0.09276803582906723, -0.09479312598705292, -0.011108876205980778, 0.11119020730257034, -0.0006822430295869708, -0.014552823267877102, -0.111470066010952, -0.025750301778316498, -0.03481695428490639, -0.03721527382731438, -0.327013224363327, -0.16715452075004578, 0.015460661612451077, 0.1669638305902481, 0.07318557053804398, -0.004868290387094021, 0.0800042450428009, 0.012809830717742443, 0.013591746799647808, -0.06548620015382767, 0.047086626291275024, 0.0017099286196753383, 0.016824008896946907, -0.0476163849234581, -0.03663460537791252, -0.0823948085308075, -0.04142110422253609, 0.03627079352736473, -0.10315309464931488, -0.06269501149654388, 0.12249042093753815, -0.08021775633096695, -0.037587717175483704, -0.02913256548345089, -0.043178606778383255, 0.11536091566085815, 0.0038791531696915627, -0.020872583612799644, 0.018372608348727226, -0.044796351343393326, 0.10759333521127701, 0.09844110906124115, -0.05306252837181091, -0.1023351326584816, -0.0062204995192587376, -0.04939994588494301, 0.0799199715256691, -0.00922178290784359, -0.10831984877586365, 0.08630608022212982, -0.09026061743497849, 0.01908954419195652, 0.015571574680507183, -0.0000016049102669057902, 0.12505094707012177, 0.08938091993331909, -0.024274758994579315, 0.09084301441907883, 0.011351268738508224, -0.020952118560671806, -0.05239513888955116, -0.11052723228931427 ]
176d7341ffaabb6dc02742f315d6e5968b59c7ee
# Dataset Card for "massive_music-de" [More Information needed](https://github.com/huggingface/datasets/blob/main/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
fathyshalab/massive_music-de
[ "region:us" ]
2023-02-08T11:27:43+00:00
{"dataset_info": {"features": [{"name": "id", "dtype": "string"}, {"name": "label", "dtype": "int64"}, {"name": "text", "dtype": "string"}], "splits": [{"name": "train", "num_bytes": 18149, "num_examples": 332}, {"name": "validation", "num_bytes": 3198, "num_examples": 56}, {"name": "test", "num_bytes": 4440, "num_examples": 81}], "download_size": 17641, "dataset_size": 25787}}
2023-02-08T12:33:58+00:00
[]
[]
TAGS #region-us
# Dataset Card for "massive_music-de" More Information needed
[ "# Dataset Card for \"massive_music-de\"\n\nMore Information needed" ]
[ "TAGS\n#region-us \n", "# Dataset Card for \"massive_music-de\"\n\nMore Information needed" ]
[ 6, 16 ]
[ "passage: TAGS\n#region-us \n# Dataset Card for \"massive_music-de\"\n\nMore Information needed" ]
[ -0.12245790660381317, 0.12684211134910583, -0.003616665955632925, 0.035895515233278275, 0.07601703703403473, 0.040282391011714935, -0.013272106647491455, -0.006590084172785282, 0.07786618173122406, 0.03466528281569481, 0.03308165445923805, 0.0990915447473526, -0.0061477492563426495, 0.1638401597738266, -0.03996486961841583, -0.08878248184919357, 0.04295642673969269, 0.004782882519066334, -0.18492397665977478, -0.008899634703993797, 0.022725380957126617, -0.0009979107417166233, -0.0022284819278866053, -0.13387882709503174, -0.14895129203796387, 0.08853662014007568, -0.0803176686167717, -0.02194749191403389, 0.004031313117593527, -0.08117152750492096, -0.010197645984590054, 0.025282185524702072, 0.0036813339684158564, -0.014462592080235481, 0.01186560932546854, -0.009688565507531166, -0.043969713151454926, -0.0005010695895180106, 0.09164056181907654, -0.10877515375614166, -0.19575698673725128, -0.0064977738074958324, -0.03208102658390999, 0.01074014138430357, -0.053812846541404724, -0.3607669174671173, -0.13921798765659332, -0.13881462812423706, 0.003415716113522649, -0.019806206226348877, 0.028624292463064194, 0.0431131049990654, -0.13080042600631714, -0.005510091781616211, 0.04102182760834694, 0.03956516459584236, 0.07573617249727249, 0.24274073541164398, 0.07363099604845047, 0.1603749692440033, 0.037460025399923325, 0.10742007941007614, 0.15928946435451508, -0.029521487653255463, 0.014908081851899624, -0.04951254278421402, -0.08700178563594818, -0.002052722033113241, 0.02638336829841137, -0.02705172635614872, 0.37139350175857544, -0.037506215274333954, -0.01716914400458336, 0.035677310079336166, 0.043919868767261505, -0.0853218138217926, -0.044961947947740555, 0.005684786010533571, 0.08909729868173599, 0.04792022332549095, -0.031781893223524094, -0.005712469108402729, 0.002141806995496154, -0.11167900264263153, -0.13502219319343567, -0.03803124278783798, -0.08280007541179657, 0.05024472996592522, -0.07158481329679489, -0.053844306617975235, -0.2447468340396881, -0.0036738181952387094, -0.01401575282216072, -0.05721394345164299, -0.06426075100898743, 0.007522180210798979, -0.05096741393208504, 0.09202989935874939, 0.140946164727211, 0.06589596718549728, 0.0903533324599266, -0.07233516871929169, -0.09863675385713577, 0.07732249051332474, 0.23696781694889069, -0.1557733118534088, -0.045263078063726425, -0.2276075780391693, 0.04578547924757004, -0.13281631469726562, 0.0665397197008133, -0.06649813055992126, -0.14873149991035461, -0.00805243756622076, -0.043024998158216476, 0.06625811755657196, -0.05140354856848717, -0.17701496183872223, -0.10821239650249481, -0.02402202971279621, 0.17008256912231445, -0.052026133984327316, 0.041666921228170395, -0.031206782907247543, 0.0038010114803910255, 0.11324477195739746, -0.17446790635585785, 0.09666132181882858, 0.1348043829202652, 0.170621857047081, -0.01621963270008564, -0.07362336665391922, -0.0378316268324852, 0.02795971743762493, 0.17972888052463531, -0.23231197893619537, 0.14963160455226898, 0.0066530522890388966, -0.16213355958461761, 0.012177848257124424, 0.027217745780944824, -0.028976770117878914, -0.05270267277956009, 0.03643577918410301, 0.060947876423597336, 0.0015977954026311636, -0.14561179280281067, 0.1134701520204544, -0.1352538764476776, 0.05136539787054062, -0.016181431710720062, 0.10803442448377609, -0.2402721792459488, 0.1288098245859146, -0.11137142777442932, -0.013272465206682682, -0.13988569378852844, 0.03083326481282711, -0.13612309098243713, 0.019131550565361977, -0.010419978760182858, -0.04242301732301712, -0.12586797773838043, 0.08504974097013474, 0.00227279681712389, -0.05829424038529396, -0.3298102021217346, -0.12423389405012131, 0.059027306735515594, -0.07909195870161057, -0.1363717019557953, 0.12928761541843414, -0.01805129088461399, 0.022831853479146957, 0.04246360436081886, 0.25381508469581604, -0.006357974838465452, 0.04043148458003998, -0.004282949026674032, 0.1411810666322708, -0.06525775045156479, -0.2822857201099396, 0.10619719326496124, -0.07516663521528244, -0.05298792943358421, -0.014109031297266483, 0.20843355357646942, -0.008355749770998955, -0.026284025982022285, 0.01767636649310589, 0.006121654994785786, -0.15219704806804657, 0.003115883795544505, 0.059775445610284805, -0.013806252740323544, -0.03284812346100807, 0.11189862340688705, 0.19420813024044037, 0.0861598402261734, 0.07763740420341492, -0.0349527969956398, 0.033336617052555084, 0.12090916186571121, -0.149294912815094, -0.003272691508755088, -0.20662668347358704, 0.1523483693599701, 0.011427560821175575, -0.023267416283488274, 0.1216520369052887, 0.09620047360658646, -0.006216312292963266, -0.09093254059553146, 0.013428076170384884, 0.0813395157456398, 0.11985354870557785, 0.035414956510066986, 0.07526855915784836, -0.07441261410713196, 0.049603596329689026, -0.07317101955413818, -0.049057602882385254, 0.03776683658361435, -0.13806211948394775, 0.13317543268203735, -0.07247639447450638, 0.04262948036193848, -0.019895333796739578, 0.029863664880394936, 0.047734711319208145, -0.01416260376572609, 0.028161274269223213, -0.06860244274139404, -0.0030366131104528904, -0.007755517028272152, -0.017167698591947556, -0.020729323849081993, 0.37872835993766785, 0.15655231475830078, 0.014867650344967842, 0.024377286434173584, 0.04363401234149933, 0.12264348566532135, -0.044206880033016205, -0.06848877668380737, -0.004044828936457634, -0.14052143692970276, -0.05219032242894173, 0.06527768075466156, -0.1177879199385643, 0.042990777641534805, 0.0847543478012085, 0.04455816000699997, -0.041977208107709885, -0.004413862247020006, 0.11937924474477768, -0.21879607439041138, 0.1571362167596817, 0.24733611941337585, -0.013528878800570965, 0.2623061537742615, -0.05199155583977699, -0.1054091826081276, 0.0003274094488006085, -0.1920318901538849, -0.09253573417663574, 0.19257999956607819, -0.06503430753946304, 0.0709189921617508, 0.0667913630604744, 0.0776536837220192, 0.05629561468958855, -0.046344444155693054, -0.08354291319847107, 0.014675835147500038, 0.012893682345747948, -0.24109672009944916, 0.041960760951042175, 0.021180331707000732, -0.009520036168396473, -0.013278039172291756, -0.10335683822631836, 0.17384576797485352, -0.052041228860616684, -0.003066084813326597, -0.026637980714440346, -0.20065473020076752, -0.16326555609703064, 0.03212747722864151, -0.08962078392505646, -0.016417672857642174, 0.00920500885695219, 0.037541478872299194, -0.09740752726793289, -0.02886356972157955, 0.06277933716773987, -0.01899188756942749, -0.15819373726844788, -0.07590512931346893, -0.02615875005722046, 0.063258096575737, -0.0402127280831337, -0.03053659200668335, 0.04370308667421341, 0.026717346161603928, 0.07692301273345947, -0.0055783409625291824, -0.11308145523071289, 0.13050049543380737, 0.10100608319044113, 0.11389057338237762, 0.055689629167318344, -0.01827864721417427, -0.05855096876621246, -0.12400293350219727, -0.005678004585206509, 0.10984613001346588, 0.006382581312209368, -0.06883002072572708, 0.061725471168756485, 0.13728930056095123, -0.0512455478310585, -0.03153745085000992, 0.06064667925238609, -0.16366536915302277, -0.24566219747066498, -0.18716157972812653, -0.07861962914466858, 0.07205028086900711, -0.061902180314064026, 0.0174239631742239, 0.06114371120929718, -0.03681853041052818, 0.08138290792703629, 0.05244070664048195, -0.07170391827821732, -0.12409011274576187, -0.07405833899974823, 0.0024846987798810005, 0.013929376378655434, -0.15197792649269104, -0.0020819867495447397, 0.21557745337486267, 0.14152005314826965, 0.1466490477323532, 0.17065763473510742, 0.14891158044338226, -0.058190006762742996, 0.05238240957260132, 0.021890459582209587, 0.17988385260105133, 0.11723653972148895, 0.020870329812169075, -0.018247205764055252, -0.016059987246990204, 0.012087391689419746, -0.015954801812767982, 0.19140706956386566, -0.13486064970493317, -0.02458711713552475, -0.1213316097855568, -0.055814869701862335, -0.11935630440711975, 0.02283606119453907, -0.1470564305782318, 0.10771151632070541, 0.09263293445110321, 0.19656260311603546, -0.08854714035987854, 0.18776695430278778, -0.004050917457789183, 0.02564612217247486, 0.1439884454011917, 0.058633897453546524, 0.11580177396535873, -0.07923977822065353, -0.011188511736690998, 0.07291799038648605, -0.03410780057311058, 0.0467209629714489, 0.039628759026527405, -0.06213810667395592, 0.13715681433677673, 0.05090552940964699, 0.012847372330725193, -0.04686220362782478, -0.07334726303815842, 0.02339036390185356, 0.09374678879976273, 0.154007226228714, -0.024480313062667847, -0.10624884068965912, -0.06172462925314903, -0.08560585975646973, -0.006442561279982328, 0.04870866984128952, 0.009315038099884987, -0.19729973375797272, -0.005778595805168152, 0.016674451529979706, 0.020138584077358246, -0.1279708296060562, -0.08846087008714676, -0.07624542713165283, -0.07100968062877655, 0.050875745713710785, -0.0692787691950798, 0.014210524037480354, -0.055563028901815414, -0.13525474071502686, 0.06881653517484665, 0.07948814332485199, 0.024366458877921104, -0.07931235432624817, -0.09860391914844513, 0.21257275342941284, 0.10648982226848602, 0.03893596678972244, 0.018038446083664894, -0.0011208251817151904, -0.0728406235575676, -0.15171638131141663, 0.12913325428962708, -0.08615685999393463, 0.12347852438688278, -0.0461922325193882, 0.09831296652555466, 0.012650949880480766, 0.05444038286805153, -0.017580099403858185, 0.03619523346424103, 0.061379093676805496, -0.03218953311443329, 0.2018735557794571, -0.08564731478691101, 0.056792598217725754, 0.1945214867591858, 0.11751635372638702, -0.05272233486175537, 0.24209102988243103, -0.10011784732341766, 0.09877681732177734, 0.1442641317844391, -0.030184846371412277, 0.21991586685180664, 0.1659332811832428, -0.0622132271528244, -0.3240874707698822, 0.11338656395673752, -0.13406935334205627, -0.06768811494112015, 0.0772407203912735, -0.3089284598827362, 0.05563434585928917, 0.13671022653579712, -0.06855479627847672, 0.17662166059017181, -0.20392468571662903, 0.03403206169605255, 0.15344268083572388, -0.1748693287372589, 0.44645705819129944, -0.0643715038895607, -0.0643177330493927, -0.23294059932231903, -0.06787558645009995, 0.22077322006225586, -0.20457245409488678, 0.046670299023389816, 0.09623464941978455, 0.001062720431946218, -0.0010156257776543498, 0.004568048287183046, 0.0816132128238678, 0.047907762229442596, 0.1008608341217041, 0.0127791129052639, 0.039113834500312805, 0.14586417376995087, 0.031999099999666214, 0.013662530109286308, -0.03126177191734314, -0.02668479084968567, -0.07585147768259048, -0.07586415112018585, 0.05330788344144821, 0.03275781124830246, 0.012268655933439732, -0.03336191549897194, -0.060890816152095795, 0.06255865097045898, -0.12659694254398346, -0.08003397285938263, 0.16406384110450745, 0.03575264662504196, -0.12588363885879517, -0.04724257439374924, 0.11714369803667068, -0.04057762771844864, -0.12862171232700348, 0.028519345447421074, -0.0854087769985199, 0.09174095094203949, -0.2078852504491806, 0.1130422055721283, 0.046011023223400116, 0.06357201188802719, -0.07080815732479095, 0.08020193129777908, -0.10433089733123779, 0.003725295653566718, 0.10833534598350525, -0.05389404296875, -0.09348011016845703, 0.03202253580093384, -0.09110668301582336, 0.19620957970619202, 0.06744854897260666, -0.014293363317847252, 0.05242551118135452, -0.04998210817575455, 0.03621099144220352, 0.05875210464000702, -0.10330576449632645, 0.02508300356566906, -0.008441530168056488, -0.017683453857898712, -0.206491157412529, 0.2864880859851837, 0.03420473635196686, -0.17991766333580017, -0.025751207023859024, -0.0514310784637928, 0.0036411841865628958, -0.07251470535993576, 0.10918096452951431, 0.15552905201911926, -0.09399254620075226, -0.14070548117160797, 0.10697196424007416, -0.08061620593070984, -0.011772556230425835, 0.10341044515371323, 0.08204880356788635, 0.06808418035507202, -0.019385453313589096, -0.011493421159684658, -0.02445141226053238, 0.03335399180650711, -0.031211255118250847, 0.061704542487859726, -0.09771513938903809, -0.24555720388889313, -0.0381668359041214, 0.08781606703996658, -0.10426139831542969, -0.019021986052393913, -0.016509784385561943, 0.05250222235918045, -0.2816735506057739, -0.03825414553284645, 0.08483128249645233, -0.018663950264453888, -0.025079799816012383, 0.07476574182510376, -0.020568065345287323, -0.03814546763896942, -0.036469317972660065, 0.06955356895923615, 0.06556401401758194, 0.054411862045526505, -0.09554269909858704, -0.010407702997326851, 0.009965903125703335, 0.028017643839120865, 0.11689600348472595, 0.1306861937046051, 0.018563739955425262, -0.028881337493658066, -0.07611162960529327, -0.2002059519290924, 0.11796775460243225, 0.07819817960262299, 0.08723007142543793, -0.03383750468492508, -0.0201056320220232, 0.08028478175401688, -0.03637503832578659, 0.011895688250660896, -0.08973899483680725, -0.07781200855970383, -0.017026647925376892, -0.17053160071372986, -0.1011476144194603, 0.06165694445371628, -0.06997822970151901, 0.2573646306991577, 0.10829425603151321, 0.055046167224645615, 0.09746655821800232, -0.00667935935780406, 0.042317651212215424, -0.05763797461986542, -0.022648582234978676, -0.15906381607055664, -0.22310832142829895, 0.1266937553882599, 0.008091061376035213, -0.04477948695421219, 0.4694731533527374, 0.05389982834458351, -0.1781243532896042, -0.05976002663373947, 0.07421869784593582, 0.08680853247642517, 0.02595336176455021, 0.34318703413009644, 0.04139278084039688, -0.057282283902168274, -0.12200197577476501, 0.07890843600034714, 0.02272935025393963, 0.2139892876148224, -0.01803358644247055, 0.10272210091352463, 0.14938722550868988, -0.06588620692491531, 0.10582291334867477, -0.13845418393611908, -0.02873368002474308, 0.060507893562316895, 0.13130059838294983, 0.04576864466071129, 0.1047888919711113, -0.0002134402166120708, -0.04429005831480026, -0.003700487082824111, 0.0819639042019844, -0.14473941922187805, 0.00694186519831419, -0.10283462703227997, -0.03457469865679741, -0.06738326698541641, -0.10303163528442383, 0.031132277101278305, -0.09694549441337585, 0.04263949394226074, 0.1349371075630188, 0.0005180726875551045, 0.009788885712623596, -0.01200515404343605, -0.14583735167980194, 0.041279036551713943, 0.09049151837825775, -0.05077560618519783, -0.13089030981063843, 0.06758889555931091, -0.0890737846493721, 0.08999595046043396, -0.08274616301059723, -0.03348568454384804, -0.0012102413456887007, -0.004230225458741188, 0.08236546814441681, -0.11314809322357178, -0.008845409378409386, -0.0327642560005188, 0.03383775055408478, -0.07230540364980698, 0.1412513256072998, 0.053668610751628876, -0.0019144616089761257, 0.07903748005628586, 0.029141845181584358, 0.014350144192576408, 0.1056051254272461, 0.031035661697387695, -0.07279355078935623, -0.08507904410362244, 0.15726353228092194, 0.04331669583916664, -0.031389255076646805, -0.06958459317684174, -0.006294094491750002, 0.29013967514038086, -0.08350047469139099, -0.026494618505239487, 0.03982546553015709, 0.008514036424458027, -0.06652030348777771, 0.11034528911113739, 0.06300438940525055, 0.19602221250534058, 0.01618793047964573, -0.08191386610269547, -0.0992116779088974, 0.00642054108902812, -0.0041476343758404255, 0.09657248854637146, 0.092452272772789, -0.11682697385549545, 0.02974007837474346, 0.1898358166217804, -0.23148074746131897, 0.11857892572879791, -0.031892064958810806, -0.06415420025587082, -0.12958800792694092, -0.04562385380268097, 0.06910492479801178, 0.11317423731088638, -0.02329699881374836, -0.11815859377384186, -0.05034980922937393, -0.09399953484535217, -0.006954500917345285, -0.27404892444610596, -0.09302564710378647, -0.1131686270236969, 0.12397734820842743, 0.024960091337561607, 0.00760383578017354, 0.1607791781425476, -0.04264332726597786, 0.09932320564985275, -0.009109700098633766, 0.01645893231034279, 0.0048240055330097675, 0.008917229250073433, -0.022111443802714348, 0.08857565373182297, -0.08720949292182922, 0.011412237770855427, 0.10365927219390869, 0.09089924395084381, -0.027241935953497887, 0.11600784212350845, -0.13472077250480652, -0.07082365453243256, -0.023648330941796303, -0.12678714096546173, 0.06184142455458641, -0.10630754381418228, 0.010583524592220783, -0.030900446698069572, -0.010542163625359535, 0.11474117636680603, 0.12497008591890335, -0.031130455434322357, -0.032266948372125626, 0.03592003136873245, -0.04492294043302536, 0.1268739104270935, 0.021177686750888824, -0.0692846029996872, 0.11813127249479294, -0.1312333196401596, 0.06786911189556122, -0.04855768010020256, -0.00786061491817236, 0.02954958565533161, 0.03931525722146034, -0.05441158264875412, 0.012062622234225273, 0.011861076578497887, -0.05738252028822899, -0.07731791585683823, -0.14601080119609833 ]
cd1f0486e097fa29eacc2cc281c21d5cdb42da92
# Dataset Card for "massive_alarm-de" [More Information needed](https://github.com/huggingface/datasets/blob/main/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
fathyshalab/massive_alarm-de
[ "region:us" ]
2023-02-08T11:27:59+00:00
{"dataset_info": {"features": [{"name": "id", "dtype": "string"}, {"name": "label", "dtype": "int64"}, {"name": "text", "dtype": "string"}], "splits": [{"name": "train", "num_bytes": 24135, "num_examples": 390}, {"name": "validation", "num_bytes": 3700, "num_examples": 64}, {"name": "test", "num_bytes": 5727, "num_examples": 96}], "download_size": 19133, "dataset_size": 33562}}
2023-02-08T12:34:19+00:00
[]
[]
TAGS #region-us
# Dataset Card for "massive_alarm-de" More Information needed
[ "# Dataset Card for \"massive_alarm-de\"\n\nMore Information needed" ]
[ "TAGS\n#region-us \n", "# Dataset Card for \"massive_alarm-de\"\n\nMore Information needed" ]
[ 6, 16 ]
[ "passage: TAGS\n#region-us \n# Dataset Card for \"massive_alarm-de\"\n\nMore Information needed" ]
[ -0.09893883764743805, 0.025898486375808716, -0.005028705578297377, -0.013586316257715225, 0.052486855536699295, 0.0950111448764801, 0.02031208947300911, 0.0015520774759352207, 0.14866092801094055, -0.010033521801233292, 0.18041078746318817, 0.06760680675506592, -0.05336346849799156, 0.2392607033252716, -0.08257360011339188, 0.05654975026845932, 0.05696835741400719, 0.023781171068549156, -0.16854001581668854, 0.02312977984547615, 0.10963539034128189, -0.08986137807369232, 0.08247527480125427, -0.1131414994597435, -0.16203659772872925, 0.1246386393904686, -0.007208081427961588, -0.08295046538114548, 0.08684897422790527, -0.1375548243522644, 0.10112254321575165, -0.034259553998708725, -0.001811459893360734, -0.057951077818870544, -0.006883804686367512, 0.03599614277482033, -0.017757391557097435, 0.01982255093753338, 0.06256318092346191, -0.07522372156381607, -0.10145478695631027, -0.1645113080739975, 0.03469208627939224, -0.019118545576930046, -0.03261720761656761, -0.38243368268013, -0.08272213488817215, -0.017264528200030327, 0.07525579631328583, 0.024347523227334023, 0.07396025210618973, 0.08278889209032059, -0.08821829408407211, 0.004081822466105223, -0.04152326285839081, -0.02096039429306984, 0.0863894671201706, 0.14489628374576569, 0.007707639597356319, 0.17232468724250793, 0.04892983287572861, 0.07017554342746735, 0.1641422063112259, -0.02494095452129841, -0.007847889326512814, -0.002508255187422037, -0.04582450911402702, 0.054708123207092285, -0.03451458737254143, -0.06312265247106552, 0.24800406396389008, -0.004241776652634144, 0.01219579391181469, -0.001676259096711874, -0.004216202534735203, -0.06665997952222824, 0.055036261677742004, -0.07504166662693024, 0.03622743859887123, 0.027622707188129425, 0.057440537959337234, 0.057669345289468765, -0.10897520184516907, -0.1340530663728714, -0.17554989457130432, 0.07289551943540573, -0.08474162966012955, 0.14813494682312012, -0.2173943817615509, -0.02161690779030323, -0.11142461001873016, -0.013763590715825558, 0.025996588170528412, -0.09118672460317612, -0.04656718671321869, -0.037365082651376724, -0.022114325314760208, -0.03940235823392868, 0.15610812604427338, -0.03370600566267967, -0.07229925692081451, -0.006003904156386852, -0.12474146485328674, 0.06479443609714508, 0.20784476399421692, -0.07934566587209702, -0.06617315858602524, -0.13693775236606598, -0.030738677829504013, -0.10972181707620621, 0.012609899044036865, -0.07942835241556168, -0.06819005310535431, -0.028919123113155365, 0.003138377098366618, 0.1347275674343109, -0.07094036042690277, -0.16383348405361176, -0.029487790539860725, -0.0042399694211781025, 0.11434781551361084, -0.043795522302389145, 0.0028459627646952868, 0.030800120905041695, -0.005177713464945555, 0.06026621162891388, -0.16370733082294464, 0.0025521069765090942, 0.10857804119586945, 0.1138283833861351, -0.0766625702381134, -0.08743835240602493, -0.06527699530124664, 0.01780063286423683, 0.0715186670422554, -0.17497457563877106, 0.06374660134315491, -0.0388936810195446, -0.2619864344596863, 0.07342743873596191, -0.027315212413668633, -0.01508946344256401, 0.08179454505443573, 0.045971695333719254, 0.04807082563638687, -0.0077902888879179955, -0.041904352605342865, 0.20847350358963013, -0.11095340549945831, 0.01919533871114254, 0.01513055618852377, 0.029994066804647446, -0.23350007832050323, 0.00929807685315609, -0.1168934777379036, -0.01664210669696331, -0.0195783544331789, 0.07472856342792511, -0.053153328597545624, 0.08780144155025482, -0.11205139756202698, 0.026820968836545944, -0.125810444355011, 0.04044131189584732, -0.040229834616184235, 0.07343961298465729, -0.22557926177978516, -0.04126684367656708, 0.03311270475387573, -0.10775995999574661, -0.14395545423030853, 0.03664717450737953, -0.043436381965875626, -0.015819726511836052, 0.08760571479797363, 0.24039170145988464, -0.15205281972885132, 0.0787859708070755, 0.023560456931591034, 0.134863018989563, -0.22992068529129028, -0.24610257148742676, 0.09548410773277283, -0.07289167493581772, -0.2477094978094101, -0.02375691942870617, 0.14985880255699158, -0.04191644489765167, -0.05612615495920181, -0.06889231503009796, -0.013000641949474812, -0.150177463889122, -0.06850225478410721, -0.0671103447675705, -0.002158930292353034, -0.08217207342386246, 0.1276044100522995, 0.040303051471710205, 0.08283248543739319, 0.07476891577243805, -0.046483296900987625, -0.039270367473363876, 0.02254621870815754, -0.156119242310524, -0.020263971760869026, -0.15907388925552368, 0.041137345135211945, 0.00011539416300365701, -0.02330256626009941, 0.022742940112948418, 0.013790452852845192, 0.106596939265728, -0.056645359843969345, -0.011112257838249207, 0.09092584252357483, 0.13458721339702606, 0.04884463921189308, 0.014810835011303425, -0.05214032158255577, 0.08374638110399246, -0.10949189960956573, -0.09226563572883606, -0.1288374662399292, -0.08475424349308014, 0.15225116908550262, -0.033505845814943314, 0.050995633006095886, -0.004486809950321913, 0.01449467334896326, -0.03751650080084801, -0.021500062197446823, -0.020931223407387733, -0.0343363881111145, -0.09127067774534225, -0.12940874695777893, 0.03784027323126793, -0.04087255522608757, 0.38874149322509766, 0.12674039602279663, 0.007452694233506918, 0.036011356860399246, 0.04331562668085098, 0.04058385267853737, 0.0041450997814536095, -0.014389744028449059, -0.04485631734132767, -0.0882410928606987, -0.0748964250087738, 0.027984483167529106, -0.023058436810970306, 0.02657327800989151, 0.05376351624727249, 0.07316558808088303, -0.11012256890535355, 0.026752719655632973, 0.06509440392255783, -0.22574959695339203, 0.1314527541399002, 0.22845777869224548, 0.05290811508893967, 0.08728547394275665, -0.009493008255958557, -0.1118069440126419, 0.0006907719653099775, -0.12176293879747391, -0.06050391495227814, 0.1720246523618698, -0.10761173814535141, 0.06704386323690414, 0.08434351533651352, 0.014601330272853374, 0.11670761555433273, -0.03364516794681549, -0.08241815865039825, -0.005861959885805845, 0.003124589566141367, -0.1793634295463562, 0.042991794645786285, 0.029511261731386185, 0.13265067338943481, 0.03752853721380234, -0.11179350316524506, 0.14397338032722473, -0.02140095829963684, 0.007730722427368164, 0.1054220050573349, -0.1088540256023407, -0.28233522176742554, 0.006094906013458967, -0.03449361026287079, 0.07131270319223404, 0.033919211477041245, -0.013258135877549648, -0.20748744904994965, -0.0395292192697525, -0.032024990767240524, -0.08620764315128326, -0.19938303530216217, 0.06717243790626526, 0.14761580526828766, 0.04232640936970711, -0.01677779108285904, -0.0747569352388382, 0.02416166663169861, -0.060599230229854584, 0.011816980317234993, 0.02051994390785694, -0.03608701750636101, 0.09757590293884277, 0.1473076194524765, -0.025201866403222084, 0.07348103076219559, -0.01622951775789261, -0.07839199900627136, -0.06300806999206543, -0.11242547631263733, 0.12904340028762817, -0.015091866254806519, -0.0193156860768795, 0.056793633848428726, 0.06809961050748825, -0.16126178205013275, -0.017845965921878815, -0.010672807693481445, -0.16945527493953705, -0.2932370901107788, -0.14099851250648499, -0.006590920966118574, 0.05647106468677521, -0.021860722452402115, 0.08771897852420807, 0.07997754216194153, 0.022001849487423897, 0.13918916881084442, -0.08108355104923248, -0.10763880610466003, -0.0730290338397026, -0.12600110471248627, 0.008059128187596798, -0.007064678240567446, -0.16642998158931732, -0.056002505123615265, 0.18474902212619781, 0.08226050436496735, 0.13273201882839203, 0.10152324289083481, 0.0054169571958482265, -0.06040521338582039, -0.08725808560848236, 0.05172904208302498, 0.11913275718688965, 0.04541843757033348, -0.028265895321965218, -0.027694718912243843, 0.0026654137764126062, 0.02956327423453331, 0.02475397102534771, 0.12449619174003601, -0.05664582550525665, 0.028422746807336807, -0.07662899047136307, 0.10537384450435638, -0.0738743245601654, 0.05329862982034683, -0.29288312792778015, 0.10310807824134827, 0.04510614648461342, 0.13683408498764038, -0.051566097885370255, 0.09730598330497742, 0.04286055266857147, 0.0788845494389534, 0.10304003208875656, 0.07238557189702988, 0.01894298382103443, -0.055886391550302505, 0.06516707688570023, -0.11105640977621078, -0.00012868412886746228, -0.04040137678384781, 0.06708555668592453, -0.14324761927127838, 0.15461836755275726, 0.023468367755413055, -0.024395598098635674, -0.1287153661251068, -0.08643537014722824, -0.004659026861190796, 0.048401035368442535, 0.15808551013469696, 0.009915506467223167, -0.07439759373664856, -0.09491050243377686, -0.10577559471130371, 0.030255911871790886, 0.061763010919094086, -0.01596537046134472, -0.1576661914587021, 0.06694518774747849, 0.028328457847237587, 0.012217387557029724, -0.22193200886249542, -0.08484899997711182, -0.045977022498846054, -0.05599144846200943, 0.09215382486581802, -0.09755547344684601, -0.01194141898304224, -0.01236510369926691, -0.01350770890712738, 0.0837579295039177, -0.05563490092754364, -0.009446554817259312, -0.06169925257563591, -0.06455114483833313, 0.18036127090454102, 0.0602697879076004, -0.040595684200525284, 0.08165354281663895, -0.000841104076243937, -0.018437447026371956, -0.14460815489292145, 0.14033368229866028, -0.10991792380809784, 0.09382478147745132, -0.07491731643676758, 0.10487125813961029, 0.03822094947099686, 0.005007270257920027, -0.015992509201169014, -0.008485966362059116, 0.006959911901503801, -0.03869936987757683, 0.1901566982269287, -0.027116047218441963, 0.13560985028743744, 0.2720862627029419, 0.1702432632446289, -0.16456574201583862, 0.11678363382816315, -0.047845903784036636, 0.13954244554042816, 0.1646467000246048, -0.01853097788989544, 0.1541118621826172, 0.19032122194766998, 0.005217206198722124, -0.27284935116767883, 0.10732995718717575, -0.1489168256521225, -0.024627814069390297, -0.0016592878382652998, -0.14722421765327454, 0.13256607949733734, 0.23224808275699615, -0.06947138160467148, 0.31205952167510986, -0.24155442416667938, -0.01525419857352972, 0.1715221405029297, -0.07963092625141144, 0.4892042875289917, -0.11177445203065872, -0.05620352923870087, -0.16895154118537903, 0.10674159228801727, 0.2057369351387024, -0.1595267504453659, 0.008341803215444088, 0.014913251623511314, -0.0331273190677166, -0.018167071044445038, -0.060451943427324295, 0.19513528048992157, 0.04017690569162369, 0.17842189967632294, -0.0007768913637846708, -0.08972413092851639, 0.1164763867855072, -0.030752379447221756, 0.10555902123451233, -0.049565091729164124, 0.012711508199572563, -0.06352613866329193, -0.042458899319171906, 0.05733243376016617, 0.10421766340732574, 0.08786997199058533, -0.08540686964988708, -0.05760164558887482, -0.02737955003976822, -0.15613184869289398, -0.054073020815849304, 0.2185257375240326, 0.024328408762812614, -0.07787048071622849, -0.003419014159590006, 0.14067400991916656, -0.1313471794128418, 0.03681107610464096, 0.0029103297274559736, -0.11711997538805008, 0.13960577547550201, -0.24906720221042633, 0.06710726767778397, 0.07430075109004974, 0.02677873894572258, -0.014013269916176796, 0.08377958834171295, -0.024644561111927032, 0.03390129655599594, 0.16324351727962494, -0.07448902726173401, -0.06517389416694641, 0.10044978559017181, -0.06611812859773636, 0.12583348155021667, 0.19476303458213806, 0.07001287490129471, 0.052620626986026764, 0.00025960145285353065, -0.014436312951147556, 0.10128669440746307, -0.08676926046609879, 0.11946665495634079, 0.015546650625765324, 0.017038442194461823, -0.1752595752477646, 0.25675395131111145, 0.050245676189661026, -0.15094515681266785, 0.06637299060821533, -0.03866567835211754, -0.040605463087558746, -0.013464079238474369, -0.03405999019742012, 0.21544860303401947, -0.016220811754465103, -0.15803202986717224, 0.03674587979912758, -0.08448917418718338, 0.052377112209796906, 0.20914745330810547, 0.06927948445081711, 0.12031901627779007, 0.01925506256520748, -0.025233624503016472, -0.08379830420017242, -0.05474577099084854, -0.10900763422250748, 0.024168403819203377, -0.09673767536878586, -0.1594846099615097, -0.0038333707489073277, 0.067812979221344, -0.09915054589509964, -0.016384480521082878, -0.0459829643368721, 0.0434756875038147, -0.2904060482978821, -0.030904173851013184, 0.0975240021944046, 0.003469663206487894, -0.01106167957186699, 0.06580118089914322, -0.03205132111907005, 0.027690919116139412, -0.05965544283390045, 0.08754682540893555, 0.07458500564098358, 0.03674918785691261, -0.11741605401039124, -0.02711702696979046, -0.02889733761548996, 0.057816069573163986, 0.14373408257961273, 0.17499811947345734, 0.0025439125020056963, -0.003058177884668112, -0.11192315071821213, -0.1353929191827774, 0.10219066590070724, 0.04354550316929817, 0.053511105477809906, 0.021032564342021942, 0.011264881119132042, 0.11002296954393387, -0.0771804228425026, 0.0420670360326767, -0.020453136414289474, -0.04845990985631943, 0.09833049029111862, -0.0957217738032341, -0.07546759396791458, 0.051068902015686035, -0.11343031376600266, 0.24043022096157074, 0.051516320556402206, 0.0014263247139751911, 0.07736428081989288, -0.028777213767170906, -0.009941465221345425, -0.04422852769494057, -0.07846872508525848, -0.056125011295080185, -0.1785229593515396, 0.1494685709476471, 0.03735814988613129, -0.11572357267141342, 0.5560423135757446, -0.09542910009622574, -0.13731595873832703, -0.019369380548596382, 0.048111673444509506, 0.006492349784821272, 0.03769129142165184, 0.35875898599624634, 0.06585229188203812, -0.026509582996368408, -0.038760896772146225, 0.06700698286294937, 0.10105360299348831, 0.18604865670204163, 0.07011096179485321, 0.1273152083158493, 0.1105751097202301, -0.006407884880900383, 0.0829695388674736, -0.09276480227708817, 0.05811470374464989, 0.04391856491565704, -0.001899717841297388, -0.074295274913311, 0.13261429965496063, -0.08556853979825974, 0.1349639892578125, 0.05714897811412811, -0.056413568556308746, -0.07375039905309677, 0.020455647259950638, -0.04201816767454147, 0.054772716015577316, -0.03552156314253807, -0.04507225751876831, 0.02738291770219803, -0.03950676694512367, -0.0727212131023407, 0.24670284986495972, 0.09655631333589554, -0.029070863500237465, 0.09190575778484344, -0.07980670034885406, 0.11749989539384842, 0.07466617226600647, 0.012041065841913223, -0.09940429031848907, 0.09525484591722488, -0.09556587785482407, 0.04724743589758873, -0.041005901992321014, -0.06129882112145424, 0.00375159434042871, -0.013944743201136589, 0.04076384752988815, -0.06878897547721863, -0.006388405803591013, -0.058952055871486664, 0.06866122782230377, -0.1084602028131485, 0.04047815501689911, 0.03384755179286003, -0.05944708362221718, 0.047980211675167084, 0.04819226264953613, -0.02899344451725483, 0.016621459275484085, 0.062456097453832626, 0.11827083677053452, -0.004853020887821913, 0.16949884593486786, 0.004445311613380909, -0.04320893809199333, -0.1045534610748291, -0.057539358735084534, 0.3164464235305786, -0.11627554893493652, -0.013527278788387775, 0.0038296838756650686, 0.06140773743391037, -0.05871913954615593, 0.06834401190280914, 0.08064550906419754, 0.17559844255447388, 0.011458107270300388, -0.02437344565987587, 0.034478239715099335, 0.030035553500056267, -0.006892667151987553, 0.10618015378713608, 0.023901838809251785, -0.036723148077726364, -0.059801578521728516, 0.13945840299129486, -0.1195257231593132, 0.03991995379328728, 0.0269931647926569, -0.0773831456899643, -0.12144921720027924, 0.07997632771730423, 0.09410757571458817, -0.06867004930973053, -0.02513381838798523, -0.058492377400398254, -0.04854017123579979, -0.2057148516178131, -0.03086271695792675, -0.2881133556365967, -0.16520856320858002, -0.06931722909212112, 0.13765917718410492, 0.17063423991203308, 0.011885604821145535, 0.19301453232765198, 0.009864510037004948, -0.026228545233607292, -0.0784711092710495, 0.05078582465648651, -0.01894543506205082, 0.07364557683467865, -0.024432430043816566, -0.06362104415893555, -0.08742643892765045, -0.019752074033021927, 0.08742225170135498, -0.022713569924235344, -0.09169519692659378, 0.10582639276981354, -0.07956410944461823, -0.049447961151599884, -0.05916919931769371, -0.06800864636898041, 0.05605209618806839, -0.02718353644013405, 0.014179512858390808, 0.023359838873147964, -0.007775063626468182, 0.12872253358364105, 0.10629446804523468, -0.03397065028548241, -0.07924488931894302, -0.06957420706748962, -0.004423037171363831, 0.11247812956571579, 0.005638280883431435, -0.10349706560373306, 0.053456008434295654, -0.11859934777021408, 0.03934858366847038, -0.01331794448196888, -0.06013043224811554, 0.10590311139822006, 0.08653370290994644, -0.04333728924393654, 0.012119600549340248, 0.04347403720021248, 0.014244874939322472, -0.10040036588907242, -0.12965288758277893 ]
650164d7429c3260b92077703a90f84b2f85b756
# Dataset Card for "massive_weather-de" [More Information needed](https://github.com/huggingface/datasets/blob/main/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
fathyshalab/massive_weather-de
[ "region:us" ]
2023-02-08T11:28:15+00:00
{"dataset_info": {"features": [{"name": "id", "dtype": "string"}, {"name": "label", "dtype": "int64"}, {"name": "text", "dtype": "string"}], "splits": [{"name": "train", "num_bytes": 31902, "num_examples": 573}, {"name": "validation", "num_bytes": 7264, "num_examples": 126}, {"name": "test", "num_bytes": 8886, "num_examples": 156}], "download_size": 25436, "dataset_size": 48052}}
2023-02-08T12:34:40+00:00
[]
[]
TAGS #region-us
# Dataset Card for "massive_weather-de" More Information needed
[ "# Dataset Card for \"massive_weather-de\"\n\nMore Information needed" ]
[ "TAGS\n#region-us \n", "# Dataset Card for \"massive_weather-de\"\n\nMore Information needed" ]
[ 6, 18 ]
[ "passage: TAGS\n#region-us \n# Dataset Card for \"massive_weather-de\"\n\nMore Information needed" ]
[ -0.2036084681749344, 0.08808403462171555, -0.0026975523214787245, 0.08130671828985214, 0.08721395581960678, 0.0818273201584816, 0.020874837413430214, -0.0930405706167221, 0.20454692840576172, -0.006132109556347132, 0.17815987765789032, 0.05659237504005432, 0.004106208682060242, 0.18837089836597443, -0.06912662833929062, -0.17429998517036438, 0.018736544996500015, -0.02543565072119236, -0.22825977206230164, 0.05167298763990402, 0.09069465845823288, -0.06914617866277695, 0.0763883963227272, -0.14160114526748657, -0.08838378638029099, 0.08696649968624115, -0.06298858672380447, -0.04715722054243088, 0.08585580438375473, -0.07783301919698715, 0.10136674344539642, 0.014233543537557125, 0.05292106047272682, -0.04403359070420265, 0.005942544434219599, -0.05531146004796028, -0.025793949142098427, 0.050472650676965714, 0.10678733885288239, -0.06975122541189194, -0.1548311710357666, -0.12452088296413422, 0.07846691459417343, -0.011152343824505806, -0.10904065519571304, -0.2716982364654541, -0.04714334011077881, -0.08153637498617172, 0.005025898572057486, -0.0040231263265013695, 0.09863056242465973, 0.06825840473175049, -0.13570578396320343, 0.0705961361527443, -0.009762512519955635, 0.06051928550004959, 0.012816017493605614, 0.13642166554927826, -0.029813935980200768, 0.1779268980026245, 0.0755712240934372, 0.08672098070383072, 0.14673690497875214, -0.04897886887192726, -0.047120627015829086, 0.04186741262674332, 0.06369858980178833, 0.0971745029091835, -0.038720469921827316, -0.02313859574496746, 0.27386265993118286, -0.03240910917520523, 0.006331556476652622, 0.027281442657113075, 0.04900875315070152, -0.022372644394636154, -0.00020393915474414825, -0.06833358854055405, 0.07151258736848831, 0.009933097288012505, 0.016896871849894524, 0.013866143301129341, -0.04859330877661705, -0.0521213598549366, -0.12222754955291748, 0.23312966525554657, -0.10452526062726974, 0.14011569321155548, -0.2349241077899933, 0.0038871760480105877, -0.11656025797128677, -0.05914437398314476, -0.02631261944770813, -0.10691656917333603, -0.0855368971824646, 0.01593116484582424, -0.08656323701143265, 0.05753624066710472, 0.027072859928011894, 0.05882706865668297, 0.13040022552013397, -0.03263477981090546, 0.02706683799624443, 0.03858083114027977, 0.2366401106119156, -0.055752310901880264, -0.02749510295689106, -0.20414051413536072, -0.04522697255015373, -0.2192423790693283, 0.03187466785311699, -0.1776711642742157, -0.01337963156402111, -0.06481277197599411, -0.1231655403971672, 0.14390893280506134, -0.02042185328900814, -0.22320055961608887, -0.04110102728009224, -0.009490907192230225, 0.21160803735256195, -0.08457982540130615, 0.07720978558063507, -0.005706327967345715, -0.055973079055547714, 0.09603301435709, -0.18738548457622528, 0.0014573016669601202, 0.20655377209186554, 0.14962907135486603, -0.12085805833339691, -0.07921489328145981, -0.027365300804376602, -0.02496037818491459, 0.07120822370052338, -0.22381499409675598, 0.11521521955728531, -0.05138629674911499, -0.24621595442295074, 0.09501408040523529, 0.011480753310024738, -0.10585736483335495, 0.00657245609909296, 0.07366359978914261, 0.0050256396643817425, 0.04615025594830513, -0.04534035921096802, 0.16379748284816742, -0.11072097718715668, -0.016644606366753578, -0.06786993145942688, 0.05382433161139488, -0.24169956147670746, -0.02111893519759178, -0.06751371175050735, -0.020718449726700783, -0.0024123394396156073, 0.06833145767450333, -0.14615707099437714, 0.09484071284532547, -0.08253653347492218, -0.041519973427057266, 0.0066778757609426975, 0.015791356563568115, -0.011074652895331383, 0.12417057901620865, -0.32608991861343384, -0.03964634984731674, 0.015859421342611313, -0.15779684484004974, -0.06816703081130981, -0.014671065844595432, -0.0850205272436142, 0.02242528460919857, 0.10087884217500687, 0.13519161939620972, -0.07759980857372284, 0.07397548109292984, 0.11632992327213287, 0.19954364001750946, -0.11917281150817871, -0.24747364223003387, 0.07564253360033035, -0.026566704735159874, -0.2718653678894043, 0.013050452806055546, 0.13629570603370667, -0.017048707231879234, -0.06623254716396332, -0.07204777747392654, -0.026452243328094482, -0.09583951532840729, -0.01247809175401926, -0.07539982348680496, -0.01288632396608591, -0.07584602385759354, 0.15764787793159485, 0.12264491617679596, 0.030182447284460068, 0.08267480880022049, -0.02399505488574505, 0.09124711900949478, -0.03139292448759079, -0.06433645635843277, -0.07789550721645355, -0.09034381806850433, -0.045017775148153305, 0.010736033320426941, -0.01338767260313034, -0.030974432826042175, 0.11890958249568939, 0.15644322335720062, -0.03664803504943848, 0.0008865807903930545, 0.14773790538311005, 0.09663470089435577, 0.06297315657138824, -0.012251528911292553, -0.06594086438417435, 0.003703427268192172, -0.09178391844034195, 0.025035236030817032, -0.08815944194793701, -0.08241504430770874, 0.13236042857170105, -0.06238967925310135, 0.0056749614886939526, -0.0313851460814476, 0.021430309861898422, -0.04617450758814812, 0.0064719608053565025, -0.009659086354076862, -0.0437173955142498, -0.04816349968314171, -0.20823369920253754, 0.1185821145772934, 0.002091245958581567, 0.24159619212150574, 0.017336230725049973, 0.08652549237012863, 0.01980987749993801, 0.01074993796646595, 0.05950749292969704, -0.056517284363508224, 0.031523581594228745, -0.022308191284537315, -0.07001014053821564, -0.07437755167484283, -0.0036422829143702984, -0.02325439266860485, 0.016036298125982285, 0.041870731860399246, 0.039575714617967606, -0.08442376554012299, 0.07244022935628891, 0.1022460088133812, -0.15890872478485107, 0.05109172314405441, 0.17874418199062347, 0.052167970687150955, 0.07544609159231186, -0.002049175789579749, -0.13958020508289337, -0.0007857637829147279, -0.19078075885772705, -0.04132508486509323, 0.15797768533229828, -0.014401139691472054, 0.09943650662899017, 0.09607861936092377, 0.051023196429014206, 0.07998744398355484, -0.013553520664572716, -0.09401284903287888, 0.08221377432346344, 0.08320927619934082, -0.23902037739753723, -0.0314096063375473, -0.028270142152905464, 0.10019082576036453, 0.03293836489319801, -0.1315121203660965, 0.1191423162817955, 0.027316315099596977, 0.05133012309670448, 0.17216525971889496, -0.11921326071023941, -0.14406239986419678, -0.02785194106400013, -0.06391315162181854, -0.001157652004621923, -0.030268682166934013, -0.019224833697080612, -0.1434227079153061, -0.10728655010461807, -0.013379273936152458, -0.04031402990221977, -0.2460620105266571, 0.02500908263027668, -0.010353115387260914, -0.06627460569143295, -0.09973224252462387, -0.12996383011341095, 0.08616824448108673, -0.015283867716789246, 0.05679970607161522, 0.06693562120199203, 0.010415667667984962, 0.11682666838169098, 0.0689312145113945, 0.002703835954889655, 0.05759172514081001, 0.05244484171271324, 0.10558458417654037, -0.025841636583209038, -0.025765014812350273, 0.050854288041591644, -0.01662380062043667, -0.032898180186748505, 0.023186832666397095, 0.1532997339963913, -0.14839999377727509, -0.09869389235973358, -0.05135457590222359, -0.16564787924289703, -0.28867360949516296, -0.1468360424041748, 0.0018309054430574179, 0.04392213374376297, -0.0010766679188236594, 0.09114446491003036, -0.06218227371573448, 0.03544405847787857, 0.127890482544899, -0.19044409692287445, -0.165410116314888, -0.0872117131948471, -0.18042290210723877, 0.009799622930586338, 0.060584042221307755, -0.15781830251216888, 0.042201925069093704, 0.18869110941886902, 0.16764035820960999, 0.09872023016214371, 0.11165627092123032, 0.13333335518836975, -0.08491704612970352, -0.002226536860689521, 0.03421320393681526, 0.17552287876605988, 0.14273867011070251, -0.02034718357026577, 0.02226809784770012, 0.0383322611451149, 0.008982024155557156, 0.007908076047897339, 0.10492147505283356, -0.1188882365822792, 0.08117183297872543, -0.12784580886363983, -0.029536819085478783, -0.13038703799247742, 0.06767115741968155, -0.21877844631671906, 0.09289022535085678, 0.03127976506948471, 0.14929358661174774, -0.10909027606248856, 0.09358029067516327, 0.02915417030453682, 0.002141379052773118, 0.13475704193115234, 0.04872455820441246, 0.0438830591738224, -0.03480291739106178, -0.06314345449209213, -0.053957436233758926, 0.0047910092398524284, -0.05235793814063072, 0.04444679245352745, -0.03111119568347931, 0.10879144817590714, 0.05052991583943367, -0.0247992854565382, -0.15158919990062714, -0.0943327471613884, -0.06355060636997223, 0.17412248253822327, 0.10850144922733307, 0.055147044360637665, -0.005061978939920664, -0.060211099684238434, -0.2637923061847687, 0.01782979443669319, 0.07133541256189346, -0.0813574343919754, -0.2302856147289276, 0.09411810338497162, 0.028640320524573326, 0.022002819925546646, -0.19855335354804993, -0.0726708173751831, -0.10320259630680084, -0.002420836826786399, -0.02932616136968136, -0.1088075116276741, -0.013641121797263622, -0.0873015746474266, -0.10268814116716385, 0.0667085200548172, 0.008050099946558475, -0.06755486875772476, -0.1561497300863266, -0.08170050382614136, 0.179825559258461, 0.05355480685830116, -0.03656282648444176, 0.08073992282152176, 0.04545537754893303, 0.011233583092689514, -0.12122254818677902, 0.1144666001200676, -0.07459123432636261, 0.14402079582214355, -0.0005535227828659117, -0.006359714549034834, 0.1299252212047577, 0.07203417271375656, -0.039817314594984055, 0.07135383039712906, -0.10558950901031494, -0.09429217875003815, 0.11680778115987778, -0.14183665812015533, 0.0766686275601387, 0.2073429375886917, 0.19211210310459137, 0.0842500776052475, 0.18570859730243683, -0.0012584206415340304, 0.22184501588344574, 0.04531097039580345, -0.09784945100545883, 0.20186206698417664, 0.17179910838603973, 0.001988766947761178, -0.2965141832828522, 0.1267712116241455, -0.127410426735878, -0.003861521603539586, 0.03712436929345131, -0.22205975651741028, 0.18860282003879547, 0.20911097526550293, -0.044442471116781235, 0.3109656870365143, -0.18409109115600586, -0.03247576206922531, 0.19114091992378235, -0.011084062978625298, 0.4931497275829315, -0.10163630545139313, -0.07028510421514511, -0.13648764789104462, -0.008054264821112156, 0.17584700882434845, -0.12190699577331543, -0.0004389802343212068, -0.005104993004351854, 0.013896307907998562, -0.005146760493516922, -0.03448348864912987, 0.23980985581874847, 0.09304457157850266, 0.12087086588144302, -0.005309279076755047, 0.0805545225739479, 0.10240527242422104, -0.019660118967294693, 0.024177178740501404, -0.03256172314286232, 0.02920384891331196, -0.14233539998531342, -0.0295682642608881, 0.06535075604915619, 0.08260349184274673, -0.02072432078421116, -0.05853458121418953, 0.0368044450879097, -0.07363791763782501, -0.09251592308282852, -0.12098575383424759, 0.13483405113220215, -0.015832217410206795, -0.03105694241821766, 0.0013874992728233337, 0.11450918763875961, -0.04775524139404297, -0.05056677386164665, -0.10087641328573227, -0.06752447783946991, 0.11204835027456284, -0.2370452880859375, 0.03947017714381218, 0.05928860232234001, 0.08479785174131393, -0.07609273493289948, 0.04453562945127487, 0.05439576134085655, -0.011056789197027683, 0.09782756865024567, -0.09167841821908951, -0.07104592025279999, 0.041187483817338943, -0.07657048851251602, 0.05631404370069504, 0.1941586583852768, 0.03661859408020973, 0.05069156363606453, 0.02186671830713749, -0.08658574521541595, 0.09623008221387863, -0.05800666660070419, 0.11242514848709106, 0.06991832703351974, 0.0007670024060644209, -0.2084074765443802, 0.19234858453273773, -0.06099328026175499, -0.09105068445205688, 0.014686101116240025, 0.017802979797124863, -0.014411138370633125, -0.04624178633093834, 0.02219076082110405, 0.1799890547990799, -0.1867932230234146, -0.13643500208854675, 0.03859502449631691, -0.11141753196716309, 0.06902656704187393, 0.12594124674797058, 0.03146632760763168, 0.02997918426990509, -0.04266079515218735, -0.07980473339557648, -0.006141715683043003, -0.08761744946241379, -0.06234375759959221, 0.06177094951272011, 0.01095640193670988, -0.17574207484722137, -0.02742058038711548, 0.08821834623813629, -0.0840630903840065, -0.050453633069992065, 0.02330840937793255, 0.013462384231388569, -0.2161204069852829, -0.02737564779818058, 0.1396334022283554, 0.07283740490674973, -0.03180685639381409, -0.0008635222911834717, 0.023683885112404823, 0.022977592423558235, -0.09538034349679947, 0.10369689762592316, 0.00034226052230224013, 0.03592419624328613, -0.02407943643629551, 0.027814315631985664, -0.02926957979798317, 0.006263005547225475, 0.14677007496356964, 0.17296011745929718, -0.012050068005919456, 0.011683518998324871, -0.037776656448841095, -0.06870933622121811, -0.004137164447456598, 0.03208015859127045, 0.08840738236904144, 0.024836374446749687, -0.03538813814520836, 0.06650172919034958, -0.09775364398956299, 0.03191831335425377, -0.0734780877828598, -0.10446406900882721, 0.08233112841844559, -0.09763964265584946, -0.1035507470369339, 0.03953305259346962, -0.1610906422138214, 0.1514819711446762, 0.07202953845262527, -0.039358142763376236, 0.1235814094543457, 0.042970556765794754, 0.04220146685838699, -0.10735110938549042, -0.00029203988378867507, -0.09454675763845444, -0.17883385717868805, 0.1923479586839676, 0.09113184362649918, -0.04707271605730057, 0.5047630667686462, -0.06476136296987534, -0.219852477312088, -0.06521378457546234, 0.12925949692726135, 0.03414250165224075, 0.0015548417577520013, 0.368227481842041, 0.10518050193786621, 0.06749898940324783, -0.006283316761255264, 0.15617258846759796, 0.06317722797393799, 0.12773913145065308, 0.05361226946115494, 0.05118780583143234, 0.0025369147770106792, 0.08696375787258148, 0.010651026852428913, -0.1617821902036667, 0.09666670858860016, 0.05790697783231735, -0.0336017943918705, 0.008485025726258755, 0.12238393723964691, -0.09580124914646149, 0.04463115707039833, 0.026472419500350952, -0.07007074356079102, 0.014196001924574375, -0.05819644406437874, -0.1185685396194458, 0.04342080280184746, 0.00013352770474739373, -0.027936851605772972, 0.03729802370071411, -0.09584636241197586, 0.023447444662451744, 0.23387432098388672, 0.08824247866868973, 0.02215198054909706, -0.011735294945538044, -0.016006357967853546, 0.12525948882102966, 0.05078446865081787, -0.015126745216548443, -0.03218831494450569, 0.0036165809724479914, -0.18715357780456543, -0.03824981674551964, -0.017237750813364983, -0.07107345014810562, -0.008470739237964153, 0.10557486116886139, 0.03609803691506386, -0.04606503248214722, -0.06322908401489258, -0.008915449492633343, 0.09615891426801682, -0.11166012287139893, 0.12450174242258072, 0.01461248379200697, -0.012475995346903801, 0.03663468360900879, 0.028751084581017494, -0.04006316140294075, 0.10978095978498459, 0.05513805150985718, 0.051818013191223145, -0.0029223263263702393, 0.14562268555164337, 0.049219854176044464, -0.03761029988527298, -0.06711606681346893, -0.12239762395620346, 0.2328585535287857, -0.06992770731449127, -0.02424907684326172, 0.036146871745586395, 0.03872456029057503, 0.05864885076880455, 0.14700019359588623, -0.03626846894621849, 0.11238718032836914, -0.07626496255397797, -0.046227846294641495, -0.005253312643617392, -0.030962590128183365, -0.042223334312438965, 0.18956205248832703, 0.02857835777103901, -0.14656540751457214, -0.0723356083035469, 0.21349814534187317, -0.07236514985561371, 0.09124632924795151, 0.11521430313587189, -0.08018691092729568, -0.11066024750471115, 0.0073403348214924335, 0.11801379173994064, -0.029498668387532234, 0.05944719538092613, -0.020133748650550842, -0.008319349959492683, -0.10257519036531448, -0.0038556421641260386, -0.2969816029071808, -0.11357968300580978, -0.029142053797841072, 0.12334484606981277, 0.0527564212679863, 0.050107691437006, 0.09293841570615768, 0.0020941016264259815, 0.04880212992429733, -0.1211816743016243, 0.026937279850244522, 0.007743678987026215, -0.014980354346334934, -0.04397953301668167, 0.004174280446022749, -0.09868112951517105, -0.15949079394340515, 0.0167581494897604, -0.037297289818525314, -0.0574764646589756, 0.17019012570381165, -0.09954530745744705, 0.034625109285116196, -0.009829161688685417, -0.029552416875958443, 0.07985169440507889, -0.00825607217848301, 0.016610341146588326, -0.07985180616378784, -0.028592752292752266, 0.049584031105041504, 0.09493907541036606, -0.20198355615139008, -0.04671997204422951, -0.044474851340055466, -0.05877789482474327, 0.08856301754713058, 0.08000024408102036, -0.05803787708282471, 0.07818891853094101, -0.07058605551719666, 0.09428095072507858, 0.06098569184541702, -0.0394010953605175, 0.04623747617006302, -0.023626180365681648, 0.013977646827697754, 0.04159295931458473, 0.057222481817007065, -0.023943942040205002, -0.06344683468341827, -0.0691043809056282 ]
5990420a3ef72ae59e1afdf49ccae125fb51db11
# Dataset Card for "sq-anli_a1" [More Information needed](https://github.com/huggingface/datasets/blob/main/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
niv-al/sq-anli_a1
[ "language:sq", "region:us" ]
2023-02-08T11:48:40+00:00
{"language": ["sq"], "dataset_info": {"features": [{"name": "sentence1", "dtype": "string"}, {"name": "sentence2", "dtype": "string"}, {"name": "labels", "dtype": {"class_label": {"names": {"0": "entailment", "1": "neutral", "2": "contradiction"}}}}], "splits": [{"name": "train", "num_bytes": 5975530, "num_examples": 16946}, {"name": "validation", "num_bytes": 50063, "num_examples": 144}, {"name": "test", "num_bytes": 51311, "num_examples": 144}], "download_size": 2167104, "dataset_size": 6076904}}
2023-02-18T19:58:41+00:00
[]
[ "sq" ]
TAGS #language-Albanian #region-us
# Dataset Card for "sq-anli_a1" More Information needed
[ "# Dataset Card for \"sq-anli_a1\"\n\nMore Information needed" ]
[ "TAGS\n#language-Albanian #region-us \n", "# Dataset Card for \"sq-anli_a1\"\n\nMore Information needed" ]
[ 11, 18 ]
[ "passage: TAGS\n#language-Albanian #region-us \n# Dataset Card for \"sq-anli_a1\"\n\nMore Information needed" ]
[ -0.12715820968151093, 0.032616082578897476, -0.0034397942945361137, 0.13039085268974304, 0.07717191427946091, 0.02568514086306095, 0.26745760440826416, 0.02023239992558956, 0.2215973138809204, -0.013849128969013691, 0.11015907675027847, -0.034932639449834824, 0.07065005600452423, 0.14056053757667542, -0.08915916830301285, -0.10887801647186279, 0.03085337206721306, -0.0558071993291378, -0.021518053486943245, 0.016997823491692543, 0.03535819798707962, -0.02050722949206829, 0.05226745828986168, -0.13010886311531067, -0.195853590965271, 0.12762029469013214, -0.06976005434989929, -0.09590794891119003, -0.008746589533984661, -0.025173699483275414, 0.05854403227567673, -0.019762074574828148, -0.010502703487873077, -0.11794421076774597, 0.036374129354953766, -0.0634331926703453, -0.013052073307335377, -0.0403887964785099, 0.015959104523062706, -0.17589804530143738, -0.14150452613830566, -0.04566848278045654, -0.08862394094467163, -0.10301674157381058, -0.09897594153881073, -0.16352251172065735, 0.04933113977313042, 0.010069693438708782, 0.007308781612664461, -0.0722949281334877, 0.03725002333521843, 0.0012380891712382436, -0.17582181096076965, 0.0670287162065506, -0.00935367215424776, -0.07062163949012756, 0.013137164525687695, -0.07950405776500702, -0.03619919344782829, 0.2048504501581192, 0.010052780620753765, 0.067923903465271, 0.08984756469726562, -0.09830653667449951, -0.18423984944820404, -0.08316858112812042, -0.1727343201637268, 0.03305840864777565, 0.006020489148795605, -0.07082833349704742, 0.38323289155960083, 0.07977189868688583, 0.054411470890045166, 0.12854693830013275, 0.07785716652870178, 0.09228001534938812, 0.01604696922004223, -0.022730352357029915, -0.09659433364868164, -0.026198968291282654, 0.1351398527622223, -0.041050221771001816, -0.08710885792970657, -0.044320885092020035, -0.07955058664083481, 0.30642735958099365, 0.06902986019849777, 0.10204960405826569, -0.08619658648967743, -0.03454047441482544, -0.18528538942337036, -0.03004785068333149, 0.05013887211680412, -0.0016081080539152026, -0.05393727123737335, 0.06425916403532028, 0.06824381649494171, 0.023239891976118088, 0.1355259269475937, 0.018819430842995644, 0.08310995250940323, -0.058573320508003235, -0.045429594814777374, 0.15746144950389862, 0.05370739847421646, -0.08377612382173538, 0.12920135259628296, -0.10099832713603973, -0.08860165625810623, -0.08760256320238113, -0.033519208431243896, -0.10689812153577805, -0.14626441895961761, -0.06880947202444077, -0.1289486289024353, 0.15125492215156555, -0.08706582337617874, -0.09436725080013275, -0.0021336523350328207, -0.0483475998044014, 0.06061715632677078, -0.12840218842029572, -0.04122629389166832, -0.0565335638821125, 0.004410587251186371, 0.014452830888330936, -0.18162895739078522, 0.07705201208591461, -0.12233591079711914, 0.006851499900221825, 0.12004716694355011, 0.006353385280817747, 0.055721648037433624, 0.02094254642724991, 0.02797057293355465, -0.08593764901161194, 0.03687310591340065, -0.17124123871326447, -0.14540351927280426, 0.07875567674636841, 0.014910420402884483, -0.034641917794942856, 0.16759830713272095, -0.03162064030766487, 0.13468824326992035, -0.028490372002124786, -0.084145687520504, -0.0699046179652214, -0.09757717698812485, -0.02172352746129036, 0.0078731719404459, 0.05885111540555954, -0.1609722226858139, 0.08761139214038849, -0.05667693167924881, 0.007699164561927319, 0.03173130378127098, 0.03654574975371361, -0.1010863184928894, -0.006271573714911938, -0.02583848126232624, 0.04636790603399277, -0.07954268157482147, -0.03973086178302765, -0.036647118628025055, 0.0386393703520298, -0.191833034157753, -0.09975489228963852, 0.02751265838742256, -0.15124726295471191, -0.15595069527626038, 0.17233504354953766, -0.00009295908967033029, 0.06297650933265686, 0.05423760414123535, 0.42303699254989624, -0.058984022587537766, 0.11528743803501129, -0.03941699117422104, 0.0824933871626854, -0.052319154143333435, -0.22672244906425476, 0.12823711335659027, 0.018221408128738403, 0.09749205410480499, 0.07234068959951401, -0.020717477425932884, 0.001739316270686686, -0.03162749856710434, -0.06466244906187057, -0.08570581674575806, -0.1302957981824875, 0.03315725550055504, 0.07708130776882172, 0.003364494303241372, -0.04256056621670723, 0.05826469510793686, -0.14016656577587128, 0.05986745283007622, -0.03129664063453674, 0.07893407344818115, 0.007361374795436859, 0.27567413449287415, -0.1148090809583664, 0.010371719487011433, -0.13070371747016907, 0.06154754012823105, -0.010231362655758858, -0.002953906776383519, 0.09484942257404327, -0.028943726792931557, 0.05381391942501068, -0.019435832276940346, 0.025887973606586456, 0.09512186050415039, 0.1538032442331314, 0.09625176340341568, -0.01705862581729889, -0.18125060200691223, 0.042816199362277985, -0.006330321077257395, -0.008621002547442913, -0.08859703689813614, -0.09952079504728317, 0.01646599918603897, 0.09387663751840591, -0.009071369655430317, 0.061116766184568405, -0.09739745408296585, 0.02291879616677761, -0.013410390354692936, -0.00491757970303297, -0.016042860224843025, -0.04704931378364563, 0.032655980437994, 0.11928579956293106, 0.016390055418014526, 0.2568662166595459, 0.09588588029146194, -0.060810767114162445, 0.033706892281770706, -0.06742216646671295, 0.0591270849108696, -0.020637204870581627, 0.05179458111524582, 0.06649047881364822, 0.024601934477686882, -0.015974795445799828, 0.08058219403028488, -0.062230534851551056, 0.13293017446994781, 0.028236424550414085, -0.035035837441682816, -0.02503623254597187, 0.16044612228870392, 0.13790901005268097, -0.2732972502708435, 0.1245427280664444, 0.26210618019104004, 0.03865731135010719, 0.22314804792404175, 0.004091314971446991, -0.13217806816101074, -0.01110006496310234, 0.06193949282169342, -0.01839718222618103, 0.14073002338409424, -0.14915069937705994, -0.06151646003127098, 0.09614447504281998, 0.024228844791650772, -0.036000221967697144, -0.021793939173221588, -0.08432943373918533, -0.01010720431804657, -0.04732554405927658, -0.1802217811346054, -0.07579600065946579, -0.015231018885970116, 0.1289987862110138, -0.0031292818021029234, -0.07874493300914764, 0.03815814107656479, -0.02316967584192753, -0.0010088939452543855, 0.09653940051794052, -0.05771045386791229, -0.21174116432666779, -0.025164667516946793, -0.1128774881362915, -0.03762161359190941, -0.05385380610823631, 0.02560344897210598, -0.22409802675247192, -0.050194669514894485, 0.07755083590745926, -0.09690944850444794, -0.08707893639802933, -0.07525317370891571, -0.0424351841211319, 0.028645025566220284, -0.1850774735212326, -0.07824455201625824, -0.0008533608051948249, -0.1343567967414856, 0.13103890419006348, 0.050129398703575134, -0.16816268861293793, 0.11461493372917175, 0.0976516604423523, -0.026825426146388054, 0.1474805474281311, -0.041816696524620056, -0.012753654271364212, -0.15659675002098083, -0.00133647455368191, 0.03438640013337135, -0.1214977502822876, 0.03209732472896576, 0.18624339997768402, 0.07764654606580734, -0.010602801106870174, -0.03098520077764988, -0.004247836768627167, -0.15096478164196014, -0.21396329998970032, -0.13063611090183258, -0.08157739043235779, -0.03924380615353584, -0.0278855562210083, 0.05445936694741249, -0.06486020982265472, 0.00920816045254469, 0.08122032135725021, -0.09368684142827988, -0.14211885631084442, -0.038977332413196564, 0.10857696086168289, 0.000175119552295655, 0.08027496933937073, -0.11841685324907303, 0.003675661515444517, 0.21263432502746582, 0.22260332107543945, 0.3300108015537262, 0.030702514573931694, 0.14649713039398193, 0.007934247143566608, 0.21390676498413086, 0.032230179756879807, -0.04075026139616966, 0.13164369761943817, -0.001029487350024283, 0.06115118786692619, -0.032568834722042084, 0.09020236134529114, -0.005735152866691351, 0.024231301620602608, -0.11111804097890854, 0.1045389175415039, -0.0012513109249994159, 0.09853765368461609, -0.07981883734464645, 0.039742402732372284, -0.12247422337532043, 0.02693985588848591, -0.054222214967012405, 0.019675029441714287, -0.11147552728652954, 0.035435087978839874, 0.034885942935943604, -0.04467501863837242, -0.052004605531692505, 0.03944029286503792, 0.0639343112707138, -0.14836682379245758, 0.010211006738245487, -0.07041264325380325, -0.1353599578142166, -0.05227481946349144, 0.14774267375469208, -0.08250890672206879, 0.31219083070755005, 0.05939191207289696, 0.05339345335960388, -0.07871698588132858, -0.019637078046798706, 0.04501977935433388, 0.11452666670084, 0.16361860930919647, 0.033489033579826355, 0.0097737368196249, -0.2930036783218384, -0.08353427052497864, 0.06762879341840744, 0.20416980981826782, 0.061333149671554565, -0.1606922745704651, 0.0022219938691705465, 0.03596885874867439, -0.02658856473863125, -0.12130354344844818, -0.10933342576026917, -0.07982287555932999, 0.1477673351764679, 0.19006820023059845, -0.23008380830287933, 0.11709026992321014, -0.12150722742080688, -0.07946683466434479, 0.18885469436645508, 0.0795549750328064, -0.10300707072019577, -0.10247942805290222, -0.06005334481596947, 0.07380624860525131, -0.02355448715388775, -0.03822045028209686, -0.02453204058110714, -0.039790697395801544, -0.036423880606889725, -0.11615581065416336, -0.028825560584664345, -0.05873185768723488, 0.12399044632911682, -0.07323512434959412, 0.00011446756252553314, 0.048113007098436356, -0.01552593894302845, 0.025190573185682297, 0.03708654269576073, -0.05901305750012398, -0.054939284920692444, 0.06265102326869965, -0.2414400726556778, -0.012538302689790726, 0.09200388938188553, -0.027612516656517982, 0.05184921249747276, -0.046837933361530304, -0.09051551669836044, 0.11925340443849564, 0.09250274300575256, -0.004649064037948847, 0.11484222859144211, 0.1938295215368271, -0.0652334913611412, -0.15080414712429047, -0.05352986603975296, -0.07212212681770325, 0.005586304236203432, 0.02324625663459301, -0.12868890166282654, 0.22025856375694275, 0.16120031476020813, -0.03218931704759598, 0.2246665209531784, -0.10001769661903381, -0.03638964891433716, 0.24641776084899902, -0.0624581016600132, 0.35286426544189453, -0.0941212996840477, -0.02245214954018593, -0.003268944099545479, -0.06689716130495071, 0.04262393340468407, 0.04123895242810249, 0.005653672851622105, -0.001903484226204455, 0.05213812366127968, -0.021873587742447853, 0.032860398292541504, 0.15961596369743347, 0.09623520076274872, 0.01750428043305874, -0.1403590738773346, -0.17694823443889618, 0.039848364889621735, -0.08537967503070831, -0.0030544744804501534, -0.03761330991983414, -0.030866829678416252, -0.2237200140953064, -0.06736543029546738, 0.06128935515880585, -0.0789475291967392, 0.11021973192691803, -0.041901130229234695, -0.041824862360954285, -0.08113353699445724, -0.04712357744574547, 0.0651630163192749, 0.06983303278684616, 0.046512242406606674, -0.0814601480960846, -0.026794979348778725, 0.024742387235164642, -0.2023918777704239, -0.05606188252568245, -0.12473763525485992, -0.021258505061268806, 0.06988269835710526, -0.12163472920656204, 0.06020401418209076, 0.16767072677612305, -0.02313806302845478, -0.011065583676099777, -0.02216247282922268, -0.0443204827606678, 0.053592611104249954, 0.10325498878955841, -0.027691343799233437, -0.01779821515083313, 0.06393690407276154, -0.16007506847381592, 0.13446611166000366, 0.03199955075979233, -0.048527367413043976, 0.007586423307657242, 0.04601626098155975, -0.030428074300289154, -0.012669104151427746, 0.0011668085353448987, 0.010276666842401028, 0.1751507669687271, -0.0234416201710701, -0.13255150616168976, 0.19264458119869232, 0.09744689613580704, -0.062248505651950836, 0.11508224159479141, -0.025020122528076172, -0.10278664529323578, -0.02933141030371189, -0.020685801282525063, 0.15697774291038513, -0.08957688510417938, -0.26469138264656067, -0.0477568544447422, -0.02717098779976368, -0.011977903544902802, 0.0396590456366539, 0.06799525767564774, -0.08631202578544617, -0.031830400228500366, -0.06922037899494171, 0.031778156757354736, 0.1162543073296547, 0.011444339528679848, 0.00274676107801497, 0.08030703663825989, -0.23497311770915985, -0.014233389869332314, 0.1984148770570755, -0.04243263974785805, -0.13151954114437103, 0.0652715414762497, 0.10722856968641281, -0.22817426919937134, 0.08006656169891357, 0.03342081233859062, 0.01752021349966526, 0.01769539713859558, -0.11852376908063889, -0.06757505238056183, -0.020832175388932228, -0.07566651701927185, 0.10523966699838638, 0.09789929538965225, 0.03654785454273224, -0.17082059383392334, -0.09386713057756424, 0.019564533606171608, 0.11746355146169662, 0.03835009038448334, 0.11578236520290375, -0.059534911066293716, 0.09245575964450836, -0.13888651132583618, -0.0418257936835289, 0.06682263314723969, 0.10253547877073288, 0.14585070312023163, 0.06021762266755104, -0.02950245328247547, 0.10902434587478638, 0.004397046286612749, 0.056929562240839005, 0.11635367572307587, -0.000008490670552419033, 0.05542232468724251, -0.1298435628414154, -0.1466914564371109, 0.011134552769362926, 0.1261645257472992, 0.06673427671194077, 0.04537145793437958, -0.08397943526506424, 0.0709344744682312, -0.01736101508140564, 0.071442149579525, -0.0011348259868100286, 0.0643414705991745, -0.15572489798069, 0.019021138548851013, 0.011248310096561909, -0.0193678829818964, -0.029066791757941246, 0.38832712173461914, 0.05310855433344841, -0.06242145225405693, -0.03261962905526161, -0.007624618709087372, -0.06619690358638763, -0.09526916593313217, 0.13266916573047638, 0.12264347076416016, -0.0017909479793161154, -0.15048162639141083, 0.008184281177818775, 0.032156117260456085, 0.10042402148246765, 0.05527283251285553, 0.13847489655017853, 0.13760027289390564, 0.020084915682673454, -0.024012725800275803, -0.09812422096729279, 0.03473418578505516, -0.0242625679820776, -0.129896342754364, 0.11723904311656952, 0.1029965728521347, 0.05716792121529579, 0.16249322891235352, 0.006826362106949091, -0.0054521504789590836, -0.0037346752360463142, -0.08816918730735779, -0.04302635416388512, -0.24010920524597168, 0.003787977620959282, -0.08601689338684082, -0.005739602725952864, -0.08550439774990082, 0.0656704381108284, 0.2972133755683899, 0.12190449237823486, 0.04537331685423851, 0.0168085265904665, 0.024131687358021736, 0.05988399311900139, 0.07811928540468216, -0.12263865768909454, 0.05756876990199089, -0.01236723456531763, -0.10491841286420822, 0.005741415545344353, -0.08127138018608093, -0.01278968621045351, 0.028284480795264244, 0.07655289024114609, -0.00863149855285883, -0.1942318230867386, -0.057104382663965225, -0.058552294969558716, 0.04925315082073212, -0.045950185507535934, 0.08588079363107681, 0.07335370779037476, 0.08904111385345459, 0.05472880229353905, 0.02833990752696991, 0.1577148735523224, 0.016981929540634155, -0.043308719992637634, -0.20331507921218872, -0.03277064859867096, 0.01906418800354004, -0.0519915409386158, -0.12184352427721024, -0.05424578860402107, 0.1478516012430191, 0.23885270953178406, 0.04002105072140694, 0.016563283279538155, 0.008937474340200424, 0.03775058314204216, 0.028319166973233223, 0.0943838357925415, -0.052279032766819, 0.0074096303433179855, 0.041176363825798035, -0.1370886117219925, 0.0039014120120555162, -0.041548676788806915, -0.08338840305805206, 0.15859106183052063, 0.08384928852319717, -0.09698734432458878, -0.0820038840174675, 0.16804960370063782, -0.03881964832544327, 0.10216246545314789, 0.1184655949473381, -0.0984734296798706, -0.205888032913208, -0.029773015528917313, 0.059583596885204315, 0.06485007703304291, -0.026508338749408722, -0.10295893996953964, -0.11194249987602234, -0.0904136672616005, 0.07651627063751221, -0.15517115592956543, -0.18551315367221832, 0.04612509161233902, -0.09285710752010345, 0.059100452810525894, 0.020832255482673645, 0.19152899086475372, -0.017415078356862068, 0.04343613609671593, -0.01646162010729313, 0.05068764090538025, 0.06911557912826538, 0.18714185059070587, 0.018526606261730194, 0.008002729155123234, -0.10288048535585403, 0.02318068966269493, 0.11637068539857864, 0.1900080144405365, 0.0010972190648317337, -0.0077517591416835785, -0.06541609019041061, -0.0459853820502758, 0.030338555574417114, -0.1352967619895935, 0.07579544931650162, 0.07623688131570816, 0.025879966095089912, 0.005845592822879553, -0.09171508997678757, 0.015124179422855377, 0.07646037638187408, -0.18046601116657257, -0.10144007205963135, 0.06934846937656403, -0.008063754066824913, 0.058760445564985275, 0.1174846887588501, -0.04047900810837746, 0.06804973632097244, -0.06922244280576706, 0.01726103574037552, 0.0565200038254261, 0.042521290481090546, 0.23035109043121338, 0.02531173638999462, -0.0311804860830307, -0.04567064344882965, 0.09778154641389847, -0.0007935571484267712, 0.02446720376610756, -0.071034736931324 ]
94248bf8d553b31edcc8e6ede37eebe07ae69b6f
# Dataset Card for "sq-anli_a2" [More Information needed](https://github.com/huggingface/datasets/blob/main/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
niv-al/sq-anli_a2
[ "language:sq", "region:us" ]
2023-02-08T11:48:55+00:00
{"language": ["sq"], "dataset_info": {"features": [{"name": "sentence1", "dtype": "string"}, {"name": "sentence2", "dtype": "string"}, {"name": "labels", "dtype": {"class_label": {"names": {"0": "entailment", "1": "neutral", "2": "contradiction"}}}}], "splits": [{"name": "train", "num_bytes": 10416951, "num_examples": 30000}, {"name": "validation", "num_bytes": 49978, "num_examples": 144}, {"name": "test", "num_bytes": 51667, "num_examples": 144}], "download_size": 5905662, "dataset_size": 10518596}}
2023-02-18T19:58:51+00:00
[]
[ "sq" ]
TAGS #language-Albanian #region-us
# Dataset Card for "sq-anli_a2" More Information needed
[ "# Dataset Card for \"sq-anli_a2\"\n\nMore Information needed" ]
[ "TAGS\n#language-Albanian #region-us \n", "# Dataset Card for \"sq-anli_a2\"\n\nMore Information needed" ]
[ 11, 18 ]
[ "passage: TAGS\n#language-Albanian #region-us \n# Dataset Card for \"sq-anli_a2\"\n\nMore Information needed" ]
[ -0.12425799667835236, 0.05182952806353569, -0.0034424741752445698, 0.13301236927509308, 0.07319033145904541, 0.021217020228505135, 0.27102261781692505, 0.02228507399559021, 0.2201119065284729, -0.018611520528793335, 0.10482311993837357, -0.036383748054504395, 0.07635460793972015, 0.1514258235692978, -0.09119429439306259, -0.11077871173620224, 0.028131579980254173, -0.0534057542681694, -0.02269531413912773, 0.018480783328413963, 0.03531656786799431, -0.023011397570371628, 0.05219925567507744, -0.1333983838558197, -0.20336268842220306, 0.12707479298114777, -0.06754395365715027, -0.0962439626455307, -0.009570636786520481, -0.02432943880558014, 0.0586831234395504, -0.021503053605556488, -0.008685575798153877, -0.11716432124376297, 0.03669468313455582, -0.06345754861831665, -0.013659744523465633, -0.038513727486133575, 0.02262832224369049, -0.1651657372713089, -0.1325380504131317, -0.03900903835892677, -0.09528180956840515, -0.10514996200799942, -0.09619827568531036, -0.1600663959980011, 0.04118656367063522, 0.014194773510098457, 0.0120698232203722, -0.08091728389263153, 0.03779398277401924, 0.00670554069802165, -0.1732192188501358, 0.06317246705293655, -0.004688475281000137, -0.07936251908540726, 0.010610020719468594, -0.08478498458862305, -0.026970311999320984, 0.20119772851467133, 0.014769879169762135, 0.0679817795753479, 0.08395427465438843, -0.0946730375289917, -0.18086910247802734, -0.08580951392650604, -0.18657124042510986, 0.03435428440570831, 0.00356091745197773, -0.07153467833995819, 0.37883418798446655, 0.07891605794429779, 0.053776443004608154, 0.12901823222637177, 0.07083455473184586, 0.10912176966667175, 0.01873517595231533, -0.026893585920333862, -0.09558331966400146, -0.021300124004483223, 0.12894152104854584, -0.05550716444849968, -0.09175869077444077, -0.04832124710083008, -0.07892387360334396, 0.31344667077064514, 0.06575856357812881, 0.10162970423698425, -0.08953125774860382, -0.030630065128207207, -0.18266378343105316, -0.027620716020464897, 0.04918438941240311, -0.008188912644982338, -0.05306385084986687, 0.07080588489770889, 0.06920071691274643, 0.020152442157268524, 0.13048429787158966, 0.01599804311990738, 0.0902966633439064, -0.060242921113967896, -0.04587254673242569, 0.16402994096279144, 0.04839618131518364, -0.08888878673315048, 0.12399625778198242, -0.11301463842391968, -0.08528608828783035, -0.09050358831882477, -0.02645086869597435, -0.1136637032032013, -0.14586278796195984, -0.07177567481994629, -0.13489295542240143, 0.14746569097042084, -0.07817528396844864, -0.10309368371963501, -0.00869061890989542, -0.04819517210125923, 0.05861673504114151, -0.1261761635541916, -0.036204252392053604, -0.056258510798215866, 0.0057115196250379086, 0.007819294929504395, -0.17759911715984344, 0.08747708797454834, -0.12415355443954468, 0.002446624217554927, 0.12480662018060684, 0.00479230098426342, 0.054862238466739655, 0.021579168736934662, 0.030643271282315254, -0.07499126344919205, 0.036957960575819016, -0.17272436618804932, -0.14187832176685333, 0.08482189476490021, 0.013405218720436096, -0.031202103942632675, 0.1673646718263626, -0.022510278970003128, 0.13724005222320557, -0.030623381957411766, -0.08774015307426453, -0.07729775458574295, -0.09517200291156769, -0.023081859573721886, 0.0046199411153793335, 0.05765034630894661, -0.17193448543548584, 0.08247952163219452, -0.054008714854717255, 0.01081081572920084, 0.04210054874420166, 0.032737474888563156, -0.09025362879037857, -0.015062866732478142, -0.023728853091597557, 0.047676872462034225, -0.07875821739435196, -0.04153634235262871, -0.030147889629006386, 0.03961363434791565, -0.2022697776556015, -0.10090218484401703, 0.03627125918865204, -0.14608582854270935, -0.1578339785337448, 0.17550332844257355, 0.0005718854372389615, 0.05987675487995148, 0.05411369726061821, 0.4193879961967468, -0.05978754535317421, 0.11890706419944763, -0.040818750858306885, 0.08293478935956955, -0.05115992948412895, -0.22804588079452515, 0.1311083436012268, 0.02325214445590973, 0.10879598557949066, 0.0659959688782692, -0.026453491300344467, -0.0010549878934398293, -0.029254259541630745, -0.06797052174806595, -0.08589500188827515, -0.13091523945331573, 0.040475208312273026, 0.07712945342063904, -0.002404898637905717, -0.04260498285293579, 0.05936525762081146, -0.12297453731298447, 0.05816579610109329, -0.03970817103981972, 0.08340849727392197, 0.0033201021142303944, 0.28104886412620544, -0.1126745268702507, 0.007534623146057129, -0.12957803905010223, 0.06495916843414307, -0.006176384165883064, -0.013838016428053379, 0.0931311771273613, -0.02833813615143299, 0.05607223883271217, -0.009924870915710926, 0.0240007434040308, 0.09438154101371765, 0.14000852406024933, 0.0954272523522377, -0.020917924121022224, -0.1797596663236618, 0.03336097300052643, -0.005056343972682953, -0.010071629658341408, -0.09236831218004227, -0.0980716347694397, 0.031060291454195976, 0.10775723308324814, -0.0063203126192092896, 0.059372082352638245, -0.09682361036539078, 0.018605045974254608, -0.016002628952264786, -0.0059832921251654625, -0.017471974715590477, -0.04418828710913658, 0.031550027430057526, 0.12472783029079437, 0.012223373167216778, 0.2580866813659668, 0.0987200140953064, -0.05212736129760742, 0.04756982997059822, -0.06721252202987671, 0.05788300931453705, -0.024736372753977776, 0.05395562946796417, 0.06750229001045227, 0.020946629345417023, -0.015539557673037052, 0.07794365286827087, -0.06905870884656906, 0.13013561069965363, 0.026586584746837616, -0.0369352288544178, -0.02397764101624489, 0.15229053795337677, 0.13762259483337402, -0.28324222564697266, 0.12498854100704193, 0.2729160189628601, 0.034206487238407135, 0.2247011810541153, 0.017072929069399834, -0.1321437954902649, -0.013239221647381783, 0.06263283640146255, -0.01796494610607624, 0.1403016895055771, -0.13352738320827484, -0.05450398102402687, 0.09840752929449081, 0.01914680376648903, -0.033390551805496216, -0.024723706766963005, -0.08178538084030151, -0.010939262807369232, -0.04743651673197746, -0.17921358346939087, -0.07678933441638947, -0.01872093789279461, 0.13035820424556732, -0.0020103638526052237, -0.07167600840330124, 0.041904810816049576, -0.022526005282998085, -0.0014841922093182802, 0.09324850887060165, -0.05849122628569603, -0.21629855036735535, -0.025385824963450432, -0.10879964381456375, -0.03715067356824875, -0.046397048979997635, 0.0261284951120615, -0.2140180915594101, -0.04619606211781502, 0.0765574499964714, -0.11117425560951233, -0.08093108236789703, -0.0716511532664299, -0.04931921511888504, 0.03491457179188728, -0.17881254851818085, -0.0773145854473114, 0.0024849206674844027, -0.1269455850124359, 0.13601335883140564, 0.048371270298957825, -0.1662958264350891, 0.12105672806501389, 0.09333180636167526, -0.028159499168395996, 0.14432962238788605, -0.04045204818248749, -0.02194516733288765, -0.15728722512722015, -0.0005591802764683962, 0.04793662950396538, -0.13079050183296204, 0.036433909088373184, 0.18053489923477173, 0.07389119267463684, -0.01089411973953247, -0.031409233808517456, -0.010139551013708115, -0.15566422045230865, -0.216995969414711, -0.12919144332408905, -0.08614320307970047, -0.04059384763240814, -0.03105265460908413, 0.052450910210609436, -0.07589154690504074, 0.006938350852578878, 0.0720292404294014, -0.0927184671163559, -0.14100214838981628, -0.03557469695806503, 0.08867637813091278, -0.001594158704392612, 0.08250351995229721, -0.11813980340957642, 0.005805233959108591, 0.22151683270931244, 0.22867554426193237, 0.319812536239624, 0.028127174824476242, 0.1263914853334427, 0.004218677524477243, 0.22033481299877167, 0.033485520631074905, -0.04396604374051094, 0.13392549753189087, 0.0034464087802916765, 0.06201108917593956, -0.03266512230038643, 0.08364550024271011, 0.0037711244076490402, 0.0404268316924572, -0.1133156269788742, 0.11102451384067535, -0.0020802842918783426, 0.10227343440055847, -0.07150723785161972, 0.04494427889585495, -0.1290116012096405, 0.030000125989317894, -0.04599707946181297, 0.023196343332529068, -0.1127394363284111, 0.02844785712659359, 0.052848804742097855, -0.049351807683706284, -0.04712637886404991, 0.03481568023562431, 0.06079869717359543, -0.14941620826721191, 0.0053985570557415485, -0.06869803369045258, -0.14310617744922638, -0.04650961607694626, 0.14568792283535004, -0.07536573708057404, 0.3065118193626404, 0.057868633419275284, 0.051118895411491394, -0.07490836083889008, -0.0170407947152853, 0.043102048337459564, 0.10790418088436127, 0.16361071169376373, 0.03501003608107567, 0.0096046831458807, -0.2823065519332886, -0.08290630578994751, 0.0713401734828949, 0.2070249319076538, 0.05873635783791542, -0.1608753204345703, 0.003411984071135521, 0.036833036690950394, -0.02790025807917118, -0.12562328577041626, -0.10828831046819687, -0.07916727662086487, 0.15456828474998474, 0.18940499424934387, -0.22909510135650635, 0.11260983347892761, -0.11923084408044815, -0.06417109072208405, 0.21253803372383118, 0.060875054448843, -0.10169444978237152, -0.1028088629245758, -0.061779238283634186, 0.06954898685216904, -0.019930437207221985, -0.03427053242921829, -0.017635280266404152, -0.02376689203083515, -0.03519628942012787, -0.1178223267197609, -0.022643690928816795, -0.061233289539813995, 0.11627572774887085, -0.07370701432228088, 0.0009278162615373731, 0.05119609087705612, -0.014483941718935966, 0.030257929116487503, 0.03571697324514389, -0.05501966178417206, -0.05565778538584709, 0.06168708577752113, -0.2349747270345688, -0.0013554554898291826, 0.0900079607963562, -0.020727936178445816, 0.05327899754047394, -0.04092138633131981, -0.09080448001623154, 0.11660134792327881, 0.09215045720338821, -0.004240055102854967, 0.12155289947986603, 0.1968119889497757, -0.06702180951833725, -0.15308250486850739, -0.06022912636399269, -0.07394500821828842, 0.008847787044942379, 0.03012268617749214, -0.12365932017564774, 0.2104610651731491, 0.15854735672473907, -0.037107981741428375, 0.2040368765592575, -0.10146114975214005, -0.03623509034514427, 0.23934437334537506, -0.057685669511556625, 0.33592042326927185, -0.09040667116641998, -0.022815680131316185, -0.014120071195065975, -0.06865060329437256, 0.05343107134103775, 0.010736014693975449, 0.002554727718234062, -0.0007189157768152654, 0.047715090215206146, -0.02223743498325348, 0.03344372659921646, 0.16519050300121307, 0.08277667313814163, 0.010194987989962101, -0.14201360940933228, -0.170758917927742, 0.04668113961815834, -0.08736474812030792, -0.014582917094230652, -0.04613097012042999, -0.028267530724406242, -0.22977590560913086, -0.06577181071043015, 0.07008274644613266, -0.07931769639253616, 0.11167312413454056, -0.045748353004455566, -0.04309060424566269, -0.08549787104129791, -0.04242789000272751, 0.07221931964159012, 0.06121227145195007, 0.05055052042007446, -0.08515648543834686, -0.01372723188251257, 0.0323387011885643, -0.18836867809295654, -0.04926310107111931, -0.12837593257427216, -0.01977609284222126, 0.06954257935285568, -0.12074269354343414, 0.06514132022857666, 0.16547474265098572, -0.021952036768198013, -0.020009737461805344, -0.0241659227758646, -0.047987811267375946, 0.058840520679950714, 0.10321427881717682, -0.038960158824920654, -0.01240114402025938, 0.06885380297899246, -0.14265799522399902, 0.12986430525779724, 0.031070582568645477, -0.03881632164120674, 0.005325581878423691, 0.04288525879383087, -0.030088653787970543, -0.008528456091880798, -0.0066523305140435696, 0.010285531170666218, 0.17464424669742584, -0.029366422444581985, -0.13032524287700653, 0.19003960490226746, 0.09160677343606949, -0.05351048707962036, 0.11554261296987534, -0.0280564296990633, -0.10278931260108948, -0.028340835124254227, -0.011018048971891403, 0.1361229419708252, -0.08764790743589401, -0.27439311146736145, -0.04512740671634674, -0.01980741135776043, -0.014904415234923363, 0.030918041244149208, 0.06955260783433914, -0.08366715908050537, -0.03357024863362312, -0.07041992247104645, 0.03916103392839432, 0.1092768982052803, 0.015046865679323673, 0.005128554999828339, 0.08232249319553375, -0.22870372235774994, -0.016728626564145088, 0.19496215879917145, -0.04304248094558716, -0.12538620829582214, 0.06638069450855255, 0.10668551921844482, -0.22804410755634308, 0.07861633598804474, 0.03582135960459709, 0.014901561662554741, 0.007101195864379406, -0.12097429484128952, -0.07280834764242172, -0.02105674520134926, -0.07287357747554779, 0.10437557846307755, 0.09332728385925293, 0.03590866178274155, -0.1725301742553711, -0.09204647690057755, 0.02657298557460308, 0.1139078140258789, 0.03847402334213257, 0.11567294597625732, -0.05498170107603073, 0.09171938896179199, -0.13516555726528168, -0.048019617795944214, 0.07065536081790924, 0.11008451133966446, 0.1438359171152115, 0.06633128225803375, -0.02834676206111908, 0.11275913566350937, 0.004237300716340542, 0.05894889682531357, 0.1359981745481491, 0.0028233686462044716, 0.05165671184659004, -0.13950814306735992, -0.14761018753051758, 0.009669339284300804, 0.13093966245651245, 0.06775148957967758, 0.058662764728069305, -0.08807191997766495, 0.07466564327478409, -0.020632294937968254, 0.07358833402395248, 0.0005706194206140935, 0.06451919674873352, -0.1578952521085739, 0.02565370872616768, 0.013140812516212463, -0.01994997449219227, -0.02936577796936035, 0.3905310332775116, 0.04726448282599449, -0.06010264530777931, -0.03308366611599922, -0.02328460104763508, -0.061142005026340485, -0.09367283433675766, 0.12939076125621796, 0.1214069277048111, 0.0006745309801772237, -0.1471816599369049, 0.008601212874054909, 0.0313023142516613, 0.09278669208288193, 0.06017952784895897, 0.13887466490268707, 0.1387885957956314, 0.02304675057530403, -0.021146664395928383, -0.09551499783992767, 0.014112568460404873, -0.030783873051404953, -0.13273192942142487, 0.1155930832028389, 0.0991438701748848, 0.06621328741312027, 0.17049625515937805, -0.0032198093831539154, -0.0105946846306324, 0.0008053720812313259, -0.08909057825803757, -0.04439383000135422, -0.23373670876026154, -0.00014985149027779698, -0.08056211471557617, -0.009873326867818832, -0.08255059272050858, 0.06777498126029968, 0.28955575823783875, 0.1115773394703865, 0.0416996106505394, 0.007924634963274002, 0.02165386825799942, 0.05852103605866432, 0.07023821771144867, -0.12301857024431229, 0.059187863022089005, -0.0042528193444013596, -0.1147727370262146, -0.00014350280980579555, -0.06983323395252228, -0.0058485642075538635, 0.027423687279224396, 0.07531586289405823, -0.009789224714040756, -0.18864504992961884, -0.05387965589761734, -0.06222877278923988, 0.04417076334357262, -0.040779903531074524, 0.07341232150793076, 0.07877036184072495, 0.08692794293165207, 0.059397876262664795, 0.02686731144785881, 0.14709584414958954, 0.018437039107084274, -0.039304062724113464, -0.2063024342060089, -0.033071696758270264, 0.024061236530542374, -0.04977547749876976, -0.12126379460096359, -0.06302960962057114, 0.13997076451778412, 0.23043292760849, 0.029540318995714188, 0.020424097776412964, 0.013414452783763409, 0.03910832107067108, 0.022901412099599838, 0.09335245192050934, -0.05215654522180557, 0.011148926801979542, 0.04603634774684906, -0.14045597612857819, 0.003498283214867115, -0.045412201434373856, -0.0787099301815033, 0.17243923246860504, 0.07321473211050034, -0.0997510477900505, -0.08042967319488525, 0.17020638287067413, -0.03276398032903671, 0.09310364723205566, 0.11607089638710022, -0.09828559309244156, -0.20932693779468536, -0.01619294285774231, 0.058206088840961456, 0.05979231372475624, -0.028481315821409225, -0.10650913417339325, -0.11070038378238678, -0.09554325044155121, 0.08381102979183197, -0.15567664802074432, -0.17424985766410828, 0.04833695665001869, -0.10419697314500809, 0.0652618333697319, 0.01931125484406948, 0.1982155740261078, -0.015211349353194237, 0.04058840870857239, -0.016095435246825218, 0.046078264713287354, 0.07280420511960983, 0.1801871955394745, 0.02249540202319622, 0.011958053335547447, -0.11204113066196442, 0.022013181820511818, 0.11978178471326828, 0.2016824632883072, -0.002716394606977701, -0.015300218015909195, -0.05956578627228737, -0.04737197607755661, 0.02861667238175869, -0.1391945332288742, 0.07384853810071945, 0.06593578308820724, 0.01959412172436714, 0.005311299581080675, -0.08634388446807861, 0.016132777556777, 0.07090357691049576, -0.17672193050384521, -0.09456775337457657, 0.07116484642028809, -0.01260682474821806, 0.049169592559337616, 0.12233203649520874, -0.030180297791957855, 0.06764299422502518, -0.06995785981416702, 0.015526939183473587, 0.05478285998106003, 0.04911906644701958, 0.22644901275634766, 0.011714008636772633, -0.033269528299570084, -0.044816792011260986, 0.09065371751785278, -0.003502513514831662, 0.024052634835243225, -0.07603717595338821 ]