html_url
stringlengths
48
51
title
stringlengths
5
280
comments
stringlengths
63
51.8k
body
stringlengths
0
36.2k
comment_length
int64
16
1.52k
text
stringlengths
159
54.1k
embeddings
listlengths
768
768
https://github.com/huggingface/datasets/issues/3310
Fatal error condition occurred in aws-c-io
Hi, I also encountered the same problem, but I made an error on Ubuntu without using `datasets` as @Crabzmatic he wrote. At that time, I find my version of pyarrow is 9.0.0, which is different from as follow: > https://github.com/huggingface/datasets/issues/3310#issuecomment-1247390774 > Downgrading pyarrow to 6.0.1 solves the issue for me. > > `pip install pyarrow==6.0.1` As it happens, I found this error message when I introduced the [`Trainer`](https://huggingface.co/docs/transformers/main_classes/trainer) of HuggingFace For example, I write following code: ```python from transformers import Trainer print('Hugging Face') ``` I get the following error message: ```python Hugging Face Fatal error condition occurred in /opt/vcpkg/buildtrees/aws-c-io/src/9e6648842a-364b708815.clean/source/event_loop.c:72: aws_thread_launch(&cleanup_thread, s_event_loop_destroy_async_thread_fn, el_group, &thread_options) == AWS_OP_SUCCESS Exiting Application ################################################################################ Stack trace: ################################################################################ /home/ubuntu/anaconda3/envs/pytorch38/lib/python3.8/site-packages/pyarrow/libarrow.so.900(+0x200af06) [0x7fa9add1df06] /home/ubuntu/anaconda3/envs/pytorch38/lib/python3.8/site-packages/pyarrow/libarrow.so.900(+0x20028e5) [0x7fa9add158e5] /home/ubuntu/anaconda3/envs/pytorch38/lib/python3.8/site-packages/pyarrow/libarrow.so.900(+0x1f27e09) [0x7fa9adc3ae09] /home/ubuntu/anaconda3/envs/pytorch38/lib/python3.8/site-packages/pyarrow/libarrow.so.900(+0x200ba3d) [0x7fa9add1ea3d] /home/ubuntu/anaconda3/envs/pytorch38/lib/python3.8/site-packages/pyarrow/libarrow.so.900(+0x1f25948) [0x7fa9adc38948] /home/ubuntu/anaconda3/envs/pytorch38/lib/python3.8/site-packages/pyarrow/libarrow.so.900(+0x200ba3d) [0x7fa9add1ea3d] /home/ubuntu/anaconda3/envs/pytorch38/lib/python3.8/site-packages/pyarrow/libarrow.so.900(+0x1ee0b46) [0x7fa9adbf3b46] /home/ubuntu/anaconda3/envs/pytorch38/lib/python3.8/site-packages/pyarrow/libarrow.so.900(+0x194546a) [0x7fa9ad65846a] /lib/x86_64-linux-gnu/libc.so.6(+0x468d7) [0x7faa2fcfe8d7] /lib/x86_64-linux-gnu/libc.so.6(on_exit+0) [0x7faa2fcfea90] /lib/x86_64-linux-gnu/libc.so.6(__libc_start_main+0xfa) [0x7faa2fcdc0ba] /home/ubuntu/anaconda3/envs/pytorch38/bin/python(+0x1f9ad7) [0x5654571d1ad7] ``` But, when I remove the `Trainer` module from transformers, **everthing is OK**. So Why ? **Environment info** - Platform: Ubuntu 18 - Python version: 3.8 - PyArrow version: 9.0.0 - transformers: 4.22.1 - simpletransformers: 0.63.9
## Describe the bug Fatal error when using the library ## Steps to reproduce the bug ```python from datasets import load_dataset dataset = load_dataset('wikiann', 'en') ``` ## Expected results No fatal errors ## Actual results ``` Fatal error condition occurred in D:\bld\aws-c-io_1633633258269\work\source\event_loop.c:74: aws_thread_launch(&cleanup_thread, s_event_loop_destroy_async_thread_fn, el_group, &thread_options) == AWS_OP_SUCCESS Exiting Application ``` ## Environment info - `datasets` version: 1.15.2.dev0 - Platform: Windows-10-10.0.22504-SP0 - Python version: 3.8.12 - PyArrow version: 6.0.0
171
Fatal error condition occurred in aws-c-io ## Describe the bug Fatal error when using the library ## Steps to reproduce the bug ```python from datasets import load_dataset dataset = load_dataset('wikiann', 'en') ``` ## Expected results No fatal errors ## Actual results ``` Fatal error condition occurred in D:\bld\aws-c-io_1633633258269\work\source\event_loop.c:74: aws_thread_launch(&cleanup_thread, s_event_loop_destroy_async_thread_fn, el_group, &thread_options) == AWS_OP_SUCCESS Exiting Application ``` ## Environment info - `datasets` version: 1.15.2.dev0 - Platform: Windows-10-10.0.22504-SP0 - Python version: 3.8.12 - PyArrow version: 6.0.0 Hi, I also encountered the same problem, but I made an error on Ubuntu without using `datasets` as @Crabzmatic he wrote. At that time, I find my version of pyarrow is 9.0.0, which is different from as follow: > https://github.com/huggingface/datasets/issues/3310#issuecomment-1247390774 > Downgrading pyarrow to 6.0.1 solves the issue for me. > > `pip install pyarrow==6.0.1` As it happens, I found this error message when I introduced the [`Trainer`](https://huggingface.co/docs/transformers/main_classes/trainer) of HuggingFace For example, I write following code: ```python from transformers import Trainer print('Hugging Face') ``` I get the following error message: ```python Hugging Face Fatal error condition occurred in /opt/vcpkg/buildtrees/aws-c-io/src/9e6648842a-364b708815.clean/source/event_loop.c:72: aws_thread_launch(&cleanup_thread, s_event_loop_destroy_async_thread_fn, el_group, &thread_options) == AWS_OP_SUCCESS Exiting Application ################################################################################ Stack trace: ################################################################################ /home/ubuntu/anaconda3/envs/pytorch38/lib/python3.8/site-packages/pyarrow/libarrow.so.900(+0x200af06) [0x7fa9add1df06] /home/ubuntu/anaconda3/envs/pytorch38/lib/python3.8/site-packages/pyarrow/libarrow.so.900(+0x20028e5) [0x7fa9add158e5] /home/ubuntu/anaconda3/envs/pytorch38/lib/python3.8/site-packages/pyarrow/libarrow.so.900(+0x1f27e09) [0x7fa9adc3ae09] /home/ubuntu/anaconda3/envs/pytorch38/lib/python3.8/site-packages/pyarrow/libarrow.so.900(+0x200ba3d) [0x7fa9add1ea3d] /home/ubuntu/anaconda3/envs/pytorch38/lib/python3.8/site-packages/pyarrow/libarrow.so.900(+0x1f25948) [0x7fa9adc38948] /home/ubuntu/anaconda3/envs/pytorch38/lib/python3.8/site-packages/pyarrow/libarrow.so.900(+0x200ba3d) [0x7fa9add1ea3d] /home/ubuntu/anaconda3/envs/pytorch38/lib/python3.8/site-packages/pyarrow/libarrow.so.900(+0x1ee0b46) [0x7fa9adbf3b46] /home/ubuntu/anaconda3/envs/pytorch38/lib/python3.8/site-packages/pyarrow/libarrow.so.900(+0x194546a) [0x7fa9ad65846a] /lib/x86_64-linux-gnu/libc.so.6(+0x468d7) [0x7faa2fcfe8d7] /lib/x86_64-linux-gnu/libc.so.6(on_exit+0) [0x7faa2fcfea90] /lib/x86_64-linux-gnu/libc.so.6(__libc_start_main+0xfa) [0x7faa2fcdc0ba] /home/ubuntu/anaconda3/envs/pytorch38/bin/python(+0x1f9ad7) [0x5654571d1ad7] ``` But, when I remove the `Trainer` module from transformers, **everthing is OK**. So Why ? **Environment info** - Platform: Ubuntu 18 - Python version: 3.8 - PyArrow version: 9.0.0 - transformers: 4.22.1 - simpletransformers: 0.63.9
[ -0.29154035449028015, -0.13059498369693756, -0.02723829634487629, 0.13220462203025818, 0.25022441148757935, -0.15269169211387634, 0.12212036550045013, 0.16002236306667328, -0.22092066705226898, 0.12881675362586975, 0.05030180513858795, 0.3853166997432709, -0.1066560447216034, 0.0990060493350029, -0.06441794335842133, -0.2686641812324524, 0.18649084866046906, 0.2676379084587097, -0.3594491481781006, 0.21133656799793243, -0.06796099245548248, 0.5168519616127014, -0.13324573636054993, 0.2149326205253601, -0.3069344758987427, -0.17856810986995697, -0.11320021748542786, 0.19708624482154846, -0.19838467240333557, -0.5035899877548218, 0.396437406539917, -0.20754629373550415, 0.14720691740512848, 0.4576388895511627, -0.00012062202586093917, 0.08911804854869843, 0.20969578623771667, 0.21630042791366577, -0.1579345017671585, -0.1701384037733078, 0.14194589853286743, 0.015475617721676826, 0.23466555774211884, -0.2534853518009186, 0.07015415281057358, -0.007418244145810604, 0.03320113196969032, 0.22956395149230957, 0.41940122842788696, 0.3043854236602783, 0.14296753704547882, 0.8518807888031006, 0.3529202938079834, 0.03247907757759094, 0.2212073802947998, 0.05489317327737808, -0.2553974688053131, 0.4195934534072876, 0.04615795984864235, -0.3035126328468323, 0.09808135032653809, 0.02571571059525013, -0.10116231441497803, -0.06369975209236145, 0.29007795453071594, 0.07641343027353287, -0.03108201175928116, -0.31464508175849915, 0.11553297936916351, -0.00997595489025116, 0.08217321336269379, -0.5654688477516174, -0.30164897441864014, 0.010279498994350433, 0.022554706782102585, -0.28430312871932983, 0.36301711201667786, -0.01766233891248703, -0.20622287690639496, 0.20729593932628632, -0.17512279748916626, 0.1551566869020462, -0.23845915496349335, 0.18736550211906433, -0.09560815989971161, 0.07297922670841217, -0.2086777538061142, 0.1423196792602539, 0.17689374089241028, 0.10486988723278046, 0.014253664761781693, 0.03855336084961891, 0.029289299622178078, 0.22512884438037872, -0.41396114230155945, -0.10605642199516296, 0.0033629611134529114, 0.26924648880958557, 0.16348320245742798, -0.11627551913261414, -0.10940418392419815, -0.3880559206008911, 0.35593631863594055, 0.1685619354248047, -0.055213090032339096, -0.00893008429557085, -0.143510103225708, -0.05726632475852966, 0.1669149249792099, 0.31089502573013306, 0.13054941594600677, -0.024813052266836166, 0.07866402715444565, -0.37789246439933777, 0.14494799077510834, 0.042379289865493774, 0.4455859065055847, -0.11224447935819626, -0.3102298378944397, 0.26876112818717957, -0.4499855935573578, 0.14345736801624298, 0.03448706492781639, 0.39445987343788147, -0.11663195490837097, -0.17261844873428345, 0.12438192963600159, 0.1556360125541687, -0.3800269663333893, 0.23972168564796448, -0.1040908619761467, 0.11119306087493896, -0.2354820966720581, 0.008926993235945702, 0.07698431611061096, -0.471891850233078, 0.28942784667015076, 0.30230912566185, 0.32497638463974, -0.1465514600276947, -0.13641026616096497, 0.12152349948883057, -0.24087399244308472, 0.30722856521606445, -0.00865202210843563, 0.13636191189289093, -0.0296223945915699, 0.06577278673648834, -0.05107271671295166, 0.15048901736736298, -0.059651054441928864, -0.30669471621513367, -0.24503405392169952, 0.09103336930274963, -0.26807713508605957, 0.11545723676681519, -0.12000807374715805, -0.10817915201187134, 0.14076226949691772, -0.11609324812889099, 0.18097074329853058, -0.15496981143951416, 0.05907699093222618, -0.14815430343151093, 0.2444261610507965, 0.1454896777868271, -0.10383787751197815, -0.16823382675647736, 0.04261602461338043, -0.3065687417984009, 0.056702058762311935, 0.4284476041793823, -0.2065875083208084, 0.032748993486166, -0.28219616413116455, 0.15032483637332916, -0.027581550180912018, -0.011571194976568222, -0.5354079604148865, 0.20064599812030792, -0.16369006037712097, 0.1101643517613411, 0.013172723352909088, -0.2148311585187912, -0.16643257439136505, 0.06447899341583252, -0.22664818167686462, -0.2061968594789505, 0.08617977052927017, -0.008871873840689659, -0.27278921008110046, -0.47512924671173096, 0.03726481646299362, 0.11176533997058868, 0.26553797721862793, 0.07418166100978851, 0.2439028024673462, 0.024473845958709717, 0.3257881700992584, -0.2408389449119568, -0.07864636182785034, 0.2423473447561264, 0.312569260597229, -0.10278545320034027, -0.12164680659770966, -0.12635263800621033, -0.6159305572509766, 0.2217787802219391, -0.1874663084745407, 0.3046548366546631, -0.28903770446777344, -0.19389532506465912, -0.12356022000312805, 0.2871224582195282, 0.11107669770717621, -0.1327519416809082, 0.021843064576387405, -0.10806018114089966, 0.23782342672348022, -0.07974115014076233, -0.21032072603702545, 0.16963034868240356, -0.5052475929260254, 0.28726258873939514, -0.33721405267715454, 0.34267163276672363, -0.21354368329048157, -0.4815552830696106, 0.017419379204511642, 0.01049671322107315, 0.15983358025550842, -0.06526575982570648, -0.08588555455207825, 0.3152144253253937, -0.3083973824977875, 0.504025936126709, -0.5806723833084106, 0.2277878075838089, 0.1009519100189209, -0.41697365045547485, -0.16863636672496796, 0.012307774275541306, -0.015546919777989388, 0.22240841388702393, 0.40897637605667114, 0.2680600583553314, 0.006374072283506393, 0.1234961748123169, 0.07345115393400192, -0.0849103257060051, -0.24203351140022278, -0.0463373027741909, -0.04943012446165085, 0.14287805557250977, 0.3126673698425293, 0.3332377076148987, 0.26017075777053833, 0.03839324414730072, -0.3553350269794464, -0.25536292791366577, 0.3315141499042511, -0.14691175520420074, 0.032529644668102264, 0.09459397941827774, 0.0021474435925483704, 0.08275669068098068, 0.29267486929893494, -0.3025211691856384, 0.6407397389411926, 0.07581973075866699, -0.12969540059566498, 0.34729552268981934, -0.11462024599313736, -0.22583234310150146, 0.2929268181324005, 0.23667219281196594, 0.16073045134544373, 0.20697453618049622, 0.12491001188755035, 0.07811768352985382, -0.38141655921936035, -0.3002323508262634, -0.050096504390239716, 0.1694377362728119, -0.4522656500339508, 0.20614895224571228, -0.06279350817203522, 0.04660817235708237, -0.07402583211660385, -0.03743285313248634, -0.24442541599273682, 0.11449943482875824, -0.07536391913890839, 0.36340370774269104, -0.02317904308438301, 0.3359166383743286, 0.18710258603096008, -0.033536896109580994, -0.14641571044921875, -0.09902458637952805, -0.3311006426811218, -0.059987228363752365, -0.2596154808998108, -0.029026880860328674, 0.1614857017993927, -0.1875685602426529, 0.06709995865821838, -0.18285325169563293, -0.1867075264453888, -0.1964007318019867, -0.5063878893852234, 0.050705667585134506, -0.21542511880397797, 0.3890526294708252, 0.38130444288253784, 0.21210074424743652, -0.3079116940498352, -0.4617650806903839, 0.2553287744522095, -0.3960869610309601, -0.21229127049446106, -0.19949832558631897, -0.2766128182411194, 0.03311473876237869, -0.17202633619308472, -0.13485699892044067, -0.08341503143310547, -0.3782018721103668, 0.36831629276275635, -0.09359592944383621, 0.0697791650891304, 0.08020635694265366, 0.39449018239974976, 0.33563053607940674, 0.039597511291503906, -0.053924910724163055, -0.00417688861489296, -0.3632424771785736, 0.11179365962743759, 0.026182740926742554, -0.2829982042312622, 0.03147023543715477, 0.14162176847457886, 0.42588794231414795, 0.11024613678455353, -0.4690190553665161, -0.06486646085977554, -0.107245072722435, 0.411879301071167, -0.03936845064163208, 0.14104320108890533, 0.22661639750003815, -0.03904108703136444, 0.06440865248441696, 0.04091448336839676, -0.1637059450149536, -0.18773096799850464, -0.09451023489236832, 0.1637333780527115, 0.04798892140388489, 0.4737902879714966, 0.09860417246818542, 0.971233069896698, 0.08895149827003479, -0.38568854331970215, 0.2691301703453064, -0.23048388957977295, 0.20769062638282776, -0.09564424306154251, -0.2337660789489746, 0.11442652344703674, -0.10658243298530579, -0.17333383858203888, 0.11036505550146103, -0.14688757061958313, -0.13175827264785767, -0.107813261449337, -0.19997884333133698, -0.1554928719997406, -0.3461238145828247, 0.035123251378536224, 0.32003262639045715, 0.36524102091789246, -0.09739482402801514, 0.06014031916856766, 0.16458691656589508, 0.004693157039582729, 0.3128249943256378, 0.382979154586792, -0.16831889748573303, 0.03215024992823601, -0.1334526389837265, -0.2459634244441986, -0.6970117688179016, 0.20883667469024658, 0.12451919168233871, 0.05679767206311226, 0.0080798901617527, 0.0019023194909095764, 0.1857752501964569, -0.2045559138059616, 0.541727602481842, 0.29479750990867615, -0.0345090851187706, -0.08507271111011505, -0.011205008253455162, -0.29965075850486755, -0.0983651876449585, -0.16310425102710724, -0.013701538555324078, 0.10910184681415558, 0.16970911622047424, -0.27303174138069153, -0.14114545285701752, 0.24781771004199982, -0.11606539785861969, 0.27241191267967224, -0.21064533293247223, -0.4586915671825409, -0.3877553343772888, -0.2914689779281616, 0.34311413764953613, 0.10655946284532547, 0.1250707507133484, -0.050058841705322266, -0.10158991813659668, -0.06209483742713928, -0.13114282488822937, -0.0162101611495018, 0.21799811720848083, -0.1530146300792694, -0.23003852367401123, 0.07603482902050018, -0.0029194988310337067, -0.27321794629096985, 0.35606253147125244, 0.2665651738643646, 0.10280275344848633, -0.25451335310935974, 0.12327404320240021, 0.5145465731620789, 0.2931329011917114, 0.38851112127304077, -0.19780458509922028, 0.1978209912776947, 0.3713953197002411, 0.27103477716445923, -0.05104166641831398, 0.1598016321659088, 0.3679935336112976, 0.19215762615203857, -0.005770405754446983, 0.22961580753326416, 0.4813503921031952, 0.0887167751789093, 0.09192830324172974, 0.23489375412464142, 0.4347897171974182, -0.17873318493366241, 0.1796487420797348, 0.08926382660865784, 0.9280972480773926, 0.2017405480146408, 0.20746064186096191, 0.637413740158081, -0.41896599531173706, 0.5466298460960388, 0.02928156405687332, 0.22243967652320862, -0.35752981901168823, 0.004889896139502525, -0.01277349703013897, -0.06784539669752121, 0.3733195662498474, -0.08932822942733765, 0.008610233664512634, 0.021265331655740738, 0.21358869969844818, 0.34689271450042725, 0.00476090656593442, 0.043064601719379425, -0.31592220067977905, -0.20777158439159393, -0.7388690114021301, 0.002744413912296295, 0.019961096346378326, 0.35399332642555237, -0.31285709142684937, 0.06120471656322479, 0.08903570473194122, -0.435879647731781, -0.20683437585830688, 0.18202757835388184, -0.6148931384086609, -0.0037537291646003723, 0.28782781958580017, -0.3553500175476074, 0.18636709451675415, 0.20905975997447968, 0.06679936498403549, 0.13693207502365112, -0.05445185303688049, 0.3386423885822296, -0.09897658973932266, -0.04121861234307289, 0.08204962313175201, -0.04539218917489052, -0.0013931933790445328, -0.02203533425927162, -0.1182694286108017, 0.2510758638381958, -0.26666951179504395, 0.08712512254714966, 0.15865200757980347, -0.0493360310792923, -0.16713684797286987, -0.0996396392583847, 0.056862566620111465, -0.20014166831970215, 0.014784801751375198, -0.20797038078308105, 0.07725350558757782, -0.02965710312128067, -0.08899149298667908, -0.019594520330429077, -0.19054651260375977, -0.19558429718017578, -0.22706042230129242, 0.557840883731842, -0.10531968623399734, -0.058267511427402496, 0.3573157489299774, 0.38647422194480896, -0.058639056980609894, -0.1008591502904892, -0.09674713015556335, 0.19562865793704987, -0.6754255890846252, 0.010143612511456013, 0.148869588971138, 0.03314334154129028, 0.05059097707271576, 0.28325197100639343, 0.2591434717178345, 0.09545455127954483, 0.10718445479869843, -0.09766466170549393, -0.482370525598526, 0.2504781484603882, 0.06650327891111374, 0.2994599938392639, 0.46889039874076843, 0.31710538268089294, -0.18009896576404572, -0.17409761250019073, -0.1843268871307373, 0.11006424576044083, -0.1324826329946518, 0.0035446863621473312, 0.18706516921520233, -0.17420756816864014, 0.46814727783203125, 0.012036781758069992, 0.08754272013902664, 0.3389328718185425, -0.1854570060968399, -0.07685020565986633, -0.30090758204460144, 0.12784215807914734, 0.18733462691307068, -0.06569185853004456, 0.2498045563697815, 0.0675203800201416, 0.08770610392093658, -0.030034765601158142, 0.6164914965629578, 0.12921541929244995, -0.09458427131175995, -0.15752418339252472, -0.05951539799571037, 0.022215336561203003, -0.4820462465286255, -0.1142214983701706, 0.036303095519542694, 0.24248500168323517, 0.15067584812641144, 0.14241161942481995, -0.14540135860443115, -0.012077346444129944, 0.1689348816871643, 0.07333215326070786, 0.08450533449649811, 0.11613905429840088, 0.11609101295471191, -0.1127745509147644, -0.35970109701156616, -0.3422616124153137, 0.40588244795799255, 0.16379234194755554, -0.09983471781015396, -0.24387751519680023, 0.24868899583816528, 0.10517120361328125, -0.13143084943294525, -0.062155839055776596, 0.020065773278474808, 0.03049745410680771, 0.027722474187612534, 0.22223018109798431, -0.12231138348579407, -0.04051212593913078, 0.03533506393432617, 0.16707319021224976, 0.2219906598329544, -0.11713603138923645, 0.10601463913917542, 0.22927239537239075, -0.03517288714647293, 0.220299631357193, 0.34131374955177307, -0.05206037685275078, 0.3411707580089569, 0.20496174693107605, -0.4650270938873291, 0.12020327895879745, -0.3122779130935669, 0.28407248854637146, 0.14359289407730103, -0.20882712304592133, -0.5345369577407837, 0.09664825350046158, 0.020995892584323883, 0.1336710900068283, 0.05312693864107132, 0.5076457858085632, 0.08319827914237976, -0.26712483167648315, -0.06519441306591034, 0.28987428545951843, -0.36072614789009094, -0.12300357222557068, -0.10594052076339722, -0.06007909029722214, -0.002915903925895691, 0.10979308187961578, -0.08298662304878235, -0.2170349806547165, 0.5672860145568848, 0.11176285892724991, -0.006828710436820984, -0.4290926158428192, -0.16553518176078796, 0.39254602789878845, 0.0418458916246891, -0.13763505220413208, 0.269730806350708, 0.22164642810821533, -0.40750986337661743, -0.42374518513679504, 0.28544673323631287, 0.7626141905784607, -0.07137112319469452, 0.20368564128875732, -0.02789505198597908, 0.1827017217874527, 0.16424892842769623, 0.18777456879615784, 0.07072047144174576, 0.24596017599105835, 0.48421937227249146, 0.06853081285953522, 0.04810337722301483, -0.17799505591392517, -0.008070405572652817, 0.13227616250514984, 0.23486226797103882, -0.46131232380867004, 0.0215093195438385, -0.44463470578193665, -0.14411672949790955, -0.11296463012695312, 0.32638677954673767, -0.4140815734863281, 0.21029971539974213, 0.2057272046804428, 0.061923522502183914, 0.012709727510809898, -0.08563947677612305, 0.036803632974624634, -0.03231992945075035, 0.5993916392326355, 0.36886313557624817, 0.2777248024940491, -0.37100836634635925, -0.15565364062786102, -0.29032042622566223, 0.2009119689464569, -0.004310667514801025, 0.37357965111732483, 0.011650490574538708, -0.16745367646217346, -0.2955279052257538, 0.09066560864448547, 0.25280582904815674, -0.08692529797554016, 0.06889144331216812, 0.3166196048259735, -0.15604622662067413, 0.03058794140815735, -0.26349878311157227, -0.4619557857513428, 0.15084876120090485, -0.1378031075000763, 0.07805661857128143, -0.3577047288417816, -0.19108104705810547, -0.36261188983917236, 0.051981985569000244, -0.01312338188290596, -0.2134988009929657, 0.4885859191417694, 0.04904530942440033, 0.17485229671001434, -0.11608794331550598, -0.19089935719966888, -0.12488925457000732, -0.264331191778183, 0.026166871190071106, 0.28252536058425903, -0.06577424705028534, 0.48339274525642395, -0.1737760752439499, -0.15623728930950165, -0.2939780354499817, 0.040163569152355194, 0.04331371188163757, -0.21944697201251984, -0.01983736641705036, 0.1650635302066803, -0.25011757016181946, 0.12625090777873993, 0.1206664890050888, 0.4212207794189453, 0.13302107155323029, 0.11446237564086914, -0.6298214793205261, -0.37640759348869324, 0.42492371797561646, -0.6813207268714905, -0.011484961956739426, 0.013132820837199688, 0.2657043933868408, 0.37530630826950073, -0.33672091364860535, -0.6152427792549133, 0.09444548934698105, 0.10174348205327988, 0.00824635848402977, -0.3853188753128052, 0.03219401836395264, 0.09482735395431519, 0.0053358860313892365, 0.0017339475452899933, 0.3544756770133972, 0.060036152601242065, -0.21523433923721313, 0.42810747027397156, -0.5322912931442261 ]
https://github.com/huggingface/datasets/issues/3310
Fatal error condition occurred in aws-c-io
> I get the following error message: Not sure what's going on, but that shouldn't happen, especially as we're pinning to a version that should avoid this. Can you please open an issue https://github.com/conda-forge/arrow-cpp-feedstock, including the requested output of `conda list` & `conda info`?
## Describe the bug Fatal error when using the library ## Steps to reproduce the bug ```python from datasets import load_dataset dataset = load_dataset('wikiann', 'en') ``` ## Expected results No fatal errors ## Actual results ``` Fatal error condition occurred in D:\bld\aws-c-io_1633633258269\work\source\event_loop.c:74: aws_thread_launch(&cleanup_thread, s_event_loop_destroy_async_thread_fn, el_group, &thread_options) == AWS_OP_SUCCESS Exiting Application ``` ## Environment info - `datasets` version: 1.15.2.dev0 - Platform: Windows-10-10.0.22504-SP0 - Python version: 3.8.12 - PyArrow version: 6.0.0
44
Fatal error condition occurred in aws-c-io ## Describe the bug Fatal error when using the library ## Steps to reproduce the bug ```python from datasets import load_dataset dataset = load_dataset('wikiann', 'en') ``` ## Expected results No fatal errors ## Actual results ``` Fatal error condition occurred in D:\bld\aws-c-io_1633633258269\work\source\event_loop.c:74: aws_thread_launch(&cleanup_thread, s_event_loop_destroy_async_thread_fn, el_group, &thread_options) == AWS_OP_SUCCESS Exiting Application ``` ## Environment info - `datasets` version: 1.15.2.dev0 - Platform: Windows-10-10.0.22504-SP0 - Python version: 3.8.12 - PyArrow version: 6.0.0 > I get the following error message: Not sure what's going on, but that shouldn't happen, especially as we're pinning to a version that should avoid this. Can you please open an issue https://github.com/conda-forge/arrow-cpp-feedstock, including the requested output of `conda list` & `conda info`?
[ -0.4709424078464508, 0.03983445465564728, -0.1792725771665573, 0.093112513422966, 0.027387648820877075, -0.033343471586704254, 0.1289081573486328, 0.21114319562911987, -0.11504615843296051, 0.09166751801967621, 0.04345262795686722, 0.6520825028419495, -0.0065910229459404945, 0.30770039558410645, -0.1673927903175354, 0.07446105778217316, 0.26448532938957214, 0.36140990257263184, -0.3728296160697937, 0.1826918125152588, -0.2851164937019348, 0.38771331310272217, -0.18966805934906006, 0.09083336591720581, -0.277885377407074, -0.3458620309829712, 0.013680538162589073, 0.22298303246498108, -0.1115778312087059, -0.30438169836997986, 0.3149721324443817, -0.17519590258598328, 0.19435329735279083, 0.28323981165885925, -0.00011602057929849252, -0.10022589564323425, 0.3540971875190735, 0.1000605970621109, -0.5214810371398926, -0.12832368910312653, -0.3233569860458374, 0.05004394054412842, 0.17890220880508423, -0.22873428463935852, 0.3912791609764099, 0.020652664825320244, -0.14004914462566376, -0.20088398456573486, 0.27505308389663696, 0.35158151388168335, 0.1752360463142395, 0.4950738251209259, 0.39667239785194397, -0.01423746719956398, -0.026233404874801636, -0.02554553747177124, -0.21278202533721924, 0.2328742891550064, 0.12548601627349854, -0.2730123996734619, 0.27652284502983093, 0.24205702543258667, -0.18607501685619354, 0.1102156788110733, -0.05458945035934448, -0.07081328332424164, 0.062212925404310226, -0.45272305607795715, 0.2650890350341797, -0.06696749478578568, 0.44746512174606323, -0.5447118878364563, -0.29441341757774353, 0.18515336513519287, 0.07783226668834686, -0.42950883507728577, 0.20492413640022278, 0.24670617282390594, -0.2435378134250641, 0.2829221487045288, 0.26843535900115967, 0.19554509222507477, -0.21779148280620575, 0.16517184674739838, -0.11449502408504486, 0.17000812292099, -0.2293197512626648, 0.06015205383300781, 0.1392972618341446, 0.04303084313869476, 0.08230540156364441, -0.0037623681128025055, -0.2061183750629425, 0.06766757369041443, -0.639337420463562, -0.10840795189142227, 0.030764609575271606, 0.053776051849126816, 0.04170094430446625, 0.20027939975261688, -0.027285560965538025, -0.10859096795320511, 0.21000294387340546, 0.21906176209449768, 0.013675743713974953, 0.0016860365867614746, 0.054446425288915634, 0.4726133644580841, 0.12338466942310333, 0.06306929141283035, 0.056121986359357834, -0.1381336748600006, -0.07289999723434448, -0.2741706073284149, 0.11143486201763153, 0.010762673802673817, 0.4247148633003235, -0.30894801020622253, -0.6283765435218811, 0.5946141481399536, -0.17471465468406677, 0.12956790626049042, -0.14286509156227112, 0.3916209936141968, 0.03360356390476227, 0.10011326521635056, 0.32101863622665405, 0.22635331749916077, -0.17954318225383759, 0.23388893902301788, -0.07176832854747772, -0.12554731965065002, -0.2652043402194977, 0.01349358819425106, 0.12142643332481384, -0.12773334980010986, 0.21959739923477173, 0.22620995342731476, 0.09484653174877167, -0.31043770909309387, 0.12323829531669617, -0.026873977854847908, -0.32250678539276123, 0.4853018522262573, 0.07179880142211914, 0.17671801149845123, 0.039232414215803146, 0.13077066838741302, 0.08335679024457932, 0.35909855365753174, -0.2904942035675049, -0.32946401834487915, -0.5352696180343628, 0.2025812864303589, -0.023474493995308876, 0.06951510161161423, -0.15510252118110657, -0.2853983938694, 0.20747971534729004, -0.07718522846698761, 0.16456110775470734, -0.10465304553508759, 0.18692977726459503, -0.14341098070144653, 0.10635938495397568, 0.08342768251895905, -0.38157427310943604, 0.16551096737384796, -0.17102347314357758, -0.14700496196746826, 0.2826623320579529, 0.23301979899406433, -0.24631547927856445, -0.08405030518770218, -0.2522859573364258, -0.12494294345378876, 0.49077123403549194, -0.03100564517080784, -0.34524184465408325, 0.2728255093097687, -0.10902611911296844, -0.11624028533697128, -0.07329701632261276, -0.25552260875701904, -0.03802446275949478, -0.025513339787721634, 0.12974503636360168, -0.4030161499977112, 0.11755543202161789, -0.0634857639670372, -0.3466940224170685, -0.4195289611816406, 0.004533246159553528, 0.10529565811157227, 0.10554571449756622, 0.029072728008031845, 0.24262863397598267, -0.2965133488178253, 0.35620617866516113, -0.027462992817163467, -0.06922867149114609, 0.3618882894515991, 0.3901362121105194, -0.1654132604598999, 0.0009340071119368076, -0.03262873366475105, -0.5048277378082275, 0.1517670452594757, 0.06029732525348663, 0.07259616255760193, -0.2257303148508072, -0.10015963762998581, -0.32888245582580566, 0.5118747353553772, 0.11776687949895859, -0.11272916197776794, 0.10540801286697388, -0.17937174439430237, -0.00833727978169918, -0.038991909474134445, -0.34095028042793274, 0.3879036009311676, -0.603449285030365, 0.09248369187116623, -0.04729820415377617, 0.2406897097826004, -0.14564216136932373, -0.3048940598964691, 0.059575244784355164, -0.02464018017053604, 0.23585009574890137, 0.11613159626722336, -0.2460843026638031, 0.12067964673042297, -0.18406060338020325, 0.5071536898612976, -0.14644327759742737, 0.3265239894390106, -0.03514499217271805, -0.33109530806541443, -0.09003804624080658, -0.01437375694513321, 0.125005304813385, 0.06505701690912247, 0.3444531261920929, 0.20226842164993286, -0.06832355260848999, 0.1850803792476654, -0.19456741213798523, 0.05376572906970978, 0.10671935975551605, -0.13403098285198212, 0.04765009135007858, 0.12612992525100708, 0.33576202392578125, 0.0936688482761383, 0.463950514793396, -0.1344054490327835, -0.438302218914032, 0.12198259681463242, 0.1095772534608841, -0.02562921680510044, 0.05093788728117943, 0.10584914684295654, -0.09360658377408981, 0.07270736992359161, 0.51272052526474, 0.12517593801021576, 0.6829966902732849, 0.05473613366484642, -0.1191854476928711, 0.11326234042644501, -0.1571987271308899, -0.12011298537254333, 0.47945791482925415, 0.13681931793689728, 0.38707098364830017, 0.33780035376548767, 0.14608748257160187, 0.023180508986115456, -0.10144548118114471, -0.3765372633934021, -0.018962811678647995, 0.16807973384857178, -0.26061442494392395, 0.2079971581697464, -0.030716750770807266, 0.2118425965309143, -0.0796947181224823, -0.1146724596619606, 0.27657854557037354, -0.02161119133234024, -0.05539849400520325, 0.363042414188385, -0.21396909654140472, 0.17072634398937225, -0.3878168761730194, -0.05122099816799164, 0.010197671130299568, 0.021774617955088615, -0.44803380966186523, -0.1598287969827652, -0.13532301783561707, 0.08004887402057648, 0.17334263026714325, -0.012852359563112259, 0.21069005131721497, -0.050738625228405, -0.05305912345647812, -0.11107230931520462, -0.07877211272716522, 0.05737617611885071, 0.05272838473320007, 0.32614970207214355, 0.12099519371986389, 0.21340227127075195, -0.28056058287620544, -0.659430980682373, 0.03277148678898811, -0.11596828699111938, 0.05721285939216614, -0.056488409638404846, -0.22789828479290009, -0.094968780875206, -0.2406313717365265, -0.25278952717781067, -0.2591187059879303, -0.5102007389068604, 0.01076003909111023, -0.19277778267860413, 0.2077532559633255, -0.053305067121982574, 0.4154622256755829, 0.12820759415626526, 0.3974235951900482, -0.19461454451084137, -0.20435835421085358, -0.27329111099243164, 0.15886661410331726, -0.12707366049289703, -0.2993547320365906, 0.16963358223438263, 0.07883720099925995, 0.5530372262001038, 0.06536927819252014, -0.42813700437545776, 0.4402557611465454, -0.03232166916131973, 0.17512758076190948, -0.34939542412757874, 0.012275492772459984, 0.1732288897037506, 0.04377530887722969, -0.04699263721704483, -0.15765026211738586, 0.17549893260002136, -0.1747460663318634, -0.08499261736869812, 0.3789776861667633, -0.04313589632511139, 0.3188575506210327, -0.006610911339521408, 0.6594762802124023, 0.28831416368484497, -0.3316417932510376, 0.1904609501361847, 0.06066272407770157, 0.18559630215168, -0.07095836848020554, -0.2101818025112152, -0.11593047529459, -0.06671331822872162, -0.3887057304382324, -0.0021372586488723755, -0.16986125707626343, -0.5660813450813293, -0.1383909285068512, 0.20528507232666016, -0.41290509700775146, -0.27204132080078125, 0.03703552857041359, -0.10177931189537048, 0.2156822681427002, -0.05766414850950241, -0.05843622237443924, 0.06723123788833618, 0.10550860315561295, -0.015015505254268646, 0.31129324436187744, -0.24249228835105896, -0.23507621884346008, -0.10449650883674622, -0.22596684098243713, -0.5851960778236389, 0.2817234992980957, -0.212193563580513, 0.32996904850006104, 0.053698550909757614, 0.04090604931116104, 0.06991491466760635, -0.21589654684066772, 0.4149704575538635, -0.012312384322285652, -0.0038475580513477325, 0.18174414336681366, 0.3903252184391022, -0.16964678466320038, -0.15558262169361115, -0.30511876940727234, 0.24571402370929718, 0.29770705103874207, -0.03838566690683365, -0.19220751523971558, -0.13236305117607117, 0.007511330768465996, -0.15160642564296722, 0.14719243347644806, -0.19303064048290253, -0.21900822222232819, -0.14276288449764252, -0.37020716071128845, 0.26483234763145447, 0.029024502262473106, 0.11517248302698135, -0.3079328238964081, -0.42811378836631775, -0.1419961303472519, -0.0020178426057100296, 0.06336884945631027, 0.15069173276424408, 0.010113885626196861, -0.3125664293766022, 0.24655276536941528, -0.22564733028411865, -0.2918958067893982, 0.6531223654747009, 0.3306747376918793, 0.27871906757354736, -0.04763299226760864, 0.17756155133247375, 0.20477406680583954, 0.1621919721364975, 0.1461629569530487, -0.2606450617313385, -0.09121628850698471, 0.1392688900232315, 0.18482375144958496, -0.01312138419598341, 0.1225547194480896, 0.11725053936243057, 0.27379125356674194, -0.3153011202812195, 0.16040976345539093, 0.38550427556037903, -0.03624870255589485, -0.11496930569410324, 0.9746390581130981, -0.13662084937095642, -0.07773870974779129, 0.3598446249961853, -0.003728613257408142, 0.8533378839492798, 0.29025477170944214, -0.1261870563030243, 0.33644482493400574, -0.3752096891403198, 0.2529383599758148, -0.11060340702533722, 0.03144976869225502, -0.2426127940416336, 0.09527449309825897, 0.04049593210220337, -0.15397097170352936, 0.3244956433773041, 0.12665584683418274, -0.01473071426153183, -0.06868947297334671, 0.0864301323890686, -0.05580068752169609, -0.001089615747332573, -0.0875701755285263, -0.40875545144081116, -0.16183872520923615, -0.44486507773399353, 0.12352091073989868, -0.06078686565160751, 0.2627371847629547, -0.3514470160007477, 0.05194449424743652, -0.0790635421872139, -0.30449438095092773, -0.46251142024993896, 0.24618417024612427, -0.5492861270904541, 0.16696874797344208, -0.057998862117528915, -0.4435604214668274, -0.04689449816942215, 0.13233013451099396, -0.16913148760795593, 0.15845084190368652, -0.04975242167711258, 0.16414150595664978, 0.07694670557975769, -0.10167767107486725, 0.08960650116205215, -0.15022899210453033, -0.03540462255477905, -0.019211221486330032, -0.30344557762145996, 0.23710259795188904, -0.21040214598178864, -0.1755596250295639, 0.5033420920372009, 0.0918218344449997, -0.01737116277217865, -0.048482559621334076, -0.2725159227848053, 0.09431757032871246, -0.18563486635684967, -0.19100308418273926, 0.17782142758369446, 0.027163133025169373, -0.0907072126865387, 0.3712202310562134, -0.2584981620311737, -0.02374213933944702, -0.11047212779521942, 0.3586890697479248, -0.12028307467699051, 0.013284217566251755, 0.16844718158245087, 0.19430556893348694, -0.09901313483715057, -0.2749987840652466, -0.048090580850839615, -0.38742730021476746, -0.43735623359680176, 0.042628657072782516, 0.04379761219024658, -0.09791740775108337, 0.16999095678329468, 0.40076661109924316, 0.2317691296339035, 0.3263084292411804, 0.09035539627075195, -0.36478137969970703, -0.4454328119754791, 0.2874826192855835, -0.18380174040794373, 0.3875701129436493, 0.17515018582344055, 0.08284945785999298, -0.28508657217025757, -0.11535654962062836, -0.28746095299720764, 0.061278268694877625, -0.1888095885515213, 0.030505934730172157, 0.1341610550880432, 0.05198831856250763, 0.39127546548843384, -0.0994633138179779, 0.061388805508613586, 0.302068829536438, -0.13551212847232819, -0.18229460716247559, -0.16196535527706146, 0.16066323220729828, 0.1381678283214569, 0.025280604138970375, 0.10108812898397446, -0.14117072522640228, 0.051577962934970856, 0.08767720311880112, 0.30202195048332214, -0.011847969144582748, -0.053804464638233185, -0.12024811655282974, 0.05091497302055359, 0.16000817716121674, -0.44749152660369873, 0.08948256820440292, 0.07937207072973251, 0.24181996285915375, -0.11079282313585281, 0.19332723319530487, 0.034927062690258026, 0.008001431822776794, -0.12281936407089233, -0.11864881962537766, -0.2540094256401062, 0.22082951664924622, 0.33916768431663513, -0.16004300117492676, -0.2369018942117691, -0.14295119047164917, 0.27561643719673157, 0.18781127035617828, -0.10368520021438599, -0.17456313967704773, 0.1683495044708252, 0.2483985871076584, -0.08721332252025604, -0.034174446016550064, -0.10984991490840912, 0.12096966803073883, -0.14946791529655457, 0.08686801791191101, 0.05864665284752846, -0.46169376373291016, 0.32669854164123535, 0.18945056200027466, 0.21296663582324982, -0.44901043176651, 0.30017274618148804, 0.3282327651977539, 0.06919282674789429, 0.21893970668315887, 0.2087157517671585, -0.038845401257276535, 0.36457791924476624, 0.18832269310951233, -0.27043431997299194, 0.07918518781661987, 0.6279667615890503, 0.2669360041618347, 0.03331862762570381, -0.2852746844291687, -0.24321512877941132, -0.07292036712169647, -0.17850196361541748, 0.29806652665138245, 0.23922394216060638, -0.0122457817196846, 0.05793877691030502, 0.02104765735566616, -0.10509144514799118, 0.16108272969722748, -0.27042892575263977, 0.05278990790247917, -0.08874332904815674, -0.07893206924200058, 0.29022228717803955, -0.11747197806835175, 0.044195957481861115, 0.04512004926800728, 0.5922595858573914, 0.09355958551168442, -0.06380671262741089, -0.36902186274528503, 0.06244798004627228, 0.600043535232544, 0.08609195053577423, -0.13119632005691528, 0.05264677852392197, 0.18124224245548248, -0.17262864112854004, -0.4838000237941742, 0.38367149233818054, 0.7720422744750977, 0.11371107399463654, 0.21326817572116852, 0.026870641857385635, 0.30779749155044556, -0.03915069252252579, 0.05096746236085892, 0.2014569491147995, 0.27296000719070435, 0.10872521996498108, 0.029444433748722076, 0.16728873550891876, -0.2184406816959381, 0.035899996757507324, 0.2780179977416992, 0.21301282942295074, -0.19151687622070312, -0.044856347143650055, -0.182991161942482, -0.282227486371994, -0.11881770193576813, 0.19419333338737488, -0.26066869497299194, 0.22704848647117615, 0.3571794629096985, -0.17712457478046417, -0.022529086098074913, -0.032773058861494064, 0.08600789308547974, -0.11726182699203491, 0.27089372277259827, 0.28338491916656494, 0.32915040850639343, -0.316009521484375, -0.25656580924987793, -0.18523207306861877, 0.28926071524620056, -0.016918722540140152, 0.19895638525485992, 0.04119156673550606, 0.04221589118242264, -0.09726636856794357, 0.1517666131258011, 0.37330710887908936, 0.02190728858113289, 0.02220965549349785, 0.6670855283737183, -0.3737921416759491, 0.07845354825258255, -0.21665607392787933, -0.28612175583839417, 0.024211376905441284, -0.442565381526947, -0.0034945420920848846, -0.06167423725128174, -0.04881976172327995, -0.22158846259117126, -0.1777961254119873, 0.05350792780518532, -0.09076470136642456, 0.7944689989089966, 0.011780359782278538, 0.14035136997699738, -0.28591400384902954, -0.08516976982355118, -0.12621133029460907, -0.44631049036979675, 0.23804301023483276, 0.13428285717964172, 0.03731992468237877, 0.3282608687877655, -0.17798949778079987, -0.11328914761543274, -0.11447251588106155, -0.19311879575252533, -0.09743258357048035, -0.3297959268093109, -0.06213376671075821, 0.20634111762046814, -0.270624577999115, -0.0046160463243722916, -0.02364882081747055, 0.47175922989845276, 0.13832345604896545, 0.24377916753292084, -0.3373733162879944, -0.31275373697280884, 0.2834365665912628, -0.36141055822372437, -0.23233896493911743, 0.16777096688747406, 0.38524094223976135, 0.3427967429161072, -0.07972602546215057, -0.5779745578765869, -0.016683362424373627, 0.16062361001968384, -0.03852022439241409, -0.14452366530895233, 0.15377527475357056, 0.1355685293674469, -0.0037555620074272156, 0.019677672535181046, 0.5326322913169861, 0.060907647013664246, -0.15481992065906525, 0.1022607833147049, -0.43922901153564453 ]
https://github.com/huggingface/datasets/issues/3310
Fatal error condition occurred in aws-c-io
pyarrow 10.0.1 was just released in conda-forge, which is the first release where we're building against aws-sdk-cpp 1.9.* again after more than a year. Since we cannot test the failure reported here on our infra, I'd be very grateful if someone could verify that the problem does or doesn't reappear. 🙃 ``` conda install -c conda-forge pyarrow=10 ```
## Describe the bug Fatal error when using the library ## Steps to reproduce the bug ```python from datasets import load_dataset dataset = load_dataset('wikiann', 'en') ``` ## Expected results No fatal errors ## Actual results ``` Fatal error condition occurred in D:\bld\aws-c-io_1633633258269\work\source\event_loop.c:74: aws_thread_launch(&cleanup_thread, s_event_loop_destroy_async_thread_fn, el_group, &thread_options) == AWS_OP_SUCCESS Exiting Application ``` ## Environment info - `datasets` version: 1.15.2.dev0 - Platform: Windows-10-10.0.22504-SP0 - Python version: 3.8.12 - PyArrow version: 6.0.0
58
Fatal error condition occurred in aws-c-io ## Describe the bug Fatal error when using the library ## Steps to reproduce the bug ```python from datasets import load_dataset dataset = load_dataset('wikiann', 'en') ``` ## Expected results No fatal errors ## Actual results ``` Fatal error condition occurred in D:\bld\aws-c-io_1633633258269\work\source\event_loop.c:74: aws_thread_launch(&cleanup_thread, s_event_loop_destroy_async_thread_fn, el_group, &thread_options) == AWS_OP_SUCCESS Exiting Application ``` ## Environment info - `datasets` version: 1.15.2.dev0 - Platform: Windows-10-10.0.22504-SP0 - Python version: 3.8.12 - PyArrow version: 6.0.0 pyarrow 10.0.1 was just released in conda-forge, which is the first release where we're building against aws-sdk-cpp 1.9.* again after more than a year. Since we cannot test the failure reported here on our infra, I'd be very grateful if someone could verify that the problem does or doesn't reappear. 🙃 ``` conda install -c conda-forge pyarrow=10 ```
[ -0.5115061402320862, 0.05841371417045593, -0.1406438797712326, 0.05349560081958771, 0.003712933510541916, -0.18545284867286682, 0.1579688936471939, 0.20263954997062683, -0.29695478081703186, 0.1070849820971489, -0.03009052388370037, 0.6872552633285522, 0.08424355834722519, 0.11386565119028091, -0.16884930431842804, 0.04952500760555267, 0.24194326996803284, 0.3307229280471802, -0.437729150056839, 0.17047086358070374, -0.26788341999053955, 0.3961077630519867, -0.3062538504600525, 0.10862328857183456, -0.22281409800052643, -0.24336722493171692, -0.12318070977926254, 0.12726163864135742, -0.06846234947443008, -0.35157057642936707, 0.2892976701259613, -0.18955297768115997, 0.1890438348054886, 0.47068142890930176, -0.00011498626554384828, -0.08079245686531067, 0.3763182759284973, 0.1569633185863495, -0.2857127785682678, -0.010256350040435791, -0.22656530141830444, 0.08966971188783646, 0.12980087101459503, -0.3079562485218048, 0.33837270736694336, 0.03438708558678627, -0.12461772561073303, -0.015033643692731857, 0.17383283376693726, 0.4213138520717621, 0.16460096836090088, 0.5880434513092041, 0.37599602341651917, 0.054930511862039566, 0.06061747670173645, -0.10362152755260468, -0.26509976387023926, 0.37821388244628906, 0.23239710927009583, -0.42420417070388794, 0.13901972770690918, 0.07573497295379639, -0.23420140147209167, 0.041261717677116394, -0.018088936805725098, -0.05749078840017319, 0.08862306922674179, -0.19994017481803894, 0.06717051565647125, -0.038626886904239655, 0.4616081714630127, -0.7028111815452576, -0.28670427203178406, 0.22535091638565063, 0.019428782165050507, -0.3389061391353607, 0.27468761801719666, 0.1411123275756836, -0.27604490518569946, 0.30690890550613403, 0.0857071578502655, 0.20106105506420135, -0.24904437363147736, 0.2253681868314743, -0.09217272698879242, 0.2806016206741333, -0.007927636615931988, 0.09435438364744186, -0.02417759969830513, 0.13746777176856995, 0.19524353742599487, -0.06507878750562668, -0.1380368322134018, 0.036997001618146896, -0.7008746266365051, -0.07493728399276733, -0.041727468371391296, 0.11493896692991257, 0.166258305311203, 0.10156475007534027, 0.023488663136959076, -0.1606646478176117, 0.3339623212814331, 0.2768217623233795, -0.013514958322048187, -0.061350103467702866, 0.046976927667856216, 0.1288546919822693, 0.31828731298446655, -0.0019931106362491846, 0.11420716345310211, -0.06924938410520554, 0.04962050914764404, -0.31988704204559326, 0.2113681435585022, -0.05896133929491043, 0.358545184135437, -0.12742935121059418, -0.47693637013435364, 0.48958471417427063, -0.4571705460548401, 0.16108818352222443, -0.060899581760168076, 0.39985567331314087, 0.002553018741309643, -0.1930530071258545, 0.15844331681728363, 0.22869835793972015, -0.2583412230014801, 0.11156479269266129, -0.0973094031214714, 0.05860178545117378, -0.16463537514209747, -0.02325630374252796, 0.10357730090618134, -0.3132324814796448, 0.25558191537857056, 0.25216010212898254, 0.17751356959342957, -0.3073515295982361, 0.06876619160175323, 0.05439075455069542, -0.3604838252067566, 0.4549500048160553, 0.013841278851032257, 0.11370483785867691, -0.1430247277021408, 0.02542215585708618, 0.0773003026843071, 0.40347257256507874, -0.04715285450220108, -0.2850489020347595, -0.512958288192749, 0.1938227415084839, -0.1008475124835968, 0.14078953862190247, -0.05733596533536911, -0.22933150827884674, 0.2845157980918884, -0.16721941530704498, 0.17642706632614136, -0.17587624490261078, 0.21958380937576294, -0.21713533997535706, 0.1399511843919754, 0.11686525493860245, -0.32159432768821716, 0.16760432720184326, -0.1845369189977646, -0.22852200269699097, 0.14189386367797852, 0.20588478446006775, -0.18085195124149323, 0.02304789423942566, -0.3246380090713501, 0.1481231302022934, 0.22663742303848267, -0.00550798699259758, -0.3980666697025299, 0.20686636865139008, -0.06966093182563782, -0.041057288646698, -0.07852981239557266, -0.21252213418483734, -0.04115886613726616, -0.03426362946629524, -0.02830154448747635, -0.3124403953552246, 0.13007593154907227, -0.014994352124631405, -0.37922996282577515, -0.33884528279304504, 0.035325080156326294, 0.20432136952877045, 0.23233194649219513, -0.033043570816516876, 0.3087286353111267, -0.34255555272102356, 0.34858807921409607, -0.05408950522542, -0.06830112636089325, 0.1600865125656128, 0.39845916628837585, -0.3064802289009094, 0.05074746906757355, -0.11940466612577438, -0.5922859311103821, 0.23262888193130493, 0.10915067791938782, 0.15262606739997864, -0.2445603758096695, -0.048378389328718185, -0.04953790083527565, 0.495411217212677, 0.1342499703168869, -0.027616485953330994, 0.12626735866069794, -0.15760569274425507, 0.14241108298301697, -0.07302229106426239, -0.31593093276023865, 0.2854267656803131, -0.5625550746917725, 0.16561490297317505, 0.014744670130312443, 0.2386826127767563, -0.23489557206630707, -0.449427992105484, 0.09738393127918243, -0.0945029929280281, 0.20243620872497559, 0.03140070661902428, -0.1976098120212555, 0.2486805021762848, -0.24857781827449799, 0.3922850489616394, -0.2947392463684082, 0.25655460357666016, 0.007753545418381691, -0.3606298565864563, -0.04510882496833801, -0.1569604128599167, 0.08815132826566696, 0.0936182513833046, 0.4110177159309387, 0.19060742855072021, 0.021477192640304565, 0.16791316866874695, -0.17156295478343964, -0.040822383016347885, 0.04811993986368179, -0.15154390037059784, 0.04941435903310776, 0.20821616053581238, 0.38499465584754944, 0.17731840908527374, 0.3490724563598633, -0.1433526575565338, -0.40351608395576477, -0.061743564903736115, 0.17310087382793427, -0.11762706935405731, 0.14809754490852356, 0.09346261620521545, -0.07171028107404709, 0.06951222568750381, 0.5056742429733276, -0.2495744675397873, 0.687362551689148, 0.07382732629776001, -0.14995203912258148, 0.18382853269577026, -0.1865300089120865, -0.235051691532135, 0.38306930661201477, 0.24926415085792542, 0.33540672063827515, 0.49335744976997375, 0.21017827093601227, -0.08378071337938309, -0.2857837378978729, -0.44303834438323975, 0.0924861878156662, 0.22564180195331573, -0.2403090000152588, 0.17730724811553955, -0.030639896169304848, 0.29582202434539795, -0.022442780435085297, -0.07181332260370255, 0.06833413243293762, 0.05102398991584778, -0.02192283794283867, 0.3665093183517456, -0.12329098582267761, 0.36543187499046326, -0.040214478969573975, -0.15375889837741852, -0.08522523194551468, -0.07173451036214828, -0.4909115135669708, -0.19701968133449554, -0.20485559105873108, 0.03467574343085289, 0.27095621824264526, -0.13368524610996246, 0.2294425219297409, 0.03379124402999878, -0.06237810477614403, -0.20585471391677856, -0.19317924976348877, 0.005915667861700058, -0.0024931542575359344, 0.4359699487686157, 0.11633758246898651, 0.12168017029762268, -0.13082380592823029, -0.5430370569229126, 0.07957401126623154, -0.1479724943637848, -0.0036851800978183746, 0.03182220086455345, -0.2951371669769287, -0.02967922016978264, -0.264387309551239, -0.22038355469703674, -0.14407788217067719, -0.39404934644699097, 0.10418044030666351, -0.27713543176651, 0.14950650930404663, -0.1909477859735489, 0.5039175748825073, 0.1789875030517578, 0.16855494678020477, -0.12160158157348633, -0.14111585915088654, -0.2359069436788559, 0.0775102823972702, -0.015339488163590431, -0.1751827597618103, 0.09351211786270142, 0.07972995191812515, 0.5705917477607727, 0.0946616604924202, -0.4753674268722534, 0.19474920630455017, 0.012899555265903473, 0.5611910223960876, -0.24700158834457397, -0.062505342066288, 0.2207736223936081, -0.012202650308609009, -0.008748974651098251, -0.03577848896384239, 0.02569654956459999, -0.1710606813430786, -0.03701910376548767, 0.26346737146377563, -0.08478476852178574, 0.42169198393821716, 0.08503596484661102, 0.557894766330719, 0.19309526681900024, -0.3677592873573303, 0.2381495237350464, 0.0777602419257164, 0.015551559627056122, -0.053052641451358795, -0.10880599170923233, 0.17125046253204346, -0.14258354902267456, -0.35093581676483154, -0.0109386146068573, -0.2056795060634613, -0.5608735680580139, -0.1720428615808487, -0.004485528916120529, -0.4291861057281494, -0.24358856678009033, 0.011763771064579487, 0.11045990884304047, 0.21913361549377441, -0.008175058290362358, -0.020358700305223465, 0.15956780314445496, 0.10947030037641525, 0.14354300498962402, 0.3008650541305542, -0.26309457421302795, -0.18545585870742798, 0.00321226567029953, -0.25818127393722534, -0.5380164980888367, 0.2856069803237915, -0.07899581640958786, 0.26729199290275574, 0.05420135334134102, 0.11749476939439774, 0.1480167657136917, -0.3924163579940796, 0.6009148359298706, -0.03450368344783783, 0.053832098841667175, 0.10949397087097168, 0.420517235994339, -0.13281045854091644, -0.18893958628177643, -0.15731222927570343, 0.11541800200939178, 0.33627742528915405, 0.017317000776529312, -0.23962995409965515, 0.03443450853228569, 0.04910998046398163, -0.04635455831885338, 0.19321571290493011, -0.36502301692962646, -0.28020069003105164, -0.3475963771343231, -0.3359012305736542, 0.36963343620300293, -0.03151939809322357, 0.0826893150806427, -0.2410413920879364, -0.4414932429790497, -0.08115500956773758, -0.03892873600125313, -0.028667554259300232, 0.1719900369644165, -0.19516143202781677, -0.4223894476890564, 0.3935476839542389, -0.2520521283149719, -0.4010199308395386, 0.6385445594787598, 0.18027009069919586, 0.2502409815788269, -0.130342498421669, 0.16092711687088013, 0.22340697050094604, 0.3281802833080292, 0.11778132617473602, -0.22773055732250214, -0.05633189529180527, 0.09766329824924469, 0.14781618118286133, 0.0068521276116371155, 0.08837667852640152, 0.25155723094940186, 0.23298822343349457, -0.2452785074710846, 0.28802961111068726, 0.47080665826797485, -0.06547485291957855, -0.010557673871517181, 0.5920333862304688, -0.1094171404838562, -0.08961965143680573, 0.3924809694290161, 0.03836539760231972, 0.8144340515136719, 0.12946490943431854, -0.11439280211925507, 0.46397536993026733, -0.3782868981361389, 0.2525466978549957, -0.28927069902420044, 0.10637664049863815, -0.34889596700668335, 0.10070148855447769, 0.09529096633195877, -0.12224651873111725, 0.37000924348831177, 0.11412868648767471, 0.0733623057603836, -0.11759574711322784, 0.08285054564476013, 0.16578309237957, 0.0844501256942749, 0.03501356393098831, -0.2907784581184387, -0.17606833577156067, -0.31166768074035645, 0.12524408102035522, -0.10463352501392365, 0.1840793639421463, -0.28303268551826477, 0.1342865228652954, 0.027974288910627365, -0.28412798047065735, -0.42058050632476807, 0.2807896137237549, -0.3698827028274536, 0.15909118950366974, -0.056542884558439255, -0.5345215201377869, 0.033512454479932785, 0.10583572089672089, -0.14002107083797455, 0.15210022032260895, -0.008014051243662834, 0.3031467795372009, 0.12494644522666931, -0.0442923866212368, 0.12221462279558182, -0.1721091866493225, -0.10892213881015778, -0.04068300500512123, -0.2962532937526703, 0.3434012234210968, -0.1826600283384323, -0.08489679545164108, 0.3674064874649048, 0.08653778582811356, -0.06013227254152298, 0.014487205073237419, 0.030065063387155533, -0.016793034970760345, -0.16105449199676514, -0.24521572887897491, 0.1752663403749466, 0.033458780497312546, -0.07311492413282394, 0.451005756855011, -0.4649883806705475, -0.047437634319067, -0.194822758436203, 0.44990211725234985, -0.08025923371315002, -0.007745219394564629, 0.11654207855463028, 0.3166855275630951, -0.11174730211496353, -0.21609142422676086, -0.12877854704856873, -0.3591098487377167, -0.4459238052368164, -0.014776022173464298, 0.12121860682964325, 0.0716741532087326, 0.12532413005828857, 0.21237467229366302, 0.0804673358798027, 0.12113863229751587, 0.04702481999993324, -0.2389003187417984, -0.24766020476818085, 0.19067895412445068, -0.028308216482400894, 0.3537643551826477, 0.29918432235717773, 0.3774612843990326, -0.34116533398628235, -0.057323306798934937, -0.260995090007782, 0.019029144197702408, -0.16090843081474304, 0.09323987364768982, -0.026912808418273926, -0.028905123472213745, 0.3291248083114624, -0.026684723794460297, 0.11290803551673889, 0.3951849341392517, -0.051458679139614105, -0.18865469098091125, -0.1382642686367035, 0.13033482432365417, 0.2386271357536316, 0.056091830134391785, 0.20250719785690308, -0.1293911337852478, 0.05741949379444122, 0.07368165999650955, 0.41543048620224, 0.007274061441421509, -0.2124796360731125, -0.11248401552438736, 0.13507914543151855, 0.08193012326955795, -0.36242610216140747, -0.026308491826057434, -0.015695862472057343, 0.2394554615020752, -0.0753738209605217, 0.23745755851268768, -0.05602625384926796, 0.0239267498254776, 0.042103443294763565, -0.06998243182897568, -0.3326496481895447, 0.18495121598243713, 0.2998546063899994, -0.24042470753192902, -0.28314071893692017, -0.3228277564048767, 0.2852439880371094, 0.21170561015605927, -0.14960302412509918, -0.16963285207748413, 0.18953624367713928, 0.22841617465019226, -0.1535497009754181, -0.12646225094795227, -0.07687775790691376, 0.11124547570943832, -0.1038622185587883, 0.05711625516414642, -0.06801603734493256, -0.35786300897598267, 0.14148695766925812, 0.031735166907310486, 0.2585817575454712, -0.3733952045440674, 0.02648949809372425, 0.24647954106330872, 0.0006557032465934753, 0.23636016249656677, 0.29036766290664673, -0.027200985699892044, 0.36959585547447205, 0.3585464358329773, -0.38218387961387634, -0.0029929522424936295, 0.25449368357658386, 0.28129398822784424, -0.025160208344459534, -0.3133149743080139, -0.35190337896347046, -0.04826025664806366, -0.08180569112300873, 0.18384963274002075, 0.10337695479393005, 0.05886194854974747, 0.14422038197517395, 0.08736339211463928, -0.2581716775894165, 0.12531040608882904, -0.32157325744628906, 0.08170294761657715, -0.19085949659347534, -0.07219274342060089, 0.3396105170249939, 0.06923919916152954, -0.02651754394173622, -0.014387018978595734, 0.6095467805862427, 0.18025891482830048, -0.0704202651977539, -0.34760308265686035, -0.0365435853600502, 0.39364975690841675, 0.00679316371679306, -0.09284086525440216, 0.12281973659992218, 0.3419373035430908, -0.28838270902633667, -0.6158100366592407, 0.21059806644916534, 0.7643389105796814, 0.050144754350185394, 0.07048537582159042, 0.04350678250193596, 0.10238252580165863, 0.08167506754398346, -0.014763031154870987, 0.23241938650608063, 0.2998771071434021, 0.3040369749069214, 0.08619226515293121, 0.13566462695598602, -0.1667095273733139, 0.017522212117910385, 0.37427958846092224, 0.18149876594543457, -0.2374039888381958, -0.1998545229434967, -0.14233072102069855, -0.26800277829170227, -0.04828283190727234, 0.23556387424468994, -0.27739694714546204, 0.2625354826450348, 0.3407360017299652, -0.0776570662856102, -0.10827389359474182, -0.08459936082363129, 0.06945161521434784, -0.19635720551013947, 0.3858129680156708, 0.21944662928581238, 0.42158228158950806, -0.40880975127220154, -0.22109480202198029, -0.15286564826965332, 0.2610732316970825, -0.07222691178321838, 0.39473956823349, -0.06215525418519974, 0.045060209929943085, -0.19560638070106506, 0.1355002522468567, 0.261401891708374, 0.09043797850608826, -0.008819644339382648, 0.6981970071792603, -0.29433777928352356, 0.012684417888522148, -0.2599461078643799, -0.40235304832458496, 0.06282367557287216, -0.3303784728050232, 0.10557718575000763, -0.29062801599502563, -0.04768872261047363, -0.3666192293167114, -0.11384914815425873, 0.3356393277645111, -0.04179200530052185, 0.8245555758476257, -0.04305288940668106, 0.23623673617839813, -0.21074217557907104, -0.07110682874917984, -0.14790533483028412, -0.35389524698257446, 0.13040199875831604, 0.0580555722117424, -0.03291124477982521, 0.2549876272678375, -0.07422562688589096, -0.05303110554814339, 0.008238144218921661, -0.04050750657916069, -0.10364171862602234, -0.22308452427387238, 0.027905123308300972, -0.00316532701253891, -0.20048296451568604, 0.011944006197154522, -0.14448128640651703, 0.44537773728370667, 0.2494048774242401, 0.20943552255630493, -0.5882096290588379, -0.29861798882484436, 0.3018970191478729, -0.35948851704597473, -0.15215153992176056, 0.00783167127519846, 0.31267982721328735, 0.15856018662452698, -0.14968499541282654, -0.498363733291626, -0.01361219584941864, 0.22040022909641266, -0.01940183714032173, -0.23869101703166962, 0.13018447160720825, 0.2517149746417999, -0.011072635650634766, -0.011500250548124313, 0.3963662087917328, 0.05955676734447479, -0.14621777832508087, 0.18452045321464539, -0.4097074866294861 ]
https://github.com/huggingface/datasets/issues/3310
Fatal error condition occurred in aws-c-io
> pyarrow 10.0.1 was just released in conda-forge, which is the first release where we're building against aws-sdk-cpp 1.9.* again after more than a year. Since we cannot test the failure reported here on our infra, I'd be very grateful if someone could verify that the problem does or doesn't reappear. 🙃 > > ``` > conda install -c conda-forge pyarrow=10 > ``` The problem is gone after I install the new version. Thanks! pip install pyarrow==10
## Describe the bug Fatal error when using the library ## Steps to reproduce the bug ```python from datasets import load_dataset dataset = load_dataset('wikiann', 'en') ``` ## Expected results No fatal errors ## Actual results ``` Fatal error condition occurred in D:\bld\aws-c-io_1633633258269\work\source\event_loop.c:74: aws_thread_launch(&cleanup_thread, s_event_loop_destroy_async_thread_fn, el_group, &thread_options) == AWS_OP_SUCCESS Exiting Application ``` ## Environment info - `datasets` version: 1.15.2.dev0 - Platform: Windows-10-10.0.22504-SP0 - Python version: 3.8.12 - PyArrow version: 6.0.0
77
Fatal error condition occurred in aws-c-io ## Describe the bug Fatal error when using the library ## Steps to reproduce the bug ```python from datasets import load_dataset dataset = load_dataset('wikiann', 'en') ``` ## Expected results No fatal errors ## Actual results ``` Fatal error condition occurred in D:\bld\aws-c-io_1633633258269\work\source\event_loop.c:74: aws_thread_launch(&cleanup_thread, s_event_loop_destroy_async_thread_fn, el_group, &thread_options) == AWS_OP_SUCCESS Exiting Application ``` ## Environment info - `datasets` version: 1.15.2.dev0 - Platform: Windows-10-10.0.22504-SP0 - Python version: 3.8.12 - PyArrow version: 6.0.0 > pyarrow 10.0.1 was just released in conda-forge, which is the first release where we're building against aws-sdk-cpp 1.9.* again after more than a year. Since we cannot test the failure reported here on our infra, I'd be very grateful if someone could verify that the problem does or doesn't reappear. 🙃 > > ``` > conda install -c conda-forge pyarrow=10 > ``` The problem is gone after I install the new version. Thanks! pip install pyarrow==10
[ -0.5027391910552979, 0.08050365746021271, -0.11854887008666992, 0.03806949406862259, 0.009393569082021713, -0.21154701709747314, 0.13696497678756714, 0.22592586278915405, -0.2872236967086792, 0.10712637007236481, 0.029287979006767273, 0.6965429186820984, 0.09427253901958466, 0.10076934844255447, -0.16569776833057404, 0.029020877555012703, 0.28112438321113586, 0.32934343814849854, -0.4240035116672516, 0.17742952704429626, -0.27384862303733826, 0.395738810300827, -0.3427298069000244, 0.15795330703258514, -0.16096314787864685, -0.2129424512386322, -0.1146526113152504, 0.1312844604253769, -0.08335552364587784, -0.4010533094406128, 0.2817296087741852, -0.20282194018363953, 0.17871184647083282, 0.44095733761787415, -0.00011791595898102969, -0.09698130190372467, 0.3951343297958374, 0.17074362933635712, -0.2510477602481842, -0.017253831028938293, -0.22269630432128906, 0.04870755225419998, 0.12995682656764984, -0.30690011382102966, 0.32872655987739563, 0.05070628970861435, -0.10186977684497833, 0.045077063143253326, 0.1646210253238678, 0.40096232295036316, 0.12780410051345825, 0.610626220703125, 0.3876954913139343, 0.06965780258178711, 0.09745386242866516, -0.07187557220458984, -0.28206050395965576, 0.4149814546108246, 0.2818567752838135, -0.43386074900627136, 0.12150481343269348, 0.07178471982479095, -0.22747080028057098, 0.04721983149647713, 0.020161505788564682, -0.05029567331075668, 0.10369710624217987, -0.20781241357326508, 0.061063412576913834, 0.0016165077686309814, 0.47020742297172546, -0.7175037860870361, -0.3036356270313263, 0.1892886757850647, 0.03697129711508751, -0.2997840940952301, 0.30298498272895813, 0.12107628583908081, -0.2994321882724762, 0.30041855573654175, 0.10949293524026871, 0.20081208646297455, -0.2768614888191223, 0.2624858617782593, -0.07703046500682831, 0.22979669272899628, -0.0034748828038573265, 0.09395051747560501, -0.006430961191654205, 0.133700892329216, 0.1715909093618393, -0.0752321183681488, -0.1466507911682129, 0.0601925328373909, -0.68410724401474, -0.07285108417272568, -0.05798863619565964, 0.15303921699523926, 0.1739199459552765, 0.06110431253910065, 0.05025901272892952, -0.17480579018592834, 0.3548097610473633, 0.2700142562389374, 0.01853238046169281, -0.08737620711326599, 0.013056255877017975, 0.12033268064260483, 0.32233762741088867, 0.03019058145582676, 0.1275707483291626, -0.06361078470945358, 0.05828007683157921, -0.3341480493545532, 0.23453952372074127, -0.0626736655831337, 0.38430488109588623, -0.12678910791873932, -0.4440544843673706, 0.5110329985618591, -0.4716763198375702, 0.17667117714881897, -0.04846451058983803, 0.37162238359451294, 0.018019914627075195, -0.1795136034488678, 0.13405442237854004, 0.26770055294036865, -0.27834030985832214, 0.1208939179778099, -0.06137969344854355, 0.04927251115441322, -0.1718483716249466, -0.01651095412671566, 0.11582189798355103, -0.3342512249946594, 0.2110096514225006, 0.2999829649925232, 0.14307445287704468, -0.3164721727371216, 0.058189988136291504, 0.07556690275669098, -0.31588801741600037, 0.4530717730522156, -0.004859521985054016, 0.1392412781715393, -0.1622268408536911, 0.023166172206401825, 0.058464668691158295, 0.4442315399646759, -0.06808092445135117, -0.28318551182746887, -0.5082559585571289, 0.15340054035186768, -0.12748804688453674, 0.17109453678131104, -0.06137678772211075, -0.18353740870952606, 0.3056006133556366, -0.20312879979610443, 0.20524898171424866, -0.19734030961990356, 0.21270883083343506, -0.21187752485275269, 0.10674325376749039, 0.11313691735267639, -0.3327605426311493, 0.17314180731773376, -0.2144542783498764, -0.23187008500099182, 0.12830615043640137, 0.2220682054758072, -0.18401049077510834, 0.010106161236763, -0.3383565843105316, 0.1441764384508133, 0.21390286087989807, 0.020586449652910233, -0.41096168756484985, 0.21825438737869263, -0.05277709662914276, -0.016938257962465286, -0.0772625133395195, -0.21820542216300964, -0.061911702156066895, -0.07751011848449707, -0.10807238519191742, -0.3438878059387207, 0.1274241805076599, -0.0011993814259767532, -0.40394946932792664, -0.3120018243789673, 0.07220594584941864, 0.17107467353343964, 0.22494147717952728, -0.00766252726316452, 0.32868969440460205, -0.2940179109573364, 0.3615182638168335, -0.08386042714118958, -0.05509037524461746, 0.15843191742897034, 0.4238065481185913, -0.34063220024108887, 0.07814131677150726, -0.09434711933135986, -0.5836122632026672, 0.23277580738067627, 0.061918891966342926, 0.1566246747970581, -0.23160405457019806, -0.006286706775426865, -0.05649953335523605, 0.47186657786369324, 0.1726311892271042, -0.021287541836500168, 0.08892852813005447, -0.1901947557926178, 0.1275688260793686, -0.06194896996021271, -0.29489606618881226, 0.24716390669345856, -0.5735406875610352, 0.16019600629806519, -0.017232343554496765, 0.23270158469676971, -0.21625082194805145, -0.4686737656593323, 0.08260545879602432, -0.09955567866563797, 0.20475196838378906, 0.0722331777215004, -0.21736624836921692, 0.21113824844360352, -0.23274756968021393, 0.405287504196167, -0.38340309262275696, 0.3023938238620758, 0.032770805060863495, -0.37152135372161865, -0.04379820078611374, -0.14854522049427032, 0.08439208567142487, 0.11111458390951157, 0.41685497760772705, 0.21757330000400543, -0.008625071495771408, 0.1936071813106537, -0.18482428789138794, -0.05168630927801132, 0.02426876686513424, -0.15626901388168335, 0.03967741131782532, 0.21840396523475647, 0.40024125576019287, 0.2095608115196228, 0.3634627163410187, -0.14340105652809143, -0.4108603596687317, -0.045508719980716705, 0.15516480803489685, -0.1266600638628006, 0.13221241533756256, 0.10660330951213837, -0.049742572009563446, 0.030981842428445816, 0.49731218814849854, -0.2648143470287323, 0.6814870834350586, 0.03147926926612854, -0.17994444072246552, 0.20381003618240356, -0.18112502992153168, -0.23262260854244232, 0.3879517912864685, 0.23703157901763916, 0.30419325828552246, 0.5157124996185303, 0.2041700780391693, -0.06738901138305664, -0.2698882818222046, -0.3829443156719208, 0.10784311592578888, 0.22307594120502472, -0.30777707695961, 0.18393927812576294, -0.00025174394249916077, 0.28393763303756714, -0.027700703591108322, -0.06958886981010437, 0.042043574154376984, 0.0800263062119484, -0.006666027009487152, 0.4086262881755829, -0.11602772772312164, 0.35532456636428833, -0.008961837738752365, -0.13649646937847137, -0.10787954181432724, -0.041609831154346466, -0.49323397874832153, -0.21926982700824738, -0.22970202565193176, 0.01226113736629486, 0.26984769105911255, -0.12416765093803406, 0.15934664011001587, 0.03112162835896015, -0.07739141583442688, -0.23456522822380066, -0.2215409278869629, 0.007751356810331345, -0.020539429038763046, 0.4578383266925812, 0.1156219094991684, 0.1203959584236145, -0.11188284307718277, -0.5282750725746155, 0.054101280868053436, -0.1701846420764923, -0.028745004907250404, 0.06425691395998001, -0.3512704372406006, -0.029718872159719467, -0.24561667442321777, -0.19355055689811707, -0.12146002799272537, -0.3606358766555786, 0.12245608866214752, -0.30613455176353455, 0.14888831973075867, -0.16578218340873718, 0.5184462070465088, 0.14233261346817017, 0.17582577466964722, -0.1513417363166809, -0.12667018175125122, -0.22832785546779633, 0.0744636207818985, 0.015691101551055908, -0.1921595185995102, 0.07340818643569946, 0.06125710904598236, 0.5805180668830872, 0.10438627749681473, -0.4529457688331604, 0.1916487216949463, 0.026759522035717964, 0.6144838333129883, -0.2531127333641052, -0.062021732330322266, 0.208736851811409, -0.03900991007685661, 0.02712620608508587, -0.0731140598654747, 0.033037975430488586, -0.1724364459514618, -0.008225195109844208, 0.2603137493133545, -0.04015744477510452, 0.3979750871658325, 0.0878179669380188, 0.611051082611084, 0.19251342117786407, -0.3725169003009796, 0.22065629065036774, 0.0887611135840416, 0.014340214431285858, -0.03116481751203537, -0.09760291874408722, 0.1615445613861084, -0.14095821976661682, -0.3654574155807495, -0.03813549876213074, -0.20705628395080566, -0.5514780879020691, -0.12809321284294128, -0.0015777871012687683, -0.44165530800819397, -0.24060843884944916, 0.030764995142817497, 0.08545338362455368, 0.2392800748348236, 0.019082900136709213, -0.02117837220430374, 0.16828308999538422, 0.07157578319311142, 0.15012720227241516, 0.32279765605926514, -0.22847917675971985, -0.17207519710063934, 0.02908874675631523, -0.2995307445526123, -0.5747323632240295, 0.24355506896972656, -0.040225591510534286, 0.29854440689086914, 0.07260312139987946, 0.12281008809804916, 0.15063871443271637, -0.3665682375431061, 0.5763258934020996, -0.028652438893914223, 0.07650895416736603, 0.1231088936328888, 0.4237491488456726, -0.12519784271717072, -0.21588115394115448, -0.11779002845287323, 0.09371363371610641, 0.30988848209381104, -0.007521331310272217, -0.24206280708312988, 0.03084360808134079, 0.022932415828108788, -0.0279037244617939, 0.23430529236793518, -0.34935447573661804, -0.28038331866264343, -0.301034152507782, -0.31310153007507324, 0.3819013237953186, -0.01552597340196371, 0.05170457810163498, -0.2280609905719757, -0.39334800839424133, -0.05864855647087097, -0.015720419585704803, -0.0884377658367157, 0.1629505753517151, -0.19939514994621277, -0.4466618001461029, 0.42849013209342957, -0.2801416516304016, -0.4658685028553009, 0.6364935040473938, 0.185551717877388, 0.24681022763252258, -0.14809472858905792, 0.15682744979858398, 0.24261152744293213, 0.2690846025943756, 0.14929009974002838, -0.23851698637008667, -0.05121774226427078, 0.11807796359062195, 0.10856592655181885, -0.01801750436425209, 0.049632418900728226, 0.24989598989486694, 0.20694540441036224, -0.23893415927886963, 0.31991180777549744, 0.4931587874889374, -0.05743907764554024, -0.010689891874790192, 0.584801971912384, -0.09827996790409088, -0.1029115617275238, 0.38502055406570435, 0.041661810129880905, 0.8046313524246216, 0.13139590620994568, -0.09831114113330841, 0.47914302349090576, -0.4149543046951294, 0.2725352942943573, -0.2393808662891388, 0.12198974192142487, -0.3779276907444, 0.12058713287115097, 0.0748944878578186, -0.12306389212608337, 0.35651230812072754, 0.09114901721477509, 0.08227294683456421, -0.12811148166656494, 0.11787532269954681, 0.16384468972682953, 0.09008108824491501, 0.03765290230512619, -0.292451411485672, -0.17249897122383118, -0.31798282265663147, 0.09453915059566498, -0.11879590153694153, 0.1937621384859085, -0.2690448462963104, 0.11664145439863205, 0.008649934083223343, -0.3044617176055908, -0.4625999927520752, 0.2888242304325104, -0.38764792680740356, 0.13630014657974243, -0.008757252246141434, -0.5820237994194031, 0.04540373012423515, 0.09356407821178436, -0.14506568014621735, 0.156596839427948, -0.03122328408062458, 0.3184354901313782, 0.14641354978084564, -0.01267616730183363, 0.12605136632919312, -0.16839244961738586, -0.1017644852399826, -0.02389783412218094, -0.26170095801353455, 0.28322282433509827, -0.24184228479862213, -0.04601489380002022, 0.3156048357486725, 0.10574789345264435, -0.04035211354494095, 0.01599075086414814, 0.042137738317251205, -0.015323944389820099, -0.1466825157403946, -0.2539360523223877, 0.14963014423847198, 0.062235139310359955, -0.037170931696891785, 0.43281713128089905, -0.48919132351875305, -0.05023922398686409, -0.17700810730457306, 0.4499719440937042, -0.08904463797807693, -0.02555672824382782, 0.12204436212778091, 0.2890744209289551, -0.09598962962627411, -0.1701318919658661, -0.11500576138496399, -0.3083491921424866, -0.5162352323532104, -0.03293010964989662, 0.11976536363363266, 0.0695701390504837, 0.1298718899488449, 0.2071400135755539, 0.07381294667720795, 0.09555128961801529, 0.04048451408743858, -0.2367592453956604, -0.25425127148628235, 0.20022428035736084, -0.03864014521241188, 0.30543243885040283, 0.25889378786087036, 0.35298246145248413, -0.3327406048774719, -0.08293422311544418, -0.223126620054245, 0.042368486523628235, -0.10504183173179626, 0.11264695972204208, -0.02209468185901642, -0.011105313897132874, 0.2970865070819855, -0.06276866793632507, 0.0774892196059227, 0.3820034861564636, -0.08272785693407059, -0.1480860412120819, -0.16511379182338715, 0.1472344994544983, 0.25713756680488586, 0.01677658036351204, 0.19428159296512604, -0.10712540149688721, 0.08420354127883911, 0.0492183119058609, 0.40331029891967773, 0.041183456778526306, -0.2374664694070816, -0.13486801087856293, 0.10677101463079453, 0.10483524203300476, -0.36660921573638916, 0.001314796507358551, -0.028018519282341003, 0.255015105009079, -0.05298423022031784, 0.2600589096546173, -0.05077001452445984, 0.038897737860679626, 0.0009122096234932542, -0.05246656388044357, -0.3731497526168823, 0.19183197617530823, 0.30013883113861084, -0.24120335280895233, -0.2610282301902771, -0.36037173867225647, 0.2829025983810425, 0.23821794986724854, -0.13871712982654572, -0.21110624074935913, 0.18652400374412537, 0.18296508491039276, -0.1324704885482788, -0.12765590846538544, -0.07261742651462555, 0.08571935445070267, -0.13045698404312134, 0.044845931231975555, -0.014775708317756653, -0.3852379322052002, 0.14314420521259308, 0.04024877771735191, 0.25948217511177063, -0.36127597093582153, 0.013807594776153564, 0.26983314752578735, 0.0034251175820827484, 0.2502870261669159, 0.2566632032394409, -0.03490244224667549, 0.33400335907936096, 0.32111358642578125, -0.3810702860355377, -0.015535494312644005, 0.2562633454799652, 0.29567012190818787, -0.050870902836322784, -0.3202749490737915, -0.36643144488334656, -0.028749272227287292, -0.10840354859828949, 0.20530545711517334, 0.14040105044841766, 0.07999955862760544, 0.16397230327129364, 0.05715534836053848, -0.21469689905643463, 0.0972113385796547, -0.3135487139225006, 0.08809497952461243, -0.1746780127286911, -0.07480613887310028, 0.30689817667007446, 0.06224033609032631, -0.03371841087937355, 0.005566805601119995, 0.665777325630188, 0.18236088752746582, -0.07308225333690643, -0.38309118151664734, -0.04852305352687836, 0.3973167836666107, -0.032474540174007416, -0.09577348828315735, 0.14510664343833923, 0.30408015847206116, -0.3311026990413666, -0.5724168419837952, 0.19398386776447296, 0.8115391731262207, 0.048563048243522644, 0.06983639299869537, 0.03854728117585182, 0.09398584067821503, 0.11059273779392242, 0.029695089906454086, 0.22021523118019104, 0.29478633403778076, 0.3404579162597656, 0.06150207296013832, 0.0885559469461441, -0.1161770150065422, 0.07327775657176971, 0.39488646388053894, 0.16739803552627563, -0.2420608103275299, -0.21624881029129028, -0.15667028725147247, -0.24120664596557617, -0.03930521756410599, 0.2704249918460846, -0.2496887445449829, 0.26958322525024414, 0.3211221396923065, -0.0541883148252964, -0.11247579753398895, -0.06811986118555069, 0.05024970322847366, -0.16932332515716553, 0.3896115720272064, 0.25865015387535095, 0.3726957142353058, -0.42975035309791565, -0.19084994494915009, -0.15015481412410736, 0.25604939460754395, -0.09775975346565247, 0.4526157081127167, -0.033185556530952454, 0.04975146800279617, -0.23215359449386597, 0.14393270015716553, 0.2925105690956116, 0.0616566501557827, -0.023569762706756592, 0.7326902151107788, -0.29160961508750916, -0.012406166642904282, -0.21797482669353485, -0.41400957107543945, 0.04529403895139694, -0.31575310230255127, 0.11388284713029861, -0.303190678358078, -0.0727383941411972, -0.33712220191955566, -0.12284228205680847, 0.33517584204673767, -0.014948137104511261, 0.8313420414924622, -0.017392849549651146, 0.2207942008972168, -0.19763001799583435, -0.08240523934364319, -0.15676411986351013, -0.35118016600608826, 0.1288948953151703, 0.09643534570932388, -0.0363585464656353, 0.28337809443473816, -0.05901920795440674, -0.0604264922440052, -0.014517026953399181, -0.055277686566114426, -0.1287381500005722, -0.20343175530433655, 0.045429617166519165, 0.01928682066500187, -0.20147904753684998, 0.05883064866065979, -0.1551097184419632, 0.4091273844242096, 0.24118457734584808, 0.26237210631370544, -0.64138263463974, -0.3190154731273651, 0.2818920910358429, -0.4116288125514984, -0.13290080428123474, -0.02904835343360901, 0.3375589847564697, 0.13912124931812286, -0.14452971518039703, -0.5196051597595215, -0.026938289403915405, 0.2243478000164032, -0.029971346259117126, -0.21535086631774902, 0.08019430935382843, 0.24384377896785736, 0.007151246070861816, -0.0020086579024791718, 0.4254657030105591, 0.06886748224496841, -0.16308148205280304, 0.23933765292167664, -0.4278721213340759 ]
https://github.com/huggingface/datasets/issues/3310
Fatal error condition occurred in aws-c-io
@liuchaoqun, with `pip install pyarrow` you don't get aws-bindings, they're too complicated to package into wheels as far as I know. And even if they're packaged, at the time of the release of pyarrow 10 it would have still been pinned to aws 1.8 for the same reasons as in this issue.
## Describe the bug Fatal error when using the library ## Steps to reproduce the bug ```python from datasets import load_dataset dataset = load_dataset('wikiann', 'en') ``` ## Expected results No fatal errors ## Actual results ``` Fatal error condition occurred in D:\bld\aws-c-io_1633633258269\work\source\event_loop.c:74: aws_thread_launch(&cleanup_thread, s_event_loop_destroy_async_thread_fn, el_group, &thread_options) == AWS_OP_SUCCESS Exiting Application ``` ## Environment info - `datasets` version: 1.15.2.dev0 - Platform: Windows-10-10.0.22504-SP0 - Python version: 3.8.12 - PyArrow version: 6.0.0
52
Fatal error condition occurred in aws-c-io ## Describe the bug Fatal error when using the library ## Steps to reproduce the bug ```python from datasets import load_dataset dataset = load_dataset('wikiann', 'en') ``` ## Expected results No fatal errors ## Actual results ``` Fatal error condition occurred in D:\bld\aws-c-io_1633633258269\work\source\event_loop.c:74: aws_thread_launch(&cleanup_thread, s_event_loop_destroy_async_thread_fn, el_group, &thread_options) == AWS_OP_SUCCESS Exiting Application ``` ## Environment info - `datasets` version: 1.15.2.dev0 - Platform: Windows-10-10.0.22504-SP0 - Python version: 3.8.12 - PyArrow version: 6.0.0 @liuchaoqun, with `pip install pyarrow` you don't get aws-bindings, they're too complicated to package into wheels as far as I know. And even if they're packaged, at the time of the release of pyarrow 10 it would have still been pinned to aws 1.8 for the same reasons as in this issue.
[ -0.4673210680484772, 0.04498112201690674, -0.09802389144897461, -0.010774493217468262, 0.07762184739112854, -0.09572061151266098, 0.29814717173576355, 0.2218540906906128, -0.1547415554523468, 0.1986941695213318, -0.11724458634853363, 0.6865643262863159, -0.036471255123615265, 0.04448092728853226, 0.056765053421258926, -0.07173189520835876, 0.25392431020736694, 0.22605395317077637, -0.32362163066864014, 0.1337384432554245, -0.2376011461019516, 0.26786288619041443, -0.24736285209655762, 0.12133421003818512, -0.19256269931793213, -0.1465858519077301, -0.11651197820901871, 0.032003022730350494, -0.13845811784267426, -0.37205830216407776, 0.22148361802101135, -0.1749538630247116, 0.32111936807632446, 0.40754228830337524, -0.0001118424697779119, -0.023291967809200287, 0.18979141116142273, 0.1882907748222351, -0.139935702085495, 0.008490234613418579, -0.04851908981800079, -0.08384699374437332, 0.24570244550704956, -0.3792669475078583, 0.411200612783432, 0.05622120946645737, -0.04869195073843002, 0.21775054931640625, 0.2492748349905014, 0.35003167390823364, 0.19394370913505554, 0.8236767053604126, 0.2924216091632843, 0.06624273210763931, 0.5662021636962891, -0.25771206617355347, -0.28862977027893066, 0.3084925413131714, 0.35227131843566895, -0.3262239992618561, 0.06680665910243988, 0.04095148667693138, -0.22506515681743622, 0.09628328680992126, -0.031510382890701294, -0.02436639368534088, 0.17388148605823517, -0.05736450105905533, -0.024271830916404724, 0.007883742451667786, 0.35999003052711487, -0.5885760188102722, -0.2504366636276245, 0.12989455461502075, 0.09223528951406479, -0.22429032623767853, 0.20020610094070435, 0.22769379615783691, -0.1755690574645996, 0.22273392975330353, -0.043561458587646484, 0.1420651227235794, -0.2357410192489624, 0.2697957158088684, -0.14937946200370789, 0.5531349778175354, 0.02422453463077545, 0.038940757513046265, 0.005031224340200424, -0.006421566009521484, 0.34046921133995056, -0.0467374250292778, 0.004753720015287399, 0.09102845937013626, -0.35961848497390747, -0.07219716161489487, 0.08779005706310272, 0.4572543501853943, 0.0817122608423233, -0.055380403995513916, 0.10179948806762695, -0.006960824131965637, 0.3788871467113495, 0.3006368577480316, -0.07067647576332092, 0.01618940569460392, -0.21149399876594543, 0.14754942059516907, 0.41939258575439453, 0.07316965609788895, 0.0909784734249115, -0.04150895029306412, 0.00543623324483633, -0.2525815963745117, 0.2867584824562073, -0.0546746626496315, 0.38439440727233887, -0.07392630726099014, -0.33576324582099915, 0.21098195016384125, -0.38575467467308044, 0.11773095279932022, -0.04132512956857681, 0.29487910866737366, -0.14421901106834412, -0.19419553875923157, 0.045736394822597504, 0.22566701471805573, -0.3635415732860565, 0.2404467761516571, -0.15160146355628967, 0.08325104415416718, -0.2247639000415802, -0.1484307497739792, 0.17918293178081512, -0.2427295446395874, 0.21830792725086212, 0.22475415468215942, 0.053750231862068176, -0.0570332407951355, -0.010598480701446533, 0.23096530139446259, -0.3560110330581665, 0.3423442542552948, 0.24756115674972534, 0.22058074176311493, -0.09114465117454529, -0.1506904661655426, -0.002630658447742462, 0.28650254011154175, -0.23722916841506958, -0.26931020617485046, -0.3206009566783905, 0.270380437374115, -0.34752023220062256, -0.00040192529559135437, -0.029596127569675446, -0.2248229831457138, 0.2085571587085724, -0.19369187951087952, 0.09133226424455643, -0.2483624368906021, 0.2831404507160187, -0.25189003348350525, 0.10088387876749039, -0.0676957219839096, -0.4335591197013855, -0.036920830607414246, -0.15168732404708862, -0.17173205316066742, 0.15889793634414673, 0.2084212601184845, -0.29235967993736267, 0.08742166310548782, -0.2276153415441513, 0.15927541255950928, 0.1623603254556656, 0.12562216818332672, -0.49318286776542664, -0.010560930706560612, -0.11210979521274567, 0.02637515775859356, -0.11914729326963425, -0.13057725131511688, -0.08549518138170242, 0.10426905006170273, 0.04168514534831047, -0.22758528590202332, 0.06049966812133789, 0.03760285675525665, -0.22124502062797546, -0.25290340185165405, 0.12990939617156982, 0.10018517076969147, 0.3491379916667938, -0.0033017918467521667, 0.301554799079895, -0.15169869363307953, 0.23295167088508606, -0.19275987148284912, 0.040466949343681335, 0.15715403854846954, 0.3970617651939392, -0.20405890047550201, 0.07648830860853195, -0.21874353289604187, -0.5177273750305176, 0.24657723307609558, -0.009689746424555779, 0.12611177563667297, -0.2979457974433899, -0.02721782959997654, -0.14538878202438354, 0.40181291103363037, 0.11840072274208069, 0.016148041933774948, 0.11584717035293579, -0.04536011070013046, 0.09985731542110443, -0.05828438699245453, -0.255773663520813, -0.13083703815937042, -0.4202626645565033, 0.13422822952270508, -0.14963418245315552, 0.3130398094654083, -0.3077366352081299, -0.4486159384250641, 0.05866217613220215, -0.1394977569580078, 0.05076297000050545, 0.04098951071500778, -0.0385114848613739, 0.18268361687660217, -0.2707882225513458, 0.4133363962173462, -0.34855562448501587, 0.4672737121582031, -0.02929776720702648, -0.4988556206226349, 0.021995488554239273, -0.0071593038737773895, 0.04439916834235191, 0.045723266899585724, 0.22306883335113525, 0.29600414633750916, -0.16563203930854797, 0.23246151208877563, -0.10413825511932373, 0.0464126318693161, -0.060504037886857986, 0.02885143831372261, 0.018851229920983315, 0.22643309831619263, 0.22975489497184753, 0.2717787027359009, 0.502848744392395, -0.09151550382375717, -0.23885516822338104, -0.05716168135404587, 0.35786983370780945, -0.03252311050891876, 0.08141414821147919, 0.0705036148428917, -0.27467843890190125, 0.022576190531253815, 0.4370921850204468, -0.11689405143260956, 0.6061379909515381, 0.2658921778202057, 0.10300601273775101, 0.13899312913417816, -0.2746290862560272, -0.30246803164482117, 0.24435770511627197, 0.366502046585083, -0.02760237455368042, 0.38283881545066833, 0.15041913092136383, -0.13370807468891144, -0.37116119265556335, -0.1607898622751236, -0.025767965242266655, 0.21981105208396912, -0.45573773980140686, 0.11110695451498032, -0.15022222697734833, 0.2270500659942627, -0.005999880842864513, -0.17441634833812714, -0.14846432209014893, -0.16577059030532837, 0.18828493356704712, 0.2921607494354248, -0.12499234080314636, 0.35237953066825867, 0.03278588503599167, -0.1502043455839157, -0.0804026648402214, -0.17306838929653168, -0.45250076055526733, -0.19661498069763184, -0.29680705070495605, 0.15383657813072205, 0.12575630843639374, -0.22260870039463043, 0.17452454566955566, 0.020778046920895576, 0.01578846573829651, -0.33057767152786255, -0.28653663396835327, 0.005240477621555328, -0.17738232016563416, 0.37379688024520874, 0.25012075901031494, 0.11978117376565933, -0.2673349678516388, -0.4199584424495697, 0.28025853633880615, -0.22635184228420258, -0.02419375441968441, 0.03397923707962036, -0.23547138273715973, -0.03653905168175697, -0.13258127868175507, -0.19728359580039978, -0.19317370653152466, -0.32343214750289917, 0.09426318109035492, 0.011422708630561829, -0.004675194621086121, -0.17321892082691193, 0.4573591649532318, 0.1859300434589386, 0.18363799154758453, -0.12888984382152557, -0.06143369525671005, -0.26608148217201233, 0.3511583209037781, -0.1279972642660141, -0.18774130940437317, 0.14330925047397614, 0.10538573563098907, 0.4544234871864319, 0.2265169620513916, -0.31240832805633545, 0.2004423588514328, -0.15513794124126434, 0.6179445385932922, -0.00701073557138443, 0.342826247215271, 0.3159598708152771, 0.09367574006319046, -0.07416336238384247, -0.15049785375595093, 0.061688538640737534, -0.28824910521507263, 0.06765247881412506, 0.2321619689464569, -0.09230254590511322, 0.26434218883514404, 0.09436146914958954, 0.9070224761962891, -0.07136193662881851, -0.24648670852184296, 0.3439045250415802, -0.25214454531669617, 0.1539756953716278, -0.0662381574511528, -0.09954927861690521, -0.07047192007303238, -0.21345019340515137, -0.25995907187461853, 0.17986799776554108, -0.022516954690217972, -0.5015759468078613, -0.19652733206748962, -0.06932748854160309, -0.29277047514915466, -0.24460524320602417, 0.04721736162900925, 0.2143932431936264, 0.2183169722557068, 0.08561116456985474, -0.02876468002796173, -0.001381048932671547, -0.05611693859100342, 0.256188303232193, 0.05441557988524437, -0.2394012212753296, -0.019060449674725533, -0.018022768199443817, -0.4357779026031494, -0.5259984731674194, 0.31640952825546265, -0.06599733233451843, -0.06256740540266037, 0.12125949561595917, -0.16282951831817627, 0.19234003126621246, -0.2550641894340515, 0.3617668151855469, -0.19369041919708252, -0.03718426078557968, 0.25212404131889343, 0.39280205965042114, -0.4183572232723236, -0.19098663330078125, -0.4650209844112396, -0.07493599504232407, 0.07575123012065887, -0.045853495597839355, -0.18661122024059296, 0.07113349437713623, 0.10478460043668747, -0.004971326794475317, 0.11562840640544891, -0.290409654378891, -0.2111712396144867, -0.23305466771125793, -0.26748329401016235, 0.28569045662879944, 0.04030474275350571, 0.024888096377253532, -0.21581505239009857, -0.2659572958946228, -0.06502949446439743, 0.006435327231884003, -0.009843528270721436, 0.21439522504806519, -0.26463398337364197, -0.24075163900852203, 0.16280950605869293, -0.2238936424255371, -0.24262693524360657, 0.4107653796672821, 0.33039000630378723, 0.15247410535812378, -0.14321944117546082, 0.11832495033740997, 0.315733939409256, 0.31475594639778137, 0.06300264596939087, -0.2920662462711334, 0.04060198739171028, 0.1707165241241455, 0.17257016897201538, -0.010336480103433132, 0.23286403715610504, 0.3028687536716461, 0.09942033141851425, -0.05712764710187912, 0.2533014714717865, 0.3816814124584198, 0.06391339004039764, -0.0724228173494339, 0.4011373519897461, 0.044955868273973465, -0.21888568997383118, 0.3699761629104614, 0.027911458164453506, 0.8568691611289978, 0.1028679609298706, 0.0701175108551979, 0.5299764275550842, -0.33790314197540283, 0.27605995535850525, -0.15070343017578125, 0.005933705717325211, -0.3297228515148163, 0.15501298010349274, 0.05023998022079468, -0.08969032764434814, 0.08831988275051117, 0.10210032016038895, -0.006739355623722076, 0.05468861386179924, 0.046679481863975525, 0.32893669605255127, 0.026450831443071365, -0.02550521306693554, -0.246016263961792, -0.19001515209674835, -0.499129056930542, 0.17705556750297546, -0.06673996895551682, 0.21918082237243652, -0.29599887132644653, 0.11290423572063446, 0.05222078785300255, -0.48810476064682007, -0.19153696298599243, 0.1808708906173706, -0.38689014315605164, 0.14261649549007416, -0.12253437936306, -0.35219597816467285, -0.043299898505210876, 0.19157174229621887, -0.19883690774440765, 0.15205490589141846, -0.12754809856414795, 0.39554378390312195, 0.05076589062809944, -0.07322963327169418, 0.14514687657356262, -0.06894119083881378, -0.022207504138350487, -0.006571747362613678, -0.25608599185943604, 0.3309642970561981, -0.1354173868894577, 0.020118586719036102, 0.20290690660476685, 0.05950422212481499, 0.09677889198064804, -0.07240436226129532, 0.1533801257610321, -0.13815391063690186, -0.10174815356731415, -0.26738378405570984, 0.2073608636856079, -0.1028224527835846, 0.09788866341114044, 0.5712314248085022, -0.38065600395202637, -0.03188391402363777, -0.21595337986946106, 0.5395738482475281, -0.2033170759677887, -0.09999112784862518, 0.10614010691642761, 0.37751176953315735, -0.27980297803878784, -0.17030945420265198, 0.056630417704582214, -0.10217494517564774, -0.4885769784450531, -0.07562942057847977, 0.17872542142868042, 0.27562540769577026, 0.04383906349539757, 0.29786765575408936, 0.20919066667556763, 0.02272988110780716, 0.017013926059007645, -0.05107636749744415, -0.3662310242652893, 0.27718889713287354, 0.25774961709976196, 0.43304330110549927, 0.32751062512397766, 0.08825433254241943, -0.14699533581733704, -0.11057056486606598, -0.33149266242980957, -0.04202256351709366, -0.08693840354681015, 0.06704635918140411, -0.14242658019065857, -0.04430888593196869, 0.20361033082008362, 0.07162663340568542, 0.19887247681617737, 0.24191926419734955, -0.044107794761657715, -0.24890097975730896, -0.2193356454372406, 0.12704765796661377, 0.20448103547096252, -0.009752624668180943, 0.18226760625839233, -0.10289571434259415, 0.029725078493356705, -0.0617881640791893, 0.49102044105529785, 0.11448606103658676, -0.20558474957942963, -0.04489511996507645, 0.24234557151794434, -0.014259181916713715, -0.3828772306442261, -0.09311382472515106, -0.06247797608375549, 0.16824278235435486, -0.0009432821534574032, 0.24268852174282074, 0.04454391822218895, -0.025384332984685898, 0.21241579949855804, 0.05720680207014084, -0.044468775391578674, 0.1570146679878235, 0.22302961349487305, -0.21028019487857819, -0.2906140387058258, -0.4578557014465332, 0.3507183790206909, 0.17142757773399353, -0.11976208537817001, -0.15799205005168915, 0.29557690024375916, 0.3011481761932373, -0.30946120619773865, -0.19638998806476593, -0.012998759746551514, 0.08672621101140976, -0.001530192792415619, 0.06355178356170654, -0.025212496519088745, -0.2707381546497345, 0.12159942835569382, 0.033392176032066345, 0.25480929017066956, -0.351559042930603, -0.1290799081325531, 0.21796578168869019, -0.0907706692814827, 0.20139920711517334, 0.17753049731254578, 0.0028131473809480667, 0.2453376054763794, 0.21402950584888458, -0.32719603180885315, -0.014978984370827675, 0.14915873110294342, 0.2183893620967865, 0.03397881239652634, -0.30210593342781067, -0.40199270844459534, -0.1250152885913849, -0.020423486828804016, 0.09592786431312561, 0.16748353838920593, 0.14892220497131348, 0.240255206823349, 0.22124068439006805, -0.29547813534736633, 0.2829941511154175, -0.20006373524665833, -0.05336488038301468, -0.34205031394958496, -0.11706647276878357, 0.14129102230072021, 0.1204947978258133, -0.002472963184118271, -0.11386151611804962, 0.4957820475101471, 0.1910281777381897, 0.09107787162065506, -0.41027647256851196, 0.05377597361803055, 0.3388479948043823, 0.020004816353321075, -0.20436201989650726, 0.09047055244445801, 0.129491925239563, -0.24829396605491638, -0.6131790280342102, 0.14714787900447845, 0.712849497795105, -0.0972607433795929, 0.11728566884994507, 0.13716745376586914, 0.013415336608886719, 0.03302764892578125, 0.002999592572450638, 0.17001405358314514, 0.16210442781448364, 0.36562463641166687, 0.15905605256557465, 0.18641740083694458, -0.21914337575435638, -0.03607406094670296, 0.01780596375465393, 0.16994623839855194, -0.15975117683410645, -0.26110759377479553, -0.10256259143352509, -0.36091384291648865, -0.11705800890922546, 0.12766624987125397, -0.3274856507778168, 0.2731614112854004, 0.36107826232910156, 0.09983064979314804, -0.062439821660518646, -0.22106000781059265, 0.10048183053731918, -0.11922860145568848, 0.45420926809310913, 0.2540743350982666, 0.447249174118042, -0.3398505449295044, -0.20957979559898376, -0.22150960564613342, 0.20451916754245758, -0.11747534573078156, 0.3113030791282654, -0.11019481718540192, -0.027842652052640915, -0.16674068570137024, 0.12859845161437988, 0.3363398313522339, 0.070655457675457, -0.09691491723060608, 0.6804805994033813, -0.14223705232143402, 0.06140883266925812, -0.08003473281860352, -0.2936484217643738, 0.062259867787361145, -0.20385944843292236, -0.03523518517613411, -0.34089556336402893, -0.003882642835378647, -0.42634648084640503, -0.07773053646087646, 0.2762441635131836, -0.022512689232826233, 0.7957271337509155, -0.026877669617533684, 0.3573746681213379, -0.1686129868030548, 0.23013359308242798, -0.3243595361709595, -0.46769487857818604, 0.06148923560976982, -0.00299641489982605, -0.21091322600841522, 0.29532140493392944, -0.09399238973855972, -0.12333182990550995, -0.0858316570520401, -0.13386781513690948, -0.002832416445016861, -0.07515397667884827, 0.14844529330730438, 0.005509445443749428, -0.23608088493347168, 0.1585485339164734, -0.11140315234661102, 0.1897614300251007, 0.21800822019577026, 0.16212774813175201, -0.5401840209960938, -0.5296626687049866, 0.30591702461242676, -0.3570355772972107, -0.21789126098155975, 0.04199853166937828, 0.23322701454162598, 0.07990400493144989, -0.20044946670532227, -0.5289660096168518, -0.012037038803100586, 0.3572441041469574, -0.07126451283693314, -0.2578698694705963, 0.128750741481781, 0.18161216378211975, 0.0980260968208313, -0.1317259818315506, 0.31095194816589355, 0.03961225599050522, -0.16969642043113708, 0.04405919834971428, -0.5354822874069214 ]
https://github.com/huggingface/datasets/issues/3308
"dataset_infos.json" missing for chr_en and mc4
Hi ! Thanks for reporting :) We can easily add the metadata for `chr_en` IMO, but for mC4 it will take more time, since it requires to count the number of examples in each language
## Describe the bug In the repository, every dataset has its metadata in a file called`dataset_infos.json`. But, this file is missing for two datasets: `chr_en` and `mc4`. ## Steps to reproduce the bug Check [chr_en](https://github.com/huggingface/datasets/tree/master/datasets/chr_en) and [mc4](https://github.com/huggingface/datasets/tree/master/datasets/mc4)
35
"dataset_infos.json" missing for chr_en and mc4 ## Describe the bug In the repository, every dataset has its metadata in a file called`dataset_infos.json`. But, this file is missing for two datasets: `chr_en` and `mc4`. ## Steps to reproduce the bug Check [chr_en](https://github.com/huggingface/datasets/tree/master/datasets/chr_en) and [mc4](https://github.com/huggingface/datasets/tree/master/datasets/mc4) Hi ! Thanks for reporting :) We can easily add the metadata for `chr_en` IMO, but for mC4 it will take more time, since it requires to count the number of examples in each language
[ 0.11932183802127838, -0.1811273992061615, -0.027905840426683426, 0.3837452530860901, 0.21583376824855804, 0.2018747329711914, -0.05418330803513527, 0.15737885236740112, -0.32966336607933044, 0.24879023432731628, 0.08083972334861755, 0.24991047382354736, -0.00003396347165107727, 0.06384845077991486, 0.09161558747291565, -0.23674148321151733, 0.1538735032081604, 0.10020917654037476, -0.10735288262367249, -0.15243321657180786, -0.02428485080599785, 0.41243162751197815, 0.05656197667121887, -0.20352663099765778, -0.3748120069503784, 0.046944066882133484, -0.2703377604484558, 0.20793813467025757, -0.16752630472183228, -0.4068067967891693, 0.21055756509304047, -0.014626726508140564, -0.1257689744234085, 0.23697394132614136, -0.00011126782192150131, -0.054601069539785385, 0.301849901676178, -0.18104279041290283, -0.324441522359848, -0.3433604836463928, -0.09261837601661682, -0.21262480318546295, 0.003944216761738062, -0.030823543667793274, -0.2640373110771179, -0.1946127712726593, -0.01816900260746479, -0.22683744132518768, 0.12093265354633331, 0.08216356486082077, 0.2278030812740326, 0.2824181914329529, 0.21480105817317963, -0.34202009439468384, 0.1941300332546234, 0.5780110359191895, -0.1318906992673874, 0.28752321004867554, 0.2241056114435196, 0.11459524929523468, 0.15172919631004333, 0.687798023223877, 0.3535057306289673, -0.13557255268096924, 0.22836706042289734, 0.07404407858848572, -0.14851531386375427, -0.22220340371131897, 0.19964855909347534, 0.23066693544387817, 0.5932161808013916, -0.27988436818122864, -0.38098350167274475, -0.300025075674057, 0.12367681413888931, -0.1046430692076683, 0.3523980379104614, 0.31483179330825806, 0.04634503647685051, 0.26250049471855164, -0.1450374722480774, -0.2272588163614273, -0.0006873011589050293, 0.20831404626369476, 0.201388418674469, 0.23862357437610626, -0.21486619114875793, -0.0292355939745903, 0.06059795990586281, -0.3280763626098633, -0.38399630784988403, -0.02714909240603447, -0.18046194314956665, 0.2966530919075012, 0.013580124825239182, -0.14918239414691925, 0.21218633651733398, -0.003489270806312561, 0.24843838810920715, 0.07525736093521118, -0.2425049990415573, -0.106476329267025, -0.379293829202652, 0.12221973389387131, 0.24899573624134064, -0.10644775629043579, 0.3798609972000122, 0.12040593475103378, 0.31220322847366333, 0.019886502996087074, 0.20066368579864502, -0.16013580560684204, 0.02138417959213257, 0.15182344615459442, -0.16432106494903564, 0.17304304242134094, 0.2487294226884842, -0.20496857166290283, -0.07179703563451767, 0.10767383873462677, -0.1795274317264557, -0.20235972106456757, -0.02606482058763504, 0.38684946298599243, -0.08840391784906387, -0.05871196091175079, -0.06710785627365112, 0.20466570556163788, 0.0177158210426569, -0.34062686562538147, -0.25108063220977783, 0.26877206563949585, -0.19565260410308838, 0.05248940736055374, 0.1921052783727646, -0.22584350407123566, 0.5481269359588623, 0.18172568082809448, 0.13903433084487915, -0.11722128093242645, -0.022828392684459686, 0.1305704116821289, -0.18486514687538147, 0.3069690763950348, -0.0597691610455513, 0.2570514380931854, 0.009885016828775406, -0.02204667404294014, -0.20311489701271057, -0.16562747955322266, -0.4809247851371765, -0.13588285446166992, -0.345217227935791, 0.1878833770751953, -0.16348223388195038, 0.00995962880551815, -0.32449808716773987, 0.26660576462745667, -0.03717341274023056, -0.20212973654270172, 0.15482589602470398, 0.22360645234584808, -0.05788499116897583, -0.21389342844486237, 0.08139055967330933, 0.4128572344779968, 0.05898916348814964, -0.3446299135684967, 0.0696130320429802, -0.19078603386878967, 0.053034234791994095, 0.18587853014469147, -0.23320546746253967, 0.02334785833954811, -0.48533934354782104, 0.18249280750751495, 0.021930649876594543, -0.5488513112068176, -0.09548898786306381, 0.12018691003322601, -0.038385625928640366, 0.11756860464811325, 0.20126371085643768, -0.13800844550132751, -0.17857445776462555, 0.06047951802611351, 0.08276531845331192, 0.07134176790714264, 0.060041531920433044, 0.09741980582475662, -0.03961899131536484, -0.07334556430578232, -0.06475947052240372, 0.1443772166967392, -0.03188244625926018, -0.03830666095018387, 0.3579610288143158, 0.02833704650402069, 0.20143291354179382, -0.20495593547821045, 0.23784701526165009, 0.6841976642608643, 0.34820154309272766, 0.034605007618665695, 0.07105012983083725, -0.248908132314682, -0.5154362916946411, 0.1611596643924713, -0.07437330484390259, 0.2953656017780304, -0.32173722982406616, -0.2673014998435974, -0.08253321796655655, -0.07755489647388458, -0.11028356850147247, -0.3542831242084503, 0.15009453892707825, 0.18178686499595642, 0.03517915681004524, 0.30955448746681213, -0.030077515169978142, 0.1848415732383728, -0.06993914395570755, 0.17053082585334778, -0.37242501974105835, 0.3791492283344269, 0.04379338026046753, -0.02968614548444748, 0.15358999371528625, 0.2788449823856354, 0.1717958152294159, -0.23371544480323792, -0.06528919190168381, 0.35914722084999084, -0.07102634012699127, 0.3931180238723755, 0.13221924006938934, 0.22364558279514313, 0.34887033700942993, -0.29896047711372375, -0.03333774954080582, -0.004886949434876442, 0.01613779366016388, -0.09821534156799316, -0.38749778270721436, 0.2912132740020752, 0.1504582166671753, 0.057265885174274445, 0.25236451625823975, 0.05994602292776108, 0.3484122157096863, 0.04301706328988075, -0.13858284056186676, -0.3176906704902649, 0.290925532579422, -0.18647362291812897, 0.28552311658859253, -0.008363870903849602, -0.5867406725883484, 0.22338059544563293, 0.5968629121780396, 0.04322844371199608, 0.12010903656482697, 0.1551092267036438, -0.2706754803657532, -0.022279152646660805, 0.21284259855747223, -0.023578137159347534, 0.49800819158554077, 0.22574618458747864, 0.17304694652557373, 0.16477161645889282, 0.20468737185001373, -0.0962158665060997, 0.18438075482845306, -0.10176575183868408, 0.13457342982292175, 0.04627155885100365, 0.32843300700187683, 0.03904324024915695, -0.3137361705303192, -0.1782308965921402, -0.1366574466228485, 0.16101710498332977, -0.22962303459644318, 0.05538304150104523, -0.48097115755081177, -0.1643846035003662, -0.25587889552116394, -0.3247004747390747, -0.6033206582069397, -0.17402711510658264, 0.10283145308494568, -0.04818641021847725, -0.2864329218864441, 0.09594091773033142, 0.06130485609173775, 0.05675877630710602, -0.20986290276050568, 0.1539086252450943, -0.19065570831298828, -0.06201890483498573, -0.07866978645324707, 0.010926716029644012, 0.1791502982378006, -0.013654446229338646, 0.28187665343284607, -0.5082929730415344, 0.09682411700487137, -0.43002915382385254, -0.6369698643684387, 0.34716224670410156, -0.08097433298826218, 0.05719117820262909, 0.27134162187576294, 0.04479197785258293, -0.0883416086435318, -0.25286564230918884, 0.24525339901447296, 0.0029791072010993958, -0.42523714900016785, 0.049894802272319794, -0.13993942737579346, -0.11809325963258743, -0.2913637161254883, -0.3383161127567291, -0.255939245223999, -0.23899440467357635, 0.5137600898742676, -0.13207778334617615, 0.08847382664680481, 0.3606347441673279, -0.22603847086429596, 0.08185190707445145, -0.47140106558799744, 0.2357661873102188, -0.2318333238363266, -0.48513123393058777, 0.16454443335533142, -0.4785115718841553, -0.320911169052124, 0.17147596180438995, 0.16579583287239075, 0.2538200616836548, -0.24289603531360626, -0.30886414647102356, -0.25411319732666016, -0.1149974912405014, 0.25462523102760315, -0.3622247278690338, 0.22140757739543915, 0.3998952805995941, -0.026383118703961372, -0.01002962701022625, -0.28579550981521606, -0.18853002786636353, 0.02168983221054077, -0.03957503288984299, 0.27644622325897217, -0.33205685019493103, 0.31620970368385315, 0.06114484742283821, 0.4289121627807617, 0.26736611127853394, 0.060660772025585175, 0.2518673837184906, -0.018875544890761375, 0.5700874924659729, -0.1373773217201233, -0.24710394442081451, 0.23329010605812073, 0.12180627137422562, 0.16900421679019928, 0.4192628264427185, 0.09579604119062424, 0.04167972132563591, -0.16824251413345337, -0.27825257182121277, -0.26585981249809265, -0.07421290874481201, -0.131566122174263, 0.07760408520698547, 0.1407577097415924, 0.060236234217882156, -0.032745033502578735, -0.1133931428194046, 0.0034570423886179924, 0.07853037118911743, 0.49611520767211914, 0.060285598039627075, 0.2374657243490219, -0.6652283668518066, -0.3082943558692932, -0.22355926036834717, 0.08232513070106506, 0.050014544278383255, 0.14755436778068542, -0.19605107605457306, 0.082360178232193, 0.009883910417556763, 0.11151359975337982, 0.4417805075645447, -0.17001259326934814, -0.08801800012588501, -0.1247466653585434, -0.06465055048465729, -0.11394202709197998, -0.09295357018709183, -0.10084560513496399, 0.290854275226593, 0.5494874715805054, 0.7155871987342834, -0.39507293701171875, -0.2245684266090393, 0.14734870195388794, 0.02694166637957096, 0.017277512699365616, -0.2796008288860321, -0.22748006880283356, -0.13021965324878693, -0.19306804239749908, 0.03737063333392143, 0.23247922956943512, 0.19051241874694824, 0.05648338794708252, 0.007791019976139069, 0.21534670889377594, 0.05397468060255051, 0.12931863963603973, 0.2566176950931549, 0.37276533246040344, 0.17419464886188507, 0.24951636791229248, 0.10120956599712372, 0.22921785712242126, 0.5776628255844116, 0.7704748511314392, -0.01481073722243309, -0.4487680196762085, 0.01982295699417591, -0.3560330867767334, 0.3420620858669281, 0.17497676610946655, 0.05713486671447754, 0.12817874550819397, 0.11410068720579147, 0.11591177433729172, -0.3849571943283081, 0.0015187505632638931, 0.1868232786655426, 0.06284280866384506, -0.3189147412776947, -0.056616440415382385, 0.3732757270336151, -0.002326199784874916, 0.08790858089923859, 0.1633203625679016, 0.3157941699028015, -0.35103073716163635, -0.0442153736948967, -0.209992915391922, 0.7900242209434509, 0.33214902877807617, 0.03902941569685936, -0.01054447516798973, -0.30096516013145447, 0.589138925075531, -0.3335644006729126, -0.14753620326519012, -0.1308135688304901, -0.2977331876754761, -0.0009726285934448242, 0.0046769119799137115, 0.13347622752189636, 0.06525760889053345, -0.08859623968601227, 0.2705700993537903, 0.056950658559799194, 0.16112813353538513, -0.12534089386463165, 0.15059152245521545, -0.06342979520559311, -0.2639864385128021, -0.41166019439697266, 0.15045015513896942, -0.11932271718978882, 0.3995605707168579, -0.1272318959236145, -0.2939620614051819, -0.257597416639328, -0.4743395447731018, -0.32973772287368774, 0.07750600576400757, -0.030636243522167206, 0.05787219479680061, 0.4245777428150177, -0.02359408140182495, 0.18940378725528717, -0.07433605194091797, 0.5635668635368347, 0.22913770377635956, -0.37466806173324585, 0.27381470799446106, -0.3299086093902588, 0.11646422743797302, -0.11876033991575241, 0.06113710254430771, 0.31134119629859924, -0.22251605987548828, -0.09716479480266571, -0.040315404534339905, -0.2386450320482254, 0.06625239551067352, -0.27354076504707336, -0.06727142632007599, -0.6287521719932556, 0.15938931703567505, -0.10237747430801392, 0.11448200047016144, 0.2045297473669052, -0.33542847633361816, 0.13467495143413544, 0.35666900873184204, -0.16681484878063202, -0.15599200129508972, 0.12230922281742096, -0.14580655097961426, -0.29433661699295044, 0.4091883599758148, -0.0649016872048378, -0.35086604952812195, 0.2302701324224472, 0.22051770985126495, -0.16273100674152374, -0.1453750729560852, 0.10431163758039474, 0.3216433525085449, -0.4105866849422455, -0.025191549211740494, 0.058818574994802475, 0.08956122398376465, -0.18437011539936066, 0.1068582683801651, 0.14398372173309326, -0.09247945994138718, 0.22580786049365997, -0.511049747467041, -0.3400796055793762, 0.2728288769721985, -0.2996772527694702, -0.13377662003040314, 0.10510408133268356, 0.18161268532276154, 0.18535177409648895, 0.16386349499225616, -0.34634989500045776, 0.016528669744729996, -0.12865130603313446, -0.03751145303249359, 0.43206459283828735, 0.12945203483104706, 0.25052112340927124, -0.19912150502204895, 0.053307995200157166, -0.07078833878040314, -0.09275050461292267, -0.08614405244588852, -0.32645660638809204, 0.11292513459920883, -0.04735962301492691, 0.27523159980773926, 0.2835219204425812, 0.07690909504890442, 0.005854761227965355, -0.14948473870754242, 0.13270702958106995, 0.07133512198925018, 0.04729916900396347, 0.3865474462509155, -0.006000068038702011, -0.020873039960861206, 0.11891879141330719, 0.014657799154520035, 0.29934030771255493, -0.0407797247171402, -0.03186293691396713, 0.07982505857944489, -0.2342117875814438, 0.022113420069217682, 0.1444564163684845, -0.039372771978378296, -0.31296879053115845, 0.09364166855812073, 0.2072431445121765, -0.06990677118301392, 0.21038448810577393, 0.23298317193984985, 0.24015015363693237, -0.037453509867191315, -0.2549639642238617, 0.318115770816803, 0.27021893858909607, 0.20891547203063965, -0.34900134801864624, -0.25634250044822693, 0.2643749415874481, 0.2833019196987152, -0.018838614225387573, 0.03367495536804199, 0.3663593828678131, 0.04775044322013855, 0.22041478753089905, 0.19872871041297913, 0.3185061514377594, -0.07007580250501633, 0.1569640189409256, 0.12909148633480072, -0.03253737837076187, 0.10838155448436737, 0.26805660128593445, 0.1818421185016632, 0.2624230682849884, 0.3137097954750061, -0.16833612322807312, 0.33005237579345703, 0.10631375014781952, -0.13106419146060944, 0.327568382024765, -0.28767773509025574, -0.030886884778738022, 0.10651610791683197, 0.16773447394371033, 0.017240215092897415, -0.030310161411762238, 0.45242705941200256, -0.07620500028133392, -0.15464042127132416, -0.16333557665348053, 0.2568470537662506, -0.2763562500476837, -0.10443805158138275, 0.01654651015996933, -0.222220778465271, -0.1018037348985672, -0.09716469049453735, -0.03533360734581947, -0.07729221880435944, 0.25117266178131104, -0.0491902157664299, 0.005685284733772278, -0.42041105031967163, -0.18007323145866394, 0.23340106010437012, 0.16069833934307098, -0.3104560673236847, 0.20744577050209045, 0.2797962725162506, -0.3987274467945099, 0.023157689720392227, 0.20468251407146454, 0.44039568305015564, 0.10278940200805664, 0.4060257375240326, 0.15415431559085846, -0.11179167032241821, -0.07255849242210388, 0.025212284177541733, 0.3852560818195343, 0.1913822591304779, -0.20931127667427063, 0.06065982207655907, 0.11217637360095978, -0.17075295746326447, 0.1888745278120041, -0.08650204539299011, 0.18510432541370392, -0.22931359708309174, 0.010804787278175354, -0.4334695041179657, -0.1068895012140274, -0.14832134544849396, 0.050841256976127625, -0.3880504071712494, -0.021202299743890762, 0.2759484052658081, 0.32570740580558777, -0.08012299239635468, -0.3447040021419525, 0.08080997318029404, 0.09407323598861694, 0.2906700074672699, 0.45478278398513794, -0.18719717860221863, 0.03976531699299812, -0.38197487592697144, -0.6043022274971008, 0.13450026512145996, -0.1410902887582779, 0.04178988188505173, -0.0006958832964301109, 0.043467216193675995, 0.2958085536956787, -0.09263812005519867, 0.23320627212524414, 0.021522939205169678, 0.005620450712740421, -0.07219626009464264, -0.4895457923412323, -0.19605986773967743, -0.1499585062265396, -0.05414307862520218, 0.16588813066482544, 0.20719873905181885, 0.14574074745178223, 0.06326844543218613, -0.020340129733085632, -0.3660799264907837, 0.25690045952796936, -0.20198965072631836, -0.15716418623924255, 0.29864829778671265, 0.20087853074073792, 0.410562664270401, -0.28396815061569214, -0.33719542622566223, -0.14851827919483185, -0.3546048402786255, 0.04954545944929123, 0.45916613936424255, -0.03941858932375908, 0.5634368658065796, -0.22588805854320526, -0.3948480188846588, -0.2977180778980255, 0.283079594373703, -0.009507086127996445, -0.2090640664100647, -0.3746061325073242, 0.4427293539047241, -0.1715676188468933, 0.08495043218135834, 0.20609667897224426, 0.16519540548324585, -0.016284912824630737, -0.07307340204715729, -0.17938289046287537, -0.41532081365585327, 0.4122982621192932, -0.30801689624786377, -0.1143423467874527, -0.1508440375328064, 0.21037456393241882, 0.09315082430839539, -0.31203246116638184, -0.657982587814331, 0.1301378309726715, 0.34546172618865967, 0.15679395198822021, -0.1378495693206787, 0.08286520838737488, -0.20279821753501892, -0.021789539605379105, -0.06882448494434357, 0.29579055309295654, 0.2764257788658142, -0.2811371088027954, 0.26813340187072754, -0.293884813785553 ]
https://github.com/huggingface/datasets/issues/3308
"dataset_infos.json" missing for chr_en and mc4
No problem. I am trying to do some analysis on the metadata of all available datasets. Is reading `metadata_infos.json` for each dataset the correct way to go? I noticed that the same information is also available as special variables inside .py file of each dataset. So, I was wondering if `metadata_infos.json` has been deprecated? ![image](https://user-images.githubusercontent.com/8587189/142914413-a95a1abf-6f3e-4fbe-96e5-16d3ca39c831.png)
## Describe the bug In the repository, every dataset has its metadata in a file called`dataset_infos.json`. But, this file is missing for two datasets: `chr_en` and `mc4`. ## Steps to reproduce the bug Check [chr_en](https://github.com/huggingface/datasets/tree/master/datasets/chr_en) and [mc4](https://github.com/huggingface/datasets/tree/master/datasets/mc4)
55
"dataset_infos.json" missing for chr_en and mc4 ## Describe the bug In the repository, every dataset has its metadata in a file called`dataset_infos.json`. But, this file is missing for two datasets: `chr_en` and `mc4`. ## Steps to reproduce the bug Check [chr_en](https://github.com/huggingface/datasets/tree/master/datasets/chr_en) and [mc4](https://github.com/huggingface/datasets/tree/master/datasets/mc4) No problem. I am trying to do some analysis on the metadata of all available datasets. Is reading `metadata_infos.json` for each dataset the correct way to go? I noticed that the same information is also available as special variables inside .py file of each dataset. So, I was wondering if `metadata_infos.json` has been deprecated? ![image](https://user-images.githubusercontent.com/8587189/142914413-a95a1abf-6f3e-4fbe-96e5-16d3ca39c831.png)
[ 0.2620975077152252, -0.12497257441282272, -0.11529992520809174, 0.46805399656295776, 0.09236112236976624, 0.19105249643325806, 0.0018949881196022034, 0.20541271567344666, -0.45939043164253235, -0.02790449559688568, -0.028120646253228188, 0.2110629379749298, -0.17272914946079254, -0.15592510998249054, -0.12558801472187042, 0.03373505175113678, 0.28511571884155273, 0.015685051679611206, 0.15990018844604492, -0.0855105072259903, -0.20018626749515533, 0.39767348766326904, -0.12835811078548431, 0.08555783331394196, -0.06114384904503822, 0.18304048478603363, -0.20639823377132416, -0.04429139941930771, -0.15906007587909698, -0.43125301599502563, 0.23535893857479095, 0.039800532162189484, -0.1587904542684555, 0.2825769782066345, -0.0001251126523129642, 0.01791190356016159, 0.5310445427894592, -0.11319949477910995, -0.36009877920150757, -0.19718076288700104, -0.19172286987304688, -0.15160688757896423, 0.19343285262584686, -0.10825659334659576, -0.0064326319843530655, -0.2723465859889984, -0.04518631100654602, -0.3405558466911316, -0.10599547624588013, 0.10455640405416489, 0.10240940749645233, 0.2527141571044922, 0.1498941332101822, 0.05290348455309868, 0.317739337682724, 0.666782021522522, -0.01301577128469944, 0.3299393057823181, 0.28027141094207764, 0.16281895339488983, 0.16915062069892883, 0.5244826674461365, 0.11338794231414795, 0.009866556152701378, 0.4061587154865265, 0.04130587726831436, 0.02790827304124832, -0.16114464402198792, 0.03859448432922363, 0.11373116075992584, 0.6281850934028625, -0.318073034286499, -0.6205503344535828, -0.5171127915382385, 0.04218191280961037, -0.15210886299610138, 0.128065288066864, 0.22898514568805695, -0.22002603113651276, 0.2265120893716812, -0.13568387925624847, -0.4401710629463196, -0.08171634376049042, 0.17151331901550293, -0.06549179553985596, 0.454734206199646, -0.33207184076309204, -0.010692745447158813, 0.021246973425149918, -0.2276611179113388, -0.20658941566944122, -0.21416983008384705, -0.20023378729820251, 0.07402652502059937, 0.01940496638417244, -0.1642448455095291, 0.15063638985157013, -0.15747994184494019, 0.3973389267921448, 0.2982676029205322, -0.15520359575748444, 0.014241112396121025, -0.4449211657047272, 0.11574051529169083, 0.5169012546539307, -0.3618490397930145, 0.27819177508354187, 0.1576845794916153, 0.4728696346282959, -0.029337264597415924, 0.24139609932899475, -0.0765031948685646, -0.028486337512731552, 0.18921935558319092, -0.22695961594581604, 0.13070423901081085, 0.6962189674377441, -0.36754217743873596, -0.1355879157781601, -0.07616811990737915, -0.2798680067062378, -0.41190484166145325, -0.06279192119836807, 0.1697811484336853, -0.17821402847766876, 0.15028804540634155, -0.15972039103507996, 0.19523514807224274, 0.0888097956776619, -0.10050833225250244, -0.08762969821691513, 0.08369438350200653, -0.03289654105901718, 0.06253659725189209, 0.042695436626672745, -0.2426285445690155, 0.452425479888916, -0.08229546993970871, 0.2340557873249054, -0.20495758950710297, -0.2488938421010971, -0.021433841437101364, 0.0001370459794998169, 0.40447741746902466, -0.4001949727535248, 0.1185116395354271, -0.029141750186681747, 0.12805360555648804, -0.3230256140232086, -0.08377169817686081, -0.4856923222541809, -0.3798883557319641, -0.1427205502986908, 0.016261106356978416, -0.14137443900108337, 0.21415528655052185, -0.416616827249527, 0.29114001989364624, 0.06685388088226318, -0.13213342428207397, 0.30382758378982544, 0.15421684086322784, 0.11185948550701141, -0.30026766657829285, 0.008579643443226814, 0.5118296146392822, -0.05376242846250534, -0.23760809004306793, 0.180342897772789, -0.23614749312400818, -0.07977970689535141, 0.1556486040353775, -0.4153844118118286, -0.1338287889957428, -0.4417450428009033, -0.12275657057762146, 0.0690644234418869, -0.6692340970039368, 0.10832446068525314, 0.37262076139450073, 0.2508390545845032, 0.16181625425815582, 0.1560869663953781, -0.11575046181678772, -0.25109779834747314, -0.07052215188741684, 0.04757241904735565, -0.15934224426746368, 0.15047644078731537, -0.16405299305915833, 0.06109517440199852, -0.21295613050460815, 0.09747985005378723, 0.15234309434890747, 0.06430773437023163, -0.034794799983501434, 0.22874021530151367, 0.14145763218402863, 0.41973426938056946, 0.0584719181060791, 0.029848869889974594, 0.7357286810874939, 0.29288068413734436, 0.10505373775959015, 0.1197197213768959, -0.2456134557723999, -0.46809887886047363, 0.11463253945112228, 0.1614963859319687, -0.01970716565847397, -0.395898699760437, -0.3824356198310852, 0.2775467038154602, 0.03945426642894745, -0.08776487410068512, -0.1406673789024353, 0.011038914322853088, 0.2245684415102005, 0.20002219080924988, 0.23114146292209625, -0.3343210518360138, 0.17327219247817993, -0.1360769420862198, 0.25044816732406616, -0.38376015424728394, 0.2933642268180847, 0.07115253061056137, 0.13279272615909576, 0.1786889284849167, 0.20890843868255615, 0.09787379950284958, -0.24587036669254303, 0.050446875393390656, 0.3593581020832062, 0.09069719910621643, 0.1442938596010208, 0.008699562400579453, 0.5004242658615112, 0.43785178661346436, -0.24249370396137238, 0.12044910341501236, 0.05816686525940895, 0.14232219755649567, -0.138543963432312, -0.3602186143398285, 0.30748823285102844, 0.25147712230682373, 0.10707910358905792, 0.32961779832839966, -0.20984962582588196, 0.10534343123435974, 0.2566896080970764, -0.49878668785095215, -0.1778763234615326, -0.02687133476138115, -0.17467254400253296, 0.2450784593820572, -0.021669069305062294, -0.45033615827560425, 0.04928423836827278, 0.49898430705070496, -0.08142073452472687, 0.01441342756152153, 0.17778658866882324, -0.178666353225708, -0.06811770051717758, 0.0934230387210846, -0.015256498008966446, 0.6174106001853943, 0.09342245012521744, 0.20125433802604675, 0.04684066027402878, 0.2973654270172119, -0.12941667437553406, 0.14443227648735046, 0.3667341470718384, 0.13193921744823456, 0.05614874139428139, 0.23948654532432556, -0.017334729433059692, -0.13488700985908508, -0.2219817191362381, -0.1347407102584839, 0.1604166477918625, -0.22910502552986145, 0.24179251492023468, -0.45124778151512146, -0.3341360092163086, -0.03560852259397507, -0.3057704567909241, -0.5319722294807434, -0.29845234751701355, -0.23695625364780426, -0.11628104746341705, 0.0021460354328155518, 0.04098627716302872, -0.16284114122390747, 0.1497614085674286, -0.1716260313987732, 0.034264154732227325, -0.3090720772743225, -0.023085176944732666, -0.002327505499124527, -0.11566360294818878, 0.06798629462718964, -0.06459648907184601, 0.059339724481105804, -0.20224329829216003, 0.06733404099941254, -0.48564934730529785, -0.4524098038673401, 0.2845440208911896, -0.08673795312643051, 0.03102092258632183, 0.35190802812576294, -0.10994738340377808, 0.14944148063659668, -0.0035049295984208584, 0.09944591671228409, -0.14751620590686798, -0.2540699243545532, -0.08451583981513977, -0.006265692412853241, -0.11046361178159714, -0.2938988506793976, -0.1346009075641632, -0.47142934799194336, -0.1523195505142212, 0.4943174123764038, -0.00694156251847744, -0.016613788902759552, 0.48268797993659973, -0.29952919483184814, -0.052302684634923935, -0.3712849020957947, 0.11413692682981491, -0.05379507690668106, -0.45648252964019775, 0.09996909648180008, -0.1567223072052002, -0.0857931524515152, 0.2020004391670227, 0.3132755756378174, 0.24450606107711792, -0.1075051799416542, -0.35469120740890503, -0.2441358119249344, 0.11187800019979477, 0.2759058177471161, -0.32125934958457947, 0.051458731293678284, 0.2771967947483063, 0.0263223797082901, 0.20696645975112915, -0.06329675763845444, -0.22096587717533112, -0.10023269802331924, -0.19995129108428955, 0.14001551270484924, 0.05821475014090538, 0.29521945118904114, 0.1928820013999939, 0.2937467396259308, 0.22250060737133026, 0.08402096480131149, -0.02315458655357361, -0.08241619914770126, 0.592311680316925, 0.22029241919517517, -0.19909203052520752, 0.052746109664440155, -0.14355236291885376, 0.044274650514125824, 0.14487144351005554, 0.17201292514801025, 0.0021100444719195366, -0.25225675106048584, -0.06845740973949432, -0.41098910570144653, -0.07254430651664734, -0.2776399254798889, -0.015612028539180756, 0.16346490383148193, 0.08929519355297089, 0.20099619030952454, -0.11758948862552643, -0.020117534324526787, 0.11535584926605225, 0.7202655673027039, 0.2063821256160736, 0.04089188575744629, -0.5452538728713989, -0.20390568673610687, -0.15585267543792725, 0.12989698350429535, -0.0746280699968338, 0.39806535840034485, 0.023613017052412033, 0.1247759535908699, 0.05922335758805275, -0.2190457433462143, 0.20687773823738098, 0.05115087702870369, -0.009888730943202972, 0.23859864473342896, -0.02253107540309429, -0.0559961274266243, -0.23146961629390717, -0.17825841903686523, 0.29847437143325806, 0.47638896107673645, 0.7797606587409973, -0.3180672824382782, -0.49969568848609924, 0.3425769805908203, -0.11766570806503296, -0.011095628142356873, -0.23783992230892181, -0.30946654081344604, -0.13596463203430176, 0.08653338998556137, -0.13089200854301453, 0.11639424413442612, -0.007175881415605545, 0.0019178492948412895, 0.10328370332717896, 0.2341470718383789, -0.03016841784119606, 0.27318933606147766, 0.12138637900352478, 0.15511846542358398, 0.033718451857566833, 0.1004989892244339, 0.15833476185798645, 0.0671369731426239, 0.7611008882522583, 0.6404338479042053, 0.1093699187040329, -0.4346429109573364, 0.0611494742333889, -0.2297363132238388, 0.5101359486579895, 0.3053733706474304, -0.2695056200027466, 0.31107622385025024, -0.010663364082574844, -0.005174681544303894, -0.47880053520202637, -0.19991278648376465, 0.3405100107192993, -0.10386776924133301, -0.344506174325943, -0.31503695249557495, 0.5648632645606995, 0.13527840375900269, -0.059858571738004684, 0.05115681141614914, 0.21398042142391205, -0.2920593321323395, -0.1712677776813507, -0.1243310496211052, 0.7352284789085388, 0.32840895652770996, 0.07347326725721359, 0.09438090026378632, -0.2644974887371063, 0.4632282257080078, -0.49717485904693604, 0.024237975478172302, -0.2651522159576416, -0.01830742135643959, -0.05128996819257736, -0.13871045410633087, 0.43303078413009644, 0.10842014849185944, 0.06013656035065651, 0.30253034830093384, 0.02022780478000641, 0.26694726943969727, -0.2155037671327591, 0.1270870566368103, -0.10761655122041702, 0.05610555410385132, -0.3816938102245331, 0.0695321187376976, -0.17256994545459747, 0.4775743782520294, -0.020363161340355873, -0.2616155743598938, -0.2361663430929184, -0.2152150422334671, -0.505036473274231, -0.026693036779761314, 0.19803740084171295, 0.181430384516716, 0.3335428833961487, -0.03345485404133797, 0.06984642148017883, -0.2302137017250061, 0.5409445762634277, 0.2555336058139801, -0.3046875298023224, 0.11976008117198944, -0.4002363979816437, -0.016185369342565536, -0.12979501485824585, 0.2732642889022827, 0.10224529355764389, 0.0004186108708381653, -0.13694387674331665, 0.22026056051254272, -0.24525125324726105, -0.29621726274490356, -0.29654163122177124, 0.01697167381644249, -0.30579066276550293, 0.12604323029518127, -0.0841950923204422, 0.1740444302558899, 0.14910227060317993, -0.2230975329875946, -0.0017810426652431488, 0.5192868113517761, -0.11552967131137848, -0.05304614454507828, -0.14742092788219452, -0.058683887124061584, -0.20030060410499573, 0.2782105505466461, 0.032642919570207596, -0.3696367144584656, 0.05572674795985222, 0.06534840166568756, -0.17012986540794373, -0.030102387070655823, 0.2681456506252289, 0.07941091060638428, -0.16901913285255432, -0.07936250418424606, 0.07581140846014023, 0.32372474670410156, -0.10712872445583344, 0.00026773661375045776, 0.2290995866060257, -0.20939069986343384, 0.05931297317147255, -0.5168054103851318, -0.19345606863498688, 0.4381979703903198, -0.33640196919441223, 0.021259963512420654, -0.010848293080925941, -0.0435655303299427, 0.05454973876476288, -0.025883788242936134, -0.16971509158611298, 0.121148981153965, 0.05558132380247116, -0.21994057297706604, 0.4481058716773987, 0.06848835200071335, 0.14695438742637634, -0.10551011562347412, -0.03447910398244858, -0.1644146889448166, -0.09248454868793488, 0.10270530730485916, -0.09555429220199585, 0.22356674075126648, 0.054420001804828644, 0.2021992802619934, 0.1838609129190445, -0.17908424139022827, -0.1388036161661148, -0.015570726245641708, 0.13461193442344666, 0.29572242498397827, 0.14542178809642792, 0.597870945930481, 0.040815554559230804, -0.01783403754234314, 0.12088151276111603, 0.2296874076128006, 0.3002161681652069, 0.2647586464881897, 0.07180629670619965, 0.3107702136039734, -0.18090219795703888, 0.009595729410648346, -0.2536803185939789, 0.19061985611915588, -0.41903966665267944, 0.012328121811151505, 0.3985179364681244, -0.204335018992424, 0.3126240372657776, 0.06387872248888016, 0.21973463892936707, 0.5508991479873657, -0.07276542484760284, 0.3816194534301758, 0.17140847444534302, -0.009767076000571251, -0.21124957501888275, -0.3671881854534149, 0.20062683522701263, 0.49193546175956726, -0.13484303653240204, 0.23515523970127106, 0.41285932064056396, 0.09878313541412354, 0.18030385673046112, 0.12584951519966125, 0.5869384407997131, -0.01337357982993126, 0.062439482659101486, 0.31549695134162903, 0.2203698605298996, -0.05040333792567253, 0.31139686703681946, 0.45095548033714294, 0.4185648262500763, 0.45659899711608887, -0.05717422813177109, 0.27898240089416504, 0.14610135555267334, -0.21668237447738647, 0.18227574229240417, -0.3674076497554779, -0.08954237401485443, 0.24273273348808289, -0.004866413772106171, 0.10433124005794525, -0.09021547436714172, 0.319134384393692, -0.05001361668109894, -0.11142759025096893, -0.16490420699119568, 0.17568309605121613, -0.06605850905179977, -0.3344298303127289, 0.1576899141073227, -0.19236010313034058, 0.09148679673671722, -0.08422335982322693, -0.04643813148140907, -0.1937713772058487, 0.12110694497823715, -0.12566865980625153, 0.0929480791091919, -0.17088043689727783, 0.051809731870889664, 0.0790124237537384, 0.27038466930389404, -0.17288461327552795, 0.10680168867111206, 0.1274578869342804, -0.08741292357444763, 0.1894206404685974, 0.2118757665157318, 0.40291303396224976, 0.032528869807720184, 0.2554260492324829, -0.06000283733010292, -0.3678925931453705, -0.07861736416816711, 0.18056313693523407, 0.362678587436676, 0.11079749464988708, -0.14222002029418945, 0.12915058434009552, 0.020241020247340202, 0.05746522545814514, 0.23278361558914185, -0.010309819132089615, 0.10236354172229767, -0.6187273859977722, 0.16184261441230774, -0.40888282656669617, -0.15758726000785828, 0.08710139244794846, 0.14755865931510925, -0.482015997171402, -0.4170602262020111, 0.42035508155822754, 0.4635781943798065, 0.08249961584806442, -0.011936391703784466, 0.009318279102444649, 0.11151926219463348, 0.042337507009506226, 0.5242099165916443, -0.10277081280946732, 0.20849843323230743, -0.23483183979988098, -0.6246672868728638, -0.0649828389286995, 0.020706921815872192, -0.11567752063274384, 0.08548019081354141, 0.07179056107997894, 0.3407321572303772, 0.056339822709560394, -0.00848492980003357, -0.13490702211856842, -0.011332793161273003, -0.1357588917016983, -0.4032655656337738, -0.2300434559583664, -0.21644751727581024, -0.028160912916064262, -0.027572263032197952, 0.028049007058143616, 0.0693526342511177, -0.10718217492103577, -0.19208228588104248, -0.4143621325492859, 0.3315916955471039, 0.013374187052249908, 0.021434850990772247, 0.30116093158721924, 0.050695814192295074, 0.21814174950122833, 0.05239737778902054, -0.46715742349624634, -0.22772455215454102, -0.25483033061027527, 0.2564818263053894, 0.571938157081604, -0.1876920610666275, 0.430461585521698, -0.3519725799560547, -0.2234184294939041, -0.2660479247570038, 0.17120976746082306, -0.09643115103244781, -0.3316536545753479, -0.3058353364467621, 0.4277644157409668, -0.17350777983665466, 0.016735678538680077, 0.27302321791648865, 0.09558158367872238, -0.0849849134683609, 0.014172272756695747, -0.23401325941085815, -0.06818132847547531, 0.4452173411846161, -0.3046572208404541, -0.12236358225345612, -0.06738698482513428, 0.24340812861919403, -0.061183519661426544, -0.22835014760494232, -0.7964140176773071, 0.008804373443126678, 0.5533654093742371, 0.05225969851016998, -0.12600651383399963, -0.043064482510089874, -0.15021739900112152, -0.3289574980735779, -0.19380627572536469, 0.12724804878234863, -0.001211661845445633, -0.2507060468196869, 0.14693664014339447, -0.19678355753421783 ]
https://github.com/huggingface/datasets/issues/3308
"dataset_infos.json" missing for chr_en and mc4
The `dataset_infos.json` files have more information and are made to be used to analyze the datasets without having to run/parse the python scripts. Moreover some datasets on the Hugging face don't even have a python script, and for those ones we'll make tools to generate the JSON file automatically :)
## Describe the bug In the repository, every dataset has its metadata in a file called`dataset_infos.json`. But, this file is missing for two datasets: `chr_en` and `mc4`. ## Steps to reproduce the bug Check [chr_en](https://github.com/huggingface/datasets/tree/master/datasets/chr_en) and [mc4](https://github.com/huggingface/datasets/tree/master/datasets/mc4)
50
"dataset_infos.json" missing for chr_en and mc4 ## Describe the bug In the repository, every dataset has its metadata in a file called`dataset_infos.json`. But, this file is missing for two datasets: `chr_en` and `mc4`. ## Steps to reproduce the bug Check [chr_en](https://github.com/huggingface/datasets/tree/master/datasets/chr_en) and [mc4](https://github.com/huggingface/datasets/tree/master/datasets/mc4) The `dataset_infos.json` files have more information and are made to be used to analyze the datasets without having to run/parse the python scripts. Moreover some datasets on the Hugging face don't even have a python script, and for those ones we'll make tools to generate the JSON file automatically :)
[ 0.14249615371227264, -0.3361806273460388, -0.047100722789764404, 0.29930931329727173, 0.1907498985528946, 0.14611878991127014, -0.003960084170103073, 0.26328179240226746, -0.11925481259822845, 0.259117990732193, 0.03568769246339798, 0.23330192267894745, -0.0015295250341296196, 0.19964055716991425, 0.04641072824597359, -0.19682522118091583, 0.0915272980928421, 0.1346551775932312, -0.07540503144264221, -0.10170045495033264, -0.10493772476911545, 0.46997547149658203, 0.08586055040359497, -0.17865903675556183, -0.3154151439666748, 0.05902840197086334, -0.21073628962039948, 0.33619192242622375, -0.0846945270895958, -0.43935373425483704, 0.20275504887104034, 0.0034777410328388214, -0.1666441112756729, 0.28164446353912354, -0.00010610599565552548, -0.006072841584682465, 0.2696447968482971, -0.07392019033432007, -0.2553722560405731, -0.26306623220443726, 0.08447296172380447, -0.22564198076725006, 0.1437508910894394, -0.13139447569847107, -0.32036092877388, -0.1809978038072586, 0.01317312940955162, -0.09937074035406113, 0.3814762830734253, 0.10234759002923965, 0.28196531534194946, 0.42945393919944763, 0.13310004770755768, -0.28655895590782166, 0.15387846529483795, 0.4924046993255615, -0.1093616709113121, 0.1926049441099167, 0.03432866185903549, 0.03495402634143829, 0.05832851305603981, 0.5477883815765381, 0.3045519292354584, -0.16419285535812378, 0.4170653223991394, 0.1234891414642334, -0.11691560596227646, -0.3034309446811676, 0.11496137827634811, 0.21836137771606445, 0.3157055079936981, -0.17599985003471375, -0.3507826328277588, -0.3925178050994873, -0.019014209508895874, -0.03982963413000107, 0.2799798548221588, 0.2793489694595337, -0.012717124074697495, 0.19915243983268738, -0.260670930147171, -0.08101747930049896, -0.02591584622859955, 0.08722170442342758, 0.13556386530399323, 0.018053650856018066, -0.21725080907344818, -0.027837298810482025, 0.14504392445087433, -0.2563576102256775, -0.4451674222946167, 0.02023272030055523, -0.16961275041103363, 0.21326926350593567, -0.04000040516257286, -0.09671252965927124, 0.23749545216560364, 0.08454420417547226, 0.2250191867351532, 0.2796192169189453, -0.16698937118053436, -0.13219359517097473, -0.1913733333349228, 0.0772247165441513, 0.2441519945859909, -0.06016719341278076, 0.17477145791053772, 0.05962177366018295, 0.37526100873947144, 0.22905874252319336, 0.13807524740695953, -0.1329687535762787, 0.1391647458076477, 0.12979824841022491, -0.11094705760478973, -0.008815830573439598, 0.3034064769744873, -0.163890078663826, -0.16496582329273224, 0.14610296487808228, -0.030819693580269814, -0.08522453904151917, -0.03933693468570709, 0.4535025954246521, -0.12883132696151733, -0.04641469568014145, 0.07716173678636551, 0.1292574107646942, -0.029795903712511063, -0.13452550768852234, -0.31707265973091125, 0.21821552515029907, -0.12588675320148468, 0.023371677845716476, 0.20309513807296753, -0.24862104654312134, 0.6153911352157593, 0.041725073009729385, 0.2700642943382263, -0.08308014273643494, -0.12321987003087997, 0.22754789888858795, -0.04498656839132309, 0.4646535813808441, 0.008838802576065063, 0.11970356851816177, 0.040010541677474976, -0.004754882305860519, -0.1558440625667572, -0.12063368409872055, -0.36664438247680664, -0.11101943999528885, -0.11761611700057983, 0.228520929813385, -0.16891230642795563, 0.09892851114273071, -0.2454908788204193, 0.081454798579216, -0.11451565474271774, -0.08560576289892197, 0.17475050687789917, 0.12527182698249817, -0.11117681860923767, -0.25249335169792175, 0.24941790103912354, 0.4359772205352783, 0.17160111665725708, -0.31536146998405457, 0.1363249123096466, -0.20632588863372803, -0.050352223217487335, 0.2774617075920105, -0.12219257652759552, -0.16561099886894226, -0.4960058629512787, 0.056190505623817444, -0.06174459308385849, -0.4715706408023834, -0.11987307667732239, 0.13863937556743622, -0.13014350831508636, 0.25274237990379333, 0.13994702696800232, -0.07711457461118698, -0.30103936791419983, 0.08060622215270996, 0.014283180236816406, 0.041241392493247986, 0.051003701984882355, 0.15777939558029175, -0.11994822323322296, -0.044838570058345795, -0.05326495319604874, 0.12762774527072906, -0.043984007090330124, 0.04741591587662697, 0.20183038711547852, -0.10604394972324371, 0.2538096308708191, -0.1004454493522644, 0.06385863572359085, 0.5631518363952637, 0.3067397177219391, 0.07139675319194794, 0.13173066079616547, -0.13020583987236023, -0.5370301604270935, 0.16434842348098755, -0.047924019396305084, 0.22929036617279053, -0.2705380916595459, -0.30901825428009033, -0.13791048526763916, -0.07916419208049774, -0.07305973768234253, -0.5198670625686646, 0.16049467027187347, 0.16959112882614136, 0.10932096838951111, 0.2328280657529831, -0.12835270166397095, 0.3243952691555023, -0.06866088509559631, 0.2717541456222534, -0.5003328323364258, 0.3355052173137665, -0.048204317688941956, -0.024857565760612488, 0.20905965566635132, 0.23610004782676697, 0.17048092186450958, -0.20551365613937378, -0.06278903037309647, 0.36510607600212097, -0.05260773375630379, 0.34400179982185364, -0.0035846047103405, 0.19426658749580383, 0.2356308400630951, -0.29587164521217346, -0.11646188050508499, 0.0781714916229248, 0.04812939465045929, -0.043189968913793564, -0.3058306872844696, 0.3658817410469055, 0.023293882608413696, 0.07969190180301666, 0.29377877712249756, 0.09500771015882492, 0.176112562417984, -0.02573161944746971, -0.22335879504680634, -0.2430236041545868, 0.2614966034889221, -0.05030838027596474, 0.30553799867630005, -0.03539954125881195, -0.6104288697242737, 0.2276848554611206, 0.5597066879272461, -0.000048531219363212585, 0.03305404633283615, 0.14414328336715698, -0.1216788962483406, -0.05022662132978439, 0.09472104907035828, 0.01301659271121025, 0.38245946168899536, 0.22036942839622498, 0.05139750987291336, 0.3452109396457672, 0.17404580116271973, -0.12633228302001953, 0.17501601576805115, -0.016313716769218445, 0.03215184435248375, -0.03577698767185211, 0.30453816056251526, 0.029490113258361816, -0.32193440198898315, -0.123515784740448, -0.38261470198631287, 0.07317785918712616, -0.3074984848499298, 0.08871419727802277, -0.321653813123703, -0.17969518899917603, -0.139322891831398, -0.22178372740745544, -0.4913486838340759, -0.22734184563159943, 0.048172205686569214, -0.001981537789106369, -0.27232325077056885, 0.020043542608618736, -0.004766365513205528, 0.1845986247062683, -0.11477581411600113, 0.23051132261753082, -0.38643667101860046, -0.03452685475349426, -0.03905637562274933, 0.0528205968439579, 0.04239119961857796, -0.020930014550685883, 0.22064179182052612, -0.566970944404602, 0.11622679233551025, -0.38700756430625916, -0.5942268371582031, 0.2708289623260498, -0.23512689769268036, 0.09486325085163116, 0.373696893453598, 0.1556430160999298, -0.07478897273540497, -0.202593594789505, 0.263801634311676, -0.2510450780391693, -0.47784674167633057, -0.06826379895210266, 0.038967542350292206, -0.17567205429077148, -0.3727269768714905, -0.30339011549949646, -0.10650310665369034, -0.2798736095428467, 0.6854408979415894, -0.013073628768324852, 0.0814104750752449, 0.3911242187023163, -0.24141836166381836, 0.10325214266777039, -0.4235677719116211, 0.2506529986858368, -0.1690109521150589, -0.586536169052124, 0.1989883929491043, -0.5061445832252502, -0.46143588423728943, 0.183116152882576, 0.15656964480876923, 0.1493280529975891, -0.3004016876220703, -0.34579408168792725, -0.3192753791809082, -0.2514830231666565, 0.24047645926475525, -0.2481626570224762, 0.17340338230133057, 0.2676469087600708, -0.07041043788194656, -0.08138216286897659, -0.3022874593734741, -0.23363621532917023, 0.08206140249967575, -0.032784126698970795, 0.03228165954351425, -0.33068832755088806, 0.3886479437351227, -0.0050533227622509, 0.29813265800476074, 0.2393919825553894, 0.050112370401620865, 0.24772684276103973, -0.16387033462524414, 0.617924153804779, -0.18668460845947266, -0.3309560716152191, 0.1695973426103592, 0.17756669223308563, 0.13989906013011932, 0.3473700284957886, 0.0965946838259697, 0.1197892278432846, -0.26306283473968506, -0.30828022956848145, -0.24230632185935974, -0.12417274713516235, -0.2840003967285156, 0.23464524745941162, 0.03358794376254082, 0.027906667441129684, 0.04144749045372009, -0.01028493233025074, 0.05375199764966965, 0.1407402604818344, 0.5132212042808533, 0.17551441490650177, 0.18751685321331024, -0.5803587436676025, -0.20986254513263702, -0.3763086795806885, 0.07309313118457794, -0.056901197880506516, 0.026220399886369705, -0.15263086557388306, -0.09032726287841797, 0.03148183971643448, -0.000781745184212923, 0.5578315258026123, 0.022298764437437057, 0.02316141501069069, -0.16161373257637024, -0.2865055203437805, -0.23442307114601135, -0.021760595962405205, -0.07004144042730331, 0.10871364921331406, 0.399034321308136, 0.6954746842384338, -0.2787533104419708, -0.30969080328941345, 0.276225745677948, 0.02167937532067299, -0.015492159873247147, -0.20232228934764862, -0.3433753252029419, -0.2559007406234741, -0.12259522825479507, 0.03400803357362747, 0.22463358938694, 0.1389668732881546, -0.008120892569422722, 0.019161175936460495, 0.16023585200309753, -0.07325601577758789, 0.05393790081143379, 0.34802669286727905, 0.3356035649776459, -0.0022239501122385263, 0.2803933620452881, 0.25193560123443604, 0.2776212990283966, 0.42897462844848633, 0.837135910987854, -0.0339643768966198, -0.4799681305885315, 0.009092254564166069, -0.15561191737651825, 0.2762206792831421, 0.21825316548347473, -0.053740549832582474, 0.03256198391318321, 0.04388339817523956, 0.3220152258872986, -0.3595415949821472, -0.022734763100743294, 0.21364830434322357, 0.05537707358598709, -0.16817717254161835, -0.15042254328727722, 0.34467703104019165, -0.07733862102031708, 0.12382401525974274, -0.0443786159157753, 0.44546884298324585, -0.21649467945098877, 0.019264159724116325, -0.15792614221572876, 0.7803643345832825, 0.27995383739471436, 0.13882087171077728, 0.2341478168964386, -0.29585057497024536, 0.517893373966217, -0.2061053365468979, -0.08339165151119232, -0.20937533676624298, -0.31399598717689514, 0.012539098039269447, -0.0005637034773826599, 0.08299249410629272, -0.08864516019821167, -0.025876814499497414, 0.26028338074684143, 0.0323648527264595, 0.07652677595615387, -0.18840442597866058, 0.260308176279068, -0.06693202257156372, -0.16279003024101257, -0.4220927655696869, 0.1807919144630432, 0.014454975724220276, 0.4514788091182709, -0.05520090460777283, -0.23248910903930664, -0.20544806122779846, -0.4445353150367737, -0.16545739769935608, 0.1586458683013916, -0.014892658218741417, 0.013991704210639, 0.4325179159641266, -0.04304112493991852, 0.09383270144462585, 0.060907915234565735, 0.4835084080696106, 0.22265830636024475, -0.3132070302963257, 0.22930322587490082, -0.3204055726528168, 0.01595880277454853, -0.1390293538570404, 0.121586874127388, 0.2628643214702606, -0.2646039128303528, -0.1123347133398056, -0.1496286392211914, -0.1452922374010086, 0.06547178328037262, -0.2765265703201294, 0.03159351646900177, -0.6600934267044067, 0.047721974551677704, -0.10505524277687073, -0.057520389556884766, 0.1828877478837967, -0.29488807916641235, 0.161094531416893, 0.24547705054283142, -0.08601827919483185, -0.28939616680145264, 0.2537726163864136, -0.2790948152542114, -0.2713337540626526, 0.3952869772911072, -0.20462334156036377, -0.19331781566143036, 0.2666851878166199, 0.16803252696990967, -0.1551978886127472, -0.19512909650802612, 0.023366719484329224, 0.4778151512145996, -0.34880539774894714, 0.10510489344596863, 0.01595461182296276, 0.07344710826873779, -0.11302399635314941, 0.21443495154380798, 0.09090553969144821, -0.19137394428253174, 0.22409917414188385, -0.4921647608280182, -0.38573044538497925, 0.3054611086845398, -0.20566006004810333, -0.03254521265625954, 0.2039780616760254, 0.15939250588417053, 0.16930313408374786, 0.07108227163553238, -0.4097498953342438, -0.004090659786015749, -0.1560804843902588, -0.15052834153175354, 0.35295426845550537, -0.07223256677389145, 0.38779500126838684, -0.08377964794635773, 0.14078335464000702, 0.03034215047955513, -0.20885609090328217, -0.15176570415496826, -0.29866623878479004, 0.08953043073415756, -0.09960988163948059, 0.13653260469436646, 0.18933914601802826, 0.17931202054023743, -0.06715980172157288, -0.16056181490421295, 0.27637943625450134, 0.12305480986833572, 0.1398720145225525, 0.32988470792770386, -0.07811902463436127, -0.07333118468523026, 0.11400654911994934, 0.006995813921093941, 0.18667283654212952, -0.06826721131801605, -0.09048307687044144, -0.011466149240732193, -0.38272911310195923, -0.01460101455450058, 0.27304089069366455, 0.02170628309249878, -0.22664569318294525, 0.14007501304149628, 0.25796744227409363, -0.014225110411643982, 0.02837320789694786, 0.034438759088516235, 0.32597142457962036, 0.0785117819905281, -0.19681860506534576, 0.2491617351770401, 0.17380037903785706, 0.23514902591705322, -0.3623126149177551, -0.14834760129451752, 0.2977285087108612, 0.27621665596961975, 0.10573409497737885, 0.19929316639900208, 0.2442323863506317, 0.04802364110946655, 0.059126101434230804, 0.18685811758041382, 0.5156991481781006, -0.03073764592409134, 0.09872587025165558, 0.1319073587656021, -0.057539694011211395, 0.050512753427028656, 0.2658744156360626, 0.2162441611289978, 0.33310389518737793, 0.2645365595817566, -0.19079548120498657, 0.31668412685394287, -0.00896613672375679, -0.040569838136434555, 0.35549527406692505, -0.24268580973148346, -0.0400872640311718, 0.0036039352416992188, 0.040122710168361664, 0.03395463526248932, -0.03288523852825165, 0.47677120566368103, -0.07691065222024918, -0.11695962399244308, -0.1965152472257614, 0.3649600148200989, -0.2629782557487488, -0.10987052321434021, 0.09855322539806366, -0.25828731060028076, -0.12550878524780273, -0.026591230183839798, 0.03367112576961517, -0.18386559188365936, 0.22276464104652405, -0.06518809497356415, 0.039102766662836075, -0.21091845631599426, -0.19475826621055603, 0.13739359378814697, 0.2595914304256439, -0.24103395640850067, 0.13739120960235596, 0.346774160861969, -0.3244533836841583, 0.0992322638630867, 0.19069287180900574, 0.5181173086166382, 0.08727794885635376, 0.28636398911476135, 0.13798943161964417, -0.037462975829839706, -0.15649577975273132, -0.024814963340759277, 0.2895641028881073, 0.014169983565807343, -0.08821515738964081, 0.13823431730270386, 0.18680508434772491, -0.22747519612312317, 0.11903077363967896, -0.14218226075172424, 0.2966627776622772, -0.3028598725795746, 0.1005755290389061, -0.4759506285190582, -0.14087852835655212, -0.1863829344511032, 0.019234076142311096, -0.3749510943889618, -0.14027513563632965, 0.12889108061790466, 0.2532155513763428, -0.007904700003564358, -0.3100043535232544, 0.12627042829990387, 0.014291605912148952, 0.4351418912410736, 0.4315032958984375, -0.12027467042207718, 0.09756816178560257, -0.2948063015937805, -0.5276815891265869, 0.10542813688516617, 0.01633511483669281, -0.0587187185883522, 0.10971082001924515, -0.005753723904490471, 0.0798678994178772, -0.11782588064670563, 0.29333996772766113, 0.059624988585710526, 0.0077939825132489204, -0.11998321115970612, -0.3680543601512909, -0.10801784694194794, -0.20144079625606537, -0.16405370831489563, 0.22843363881111145, 0.1854206621646881, 0.10970218479633331, -0.010306760668754578, 0.04679875820875168, -0.22107918560504913, 0.33013081550598145, -0.26249489188194275, -0.19915926456451416, 0.2126055508852005, 0.2012060284614563, 0.29867953062057495, -0.21458441019058228, -0.3852763772010803, -0.11054906249046326, -0.2999131381511688, -0.02141270600259304, 0.4388040006160736, -0.03755373880267143, 0.5324211120605469, -0.1566295474767685, -0.4282572269439697, -0.33859264850616455, 0.3199654817581177, 0.05928748846054077, -0.19304195046424866, -0.2662934362888336, 0.41291388869285583, -0.13901305198669434, 0.1051693707704544, 0.22649458050727844, 0.2477058470249176, -0.08086736500263214, -0.07463901489973068, -0.19289815425872803, -0.43743374943733215, 0.6249939203262329, -0.4022824466228485, -0.06619881093502045, -0.09525956213474274, 0.2050004005432129, 0.08607520163059235, -0.32902470231056213, -0.579194188117981, 0.09792972356081009, 0.23412403464317322, 0.11644934862852097, -0.2330675721168518, 0.08765019476413727, -0.2723299264907837, -0.05906796082854271, -0.015178866684436798, 0.37197187542915344, 0.29329439997673035, -0.23106175661087036, 0.26656559109687805, -0.2884833812713623 ]
https://github.com/huggingface/datasets/issues/3304
Dataset object has no attribute `to_tf_dataset`
The issue is due to the older version of transformers and datasets. It has been resolved by upgrading their versions. ``` # upgrade transformers and datasets to latest versions !pip install --upgrade transformers !pip install --upgrade datasets ``` Regards!
I am following HuggingFace Course. I am at Fine-tuning a model. Link: https://huggingface.co/course/chapter3/2?fw=tf I use tokenize_function and `map` as mentioned in the course to process data. `# define a tokenize function` `def Tokenize_function(example):` ` return tokenizer(example['sentence'], truncation=True)` `# tokenize entire data` `tokenized_data = raw_data.map(Tokenize_function, batched=True)` I get Dataset object at this point. When I try converting this to a TF dataset object as mentioned in the course, it throws the following error. `# convert to TF dataset` `train_data = tokenized_data["train"].to_tf_dataset( ` ` columns = ['attention_mask', 'input_ids', 'token_type_ids'], ` ` label_cols = ['label'], ` ` shuffle = True, ` ` collate_fn = data_collator, ` ` batch_size = 8 ` `)` Output: `---------------------------------------------------------------------------` `AttributeError Traceback (most recent call last)` `/tmp/ipykernel_42/103099799.py in <module>` ` 1 # convert to TF dataset` `----> 2 train_data = tokenized_data["train"].to_tf_dataset( \` ` 3 columns = ['attention_mask', 'input_ids', 'token_type_ids'], \` ` 4 label_cols = ['label'], \` ` 5 shuffle = True, \` `AttributeError: 'Dataset' object has no attribute 'to_tf_dataset'` When I look for `dir(tokenized_data["train"])`, there is no method or attribute in the name of `to_tf_dataset`. Why do I get this error? And how to clear this? Please help me.
39
Dataset object has no attribute `to_tf_dataset` I am following HuggingFace Course. I am at Fine-tuning a model. Link: https://huggingface.co/course/chapter3/2?fw=tf I use tokenize_function and `map` as mentioned in the course to process data. `# define a tokenize function` `def Tokenize_function(example):` ` return tokenizer(example['sentence'], truncation=True)` `# tokenize entire data` `tokenized_data = raw_data.map(Tokenize_function, batched=True)` I get Dataset object at this point. When I try converting this to a TF dataset object as mentioned in the course, it throws the following error. `# convert to TF dataset` `train_data = tokenized_data["train"].to_tf_dataset( ` ` columns = ['attention_mask', 'input_ids', 'token_type_ids'], ` ` label_cols = ['label'], ` ` shuffle = True, ` ` collate_fn = data_collator, ` ` batch_size = 8 ` `)` Output: `---------------------------------------------------------------------------` `AttributeError Traceback (most recent call last)` `/tmp/ipykernel_42/103099799.py in <module>` ` 1 # convert to TF dataset` `----> 2 train_data = tokenized_data["train"].to_tf_dataset( \` ` 3 columns = ['attention_mask', 'input_ids', 'token_type_ids'], \` ` 4 label_cols = ['label'], \` ` 5 shuffle = True, \` `AttributeError: 'Dataset' object has no attribute 'to_tf_dataset'` When I look for `dir(tokenized_data["train"])`, there is no method or attribute in the name of `to_tf_dataset`. Why do I get this error? And how to clear this? Please help me. The issue is due to the older version of transformers and datasets. It has been resolved by upgrading their versions. ``` # upgrade transformers and datasets to latest versions !pip install --upgrade transformers !pip install --upgrade datasets ``` Regards!
[ -0.22932597994804382, -0.08005622029304504, 0.07444417476654053, 0.11203768849372864, 0.6455808877944946, 0.2319769561290741, 0.11288847029209137, 0.275046706199646, -0.12733763456344604, -0.027143210172653198, -0.04098854213953018, 0.3272252082824707, -0.35554754734039307, 0.3133002817630768, 0.1737271547317505, -0.23456770181655884, 0.10845465213060379, 0.009128376841545105, -0.08732613921165466, -0.0865575522184372, -0.11625183373689651, 0.26146844029426575, -0.06828378885984421, 0.13604450225830078, -0.43344181776046753, -0.09920128434896469, -0.016055960208177567, -0.30887681245803833, -0.12518607079982758, -0.17240861058235168, -0.0023635122925043106, -0.03471833094954491, 0.03459635004401207, 0.5329078435897827, -0.00011821424413938075, 0.1845369189977646, -0.14997893571853638, -0.026389935985207558, -0.0873747318983078, -0.3173583745956421, 0.025158897042274475, 0.026748543605208397, -0.10253449529409409, -0.06191113218665123, -0.1931452453136444, -0.16966648399829865, 0.03418347239494324, -0.08926746994256973, 0.2019147276878357, 0.4334090054035187, 0.1723872572183609, 0.33544936776161194, 0.3696623146533966, 0.05441363528370857, -0.042895689606666565, 0.26923996210098267, -0.1672409027814865, 0.12099671363830566, -0.22853198647499084, -0.2061607390642166, 0.30040276050567627, 0.11480806767940521, 0.05196353793144226, -0.005790695548057556, 0.5629855990409851, 0.023325204849243164, -0.1906658113002777, -0.2989128530025482, 0.009488556534051895, 0.10320726782083511, 0.2847789525985718, -0.338224321603775, -0.446805477142334, -0.10331476479768753, 0.08833324909210205, -0.08427351713180542, -0.18978342413902283, -0.14895674586296082, 0.07054542005062103, 0.1788673847913742, -0.3684658706188202, -0.23686407506465912, 0.007489591836929321, 0.10282517969608307, -0.2789255380630493, 0.17303621768951416, -0.1957015097141266, 0.19209817051887512, -0.10207374393939972, -0.20494280755519867, -0.5331299304962158, 0.013909154571592808, 0.09003089368343353, 0.31283873319625854, -0.2858852446079254, -0.21216624975204468, 0.13005071878433228, -0.09438451379537582, 0.2533920705318451, 0.15598490834236145, -0.11989502608776093, -0.11716968566179276, 0.13761985301971436, 0.02722719870507717, -0.045192401856184006, 0.20598945021629333, 0.01734016463160515, 0.3120792806148529, -0.23081202805042267, -0.26830577850341797, -0.34333691000938416, -0.26117730140686035, -0.16815054416656494, 0.01701391115784645, 0.018581729382276535, 0.0384051650762558, 0.4159691333770752, 0.07720893621444702, -0.136393740773201, 0.0688803493976593, -0.2693956196308136, 0.051527831703424454, -0.010957739315927029, 0.22100669145584106, 0.13454893231391907, -0.08883446455001831, -0.022853292524814606, 0.05039959400892258, -0.09577547758817673, -0.19399002194404602, -0.2568035423755646, 0.04960600286722183, -0.016311515122652054, -0.08019686490297318, -0.15251553058624268, -0.1180931031703949, 0.08518410474061966, -0.04567248746752739, 0.17741215229034424, 0.06095249950885773, 0.08883177489042282, -0.21558770537376404, 0.29969584941864014, 0.2359924465417862, -0.1855131983757019, 0.2814008891582489, 0.4470249116420746, -0.23287732899188995, -0.22735440731048584, -0.0959080383181572, -0.43062710762023926, -0.3704141080379486, -0.2810090482234955, 0.13340666890144348, -0.13035714626312256, -0.1787533313035965, -0.37998032569885254, 0.28534823656082153, 0.1515893042087555, -0.12304268777370453, 0.016873270273208618, -0.2900514602661133, -0.4458047151565552, -0.14775437116622925, 0.2956813871860504, 0.3791254758834839, -0.25933173298835754, -0.14023488759994507, 0.20204320549964905, -0.16797387599945068, 0.024843059480190277, 0.09322711825370789, 0.12935113906860352, 0.49409061670303345, -0.24352045357227325, 0.35434722900390625, 0.12127146869897842, -0.27472472190856934, -0.2544974386692047, 0.18114250898361206, -0.2912669777870178, 0.053627192974090576, -0.42894214391708374, -0.19624735414981842, 0.22682304680347443, -0.04041991010308266, 0.2778675854206085, -0.018685221672058105, -0.13868919014930725, -0.021659810096025467, -0.1110365241765976, 0.030773526057600975, 0.46202659606933594, -0.29873141646385193, -0.1664423644542694, 0.23382914066314697, -0.15963277220726013, 0.03172028064727783, -0.1366700828075409, 0.0800408199429512, -0.0015584188513457775, 0.11266209930181503, 0.4320298135280609, 0.11286920309066772, -0.12105461955070496, -0.1972586214542389, -0.17448613047599792, 0.052306242287158966, 0.614903450012207, 0.2625884413719177, -0.05535697937011719, -0.15695159137248993, -0.2786986529827118, 0.1726813167333603, -0.1202714741230011, -0.22385963797569275, 0.07228612154722214, -0.0434463769197464, -0.02718649059534073, 0.2130500078201294, -0.24459420144557953, 0.035514332354068756, -0.18923820555210114, 0.16919028759002686, -0.028012897819280624, 0.17196127772331238, 0.08717764914035797, -0.1274135261774063, -0.031205318868160248, 0.15926896035671234, 0.08778536319732666, -0.02051011472940445, -0.08900974690914154, 0.2926638126373291, 0.020874159410595894, -0.10425315797328949, -0.13831430673599243, 0.45669716596603394, 0.11439219862222672, -0.17995038628578186, -0.5014653205871582, -0.051319364458322525, 0.18985837697982788, 0.016828104853630066, 0.23083627223968506, 0.25213322043418884, 0.3509412109851837, 0.2248949408531189, 0.11543484032154083, 0.2282954454421997, -0.037022411823272705, 0.13052302598953247, -0.051128700375556946, -0.25642096996307373, -0.02428751066327095, -0.2934698164463043, 0.05163769796490669, -0.0266228336840868, -0.15772798657417297, 0.2391723394393921, 0.5992748737335205, -0.10083426535129547, 0.02630065754055977, 0.1606062948703766, -0.28592953085899353, 0.041629426181316376, 0.07073670625686646, 0.20188651978969574, 0.33953970670700073, 0.10783078521490097, -0.07434920966625214, -0.016099022701382637, 0.03632720559835434, 0.3117974102497101, 0.17023201286792755, -0.10020895302295685, 0.171264186501503, 0.0786946639418602, -0.10199905186891556, 0.26153308153152466, -0.09695073962211609, -0.3979206085205078, 0.03769495338201523, 0.5381565690040588, -0.6530128717422485, -0.14093393087387085, -0.15071380138397217, 0.04152250289916992, 0.10545054078102112, -0.06613992154598236, -0.2123907059431076, -0.4202544093132019, -0.16198068857192993, 0.00635746493935585, 0.15003405511379242, 0.06706637889146805, -0.32462576031684875, 0.02403770387172699, 0.16507484018802643, -0.16742229461669922, -0.17038066685199738, -0.19631852209568024, -0.2080307900905609, -0.006750777363777161, 0.17111702263355255, -0.12355909496545792, 0.1453472226858139, -0.32830575108528137, 0.16080442070960999, -0.18000604212284088, -0.4412212073802948, 0.30334553122520447, -0.38800346851348877, 0.3335459232330322, 0.2092023491859436, 0.3714907169342041, -0.4037846326828003, -0.11712820082902908, 0.40532779693603516, -0.3179013133049011, -0.3682287037372589, 0.2427653670310974, 0.0025507030077278614, -0.3134341835975647, -0.014539344236254692, -0.05505112558603287, -0.16817176342010498, -0.05280565470457077, 0.2039959877729416, -0.16191644966602325, 0.06847508251667023, 0.41560935974121094, 0.1613464206457138, 0.26408907771110535, -0.2871159017086029, -0.04786831885576248, -0.1791810840368271, -0.4011687934398651, 0.4648638069629669, -0.3192690908908844, -0.41739389300346375, 0.006362956017255783, 0.14489629864692688, 0.080848827958107, 0.019849184900522232, -0.29456061124801636, -0.22462692856788635, -0.14761711657047272, 0.11187221109867096, -0.19322745501995087, -0.07930062711238861, 0.23356375098228455, 0.1140257865190506, -0.07532563805580139, -0.09150514751672745, -0.3336329758167267, 0.12862315773963928, -0.007859662175178528, 0.02668602019548416, -0.12004704028367996, 0.3507544696331024, 0.22679385542869568, 0.6952542662620544, 0.020952314138412476, -0.27760034799575806, 0.10976113379001617, -0.6389493346214294, 0.15398021042346954, -0.11085159331560135, -0.6453254818916321, 0.30588024854660034, -0.09839166700839996, 0.07159776240587234, 0.18304111063480377, -0.10559992492198944, 0.42402079701423645, 0.05487923324108124, 0.029316358268260956, -0.15537293255329132, -0.38772130012512207, -0.04058368504047394, -0.06984633952379227, 0.31855592131614685, -0.02065667323768139, 0.04978250712156296, -0.39507248997688293, -0.11391673237085342, 0.27872151136398315, 0.3362698256969452, 0.24793735146522522, 0.2197847068309784, -0.6356939077377319, -0.10897040367126465, -0.5784282684326172, 0.29271697998046875, 0.03223692625761032, 0.5474891662597656, -0.17276443541049957, -0.11689724773168564, -0.09536488354206085, 0.1765533685684204, 0.776238739490509, 0.03126892074942589, 0.06552819162607193, 0.038193006068468094, -0.1423073559999466, -0.27063891291618347, 0.16320279240608215, -0.0921773761510849, 0.40195339918136597, 0.016049329191446304, 0.6377252340316772, -0.1448615938425064, -0.42817625403404236, 0.006435547024011612, -0.015323725529015064, -0.13480038940906525, 0.20199166238307953, -0.2125132977962494, -0.22852283716201782, -0.26266804337501526, -0.10514868050813675, 0.2691269516944885, 0.24627797305583954, 0.39198192954063416, 0.11119949817657471, -0.36116984486579895, -0.2408778965473175, 0.5431058406829834, 0.0008584698662161827, 0.1889059841632843, 0.35024699568748474, 0.05259694531559944, 0.06940252333879471, 0.006215311586856842, 0.3368286192417145, 0.059562768787145615, -0.06330037117004395, -0.4831034541130066, 0.026283586397767067, 0.27518439292907715, 0.4774968922138214, -0.09942932426929474, -0.19668956100940704, 0.07190848886966705, -0.15279754996299744, 0.23806941509246826, -0.2888943552970886, 0.3571854829788208, 0.4226702153682709, 0.1305626928806305, -0.4845697581768036, -0.17935341596603394, 0.03053118661046028, 0.00027087703347206116, 0.25590455532073975, 0.15911273658275604, 0.6125199198722839, -0.10506510734558105, 0.24273847043514252, 0.1592736542224884, 0.9359655976295471, -0.1674964874982834, 0.07132750749588013, 0.28229424357414246, -0.0072416141629219055, 0.5354683995246887, -0.19372469186782837, 0.03840438276529312, -0.11649424582719803, -0.33299776911735535, -0.08353204280138016, 0.03759361431002617, 0.16691434383392334, 0.2390473186969757, 0.013433899730443954, 0.056085698306560516, 0.041349299252033234, 0.361253559589386, 0.22642746567726135, 0.2583848237991333, 0.11245114356279373, -0.060363661497831345, -0.026913829147815704, 0.15804129838943481, -0.11944158375263214, 0.4561331868171692, 0.10541266947984695, -0.07517320662736893, -0.13575473427772522, 0.03644261509180069, -0.24659191071987152, -0.24519792199134827, -0.4600924253463745, 0.021792516112327576, 0.2577928304672241, -0.14760228991508484, 0.32566970586776733, 0.038357168436050415, 0.046080656349658966, 0.17922554910182953, -0.2641209065914154, 0.008932992815971375, -0.16325688362121582, 0.09183969348669052, -0.06738854944705963, -0.1471599042415619, 0.577926516532898, 0.06658133864402771, -0.067901611328125, -0.007193088531494141, 0.07677669078111649, -0.02613198757171631, 0.03749722242355347, -0.31283116340637207, 0.10355972498655319, -0.47747480869293213, -0.23037882149219513, 0.11800219118595123, 0.2217179536819458, -0.017655588686466217, 0.06399807333946228, -0.2085564285516739, -0.2109256535768509, -0.12195027619600296, 0.07761581987142563, -0.29798856377601624, 0.07779449224472046, 0.3533916473388672, -0.4285673499107361, 0.08720004558563232, 0.5535281896591187, -0.05059652402997017, 0.0006287693977355957, -0.11614929884672165, 0.31252241134643555, 0.5194653868675232, -0.491896390914917, 0.21092090010643005, 0.01088033802807331, 0.44484007358551025, -0.07990121841430664, 0.20972970128059387, -0.016268469393253326, -0.14789018034934998, 0.10649099946022034, -0.3855436444282532, -0.5000584721565247, 0.02270141988992691, -0.0446295402944088, 0.034041691571474075, 0.005359582602977753, 0.671635091304779, -0.06638878583908081, 0.11986200511455536, -0.3137304484844208, -0.09166976064443588, -0.14196406304836273, 0.027713147923350334, 0.26321250200271606, -0.0069298408925533295, 0.1192217618227005, -0.2501315772533417, 0.12423759698867798, 0.056573957204818726, 0.008014933206140995, -0.1837138831615448, -0.271759569644928, 0.1627960354089737, 0.20679008960723877, -0.07381585985422134, 0.09494177252054214, 0.15643756091594696, -0.2707032561302185, -0.21538452804088593, 0.014047108590602875, 0.35470661520957947, -0.18762533366680145, 0.388685405254364, 0.13662834465503693, 0.1126902848482132, -0.07542352378368378, -0.2907104194164276, 0.2778283357620239, 0.13079574704170227, 0.24339254200458527, 0.0977150946855545, -0.003373759565874934, 0.13604487478733063, -0.10250414162874222, 0.18064835667610168, 0.03650782257318497, -0.2477630376815796, 0.26101744174957275, -0.10602538287639618, 0.054697807878255844, 0.06709278374910355, -0.03794179856777191, 0.04776351898908615, -0.24939441680908203, -0.029282821342349052, 0.43995317816734314, 0.11867977678775787, -0.20352020859718323, 0.27851420640945435, 0.4146139621734619, -0.19563192129135132, -0.08458729833364487, -0.026874832808971405, -0.261982798576355, 0.39040446281433105, -0.27149373292922974, 0.03363646939396858, 0.21990308165550232, 0.038820963352918625, 0.14072397351264954, 0.35932737588882446, -0.10360836982727051, 0.24617210030555725, 0.19033895432949066, 0.1625799536705017, 0.05004909262061119, 0.1910993903875351, -0.020512498915195465, 0.2870123088359833, -0.09228087216615677, 0.14298105239868164, 0.2876189947128296, -0.4569845497608185, 0.08513884991407394, 0.13792350888252258, 0.1452103853225708, 0.2213631272315979, -0.17322871088981628, 0.4037024676799774, -0.04686643183231354, -0.31012019515037537, 0.303274005651474, 0.5697334408760071, -0.1454819142818451, -0.0634804219007492, -0.020648492500185966, 0.028210632503032684, -0.19064587354660034, -0.16843968629837036, -0.15552307665348053, -0.3877183198928833, 0.006937429308891296, 0.07524891942739487, -0.09165328741073608, -0.3091171979904175, -0.33144035935401917, 0.13489392399787903, 0.2808569669723511, -0.027321478351950645, 0.10392270237207413, -0.13142606616020203, -0.003876723349094391, 0.10264529287815094, 0.5000642538070679, 0.3986133337020874, 0.21500401198863983, 0.058677513152360916, 0.17427107691764832, -0.0019896384328603745, -0.13878311216831207, 0.2043580561876297, 0.326600044965744, -0.14947247505187988, -0.10233323276042938, 0.11320458352565765, 0.01958639733493328, 0.0061463722959160805, -0.27721482515335083, -0.04258714243769646, 0.07411734759807587, -0.1079166978597641, 0.5272877216339111, -0.15950548648834229, -0.11644957214593887, -0.1670023649930954, 0.1574115753173828, -0.21311911940574646, -0.04805411770939827, 0.42707115411758423, 0.013304242864251137, 0.10789128392934799, -0.27040350437164307, 0.05383501946926117, 0.10291440784931183, 0.2473570853471756, 0.5020460486412048, 0.04076945781707764, -0.3427139222621918, -0.08917077630758286, -0.42452272772789, 0.09424018114805222, 0.13831794261932373, -0.04746941104531288, -0.026064574718475342, -0.12376326322555542, 0.07790198177099228, 0.06669114530086517, -0.003814980387687683, -0.03738924860954285, -0.2664250433444977, 0.31170180439949036, 0.05887254700064659, -0.10980479419231415, -0.7312347888946533, 0.1966855376958847, 0.1845257729291916, 0.029147565364837646, 0.07453436404466629, 0.04628485068678856, -0.0006795302033424377, -0.31562453508377075, 0.09907813370227814, -0.07187901437282562, -0.2315361499786377, 0.38135087490081787, 0.23290450870990753, 0.39234334230422974, -0.018448149785399437, 0.17908881604671478, 0.14653615653514862, 0.14349833130836487, -0.4022843539714813, 0.40690088272094727, -0.13850219547748566, -0.032732851803302765, 0.1314096748828888, -0.3231927454471588, -0.1367643177509308, -0.08058563619852066, 0.2757527828216553, -0.09154194593429565, -0.44835972785949707, 0.42702075839042664, -0.09168808162212372, -0.11335031688213348, 0.20566816627979279, 0.41664525866508484, -0.0269472599029541, 0.34575217962265015, -0.38703566789627075, -0.30643099546432495, 0.5461068153381348, -0.6123090982437134, -0.25158852338790894, 0.10265789926052094, 0.012273795902729034, 0.20560342073440552, -0.3973098695278168, -0.6618755459785461, -0.13474176824092865, 0.3900664448738098, 0.04871201515197754, -0.07043088972568512, 0.3402566611766815, -0.20107990503311157, 0.18945655226707458, -0.00030581653118133545, 0.801388144493103, -0.036862507462501526, -0.016052786260843277, 0.23520508408546448, 0.09166650474071503 ]
https://github.com/huggingface/datasets/issues/3303
DataCollatorWithPadding: TypeError
> > Input: > > ``` > tokenizer = AutoTokenizer.from_pretrained(checkpoint) > data_collator = DataCollatorWithPadding(tokenizer=tokenizer, return_tensors="tf") > ``` > > Output: > > ``` > TypeError Traceback (most recent call last) > /tmp/ipykernel_42/1563280798.py in <module> > 1 checkpoint = 'bert-base-uncased' > 2 tokenizer = AutoTokenizer.from_pretrained(checkpoint) > ----> 3 data_collator = DataCollatorWithPadding(tokenizer=tokenizer, return_tensors="pt") > TypeError: __init__() got an unexpected keyword argument 'return_tensors' > ``` > The issue is due to the older version of transformers and datasets. It has been resolved by upgrading their versions. `# upgrade transformers and datasets to latest versions` `!pip install --upgrade transformers` `!pip install --upgrade datasets` Cheers!
Hi, I am following the HuggingFace course. I am now at Fine-tuning [https://huggingface.co/course/chapter3/3?fw=tf](https://huggingface.co/course/chapter3/3?fw=tf). When I set up `DataCollatorWithPadding` as following I got an error while trying to reproduce the course code in Kaggle. This error occurs with either a CPU-only-device or a GPU-device. Input: ```checkpoint = 'bert-base-uncased' tokenizer = AutoTokenizer.from_pretrained(checkpoint) data_collator = DataCollatorWithPadding(tokenizer=tokenizer, return_tensors="tf") ``` Output: ```--------------------------------------------------------------------------- TypeError Traceback (most recent call last) /tmp/ipykernel_42/1563280798.py in <module> 1 checkpoint = 'bert-base-uncased' 2 tokenizer = AutoTokenizer.from_pretrained(checkpoint) ----> 3 data_collator = DataCollatorWithPadding(tokenizer=tokenizer, return_tensors="pt") TypeError: __init__() got an unexpected keyword argument 'return_tensors' ``` When I call `help` method, it too confirms that there is no argument `return_tensors`. Input: ``` help(DataCollatorWithPadding.__init__) ``` Output: ``` Help on function __init__ in module transformers.data.data_collator: __init__(self, tokenizer: transformers.tokenization_utils_base.PreTrainedTokenizerBase, padding: Union[bool, str, transformers.file_utils.PaddingStrategy] = True, max_length: Union[int, NoneType] = None, pad_to_multiple_of: Union[int, NoneType] = None) -> None ``` But, the source file *[Data Collator - docs](https://huggingface.co/transformers/main_classes/data_collator.html#datacollatorwithpadding)* says that there is such an argument. By default, it returns Pytorch tensors while I need TF tensors. Where do I miss? Please help me.
100
DataCollatorWithPadding: TypeError Hi, I am following the HuggingFace course. I am now at Fine-tuning [https://huggingface.co/course/chapter3/3?fw=tf](https://huggingface.co/course/chapter3/3?fw=tf). When I set up `DataCollatorWithPadding` as following I got an error while trying to reproduce the course code in Kaggle. This error occurs with either a CPU-only-device or a GPU-device. Input: ```checkpoint = 'bert-base-uncased' tokenizer = AutoTokenizer.from_pretrained(checkpoint) data_collator = DataCollatorWithPadding(tokenizer=tokenizer, return_tensors="tf") ``` Output: ```--------------------------------------------------------------------------- TypeError Traceback (most recent call last) /tmp/ipykernel_42/1563280798.py in <module> 1 checkpoint = 'bert-base-uncased' 2 tokenizer = AutoTokenizer.from_pretrained(checkpoint) ----> 3 data_collator = DataCollatorWithPadding(tokenizer=tokenizer, return_tensors="pt") TypeError: __init__() got an unexpected keyword argument 'return_tensors' ``` When I call `help` method, it too confirms that there is no argument `return_tensors`. Input: ``` help(DataCollatorWithPadding.__init__) ``` Output: ``` Help on function __init__ in module transformers.data.data_collator: __init__(self, tokenizer: transformers.tokenization_utils_base.PreTrainedTokenizerBase, padding: Union[bool, str, transformers.file_utils.PaddingStrategy] = True, max_length: Union[int, NoneType] = None, pad_to_multiple_of: Union[int, NoneType] = None) -> None ``` But, the source file *[Data Collator - docs](https://huggingface.co/transformers/main_classes/data_collator.html#datacollatorwithpadding)* says that there is such an argument. By default, it returns Pytorch tensors while I need TF tensors. Where do I miss? Please help me. > > Input: > > ``` > tokenizer = AutoTokenizer.from_pretrained(checkpoint) > data_collator = DataCollatorWithPadding(tokenizer=tokenizer, return_tensors="tf") > ``` > > Output: > > ``` > TypeError Traceback (most recent call last) > /tmp/ipykernel_42/1563280798.py in <module> > 1 checkpoint = 'bert-base-uncased' > 2 tokenizer = AutoTokenizer.from_pretrained(checkpoint) > ----> 3 data_collator = DataCollatorWithPadding(tokenizer=tokenizer, return_tensors="pt") > TypeError: __init__() got an unexpected keyword argument 'return_tensors' > ``` > The issue is due to the older version of transformers and datasets. It has been resolved by upgrading their versions. `# upgrade transformers and datasets to latest versions` `!pip install --upgrade transformers` `!pip install --upgrade datasets` Cheers!
[ 0.09074725210666656, -0.4077562987804413, 0.12177523970603943, 0.2705725431442261, 0.3994094133377075, -0.10754445195198059, 0.3337472677230835, 0.24867141246795654, -0.15625834465026855, 0.20497024059295654, 0.21834520995616913, 0.3773719370365143, -0.16493184864521027, 0.10045558959245682, -0.12926164269447327, -0.2466282844543457, 0.07248157262802124, 0.09928944706916809, 0.1067003458738327, 0.02745562046766281, -0.1963098645210266, 0.27820292115211487, -0.2563391327857971, 0.2940042018890381, -0.4043157696723938, -0.2832675874233246, 0.029136991128325462, -0.0872015580534935, -0.09189248830080032, -0.3554835915565491, 0.6174437403678894, -0.18801729381084442, 0.19527417421340942, 0.4655005931854248, -0.00012320066161919385, 0.021999314427375793, 0.1548156440258026, -0.05101146548986435, -0.0005347887054085732, 0.02427513152360916, 0.4408677816390991, -0.051231324672698975, 0.04627455770969391, -0.15659961104393005, -0.16208598017692566, -0.003530065529048443, -0.21439297497272491, 0.06042139232158661, 0.5589399933815002, 0.04140343889594078, 0.09119506925344467, 0.4949113428592682, 0.3962152898311615, -0.02429376170039177, -0.27051210403442383, 0.0034562647342681885, -0.18842338025569916, 0.20297203958034515, 0.17054685950279236, -0.16871145367622375, -0.09081379324197769, 0.1691516637802124, 0.07306181639432907, -0.2814801335334778, 0.27058717608451843, 0.09645590931177139, -0.358710378408432, -0.17686626315116882, 0.0322369821369648, 0.17035788297653198, 0.33956968784332275, -0.20294338464736938, -0.20855934917926788, -0.442297101020813, 0.0018387391464784741, 0.025985142216086388, 0.33074066042900085, -0.20592465996742249, -0.4334164559841156, -0.17120040953159332, 0.35416361689567566, -0.17983826994895935, -0.12187419831752777, 0.04675567150115967, -0.10968407243490219, 0.37320980429649353, -0.17279215157032013, 0.2091677188873291, 0.5126460790634155, -0.17862142622470856, -0.036049310117959976, 0.05731207877397537, 0.3166143000125885, 0.39549148082733154, -0.4223138093948364, -0.3555784821510315, 0.06943944841623306, -0.16363927721977234, 0.20974993705749512, -0.11039136350154877, 0.12134107202291489, -0.1288149058818817, -0.0467255562543869, 0.11584062874317169, 0.1694355607032776, 0.3452318012714386, 0.2024916112422943, 0.10997849702835083, 0.12995396554470062, 0.19823819398880005, 0.27822619676589966, -0.2000221610069275, -0.17669248580932617, -0.15430356562137604, -0.03206666558980942, -0.04215297847986221, 0.3779715895652771, 0.11002369225025177, -0.17282669246196747, -0.006449137814342976, -0.10409263521432877, 0.004732627887278795, -0.047862935811281204, 0.09705904126167297, 0.11229114234447479, 0.13336440920829773, 0.038409166038036346, 0.26233333349227905, -0.04155486822128296, -0.4363647997379303, -0.0969945564866066, 0.17002548277378082, -0.10818127542734146, 0.022060569375753403, -0.00032913684844970703, -0.1697545051574707, 0.02284993790090084, 0.212254136800766, 0.34359997510910034, 0.027041807770729065, -0.02424447610974312, -0.041079238057136536, -0.15175095200538635, 0.01891019567847252, -0.057011350989341736, 0.22125519812107086, 0.4395184814929962, -0.3044881522655487, -0.1533142328262329, -0.17077961564064026, -0.14896541833877563, -0.22250725328922272, -0.05201062560081482, 0.052801914513111115, 0.031157098710536957, -0.08902488648891449, -0.4236091673374176, -0.0007563531398773193, 0.43128275871276855, -0.040034446865320206, 0.22746136784553528, -0.04895301163196564, 0.11777305603027344, -0.19094730913639069, 0.31683164834976196, 0.0691470056772232, -0.24206188321113586, -0.366619348526001, -0.11782924085855484, 0.0137535585090518, 0.1744190752506256, 0.49268946051597595, -0.08676573634147644, 0.31468603014945984, -0.3299524486064911, 0.48541420698165894, 0.19651572406291962, -0.41477730870246887, -0.28971272706985474, -0.010173331014811993, -0.2051527500152588, 0.31683075428009033, 0.18063022196292877, -0.31177377700805664, -0.012794166803359985, 0.14284265041351318, 0.18904146552085876, 0.07902204245328903, -0.1904078871011734, -0.04120703786611557, -0.25514230132102966, -0.17769531905651093, 0.6569879055023193, 0.050602857023477554, 0.10346147418022156, 0.09538199752569199, -0.38241294026374817, -0.027584068477153778, 0.12646323442459106, -0.220960795879364, 0.008706516586244106, 0.03199649602174759, 0.5663696527481079, -0.12014077603816986, 0.03815784305334091, 0.11090198904275894, -0.2424650490283966, 0.20364654064178467, -0.10185717791318893, 0.29656246304512024, -0.2458740919828415, -0.26707497239112854, -0.08428336679935455, -0.02007107436656952, -0.04005970433354378, -0.30606865882873535, 0.05398128926753998, -0.15492719411849976, -0.10983684659004211, 0.05874581262469292, -0.22688166797161102, 0.2349151372909546, -0.03771919384598732, 0.30777090787887573, -0.551686704158783, 0.25471895933151245, -0.162953183054924, -0.24007248878479004, -0.11535252630710602, 0.14134860038757324, 0.27577656507492065, -0.16462762653827667, 0.18212741613388062, 0.202470600605011, 0.11988427489995956, -0.09092763066291809, -0.15811970829963684, 0.024405106902122498, 0.21124829351902008, 0.005913127213716507, -0.41895294189453125, 0.0884566605091095, 0.06446564197540283, -0.1387280821800232, 0.4610750377178192, 0.657706081867218, 0.19683189690113068, 0.26933059096336365, -0.07061490416526794, 0.1529620885848999, -0.02225279062986374, 0.08456279337406158, -0.009353380650281906, -0.011224605143070221, 0.16975706815719604, -0.3432089388370514, 0.35371166467666626, -0.19918158650398254, -0.2465912401676178, -0.0964341089129448, 0.1527038961648941, 0.16108812391757965, 0.14044567942619324, 0.14836061000823975, -0.05120085924863815, -0.02259928174316883, 0.06823340803384781, -0.3446059823036194, 0.23465308547019958, -0.10552895069122314, -0.21428540349006653, 0.1483992040157318, -0.004788152873516083, -0.07582160830497742, 0.1342957466840744, -0.019049011170864105, -0.005408037453889847, 0.0477561429142952, -0.19369757175445557, 0.20352955162525177, -0.16433969140052795, -0.16363850235939026, -0.10687790811061859, 0.08161934465169907, -0.3217680752277374, -0.09659107774496078, -0.07522006332874298, -0.38699081540107727, -0.1305362433195114, -0.11326590925455093, -0.46603626012802124, -0.3192459046840668, -0.19477668404579163, 0.15326540172100067, 0.04268632456660271, 0.24496205151081085, 0.2691890597343445, 0.6432507634162903, 0.10489614307880402, 0.07320630550384521, -0.32481464743614197, -0.2492857128381729, -0.08055238425731659, 0.01393790915608406, -0.1453002691268921, -0.42393288016319275, 0.10554497689008713, 0.05192475765943527, 0.1372314840555191, -0.07922960817813873, -0.5207657814025879, 0.19674989581108093, -0.2193223088979721, -0.08308011293411255, 0.4242624342441559, 0.4610634446144104, -0.0797443687915802, -0.6736230850219727, 0.22335490584373474, -0.1556909680366516, -0.41575273871421814, 0.029301125556230545, 0.08105623722076416, 0.1730969101190567, -0.08899561315774918, 0.238546222448349, -0.06457360833883286, -0.2157788872718811, 0.3046574592590332, -0.05462498217821121, -0.21643926203250885, 0.02524958923459053, 0.024426568299531937, 0.3068297505378723, -0.0687972754240036, 0.030383992940187454, -0.25713592767715454, -0.10182183980941772, 0.20195554196834564, 0.05023905262351036, -0.15495623648166656, -0.1677275449037552, -0.06278835982084274, 0.627993643283844, -0.25239765644073486, -0.2657259702682495, -0.3213008642196655, -0.25514283776283264, 0.6211444735527039, -0.29578641057014465, 0.23464250564575195, 0.21855124831199646, 0.004461314529180527, 0.1288348287343979, -0.011376559734344482, -0.24975590407848358, 0.08662612736225128, -0.05209512263536453, 0.1164821907877922, -0.0024956315755844116, 0.2689457833766937, 0.2244747281074524, 0.7780627012252808, 0.2794656455516815, -0.1199752539396286, 0.1822376847267151, 0.060495972633361816, 0.2687678635120392, -0.04894077032804489, -0.35333558917045593, 0.08420807868242264, -0.06787197291851044, 0.003116114065051079, -0.04502511024475098, -0.23742547631263733, 0.08540327847003937, -0.2126556634902954, -0.346208393573761, -0.01965552568435669, -0.429948627948761, 0.05614086985588074, 0.13943372666835785, -0.005758471786975861, -0.21308018267154694, 0.2232087254524231, -0.19195863604545593, 0.12069473415613174, 0.3076989948749542, 0.32809486985206604, 0.1786126345396042, -0.08166477829217911, -0.23969680070877075, -0.42120829224586487, -0.6294122934341431, 0.23110686242580414, 0.025054167956113815, 0.37127354741096497, -0.04434636980295181, -0.14498943090438843, 0.03362581133842468, 0.1159956231713295, 0.7549412250518799, 0.14707309007644653, -0.2791751027107239, -0.025488728657364845, -0.4226251244544983, -0.143758624792099, -0.0872410237789154, -0.06729882955551147, -0.3492160737514496, 0.22154377400875092, 0.4974213242530823, -0.5513878464698792, 0.0829535722732544, -0.3008815050125122, -0.10928502678871155, 0.0018004700541496277, 0.15684780478477478, -0.2493544965982437, -0.38769495487213135, -0.24839510023593903, 0.20507946610450745, 0.14910174906253815, 0.34301671385765076, 0.19346429407596588, 0.5362882018089294, -0.010542472824454308, -0.3222864270210266, -0.013071417808532715, 0.09543341398239136, 0.09267259389162064, -0.29589590430259705, -0.037711866199970245, 0.159172922372818, -0.02480989694595337, 0.24293258786201477, 0.20882411301136017, 0.19483456015586853, -0.7646278738975525, -0.0005400236696004868, -0.016530528664588928, 0.3238653540611267, 0.29324936866760254, -0.14578893780708313, 0.6870865821838379, 0.06291469931602478, 0.08747019618749619, -0.33469951152801514, 0.1464013010263443, 0.3924052119255066, 0.0837060734629631, -0.3429110646247864, -0.09589796513319016, 0.3542919158935547, 0.08187520503997803, 0.06829623878002167, 0.5084450244903564, 0.5426680445671082, -0.30710718035697937, 0.30909210443496704, 0.16456195712089539, 0.9911684393882751, 0.2787172794342041, 0.3655511140823364, 0.45888546109199524, -0.16660040616989136, 0.7348272800445557, -0.06031589210033417, 0.08243691921234131, -0.20893976092338562, -0.41896504163742065, -0.12051021307706833, -0.034475766122341156, 0.1928536593914032, -0.1954789161682129, -0.4373588562011719, -0.005834541749209166, -0.39790672063827515, 0.46191734075546265, 0.07705478370189667, -0.003690183162689209, -0.05838461220264435, -0.13197796046733856, -0.35906216502189636, -0.042411625385284424, -0.13942649960517883, 0.30520737171173096, -0.126249760389328, -0.14142104983329773, 0.04437807574868202, -0.3598126769065857, -0.3560240864753723, -0.09229810535907745, -0.3288886249065399, 0.14921338856220245, 0.750113308429718, -0.180189847946167, 0.4522431492805481, 0.19132724404335022, 0.8269420266151428, 0.03926583006978035, -0.2250927984714508, 0.06868699193000793, -0.06301227957010269, -0.016397206112742424, -0.05536292493343353, -0.023748423904180527, 0.3713459074497223, 0.059868812561035156, 0.054791949689388275, 0.34318849444389343, -0.052443068474531174, -0.28087055683135986, -0.24638497829437256, -0.023567333817481995, -0.5204843282699585, -0.5347988605499268, -0.0033604183699935675, -0.0010732710361480713, 0.08971352875232697, -0.24655389785766602, -0.004402916878461838, 0.13283507525920868, -0.2577240765094757, -0.3613588809967041, 0.3302638828754425, -0.12829577922821045, -0.039491649717092514, 0.3940959870815277, 0.07413935661315918, -0.3311494290828705, 0.5316451787948608, 0.04433175548911095, -0.2108440399169922, 0.010546296834945679, 0.0689878836274147, 0.763447105884552, -0.4126879870891571, 0.20520363748073578, 0.016437143087387085, -0.11662977933883667, -0.16113781929016113, 0.3419235348701477, 0.4009963870048523, 0.08249913901090622, -0.018901605159044266, -0.06152530014514923, -0.45406678318977356, 0.19271866977214813, -0.18777057528495789, -0.034630801528692245, 0.19240909814834595, 0.5374534130096436, -0.11470971256494522, -0.004193102940917015, -0.2055751383304596, -0.05178481340408325, -0.234573632478714, -0.050855234265327454, 0.12012000381946564, -0.25393223762512207, -0.0059188613668084145, 0.19958186149597168, -0.010626688599586487, 0.36257797479629517, -0.03304782137274742, 0.004439413547515869, -0.3391447067260742, 0.1664743572473526, 0.2551547884941101, -0.19993048906326294, 0.16818678379058838, 0.09929384291172028, -0.03330883011221886, -0.17382805049419403, 0.26079854369163513, -0.06030081957578659, 0.04433337599039078, 0.3135592043399811, -0.19965283572673798, 0.39943110942840576, -0.42325878143310547, -0.016411684453487396, -0.047210708260536194, 0.07657456398010254, 0.35358646512031555, 0.061195965856313705, -0.24415332078933716, 0.06667555868625641, 0.1644284427165985, 0.3762444257736206, 0.11946792900562286, -0.1796635091304779, 0.1440007984638214, -0.2786543369293213, -0.07210565358400345, -0.33631226420402527, 0.11200821399688721, 0.08647410571575165, -0.37412354350090027, -0.04532312974333763, 0.33758679032325745, 0.04768705368041992, -0.05158960819244385, -0.17771880328655243, 0.07257910072803497, -0.004143602214753628, 0.09521476924419403, 0.3529760539531708, -0.019288871437311172, -0.01877415180206299, 0.10771118849515915, -0.0981084480881691, 0.5227762460708618, -0.11963410675525665, 0.32275402545928955, 0.3677528202533722, -0.20562906563282013, 0.09648679196834564, 0.2662522792816162, 0.43311989307403564, 0.18122388422489166, -0.06000201404094696, -0.33293822407722473, 0.15703095495700836, -0.31835827231407166, -0.1483885943889618, 0.23080980777740479, -0.37173348665237427, -0.09033824503421783, 0.4665754437446594, -0.20850759744644165, 0.08220233023166656, -0.1276334673166275, 0.27922138571739197, -0.23352785408496857, -0.13597244024276733, -0.0036105774343013763, 0.08597810566425323, -0.3561016619205475, 0.02741340547800064, -0.006610359996557236, -0.12609882652759552, -0.32554322481155396, -0.11908312141895294, 0.03061884082853794, -0.19293652474880219, -0.01638704538345337, -0.1776248961687088, -0.08930602669715881, 0.0648137629032135, -0.011376358568668365, 0.1756046712398529, 0.3324853181838989, -0.16964510083198547, 0.06402440369129181, 0.06916765868663788, -0.16546083986759186, -0.0663619339466095, 0.12707114219665527, 0.6384821534156799, 0.2373652160167694, -0.12785367667675018, 0.2022469937801361, -0.06003626063466072, 0.04877091199159622, 0.07618167251348495, 0.20443429052829742, 0.26411300897598267, 0.1712564080953598, 0.24941618740558624, 0.055062636733055115, -0.1264447718858719, -0.10556022822856903, -0.025029707700014114, 0.28503280878067017, -0.2726091742515564, -0.04018596559762955, -0.5884952545166016, -0.12640026211738586, -0.11599542200565338, 0.17056237161159515, -0.13171446323394775, 0.3570602536201477, -0.005428098142147064, 0.20335084199905396, -0.01904815062880516, -0.04264317452907562, 0.023687712848186493, 0.055946044623851776, 0.471317321062088, 0.5115919709205627, -0.08417738229036331, -0.14912839233875275, -0.33764177560806274, -0.13489508628845215, 0.2217445969581604, 0.21269702911376953, -0.17921018600463867, 0.10054880380630493, -0.07136788219213486, 0.2328832745552063, 0.021689828485250473, 0.10030677169561386, -0.10594393312931061, 0.07758257538080215, -0.07280290126800537, 0.041052963584661484, -0.23895232379436493, 0.03155260533094406, -0.21999424695968628, 0.017122533172369003, 0.14568868279457092, 0.13640455901622772, 0.045617543160915375, 0.05317637324333191, -0.018822383135557175, 0.07169085741043091, -0.1304975152015686, -0.1460886299610138, 0.0573064349591732, 0.20876817405223846, 0.500443696975708, -0.04587554559111595, -0.07571209222078323, 0.13286025822162628, -0.13502612709999084, -0.324720561504364, -0.03397861123085022, -0.018731161952018738, 0.36757439374923706, 0.11769179254770279, -0.17889632284641266, -0.48090487718582153, 0.5495641827583313, 0.4431682825088501, -0.21619991958141327, -0.24682801961898804, 0.47377997636795044, -0.015520598739385605, -0.32458817958831787, 0.37162914872169495, 0.21423327922821045, 0.014214787632226944, 0.10445430874824524, -0.2699830234050751, -0.4127742052078247, 0.553467869758606, -0.29416075348854065, -0.281884104013443, -0.16966025531291962, 0.03380313515663147, -0.01713211089372635, -0.2489345371723175, -0.720368504524231, -0.20512765645980835, 0.06663355231285095, -0.05184229463338852, -0.40982288122177124, -0.011141514405608177, 0.058759648352861404, 0.029171448200941086, 0.014274459332227707, 0.2618158459663391, 0.15453149378299713, 0.08913478255271912, 0.25954964756965637, -0.2831253111362457 ]
https://github.com/huggingface/datasets/issues/3300
❓ Dataset loading script from Hugging Face Hub
Hi ! In the next version of `datasets`, your train and test splits will be correctly separated (changes from #3027) if you create a dataset repository with only your CSV files. Also it seems that you overwrite the `data_files` and `data_dir` arguments in your code, when you instantiate the AGNewsConfig objects. Those parameters are not necessary since you already know which files you want to load. You can find an example on how to specify which file the dataset has to download in this [example script](https://huggingface.co/datasets/lhoestq/custom_squad/blob/main/custom_squad.py#L101-L107): ```python _URLS = { "train": "train-v1.1.json", # you can use a URL or a relative path from the python script to your file in the repository "dev": "dev-v1.1.json", } ``` ```python def _split_generators(self, dl_manager): downloaded_files = dl_manager.download_and_extract(_URLS) return [ datasets.SplitGenerator(name=datasets.Split.TRAIN, gen_kwargs={"filepath": downloaded_files["train"]}), datasets.SplitGenerator(name=datasets.Split.VALIDATION, gen_kwargs={"filepath": downloaded_files["dev"]}), ] ```
Hi there, I am trying to add my custom `ag_news` with its own loading script on the Hugging Face datasets hub. In particular, I would like to test the addition of a second configuration to the existing `ag_news` dataset. Once it works in my hub, I plan to make a PR to the original dataset. However, in trying to do so I have encountered certain problems as detailed below. Issues I have encountered: - Without a loading script, the train and test files are loaded together into a unique `dataset.Dataset` -> so I wrote a loading script. Also, I need a loading script otherwise I cannot specify multiple configurations - Once my loading script is working locally, I do not manage to make it work on the hub. In particular, I would like to be able to load the dataset like this ```python load_dataset("pietrolesci/ag_news", name="my_configuration") ``` Apparently, the `load_dataset` is able to pick up the loading script from the hub and run it. However, it errors because it is unable to find the files. The structure of my hub repo is the following ``` ag_news.py train.csv test.csv ``` and the loading script I specify `data_dir=Path(__file__).parent` and `data_files=DataFilesDict({"train": "train.csv", "test": "test.csv"})`. In the documentation I could not find info regarding loading a dataset from the hub using a loading script present on the hub. Any suggestion is very much appreciated. Best, Pietro Link to the hub repo: https://huggingface.co/datasets/pietrolesci/ag_news BONUS: how can I make the data viewer work in this specific case? :)
133
❓ Dataset loading script from Hugging Face Hub Hi there, I am trying to add my custom `ag_news` with its own loading script on the Hugging Face datasets hub. In particular, I would like to test the addition of a second configuration to the existing `ag_news` dataset. Once it works in my hub, I plan to make a PR to the original dataset. However, in trying to do so I have encountered certain problems as detailed below. Issues I have encountered: - Without a loading script, the train and test files are loaded together into a unique `dataset.Dataset` -> so I wrote a loading script. Also, I need a loading script otherwise I cannot specify multiple configurations - Once my loading script is working locally, I do not manage to make it work on the hub. In particular, I would like to be able to load the dataset like this ```python load_dataset("pietrolesci/ag_news", name="my_configuration") ``` Apparently, the `load_dataset` is able to pick up the loading script from the hub and run it. However, it errors because it is unable to find the files. The structure of my hub repo is the following ``` ag_news.py train.csv test.csv ``` and the loading script I specify `data_dir=Path(__file__).parent` and `data_files=DataFilesDict({"train": "train.csv", "test": "test.csv"})`. In the documentation I could not find info regarding loading a dataset from the hub using a loading script present on the hub. Any suggestion is very much appreciated. Best, Pietro Link to the hub repo: https://huggingface.co/datasets/pietrolesci/ag_news BONUS: how can I make the data viewer work in this specific case? :) Hi ! In the next version of `datasets`, your train and test splits will be correctly separated (changes from #3027) if you create a dataset repository with only your CSV files. Also it seems that you overwrite the `data_files` and `data_dir` arguments in your code, when you instantiate the AGNewsConfig objects. Those parameters are not necessary since you already know which files you want to load. You can find an example on how to specify which file the dataset has to download in this [example script](https://huggingface.co/datasets/lhoestq/custom_squad/blob/main/custom_squad.py#L101-L107): ```python _URLS = { "train": "train-v1.1.json", # you can use a URL or a relative path from the python script to your file in the repository "dev": "dev-v1.1.json", } ``` ```python def _split_generators(self, dl_manager): downloaded_files = dl_manager.download_and_extract(_URLS) return [ datasets.SplitGenerator(name=datasets.Split.TRAIN, gen_kwargs={"filepath": downloaded_files["train"]}), datasets.SplitGenerator(name=datasets.Split.VALIDATION, gen_kwargs={"filepath": downloaded_files["dev"]}), ] ```
[ -0.10139446705579758, -0.26823168992996216, 0.04813791438937187, 0.29581037163734436, 0.005004478618502617, 0.20304074883460999, 0.3185771405696869, 0.0778241977095604, 0.6256750822067261, 0.16798235476016998, -0.2501530647277832, -0.009564784355461597, -0.08215242624282837, 0.41518399119377136, 0.3813694417476654, 0.07844246923923492, -0.020649880170822144, 0.040011972188949585, 0.18879574537277222, 0.025097385048866272, -0.1375531554222107, 0.38376614451408386, 0.07638230919837952, 0.0077810138463974, -0.493314266204834, 0.21288052201271057, -0.2857843041419983, 0.4582763910293579, 0.0740135908126831, -0.37621840834617615, 0.23549191653728485, 0.43008312582969666, 0.25287795066833496, 0.6403619647026062, -0.00012494513066485524, 0.10981050133705139, 0.15916001796722412, -0.11389053612947464, -0.09569023549556732, -0.20147643983364105, 0.01615632325410843, -0.16189295053482056, 0.13092046976089478, -0.017226897180080414, -0.24241852760314941, 0.04685153439640999, 0.003258228302001953, -0.08022274076938629, 0.3473278284072876, 0.2357400357723236, 0.05634539946913719, 0.27286115288734436, -0.13126038014888763, -0.4435473382472992, 0.01746896654367447, 0.15174618363380432, 0.027456102892756462, 0.4189983010292053, 0.13167914748191833, -0.11144312471151352, -0.16560056805610657, -0.05083264037966728, 0.1466546356678009, -0.2918339967727661, 0.366818368434906, 0.1370621919631958, 0.017830487340688705, -0.22875046730041504, 0.00406242161989212, 0.08729029446840286, 0.24221056699752808, -0.4158917963504791, -0.2001892626285553, -0.577934741973877, 0.16185115277767181, -0.06350294500589371, 0.19722887873649597, 0.05020012706518173, -0.20313191413879395, 0.3374130129814148, -0.23491118848323822, -0.45956945419311523, -0.19675640761852264, -0.06045772135257721, 0.008396923542022705, -0.021249040961265564, -0.01558671984821558, 0.08082712441682816, 0.20302614569664001, 0.14833658933639526, 0.08118461817502975, -0.2024039775133133, -0.07062003016471863, 0.22873088717460632, -0.3177681863307953, -0.051797088235616684, 0.044842638075351715, 0.3959932029247284, 0.08975627273321152, 0.4525459408760071, 0.25056254863739014, 0.11129550635814667, -0.2970137894153595, -0.04618242383003235, 0.36738061904907227, 0.3223729729652405, 0.17336724698543549, 0.09170731157064438, 0.08069545775651932, 0.45793503522872925, 0.10376766324043274, -0.03969554603099823, -0.3316156566143036, -0.2362689971923828, -0.16289597749710083, -0.16231393814086914, 0.20772826671600342, -0.10470083355903625, 0.004119439050555229, 0.0015742024406790733, 0.39404386281967163, 0.029135866090655327, 0.28949519991874695, 0.525585412979126, -0.0274137444794178, 0.047954291105270386, -0.10723378509283066, 0.2523893713951111, -0.29907160997390747, 0.07680115103721619, -0.24051687121391296, 0.12027789652347565, -0.149795264005661, 0.4809417128562927, 0.358384907245636, -0.16961514949798584, 0.21532149612903595, -0.06522290408611298, 0.32857316732406616, -0.11491542309522629, -0.4599311351776123, 0.10858465731143951, -0.06447402387857437, 0.22364483773708344, 0.3786463141441345, 0.18020862340927124, 0.007936295121908188, -0.21899521350860596, -0.253978431224823, 0.021460101008415222, -0.05449800193309784, -0.4728635251522064, 0.18478815257549286, 0.005088106729090214, -0.7560704350471497, -0.06290699541568756, -0.2755764126777649, 0.10903449356555939, -0.2921159267425537, -0.07449562847614288, -0.10074103623628616, 0.18187837302684784, -0.05998848006129265, -0.14316131174564362, 0.4176402986049652, 0.8053808212280273, -0.20348644256591797, -0.2937725782394409, -0.004249383695423603, -0.33071914315223694, -0.21631622314453125, 0.097227543592453, -0.15068607032299042, 0.36029553413391113, -0.3286341726779938, 0.054626598954200745, 0.04922129213809967, -0.5215252041816711, -0.3752058148384094, 0.22025464475154877, -0.33539247512817383, 0.37141838669776917, 0.10962976515293121, 0.19602715969085693, -0.11235865205526352, -0.07037864625453949, -0.04256775230169296, 0.14277781546115875, -0.036684468388557434, -0.13539335131645203, 0.06452679634094238, -0.10797858238220215, -0.1532406359910965, 0.38924458622932434, 0.02707616612315178, 0.2135210484266281, -0.0074449703097343445, -0.1093636304140091, 0.30004093050956726, 0.05947126820683479, 0.012236792594194412, 0.12024100124835968, 0.1604834496974945, 0.26352643966674805, 0.02728070691227913, 0.08682191371917725, -0.7402227520942688, 0.4633336365222931, -0.1300239861011505, -0.045016102492809296, 0.01041390746831894, -0.026213793084025383, -0.5219832062721252, -0.08740586787462234, -0.2716310918331146, -0.12167561054229736, -0.11001955717802048, 0.0981338620185852, 0.11236679553985596, -0.14162872731685638, -0.3877282440662384, 0.7349782586097717, -0.06269656866788864, 0.20879177749156952, -0.7360535264015198, 0.41573479771614075, 0.14268825948238373, -0.08498011529445648, 0.08584128320217133, 0.17107811570167542, 0.2040465772151947, -0.10989914834499359, 0.10439779609441757, 0.4523716866970062, 0.22774842381477356, 0.5190569162368774, 0.2757502496242523, -0.01801621913909912, 0.2021624594926834, -0.1637684851884842, 0.1592124104499817, -0.28980517387390137, -0.03022659942507744, -0.08126819133758545, -0.30997729301452637, 0.3510701656341553, -0.5239571332931519, 0.22366395592689514, 0.06523500382900238, -0.10928976535797119, 0.08089951425790787, -0.08868145942687988, -0.3720908761024475, -0.24826213717460632, -0.034880977123975754, 0.09811785817146301, 0.20396149158477783, -0.061064206063747406, -0.06364317983388901, -0.06301169842481613, 0.019812963902950287, -0.06439897418022156, -0.13825073838233948, 0.0250936858355999, -0.12556782364845276, 0.15865862369537354, -0.05312790721654892, 0.1343681365251541, 0.33202582597732544, 0.03887128829956055, -0.14073076844215393, 0.4559985101222992, 0.11192077398300171, -0.3129824101924896, 0.018902890384197235, 0.02080310881137848, 0.13602028787136078, 0.25097373127937317, -0.2676664888858795, -0.08996927738189697, -0.153970867395401, -0.20015360414981842, -0.0408269464969635, 0.0058500682935118675, -0.4867649972438812, -0.17517882585525513, -0.05552022159099579, -0.019787050783634186, -0.33363449573516846, -0.4218893349170685, -0.17550739645957947, -0.13959242403507233, -0.04129145294427872, 0.20825326442718506, 0.01944216713309288, -0.028302708640694618, -0.0407073050737381, 0.44927680492401123, -0.23285622894763947, -0.18394513428211212, -0.11396327614784241, -0.1410127431154251, 0.01063954271376133, -0.09160956740379333, 0.09074549376964569, 0.3076320290565491, 0.08640658855438232, -0.33283355832099915, 0.12780921161174774, -0.16104814410209656, 0.03938647359609604, 0.163168802857399, -0.055835746228694916, 0.22116820514202118, 0.1213875263929367, 0.13393503427505493, 0.14617295563220978, -0.1343851089477539, 0.25327757000923157, -0.31920745968818665, -0.000472385436296463, -0.14169414341449738, 0.12332749366760254, -0.09063136577606201, -0.030118539929389954, -0.2680339813232422, -0.15938809514045715, -0.31831035017967224, 0.2426222413778305, 0.28997430205345154, 0.02650308609008789, 0.1644316017627716, 0.07380898296833038, 0.11799506098031998, -0.054422300308942795, -0.2988058030605316, -0.1095833033323288, -0.4293089210987091, 0.36346176266670227, -0.2794691026210785, -0.2455606609582901, 0.23537802696228027, 0.015781220048666, 0.20059674978256226, -0.21984775364398956, -0.43271708488464355, -0.22535313665866852, -0.02512393705546856, 0.08101786673069, 0.1960664838552475, 0.013775701634585857, 0.1373702585697174, -0.13304708898067474, 0.1859571933746338, -0.13632571697235107, -0.42648744583129883, 0.11309265345335007, 0.178756445646286, -0.057822905480861664, 0.04646293818950653, -0.0031345337629318237, -0.41860800981521606, 0.3957620859146118, 0.44645553827285767, 0.09685797989368439, 0.22800320386886597, -0.25699037313461304, 0.5039865374565125, -0.15416839718818665, -0.3445742428302765, -0.4087289869785309, 0.07336645573377609, -0.12146458774805069, 0.43650519847869873, 0.10655060410499573, 0.39508458971977234, -0.38100847601890564, -0.1810249537229538, -0.144469752907753, -0.3149730861186981, 0.13436749577522278, -0.08773793280124664, -0.0015414506196975708, -0.10413582623004913, 0.161873459815979, -0.19110088050365448, -0.07917778193950653, 0.2621854245662689, 0.3678862452507019, 0.3262763023376465, 0.021578950807452202, -0.367818146944046, -0.11847744882106781, -0.478066086769104, 0.16126985847949982, -0.19600901007652283, -0.0841715857386589, -0.03173002228140831, -0.09343969821929932, 0.03355851024389267, 0.1016530990600586, 0.7479448914527893, -0.24642352759838104, -0.061391301453113556, 0.12279675900936127, -0.37057971954345703, -0.4211432635784149, -0.004763040691614151, 0.02901296690106392, 0.07444291561841965, -0.23539488017559052, 0.6891146302223206, -0.14081385731697083, -0.20116615295410156, 0.09028074890375137, 0.01959046721458435, -0.2905499339103699, -0.4703494608402252, -0.10261011123657227, -0.09113767743110657, -0.23337334394454956, -0.17349791526794434, -0.15136569738388062, 0.18674126267433167, -0.2815554440021515, 0.04836190864443779, 0.21048490703105927, 0.08332083374261856, 0.19198760390281677, 0.3032792806625366, 0.3076644837856293, 0.18570640683174133, 0.2591587007045746, 0.6313153505325317, 0.035148993134498596, 0.18242992460727692, 0.8878269791603088, -0.04062245413661003, -0.5015829205513, 0.10599955916404724, 0.006390108726918697, 0.25580257177352905, 0.7186601161956787, 0.12916313111782074, -0.08640161901712418, 0.14020419120788574, -0.0013889297842979431, -0.44069138169288635, 0.19706350564956665, -0.055224619805812836, -0.13609902560710907, -0.19250130653381348, -0.5582786202430725, 0.5165560841560364, 0.006284629926085472, -0.15054751932621002, 0.003797195851802826, 0.26543229818344116, -0.27739614248275757, 0.18182271718978882, -0.38628438115119934, 0.9579256772994995, -0.11795756220817566, 0.062400758266448975, 0.3447212278842926, -0.14341111481189728, 0.13311269879341125, -0.20423366129398346, -0.03458709269762039, -0.44058388471603394, -0.059190914034843445, 0.015673572197556496, -0.009313046932220459, 0.21993830800056458, 0.2521749436855316, -0.056045323610305786, 0.37825965881347656, -0.10776815563440323, 0.3122621178627014, -0.11054069548845291, 0.3601827919483185, -0.28118640184402466, -0.4501950740814209, -0.4214552044868469, -0.02739095687866211, 0.1428728699684143, 0.4941030740737915, -0.0628606528043747, -0.050256334245204926, -0.3140293061733246, -0.03485804796218872, -0.084178127348423, 0.14980703592300415, 0.07040128111839294, -0.29550111293792725, 0.06214643269777298, -0.15119785070419312, 0.13890808820724487, 0.5656530857086182, 0.3977659344673157, -0.04580948129296303, -0.3708164691925049, 0.35059458017349243, -0.2631506025791168, -0.12985558807849884, -0.1467566043138504, -0.04956585541367531, 0.14045652747154236, -0.03549492359161377, -0.4672131836414337, 0.04372168332338333, 0.03168739005923271, -0.11722136288881302, -0.14815889298915863, -0.03058537095785141, 0.3048701286315918, -0.46225857734680176, -0.2475632131099701, -0.03639499098062515, 0.11831711232662201, -0.059902481734752655, 0.0005656760185956955, 0.10685314238071442, -0.1382019966840744, -0.005460433661937714, 0.05474783852696419, -0.1614900380373001, -0.11653901636600494, 0.2841566801071167, -0.1879047155380249, -0.4094682037830353, 0.3182847499847412, 0.19602426886558533, 0.15719933807849884, -0.1500556766986847, -0.07527830451726913, 0.7526445984840393, -0.5689376592636108, 0.017602665349841118, 0.14108921587467194, -0.041971951723098755, 0.1584499627351761, 0.09336714446544647, 0.2823258638381958, -0.17995193600654602, 0.035433705896139145, -0.26291120052337646, -0.23013117909431458, 0.2650638222694397, 0.2975102365016937, 0.33779895305633545, 0.08829691261053085, -0.03666706755757332, -0.09327872097492218, 0.11675764620304108, -0.18277236819267273, 0.06908976286649704, -0.01971861906349659, -0.05773235857486725, -0.12160687148571014, 0.029852217063307762, 0.13090918958187103, -0.21951493620872498, -0.04240266606211662, -0.1374201625585556, -0.2548629343509674, -0.014804382808506489, -0.10433156788349152, 0.2167137861251831, -0.07507434487342834, -0.014491112902760506, -0.19142581522464752, 0.05768560618162155, -0.004053259268403053, -0.35682156682014465, 0.5437566041946411, 0.3447611629962921, 0.06671091914176941, -0.0711173415184021, 0.4214605689048767, 0.008635468780994415, -0.37471598386764526, 0.11402106285095215, 0.07860669493675232, 0.3580070734024048, 0.21137969195842743, -0.04146869480609894, -0.3891545534133911, 0.046237364411354065, 0.33138158917427063, 0.3472360074520111, 0.6271300911903381, 0.24871867895126343, 0.22985908389091492, -0.04183100163936615, 0.16408325731754303, 0.05553442984819412, 0.3517377972602844, 0.27545517683029175, -0.23660990595817566, 0.0655604749917984, 0.07056285440921783, 0.006298324093222618, -0.17754554748535156, 0.05553232133388519, 0.48176994919776917, -0.1988449990749359, 0.00740215927362442, 0.508399248123169, 0.3268384635448456, 0.16651904582977295, -0.24603010714054108, 0.12471046298742294, 0.6454759240150452, 0.2671377658843994, 0.2160116583108902, 0.3729611933231354, -0.16521769762039185, 0.1306723803281784, 0.17285434901714325, 0.23247064650058746, 0.04506788030266762, 0.4007982015609741, -0.30691683292388916, 0.2258135974407196, -0.200227290391922, 0.29702138900756836, 0.2677375376224518, -0.6404858231544495, -0.15927307307720184, 0.010170578956604004, -0.10613366961479187, -0.11112011224031448, -0.2171541452407837, 0.5575734376907349, -0.2523978352546692, 0.24837802350521088, -0.305347204208374, 0.09894402325153351, 0.0936591625213623, -0.09316049516201019, -0.046606868505477905, -0.1776515245437622, -0.23893912136554718, 0.00650632381439209, 0.06034832075238228, -0.41964977979660034, 0.002664141356945038, -0.08476391434669495, -0.1872515231370926, 0.07250469923019409, 0.0523635670542717, -0.02693009376525879, 0.1253909468650818, -0.08856475353240967, 0.13244034349918365, 0.11954668164253235, -0.07411649823188782, 0.4741601049900055, 0.0011551827192306519, 0.26554498076438904, 0.032162200659513474, 0.1274031549692154, 0.3342318832874298, 0.21570897102355957, -0.004853053018450737, 0.07255178689956665, 0.0915408730506897, -0.09956414997577667, 0.09925274550914764, 0.06188400462269783, 0.09579798579216003, -0.04765094816684723, -0.12172575294971466, 0.13578514754772186, 0.25392043590545654, -0.21409502625465393, 0.6207363605499268, -0.21806153655052185, -0.017720617353916168, -0.2734692394733429, 0.1418076604604721, -0.2218838334083557, -0.19323104619979858, 0.24281011521816254, 0.023160405457019806, 0.02534506842494011, 0.05212099850177765, -0.009573308750987053, 0.06788107752799988, 0.5452637672424316, 0.24356423318386078, 0.016542691737413406, -0.2760341167449951, -0.28914743661880493, -0.6023464202880859, 0.09774018824100494, 0.2739217281341553, -0.17863227427005768, 0.12692570686340332, 0.02721918188035488, -0.05802767723798752, -0.017853818833827972, -0.04763725399971008, -0.024303605780005455, 0.024641912430524826, 0.05870368704199791, -0.1333845853805542, -0.07987186312675476, -0.19224144518375397, 0.23020713031291962, 0.021409519016742706, 0.038857825100421906, -0.016576793044805527, 0.09010205417871475, -0.22889450192451477, 0.2377687394618988, 0.11361116170883179, 0.0937466025352478, -0.32303762435913086, 0.39875805377960205, -0.32346898317337036, 0.49062415957450867, 0.060318104922771454, -0.010110477916896343, -0.4316585958003998, -0.25335073471069336, -0.1655895709991455, 0.1801372468471527, -0.04490401968359947, 0.20941807329654694, -0.1844135969877243, -0.14724577963352203, -0.18685384094715118, -0.06095951423048973, 0.21621005237102509, 0.03184563294053078, -0.05845451354980469, 0.023107832297682762, -0.26529210805892944, 0.16677531599998474, 0.42852306365966797, 0.2393733561038971, -0.12038390338420868, 0.15107843279838562, -0.04196145758032799, -0.07676760107278824, 0.6778791546821594, -0.022114519029855728, -0.13529686629772186, -0.14337316155433655, 0.18892651796340942, -0.18434986472129822, -0.2607288658618927, -0.49510490894317627, 0.23434549570083618, 0.04850345104932785, -0.030014827847480774, -0.06279859691858292, 0.26170584559440613, -0.11112476885318756, -0.17176994681358337, 0.03548377379775047, 0.013905614614486694, 0.25821444392204285, -0.04998987913131714, -0.16088929772377014, -0.1266321837902069 ]
https://github.com/huggingface/datasets/issues/3300
❓ Dataset loading script from Hugging Face Hub
Also I think the viewer will be updated when you fix the dataset script, let me know if it doesn't
Hi there, I am trying to add my custom `ag_news` with its own loading script on the Hugging Face datasets hub. In particular, I would like to test the addition of a second configuration to the existing `ag_news` dataset. Once it works in my hub, I plan to make a PR to the original dataset. However, in trying to do so I have encountered certain problems as detailed below. Issues I have encountered: - Without a loading script, the train and test files are loaded together into a unique `dataset.Dataset` -> so I wrote a loading script. Also, I need a loading script otherwise I cannot specify multiple configurations - Once my loading script is working locally, I do not manage to make it work on the hub. In particular, I would like to be able to load the dataset like this ```python load_dataset("pietrolesci/ag_news", name="my_configuration") ``` Apparently, the `load_dataset` is able to pick up the loading script from the hub and run it. However, it errors because it is unable to find the files. The structure of my hub repo is the following ``` ag_news.py train.csv test.csv ``` and the loading script I specify `data_dir=Path(__file__).parent` and `data_files=DataFilesDict({"train": "train.csv", "test": "test.csv"})`. In the documentation I could not find info regarding loading a dataset from the hub using a loading script present on the hub. Any suggestion is very much appreciated. Best, Pietro Link to the hub repo: https://huggingface.co/datasets/pietrolesci/ag_news BONUS: how can I make the data viewer work in this specific case? :)
20
❓ Dataset loading script from Hugging Face Hub Hi there, I am trying to add my custom `ag_news` with its own loading script on the Hugging Face datasets hub. In particular, I would like to test the addition of a second configuration to the existing `ag_news` dataset. Once it works in my hub, I plan to make a PR to the original dataset. However, in trying to do so I have encountered certain problems as detailed below. Issues I have encountered: - Without a loading script, the train and test files are loaded together into a unique `dataset.Dataset` -> so I wrote a loading script. Also, I need a loading script otherwise I cannot specify multiple configurations - Once my loading script is working locally, I do not manage to make it work on the hub. In particular, I would like to be able to load the dataset like this ```python load_dataset("pietrolesci/ag_news", name="my_configuration") ``` Apparently, the `load_dataset` is able to pick up the loading script from the hub and run it. However, it errors because it is unable to find the files. The structure of my hub repo is the following ``` ag_news.py train.csv test.csv ``` and the loading script I specify `data_dir=Path(__file__).parent` and `data_files=DataFilesDict({"train": "train.csv", "test": "test.csv"})`. In the documentation I could not find info regarding loading a dataset from the hub using a loading script present on the hub. Any suggestion is very much appreciated. Best, Pietro Link to the hub repo: https://huggingface.co/datasets/pietrolesci/ag_news BONUS: how can I make the data viewer work in this specific case? :) Also I think the viewer will be updated when you fix the dataset script, let me know if it doesn't
[ -0.06348805129528046, -0.37727317214012146, 0.030289921909570694, 0.28855085372924805, -0.002749938517808914, 0.20526650547981262, 0.29307669401168823, 0.0706356018781662, 0.654508650302887, 0.17458391189575195, -0.19520686566829681, -0.023192161694169044, -0.11694175750017166, 0.46149036288261414, 0.4217410087585449, 0.08414966613054276, -0.01836790144443512, 0.03015667200088501, 0.2063620537519455, 0.025605008006095886, -0.094902902841568, 0.3189067840576172, 0.09826424717903137, 0.010199479758739471, -0.4916895031929016, 0.2164013385772705, -0.2538006007671356, 0.4680262804031372, 0.0915842354297638, -0.38886287808418274, 0.28487274050712585, 0.44267645478248596, 0.27785634994506836, 0.6220703125, -0.00012431810318958014, 0.09213100373744965, 0.1869228631258011, -0.12208650261163712, -0.06703002750873566, -0.22397513687610626, 0.07191930711269379, -0.13274505734443665, 0.15204624831676483, -0.007820263504981995, -0.23238682746887207, 0.07764093577861786, 0.01022815890610218, -0.07012424618005753, 0.30364352464675903, 0.1806214451789856, 0.07120582461357117, 0.3437494933605194, -0.13973572850227356, -0.40887778997421265, 0.0026398450136184692, 0.19099503755569458, 0.0639999583363533, 0.4242285192012787, 0.21788237988948822, -0.12221810966730118, -0.12818217277526855, -0.08935517072677612, 0.14439226686954498, -0.28406569361686707, 0.3795880675315857, 0.09911124408245087, -0.011255644261837006, -0.2207649052143097, 0.025266772136092186, 0.10041551291942596, 0.3430025279521942, -0.41572171449661255, -0.19257664680480957, -0.5402810573577881, 0.1783430129289627, -0.03293364495038986, 0.20799928903579712, 0.05237022787332535, -0.2075156271457672, 0.2962009906768799, -0.17193837463855743, -0.4468429386615753, -0.18188750743865967, -0.11553116142749786, 0.024795599281787872, -0.07620713114738464, 0.005518751684576273, 0.06938713043928146, 0.12126412987709045, 0.097435861825943, 0.17443490028381348, -0.14786261320114136, -0.037643712013959885, 0.22829197347164154, -0.30139485001564026, -0.039712414145469666, 0.05372709408402443, 0.49540477991104126, 0.06439082324504852, 0.421944797039032, 0.26924583315849304, 0.15028245747089386, -0.33388030529022217, -0.03973454236984253, 0.3133464753627777, 0.303646057844162, 0.18936240673065186, 0.04126603528857231, 0.04649035632610321, 0.4572283625602722, 0.11171114444732666, -0.02542421966791153, -0.35054832696914673, -0.2144147753715515, -0.15198089182376862, -0.19869288802146912, 0.20200051367282867, -0.09808048605918884, -0.02057059109210968, -0.008205943740904331, 0.46915602684020996, 0.033341534435749054, 0.30016329884529114, 0.5586068630218506, -0.046164620667696, 0.03472822159528732, -0.07210041582584381, 0.18881499767303467, -0.2701542377471924, 0.0825679823756218, -0.24185223877429962, 0.17055924236774445, -0.12454599142074585, 0.4425353407859802, 0.33787575364112854, -0.20229773223400116, 0.2523196339607239, -0.07374738156795502, 0.3210632801055908, -0.053200770169496536, -0.4667956829071045, 0.14557793736457825, -0.061424143612384796, 0.19146667420864105, 0.36312445998191833, 0.1660248339176178, 0.0002670884132385254, -0.15994122624397278, -0.22525900602340698, 0.03273491561412811, -0.10177242010831833, -0.4341975152492523, 0.14737150073051453, 0.004619554616510868, -0.7663033604621887, -0.09789064526557922, -0.2535998225212097, 0.045439641922712326, -0.3100186884403229, -0.1255212128162384, -0.0716833546757698, 0.16481158137321472, -0.07358431816101074, -0.13087129592895508, 0.4007674753665924, 0.8195942640304565, -0.19890691339969635, -0.305306613445282, 0.07703953981399536, -0.3290049433708191, -0.25267162919044495, 0.06330354511737823, -0.15152782201766968, 0.35716715455055237, -0.3418973684310913, -0.03176693990826607, 0.041188277304172516, -0.5792853236198425, -0.3932940661907196, 0.17916956543922424, -0.3595697283744812, 0.3707675635814667, 0.14888358116149902, 0.22676879167556763, -0.15800277888774872, -0.0830628052353859, 0.03679897263646126, 0.09478791803121567, -0.01911311410367489, -0.16119633615016937, 0.05097588524222374, -0.092945896089077, -0.14479656517505646, 0.3905804455280304, 0.03097471594810486, 0.18049979209899902, -0.022139795124530792, -0.09220363944768906, 0.3019472062587738, 0.06386873126029968, 0.01914496161043644, 0.12047657370567322, 0.12609773874282837, 0.27871835231781006, 0.027643300592899323, 0.0635908767580986, -0.6943581104278564, 0.47521379590034485, -0.13127249479293823, -0.07210342586040497, -0.010408014059066772, -0.02393549308180809, -0.4720480144023895, -0.07237319648265839, -0.26853469014167786, -0.08950324356555939, -0.10091397166252136, 0.09415629506111145, 0.08941933512687683, -0.14124438166618347, -0.43165257573127747, 0.7119865417480469, -0.05583386868238449, 0.17536701261997223, -0.7479510307312012, 0.41273289918899536, 0.19255946576595306, -0.07209312915802002, 0.067919060587883, 0.18056228756904602, 0.19344982504844666, -0.08333713561296463, 0.14662796258926392, 0.4092905521392822, 0.1762472242116928, 0.5500427484512329, 0.300631582736969, -0.0429307222366333, 0.19788137078285217, -0.1684962511062622, 0.13119231164455414, -0.2865816056728363, -0.011425256729125977, -0.07351131737232208, -0.2876136004924774, 0.320820689201355, -0.5872902274131775, 0.20759032666683197, 0.07373571395874023, -0.1250956952571869, 0.04865655303001404, -0.03222501277923584, -0.3750937879085541, -0.22432367503643036, 0.05274656042456627, 0.1509455442428589, 0.236430361866951, -0.0944446325302124, -0.0894027054309845, -0.06008387356996536, -0.008078012615442276, -0.04583192616701126, -0.10979411751031876, 0.03562292456626892, -0.11409466713666916, 0.1695190966129303, -0.04204615205526352, 0.06653577089309692, 0.30688774585723877, 0.04687357693910599, -0.16970351338386536, 0.4388952851295471, 0.1204446479678154, -0.30034181475639343, -0.04040493816137314, -0.007982484996318817, 0.04539782553911209, 0.23468634486198425, -0.24019207060337067, -0.07685549557209015, -0.15973226726055145, -0.22624850273132324, -0.053104400634765625, -0.00999429076910019, -0.5045404434204102, -0.20965583622455597, -0.08757764846086502, 0.012345243245363235, -0.31783798336982727, -0.43044114112854004, -0.1916944831609726, -0.13268929719924927, -0.054313138127326965, 0.21894702315330505, 0.07044649124145508, -0.07870171219110489, -0.006137441843748093, 0.4126408100128174, -0.22569362819194794, -0.2235035002231598, -0.12428591400384903, -0.1938890814781189, 0.0553075335919857, -0.08587519824504852, 0.061798058450222015, 0.3034159541130066, 0.1130881980061531, -0.3997175097465515, 0.12748433649539948, -0.17442657053470612, 0.024055108428001404, 0.14843308925628662, -0.020871687680482864, 0.20206399261951447, 0.14027640223503113, 0.16027912497520447, 0.13502387702465057, -0.08540704101324081, 0.23351246118545532, -0.3254774808883667, 0.0007384754717350006, -0.1702025979757309, 0.10538793355226517, -0.06826915591955185, 0.0026921480894088745, -0.1798509955406189, -0.18818700313568115, -0.312784880399704, 0.2825603783130646, 0.3066028654575348, 0.030338315293192863, 0.08161842077970505, 0.031133096665143967, 0.11284743249416351, -0.09630769491195679, -0.25688639283180237, -0.11910675466060638, -0.5198364853858948, 0.32491979002952576, -0.27082887291908264, -0.2799210846424103, 0.2453790009021759, 0.05564272403717041, 0.24221988022327423, -0.24073559045791626, -0.4060016870498657, -0.2729050815105438, 0.0025110263377428055, 0.13381582498550415, 0.17424826323986053, 0.07512382417917252, 0.15467213094234467, -0.1173354834318161, 0.18259277939796448, -0.1169709786772728, -0.4272061884403229, 0.05857813358306885, 0.18188488483428955, -0.04359547048807144, 0.0726146250963211, -0.014871485531330109, -0.42184874415397644, 0.3145144581794739, 0.3909507691860199, 0.07886561006307602, 0.26962995529174805, -0.2685645520687103, 0.527317225933075, -0.169000506401062, -0.3203880488872528, -0.42330825328826904, 0.07488556951284409, -0.12838348746299744, 0.4016593098640442, 0.09276002645492554, 0.47193917632102966, -0.41772451996803284, -0.2807236611843109, -0.14135512709617615, -0.2681583762168884, 0.10856270045042038, -0.08622947335243225, -0.018459320068359375, -0.10695447027683258, 0.121602363884449, -0.23514589667320251, -0.09514277428388596, 0.30404865741729736, 0.3514190912246704, 0.3731437623500824, 0.01767214573919773, -0.37617027759552, -0.14673763513565063, -0.5114630460739136, 0.1643308848142624, -0.17785973846912384, -0.06633925437927246, -0.060570649802684784, -0.05213022232055664, 0.02518215775489807, 0.08050905168056488, 0.7111002802848816, -0.21126772463321686, 0.0010562166571617126, 0.0687633603811264, -0.3958452045917511, -0.5226078629493713, 0.011612489819526672, 0.04417586699128151, 0.0894346535205841, -0.3029286563396454, 0.6827746033668518, -0.09165316820144653, -0.16472135484218597, 0.020911190658807755, 0.03508486598730087, -0.29587045311927795, -0.5348506569862366, -0.135231614112854, -0.1056581512093544, -0.23508082330226898, -0.16662472486495972, -0.17231208086013794, 0.1756177693605423, -0.21654441952705383, 0.05721062049269676, 0.19245709478855133, 0.08359188586473465, 0.1961228996515274, 0.2667804956436157, 0.28546467423439026, 0.1902223378419876, 0.2502407431602478, 0.634627103805542, 0.02900378592312336, 0.19405685365200043, 0.8947121500968933, -0.02173631638288498, -0.42983412742614746, 0.08543381094932556, 0.03742118924856186, 0.23446278274059296, 0.6932317018508911, 0.13285332918167114, -0.021960116922855377, 0.10403109341859818, -0.004713855683803558, -0.48352256417274475, 0.14669544994831085, -0.08350833505392075, -0.0977594330906868, -0.21543961763381958, -0.5252900123596191, 0.5303319692611694, -0.009166193194687366, -0.1255391240119934, 0.002704732120037079, 0.2572776973247528, -0.2699264585971832, 0.17547789216041565, -0.33974045515060425, 0.9136040210723877, -0.11399495601654053, 0.09739727526903152, 0.31250929832458496, -0.13142450153827667, 0.17018437385559082, -0.18149283528327942, -0.08062298595905304, -0.43407467007637024, -0.1162920743227005, 0.0051400382071733475, 0.02016809955239296, 0.21153411269187927, 0.17088305950164795, -0.01124163344502449, 0.3993956744670868, -0.1211826354265213, 0.3213506042957306, -0.07150552421808243, 0.34114283323287964, -0.297626256942749, -0.4208853542804718, -0.4459136128425598, -0.0328885018825531, 0.13739240169525146, 0.4917702376842499, -0.11094849556684494, -0.023674841970205307, -0.2736991345882416, -0.06636268645524979, -0.08599122613668442, 0.09532714635133743, 0.07852686941623688, -0.3338255286216736, 0.04515617713332176, -0.11765526235103607, 0.1567954570055008, 0.5612671375274658, 0.4323338270187378, -0.03974933549761772, -0.39761683344841003, 0.36225587129592896, -0.2094007134437561, -0.18182101845741272, -0.16356059908866882, -0.018591899424791336, 0.14430734515190125, -0.041968487203121185, -0.4659315347671509, 0.08649013191461563, 0.07364977896213531, -0.09019263088703156, -0.18981975317001343, -0.011827871203422546, 0.20318603515625, -0.4174215495586395, -0.3065142035484314, -0.07592292129993439, 0.14145126938819885, -0.047988370060920715, 0.005085586570203304, 0.13313183188438416, -0.14342594146728516, -0.013670437037944794, 0.09058720618486404, -0.14862589538097382, -0.11744122207164764, 0.36840829253196716, -0.19592693448066711, -0.444283127784729, 0.3117114305496216, 0.19962073862552643, 0.16776898503303528, -0.1252579391002655, -0.0815010592341423, 0.7863450646400452, -0.5271461606025696, -0.010685768909752369, 0.183033749461174, -0.007693499326705933, 0.1201145350933075, 0.09698611497879028, 0.29577839374542236, -0.17138156294822693, 0.04611210897564888, -0.2631968855857849, -0.27142465114593506, 0.28661251068115234, 0.3361230790615082, 0.3182145059108734, 0.12022694200277328, -0.03839745745062828, -0.05543094128370285, 0.11976958066225052, -0.1883336305618286, 0.08519855886697769, 0.014242397621273994, -0.0703887790441513, -0.09753371775150299, 0.05621990188956261, 0.1272660791873932, -0.19407740235328674, -0.022176923230290413, -0.09022389352321625, -0.23606479167938232, -0.02772819809615612, -0.0884341299533844, 0.21599134802818298, -0.09303439408540726, 0.04317642003297806, -0.18670137226581573, 0.027317605912685394, 0.023954065516591072, -0.33727312088012695, 0.510001540184021, 0.38311028480529785, 0.04840985685586929, -0.04958239570260048, 0.4397953152656555, 0.01345614343881607, -0.40973663330078125, 0.15395984053611755, 0.11353892832994461, 0.32802125811576843, 0.18340393900871277, -0.06148969382047653, -0.3989156186580658, 0.06774607300758362, 0.3151131272315979, 0.3482514023780823, 0.5724384188652039, 0.25156137347221375, 0.17940948903560638, -0.04997482895851135, 0.1829252392053604, 0.030645275488495827, 0.35377630591392517, 0.2535025477409363, -0.24347609281539917, 0.06855886429548264, 0.059626273810863495, 0.011933266185224056, -0.18986521661281586, 0.03627167269587517, 0.4345337152481079, -0.17043311893939972, -0.0001330263912677765, 0.4920394718647003, 0.3487391471862793, 0.11782604455947876, -0.23932082951068878, 0.12466897815465927, 0.6201638579368591, 0.18065904080867767, 0.16828513145446777, 0.33457985520362854, -0.1414884775876999, 0.09656327962875366, 0.1638771891593933, 0.2595759332180023, 0.034402526915073395, 0.4128284454345703, -0.2809064984321594, 0.216571643948555, -0.17668718099594116, 0.28485387563705444, 0.226864755153656, -0.6314474940299988, -0.10437646508216858, -0.0004922151565551758, -0.04629035294055939, -0.11232025176286697, -0.24717268347740173, 0.5130730271339417, -0.22493061423301697, 0.2788330912590027, -0.2969159781932831, 0.08874240517616272, 0.06842277944087982, -0.14787238836288452, -0.03861744701862335, -0.21185395121574402, -0.19596576690673828, 0.01976792886853218, 0.056467246264219284, -0.38699769973754883, -0.05443808436393738, -0.06523948907852173, -0.1804857701063156, 0.09806745499372482, -0.008129660040140152, 0.02994203194975853, 0.11273837089538574, -0.07023736089468002, 0.12187420576810837, 0.14513716101646423, -0.08502067625522614, 0.5155143737792969, -0.018160926178097725, 0.28465843200683594, 0.04387485608458519, 0.11611546576023102, 0.35562610626220703, 0.1547052413225174, 0.012870954349637032, 0.06053462624549866, 0.08850070089101791, -0.07392679154872894, 0.14596515893936157, 0.06014317646622658, 0.1166425496339798, -0.05830095708370209, -0.08971317112445831, 0.10955242067575455, 0.279286652803421, -0.2496885061264038, 0.578223705291748, -0.2088272124528885, -0.015784699469804764, -0.28413885831832886, 0.18088635802268982, -0.2535475492477417, -0.1923651397228241, 0.23932623863220215, 0.06304915994405746, 0.011375723406672478, 0.07184755057096481, -0.006507271900773048, 0.02064020186662674, 0.5731443166732788, 0.2706480622291565, 0.022576235234737396, -0.22199970483779907, -0.25481700897216797, -0.5980223417282104, 0.10950446873903275, 0.3090245723724365, -0.20468033850193024, 0.15634433925151825, -0.006881809793412685, -0.08195962756872177, -0.056260161101818085, -0.020598530769348145, -0.042398083955049515, 0.035409193485975266, 0.040061771869659424, -0.07998796552419662, -0.09281212091445923, -0.17356175184249878, 0.24331128597259521, 0.027367092669010162, 0.041760966181755066, -0.008494947105646133, 0.03782030567526817, -0.20913824439048767, 0.18045751750469208, 0.11623086035251617, 0.06926040351390839, -0.35495325922966003, 0.43792209029197693, -0.36298006772994995, 0.5256333947181702, 0.051061369478702545, -0.004422824829816818, -0.43119069933891296, -0.254271000623703, -0.13674171268939972, 0.20093798637390137, -0.025661110877990723, 0.2014593929052353, -0.173390731215477, -0.1834728866815567, -0.17117074131965637, -0.020936885848641396, 0.1794636845588684, 0.01913301832973957, -0.06296727806329727, -0.019389908760786057, -0.22966787219047546, 0.137978196144104, 0.38133081793785095, 0.26807403564453125, -0.10983650386333466, 0.1502825766801834, -0.03850236162543297, -0.09318358451128006, 0.6830951571464539, -0.06964586675167084, -0.11009995639324188, -0.11546322703361511, 0.19072064757347107, -0.20680618286132812, -0.274668425321579, -0.5116335153579712, 0.2922636568546295, 0.0562686063349247, -0.00033799372613430023, -0.03847423195838928, 0.2561379075050354, -0.16286848485469818, -0.11469392478466034, 0.02893022820353508, 0.0009406581521034241, 0.224668949842453, -0.038871124386787415, -0.21401534974575043, -0.12772232294082642 ]
https://github.com/huggingface/datasets/issues/3300
❓ Dataset loading script from Hugging Face Hub
Hi @lhoestq, Thanks a lot for the super quick answer! Your suggestion solves my issue. I am now able to load the dataset properly 🚀 However, the dataviewer is not working yet. Really, thanks a lot for your help and consideration! Best, Pietro
Hi there, I am trying to add my custom `ag_news` with its own loading script on the Hugging Face datasets hub. In particular, I would like to test the addition of a second configuration to the existing `ag_news` dataset. Once it works in my hub, I plan to make a PR to the original dataset. However, in trying to do so I have encountered certain problems as detailed below. Issues I have encountered: - Without a loading script, the train and test files are loaded together into a unique `dataset.Dataset` -> so I wrote a loading script. Also, I need a loading script otherwise I cannot specify multiple configurations - Once my loading script is working locally, I do not manage to make it work on the hub. In particular, I would like to be able to load the dataset like this ```python load_dataset("pietrolesci/ag_news", name="my_configuration") ``` Apparently, the `load_dataset` is able to pick up the loading script from the hub and run it. However, it errors because it is unable to find the files. The structure of my hub repo is the following ``` ag_news.py train.csv test.csv ``` and the loading script I specify `data_dir=Path(__file__).parent` and `data_files=DataFilesDict({"train": "train.csv", "test": "test.csv"})`. In the documentation I could not find info regarding loading a dataset from the hub using a loading script present on the hub. Any suggestion is very much appreciated. Best, Pietro Link to the hub repo: https://huggingface.co/datasets/pietrolesci/ag_news BONUS: how can I make the data viewer work in this specific case? :)
43
❓ Dataset loading script from Hugging Face Hub Hi there, I am trying to add my custom `ag_news` with its own loading script on the Hugging Face datasets hub. In particular, I would like to test the addition of a second configuration to the existing `ag_news` dataset. Once it works in my hub, I plan to make a PR to the original dataset. However, in trying to do so I have encountered certain problems as detailed below. Issues I have encountered: - Without a loading script, the train and test files are loaded together into a unique `dataset.Dataset` -> so I wrote a loading script. Also, I need a loading script otherwise I cannot specify multiple configurations - Once my loading script is working locally, I do not manage to make it work on the hub. In particular, I would like to be able to load the dataset like this ```python load_dataset("pietrolesci/ag_news", name="my_configuration") ``` Apparently, the `load_dataset` is able to pick up the loading script from the hub and run it. However, it errors because it is unable to find the files. The structure of my hub repo is the following ``` ag_news.py train.csv test.csv ``` and the loading script I specify `data_dir=Path(__file__).parent` and `data_files=DataFilesDict({"train": "train.csv", "test": "test.csv"})`. In the documentation I could not find info regarding loading a dataset from the hub using a loading script present on the hub. Any suggestion is very much appreciated. Best, Pietro Link to the hub repo: https://huggingface.co/datasets/pietrolesci/ag_news BONUS: how can I make the data viewer work in this specific case? :) Hi @lhoestq, Thanks a lot for the super quick answer! Your suggestion solves my issue. I am now able to load the dataset properly 🚀 However, the dataviewer is not working yet. Really, thanks a lot for your help and consideration! Best, Pietro
[ -0.06767003983259201, -0.3583371639251709, 0.022483795881271362, 0.28937843441963196, -0.021863974630832672, 0.17639625072479248, 0.3361331820487976, 0.05782730132341385, 0.6890072226524353, 0.17156918346881866, -0.21087399125099182, -0.0025723103899508715, -0.12061817198991776, 0.4642142057418823, 0.38577163219451904, 0.07062315195798874, -0.007710754871368408, 0.08142387866973877, 0.2180107831954956, 0.03306885063648224, -0.12170455604791641, 0.29584744572639465, 0.07799772918224335, 0.005916386842727661, -0.454552561044693, 0.22562859952449799, -0.24067845940589905, 0.45140478014945984, 0.07736393809318542, -0.3909232020378113, 0.27077218890190125, 0.4224492311477661, 0.29289379715919495, 0.6608331203460693, -0.00012470700312405825, 0.11678814888000488, 0.18406064808368683, -0.14016373455524445, -0.05470333620905876, -0.22895477712154388, 0.07212042063474655, -0.13543610274791718, 0.16290974617004395, -0.03420402482151985, -0.2319948673248291, 0.06877098977565765, -0.008110256865620613, -0.046720728278160095, 0.29672926664352417, 0.19509707391262054, 0.06945408880710602, 0.32348084449768066, -0.11568877846002579, -0.3778456151485443, 0.026915524154901505, 0.18533259630203247, 0.07545915991067886, 0.4489680528640747, 0.22223027050495148, -0.08592452853918076, -0.17077547311782837, -0.07689787447452545, 0.1575179547071457, -0.24416886270046234, 0.34518030285835266, 0.09821006655693054, 0.0004032328724861145, -0.23060935735702515, 0.01486038789153099, 0.08388848602771759, 0.32896021008491516, -0.43932706117630005, -0.19492994248867035, -0.5515594482421875, 0.14288221299648285, -0.02397771365940571, 0.22151798009872437, 0.028688227757811546, -0.21713867783546448, 0.2816961407661438, -0.15413163602352142, -0.44573092460632324, -0.20368823409080505, -0.10846588015556335, 0.004926793277263641, -0.06498610973358154, -0.01337467785924673, 0.07600528746843338, 0.12681959569454193, 0.10911057889461517, 0.20258228480815887, -0.15134702622890472, -0.02025514468550682, 0.22910767793655396, -0.32770925760269165, -0.061454661190509796, 0.028970185667276382, 0.48548850417137146, 0.01280350610613823, 0.4018639326095581, 0.2886456251144409, 0.1415427327156067, -0.3395421504974365, -0.02513415366411209, 0.2782110273838043, 0.32891926169395447, 0.19961078464984894, 0.03590631112456322, 0.05958138033747673, 0.4861673414707184, 0.09840217232704163, -0.02217184379696846, -0.34610217809677124, -0.21729642152786255, -0.177741140127182, -0.18872547149658203, 0.20207150280475616, -0.10428766906261444, -0.028583794832229614, -0.016268659383058548, 0.473821759223938, 0.01858687959611416, 0.3117925822734833, 0.5883274674415588, -0.05107811093330383, 0.05626041069626808, -0.060706544667482376, 0.17800067365169525, -0.26795247197151184, 0.054055098444223404, -0.21897092461585999, 0.20420432090759277, -0.14883214235305786, 0.4224179685115814, 0.3376401364803314, -0.19973845779895782, 0.2639411687850952, -0.06307118386030197, 0.30421942472457886, -0.025239717215299606, -0.45912209153175354, 0.10074537992477417, -0.07076049596071243, 0.1876244992017746, 0.3827137053012848, 0.15035495162010193, 0.016785738989710808, -0.18935270607471466, -0.20888668298721313, 0.05894434452056885, -0.09521333128213882, -0.4064997732639313, 0.17606382071971893, 0.01097111962735653, -0.7764014005661011, -0.0851726084947586, -0.2627549171447754, 0.04078086093068123, -0.2931138575077057, -0.13690932095050812, -0.0386253222823143, 0.14631207287311554, -0.05232490599155426, -0.1374104768037796, 0.38441821932792664, 0.7989914417266846, -0.22299161553382874, -0.3160701096057892, 0.05983828380703926, -0.36731258034706116, -0.2459048628807068, 0.04684486612677574, -0.15613165497779846, 0.3962371349334717, -0.336368203163147, -0.014780201017856598, 0.0471942201256752, -0.5521423816680908, -0.4069000482559204, 0.18956895172595978, -0.3559102416038513, 0.3716001510620117, 0.1696506142616272, 0.21918796002864838, -0.11069244146347046, -0.07080405205488205, -0.0010000094771385193, 0.0986279845237732, -0.006032517179846764, -0.15319930016994476, 0.058598827570676804, -0.09342716634273529, -0.11374090611934662, 0.4101994037628174, 0.05551724508404732, 0.17338818311691284, 0.001131683588027954, -0.08781221508979797, 0.3085514008998871, 0.03204456716775894, 0.03860577195882797, 0.11702501773834229, 0.10904252529144287, 0.24757955968379974, 0.051730163395404816, 0.06325628608465195, -0.7033707499504089, 0.48019328713417053, -0.14731454849243164, -0.05930899828672409, -0.009514912962913513, 0.007469061762094498, -0.4680337607860565, -0.051519643515348434, -0.31134405732154846, -0.11273421347141266, -0.09942738711833954, 0.12517353892326355, 0.10000906884670258, -0.15728473663330078, -0.42417827248573303, 0.7118449211120605, -0.11086054891347885, 0.17942672967910767, -0.7325814962387085, 0.4206787347793579, 0.20186878740787506, -0.07213576883077621, 0.035334520041942596, 0.1582741141319275, 0.18259310722351074, -0.09318439662456512, 0.14070680737495422, 0.3817422688007355, 0.23491758108139038, 0.5389651656150818, 0.28561800718307495, -0.06000366806983948, 0.19027379155158997, -0.15196344256401062, 0.1442745327949524, -0.2465505748987198, 0.0301569364964962, -0.09518257528543472, -0.29174888134002686, 0.33017775416374207, -0.5647221803665161, 0.23322194814682007, 0.08448266983032227, -0.15607419610023499, 0.06085306406021118, -0.050256550312042236, -0.34955906867980957, -0.2012443244457245, 0.069811150431633, 0.15460731089115143, 0.27659210562705994, -0.07649161666631699, -0.09849810600280762, -0.06956129521131516, -0.03978460654616356, -0.053655676543712616, -0.10871409624814987, 0.07706885039806366, -0.13273319602012634, 0.16850236058235168, -0.03256227821111679, 0.0681510716676712, 0.30954235792160034, 0.0385342501103878, -0.1871994137763977, 0.4441898465156555, 0.15467649698257446, -0.30101728439331055, -0.029330678284168243, 0.012976191937923431, 0.07647817581892014, 0.26255589723587036, -0.26236972212791443, -0.08681821078062057, -0.14975428581237793, -0.25479573011398315, -0.02155371755361557, 0.019128529354929924, -0.5106797218322754, -0.2190675586462021, -0.043113578110933304, -0.006274256855249405, -0.3114546239376068, -0.44706833362579346, -0.1862238645553589, -0.11354488879442215, -0.08540976047515869, 0.24714389443397522, 0.07270568609237671, -0.06621715426445007, -0.01439495850354433, 0.41482001543045044, -0.21725891530513763, -0.24015922844409943, -0.10946749150753021, -0.17743554711341858, 0.06626607477664948, -0.07014477252960205, 0.058762796223163605, 0.29196882247924805, 0.08269964158535004, -0.40093639492988586, 0.14275193214416504, -0.17366784811019897, 0.013343222439289093, 0.1661791354417801, -0.01523052528500557, 0.20021401345729828, 0.13580510020256042, 0.16907647252082825, 0.14421814680099487, -0.100114606320858, 0.1916956901550293, -0.33484700322151184, -0.03569554537534714, -0.16619643568992615, 0.08117171376943588, -0.048671621829271317, 0.017181463539600372, -0.198027104139328, -0.21057668328285217, -0.3260780870914459, 0.2839098572731018, 0.33130064606666565, 0.04857487976551056, 0.056121423840522766, 0.024511616677045822, 0.1342153251171112, -0.07384257763624191, -0.2391316294670105, -0.09878435730934143, -0.503840446472168, 0.32986587285995483, -0.25411951541900635, -0.2692650258541107, 0.22248300909996033, 0.03629028797149658, 0.24396903812885284, -0.24778388440608978, -0.4332643747329712, -0.27002736926078796, -0.004311060532927513, 0.1112934798002243, 0.18683932721614838, 0.08126283437013626, 0.1534653902053833, -0.12339503318071365, 0.18562529981136322, -0.11182495206594467, -0.40202686190605164, 0.07715459913015366, 0.1385292261838913, -0.03920236974954605, 0.10730021446943283, 0.008782651275396347, -0.4347752630710602, 0.351470410823822, 0.38036587834358215, 0.08213730156421661, 0.2682642936706543, -0.24728235602378845, 0.5148453116416931, -0.16428238153457642, -0.32108163833618164, -0.4268910884857178, 0.04194994270801544, -0.1313920021057129, 0.4285297989845276, 0.06398835778236389, 0.4453522264957428, -0.4356304109096527, -0.34074902534484863, -0.14466796815395355, -0.26082807779312134, 0.1454140692949295, -0.05973183363676071, -0.02431461215019226, -0.151020810008049, 0.11872939020395279, -0.2166234701871872, -0.10080593824386597, 0.2881549894809723, 0.36723536252975464, 0.3372776508331299, 0.005682708229869604, -0.3537130057811737, -0.1371029019355774, -0.4910600185394287, 0.1515495628118515, -0.18564406037330627, -0.04098067060112953, -0.02594570443034172, -0.06947614997625351, 0.008448585867881775, 0.06504751741886139, 0.7090396881103516, -0.15634030103683472, 0.01884417235851288, 0.05814323201775551, -0.4377690851688385, -0.4721044898033142, 0.013300471007823944, 0.013172172009944916, 0.13539545238018036, -0.2956972122192383, 0.6850801110267639, -0.09353537857532501, -0.13853280246257782, 0.019251879304647446, 0.03783201426267624, -0.31820446252822876, -0.5554917454719543, -0.11858183145523071, -0.06763242185115814, -0.2684710919857025, -0.16680726408958435, -0.19882914423942566, 0.1642773598432541, -0.20975375175476074, 0.10965105891227722, 0.18045450747013092, 0.05923161655664444, 0.21107308566570282, 0.28329867124557495, 0.25621944665908813, 0.18031466007232666, 0.23412787914276123, 0.6170520782470703, 0.034835897386074066, 0.15620236098766327, 0.9101308584213257, -0.020206931978464127, -0.4619748592376709, 0.10942676663398743, 0.03481266275048256, 0.2401595413684845, 0.6959229707717896, 0.1317436248064041, 0.017937488853931427, 0.11138905584812164, -0.0069360509514808655, -0.4725675880908966, 0.15816383063793182, -0.0978197529911995, -0.08961987495422363, -0.22164089977741241, -0.5231252908706665, 0.5495334267616272, -0.04082263261079788, -0.13460826873779297, -0.009174041450023651, 0.25932586193084717, -0.2833808660507202, 0.18060030043125153, -0.32408276200294495, 0.9415811896324158, -0.08106184005737305, 0.11499139666557312, 0.33571192622184753, -0.11982673406600952, 0.16795550286769867, -0.17201277613639832, -0.09795772284269333, -0.4337025582790375, -0.1150277853012085, -0.0003764349967241287, 0.0002179667353630066, 0.23006483912467957, 0.16464361548423767, -0.013276677578687668, 0.40788552165031433, -0.116129070520401, 0.34641867876052856, -0.01669188216328621, 0.3535628616809845, -0.24834990501403809, -0.4333568215370178, -0.4371415674686432, -0.04081765189766884, 0.1230379268527031, 0.47144848108291626, -0.09910301864147186, -0.018785756081342697, -0.2710772454738617, -0.06518176943063736, -0.05452437698841095, 0.10443142801523209, 0.07389535009860992, -0.313273549079895, 0.01682034693658352, -0.13286419212818146, 0.159477099776268, 0.5359245538711548, 0.40124499797821045, -0.06141773238778114, -0.3916371762752533, 0.352656751871109, -0.195946604013443, -0.16851665079593658, -0.13739214837551117, -0.039743538945913315, 0.18435946106910706, -0.049176983535289764, -0.46060094237327576, 0.11388935893774033, 0.06753052026033401, -0.11938942968845367, -0.15291745960712433, 0.011076472699642181, 0.20862087607383728, -0.449129194021225, -0.3280619978904724, -0.09490519762039185, 0.09321601688861847, -0.048172399401664734, 0.004153179936110973, 0.1238345205783844, -0.17503365874290466, -0.0030095502734184265, 0.08780790865421295, -0.1767529845237732, -0.13375996053218842, 0.3737321197986603, -0.15152865648269653, -0.44615641236305237, 0.3385278582572937, 0.22969166934490204, 0.12871666252613068, -0.11570979654788971, -0.07820343971252441, 0.7985475659370422, -0.5366569757461548, 0.0008151261135935783, 0.17339882254600525, 0.0007658898830413818, 0.10011256486177444, 0.0804201290011406, 0.31762778759002686, -0.14263996481895447, 0.016476888209581375, -0.3060685992240906, -0.2886664569377899, 0.27830976247787476, 0.33403199911117554, 0.30834272503852844, 0.12247579544782639, -0.0437517985701561, -0.04513133317232132, 0.12385402619838715, -0.18979662656784058, 0.08709058165550232, 0.0034282002598047256, -0.04844021052122116, -0.11275489628314972, 0.05890992283821106, 0.11931579560041428, -0.18020613491535187, -0.01799102872610092, -0.1031363308429718, -0.2080790400505066, -0.030623571947216988, -0.08506647497415543, 0.21866217255592346, -0.06353787332773209, 0.021850449964404106, -0.2035265862941742, 0.013214942067861557, 0.0345907025039196, -0.3136676251888275, 0.49060553312301636, 0.36200249195098877, 0.02795693278312683, -0.07688747346401215, 0.4446754455566406, -0.015320338308811188, -0.4351871609687805, 0.16970999538898468, 0.08044750243425369, 0.3521597981452942, 0.19132664799690247, -0.034262917935848236, -0.38909897208213806, 0.0765363872051239, 0.3236710727214813, 0.34834858775138855, 0.5855819582939148, 0.22525617480278015, 0.18619349598884583, -0.06898914277553558, 0.2059621512889862, -0.00009702425450086594, 0.37342050671577454, 0.24065661430358887, -0.2722857594490051, 0.06197434663772583, 0.06421789526939392, 0.006882727146148682, -0.20919273793697357, 0.04744080826640129, 0.4360180199146271, -0.20502372086048126, 0.017321351915597916, 0.5102269053459167, 0.3409799635410309, 0.12944872677326202, -0.22220923006534576, 0.12816479802131653, 0.6308119297027588, 0.20891083776950836, 0.16433683037757874, 0.3288341164588928, -0.16019026935100555, 0.11536990106105804, 0.20934370160102844, 0.30649757385253906, 0.02564309537410736, 0.42915773391723633, -0.2950912117958069, 0.21518638730049133, -0.19604066014289856, 0.25271403789520264, 0.22405952215194702, -0.6263981461524963, -0.08462941646575928, 0.023549258708953857, -0.06285113096237183, -0.1302337646484375, -0.2429126501083374, 0.4794943332672119, -0.21871474385261536, 0.3158546984195709, -0.2851441204547882, 0.10095983743667603, 0.057194456458091736, -0.12351936101913452, -0.05392160639166832, -0.24528038501739502, -0.2285684496164322, 0.012990463525056839, 0.03333036229014397, -0.4176713228225708, -0.07104624807834625, -0.05714903771877289, -0.21457941830158234, 0.09169559925794601, -0.018719777464866638, 0.04158564656972885, 0.0911552757024765, -0.09060090780258179, 0.1277720332145691, 0.1701742559671402, -0.05578041076660156, 0.505662739276886, -0.010849261656403542, 0.2714478671550751, 0.05684909224510193, 0.10261325538158417, 0.3440638482570648, 0.14698529243469238, -0.0159401036798954, 0.05753778666257858, 0.09695664793252945, -0.08700431883335114, 0.157465398311615, 0.08353772759437561, 0.12410147488117218, -0.07082237303256989, -0.07584165036678314, 0.14384524524211884, 0.2466399371623993, -0.22063709795475006, 0.5691105723381042, -0.1704714149236679, 0.0018468573689460754, -0.2772132158279419, 0.16980667412281036, -0.2868387997150421, -0.18055763840675354, 0.2345525324344635, 0.033868759870529175, 0.023929480463266373, 0.06979774683713913, -0.009818581864237785, 0.03284285590052605, 0.5785669684410095, 0.2656344175338745, 0.05747056379914284, -0.2482004165649414, -0.25354844331741333, -0.5892276763916016, 0.09850327670574188, 0.2970971465110779, -0.23907631635665894, 0.15048523247241974, -0.02656567096710205, -0.055182717740535736, -0.05291270464658737, -0.016285747289657593, -0.0015751438913866878, 0.018361743539571762, 0.014403633773326874, -0.08701296895742416, -0.09736225008964539, -0.16832970082759857, 0.2732263207435608, 0.02087683230638504, 0.011467427015304565, 0.001403260976076126, 0.05758946016430855, -0.20507341623306274, 0.16802875697612762, 0.12115371227264404, 0.0901544988155365, -0.37212449312210083, 0.4074501395225525, -0.37336355447769165, 0.5279622077941895, 0.017985161393880844, 0.014810049906373024, -0.3788226246833801, -0.23804745078086853, -0.1722523272037506, 0.1857488751411438, 0.0006967633962631226, 0.20692846179008484, -0.17422880232334137, -0.20351772010326385, -0.16981177031993866, -0.030259527266025543, 0.14640717208385468, 0.021982286125421524, -0.07746170461177826, -0.0033490126952528954, -0.22998198866844177, 0.12517359852790833, 0.37626415491104126, 0.2382410168647766, -0.12291575968265533, 0.129217267036438, -0.06166629120707512, -0.08872181922197342, 0.680755078792572, -0.09509585797786713, -0.1028251200914383, -0.12145820260047913, 0.1618497669696808, -0.22465848922729492, -0.2282414436340332, -0.5156257152557373, 0.30534568428993225, 0.0681908130645752, 0.006044467911124229, -0.050060972571372986, 0.22822745144367218, -0.16370299458503723, -0.10813528299331665, 0.005380403250455856, -0.0142526775598526, 0.22566646337509155, -0.03929658234119415, -0.2414478361606598, -0.14629939198493958 ]
https://github.com/huggingface/datasets/issues/3300
❓ Dataset loading script from Hugging Face Hub
@lhoestq I think I am having a related problem. My call to load_dataset() looks like this: ``` datasets = load_dataset( os.path.abspath(layoutlmft.data.datasets.xfun.__file__), f"xfun.{data_args.lang}", additional_langs=data_args.additional_langs, keep_in_memory=True, ) ``` My _split_generation code is: ``` def _split_generators(self, dl_manager): """Returns SplitGenerators.""" downloaded_file = dl_manager.download_and_extract("https://guillaumejaume.github.io/FUNSD/dataset.zip") return [ datasets.SplitGenerator( name=datasets.Split.TRAIN, gen_kwargs={"filepath": f"{downloaded_file}/dataset/training_data/"} ), datasets.SplitGenerator( name=datasets.Split.TEST, gen_kwargs={"filepath": f"{downloaded_file}/dataset/testing_data/"} ), ] ``` However I get the error "TypeError: _generate_examples() got an unexpected keyword argument 'filepath'" The path looks right and I see the data in the path so I think the only problem I have is that it doesn't like the key "filepath". However, the documentation (example [here](https://huggingface.co/datasets/lhoestq/custom_squad/blob/main/custom_squad.py#L101-L107)) seems to show that this is the correct parameter. Here is the full stack trace: ``` Downloading and preparing dataset xfun/xfun.en (download: Unknown size, generated: Unknown size, post-processed: Unknown size, total: Unknown size) to /Users/caseygre/.cache/huggingface/datasets/xfun/xfun.en/0.0.0/96b8cb7c57f6f822f0ab37ae3be7b82d84ac57062e774c9361ccf0a4b9ef61cc... Traceback (most recent call last): File "/Users/caseygre/PycharmProjects/aegis-ml-new/unilm/venv-LayoutLM/lib/python3.9/site-packages/datasets/builder.py", line 574, in download_and_prepare self._download_and_prepare( File "/Users/caseygre/PycharmProjects/aegis-ml-new/unilm/venv-LayoutLM/lib/python3.9/site-packages/datasets/builder.py", line 652, in _download_and_prepare self._prepare_split(split_generator, **prepare_split_kwargs) File "/Users/caseygre/PycharmProjects/aegis-ml-new/unilm/venv-LayoutLM/lib/python3.9/site-packages/datasets/builder.py", line 975, in _prepare_split generator = self._generate_examples(**split_generator.gen_kwargs) TypeError: _generate_examples() got an unexpected keyword argument 'filepath' python-BaseException ```
Hi there, I am trying to add my custom `ag_news` with its own loading script on the Hugging Face datasets hub. In particular, I would like to test the addition of a second configuration to the existing `ag_news` dataset. Once it works in my hub, I plan to make a PR to the original dataset. However, in trying to do so I have encountered certain problems as detailed below. Issues I have encountered: - Without a loading script, the train and test files are loaded together into a unique `dataset.Dataset` -> so I wrote a loading script. Also, I need a loading script otherwise I cannot specify multiple configurations - Once my loading script is working locally, I do not manage to make it work on the hub. In particular, I would like to be able to load the dataset like this ```python load_dataset("pietrolesci/ag_news", name="my_configuration") ``` Apparently, the `load_dataset` is able to pick up the loading script from the hub and run it. However, it errors because it is unable to find the files. The structure of my hub repo is the following ``` ag_news.py train.csv test.csv ``` and the loading script I specify `data_dir=Path(__file__).parent` and `data_files=DataFilesDict({"train": "train.csv", "test": "test.csv"})`. In the documentation I could not find info regarding loading a dataset from the hub using a loading script present on the hub. Any suggestion is very much appreciated. Best, Pietro Link to the hub repo: https://huggingface.co/datasets/pietrolesci/ag_news BONUS: how can I make the data viewer work in this specific case? :)
173
❓ Dataset loading script from Hugging Face Hub Hi there, I am trying to add my custom `ag_news` with its own loading script on the Hugging Face datasets hub. In particular, I would like to test the addition of a second configuration to the existing `ag_news` dataset. Once it works in my hub, I plan to make a PR to the original dataset. However, in trying to do so I have encountered certain problems as detailed below. Issues I have encountered: - Without a loading script, the train and test files are loaded together into a unique `dataset.Dataset` -> so I wrote a loading script. Also, I need a loading script otherwise I cannot specify multiple configurations - Once my loading script is working locally, I do not manage to make it work on the hub. In particular, I would like to be able to load the dataset like this ```python load_dataset("pietrolesci/ag_news", name="my_configuration") ``` Apparently, the `load_dataset` is able to pick up the loading script from the hub and run it. However, it errors because it is unable to find the files. The structure of my hub repo is the following ``` ag_news.py train.csv test.csv ``` and the loading script I specify `data_dir=Path(__file__).parent` and `data_files=DataFilesDict({"train": "train.csv", "test": "test.csv"})`. In the documentation I could not find info regarding loading a dataset from the hub using a loading script present on the hub. Any suggestion is very much appreciated. Best, Pietro Link to the hub repo: https://huggingface.co/datasets/pietrolesci/ag_news BONUS: how can I make the data viewer work in this specific case? :) @lhoestq I think I am having a related problem. My call to load_dataset() looks like this: ``` datasets = load_dataset( os.path.abspath(layoutlmft.data.datasets.xfun.__file__), f"xfun.{data_args.lang}", additional_langs=data_args.additional_langs, keep_in_memory=True, ) ``` My _split_generation code is: ``` def _split_generators(self, dl_manager): """Returns SplitGenerators.""" downloaded_file = dl_manager.download_and_extract("https://guillaumejaume.github.io/FUNSD/dataset.zip") return [ datasets.SplitGenerator( name=datasets.Split.TRAIN, gen_kwargs={"filepath": f"{downloaded_file}/dataset/training_data/"} ), datasets.SplitGenerator( name=datasets.Split.TEST, gen_kwargs={"filepath": f"{downloaded_file}/dataset/testing_data/"} ), ] ``` However I get the error "TypeError: _generate_examples() got an unexpected keyword argument 'filepath'" The path looks right and I see the data in the path so I think the only problem I have is that it doesn't like the key "filepath". However, the documentation (example [here](https://huggingface.co/datasets/lhoestq/custom_squad/blob/main/custom_squad.py#L101-L107)) seems to show that this is the correct parameter. Here is the full stack trace: ``` Downloading and preparing dataset xfun/xfun.en (download: Unknown size, generated: Unknown size, post-processed: Unknown size, total: Unknown size) to /Users/caseygre/.cache/huggingface/datasets/xfun/xfun.en/0.0.0/96b8cb7c57f6f822f0ab37ae3be7b82d84ac57062e774c9361ccf0a4b9ef61cc... Traceback (most recent call last): File "/Users/caseygre/PycharmProjects/aegis-ml-new/unilm/venv-LayoutLM/lib/python3.9/site-packages/datasets/builder.py", line 574, in download_and_prepare self._download_and_prepare( File "/Users/caseygre/PycharmProjects/aegis-ml-new/unilm/venv-LayoutLM/lib/python3.9/site-packages/datasets/builder.py", line 652, in _download_and_prepare self._prepare_split(split_generator, **prepare_split_kwargs) File "/Users/caseygre/PycharmProjects/aegis-ml-new/unilm/venv-LayoutLM/lib/python3.9/site-packages/datasets/builder.py", line 975, in _prepare_split generator = self._generate_examples(**split_generator.gen_kwargs) TypeError: _generate_examples() got an unexpected keyword argument 'filepath' python-BaseException ```
[ -0.06870724260807037, -0.381114661693573, 0.046655137091875076, 0.3227538466453552, 0.009962493553757668, 0.16866916418075562, 0.32430821657180786, 0.07138371467590332, 0.6673384308815002, 0.20383289456367493, -0.22035832703113556, -0.0036797982174903154, -0.067635677754879, 0.4104301333427429, 0.407867968082428, 0.0784856304526329, 0.02096610516309738, 0.029377281665802002, 0.19850188493728638, -0.0212114118039608, -0.1326785683631897, 0.3249165415763855, 0.10057809948921204, 0.05073704198002815, -0.5055556893348694, 0.20738473534584045, -0.2630452513694763, 0.500837504863739, 0.09454082697629929, -0.3425169289112091, 0.21887072920799255, 0.4161885678768158, 0.2778625190258026, 0.6348180770874023, -0.0001247538602910936, 0.10737042129039764, 0.1700044870376587, -0.13559268414974213, -0.09331566095352173, -0.2565153241157532, 0.08362055569887161, -0.13911594450473785, 0.14845164120197296, -0.051743533462285995, -0.22488629817962646, 0.07473645359277725, -0.02583369053900242, -0.0958792120218277, 0.2998908460140228, 0.1945008933544159, 0.07338940352201462, 0.3699016273021698, -0.158822700381279, -0.3921981155872345, 0.01610621064901352, 0.20670494437217712, 0.04244231432676315, 0.39069443941116333, 0.22076904773712158, -0.09056740254163742, -0.1425689160823822, -0.05762140452861786, 0.1596904844045639, -0.2743949294090271, 0.3410015404224396, 0.11520879715681076, -0.013656705617904663, -0.212060809135437, 0.03981220722198486, 0.1138233095407486, 0.3056766092777252, -0.4165113568305969, -0.23612315952777863, -0.5492115616798401, 0.16447867453098297, -0.049029458314180374, 0.24202433228492737, 0.06410764157772064, -0.22258636355400085, 0.27825576066970825, -0.1492544263601303, -0.44574469327926636, -0.1467927247285843, -0.09994065761566162, 0.0134420245885849, -0.04000246524810791, -0.00539673026651144, 0.08249341696500778, 0.13113199174404144, 0.09414279460906982, 0.1438910812139511, -0.18513160943984985, -0.005393706262111664, 0.22231444716453552, -0.3184431791305542, 0.009760569781064987, 0.06968134641647339, 0.45888227224349976, 0.04429352283477783, 0.3833853602409363, 0.2576042711734772, 0.14420387148857117, -0.36689552664756775, -0.02310676872730255, 0.28696775436401367, 0.33761391043663025, 0.18613946437835693, 0.05353563278913498, 0.05720324069261551, 0.43217042088508606, 0.09734588861465454, -0.03126844763755798, -0.3652653396129608, -0.22010353207588196, -0.17736102640628815, -0.16471663117408752, 0.2137077897787094, -0.11197042465209961, -0.02638457715511322, 0.020616453140974045, 0.45431774854660034, 0.025419721379876137, 0.3166469633579254, 0.5609062314033508, -0.00868459977209568, 0.05629109591245651, -0.06174367666244507, 0.2057056874036789, -0.3324807286262512, 0.05536472424864769, -0.2353460043668747, 0.17939302325248718, -0.15807610750198364, 0.4365593194961548, 0.31571438908576965, -0.19240286946296692, 0.24340328574180603, -0.08995083719491959, 0.31116384267807007, -0.08639147877693176, -0.48904284834861755, 0.12101130187511444, -0.06271346658468246, 0.1773446947336197, 0.34348511695861816, 0.15686485171318054, 0.025249244645237923, -0.16771259903907776, -0.2320307195186615, 0.0475369468331337, -0.09937568753957748, -0.4261004626750946, 0.17996002733707428, 0.004010182339698076, -0.7843835949897766, -0.0704934149980545, -0.23823577165603638, 0.051880232989788055, -0.3201155662536621, -0.08283732086420059, -0.03469204157590866, 0.12337988615036011, -0.08100204914808273, -0.12040825933218002, 0.3979245722293854, 0.8179824948310852, -0.205547034740448, -0.3096858859062195, 0.09829462319612503, -0.3511703610420227, -0.24422109127044678, 0.0860232412815094, -0.15830519795417786, 0.37681907415390015, -0.33572661876678467, 0.0240461528301239, 0.09357918798923492, -0.5804431438446045, -0.38149917125701904, 0.15857158601284027, -0.381602942943573, 0.3934434950351715, 0.1514454334974289, 0.205495223402977, -0.14991530776023865, -0.07482749223709106, 0.019268542528152466, 0.11864209175109863, 0.00856170803308487, -0.14079822599887848, 0.04477863386273384, -0.09171154350042343, -0.13076254725456238, 0.39380958676338196, 0.0397869348526001, 0.1520828902721405, 0.014123380184173584, -0.09326222538948059, 0.298392653465271, 0.02429123967885971, 0.0215008482336998, 0.15442012250423431, 0.09337101876735687, 0.2889430522918701, 0.02123964950442314, 0.0950850173830986, -0.6947935819625854, 0.4801171123981476, -0.14146152138710022, -0.045827716588974, -0.03260794281959534, -0.02630556933581829, -0.4431810677051544, -0.04539231210947037, -0.30012229084968567, -0.08411167562007904, -0.09621451795101166, 0.12922310829162598, 0.11066938936710358, -0.1350785493850708, -0.4004235863685608, 0.6751947402954102, -0.09431279450654984, 0.1713164746761322, -0.7451934814453125, 0.39742621779441833, 0.19471211731433868, -0.08684657514095306, 0.05120250582695007, 0.20665085315704346, 0.1903984546661377, -0.0962102860212326, 0.10473428666591644, 0.4121130108833313, 0.21106718480587006, 0.5587552785873413, 0.287798136472702, -0.03353053331375122, 0.2027515172958374, -0.1274246871471405, 0.14235660433769226, -0.2659285068511963, -0.0002727201208472252, -0.0658707320690155, -0.29373079538345337, 0.33417457342147827, -0.5461950302124023, 0.23963972926139832, 0.08315573632717133, -0.14353962242603302, 0.06492721289396286, -0.029604531824588776, -0.38045674562454224, -0.21121454238891602, 0.08803988993167877, 0.18110868334770203, 0.27277931571006775, -0.0523218959569931, -0.08883857727050781, -0.05323118716478348, 0.016119137406349182, -0.056143589317798615, -0.09519004076719284, 0.035999611020088196, -0.10563602298498154, 0.17688578367233276, -0.021171478554606438, 0.04348316416144371, 0.3026597797870636, 0.04153373837471008, -0.13952191174030304, 0.4386950731277466, 0.09222466498613358, -0.3142297565937042, -0.06687473505735397, 0.014132015407085419, 0.05454379692673683, 0.23894163966178894, -0.23274993896484375, -0.07351277023553848, -0.18505549430847168, -0.2353791743516922, -0.015488174743950367, -0.008120028302073479, -0.4920174181461334, -0.19239842891693115, -0.09706863015890121, 0.010881200432777405, -0.3327926993370056, -0.39696598052978516, -0.19545109570026398, -0.14486190676689148, -0.07553255558013916, 0.2021208107471466, 0.04691160097718239, -0.04887981712818146, -0.0253000371158123, 0.4038217067718506, -0.2398245632648468, -0.2427620142698288, -0.10936160385608673, -0.20602010190486908, 0.005217336118221283, -0.09929382801055908, 0.087416872382164, 0.32458963990211487, 0.1181856319308281, -0.38711583614349365, 0.14918147027492523, -0.2018144726753235, 0.017456717789173126, 0.173030287027359, -0.01974327862262726, 0.18455946445465088, 0.09425206482410431, 0.12132304906845093, 0.12756898999214172, -0.08260653167963028, 0.2572709321975708, -0.32737135887145996, -0.009071671403944492, -0.16105715930461884, 0.1111127957701683, -0.09154805541038513, -0.007970020174980164, -0.20306769013404846, -0.2048928439617157, -0.3402986526489258, 0.2810354232788086, 0.2639707624912262, 0.041163116693496704, 0.09535151720046997, 0.028296399861574173, 0.13652604818344116, -0.09150891751050949, -0.2379806637763977, -0.13228590786457062, -0.49963200092315674, 0.3203161358833313, -0.27626603841781616, -0.28308743238449097, 0.2194436490535736, 0.04614642262458801, 0.23533767461776733, -0.17639143764972687, -0.4108127951622009, -0.27710720896720886, 0.016069430857896805, 0.14323310554027557, 0.1844496726989746, 0.08994956314563751, 0.16659125685691833, -0.12253040820360184, 0.19379179179668427, -0.12714248895645142, -0.42656171321868896, 0.07655028253793716, 0.18869665265083313, -0.03915628045797348, 0.059933144599199295, -0.013768624514341354, -0.40992504358291626, 0.28232628107070923, 0.3782164454460144, 0.10521741956472397, 0.2834399938583374, -0.25232571363449097, 0.5351220369338989, -0.17729085683822632, -0.28761425614356995, -0.4182080924510956, 0.04305216670036316, -0.14528962969779968, 0.40923696756362915, 0.1031549721956253, 0.48166629672050476, -0.4349181056022644, -0.28524506092071533, -0.1627856343984604, -0.29739391803741455, 0.14754369854927063, -0.08699004352092743, 0.0047630369663238525, -0.13132402300834656, 0.16635194420814514, -0.2401711642742157, -0.06628168374300003, 0.3122050166130066, 0.3499370217323303, 0.3679845929145813, 0.026264464482665062, -0.43786102533340454, -0.17019666731357574, -0.5005731582641602, 0.1708434373140335, -0.15415318310260773, -0.025179926306009293, -0.07248751819133759, -0.0650566890835762, 0.040897075086832047, 0.06377585232257843, 0.6841919422149658, -0.18873275816440582, -0.01957070827484131, 0.09660917520523071, -0.4366372227668762, -0.5184403657913208, -0.01074272021651268, 0.020420659333467484, 0.09456437081098557, -0.2921063303947449, 0.711883544921875, -0.1278325766324997, -0.179566890001297, -0.014977820217609406, 0.0669557973742485, -0.3077142834663391, -0.5341208577156067, -0.1238722950220108, -0.10115663707256317, -0.26073628664016724, -0.1624409556388855, -0.21756066381931305, 0.19060707092285156, -0.22987797856330872, 0.09545820951461792, 0.2031240016222, 0.09909536689519882, 0.19690322875976562, 0.2801133096218109, 0.29783982038497925, 0.18964770436286926, 0.21302318572998047, 0.637242317199707, 0.027546627447009087, 0.15306828916072845, 0.9239009022712708, -0.04683222249150276, -0.4602425694465637, 0.07044337689876556, 0.011451692320406437, 0.21446353197097778, 0.7202304601669312, 0.13527342677116394, -0.0231175497174263, 0.10024286806583405, -0.02578449249267578, -0.4798294007778168, 0.19556470215320587, -0.06513236463069916, -0.06944099813699722, -0.18755458295345306, -0.5182963609695435, 0.5271238684654236, -0.015775471925735474, -0.13253802061080933, 0.032887667417526245, 0.23282112181186676, -0.2658754587173462, 0.18969036638736725, -0.336058646440506, 0.9406874179840088, -0.11920887231826782, 0.11110394448041916, 0.3445010483264923, -0.12204670161008835, 0.18020719289779663, -0.1874605417251587, -0.08405473083257675, -0.4186713397502899, -0.09363743662834167, 0.017449626699090004, 0.01988585665822029, 0.2217463254928589, 0.17533671855926514, 0.018199164420366287, 0.3917310833930969, -0.09799760580062866, 0.3331780731678009, -0.06582954525947571, 0.3596009314060211, -0.2881469130516052, -0.4684385061264038, -0.4678596556186676, -0.031359896063804626, 0.1303117871284485, 0.5161604881286621, -0.10843374580144882, 0.0006577875465154648, -0.32137390971183777, -0.053852859884500504, -0.05919599160552025, 0.11602256447076797, 0.06776785850524902, -0.3043386936187744, 0.012614265084266663, -0.139174222946167, 0.09665074944496155, 0.5446279644966125, 0.41026002168655396, -0.05491228029131889, -0.3818916380405426, 0.34554144740104675, -0.17989793419837952, -0.14511339366436005, -0.12709136307239532, -0.043592456728219986, 0.15721309185028076, -0.029755324125289917, -0.4575297236442566, 0.09013009816408157, 0.05398833006620407, -0.09380064904689789, -0.1980830430984497, -0.039202913641929626, 0.1921922117471695, -0.40011441707611084, -0.3024952709674835, -0.072310671210289, 0.10890763998031616, -0.0383552648127079, -0.00014532357454299927, 0.1348375678062439, -0.1660437136888504, -0.01089584082365036, 0.07380915433168411, -0.1745668351650238, -0.11735209822654724, 0.34364616870880127, -0.2097986936569214, -0.4444480538368225, 0.30977025628089905, 0.2172403186559677, 0.15508462488651276, -0.10977726429700851, -0.09756611287593842, 0.7737323641777039, -0.5514727234840393, -0.0174981951713562, 0.17489713430404663, -0.04092679172754288, 0.06479552388191223, 0.11810794472694397, 0.2929609417915344, -0.18780025839805603, 0.03660242632031441, -0.26557809114456177, -0.2557935118675232, 0.2983638644218445, 0.35720035433769226, 0.3333146274089813, 0.13914644718170166, -0.022350575774908066, -0.07056889683008194, 0.11619210988283157, -0.18152731657028198, 0.07388338446617126, -0.0014752354472875595, -0.03904986381530762, -0.0757652074098587, 0.059942543506622314, 0.1260179579257965, -0.17508582770824432, -0.02080986462533474, -0.09502092003822327, -0.2368921935558319, -0.02416772022843361, -0.09378226101398468, 0.2153734266757965, -0.0674380287528038, 0.025432799011468887, -0.16968290507793427, -0.0043569281697273254, 0.06703348457813263, -0.37505412101745605, 0.4920838475227356, 0.40893808007240295, 0.017806030809879303, -0.07580074667930603, 0.42121320962905884, 0.05127132683992386, -0.39270490407943726, 0.19196435809135437, 0.10151330381631851, 0.3376401662826538, 0.1837993860244751, -0.06308378279209137, -0.3563357889652252, 0.0784073919057846, 0.27388885617256165, 0.31556832790374756, 0.5840131640434265, 0.2642642557621002, 0.18862509727478027, -0.030334286391735077, 0.2122282087802887, 0.0308369267731905, 0.3636420965194702, 0.2789834141731262, -0.24368400871753693, 0.07389379292726517, 0.05310891941189766, 0.016667407006025314, -0.17738649249076843, 0.025402382016181946, 0.4528539776802063, -0.18862803280353546, 0.008001480251550674, 0.5091391801834106, 0.37613987922668457, 0.1376877725124359, -0.22027291357517242, 0.0901479497551918, 0.6002036333084106, 0.21381869912147522, 0.16697345674037933, 0.3559328615665436, -0.14512939751148224, 0.14262908697128296, 0.16863663494586945, 0.2513786852359772, 0.032963626086711884, 0.4167584180831909, -0.27458250522613525, 0.2178090214729309, -0.17590439319610596, 0.30798110365867615, 0.21954116225242615, -0.6449373364448547, -0.09407845139503479, -0.05075269937515259, -0.0457768589258194, -0.10159137099981308, -0.27858397364616394, 0.4785923957824707, -0.23657600581645966, 0.2719184458255768, -0.2777981460094452, 0.11641433835029602, 0.03777824342250824, -0.1445247083902359, -0.03718239814043045, -0.21262821555137634, -0.1965855211019516, 0.02636537328362465, 0.047147393226623535, -0.36764442920684814, -0.0782950222492218, -0.05019579082727432, -0.1760408729314804, 0.10052250325679779, -0.031252749264240265, 0.022971894592046738, 0.08624988794326782, -0.08886308968067169, 0.1638614386320114, 0.15875372290611267, -0.04079027473926544, 0.5192745923995972, -0.0297952052205801, 0.27030912041664124, 0.08134773373603821, 0.1048220694065094, 0.3239407241344452, 0.1540466994047165, 0.03497768193483353, 0.04291096329689026, 0.051830489188432693, -0.09615091979503632, 0.17121534049510956, 0.1026497632265091, 0.11070410907268524, -0.06720474362373352, -0.11662238836288452, 0.093593068420887, 0.2494935691356659, -0.25525209307670593, 0.572350025177002, -0.2030760943889618, -0.014967165887355804, -0.2928611934185028, 0.15193362534046173, -0.25887733697891235, -0.1510016769170761, 0.24512650072574615, 0.062382567673921585, 0.04043052718043327, 0.06476810574531555, -0.009692619554698467, 0.03574914112687111, 0.5596626996994019, 0.283949613571167, 0.02803056873381138, -0.2593328654766083, -0.24627287685871124, -0.6321685314178467, 0.13451623916625977, 0.2703510522842407, -0.2286108136177063, 0.1627490371465683, -0.010401090607047081, -0.05290495604276657, -0.03207510709762573, -0.03943169116973877, -0.04203413426876068, 0.02296338975429535, 0.03482777625322342, -0.09480157494544983, -0.13809847831726074, -0.16631555557250977, 0.22088350355625153, 0.017972510308027267, 0.00561247393488884, 0.005284503102302551, 0.06920753419399261, -0.21190282702445984, 0.17695453763008118, 0.1056462973356247, 0.04967808350920677, -0.3759790062904358, 0.4381007254123688, -0.33849000930786133, 0.4965543746948242, 0.04829869419336319, -0.006640901789069176, -0.44408363103866577, -0.2576940655708313, -0.13346846401691437, 0.22889173030853271, -0.06761647760868073, 0.20341672003269196, -0.17807921767234802, -0.1754688322544098, -0.1982625126838684, -0.03448290750384331, 0.1834958791732788, 0.022409595549106598, -0.0465485081076622, -0.01205640472471714, -0.24504795670509338, 0.11778870970010757, 0.4059949219226837, 0.3005676567554474, -0.09738463163375854, 0.1472427099943161, -0.05806906521320343, -0.0776064470410347, 0.6615548133850098, -0.08350317180156708, -0.1371857225894928, -0.12143126130104065, 0.17596489191055298, -0.18226921558380127, -0.2669776976108551, -0.5016798973083496, 0.2890620827674866, 0.06857417523860931, -0.0049368999898433685, -0.04431132972240448, 0.22626841068267822, -0.15455929934978485, -0.1412266492843628, 0.015941910445690155, -0.03169352561235428, 0.2175305187702179, -0.020401688292622566, -0.17495878040790558, -0.12762126326560974 ]
https://github.com/huggingface/datasets/issues/3300
❓ Dataset loading script from Hugging Face Hub
Hi ! The `gen_kwargs` dictionary is passed to `_generate_examples`, so in your case it must be defined this way: ```python def _generate_examples(self, filepath): ... ``` And here is an additional tip: you can use `os.path.join(downloaded_file, "dataset/testing_data")` instead of `f"downloaded_file}/dataset/testing_data/"` to get compatibility with Windows and streaming. Indeed Windows uses a backslash separator, not a slash, and streaming uses chained URLs (like `zip://dataset/testing_data::https://https://guillaumejaume.github.io/FUNSD/dataset.zip` for example)
Hi there, I am trying to add my custom `ag_news` with its own loading script on the Hugging Face datasets hub. In particular, I would like to test the addition of a second configuration to the existing `ag_news` dataset. Once it works in my hub, I plan to make a PR to the original dataset. However, in trying to do so I have encountered certain problems as detailed below. Issues I have encountered: - Without a loading script, the train and test files are loaded together into a unique `dataset.Dataset` -> so I wrote a loading script. Also, I need a loading script otherwise I cannot specify multiple configurations - Once my loading script is working locally, I do not manage to make it work on the hub. In particular, I would like to be able to load the dataset like this ```python load_dataset("pietrolesci/ag_news", name="my_configuration") ``` Apparently, the `load_dataset` is able to pick up the loading script from the hub and run it. However, it errors because it is unable to find the files. The structure of my hub repo is the following ``` ag_news.py train.csv test.csv ``` and the loading script I specify `data_dir=Path(__file__).parent` and `data_files=DataFilesDict({"train": "train.csv", "test": "test.csv"})`. In the documentation I could not find info regarding loading a dataset from the hub using a loading script present on the hub. Any suggestion is very much appreciated. Best, Pietro Link to the hub repo: https://huggingface.co/datasets/pietrolesci/ag_news BONUS: how can I make the data viewer work in this specific case? :)
64
❓ Dataset loading script from Hugging Face Hub Hi there, I am trying to add my custom `ag_news` with its own loading script on the Hugging Face datasets hub. In particular, I would like to test the addition of a second configuration to the existing `ag_news` dataset. Once it works in my hub, I plan to make a PR to the original dataset. However, in trying to do so I have encountered certain problems as detailed below. Issues I have encountered: - Without a loading script, the train and test files are loaded together into a unique `dataset.Dataset` -> so I wrote a loading script. Also, I need a loading script otherwise I cannot specify multiple configurations - Once my loading script is working locally, I do not manage to make it work on the hub. In particular, I would like to be able to load the dataset like this ```python load_dataset("pietrolesci/ag_news", name="my_configuration") ``` Apparently, the `load_dataset` is able to pick up the loading script from the hub and run it. However, it errors because it is unable to find the files. The structure of my hub repo is the following ``` ag_news.py train.csv test.csv ``` and the loading script I specify `data_dir=Path(__file__).parent` and `data_files=DataFilesDict({"train": "train.csv", "test": "test.csv"})`. In the documentation I could not find info regarding loading a dataset from the hub using a loading script present on the hub. Any suggestion is very much appreciated. Best, Pietro Link to the hub repo: https://huggingface.co/datasets/pietrolesci/ag_news BONUS: how can I make the data viewer work in this specific case? :) Hi ! The `gen_kwargs` dictionary is passed to `_generate_examples`, so in your case it must be defined this way: ```python def _generate_examples(self, filepath): ... ``` And here is an additional tip: you can use `os.path.join(downloaded_file, "dataset/testing_data")` instead of `f"downloaded_file}/dataset/testing_data/"` to get compatibility with Windows and streaming. Indeed Windows uses a backslash separator, not a slash, and streaming uses chained URLs (like `zip://dataset/testing_data::https://https://guillaumejaume.github.io/FUNSD/dataset.zip` for example)
[ -0.049940723925828934, -0.3830168545246124, 0.040472839027643204, 0.29239344596862793, 0.014371028169989586, 0.2027333378791809, 0.2845096290111542, 0.08540506660938263, 0.6453070640563965, 0.2024911642074585, -0.18620657920837402, 0.00768258236348629, -0.10776186734437943, 0.4451585114002228, 0.421268105506897, 0.0472496934235096, 0.02513793110847473, 0.06235920637845993, 0.17220538854599, 0.032277777791023254, -0.11753854155540466, 0.32619547843933105, 0.08353155851364136, 0.0298314169049263, -0.4897890090942383, 0.21814574301242828, -0.25848835706710815, 0.46167704463005066, 0.07810742408037186, -0.3994252383708954, 0.259247750043869, 0.4347686171531677, 0.2646138668060303, 0.6532837152481079, -0.00012567058729473501, 0.09834142029285431, 0.18317899107933044, -0.12683962285518646, -0.09959174692630768, -0.24887986481189728, 0.10886970907449722, -0.12582147121429443, 0.12957432866096497, -0.04123253747820854, -0.23524567484855652, 0.051473964005708694, 0.007159236818552017, -0.08547546714544296, 0.3432636260986328, 0.19191308319568634, 0.05572128668427467, 0.3130878210067749, -0.10961535573005676, -0.40040186047554016, -0.004450589418411255, 0.22058242559432983, 0.04139199107885361, 0.41262421011924744, 0.1528262197971344, -0.10708782076835632, -0.13838815689086914, -0.05156871676445007, 0.1415693461894989, -0.28613725304603577, 0.4048370122909546, 0.12539829313755035, 0.004711084067821503, -0.24787116050720215, 0.026784736663103104, 0.1079026609659195, 0.31635406613349915, -0.44130346179008484, -0.21258288621902466, -0.5557181239128113, 0.16571146249771118, -0.06689872592687607, 0.19565047323703766, 0.06878632307052612, -0.26386067271232605, 0.29157575964927673, -0.20552785694599152, -0.4065825939178467, -0.20263615250587463, -0.09195451438426971, 0.03666120767593384, -0.021040886640548706, 0.012121463194489479, 0.0790688768029213, 0.16773317754268646, 0.10140546411275864, 0.18105697631835938, -0.16350692510604858, -0.030797813087701797, 0.24403336644172668, -0.28274163603782654, -0.042243219912052155, 0.0737723782658577, 0.45568254590034485, 0.08516032993793488, 0.4001603126525879, 0.28149211406707764, 0.12816134095191956, -0.314752459526062, -0.02430078387260437, 0.2842283248901367, 0.28925204277038574, 0.2115802764892578, 0.06815412640571594, 0.04418185353279114, 0.4761958718299866, 0.08373808860778809, -0.038336388766765594, -0.36074280738830566, -0.20648270845413208, -0.14593243598937988, -0.18686050176620483, 0.17397159337997437, -0.08805248141288757, 0.005841376259922981, 0.017490889877080917, 0.4186500310897827, 0.04198366031050682, 0.2834313213825226, 0.5610794425010681, -0.051425784826278687, 0.04888217896223068, -0.05805487185716629, 0.2198455035686493, -0.26447877287864685, 0.096830353140831, -0.2174404412508011, 0.1693611741065979, -0.13148455321788788, 0.46721789240837097, 0.3219362497329712, -0.175864577293396, 0.27321282029151917, -0.07578591257333755, 0.30925506353378296, -0.06473086029291153, -0.45158618688583374, 0.13902908563613892, -0.06425496190786362, 0.19812694191932678, 0.3595632016658783, 0.1519026905298233, 0.007724881172180176, -0.18024927377700806, -0.24806416034698486, 0.05543815717101097, -0.0489046573638916, -0.42665398120880127, 0.17811794579029083, -0.007606825791299343, -0.7926709651947021, -0.08135982602834702, -0.2587612271308899, 0.08540929853916168, -0.31378576159477234, -0.13582487404346466, -0.08240552991628647, 0.15939055383205414, -0.08593636006116867, -0.14139209687709808, 0.43556705117225647, 0.8009179830551147, -0.1905510574579239, -0.29162928462028503, 0.04525282606482506, -0.2992214560508728, -0.2481769621372223, 0.05757496505975723, -0.1315385103225708, 0.38683053851127625, -0.32846149802207947, 0.002586148679256439, 0.08771911263465881, -0.5646019577980042, -0.3841977119445801, 0.18598225712776184, -0.32789868116378784, 0.3879548907279968, 0.1763525754213333, 0.19556505978107452, -0.1890697479248047, -0.06766340136528015, -0.009525075554847717, 0.12249155342578888, -0.010341012850403786, -0.12836864590644836, 0.049296680837869644, -0.11056552827358246, -0.13923673331737518, 0.38667526841163635, 0.033839523792266846, 0.17877304553985596, -0.021651379764080048, -0.09778545796871185, 0.3324008882045746, 0.012342754751443863, 0.014646489173173904, 0.10884424299001694, 0.11462125182151794, 0.2684597373008728, 0.01766054891049862, 0.09648094326257706, -0.686413049697876, 0.48114243149757385, -0.17033550143241882, -0.045619986951351166, -0.04139149188995361, -0.0487150102853775, -0.5014395713806152, -0.04749252647161484, -0.2889678180217743, -0.10285332798957825, -0.09769880771636963, 0.08234301954507828, 0.1514163613319397, -0.12514443695545197, -0.38741976022720337, 0.6531109809875488, -0.05776813626289368, 0.16407373547554016, -0.7522269487380981, 0.42225804924964905, 0.1910497397184372, -0.07322701811790466, 0.03552396595478058, 0.18662837147712708, 0.18860822916030884, -0.07246565073728561, 0.1356275975704193, 0.38300302624702454, 0.22472962737083435, 0.5510326027870178, 0.2836065888404846, -0.04674816131591797, 0.17494313418865204, -0.12942947447299957, 0.12297243624925613, -0.26381635665893555, 0.0029359981417655945, -0.05172524228692055, -0.3186347782611847, 0.3298032879829407, -0.525520920753479, 0.20545467734336853, 0.0796157717704773, -0.12483217567205429, 0.055220454931259155, -0.03348185867071152, -0.34495681524276733, -0.20874832570552826, 0.032805681228637695, 0.16567862033843994, 0.23144905269145966, -0.08689270913600922, -0.08470559865236282, -0.05207294970750809, -0.017488766461610794, -0.09664507210254669, -0.12231015413999557, 0.06580233573913574, -0.10839489847421646, 0.142385333776474, -0.043781548738479614, 0.0464913509786129, 0.3151608109474182, 0.046990420669317245, -0.12375153601169586, 0.42326799035072327, 0.11691263318061829, -0.28502166271209717, -0.032938532531261444, 0.013174355030059814, 0.10242298990488052, 0.25905659794807434, -0.24029064178466797, -0.08900002390146255, -0.14932826161384583, -0.23492735624313354, -0.03487939015030861, 0.035696133971214294, -0.4850831925868988, -0.17174935340881348, -0.055936299264431, 0.02906438708305359, -0.29375553131103516, -0.409707248210907, -0.19229669868946075, -0.14492422342300415, -0.07014396786689758, 0.26973453164100647, 0.048594553023576736, -0.08412838727235794, -0.006787512451410294, 0.411984384059906, -0.20646120607852936, -0.21370862424373627, -0.14782805740833282, -0.20366816222667694, 0.0264416690915823, -0.09091447293758392, 0.10379806160926819, 0.30920490622520447, 0.11288363486528397, -0.36866289377212524, 0.14030970633029938, -0.17701703310012817, 0.009398050606250763, 0.1316218376159668, -0.04189539700746536, 0.2596684694290161, 0.13312502205371857, 0.17505109310150146, 0.08246119320392609, -0.12865322828292847, 0.2352559119462967, -0.32525646686553955, 0.00012983381748199463, -0.1463749259710312, 0.08651654422283173, -0.04575714096426964, 0.0063661932945251465, -0.1511629819869995, -0.2069811373949051, -0.32725659012794495, 0.30499881505966187, 0.31990548968315125, 0.04718185216188431, 0.10799279808998108, 0.05879926308989525, 0.1121710017323494, -0.05975184962153435, -0.24303355813026428, -0.11239318549633026, -0.5100324153900146, 0.33968836069107056, -0.28416696190834045, -0.2764904797077179, 0.20267575979232788, -0.007147759199142456, 0.26259204745292664, -0.21379296481609344, -0.44286125898361206, -0.28810879588127136, 0.016123218461871147, 0.1254366636276245, 0.19174815714359283, 0.05956651270389557, 0.1441066861152649, -0.11188217252492905, 0.18966716527938843, -0.12011406570672989, -0.3906843960285187, 0.09818144142627716, 0.17582660913467407, -0.04662913829088211, 0.09068816155195236, -0.04053753614425659, -0.4048847258090973, 0.3249157667160034, 0.4236224293708801, 0.10239364951848984, 0.25948986411094666, -0.2737276554107666, 0.5077314972877502, -0.16879114508628845, -0.3000270426273346, -0.45412421226501465, 0.05714084953069687, -0.14979074895381927, 0.4008110761642456, 0.11595563590526581, 0.4474011957645416, -0.4258573055267334, -0.2700093388557434, -0.1876271665096283, -0.30854982137680054, 0.1293950378894806, -0.083149254322052, -0.0135536789894104, -0.13241681456565857, 0.16169586777687073, -0.2624962329864502, -0.09764403104782104, 0.2928929924964905, 0.34599971771240234, 0.3730655312538147, 0.03396192565560341, -0.36033493280410767, -0.18299758434295654, -0.4896525740623474, 0.1732347011566162, -0.14656199514865875, -0.09029322117567062, -0.04324816167354584, -0.08448246121406555, 0.034409455955028534, 0.06261072307825089, 0.7113105654716492, -0.22990782558918, -0.0017383359372615814, 0.0745486170053482, -0.4131539762020111, -0.4901142716407776, 0.011387310922145844, 0.05100562795996666, 0.03344227001070976, -0.3225868344306946, 0.6796739101409912, -0.14171737432479858, -0.15912526845932007, 0.013441947288811207, 0.06991590559482574, -0.28547611832618713, -0.5247815847396851, -0.12975075840950012, -0.11072088778018951, -0.2481798380613327, -0.1810455024242401, -0.19595563411712646, 0.186142235994339, -0.24180825054645538, 0.0799875259399414, 0.18440712988376617, 0.10430815070867538, 0.20880872011184692, 0.30791282653808594, 0.3175477683544159, 0.1869809776544571, 0.2180192917585373, 0.6456174850463867, -0.026834771037101746, 0.1363612562417984, 0.8795878887176514, -0.01485099270939827, -0.4421188235282898, 0.0609591081738472, 0.03888697549700737, 0.19514459371566772, 0.7170470952987671, 0.13153254985809326, -0.025613367557525635, 0.1163192018866539, 0.0032524466514587402, -0.4727659523487091, 0.1829003244638443, -0.05912413448095322, -0.12315502017736435, -0.21600431203842163, -0.564152181148529, 0.5555523633956909, -0.0051321834325790405, -0.13790683448314667, 0.041965484619140625, 0.24367740750312805, -0.26424548029899597, 0.18635228276252747, -0.3218274414539337, 0.9684004783630371, -0.09894105792045593, 0.1322307586669922, 0.38936731219291687, -0.09730522334575653, 0.18510031700134277, -0.18197257816791534, -0.07337089627981186, -0.44280269742012024, -0.10077892988920212, -0.006477661430835724, 0.024489883333444595, 0.20480862259864807, 0.18239617347717285, -0.036235325038433075, 0.3673222064971924, -0.1057748943567276, 0.3089865446090698, -0.07307781279087067, 0.3299085199832916, -0.30703166127204895, -0.4310948848724365, -0.5048844218254089, -0.03898026794195175, 0.14116701483726501, 0.5012978911399841, -0.08026864379644394, -0.05449423938989639, -0.3446277976036072, -0.06766888499259949, -0.082321397960186, 0.09869841486215591, 0.08366508781909943, -0.2896372675895691, 0.020303834229707718, -0.1577245593070984, 0.09743984043598175, 0.5933685898780823, 0.413321316242218, -0.01666741818189621, -0.39723125100135803, 0.3572888672351837, -0.23448961973190308, -0.17206966876983643, -0.14368753135204315, -0.0353541262447834, 0.1482301652431488, -0.054948173463344574, -0.47442933917045593, 0.1127443015575409, 0.05502517521381378, -0.07999912649393082, -0.18528404831886292, -0.05746456980705261, 0.2126547247171402, -0.42170998454093933, -0.3011525571346283, -0.08807653188705444, 0.10065831243991852, -0.05017735809087753, -0.008650707080960274, 0.1277957558631897, -0.16364727914333344, -0.027599431574344635, 0.06014162302017212, -0.15479332208633423, -0.10652154684066772, 0.34727030992507935, -0.20632460713386536, -0.4415398836135864, 0.31677088141441345, 0.2023964375257492, 0.1500132530927658, -0.11774415522813797, -0.03763025254011154, 0.7548660635948181, -0.5624105334281921, 0.0031724940054118633, 0.21475456655025482, -0.02699233591556549, 0.11146266758441925, 0.11915422976016998, 0.3031575679779053, -0.18129006028175354, 0.0575140155851841, -0.24363531172275543, -0.29117706418037415, 0.3053273558616638, 0.3202309012413025, 0.3409963548183441, 0.11655334383249283, -0.04873890057206154, -0.0755481943488121, 0.11054152995347977, -0.17323076725006104, 0.06929942220449448, 0.00844639353454113, -0.049667805433273315, -0.0995870903134346, 0.03235867619514465, 0.12218961864709854, -0.19989004731178284, -0.02016853541135788, -0.10071125626564026, -0.25905683636665344, -0.013999134302139282, -0.12635105848312378, 0.22252251207828522, -0.07024997472763062, 0.023152101784944534, -0.1420103907585144, 0.043038107454776764, 0.04128040745854378, -0.3660650849342346, 0.5198351144790649, 0.3572699725627899, 0.04105326533317566, -0.05792946740984917, 0.4400659203529358, 0.05479305237531662, -0.4154490828514099, 0.15070466697216034, 0.07851909101009369, 0.34824860095977783, 0.19262197613716125, -0.06417916715145111, -0.3585236966609955, 0.06745165586471558, 0.3206261992454529, 0.36532101035118103, 0.5689328908920288, 0.21241244673728943, 0.22029772400856018, -0.033249810338020325, 0.1921508014202118, 0.01673717424273491, 0.36356985569000244, 0.2682856619358063, -0.2328220158815384, 0.07842037826776505, 0.09176789224147797, 0.003438839688897133, -0.17749546468257904, 0.03151089325547218, 0.4286074936389923, -0.21658028662204742, 0.014981810003519058, 0.509325385093689, 0.3198595643043518, 0.1227201521396637, -0.24633769690990448, 0.12185246497392654, 0.6115915775299072, 0.2125069946050644, 0.1845817267894745, 0.4006333649158478, -0.13660801947116852, 0.11709613353013992, 0.12692143023014069, 0.2752058804035187, 0.04517269879579544, 0.4005476236343384, -0.3005911111831665, 0.19877392053604126, -0.23282304406166077, 0.2683519423007965, 0.2231561541557312, -0.6401907205581665, -0.1041671484708786, -0.021428987383842468, -0.08164770901203156, -0.07149765640497208, -0.23210904002189636, 0.5196773409843445, -0.2341000884771347, 0.27200427651405334, -0.3178577721118927, 0.10019436478614807, 0.08292395621538162, -0.12734706699848175, -0.04845825582742691, -0.22521740198135376, -0.22282758355140686, 0.0014424920082092285, 0.06893546134233475, -0.4192032814025879, -0.059197619557380676, -0.04688984155654907, -0.1709163635969162, 0.10613317042589188, -0.008713256567716599, 0.028771143406629562, 0.13272139430046082, -0.10003359615802765, 0.10904000699520111, 0.19057515263557434, -0.09075886011123657, 0.48906826972961426, -0.034625500440597534, 0.30730608105659485, 0.04026404395699501, 0.07931451499462128, 0.35577964782714844, 0.1526215374469757, 0.013987904414534569, 0.06508348137140274, 0.08088970184326172, -0.05295795202255249, 0.13631154596805573, 0.07706573605537415, 0.10437261313199997, -0.06283468753099442, -0.1151266098022461, 0.11786753684282303, 0.28261011838912964, -0.24923668801784515, 0.5772534012794495, -0.20952467620372772, -0.01692676544189453, -0.25530898571014404, 0.15393675863742828, -0.28268224000930786, -0.17206253111362457, 0.18468743562698364, 0.07412246614694595, 0.014695275574922562, 0.05922415107488632, -0.014076787047088146, 0.03579600527882576, 0.5791634321212769, 0.24488520622253418, 0.05632476508617401, -0.26826345920562744, -0.2534022927284241, -0.6022000312805176, 0.08260975033044815, 0.29460227489471436, -0.23474553227424622, 0.15881936252117157, -0.03498927503824234, -0.05683550983667374, -0.03353763371706009, -0.0866517424583435, -0.018278421834111214, 0.008546956814825535, 0.10895244777202606, -0.09062198549509048, -0.09630519151687622, -0.15767638385295868, 0.23313546180725098, 0.010208282619714737, 0.0019419901072978973, -0.007205720990896225, 0.02256515622138977, -0.20891687273979187, 0.21632011234760284, 0.11844003200531006, 0.06858855485916138, -0.32651713490486145, 0.3996223509311676, -0.3388630151748657, 0.5439345836639404, 0.025905422866344452, -0.028399581089615822, -0.4252234101295471, -0.22985099256038666, -0.1578381210565567, 0.18703314661979675, -0.0171455480158329, 0.2443436086177826, -0.1587710827589035, -0.20726807415485382, -0.16711600124835968, -0.013400513678789139, 0.21158592402935028, 0.020039541646838188, -0.07158040255308151, -0.0106612928211689, -0.24600547552108765, 0.14772938191890717, 0.39152809977531433, 0.248033344745636, -0.10832144320011139, 0.14278310537338257, -0.040436793118715286, -0.10083963721990585, 0.6995908617973328, -0.10048249363899231, -0.1281145066022873, -0.14029976725578308, 0.16583016514778137, -0.1972978711128235, -0.2625656723976135, -0.49392837285995483, 0.303259938955307, 0.05355260148644447, 0.0022686831653118134, -0.020437421277165413, 0.26757001876831055, -0.17543673515319824, -0.15343749523162842, 0.02445787563920021, -0.00302104651927948, 0.21253827214241028, -0.045209914445877075, -0.19227050244808197, -0.14452065527439117 ]
https://github.com/huggingface/datasets/issues/3300
❓ Dataset loading script from Hugging Face Hub
Thanks for you quick reply @lhoestq and so sorry for my very delayed response. We have gotten around the error another way but I will try to duplicate this when I can. We may have had "filepaths" instead of "filepath" in our def of _generate_examples() and not noticed the difference. If I find a more useful answer for others I will add to this ticket so they know what the issue was. Note: we do have our own _generate_examples() defined with the same def as Quentin has. (But one version does have "filepaths".)
Hi there, I am trying to add my custom `ag_news` with its own loading script on the Hugging Face datasets hub. In particular, I would like to test the addition of a second configuration to the existing `ag_news` dataset. Once it works in my hub, I plan to make a PR to the original dataset. However, in trying to do so I have encountered certain problems as detailed below. Issues I have encountered: - Without a loading script, the train and test files are loaded together into a unique `dataset.Dataset` -> so I wrote a loading script. Also, I need a loading script otherwise I cannot specify multiple configurations - Once my loading script is working locally, I do not manage to make it work on the hub. In particular, I would like to be able to load the dataset like this ```python load_dataset("pietrolesci/ag_news", name="my_configuration") ``` Apparently, the `load_dataset` is able to pick up the loading script from the hub and run it. However, it errors because it is unable to find the files. The structure of my hub repo is the following ``` ag_news.py train.csv test.csv ``` and the loading script I specify `data_dir=Path(__file__).parent` and `data_files=DataFilesDict({"train": "train.csv", "test": "test.csv"})`. In the documentation I could not find info regarding loading a dataset from the hub using a loading script present on the hub. Any suggestion is very much appreciated. Best, Pietro Link to the hub repo: https://huggingface.co/datasets/pietrolesci/ag_news BONUS: how can I make the data viewer work in this specific case? :)
93
❓ Dataset loading script from Hugging Face Hub Hi there, I am trying to add my custom `ag_news` with its own loading script on the Hugging Face datasets hub. In particular, I would like to test the addition of a second configuration to the existing `ag_news` dataset. Once it works in my hub, I plan to make a PR to the original dataset. However, in trying to do so I have encountered certain problems as detailed below. Issues I have encountered: - Without a loading script, the train and test files are loaded together into a unique `dataset.Dataset` -> so I wrote a loading script. Also, I need a loading script otherwise I cannot specify multiple configurations - Once my loading script is working locally, I do not manage to make it work on the hub. In particular, I would like to be able to load the dataset like this ```python load_dataset("pietrolesci/ag_news", name="my_configuration") ``` Apparently, the `load_dataset` is able to pick up the loading script from the hub and run it. However, it errors because it is unable to find the files. The structure of my hub repo is the following ``` ag_news.py train.csv test.csv ``` and the loading script I specify `data_dir=Path(__file__).parent` and `data_files=DataFilesDict({"train": "train.csv", "test": "test.csv"})`. In the documentation I could not find info regarding loading a dataset from the hub using a loading script present on the hub. Any suggestion is very much appreciated. Best, Pietro Link to the hub repo: https://huggingface.co/datasets/pietrolesci/ag_news BONUS: how can I make the data viewer work in this specific case? :) Thanks for you quick reply @lhoestq and so sorry for my very delayed response. We have gotten around the error another way but I will try to duplicate this when I can. We may have had "filepaths" instead of "filepath" in our def of _generate_examples() and not noticed the difference. If I find a more useful answer for others I will add to this ticket so they know what the issue was. Note: we do have our own _generate_examples() defined with the same def as Quentin has. (But one version does have "filepaths".)
[ -0.07174855470657349, -0.3505968451499939, 0.03830910101532936, 0.32804739475250244, 0.03193112090229988, 0.19880911707878113, 0.32330256700515747, 0.10173557698726654, 0.6908871531486511, 0.21112318336963654, -0.17663773894309998, -0.017519814893603325, -0.11545649915933609, 0.42869001626968384, 0.404112845659256, 0.032417066395282745, -0.00010269135236740112, 0.03633209317922592, 0.18708407878875732, 0.018916666507720947, -0.12296272814273834, 0.3319469094276428, 0.10236646234989166, 0.05180416628718376, -0.5313971638679504, 0.20664402842521667, -0.24945807456970215, 0.4917794466018677, 0.061667121946811676, -0.3541393578052521, 0.25833961367607117, 0.39711683988571167, 0.3198557198047638, 0.6629227995872498, -0.0001243055594386533, 0.12372389435768127, 0.17462058365345, -0.13857503235340118, -0.08520063757896423, -0.2658960819244385, 0.08270939439535141, -0.11289168149232864, 0.16289006173610687, -0.03837590664625168, -0.2247486412525177, 0.07604099065065384, 0.003478027880191803, -0.0861070528626442, 0.30659347772598267, 0.20888128876686096, 0.0691947489976883, 0.34758707880973816, -0.13244017958641052, -0.44525834918022156, 0.034778010100126266, 0.18571749329566956, 0.04471588879823685, 0.41623154282569885, 0.2043060064315796, -0.12098325043916702, -0.14196938276290894, -0.0762253850698471, 0.12722639739513397, -0.26404228806495667, 0.39035239815711975, 0.10363396257162094, -0.039812080562114716, -0.22549521923065186, 0.04153760150074959, 0.1174842119216919, 0.3514604866504669, -0.4162600338459015, -0.20694001019001007, -0.5414788126945496, 0.14214280247688293, -0.010567547753453255, 0.23382169008255005, 0.06867808848619461, -0.24332505464553833, 0.28814050555229187, -0.17387785017490387, -0.40401315689086914, -0.19575518369674683, -0.0995674580335617, 0.0653301328420639, -0.12512646615505219, -0.0037573296576738358, 0.07594036310911179, 0.13690520823001862, 0.13484929502010345, 0.17210246622562408, -0.1542002260684967, 0.021161073818802834, 0.21740078926086426, -0.2800222933292389, -0.017925579100847244, 0.0775531455874443, 0.4689209461212158, 0.02878444641828537, 0.3927246332168579, 0.27782586216926575, 0.10542339086532593, -0.3393217921257019, -0.009707875549793243, 0.2878979742527008, 0.3157760202884674, 0.16174203157424927, 0.035503774881362915, 0.03661520034074783, 0.47732681035995483, 0.07900361716747284, -0.059324972331523895, -0.3967249393463135, -0.2549375593662262, -0.18342982232570648, -0.17470082640647888, 0.1804809719324112, -0.09306611120700836, -0.048625774681568146, -0.004253013990819454, 0.4456157982349396, 0.03792842850089073, 0.321186900138855, 0.5832656025886536, 0.0006400642450898886, 0.041834406554698944, -0.0633491724729538, 0.2077430635690689, -0.2767314910888672, 0.0921916514635086, -0.23637376725673676, 0.212691530585289, -0.1577061116695404, 0.44223520159721375, 0.35629263520240784, -0.18444254994392395, 0.2725764513015747, -0.10914526879787445, 0.29593583941459656, -0.0594245046377182, -0.44318005442619324, 0.13221527636051178, -0.05185481160879135, 0.20715370774269104, 0.37308773398399353, 0.14252296090126038, 0.03398140147328377, -0.1856350302696228, -0.22560685873031616, 0.03873094916343689, -0.09835534542798996, -0.44466641545295715, 0.1678171455860138, -0.001321207731962204, -0.7579593062400818, -0.06775083392858505, -0.2606964409351349, 0.02379509061574936, -0.3291983902454376, -0.1292710155248642, -0.06972800940275192, 0.15721124410629272, -0.04435158520936966, -0.13661032915115356, 0.38697516918182373, 0.8359974026679993, -0.21975471079349518, -0.2807493805885315, 0.04746323078870773, -0.30416715145111084, -0.24093496799468994, 0.10061994194984436, -0.16255289316177368, 0.41395869851112366, -0.36658650636672974, -0.002495691180229187, 0.04700873792171478, -0.5898001194000244, -0.36208197474479675, 0.19248636066913605, -0.36668962240219116, 0.3581028878688812, 0.19303801655769348, 0.18975363671779633, -0.1515367478132248, -0.12133441120386124, 0.05434674024581909, 0.04843827709555626, -0.00820702500641346, -0.15757356584072113, 0.045785803347826004, -0.10290752351284027, -0.1410522162914276, 0.37000569701194763, 0.039071302860975266, 0.19537806510925293, -0.0022864192724227905, -0.08813472837209702, 0.29120340943336487, 0.02157331258058548, 0.014918491244316101, 0.1352945864200592, 0.10524414479732513, 0.27691158652305603, 0.03277026116847992, 0.08208029717206955, -0.673173725605011, 0.4726196825504303, -0.14513936638832092, -0.07479286193847656, -0.02085491269826889, -0.0187928918749094, -0.4844644069671631, -0.07575847208499908, -0.26751935482025146, -0.08248980343341827, -0.08866962790489197, 0.07193748652935028, 0.10656064748764038, -0.1648091971874237, -0.4099763333797455, 0.6543112397193909, -0.11033694446086884, 0.1522454172372818, -0.7318336963653564, 0.4408033490180969, 0.17613837122917175, -0.05674285441637039, 0.06992944329977036, 0.18130072951316833, 0.20327675342559814, -0.0794852003455162, 0.14083799719810486, 0.3896510899066925, 0.2042531967163086, 0.538311779499054, 0.3462734520435333, -0.01896841824054718, 0.16576291620731354, -0.17393067479133606, 0.16292661428451538, -0.2703404724597931, 0.02045241743326187, -0.047353558242321014, -0.2975185811519623, 0.29792457818984985, -0.5891467928886414, 0.21739575266838074, 0.12418149411678314, -0.12019552290439606, 0.05321710556745529, -0.035548675805330276, -0.35293474793434143, -0.18706123530864716, 0.08259302377700806, 0.17700137197971344, 0.25788483023643494, -0.06893771886825562, -0.08415711671113968, -0.06222543865442276, 0.005836088210344315, -0.07480842620134354, -0.10278817266225815, 0.07158007472753525, -0.11630817502737045, 0.15511640906333923, -0.0510939285159111, 0.09071099758148193, 0.32504433393478394, 0.05460949242115021, -0.14203394949436188, 0.41316860914230347, 0.11073943972587585, -0.3293682932853699, -0.010784193873405457, 0.03339877352118492, 0.06364123523235321, 0.24690097570419312, -0.2849288880825043, -0.05725337937474251, -0.1804654598236084, -0.24015922844409943, -0.05687732994556427, 0.002076847478747368, -0.4922875761985779, -0.1937585026025772, -0.06866113096475601, 0.03386987745761871, -0.3145110011100769, -0.40244314074516296, -0.1901722252368927, -0.12084932625293732, -0.05404089391231537, 0.23465190827846527, 0.03851494565606117, -0.08898089826107025, -0.010223880410194397, 0.427848219871521, -0.2084943652153015, -0.21074014902114868, -0.1379932463169098, -0.19475197792053223, 0.042085736989974976, -0.0867423489689827, 0.09403672814369202, 0.31186220049858093, 0.08486386388540268, -0.3916739821434021, 0.1454077661037445, -0.2211446911096573, 0.04904545843601227, 0.15622135996818542, -0.025006748735904694, 0.22021698951721191, 0.15851911902427673, 0.19614635407924652, 0.1072445958852768, -0.11158078163862228, 0.2155294120311737, -0.3049221932888031, 0.012911228463053703, -0.12523478269577026, 0.08955814689397812, -0.082431361079216, 0.012977290898561478, -0.21282988786697388, -0.18026964366436005, -0.3353614807128906, 0.2832256555557251, 0.2986798584461212, 0.040462300181388855, 0.08733411133289337, 0.06062242016196251, 0.13311076164245605, -0.07274692505598068, -0.22736471891403198, -0.11721237748861313, -0.5437436699867249, 0.3262854814529419, -0.2810083329677582, -0.28552815318107605, 0.23951148986816406, 0.01669105514883995, 0.2565174400806427, -0.22509537637233734, -0.3971226215362549, -0.27158787846565247, 0.017112549394369125, 0.0989719033241272, 0.20263954997062683, 0.07310150563716888, 0.1833968162536621, -0.10829566419124603, 0.16878320276737213, -0.15059709548950195, -0.3926456868648529, 0.1044902428984642, 0.14297008514404297, -0.03935184329748154, 0.07414853572845459, -0.022589709609746933, -0.39596685767173767, 0.33282923698425293, 0.3965255320072174, 0.11054210364818573, 0.2867382764816284, -0.2517837882041931, 0.5248042941093445, -0.20128917694091797, -0.3014823794364929, -0.40097540616989136, 0.03587651252746582, -0.17439910769462585, 0.3919109106063843, 0.12142843008041382, 0.46951743960380554, -0.40674102306365967, -0.25598961114883423, -0.18264400959014893, -0.29432618618011475, 0.1282842606306076, -0.05321641266345978, -0.02537386864423752, -0.09987284243106842, 0.14093446731567383, -0.2551751434803009, -0.0756916031241417, 0.30462968349456787, 0.37692344188690186, 0.42525219917297363, 0.037137504667043686, -0.36499708890914917, -0.157936692237854, -0.489595890045166, 0.13879865407943726, -0.17832642793655396, -0.055578432977199554, -0.07418983429670334, -0.06674747914075851, 0.019222483038902283, 0.08694811910390854, 0.7183206677436829, -0.21243417263031006, 0.012090276926755905, 0.05793026462197304, -0.40139034390449524, -0.5072152018547058, 0.017914723604917526, 0.03800947591662407, 0.09370549023151398, -0.34293463826179504, 0.6921223402023315, -0.08686239272356033, -0.18312354385852814, 0.01714531145989895, 0.056313544511795044, -0.2664823532104492, -0.5241478681564331, -0.12117116153240204, -0.11616761237382889, -0.24346201121807098, -0.19574972987174988, -0.15277592837810516, 0.17265444993972778, -0.2604469060897827, 0.07125809788703918, 0.20692630112171173, 0.08391104638576508, 0.20284783840179443, 0.24354450404644012, 0.3111885190010071, 0.1665828973054886, 0.2156134396791458, 0.6614494323730469, 0.05844520404934883, 0.16958163678646088, 0.8710243105888367, -0.04805612936615944, -0.43284040689468384, 0.10825368016958237, 0.026347029954195023, 0.1979406177997589, 0.7204577922821045, 0.09883446246385574, -0.04691915959119797, 0.11930263787508011, -0.029094308614730835, -0.47188761830329895, 0.16372370719909668, -0.07191198319196701, -0.13224799931049347, -0.19266842305660248, -0.5201935172080994, 0.5345657467842102, -0.004299065098166466, -0.12384749948978424, 0.04738926887512207, 0.23235511779785156, -0.2682555615901947, 0.166651651263237, -0.3359677791595459, 0.9343624711036682, -0.11859031021595001, 0.12623770534992218, 0.34946516156196594, -0.10147464275360107, 0.14587461948394775, -0.1952822208404541, -0.07009398192167282, -0.42075374722480774, -0.14286987483501434, -0.016918139532208443, 0.00048740580677986145, 0.19654381275177002, 0.2166086882352829, -0.005964856594800949, 0.3914327025413513, -0.10600169003009796, 0.3241328299045563, -0.05519714206457138, 0.32258862257003784, -0.3026927709579468, -0.4263550043106079, -0.47686976194381714, -0.03321514278650284, 0.16425608098506927, 0.509651243686676, -0.09366253763437271, -0.024087030440568924, -0.3082396686077118, -0.09708832204341888, -0.06283006072044373, 0.09148827195167542, 0.062363822013139725, -0.2957994341850281, 0.029640527442097664, -0.12216535210609436, 0.13527244329452515, 0.5728510022163391, 0.38926059007644653, -0.04187769070267677, -0.40721824765205383, 0.3616274297237396, -0.22644564509391785, -0.19753797352313995, -0.12974795699119568, -0.043310243636369705, 0.14590772986412048, -0.03544573113322258, -0.44112277030944824, 0.0826239138841629, 0.023236509412527084, -0.09473460912704468, -0.16741034388542175, -0.041329510509967804, 0.2313893437385559, -0.4198223650455475, -0.3168599009513855, -0.10457983613014221, 0.08862042427062988, -0.054461028426885605, 0.002899661660194397, 0.13874688744544983, -0.1322804093360901, -0.05689013749361038, 0.07235101610422134, -0.1518038511276245, -0.1072203665971756, 0.3512504994869232, -0.21246418356895447, -0.4336373209953308, 0.31103742122650146, 0.22958378493785858, 0.13528864085674286, -0.13750934600830078, -0.06066005676984787, 0.7895259261131287, -0.558803379535675, 0.02152380347251892, 0.2149348258972168, -0.015585489571094513, 0.09932638704776764, 0.10870032012462616, 0.3130750060081482, -0.2001667022705078, 0.028048265725374222, -0.2887372672557831, -0.27541103959083557, 0.3105780780315399, 0.31170952320098877, 0.32448267936706543, 0.10799940675497055, -0.0788908302783966, -0.03641699254512787, 0.0485006645321846, -0.18506011366844177, 0.0981229767203331, -0.02563142403960228, -0.059408947825431824, -0.07309246808290482, 0.03759589046239853, 0.14279377460479736, -0.1839805245399475, -0.02110336534678936, -0.11133928596973419, -0.23807427287101746, -0.024908801540732384, -0.08850018680095673, 0.21253526210784912, -0.07134810835123062, 0.036038756370544434, -0.14566023647785187, 0.02338368073105812, 0.012978028506040573, -0.3566499650478363, 0.4900662899017334, 0.3856283724308014, 0.04393986240029335, -0.060698606073856354, 0.4248221218585968, -0.000622279942035675, -0.41635662317276, 0.14585641026496887, 0.1086285263299942, 0.37120604515075684, 0.17647267878055573, -0.07625505328178406, -0.37319445610046387, 0.06476089358329773, 0.2832169234752655, 0.36376890540122986, 0.5504496097564697, 0.2587738037109375, 0.19292858242988586, -0.043126948177814484, 0.18649902939796448, 0.0319705605506897, 0.3499256372451782, 0.2472793608903885, -0.243631049990654, 0.09142351895570755, 0.0918988436460495, 0.017951838672161102, -0.19723577797412872, 0.03735277056694031, 0.43363115191459656, -0.18096578121185303, 0.0077910348773002625, 0.4765568971633911, 0.3312242925167084, 0.10223506391048431, -0.22946052253246307, 0.11687653511762619, 0.626563549041748, 0.1932770311832428, 0.18296673893928528, 0.35902106761932373, -0.1156797707080841, 0.13581380248069763, 0.12436996400356293, 0.25605928897857666, 0.04849887266755104, 0.43123501539230347, -0.2946915030479431, 0.20554539561271667, -0.21469733119010925, 0.2901763617992401, 0.20950905978679657, -0.6437671780586243, -0.10698804259300232, -0.018117547035217285, -0.06017300486564636, -0.12311737984418869, -0.28509652614593506, 0.5004768371582031, -0.25051406025886536, 0.3184940218925476, -0.3202362656593323, 0.06052163988351822, 0.06370928138494492, -0.11068789660930634, -0.05637919157743454, -0.23745009303092957, -0.19103509187698364, 0.0042658112943172455, 0.0499727688729763, -0.34951138496398926, -0.07210145890712738, -0.06326454877853394, -0.15288203954696655, 0.11423955112695694, 0.022197071462869644, 0.03327852487564087, 0.0866866335272789, -0.07285181432962418, 0.14664331078529358, 0.16359049081802368, -0.07110995054244995, 0.5068853497505188, -0.020379221066832542, 0.3126237094402313, 0.05151880532503128, 0.10662238299846649, 0.3054390847682953, 0.14262044429779053, 0.0056418124586343765, 0.06334010511636734, 0.09197641164064407, -0.07431395351886749, 0.14660969376564026, 0.08708405494689941, 0.11447572708129883, -0.05950506776571274, -0.10701091587543488, 0.12940680980682373, 0.2687165141105652, -0.24540887773036957, 0.5594808459281921, -0.22856295108795166, -0.02015133574604988, -0.2797245383262634, 0.15231701731681824, -0.27707260847091675, -0.18046189844608307, 0.23197905719280243, 0.0661608949303627, 0.016440708190202713, 0.06719392538070679, -0.006688237190246582, 0.02555309794843197, 0.5663999915122986, 0.2765063941478729, 0.037239499390125275, -0.2740528881549835, -0.24223574995994568, -0.6043913960456848, 0.09124112874269485, 0.2904205620288849, -0.19656915962696075, 0.16318759322166443, -0.02322591096162796, -0.05553371459245682, -0.04624871164560318, -0.015224337577819824, -0.03165970370173454, 0.02675841748714447, 0.06589208543300629, -0.06775256246328354, -0.10880729556083679, -0.13964615762233734, 0.2466677874326706, 0.013117514550685883, -0.00007598474621772766, -0.022725846618413925, 0.04135991260409355, -0.20389237999916077, 0.18509218096733093, 0.12980318069458008, 0.04998786374926567, -0.35280266404151917, 0.40860480070114136, -0.3458428382873535, 0.5204707980155945, 0.019647538661956787, -0.014122000895440578, -0.42377910017967224, -0.2581848204135895, -0.11872687190771103, 0.18514135479927063, -0.03871598467230797, 0.20740018784999847, -0.19612449407577515, -0.18047870695590973, -0.18088729679584503, -0.05188878998160362, 0.1755537986755371, 0.044351764023303986, -0.12329017370939255, -0.0021338704973459244, -0.25887495279312134, 0.14941191673278809, 0.40037572383880615, 0.23471426963806152, -0.12518943846225739, 0.13112643361091614, -0.035230331122875214, -0.09559769928455353, 0.6918137669563293, -0.10366582125425339, -0.12498430907726288, -0.10270185023546219, 0.1866309493780136, -0.19429674744606018, -0.231916606426239, -0.4511535167694092, 0.2845418453216553, 0.05723634362220764, 0.027028363198041916, -0.02993919514119625, 0.21110382676124573, -0.17577217519283295, -0.13539960980415344, 0.036576274782419205, -0.020049206912517548, 0.20694515109062195, -0.05873899906873703, -0.18240204453468323, -0.13753703236579895 ]
https://github.com/huggingface/datasets/issues/3299
Add option to find unique elements in nested sequences when calling `Dataset.unique`
Hi! Not yet, would you be interested in contributing a PR? I can give you some pointers if needed.
It would be nice to have an option to flatten nested sequences to find unique elements stored in them when calling `Dataset.unique`. ~~Currently, `Dataset.unique` only supports finding unique sequences and not unique elements in that situation.~~
19
Add option to find unique elements in nested sequences when calling `Dataset.unique` It would be nice to have an option to flatten nested sequences to find unique elements stored in them when calling `Dataset.unique`. ~~Currently, `Dataset.unique` only supports finding unique sequences and not unique elements in that situation.~~ Hi! Not yet, would you be interested in contributing a PR? I can give you some pointers if needed.
[ -0.23646816611289978, -0.49737149477005005, -0.19732894003391266, -0.01977068930864334, -0.07678455859422684, 0.13974592089653015, -0.2500278353691101, 0.2588551342487335, -0.04954878240823746, 0.17132528126239777, 0.19754545390605927, 0.30133065581321716, -0.14158999919891357, 0.22067517042160034, 0.03621888533234596, -0.04340749979019165, 0.13659130036830902, -0.008385077118873596, 0.6932904720306396, 0.09062027931213379, -0.5759093761444092, 0.20170855522155762, -0.3796192407608032, -0.1394469290971756, 0.03868028149008751, 0.05766042694449425, -0.23758327960968018, -0.000855274498462677, 0.11135638505220413, -0.5969688296318054, 0.2055785357952118, 0.6633158326148987, 0.05709338188171387, 0.3605780601501465, -0.00012567912926897407, -0.1846986711025238, 0.6152880191802979, -0.03070037253201008, -0.33660823106765747, 0.01057484745979309, -0.47119688987731934, 0.04260663688182831, -0.01266645360738039, -0.2118178904056549, -0.24564075469970703, -0.11839974671602249, -0.11212070286273956, -0.49084946513175964, 0.05206119641661644, -0.13346713781356812, 0.1216764748096466, 0.13608798384666443, 0.07877907156944275, -0.24472568929195404, 0.14927181601524353, 0.48344117403030396, -0.10132255405187607, 0.07794934511184692, 0.738534688949585, 0.034198686480522156, 0.4530221223831177, 0.07065227627754211, -0.10826543718576431, -0.4073336124420166, 0.2674155533313751, -0.20141926407814026, -0.2969118356704712, -0.1550634652376175, -0.04541459679603577, 0.2604160010814667, 0.6176739931106567, 0.006756976246833801, -0.3229477107524872, -0.35191306471824646, 0.18531501293182373, -0.3733636438846588, 0.19572794437408447, -0.08030232787132263, -0.4311292767524719, 0.08444161713123322, -0.35438573360443115, -0.45643875002861023, -0.16509905457496643, 0.32253497838974, 0.3391968011856079, 0.2196468710899353, 0.18020644783973694, -0.18472915887832642, 0.4361681044101715, 0.02558887004852295, 0.13481351733207703, 0.1357218623161316, 0.31379786133766174, 0.12710073590278625, -0.12945982813835144, -0.35934320092201233, 0.07597778737545013, -0.11893164366483688, 0.21961697936058044, -0.027465075254440308, 0.5387501120567322, 0.09113968908786774, -0.04560953751206398, 0.09280736744403839, 0.2256888449192047, 0.1333598792552948, 0.3234126567840576, -0.2830924093723297, 0.0038375332951545715, 0.10723511874675751, -0.2164044827222824, 0.014926126226782799, 0.09221629053354263, 0.25098052620887756, 0.1725878119468689, 0.4156872630119324, 0.29401934146881104, -0.20890189707279205, 0.08211370557546616, -0.07393636554479599, -0.35731956362724304, -0.6020513772964478, 0.14345301687717438, 0.10467356443405151, 0.29879966378211975, -0.06234239786863327, -0.0870075523853302, -0.25300508737564087, -0.04434685409069061, -0.5249996781349182, -0.06574304401874542, -0.09241056442260742, 0.010589107871055603, 0.21053920686244965, 0.005476631224155426, -0.1367982029914856, 0.05994323641061783, 0.07339440286159515, 0.2047000229358673, 0.06575256586074829, 0.30188658833503723, 0.4000672399997711, 0.2728610634803772, -0.059063445776700974, -0.46574729681015015, -0.05567830801010132, -0.06888270378112793, 0.1599695384502411, -0.21413838863372803, 0.27233532071113586, -0.22301414608955383, -0.7378581166267395, -0.025366006419062614, 0.07274750620126724, -0.17695820331573486, 0.02691742219030857, 0.28853848576545715, 0.3522486388683319, 0.11754126846790314, -0.16859588027000427, 0.21812348067760468, 0.07262341678142548, -0.43424418568611145, -0.12399664521217346, -0.020687995478510857, 0.10506954044103622, -0.174289271235466, 0.13485300540924072, -0.6799170970916748, 0.23180840909481049, -0.03991963714361191, -0.04786894842982292, -0.09836883842945099, 0.2189781665802002, -0.20537514984607697, 0.024023793637752533, 0.017602771520614624, -0.07822935283184052, 0.10697965323925018, 0.335960328578949, -0.026225052773952484, 0.14917249977588654, 0.4208517372608185, 0.15687067806720734, 0.1994224339723587, -0.17210493981838226, 0.2537456750869751, -0.03799942880868912, -0.11459553241729736, -0.31543442606925964, -0.3206261992454529, -0.08915045857429504, 0.2613239288330078, -0.06468562036752701, -0.31611618399620056, 0.14448535442352295, 0.10737371444702148, 0.052555084228515625, 0.35831254720687866, -0.15376384556293488, -0.04088836908340454, 0.33054304122924805, 0.5153453350067139, -0.01440940797328949, -0.004348923452198505, -0.2052176594734192, -0.39107924699783325, -0.02037249132990837, -0.5588215589523315, -0.0576159805059433, -0.022548943758010864, -0.5257939100265503, -0.03792528063058853, 0.10969875007867813, -0.03339115157723427, -0.0019149519503116608, 0.012846074998378754, 0.12907662987709045, 0.12149274349212646, -0.26851415634155273, -0.32650700211524963, -0.16214695572853088, 0.08444733917713165, -0.09440696984529495, -0.4694603979587555, 0.19271919131278992, 0.24299277365207672, 0.0870528370141983, -0.012183979153633118, 0.3322400450706482, 0.23489075899124146, -0.38554418087005615, -0.10959599167108536, 0.4128549098968506, 0.007735207676887512, -0.05377796292304993, 0.13534584641456604, 0.0013578832149505615, 0.1396571844816208, -0.3473247289657593, -0.18977738916873932, 0.1391422599554062, -0.19219842553138733, -0.034426249563694, -0.33016854524612427, 0.402265727519989, -0.3949219882488251, 0.14264124631881714, -0.17334309220314026, -0.0225518885999918, -0.2296125739812851, -0.168660968542099, 0.08906271308660507, -0.37516021728515625, 0.10652360320091248, 0.1868044137954712, -0.10026507079601288, 0.05727725476026535, -0.6891198754310608, 0.40106964111328125, 0.03227744251489639, -0.17933817207813263, -0.12233767658472061, 0.3709228038787842, 0.4415956437587738, -0.12601575255393982, 0.3086639642715454, 0.20317904651165009, 0.33475062251091003, 0.3278866410255432, 0.05913529545068741, 0.058603160083293915, 0.14017923176288605, -0.09800683706998825, 0.283246248960495, 0.10346779227256775, -0.3585711717605591, -0.2330760657787323, 0.046720873564481735, 0.10022896528244019, -0.31331631541252136, -0.21872523427009583, 0.09120768308639526, 0.010292897932231426, 0.07944589853286743, -0.2151452600955963, -0.22652126848697662, -0.12481452524662018, -0.11541765928268433, -0.2411847561597824, -0.16952122747898102, -0.3064081370830536, 0.439744234085083, 0.3540077805519104, -0.16915659606456757, 0.2994614243507385, 0.1695883721113205, 0.7300615310668945, 0.08730804175138474, -0.03995843976736069, -0.2481417953968048, -0.040732596069574356, 0.11161328107118607, 0.019300051033496857, 0.1670437455177307, -0.0005986683536320925, 0.44564032554626465, 0.4644557535648346, 0.31091153621673584, -0.36481964588165283, -0.5003310441970825, -0.15580707788467407, 0.08910511434078217, -0.26920396089553833, 0.19973397254943848, -0.11806334555149078, 0.11328127980232239, -0.38922449946403503, -0.01292343344539404, 0.1905503123998642, -0.13125531375408173, -0.2222384214401245, 0.09726887941360474, 0.02611141838133335, -0.1664360761642456, -0.05746554583311081, -0.0741499811410904, -0.5097857713699341, 0.308057963848114, -0.28917405009269714, 0.17976495623588562, -0.43825915455818176, -0.19683462381362915, -0.14327995479106903, -0.19447658956050873, -0.07419829070568085, -0.10468484461307526, -0.3821335732936859, 0.14232806861400604, -0.24756594002246857, -0.028585460036993027, -0.2661910951137543, -0.2737894058227539, 0.4013809561729431, 0.17507371306419373, -0.07019812613725662, -0.26383182406425476, -0.019898829981684685, -0.04325687512755394, 0.010683003813028336, -0.2328811138868332, 0.265259325504303, 0.3863573670387268, -0.12520146369934082, 0.08609051257371902, -0.07650239765644073, 0.05162158980965614, 0.2582682967185974, 0.46568426489830017, 0.26117751002311707, 0.023887159302830696, -0.004374004900455475, 0.002778962254524231, 0.3503080904483795, 0.22599530220031738, 0.20875641703605652, 0.02657272480428219, 0.007952172309160233, -0.08235343545675278, -0.49037253856658936, -0.4584457576274872, 0.17165476083755493, -0.15631818771362305, 0.38469886779785156, 0.043922219425439835, -0.17135901749134064, 0.08621466159820557, -0.20116744935512543, 0.19514614343643188, -0.18380089104175568, 0.051772069185972214, -0.09836798906326294, 0.5624120235443115, -0.16176752746105194, -0.16577734053134918, -0.2976455092430115, -0.1324462741613388, -0.0268895011395216, -0.10917854309082031, 0.38944685459136963, -0.21614496409893036, -0.23405170440673828, -0.3470642566680908, -0.0949900671839714, 0.2325490564107895, 0.2403426468372345, 0.3573642671108246, -0.23170733451843262, -0.11155503243207932, 0.21574553847312927, 0.2978294789791107, 0.7655254602432251, -0.2928839325904846, -0.28511154651641846, 0.20417532324790955, -0.5038580894470215, -0.11945644021034241, 0.22993098199367523, 0.24023786187171936, 0.035222798585891724, -0.27983441948890686, 0.39891576766967773, -0.04691237956285477, -0.05271647870540619, 0.23726020753383636, 0.24833041429519653, -0.1356627643108368, -0.6662588119506836, 0.19946081936359406, 0.04913327097892761, -0.11850616335868835, 0.1556604951620102, 0.04675748944282532, 0.026246262714266777, 0.10721621662378311, -0.4415662884712219, 0.11075635254383087, -0.10111415386199951, 0.3761024475097656, -0.18833063542842865, 0.1156412661075592, 0.05071775242686272, 0.2362009882926941, 0.27134960889816284, -0.18377229571342468, 0.013540640473365784, 0.24699975550174713, -0.26343032717704773, 0.08770839869976044, -0.4068062901496887, -0.3829008936882019, 0.44825080037117004, 0.40702322125434875, 0.05355320870876312, 0.550605297088623, 0.04426104947924614, 0.35250139236450195, -0.2953481674194336, -0.3561873137950897, -0.2849956154823303, 0.005011892877519131, -0.44830799102783203, -0.365346223115921, 0.4083443880081177, -0.16126522421836853, -0.3177655339241028, 0.5569073557853699, 0.1582202911376953, -0.21140074729919434, 0.2200508713722229, -0.12195991724729538, 1.1120853424072266, 0.23571673035621643, -0.12405084073543549, -0.17902430891990662, 0.11379189789295197, 0.061109401285648346, -0.0017026737332344055, 0.05808115005493164, 0.09192797541618347, -0.3510388433933258, -0.11599700897932053, 0.13006415963172913, -0.03824050724506378, 0.2717365324497223, -0.4302021563053131, 0.24376577138900757, 0.361405611038208, -0.16560806334018707, 0.02439481019973755, 0.2549521327018738, 0.2726268470287323, 0.029680322855710983, 0.20922429859638214, -0.04420774430036545, 0.0771503672003746, 0.3710405230522156, 0.15120255947113037, -0.4416190981864929, 0.2916069030761719, -0.2085850089788437, -0.05498757213354111, -0.4932430684566498, 0.14851969480514526, 0.1951899528503418, 0.26386407017707825, -0.3100730776786804, 0.3965266942977905, 0.019045770168304443, 0.4193662405014038, -0.11617632210254669, -0.2100454866886139, -0.26889464259147644, 0.43103301525115967, 0.21639792621135712, -0.3638194501399994, -0.2408088892698288, 0.2826024293899536, 0.03424013406038284, -0.017729997634887695, 0.26529473066329956, -0.02197091653943062, -0.41796523332595825, -0.20820853114128113, 0.12969060242176056, -0.3640710711479187, -0.14546886086463928, -0.16334308683872223, 0.017608389258384705, -0.36015769839286804, -0.24222487211227417, 0.022614171728491783, 0.22060330212116241, -0.15626735985279083, 0.09695111215114594, 0.11714735627174377, -0.0823790654540062, -0.05562513694167137, 0.17281226813793182, 0.24661225080490112, -0.08928273618221283, 0.3002711534500122, -0.06284058839082718, -0.0826965719461441, -0.21027123928070068, -0.08422847837209702, -0.03218536451458931, -0.252032071352005, 0.35208240151405334, -0.11311894655227661, 0.10695719718933105, 0.19050095975399017, -0.08140528202056885, 0.15332898497581482, 0.2346753478050232, -0.17989873886108398, 0.03164796531200409, -0.33202314376831055, 0.14027516543865204, 0.03828710690140724, 0.4470232129096985, -0.4621956944465637, 0.1290876716375351, 0.055314548313617706, -0.16664540767669678, -0.21129107475280762, -0.033367715775966644, -0.1068471372127533, -0.19254295527935028, 0.3357546031475067, 0.33363354206085205, -0.23894041776657104, -0.0273892804980278, -0.0001319386065006256, -0.02348027005791664, -0.1296384632587433, -0.015287655405700207, -0.013262276537716389, 0.2252659946680069, -0.019014406949281693, 0.35971972346305847, 0.3338843584060669, 0.16048073768615723, 0.1621599942445755, -0.1438988894224167, -0.04915593937039375, -0.28852367401123047, -0.028886236250400543, 0.3191666007041931, 0.32127970457077026, -0.4743331968784332, -0.26712489128112793, 0.2544214725494385, 0.2266683131456375, 0.1885630190372467, -0.04223163053393364, 0.16159610450267792, -0.32180479168891907, -0.16068336367607117, 0.13907113671302795, 0.21952936053276062, -0.35079896450042725, -0.16091489791870117, 0.3110474944114685, 0.5585947036743164, -0.20086416602134705, 0.31548798084259033, 0.08230629563331604, -0.11101345717906952, -0.13168881833553314, 0.043934158980846405, -0.2254227101802826, 0.10297033935785294, -0.26005154848098755, -0.12433476001024246, 0.23361824452877045, 0.169434055685997, 0.12170161306858063, 0.12549889087677002, 0.46137985587120056, 0.025533527135849, 0.1299126148223877, -0.017306465655565262, 0.28534412384033203, -0.32837212085723877, 0.4367711842060089, 0.2769474685192108, 0.15068469941616058, -0.05334031954407692, 0.14773567020893097, 0.020694755017757416, 0.0921434536576271, 0.2860565185546875, 0.12582889199256897, 0.4247373044490814, 0.7037725448608398, 0.06515371799468994, 0.2623165249824524, 0.15768688917160034, 0.17991052567958832, 0.24255843460559845, 0.2785515785217285, 0.19292637705802917, 0.45233991742134094, 0.4118799865245819, -0.14082399010658264, -0.036026645451784134, -0.03628743439912796, 0.1240481585264206, 0.2880423367023468, 0.02310202270746231, -0.10765007138252258, -0.2507551908493042, -0.18198367953300476, -0.21607835590839386, 0.2500593662261963, -0.12390047311782837, 0.4392779767513275, -0.23136301338672638, 0.5055703520774841, -0.1539939045906067, 0.0962570384144783, 0.16555920243263245, 0.22103583812713623, -0.3404502868652344, 0.11978323012590408, 0.44948405027389526, -0.25076577067375183, 0.680622398853302, 0.09185504168272018, 0.11414171755313873, 0.098207987844944, 0.001262269914150238, 0.16484184563159943, -0.4029308259487152, -0.14986847341060638, -0.01392910722643137, 0.22184278070926666, -0.05032967031002045, -0.1701405942440033, 0.060725901275873184, 0.022392669692635536, -0.04422850161790848, 0.2955915033817291, 0.27548888325691223, 0.1193612813949585, -0.3707120418548584, 0.3635190427303314, 0.3966832458972931, -0.44496703147888184, -0.001779448240995407, -0.2100202441215515, -0.08744338899850845, -0.16233542561531067, 0.30591723322868347, 0.020860807970166206, 0.015386547893285751, 0.2162604182958603, 0.02103441208600998, -0.16201068460941315, 0.278298020362854, 0.009905688464641571, -0.35195091366767883, 0.11244621872901917, -0.3417583703994751, -0.5602360963821411, -0.01010245829820633, 0.15085558593273163, 0.04508510231971741, 0.6183289289474487, -0.2870692312717438, 0.00775502622127533, -0.04849755018949509, 0.2615576386451721, -0.38970741629600525, -0.29531076550483704, 0.14235147833824158, -0.6190704703330994, -0.15794242918491364, 0.5033097863197327, 0.12448856234550476, -0.09461864829063416, 0.055436767637729645, 0.2751433551311493, -0.22746145725250244, -0.1362278312444687, -0.08293477445840836, 0.1283949762582779, -0.05012981593608856, 0.11292251199483871, -0.01648908108472824, 0.01605992205440998, 0.04620899632573128, -0.04070661962032318, 0.11878327280282974, 0.22146372497081757, -0.00044802576303482056, 0.20825907588005066, 0.4052314758300781, 0.3573252856731415, 0.3705417811870575, -0.23058034479618073, -0.24752573668956757, -0.17288772761821747, 0.2820039689540863, -0.22475336492061615, -0.19269944727420807, -0.3166433870792389, 0.4231291115283966, -0.2742093801498413, 0.11800815910100937, 0.24906449019908905, 0.16308636963367462, -0.032437242567539215, 0.18935760855674744, -0.14785601198673248, -0.2896021008491516, 0.4990726709365845, 0.07357733696699142, -0.3346393406391144, 0.03219157084822655, 0.028503701090812683, 0.05693918094038963, -0.02060016430914402, -0.10478022694587708, -0.31415459513664246, 0.4064877927303314, -0.009614184498786926, -0.02728552371263504, 0.3026297390460968, -0.0939105898141861, -0.047180015593767166, -0.08156909048557281, 0.11947552859783173, 0.26101672649383545, -0.11553332209587097, 0.12179051339626312, -0.09715000540018082 ]
https://github.com/huggingface/datasets/issues/3299
Add option to find unique elements in nested sequences when calling `Dataset.unique`
@mariosasko did this ever get implemented? Willing to help if you are still up for it.
It would be nice to have an option to flatten nested sequences to find unique elements stored in them when calling `Dataset.unique`. ~~Currently, `Dataset.unique` only supports finding unique sequences and not unique elements in that situation.~~
16
Add option to find unique elements in nested sequences when calling `Dataset.unique` It would be nice to have an option to flatten nested sequences to find unique elements stored in them when calling `Dataset.unique`. ~~Currently, `Dataset.unique` only supports finding unique sequences and not unique elements in that situation.~~ @mariosasko did this ever get implemented? Willing to help if you are still up for it.
[ -0.21620333194732666, -0.4795307219028473, -0.1933363378047943, 0.025574419647455215, -0.0952862948179245, 0.07261665910482407, -0.09976717829704285, 0.2264280617237091, 0.00509527325630188, 0.2609368860721588, 0.22479911148548126, 0.29777589440345764, -0.1340160369873047, 0.17590750753879547, 0.040268369019031525, 0.07260392606258392, 0.10518521815538406, 0.0216735377907753, 0.608113169670105, 0.11321552097797394, -0.5289525985717773, 0.2204061597585678, -0.3390923738479614, -0.21851633489131927, -0.007164079695940018, 0.1625663936138153, -0.29869604110717773, -0.046846047043800354, 0.16126106679439545, -0.5780211687088013, 0.292893648147583, 0.631492018699646, 0.028891433030366898, 0.345696359872818, -0.0001280613214476034, -0.10981965810060501, 0.6754508018493652, -0.03947647660970688, -0.3897676169872284, 0.006372928619384766, -0.48087215423583984, 0.053928859531879425, -0.004584432579576969, -0.2707839012145996, -0.19763585925102234, -0.08633318543434143, -0.04364163428544998, -0.5973714590072632, 0.019836783409118652, -0.2393927127122879, 0.09930284321308136, 0.22132152318954468, 0.09530091285705566, -0.2205393761396408, 0.12283733487129211, 0.4699479937553406, -0.08824194967746735, 0.07167981564998627, 0.7433754205703735, -0.005189229734241962, 0.45154058933258057, 0.0996536910533905, -0.05546566843986511, -0.3552975058555603, 0.19783365726470947, -0.13157571852207184, -0.39268720149993896, -0.132004976272583, -0.18150022625923157, 0.30477139353752136, 0.53107750415802, 0.04373040050268173, -0.3497937023639679, -0.3963302969932556, 0.18308648467063904, -0.3076566755771637, 0.24959728121757507, -0.18102633953094482, -0.41041845083236694, 0.04794836789369583, -0.3373435437679291, -0.4045405983924866, -0.1013617068529129, 0.3824191093444824, 0.3164578676223755, 0.3384779095649719, 0.18632425367832184, -0.2344290018081665, 0.4711739122867584, 0.07445576786994934, 0.08936531841754913, 0.14895637333393097, 0.3231181204319, 0.18174518644809723, -0.15210917592048645, -0.3808325529098511, 0.032494381070137024, -0.1597432792186737, 0.21836546063423157, -0.05817268043756485, 0.6768828630447388, 0.08741386979818344, -0.04144883155822754, 0.10580357909202576, 0.19873236119747162, 0.212386816740036, 0.28629109263420105, -0.3641178011894226, -0.020373933017253876, 0.04949858784675598, -0.2988564074039459, 0.015055926516652107, -0.02594669908285141, 0.22218351066112518, 0.1963416188955307, 0.3770015835762024, 0.33285200595855713, -0.16648192703723907, 0.0560702309012413, -0.17325598001480103, -0.44759291410446167, -0.558044970035553, 0.12510272860527039, 0.014553152024745941, 0.3268836438655853, -0.10566354542970657, -0.12944535911083221, -0.24854935705661774, -0.06953224539756775, -0.44852182269096375, -0.054898325353860855, -0.10189326107501984, 0.02295776829123497, 0.15380756556987762, 0.04995812848210335, -0.2260185331106186, 0.06962043046951294, 0.06823384761810303, 0.21305786073207855, 0.003041360527276993, 0.29486849904060364, 0.4642013609409332, 0.27030149102211, -0.07665012776851654, -0.49950507283210754, -0.037779245525598526, -0.10679605603218079, 0.1724294126033783, -0.16188423335552216, 0.2286902368068695, -0.32670658826828003, -0.6638146638870239, -0.025350717827677727, 0.027821164578199387, -0.1665579080581665, -0.015702180564403534, 0.23698964715003967, 0.3138831853866577, 0.18745210766792297, -0.19325442612171173, 0.10918161273002625, 0.13244539499282837, -0.45223692059516907, -0.04261826351284981, 0.01935260184109211, 0.11763092875480652, -0.2234848290681839, 0.13187846541404724, -0.8021026849746704, 0.38030320405960083, -0.08405108004808426, 0.009051037952303886, -0.12659066915512085, 0.2499396800994873, -0.300144225358963, 0.09251470863819122, 0.006835177540779114, -0.11085289716720581, 0.15326453745365143, 0.3062939941883087, 0.009444452822208405, 0.23361559212207794, 0.3641568124294281, 0.10306617617607117, 0.16564132273197174, -0.16027458012104034, 0.21467584371566772, -0.05778001993894577, -0.09424120932817459, -0.37790605425834656, -0.21056121587753296, -0.11507928371429443, 0.2902424931526184, -0.14665444195270538, -0.2703372538089752, 0.16018274426460266, 0.20385992527008057, 0.052671730518341064, 0.3371550142765045, -0.18755146861076355, -0.0887993723154068, 0.3670628070831299, 0.41663116216659546, 0.04550279676914215, 0.05177011713385582, -0.18995597958564758, -0.4220215678215027, 0.007118608802556992, -0.5828014612197876, -0.08072531223297119, -0.08821018040180206, -0.49909573793411255, 0.02562563493847847, 0.07909214496612549, -0.04947904124855995, 0.11640913784503937, -0.0016724709421396255, 0.14514872431755066, 0.10500432550907135, -0.3338167071342468, -0.3381465673446655, -0.1528046727180481, 0.14359204471111298, -0.051217563450336456, -0.49908769130706787, 0.22551856935024261, 0.3128926753997803, 0.06864096224308014, -0.028265371918678284, 0.3479235768318176, 0.20512592792510986, -0.4431227147579193, -0.07264687865972519, 0.4789070188999176, 0.06192094460129738, -0.04905180633068085, 0.13270998001098633, -0.05099596083164215, 0.11122657358646393, -0.32714390754699707, -0.1859024167060852, 0.2234320044517517, -0.18244703114032745, -0.09163488447666168, -0.21659952402114868, 0.37589848041534424, -0.40179842710494995, 0.155955970287323, -0.17913688719272614, -0.10871844738721848, -0.2870522141456604, -0.13815715909004211, 0.010753588750958443, -0.48443931341171265, 0.10037217289209366, 0.14058268070220947, -0.09521402418613434, 0.06516683846712112, -0.6693588495254517, 0.381716787815094, 0.052850402891635895, -0.09716030955314636, -0.03269858658313751, 0.2510414123535156, 0.4470987915992737, -0.06844784319400787, 0.25422126054763794, 0.17260904610157013, 0.36599379777908325, 0.2609494924545288, 0.08775801956653595, 0.05588645488023758, 0.0512184277176857, -0.09780669212341309, 0.2790502905845642, 0.16264517605304718, -0.2910635471343994, -0.21620535850524902, 0.03573617711663246, 0.0695691630244255, -0.4029582738876343, -0.26905667781829834, 0.031717218458652496, -0.1246083527803421, 0.010950002819299698, -0.11613086611032486, -0.4207730293273926, -0.12579946219921112, -0.15763728320598602, -0.28463098406791687, -0.20942378044128418, -0.37302297353744507, 0.3850746154785156, 0.3502824604511261, -0.1604759246110916, 0.2657547891139984, 0.16245494782924652, 0.6797264814376831, 0.12342745065689087, -0.016723757609725, -0.19376039505004883, -0.06167737767100334, 0.08304846286773682, -0.0029631126672029495, 0.17922398447990417, -0.05518336221575737, 0.40756601095199585, 0.47628307342529297, 0.3492211103439331, -0.2424454689025879, -0.5845817923545837, -0.14502884447574615, 0.10773536562919617, -0.22797128558158875, 0.14099983870983124, -0.13867934048175812, 0.1266627162694931, -0.2941148579120636, -0.0922650471329689, 0.2668755054473877, -0.15068620443344116, -0.1543927639722824, 0.12185214459896088, 0.10724776983261108, -0.2466575652360916, -0.02027231454849243, -0.05560973286628723, -0.4179471731185913, 0.22239406406879425, -0.27083587646484375, 0.14371918141841888, -0.3823973834514618, -0.21535666286945343, -0.11650674790143967, -0.23988401889801025, -0.1005251482129097, -0.07423460483551025, -0.36153507232666016, 0.2884901463985443, -0.2667836844921112, 0.012597573921084404, -0.24708329141139984, -0.30287808179855347, 0.4084942936897278, 0.12927091121673584, -0.006829097867012024, -0.2035227119922638, -0.018440155312418938, -0.1411452442407608, 0.02718539908528328, -0.18613885343074799, 0.24035531282424927, 0.33905041217803955, -0.06555335968732834, -0.002132061868906021, 0.04302463307976723, 0.11510193347930908, 0.18984466791152954, 0.40018776059150696, 0.18963253498077393, 0.007769348099827766, 0.03443281725049019, -0.055717676877975464, 0.27870622277259827, 0.20596782863140106, 0.2717844247817993, -0.0021152831614017487, 0.010050375014543533, -0.14323198795318604, -0.4443962275981903, -0.5257841944694519, 0.1270931512117386, -0.1330987513065338, 0.3088725209236145, 0.03425781428813934, -0.17516203224658966, 0.0860002189874649, -0.10154326260089874, 0.1701475977897644, -0.16677339375019073, -0.01766113005578518, -0.18619106709957123, 0.46531641483306885, -0.09164570271968842, -0.10044056922197342, -0.24155473709106445, -0.14449363946914673, 0.006119761615991592, -0.16612441837787628, 0.39826005697250366, -0.19391730427742004, -0.2109648436307907, -0.3746695816516876, -0.05333458632230759, 0.2774733603000641, 0.2720451056957245, 0.3502610921859741, -0.15888740122318268, -0.060935378074645996, 0.16279542446136475, 0.26156046986579895, 0.7470083832740784, -0.17924708127975464, -0.24245049059391022, 0.15085063874721527, -0.5185410976409912, -0.15567129850387573, 0.16908563673496246, 0.271973580121994, -0.04799402132630348, -0.31599634885787964, 0.464767724275589, -0.05308656021952629, 0.02695970982313156, 0.2227238118648529, 0.29400011897087097, -0.13029664754867554, -0.6734973192214966, 0.19465915858745575, 0.05809705704450607, -0.03597510606050491, 0.08152453601360321, 0.017899570986628532, 0.070616215467453, 0.08766055107116699, -0.4630594849586487, 0.042842671275138855, -0.055261626839637756, 0.3673222064971924, -0.24239733815193176, 0.11031468212604523, 0.03252093493938446, 0.2508460283279419, 0.3488033711910248, -0.12048499286174774, -0.020093245431780815, 0.2723774313926697, -0.15369680523872375, 0.15998554229736328, -0.3900025486946106, -0.36308538913726807, 0.4394413232803345, 0.3624389171600342, 0.06878777593374252, 0.4523932635784149, 0.11376222223043442, 0.2600647211074829, -0.3076254725456238, -0.3872620761394501, -0.25308719277381897, 0.07757989317178726, -0.44204437732696533, -0.3762590289115906, 0.4132486581802368, -0.18480941653251648, -0.22562916576862335, 0.6468653678894043, 0.1521124541759491, -0.28209182620048523, 0.1746378242969513, -0.14014744758605957, 1.0260837078094482, 0.2857285141944885, -0.15363383293151855, -0.13673734664916992, 0.16574537754058838, 0.025608763098716736, 0.0626073032617569, 0.033980727195739746, 0.14088934659957886, -0.30780839920043945, -0.133414626121521, 0.13455580174922943, 0.014305926859378815, 0.31960445642471313, -0.3952941298484802, 0.24070382118225098, 0.3392485976219177, -0.0696832686662674, -0.03154774010181427, 0.22155949473381042, 0.28576192259788513, 0.02588707022368908, 0.2578877806663513, -0.062290336936712265, 0.14707571268081665, 0.3909830152988434, 0.14828965067863464, -0.3910248875617981, 0.31219759583473206, -0.1941652148962021, -0.010006532073020935, -0.40521499514579773, 0.13299445807933807, 0.3033742308616638, 0.29569873213768005, -0.312425434589386, 0.32772156596183777, 0.032358318567276, 0.440818727016449, -0.10153704881668091, -0.17460347712039948, -0.23690907657146454, 0.47510290145874023, 0.2950752377510071, -0.33203211426734924, -0.22165937721729279, 0.23895320296287537, 0.07544112205505371, 0.021844543516635895, 0.20219793915748596, 0.03221850097179413, -0.46270328760147095, -0.18213367462158203, 0.1338059902191162, -0.4676198363304138, -0.13956144452095032, -0.154206782579422, 0.04233528673648834, -0.23906856775283813, -0.24615472555160522, 0.0012080837041139603, 0.22730015218257904, -0.13376657664775848, 0.1250954568386078, 0.07891581952571869, -0.09069234877824783, -0.06537114083766937, 0.22073176503181458, 0.2176361382007599, -0.04596228152513504, 0.3269515931606293, -0.03489460051059723, -0.11120694875717163, -0.12833400070667267, -0.04964718595147133, -0.046863853931427, -0.28310391306877136, 0.3298914134502411, -0.13209834694862366, 0.172792449593544, 0.21335020661354065, -0.0606277696788311, 0.04758582264184952, 0.24068781733512878, -0.24633297324180603, -0.05036669224500656, -0.3094790279865265, 0.16332584619522095, 0.04607919603586197, 0.46056652069091797, -0.4152268171310425, 0.05918249860405922, -0.030403658747673035, -0.2231571227312088, -0.18856637179851532, -0.05358630418777466, 0.028641851618885994, -0.21639880537986755, 0.33136874437332153, 0.33438459038734436, -0.12519003450870514, 0.051421597599983215, 0.00647740438580513, 0.09520086646080017, -0.06889104098081589, 0.008589174598455429, 0.008542098104953766, 0.20898494124412537, -0.1086832657456398, 0.4220958650112152, 0.318593829870224, 0.10328266024589539, 0.18140508234500885, -0.2584139108657837, -0.013370051980018616, -0.23045256733894348, 0.002384655177593231, 0.32485735416412354, 0.3653608560562134, -0.5920873880386353, -0.23043406009674072, 0.3018186092376709, 0.27528178691864014, 0.15123112499713898, -0.0517832450568676, 0.23317508399486542, -0.36812424659729004, -0.15327468514442444, 0.11577814817428589, 0.22124582529067993, -0.41754627227783203, -0.153023362159729, 0.3525199294090271, 0.49892669916152954, -0.18562360107898712, 0.25129133462905884, 0.07610321789979935, -0.12389284372329712, -0.05716923251748085, -0.0321810245513916, -0.3263273239135742, 0.062059104442596436, -0.18827156722545624, -0.18947498500347137, 0.2809634804725647, 0.3161517381668091, 0.05747717246413231, 0.17956694960594177, 0.4318051040172577, -0.03476733714342117, 0.0755353644490242, -0.05087271332740784, 0.20298278331756592, -0.21269512176513672, 0.44945794343948364, 0.2759056091308594, 0.16168604791164398, -0.07215186953544617, 0.11209162324666977, -0.05557165667414665, 0.11159911751747131, 0.3312147855758667, 0.14585323631763458, 0.4366183876991272, 0.7227895855903625, 0.014701329171657562, 0.1873713582754135, 0.09859265387058258, 0.10106639564037323, 0.21825328469276428, 0.27097898721694946, 0.30079612135887146, 0.4453692138195038, 0.3506072163581848, -0.1242198571562767, 0.02316438965499401, -0.05522603541612625, 0.09355252236127853, 0.2624058127403259, -0.01692225970327854, -0.14807292819023132, -0.2602042257785797, -0.14732347428798676, -0.20020385086536407, 0.25895795226097107, -0.08596834540367126, 0.32377445697784424, -0.23287247121334076, 0.513619601726532, -0.11105933785438538, 0.13060927391052246, 0.12898525595664978, 0.20035922527313232, -0.33349624276161194, 0.16821403801441193, 0.41931504011154175, -0.16698004305362701, 0.6808692812919617, 0.0917849987745285, 0.13591712713241577, 0.06830786168575287, 0.016868093982338905, 0.19740216434001923, -0.40147921442985535, -0.19814084470272064, -0.042151857167482376, 0.21534335613250732, -0.11371533572673798, -0.19204562902450562, 0.10885420441627502, 0.0068029072135686874, -0.015923375263810158, 0.25161540508270264, 0.3320940136909485, 0.1931854784488678, -0.4510679543018341, 0.29268354177474976, 0.31175366044044495, -0.368245929479599, 0.014410970732569695, -0.1562965214252472, -0.07884697616100311, -0.19010759890079498, 0.34127354621887207, 0.005862816236913204, -0.0474797748029232, 0.19435127079486847, 0.007068857550621033, -0.23683154582977295, 0.2996443212032318, 0.0728500634431839, -0.3861338198184967, 0.21822375059127808, -0.3424838185310364, -0.5385555624961853, 0.009053342044353485, 0.11996017396450043, 0.043701328337192535, 0.5811548233032227, -0.26402390003204346, 0.039631567895412445, -0.054856590926647186, 0.38680464029312134, -0.40345510840415955, -0.25221261382102966, 0.1279481053352356, -0.5953298211097717, -0.19553665816783905, 0.39965158700942993, 0.03487961366772652, -0.11455770581960678, 0.008270598948001862, 0.22105832397937775, -0.321664035320282, -0.14697040617465973, 0.005350347608327866, 0.10025927424430847, -0.053669072687625885, 0.14480218291282654, -0.03255964815616608, -0.013231741264462471, 0.0772395133972168, -0.00490521639585495, 0.15240438282489777, 0.1317293643951416, -0.09480802714824677, 0.25944218039512634, 0.4609529972076416, 0.24661317467689514, 0.3873611092567444, -0.2581327259540558, -0.15970906615257263, -0.13187949359416962, 0.283542275428772, -0.22966493666172028, -0.16701549291610718, -0.2555961608886719, 0.3849015235900879, -0.3474637567996979, 0.14895787835121155, 0.3112078607082367, 0.20324698090553284, -0.02461453527212143, 0.2262744903564453, 0.017253294587135315, -0.3086596131324768, 0.393440306186676, 0.009845652617514133, -0.3445115089416504, 0.011275500990450382, -0.0367746502161026, 0.07678015530109406, -0.07323918491601944, -0.10000741481781006, -0.29664474725723267, 0.43781787157058716, 0.014482004567980766, 0.11312106251716614, 0.2615167796611786, -0.07244008779525757, 0.0064277201890945435, -0.0683528408408165, 0.050452668219804764, 0.3019740581512451, 0.004605619236826897, 0.07744836807250977, -0.08922507613897324 ]
https://github.com/huggingface/datasets/issues/3299
Add option to find unique elements in nested sequences when calling `Dataset.unique`
@dcruiz01 No, but here is an example of how to do this with the existing API: ```python ds = Dataset.from_dict({"tokens": [["a", "b"], ["c", "a"], ["c", "e"]]}) def flatten_tokens(pa_table): return pa.table([pc.list_flatten(pa_table["tokens"])], ["flat_tokens"]) ds = ds.with_format("arrow") ds = ds.map(flatten_tokens, batched=True) ds = ds.with_format(None) unique_tokens = ds.unique("flat_tokens") ``` When I think about it, `.unique` on `Sequence(Value(...))` should return unique sequences/arrays, not unique elements of these sequences...
It would be nice to have an option to flatten nested sequences to find unique elements stored in them when calling `Dataset.unique`. ~~Currently, `Dataset.unique` only supports finding unique sequences and not unique elements in that situation.~~
63
Add option to find unique elements in nested sequences when calling `Dataset.unique` It would be nice to have an option to flatten nested sequences to find unique elements stored in them when calling `Dataset.unique`. ~~Currently, `Dataset.unique` only supports finding unique sequences and not unique elements in that situation.~~ @dcruiz01 No, but here is an example of how to do this with the existing API: ```python ds = Dataset.from_dict({"tokens": [["a", "b"], ["c", "a"], ["c", "e"]]}) def flatten_tokens(pa_table): return pa.table([pc.list_flatten(pa_table["tokens"])], ["flat_tokens"]) ds = ds.with_format("arrow") ds = ds.map(flatten_tokens, batched=True) ds = ds.with_format(None) unique_tokens = ds.unique("flat_tokens") ``` When I think about it, `.unique` on `Sequence(Value(...))` should return unique sequences/arrays, not unique elements of these sequences...
[ -0.23226746916770935, -0.46737849712371826, -0.1702156811952591, -0.013167090713977814, -0.20125578343868256, 0.20149627327919006, -0.10047473013401031, 0.24046888947486877, -0.023827416822314262, 0.04098013788461685, 0.12913957238197327, 0.4734290540218353, -0.15860271453857422, 0.1997361034154892, 0.07329865545034409, 0.005874693393707275, 0.16904351115226746, 0.06245725229382515, 0.8019084930419922, 0.05398218333721161, -0.5697925686836243, 0.16904217004776, -0.46360284090042114, -0.05923038721084595, 0.09519685059785843, -0.007897412404417992, -0.2580309808254242, -0.16118139028549194, 0.12767603993415833, -0.6123082041740417, 0.41350555419921875, 0.540406346321106, 0.0826205462217331, 0.30861973762512207, -0.00013019076141063124, -0.1131143644452095, 0.561387836933136, -0.02319890446960926, -0.21901823580265045, -0.17384470999240875, -0.40658411383628845, 0.01944185607135296, 0.07892344146966934, -0.2122836709022522, -0.1638142168521881, -0.47997942566871643, -0.10538668930530548, -0.581359326839447, 0.20073962211608887, -0.07536238431930542, 0.059798289090394974, 0.21163837611675262, 0.09999629855155945, -0.13837109506130219, -0.021582432091236115, 0.32970279455184937, -0.11966894567012787, -0.12429219484329224, 0.5263794660568237, -0.1597435176372528, 0.5914430618286133, -0.03403383120894432, -0.2529642879962921, -0.2487674206495285, 0.09291592240333557, -0.08469746261835098, -0.39667248725891113, -0.14459633827209473, -0.13445121049880981, 0.398904949426651, 0.5309134125709534, -0.12469696253538132, -0.45684343576431274, -0.5100452303886414, 0.21939054131507874, -0.48978662490844727, 0.029070332646369934, 0.051202625036239624, -0.4352053105831146, 0.0003820881247520447, -0.3069670796394348, -0.14172708988189697, -0.1190234124660492, 0.28738391399383545, 0.3021942377090454, 0.20900580286979675, 0.26640093326568604, -0.12703877687454224, 0.4312647581100464, -0.012547329068183899, 0.05175298452377319, 0.04941551387310028, 0.4336076080799103, 0.25933927297592163, -0.21673281490802765, -0.3459146022796631, 0.07054854184389114, -0.2303941547870636, 0.1508142352104187, 0.12453042715787888, 0.6711275577545166, 0.03322374075651169, -0.07445329427719116, 0.04078274965286255, 0.28501248359680176, 0.20865246653556824, 0.2511039674282074, -0.18266470730304718, -0.12557251751422882, 0.09065467119216919, -0.11089347302913666, 0.08725006878376007, 0.003150670323520899, 0.35457950830459595, 0.12393204867839813, 0.2638571262359619, 0.4337248206138611, -0.03043455444276333, -0.115293949842453, -0.10588696599006653, -0.5510103702545166, -0.46014195680618286, 0.13863658905029297, -0.045031867921352386, 0.25544312596321106, 0.03490635007619858, -0.12563994526863098, -0.2303423434495926, -0.07621490210294724, -0.262575626373291, -0.07727956026792526, -0.1434849202632904, 0.12968899309635162, 0.3292238116264343, 0.1029011607170105, -0.05522872135043144, 0.03658074885606766, 0.18914662301540375, 0.15034881234169006, 0.2330574095249176, 0.33197176456451416, 0.345431923866272, 0.2738058269023895, -0.025101061910390854, -0.38045230507850647, 0.06876497715711594, -0.023596670478582382, 0.127030149102211, -0.2461104691028595, 0.24074026942253113, -0.2827601432800293, -0.5577269792556763, 0.030575556680560112, 0.03139500319957733, -0.2250342220067978, -0.07551665604114532, -0.002323053777217865, 0.2547163665294647, 0.20780526101589203, -0.10016858577728271, 0.0860389769077301, 0.028456950560212135, -0.5031964778900146, -0.0825449526309967, 0.07796536386013031, 0.07372516393661499, -0.0444878451526165, 0.04534405469894409, -0.6421987414360046, 0.3813081383705139, -0.1530652642250061, 0.10587398707866669, -0.0642087385058403, 0.3238520324230194, -0.2262338250875473, 0.034393392503261566, -0.041982509195804596, -0.2495725005865097, 0.0514746829867363, 0.24525132775306702, 0.2383844405412674, 0.3347683548927307, 0.2511269450187683, 0.010780229233205318, 0.3541511595249176, -0.13537028431892395, 0.3687477707862854, 0.07479503005743027, -0.1413581222295761, -0.4292483925819397, -0.17599882185459137, -0.2643715441226959, 0.32342004776000977, -0.10753639042377472, -0.40326181054115295, 0.023206070065498352, -0.12002076953649521, -0.08894817531108856, 0.3682805001735687, -0.05492418631911278, -0.13214287161827087, 0.2833901643753052, 0.3884858191013336, -0.01929774135351181, 0.04693446308374405, -0.274524986743927, -0.4251800775527954, 0.10448171943426132, -0.44174930453300476, -0.002697024494409561, -0.23726309835910797, -0.5975891947746277, 0.10229087620973587, 0.213670015335083, -0.23923806846141815, 0.03494826331734657, 0.006778702139854431, -0.08910882472991943, 0.28229472041130066, -0.17399924993515015, -0.3269021213054657, -0.2595023810863495, 0.32801946997642517, 0.059654589742422104, -0.5516902208328247, 0.2199259102344513, 0.4166460931301117, 0.13622339069843292, 0.02536526322364807, 0.45849040150642395, 0.21591779589653015, -0.284127414226532, -0.008634915575385094, 0.27386772632598877, 0.18817248940467834, -0.03812876343727112, -0.015822522342205048, 0.1957031488418579, 0.25237172842025757, -0.3004142642021179, -0.2251342236995697, 0.31515592336654663, -0.046528324484825134, -0.08066755533218384, -0.1721782386302948, 0.4954666495323181, -0.3906729221343994, 0.3556557297706604, -0.10551375150680542, -0.04195887967944145, -0.1861814558506012, -0.1276792585849762, -0.011157798580825329, -0.4865212142467499, 0.07835967093706131, 0.032713621854782104, 0.045815009623765945, -0.04137402027845383, -0.4202048182487488, 0.4765017032623291, -0.16634948551654816, -0.25428304076194763, -0.17236563563346863, 0.1604987382888794, 0.38560768961906433, -0.1178274005651474, 0.30596399307250977, 0.11241540312767029, 0.3391311466693878, 0.24896450340747833, 0.021501854062080383, 0.11342311650514603, -0.007013245485723019, -0.025600165128707886, 0.2768894135951996, 0.2346528321504593, -0.311410516500473, -0.2855721712112427, 0.033471833914518356, 0.14838837087154388, -0.3180243670940399, -0.23641103506088257, 0.06611066311597824, 0.06723076850175858, 0.09696012735366821, -0.10032661259174347, -0.4011339247226715, -0.17880749702453613, -0.05065378546714783, -0.4381222724914551, -0.07703253626823425, -0.36861422657966614, 0.27727872133255005, 0.2847934365272522, -0.0940392017364502, 0.318269282579422, 0.10614123940467834, 0.5093424916267395, 0.14973145723342896, -0.13716313242912292, -0.22386205196380615, -0.04329383000731468, 0.20402005314826965, 0.016685515642166138, 0.21991799771785736, -0.07862704992294312, 0.45334044098854065, 0.3863478899002075, 0.24689476191997528, -0.23679333925247192, -0.4179641008377075, -0.09113150835037231, 0.01088479533791542, -0.27340376377105713, 0.17828702926635742, -0.12699107825756073, 0.2256173938512802, -0.22760897874832153, -0.0539783276617527, 0.07656914740800858, -0.05270256847143173, -0.2102862000465393, 0.07673489302396774, 0.05157746374607086, -0.1527976393699646, -0.003872789442539215, -0.16182760894298553, -0.2649599015712738, 0.26390647888183594, -0.18336284160614014, 0.2205534726381302, -0.3659760355949402, -0.23826508224010468, -0.04452570900321007, -0.14177091419696808, -0.14563992619514465, -0.11809287965297699, -0.12671434879302979, 0.20738530158996582, -0.17621302604675293, 0.0024203062057495117, -0.24591033160686493, -0.3432472348213196, 0.4185314178466797, 0.1046929806470871, -0.02711651846766472, -0.42219918966293335, -0.04470214247703552, -0.032857540994882584, 0.001756511628627777, -0.12980450689792633, 0.256399929523468, 0.31070783734321594, -0.008546732366085052, 0.12782809138298035, -0.025048263370990753, 0.13182508945465088, 0.1573004126548767, 0.22095084190368652, 0.2923201024532318, 0.08678935468196869, -0.018553970381617546, 0.14021238684654236, 0.5474783182144165, 0.22035475075244904, 0.24369587004184723, -0.10287531465291977, -0.021813709288835526, -0.13133454322814941, -0.3480064272880554, -0.7100036144256592, 0.09699593484401703, -0.03181035816669464, 0.15509650111198425, 0.07272446900606155, -0.14053496718406677, 0.11934612691402435, -0.04070650786161423, -0.041344426572322845, -0.13318659365177155, -0.02317568100988865, -0.27539464831352234, 0.4614890217781067, -0.06726336479187012, -0.0021512769162654877, -0.32144907116889954, -0.31871816515922546, -0.06693845987319946, -0.19570757448673248, 0.4757867455482483, -0.14874252676963806, -0.28005313873291016, -0.4229043126106262, -0.2321312129497528, 0.2948569059371948, 0.19655588269233704, 0.5189591646194458, -0.030498741194605827, -0.025318849831819534, 0.2195388674736023, 0.22692494094371796, 0.7114705443382263, -0.19045566022396088, -0.38764262199401855, 0.18756289780139923, -0.5277314782142639, -0.3419657051563263, 0.10080660879611969, 0.2386378049850464, -0.10228756815195084, -0.4494999051094055, 0.5558550357818604, -0.07116173207759857, -0.06729546934366226, 0.06923471391201019, 0.4078575074672699, -0.12511567771434784, -0.5807524919509888, 0.1863318383693695, -0.11592257022857666, -0.2149440199136734, 0.038846831768751144, 0.023448513820767403, 0.1504545509815216, 0.07287267595529556, -0.41439568996429443, -0.0539376363158226, 0.03401951491832733, 0.4313601851463318, -0.2221556454896927, 0.11080516129732132, -0.02362666092813015, 0.4162208139896393, 0.3603300452232361, -0.13036905229091644, 0.061610229313373566, 0.3192971646785736, -0.2390953004360199, 0.10501153767108917, -0.5783568024635315, -0.14551855623722076, 0.28770071268081665, 0.20478907227516174, -0.04540832340717316, 0.5875732898712158, -0.05108918249607086, 0.2949044704437256, -0.4677973985671997, -0.3489358723163605, -0.2271188348531723, 0.015632957220077515, -0.5676017999649048, -0.6333206295967102, 0.4987158477306366, 0.007521679624915123, -0.20904822647571564, 0.5628089904785156, 0.13411247730255127, -0.20972894132137299, 0.2855817675590515, -0.1173754408955574, 0.8869617581367493, 0.1855633556842804, 0.02715952694416046, -0.0762217715382576, 0.08992524445056915, 0.08629576116800308, 0.13365495204925537, 0.03151101619005203, 0.0651642233133316, -0.23373013734817505, -0.16396138072013855, 0.15835720300674438, -0.016931913793087006, 0.21558964252471924, -0.21147051453590393, 0.32451528310775757, 0.4534308910369873, -0.021099861711263657, -0.002233383245766163, 0.19733771681785583, 0.26087480783462524, 0.024380376562476158, 0.22261659801006317, -0.051399119198322296, 0.1649991273880005, 0.3152514696121216, 0.19680047035217285, -0.33747047185897827, 0.25453969836235046, -0.2610360383987427, -0.11911118775606155, -0.4948832094669342, -0.023296134546399117, 0.4140773415565491, 0.21401949226856232, -0.43118715286254883, 0.2359541952610016, 0.032886408269405365, 0.19920989871025085, -0.21175093948841095, -0.21779084205627441, -0.31765425205230713, 0.4007355570793152, 0.13514553010463715, -0.3352263271808624, -0.3037252724170685, 0.2056712657213211, 0.12798446416854858, 0.01945946365594864, 0.17583659291267395, 0.1246531754732132, -0.36689257621765137, -0.20183908939361572, 0.23268620669841766, -0.2037418931722641, -0.12030874192714691, -0.26800301671028137, -0.06345206499099731, -0.29288437962532043, -0.14037275314331055, -0.01659923419356346, 0.28179842233657837, -0.15292231738567352, 0.18896548449993134, -0.0819983184337616, -0.10072879493236542, -0.1365969330072403, 0.2966577410697937, 0.3746574819087982, -0.06124439835548401, 0.435198575258255, -0.16562475264072418, -0.03445567935705185, -0.08851464092731476, -0.009339626878499985, -0.01885967142879963, -0.25468048453330994, 0.22019325196743011, 0.011995045468211174, 0.2910647392272949, 0.21089379489421844, -0.0976657122373581, -0.02439390867948532, 0.18048745393753052, -0.142727330327034, -0.19384311139583588, -0.29628700017929077, 0.3087296485900879, 0.04949479550123215, 0.41539496183395386, -0.3058256208896637, -0.0159449465572834, -0.14189966022968292, -0.21691223978996277, -0.14508618414402008, 0.08372645080089569, 0.041566476225852966, -0.18012282252311707, 0.19656841456890106, 0.26412829756736755, -0.05874468386173248, -0.10969722270965576, 0.013067761436104774, 0.013662345707416534, -0.03677155077457428, -0.044586896896362305, -0.0444096177816391, 0.1847841441631317, 0.0355888195335865, 0.2173103541135788, 0.20393629372119904, 0.1082393229007721, 0.07750530540943146, -0.2834211587905884, 0.007801542058587074, -0.1361764669418335, 0.06341233104467392, 0.3198869228363037, 0.3349657356739044, -0.4674548804759979, -0.34384310245513916, 0.32542550563812256, 0.1100471243262291, 0.13917800784111023, 0.037802305072546005, 0.27112436294555664, -0.3970566391944885, -0.06430074572563171, 0.1451324075460434, 0.1859493851661682, -0.3054354190826416, -0.2707444727420807, 0.4538801908493042, 0.4037344455718994, -0.2660885751247406, 0.31260067224502563, 0.051945820450782776, -0.03933122754096985, -0.1276320368051529, -0.04006485641002655, -0.10026229918003082, 0.03154221549630165, -0.24854449927806854, -0.1465195119380951, 0.299104779958725, 0.3334934413433075, 0.09805989265441895, 0.25492963194847107, 0.3631587624549866, -0.19038036465644836, -0.2466692477464676, -0.08849014341831207, 0.27477824687957764, -0.14182867109775543, 0.5379728078842163, 0.3353193700313568, 0.24070526659488678, -0.06412675976753235, -0.07526014000177383, 0.01974014937877655, 0.10221152752637863, 0.2890482544898987, 0.025066334754228592, 0.4917585551738739, 0.7048466205596924, 0.02562892809510231, 0.20561905205249786, 0.041477929800748825, -0.002574518322944641, 0.11280246078968048, 0.24341413378715515, 0.32635191082954407, 0.4509291350841522, 0.4175556004047394, -0.15050996840000153, -0.1043807789683342, -0.04124577343463898, 0.1363813877105713, 0.23299404978752136, -0.04291924461722374, 0.07237362861633301, -0.16837510466575623, -0.01912090554833412, -0.2203114926815033, 0.23143215477466583, -0.2179441601037979, 0.22246140241622925, -0.2957950234413147, 0.39859968423843384, -0.0378129780292511, 0.05598878860473633, 0.2964857220649719, 0.18213629722595215, -0.2594572901725769, 0.1032821387052536, 0.4186277389526367, -0.14005932211875916, 0.3695009648799896, 0.02346617355942726, 0.23704130947589874, 0.09467872977256775, -0.18366405367851257, 0.34199580550193787, -0.3047751486301422, -0.0461079403758049, 0.04412302374839783, 0.19586282968521118, -0.12634360790252686, -0.17956747114658356, 0.1054707020521164, -0.021857881918549538, 0.01192860584706068, 0.10201263427734375, 0.2918083369731903, 0.1781613975763321, -0.37397101521492004, 0.5515579581260681, 0.1333025097846985, -0.3013957738876343, 0.11504912376403809, 0.015733040869235992, -0.04285045713186264, -0.09723413735628128, 0.37770557403564453, 0.1038217842578888, -0.030277565121650696, 0.18403217196464539, 0.008510725572705269, -0.3345034718513489, 0.20811466872692108, 0.2026967704296112, -0.18289515376091003, 0.16470776498317719, -0.2294335961341858, -0.5179948210716248, -0.06238444894552231, -0.06332698464393616, 0.050733938813209534, 0.6197062730789185, -0.3927745819091797, 0.06822773814201355, 0.019343208521604538, 0.25230592489242554, -0.18941769003868103, -0.3721814751625061, 0.25049713253974915, -0.49503663182258606, -0.10954016447067261, 0.24966208636760712, 0.005367407575249672, -0.13742458820343018, -0.10588283836841583, 0.16079963743686676, -0.3188088536262512, -0.1398857980966568, -0.03861109912395477, 0.2307146191596985, -0.019783902913331985, 0.033548422157764435, -0.047063663601875305, 0.1661565899848938, -0.072140172123909, 0.08305949717760086, 0.19113381206989288, 0.2154780775308609, 0.1805412471294403, 0.19215764105319977, 0.6073980331420898, 0.2010587453842163, 0.17798985540866852, -0.13169142603874207, -0.13370350003242493, -0.10170696675777435, 0.2771327495574951, -0.12105461210012436, -0.3620867133140564, -0.23999160528182983, 0.355100154876709, -0.3001405596733093, 0.07022331655025482, 0.12878718972206116, 0.2926705777645111, -0.015371657907962799, 0.23668654263019562, 0.1635562926530838, -0.3203674554824829, 0.3453064560890198, -0.1576521247625351, -0.2112201601266861, 0.09175451844930649, 0.04273161292076111, -0.0036914199590682983, 0.03760687634348869, -0.1805812418460846, -0.28617510199546814, 0.47685515880584717, -0.16892504692077637, 0.01433098316192627, 0.2306676208972931, -0.08495791256427765, -0.06456822156906128, -0.1205717921257019, 0.16418257355690002, 0.24174723029136658, -0.12172773480415344, 0.2879801392555237, -0.15430611371994019 ]
https://github.com/huggingface/datasets/issues/3298
Agnews dataset viewer is not working
Hi ! Thanks for reporting We've already fixed the code that generates the preview for this dataset, we'll release the fix soon :)
## Dataset viewer issue for '*name of the dataset*' **Link:** https://huggingface.co/datasets/ag_news Hi there, the `ag_news` dataset viewer is not working. Am I the one who added this dataset? No
23
Agnews dataset viewer is not working ## Dataset viewer issue for '*name of the dataset*' **Link:** https://huggingface.co/datasets/ag_news Hi there, the `ag_news` dataset viewer is not working. Am I the one who added this dataset? No Hi ! Thanks for reporting We've already fixed the code that generates the preview for this dataset, we'll release the fix soon :)
[ -0.4043061137199402, -0.026423484086990356, 0.000368751585483551, 0.14764422178268433, 0.04355087876319885, 0.13337278366088867, 0.33274295926094055, 0.31446170806884766, 0.06983679533004761, 0.11230418086051941, -0.14206139743328094, 0.09118907153606415, 0.02248735912144184, 0.20900312066078186, -0.05680547654628754, 0.0026447810232639313, 0.21222861111164093, 0.026822082698345184, -0.008444994688034058, 0.06733697652816772, -0.36801332235336304, 0.22444188594818115, -0.20163017511367798, 0.11703021824359894, -0.1285112500190735, 0.1273999810218811, -0.09653667360544205, -0.1762247383594513, -0.1552431434392929, -0.28991708159446716, -0.0025819875299930573, 0.08427149057388306, 0.031142275780439377, 0.5217633843421936, -0.00010328303324058652, 0.10104040801525116, 0.4334295392036438, 0.07964672893285751, -0.00546448677778244, -0.056568026542663574, -0.3273563086986542, -0.2871352732181549, -0.11106143891811371, -0.0053098201751708984, -0.3466712236404419, -0.5621010661125183, 0.23635722696781158, -0.3918745815753937, 0.26738566160202026, 0.3300624489784241, 0.30605411529541016, 0.1413724571466446, 0.315166711807251, -0.4238247573375702, -0.09015271812677383, 0.05503251776099205, -0.38886988162994385, 0.0009623821824789047, -0.20806586742401123, 0.10436505079269409, -0.060008831322193146, 0.55437171459198, 0.10127975046634674, 0.09074676036834717, 0.008724577724933624, 0.023983340710401535, 0.2227652668952942, -0.2278691828250885, 0.22419315576553345, 0.17076417803764343, 0.5400009751319885, -0.07706106454133987, -0.1940051168203354, 0.024930492043495178, 0.07382015883922577, 0.07406168431043625, 0.22139060497283936, 0.1932430863380432, -0.03864789009094238, 0.32565489411354065, -0.163575679063797, -0.15790243446826935, -0.20561504364013672, 0.1984757035970688, -0.14290541410446167, 0.42842063307762146, -0.3121683597564697, 0.13516928255558014, 0.22873623669147491, -0.0011084303259849548, 0.1863493025302887, -0.01612485945224762, -0.32256749272346497, 0.10721239447593689, -0.33904746174812317, 0.04682179540395737, 0.023440904915332794, 0.12583021819591522, 0.02957044169306755, 0.14401689171791077, -0.04627721384167671, 0.170160710811615, 0.09718753397464752, -0.010601460933685303, 0.1618148386478424, -0.13071997463703156, 0.21968579292297363, 0.2602855861186981, 0.4180870056152344, 0.19682574272155762, 0.20159214735031128, -0.15804940462112427, -0.18903443217277527, -0.2863476872444153, -0.2726505398750305, -0.4086318016052246, 0.4276471734046936, -0.19378936290740967, -0.19757744669914246, 0.12078268080949783, -0.14890719950199127, -0.07893559336662292, -0.12223001569509506, 0.3080987334251404, 0.02398141846060753, 0.0102175772190094, 0.03239747881889343, 0.33212214708328247, 0.019795911386609077, -0.3442321717739105, -0.19516508281230927, -0.20151649415493011, -0.2283240258693695, 0.18922433257102966, 0.2031850814819336, 0.016001766547560692, 0.03886222094297409, -0.14065618813037872, -0.05393081158399582, -0.09444046020507812, -0.055433519184589386, -0.02036580815911293, -0.25114160776138306, 0.2523828446865082, 0.17739400267601013, 0.275195837020874, 0.08413012325763702, -0.1411183476448059, 0.09889554232358932, 0.224778950214386, 0.09289705753326416, -0.1489783525466919, -0.37255826592445374, 0.23760554194450378, -0.27154380083084106, -0.01837145909667015, -0.14308735728263855, 0.43083491921424866, -0.06582421809434891, -0.05257558077573776, -0.12046324461698532, 0.3070560097694397, -0.13529808819293976, -0.046130504459142685, 0.25327858328819275, 0.30639252066612244, -0.4178478419780731, -0.13998565077781677, -0.6139642000198364, -0.47445932030677795, -0.0395284965634346, 0.0777425765991211, -0.03484015911817551, -0.02047766000032425, -0.2424948811531067, 0.054279014468193054, 0.2566102147102356, 0.02214151993393898, -0.5047343969345093, 0.10823900252580643, -0.013732019811868668, -0.08244217187166214, 0.08488544821739197, 0.08030051738023758, -0.1122739240527153, 0.007548509165644646, -0.5248639583587646, 0.1487560123205185, 0.19574381411075592, -0.03228083625435829, -0.03474404662847519, -0.10555082559585571, 0.09368922561407089, 0.23433028161525726, 0.19483599066734314, 0.16723394393920898, 0.1836383044719696, -0.18638518452644348, 0.2712078392505646, 0.20727398991584778, 0.07818527519702911, 0.058235205709934235, 0.36177149415016174, -0.10089388489723206, 0.14304594695568085, 0.08566761761903763, -0.46922504901885986, 0.0409458726644516, -0.16433973610401154, -0.01123856008052826, 0.05143764242529869, -0.11754686385393143, -0.5166195631027222, 0.012755041942000389, -0.26838913559913635, -0.36679381132125854, 0.1741594821214676, 0.244296595454216, -0.21833626925945282, 0.21541869640350342, -0.08747163414955139, 0.3231903910636902, -0.13107170164585114, -0.024939855560660362, -0.2170347273349762, 0.2167326658964157, -0.13530537486076355, 0.021554233506321907, 0.12399362027645111, -0.18434098362922668, 0.20896747708320618, -0.05635955557227135, -0.14150944352149963, 0.3823747932910919, -0.021107284352183342, 0.30347102880477905, 0.24749651551246643, 0.00926363468170166, 0.019899893552064896, -0.5866423845291138, 0.19192542135715485, 0.1496189683675766, -0.030487563461065292, -0.09569942951202393, -0.2983907461166382, -0.010249689221382141, 0.24609403312206268, -0.08891604095697403, -0.214747816324234, 0.247353196144104, 0.1991441249847412, -0.10842602699995041, -0.03791100159287453, -0.0808601826429367, 0.023783283308148384, -0.2579251229763031, 0.02847382053732872, -0.07434102147817612, -0.251573771238327, -0.05627823621034622, 0.06708229333162308, 0.020996849983930588, -0.07906433194875717, 0.06685866415500641, -0.36791184544563293, 0.07452249526977539, -0.0012822560966014862, 0.13314791023731232, 0.3399639129638672, 0.11146240681409836, -0.0005934573709964752, 0.2851768136024475, 0.28264376521110535, -0.22102244198322296, 0.11022686958312988, 0.12444603443145752, 0.2289278358221054, 0.05485699698328972, 0.012419939041137695, -0.18196509778499603, -0.4193023443222046, 0.29694584012031555, 0.3087800443172455, 0.24056018888950348, -0.2614527940750122, 0.014171047136187553, -0.0026946812868118286, -0.6008549332618713, -0.1600804328918457, -0.14621089398860931, -0.15074536204338074, -0.4011124074459076, -0.005883354693651199, 0.1939716339111328, -0.024609047919511795, 0.509406328201294, -0.19571666419506073, 0.3517083525657654, 0.034594252705574036, 0.42290014028549194, -0.34009698033332825, 0.10875208675861359, -0.08538595587015152, 0.23675724864006042, 0.21859031915664673, 0.07011061906814575, 0.2005782425403595, -0.016007211059331894, 0.24938400089740753, -0.5792790055274963, -0.31628701090812683, 0.09140295535326004, -0.08387905359268188, 0.48877424001693726, -0.06282605230808258, -0.054631203413009644, -0.19943861663341522, -0.03608943149447441, 0.2228233367204666, -0.3146909177303314, -0.11181041598320007, -0.1585334986448288, -0.014868437312543392, -0.12538674473762512, 0.05501025542616844, -0.24106964468955994, -0.0911598950624466, -0.33261072635650635, 0.005324475467205048, -0.11127345263957977, 0.03338051959872246, 0.14992772042751312, -0.05295007303357124, 0.10284332931041718, -0.10937739163637161, -0.2059912234544754, -0.3528788089752197, -0.045988619327545166, 0.5451158881187439, -0.3700009286403656, -0.48666223883628845, 0.1486114263534546, 0.242063507437706, 0.06809425354003906, -0.22125191986560822, -0.5363963842391968, 0.04599284380674362, -0.16240498423576355, -0.1443777084350586, 0.3565906882286072, -0.2550382614135742, -0.04639911651611328, -0.20742234587669373, -0.14529931545257568, -0.23725733160972595, -0.10986235737800598, -0.060967929661273956, -0.3252066671848297, 0.3312588334083557, 0.12036244571208954, 0.1616588830947876, -0.07530266046524048, 0.49658751487731934, 0.43472564220428467, -0.017826493829488754, 0.2590395212173462, -0.33465200662612915, 0.43002787232398987, -0.024260975420475006, -0.4015445113182068, 0.06632969528436661, 0.12215256690979004, 0.25335419178009033, 0.21385040879249573, 0.011495559476315975, -0.3640226423740387, -0.2370547354221344, 0.1996593475341797, -0.2562684416770935, -0.15436993539333344, -0.15867412090301514, -0.17734591662883759, 0.21039071679115295, 0.1326768398284912, 0.17663073539733887, 0.16057923436164856, -0.3399994671344757, 0.08250419795513153, 0.3336367607116699, 0.1209605261683464, -0.04943692684173584, -0.11458548903465271, 0.2734474837779999, -0.47165733575820923, 0.43216627836227417, -0.4474053978919983, 0.22077889740467072, -0.22226597368717194, -0.040221232920885086, 0.24097368121147156, 0.12537911534309387, 0.7070775628089905, -0.28075993061065674, -0.23442010581493378, 0.2357543408870697, 0.16288620233535767, -0.08458998799324036, -0.032135430723428726, -0.13081036508083344, 0.091001495718956, 0.053592097014188766, 0.29269975423812866, -0.002304874360561371, -0.18273021280765533, 0.6155133247375488, -0.3022320568561554, -0.17163607478141785, -0.315450519323349, -0.22514493763446808, 0.008807692676782608, -0.05124761909246445, -0.2733463943004608, -0.06051367521286011, 0.11708271503448486, -0.13918986916542053, 0.00352570042014122, -0.16329292953014374, 0.010364361107349396, -0.01438722014427185, 0.22138145565986633, 0.33751416206359863, 0.17775793373584747, 0.33934447169303894, 0.5645802021026611, 0.33044004440307617, 0.05642476677894592, 0.4561969041824341, 0.30697858333587646, -0.6282651424407959, 0.38530880212783813, -0.17408500611782074, 0.2695847153663635, 0.2829567492008209, -0.15445253252983093, -0.14855411648750305, 0.2651328444480896, 0.14411470293998718, -0.07875438034534454, 0.15121304988861084, 0.4157868027687073, -0.055766765028238297, -0.4460712671279907, -0.3202025890350342, 0.5309653282165527, 0.20561569929122925, -0.08663880825042725, 0.22277341783046722, 0.2641211152076721, -0.017863167449831963, -0.2795119881629944, -0.32803958654403687, 0.8730468153953552, 0.05304378643631935, -0.3272612690925598, 0.2056656777858734, -0.07543490827083588, 0.12677133083343506, -0.015416372567415237, 0.16008761525154114, -0.3315812647342682, -0.3046474754810333, -0.07901683449745178, -0.10682022571563721, 0.5126747488975525, 0.12921243906021118, -0.0810246542096138, 0.03023582138121128, 0.21223895251750946, 0.24687835574150085, -0.012715816497802734, 0.19455179572105408, -0.0784415602684021, -0.06901577115058899, -0.06451097130775452, 0.23318606615066528, 0.008385691791772842, 0.38633179664611816, -0.055957186967134476, -0.11796067655086517, 0.007118195295333862, 0.007026657462120056, -0.46354466676712036, 0.1799970269203186, 0.1275782436132431, -0.010385150089859962, 0.21926762163639069, -0.38665568828582764, 0.3637847602367401, 0.330819308757782, 0.1086113229393959, 0.0876961499452591, -0.3864606022834778, 0.3298895061016083, -0.165240079164505, -0.2019299417734146, -0.14901502430438995, 0.030979692935943604, -0.09950472414493561, -0.13408514857292175, -0.3711196184158325, 0.2883550226688385, 0.0808190330862999, -0.17133772373199463, -0.26225778460502625, -0.13290679454803467, 0.23323661088943481, -0.3351435661315918, 0.16067765653133392, -0.07259416580200195, -0.007602602243423462, -0.20182156562805176, 0.2504483461380005, -0.06381896138191223, -0.023098692297935486, -0.03312993794679642, 0.0815945714712143, -0.2810993790626526, -0.11141905188560486, 0.33901891112327576, -0.0635477676987648, -0.17108508944511414, 0.4200143814086914, 0.25143370032310486, -0.22978924214839935, -0.32080116868019104, 0.1674647331237793, 0.31739822030067444, -0.49485304951667786, -0.11411289870738983, -0.05822942033410072, 0.18655602633953094, 0.24112628400325775, 0.1071157455444336, -0.003396984189748764, -0.14035683870315552, 0.05344339832663536, -0.3999239504337311, 0.01384410448372364, 0.02092839404940605, -0.27956491708755493, 0.2552590072154999, -0.19919821619987488, -0.26363733410835266, 0.3258986175060272, 0.00508522056043148, -0.38872528076171875, -0.0940350592136383, 0.02594788931310177, -0.045480094850063324, 0.05648328736424446, 0.1748281717300415, 0.14625723659992218, -0.15045133233070374, 0.13258297741413116, 0.07155740261077881, -0.23178237676620483, -0.26484301686286926, -0.021479524672031403, 0.1345769762992859, 0.151495099067688, -0.2984313368797302, -0.014912702143192291, -0.06568598747253418, -0.37532931566238403, 0.13590209186077118, 0.13275739550590515, 0.009873494505882263, 0.05166922137141228, -0.17242558300495148, 0.050375133752822876, -0.24845078587532043, 0.19027811288833618, -0.17186661064624786, 0.12362822890281677, 0.3299424648284912, 0.022247260436415672, 0.15133795142173767, 0.06934918463230133, 0.022037945687770844, 0.12512075901031494, 0.09455296397209167, 0.2985680103302002, 0.06022096797823906, 0.30966421961784363, -0.3039928078651428, 0.026082728058099747, 0.12696143984794617, 0.4874555170536041, 0.2161603569984436, -0.36206501722335815, -0.019219346344470978, 0.4101950526237488, 0.2071220725774765, -0.470729261636734, -0.003959364257752895, 0.25169989466667175, 0.03849392384290695, 0.017817575484514236, -0.06358573585748672, 0.1358744502067566, 0.21013477444648743, 0.029430922120809555, 0.183884859085083, 0.3818025588989258, 0.07946667075157166, 0.35426583886146545, 0.3056279420852661, -0.11991211771965027, 0.1437160223722458, 0.3907766044139862, 0.19617606699466705, -0.12855562567710876, 0.4958590865135193, -0.019988268613815308, 0.11457329988479614, -0.00902789831161499, 0.37989598512649536, 0.23094934225082397, -0.383174866437912, -0.07222819328308105, 0.11475807428359985, -0.49617254734039307, 0.0012532100081443787, 0.15813475847244263, 0.3192993104457855, -0.02590584009885788, 0.06175217777490616, -0.4460953176021576, 0.25811490416526794, 0.07758232951164246, 0.09030312299728394, -0.20680087804794312, -0.07589542120695114, -0.291665256023407, 0.004514824599027634, 0.050336770713329315, -0.12001124024391174, 0.28485941886901855, -0.06370654702186584, -0.2399284988641739, -0.19265705347061157, 0.294961154460907, 0.09543933719396591, 0.30513954162597656, -0.18874680995941162, 0.10783323645591736, -0.1182871162891388, 0.11107765883207321, 0.20154829323291779, 0.6620809435844421, 0.14936110377311707, -0.0701235979795456, 0.2266663759946823, 0.11957726627588272, -0.07674871385097504, -0.18116678297519684, 0.028711620718240738, 0.47678473591804504, 0.32672935724258423, -0.26683667302131653, 0.15903475880622864, 0.14685051143169403, -0.14960609376430511, 0.1836666464805603, 0.10859647393226624, 0.4271128177642822, -0.16084884107112885, 0.1533445417881012, -0.6978167295455933, 0.07902684062719345, -0.2574893534183502, -0.3374701738357544, -0.129334956407547, -0.003979980945587158, 0.2759687602519989, -0.07536307722330093, 0.11785572022199631, -0.34440359473228455, 0.12050111591815948, 0.19471962749958038, 0.4360727071762085, 0.2970719039440155, 0.1944011151790619, -0.10232279449701309, -0.6008681654930115, -0.601847767829895, 0.2619066536426544, 0.04922332242131233, 0.2065461128950119, 0.04894111678004265, -0.22548268735408783, 0.0782933160662651, 0.24031072854995728, 0.339435338973999, 0.18047216534614563, -0.259410560131073, 0.19435743987560272, -0.27914586663246155, -0.04521643742918968, -0.019789166748523712, 0.20977042615413666, -0.12365946918725967, -0.13919290900230408, 0.3214278519153595, -0.09235411882400513, 0.043753720819950104, 0.016462333500385284, -0.04166019707918167, -0.14314250648021698, -0.022505350410938263, 0.30229154229164124, 0.04573087766766548, 0.18874484300613403, -0.07886362075805664, 0.06631537526845932, -0.4441388249397278, -0.4272588789463043, -0.24545696377754211, 0.22900551557540894, 0.08029517531394958, 0.1840544193983078, 0.05808323621749878, -0.20219019055366516, -0.0963059589266777, -0.10282867401838303, 0.023776017129421234, 0.1379334032535553, -0.3005490303039551, 0.004270186647772789, -0.18038120865821838, -0.04898323863744736, 0.23184582591056824, -0.15611785650253296, -0.10328277945518494, -0.0647849291563034, -0.18725387752056122, -0.17349179089069366, 0.35985422134399414, -0.16172924637794495, -0.21683958172798157, -0.18763487040996552, 0.048415206372737885, -0.08239052444696426, -0.18103884160518646, -0.4541164040565491, 0.08366476744413376, 0.3310295045375824, 0.009394615888595581, 0.25308170914649963, 0.23562288284301758, -0.022069614380598068, -0.10197091847658157, -0.06621936708688736, 0.39022111892700195, 0.2245405614376068, -0.083059161901474, 0.08908165991306305, -0.047847650945186615 ]
https://github.com/huggingface/datasets/issues/3297
.map() cache is wrongfully reused - only happens when the mapping function is imported
Hi ! Thanks for reporting. Indeed this is a current limitation of the usage we have of `dill` in `datasets`. I'd suggest you use your workaround for now until we find a way to fix this. Maybe functions that are not coming from a module not installed with pip should be dumped completely, rather than only taking their locations into account
## Describe the bug When `.map` is used with a mapping function that is imported, the cache is reused even if the mapping function has been modified. The reason for this is that `dill` that is used for creating the fingerprint [pickles imported functions by reference](https://stackoverflow.com/a/67851411). I guess it is not a widespread case, but it can still lead to unwanted results unnoticeably. ## Steps to reproduce the bug Create files `a.py` and `b.py`: ```python # a.py from datasets import load_dataset def main(): squad = load_dataset("squad") squad.map(mapping_func, batched=True) def mapping_func(examples): ID_LENGTH = 4 examples["id"] = [id_[:ID_LENGTH] for id_ in examples["id"]] return examples if __name__ == "__main__": main() ``` ```python # b.py from datasets import load_dataset from a import mapping_func def main(): squad = load_dataset("squad") squad.map(mapping_func, batched=True) if __name__ == "__main__": main() ``` Run `python b.py` twice: In the first run you will see tqdm bars showing that the data is processed, and in the second run you will see "Loading cached processed dataset at...". Now change `ID_LENGTH` to another number in order to change the mapping function, and run `python b.py` again. You'll see that `.map` loads from the cache the result of the previous mapping function. ## Expected results Run `python a.py` twice: In the first run you will see tqdm bars showing that the data is processed, and in the second run you will see "Loading cached processed dataset at...". Now change `ID_LENGTH` to another number in order to change the mapping function, and run `python a.py` again. You'll see that the dataset is being processed and that there's no reuse of the previous mapping function result. ## Workaround Put the mapping function inside a dummy class as a static method: ```python # a.py class MappingFuncClass: @staticmethod def mapping_func(examples): ID_LENGTH = 4 examples["id"] = [id_[:ID_LENGTH] for id_ in examples["id"]] return examples ``` ```python # b.py from datasets import load_dataset from a import MappingFuncClass def main(): squad = load_dataset("squad") squad.map(MappingFuncClass.mapping_func, batched=True) if __name__ == "__main__": main() ``` ## Environment info <!-- You can run the command `datasets-cli env` and copy-and-paste its output below. --> - `datasets` version: 1.15.1 - Platform: Linux-4.4.0-19041-Microsoft-x86_64-with-glibc2.17 - Python version: 3.8.10 - PyArrow version: 4.0.1
61
.map() cache is wrongfully reused - only happens when the mapping function is imported ## Describe the bug When `.map` is used with a mapping function that is imported, the cache is reused even if the mapping function has been modified. The reason for this is that `dill` that is used for creating the fingerprint [pickles imported functions by reference](https://stackoverflow.com/a/67851411). I guess it is not a widespread case, but it can still lead to unwanted results unnoticeably. ## Steps to reproduce the bug Create files `a.py` and `b.py`: ```python # a.py from datasets import load_dataset def main(): squad = load_dataset("squad") squad.map(mapping_func, batched=True) def mapping_func(examples): ID_LENGTH = 4 examples["id"] = [id_[:ID_LENGTH] for id_ in examples["id"]] return examples if __name__ == "__main__": main() ``` ```python # b.py from datasets import load_dataset from a import mapping_func def main(): squad = load_dataset("squad") squad.map(mapping_func, batched=True) if __name__ == "__main__": main() ``` Run `python b.py` twice: In the first run you will see tqdm bars showing that the data is processed, and in the second run you will see "Loading cached processed dataset at...". Now change `ID_LENGTH` to another number in order to change the mapping function, and run `python b.py` again. You'll see that `.map` loads from the cache the result of the previous mapping function. ## Expected results Run `python a.py` twice: In the first run you will see tqdm bars showing that the data is processed, and in the second run you will see "Loading cached processed dataset at...". Now change `ID_LENGTH` to another number in order to change the mapping function, and run `python a.py` again. You'll see that the dataset is being processed and that there's no reuse of the previous mapping function result. ## Workaround Put the mapping function inside a dummy class as a static method: ```python # a.py class MappingFuncClass: @staticmethod def mapping_func(examples): ID_LENGTH = 4 examples["id"] = [id_[:ID_LENGTH] for id_ in examples["id"]] return examples ``` ```python # b.py from datasets import load_dataset from a import MappingFuncClass def main(): squad = load_dataset("squad") squad.map(MappingFuncClass.mapping_func, batched=True) if __name__ == "__main__": main() ``` ## Environment info <!-- You can run the command `datasets-cli env` and copy-and-paste its output below. --> - `datasets` version: 1.15.1 - Platform: Linux-4.4.0-19041-Microsoft-x86_64-with-glibc2.17 - Python version: 3.8.10 - PyArrow version: 4.0.1 Hi ! Thanks for reporting. Indeed this is a current limitation of the usage we have of `dill` in `datasets`. I'd suggest you use your workaround for now until we find a way to fix this. Maybe functions that are not coming from a module not installed with pip should be dumped completely, rather than only taking their locations into account
[ 0.10230089724063873, -0.10667581856250763, 0.023120544850826263, 0.08790410310029984, 0.14070186018943787, 0.04736433923244476, 0.3940162658691406, 0.31970521807670593, 0.27036458253860474, 0.02674354612827301, -0.2999674081802368, 0.4735362231731415, 0.22659926116466522, -0.35392069816589355, 0.08257293701171875, 0.2903338670730591, 0.010886214673519135, -0.07991760969161987, -0.2749248445034027, -0.1475316733121872, -0.13137580454349518, 0.29691195487976074, -0.12476858496665955, -0.027531489729881287, -0.37643876671791077, -0.001955607905983925, -0.08252768218517303, 0.2113378643989563, 0.15491054952144623, -0.4368239641189575, 0.2179659754037857, -0.07688109576702118, -0.03574180603027344, 0.5390567183494568, -0.0001100551089621149, 0.054533183574676514, 0.03794850781559944, -0.08957463502883911, 0.13877257704734802, 0.06706537306308746, 0.10079250484704971, 0.009417491033673286, 0.17305424809455872, -0.36143243312835693, 0.05235188454389572, 0.25712719559669495, -0.13925829529762268, -0.5689484477043152, 0.447313129901886, -0.0037705348804593086, 0.2838269770145416, 0.1656336784362793, -0.21502824127674103, 0.062295034527778625, 0.13814091682434082, -0.21559052169322968, -0.000041740015149116516, 0.22928814589977264, 0.33754414319992065, -0.2384902685880661, -0.2451905906200409, 0.4039096236228943, -0.16380059719085693, 0.1910475194454193, 0.18892204761505127, 0.19473999738693237, 0.4208258092403412, -0.308711975812912, 0.249178946018219, -0.004850119352340698, -0.041128046810626984, -0.38335832953453064, -0.07324652373790741, -0.21876448392868042, -0.18603184819221497, -0.05574267357587814, 0.11618831008672714, -0.14452527463436127, 0.053653616458177567, 0.1453244686126709, -0.2832435667514801, 0.04088138788938522, 0.37070518732070923, -0.0397302508354187, -0.00635620579123497, -0.021535247564315796, -0.03816502168774605, 0.11835433542728424, 0.06154577061533928, -0.17766313254833221, 0.03703947365283966, -0.17607443034648895, -0.09967619180679321, 0.2941998541355133, -0.22332774102687836, -0.043509118258953094, 0.4221669137477875, -0.08419076353311539, 0.10550620406866074, -0.09759305417537689, 0.1274206042289734, 0.061025477945804596, -0.029226213693618774, 0.17752668261528015, 0.13278071582317352, 0.35566505789756775, 0.17415079474449158, 0.30960679054260254, 0.05345682427287102, -0.27206122875213623, -0.7355597615242004, 0.12154828757047653, 0.28280478715896606, -0.15564854443073273, 0.7647548913955688, 0.043512310832738876, 0.11004701256752014, -0.01210099458694458, 0.14299170672893524, -0.004904978908598423, -0.04043092578649521, -0.08082883805036545, 0.07960888743400574, 0.40667247772216797, 0.013117293827235699, 0.005461854860186577, -0.06614498049020767, -0.05052529275417328, -0.16526278853416443, 0.05075808987021446, -0.26834163069725037, -0.08314308524131775, -0.25202128291130066, 0.15206509828567505, 0.06075020506978035, -0.2434806227684021, 0.3540920913219452, 0.16892670094966888, 0.1843656748533249, -0.2418225109577179, 0.37603139877319336, -0.16999773681163788, 0.5994763970375061, -0.05569911375641823, -0.1549902707338333, 0.13923881947994232, 0.40731722116470337, -0.20253317058086395, -0.21290820837020874, 0.07291403412818909, -0.5269343256950378, -0.15558761358261108, 0.24047216773033142, 0.20545844733715057, -0.18999263644218445, 0.07066495716571808, -0.05216696113348007, 0.01440490409731865, 0.3411013185977936, -0.2802278995513916, 0.12190034240484238, -0.18109510838985443, -0.30573010444641113, -0.49416491389274597, 0.023571861907839775, 0.7083748579025269, -0.0251599233597517, -0.27365583181381226, 0.1357264369726181, 0.15354518592357635, -0.03671339899301529, 0.26522594690322876, -0.32646486163139343, 0.0614330992102623, -0.28046247363090515, 0.20157097280025482, 0.2636337876319885, -0.7171670794487, -0.45488837361335754, 0.1668402999639511, -0.06517007946968079, 0.2845681607723236, -0.24335625767707825, 0.027937164530158043, 0.34999555349349976, -0.18119977414608002, 0.20494116842746735, 0.2732793688774109, 0.05078759044408798, 0.1532679945230484, -0.40074458718299866, -0.08908841758966446, 0.27923107147216797, -0.20285311341285706, 0.0015270449221134186, 0.05504567548632622, 0.1965014934539795, -0.32530924677848816, 0.09882781654596329, -0.0005316063761711121, 0.06897842884063721, 0.21725307404994965, 0.13476426899433136, -0.0804612785577774, 0.06436344981193542, -0.12963317334651947, -0.4603273272514343, 0.31124961376190186, -0.34202471375465393, -0.38842934370040894, -0.08872166275978088, -0.22696903347969055, -0.09025611728429794, -0.10584607720375061, -0.3727753162384033, -0.17629162967205048, 0.1960374265909195, 0.07135684788227081, 0.2777422368526459, -0.11357484757900238, 0.06959268450737, 0.044720664620399475, 0.16837920248508453, -0.045299891382455826, -0.1710416078567505, 0.02016247622668743, -0.06449787318706512, -0.11861589550971985, -0.341167151927948, 0.02430545911192894, 0.3964194059371948, -0.02689712680876255, -0.1344560980796814, 0.293636679649353, 0.19258974492549896, 0.20720568299293518, 0.08274859189987183, 0.16280798614025116, 0.017160046845674515, -0.013747811317443848, 0.07188928872346878, 0.22027942538261414, 0.12092013657093048, -0.19120174646377563, 0.03503073751926422, 0.36275532841682434, -0.006752669811248779, 0.12495623528957367, -0.12248750776052475, -0.09634716808795929, 0.009802287444472313, -0.02927750162780285, -0.09968935698270798, -0.29671424627304077, -0.22784002125263214, 0.07485394924879074, 0.35145628452301025, 0.24226820468902588, -0.049452830106019974, 0.3744911253452301, 0.5678983926773071, 0.16620172560214996, 0.2612204849720001, -0.1951843500137329, -0.17319533228874207, -0.19585159420967102, -0.14266403019428253, 0.04918351396918297, 0.4420596957206726, 0.06961248815059662, 0.20384551584720612, 0.05667596310377121, 0.17876935005187988, -0.014281272888183594, 0.08085393905639648, -0.20157669484615326, 0.144841730594635, 0.02769649401307106, 0.33250874280929565, 0.025382114574313164, -0.12145426124334335, 0.09240075945854187, 0.0325666144490242, -0.06070595979690552, -0.168235182762146, 0.1196252629160881, -0.37127548456192017, 0.2542583644390106, -0.25494053959846497, -0.2912469506263733, -0.20368792116641998, -0.3541097044944763, 0.02480793558061123, 0.012580342590808868, -0.015463568270206451, 0.19742101430892944, -0.05885292962193489, -0.03239329159259796, 0.02162504754960537, -0.4866386651992798, -0.004056248813867569, -0.4126640260219574, -0.05275376886129379, 0.01134452223777771, 0.05154348164796829, -0.16083313524723053, 0.037816137075424194, -0.14551670849323273, -0.03901536762714386, -0.2864362299442291, -0.38753047585487366, 0.04133206978440285, -0.020206764340400696, 0.34793755412101746, -0.11077728867530823, -0.02299807220697403, -0.2151869535446167, -0.027202829718589783, 0.2387235164642334, -0.4787364602088928, -0.08531539887189865, -0.1691819429397583, -0.153203085064888, -0.07969759404659271, -0.07488708198070526, -0.2895053029060364, -0.20953746140003204, -0.20243148505687714, -0.005460485816001892, 0.06846970319747925, 0.08792692422866821, 0.27816241979599, -0.125578835606575, 0.04147185757756233, -0.07483512163162231, 0.13584057986736298, -0.4412340521812439, -0.5766787528991699, 0.29574185609817505, -0.3659021258354187, -0.1257682740688324, 0.0397186316549778, -0.03441204875707626, 0.19662052392959595, -0.08130549639463425, -0.3888835906982422, -0.5012037754058838, -0.05305813252925873, 0.5198502540588379, -0.008358187973499298, 0.22238826751708984, 0.2656993269920349, 0.10259749740362167, -0.07180001586675644, -0.1600397676229477, -0.30340826511383057, -0.0744127556681633, 0.13030937314033508, 0.14743801951408386, 0.0244799442589283, -0.11551447957754135, 0.02129247412085533, 0.948679506778717, 0.4342629909515381, -0.07023034989833832, 0.22316251695156097, -0.024862436577677727, 0.2981393039226532, -0.24544820189476013, -0.3688839375972748, -0.14769792556762695, -0.29280003905296326, 0.006780676543712616, 0.10854064673185349, 0.07525994628667831, -0.1753760427236557, -0.025014903396368027, 0.08259651064872742, -0.48920148611068726, -0.4031330347061157, 0.08567274361848831, -0.16568946838378906, 0.08155721426010132, 0.26020264625549316, 0.21061840653419495, -0.5321556925773621, 0.09022113680839539, 0.16487820446491241, -0.08619076013565063, 0.273644357919693, 0.0793529748916626, -0.36831793189048767, 0.12683819234371185, -0.14033478498458862, 0.2984185814857483, 0.14529134333133698, 0.0825679823756218, 0.08152718842029572, -0.31503409147262573, -0.0014727041125297546, 0.03425927832722664, 0.48994672298431396, -0.2179773896932602, 0.14017337560653687, 0.25524982810020447, -0.34574374556541443, -0.2329723984003067, -0.005628988146781921, 0.20938453078269958, 0.12447159737348557, 0.45651814341545105, 0.14555223286151886, -0.06839247792959213, 0.06686855852603912, -0.1950419843196869, 0.17439523339271545, -0.12984050810337067, -0.17306362092494965, -0.261625736951828, -0.11479873955249786, -0.19351327419281006, -0.046261899173259735, -0.02192769944667816, -0.08247212320566177, 0.2793249487876892, -0.004073712974786758, -0.0877625122666359, 0.024899937212467194, 0.04243368282914162, 0.3235796093940735, 0.4023791551589966, 0.11257065832614899, 0.24668994545936584, 0.2877407670021057, -0.03070354461669922, -0.3817560076713562, 0.5447894334793091, -0.4847739040851593, -0.0462716668844223, -0.04364502429962158, 0.05133180320262909, -0.14235979318618774, 0.3253248929977417, -0.04306568205356598, 0.10858987271785736, -0.26749494671821594, -0.19907818734645844, 0.0409596711397171, -0.2823696732521057, 0.021682433784008026, 0.14586517214775085, 0.04290346801280975, -0.3180772066116333, 0.22871637344360352, 0.15900157392024994, -0.24149386584758759, 0.43373849987983704, -0.4825398921966553, -0.051393039524555206, 0.331993043422699, 0.013612456619739532, 0.9110623002052307, -0.1734670102596283, 0.050028324127197266, 0.012861117720603943, 0.08332319557666779, 0.1100180447101593, 0.09235122799873352, 0.035075485706329346, -0.29237544536590576, -0.18331100046634674, 0.1781264841556549, -0.204847052693367, -0.03194790333509445, 0.0359761044383049, -0.20930294692516327, 0.22539781033992767, -0.24276579916477203, 0.33414292335510254, -0.08209946751594543, 0.02660652995109558, 0.24098040163516998, -0.20799227058887482, -0.0670744851231575, 0.25179022550582886, 0.13974973559379578, 0.1136319488286972, 0.010298699140548706, 0.05575307458639145, 0.011102493852376938, -0.16585063934326172, 0.11019326746463776, 0.19554859399795532, -0.42708620429039, 0.4328400492668152, 0.29245805740356445, 0.03991612792015076, -0.26597604155540466, 0.48051002621650696, 0.09568352997303009, 0.04184737429022789, -0.07787834852933884, 0.18836429715156555, 0.5420473217964172, 0.38608482480049133, -0.10877739638090134, -0.0869285985827446, 0.28976383805274963, 0.05488555133342743, -0.1755194067955017, 0.2509721517562866, -0.07366520166397095, -0.24231693148612976, -0.3938848376274109, 0.6141800880432129, 0.061378899961709976, -0.11860238760709763, -0.1760483682155609, 0.10486022382974625, 0.012377958744764328, -0.07582483440637589, 0.16478955745697021, 0.14628882706165314, -0.17905282974243164, 0.44578850269317627, -0.21310870349407196, -0.3718990385532379, 0.06992746889591217, 0.4534685015678406, 0.17333731055259705, 0.009321492165327072, 0.13762861490249634, -0.0693817287683487, -0.16267821192741394, -0.12016811221837997, 0.007510416209697723, -0.19024193286895752, -0.1392306685447693, 0.1540093719959259, -0.20274534821510315, 0.030033692717552185, 0.10617095232009888, 0.09167347103357315, 0.05862189829349518, 0.1371474415063858, -0.16483281552791595, -0.16937711834907532, -0.33855944871902466, 0.0306352898478508, -0.04413165524601936, 0.021330857649445534, 0.2136191427707672, 0.17973577976226807, -0.11572112888097763, 0.5498872995376587, -0.37376248836517334, 0.3833234906196594, 0.01130431704223156, 0.24342815577983856, 0.07101479172706604, -0.1554386019706726, 0.1830003708600998, -0.14075623452663422, 0.0831087976694107, 0.3224449157714844, -0.4399215579032898, -0.2872861921787262, -0.18114754557609558, 0.10950135439634323, -0.115654356777668, 0.04028066247701645, -0.08397622406482697, -0.0463806614279747, 0.23197157680988312, -0.40622010827064514, 0.23833119869232178, 0.3710241913795471, 0.04380248486995697, 0.02628869190812111, 0.00947713851928711, -0.2384491264820099, 0.07646604627370834, 0.0910535603761673, -0.04770796000957489, 0.013548962771892548, 0.0009513883851468563, 0.08931784331798553, -0.22280745208263397, 0.006117120385169983, -0.00538297463208437, 0.03914302960038185, 0.03585468977689743, -0.024814113974571228, 0.29942068457603455, -0.19010628759860992, -0.02399982139468193, 0.1953641176223755, -0.020641162991523743, 0.014089655131101608, -0.2981203496456146, 0.006875891238451004, -0.1363164782524109, 0.24218879640102386, -0.15658190846443176, -0.18435373902320862, 0.26018059253692627, 0.05663769692182541, 0.18627895414829254, 0.36390313506126404, 0.12493543326854706, 0.1763494312763214, 0.3144248127937317, 0.03460531309247017, 0.4242438077926636, -0.44323134422302246, 0.25291672348976135, -0.035836104303598404, 0.10165345668792725, -0.07559540867805481, 0.42018553614616394, 0.20772573351860046, -0.010179601609706879, 0.13668307662010193, -0.017200492322444916, 0.2263934314250946, -0.10378222912549973, -0.12344411015510559, 0.09181173145771027, -0.3116850256919861, 0.3174942135810852, 0.2845165729522705, -0.19787603616714478, 0.317580908536911, 0.07100521773099899, 0.2801997661590576, -0.08574605733156204, -0.2549968957901001, 0.06612391024827957, 0.35395973920822144, -0.19845902919769287, -0.2379937469959259, 0.2976207733154297, -0.082637257874012, -0.06728359311819077, 0.052072923630476, 0.03853393346071243, -0.07649290561676025, 0.6393723487854004, 0.0912356749176979, -0.09899501502513885, -0.28961315751075745, -0.3925936818122864, -0.022043846547603607, 0.36968153715133667, -0.3258841335773468, 0.16012278199195862, -0.08907763659954071, -0.11696755886077881, 0.013144543394446373, 0.14178034663200378, 0.3679862916469574, 0.2729368805885315, -0.03352585434913635, 0.22235140204429626, 0.019330205395817757, -0.060136713087558746, -0.21758849918842316, 0.19539926946163177, -0.04229661822319031, -0.2627485990524292, 0.2431415468454361, 0.19700101017951965, -0.2314496636390686, -0.19598770141601562, 0.02241406962275505, 0.32020002603530884, -0.1956767737865448, 0.27997490763664246, -0.16404478251934052, 0.04980960488319397, -0.20077785849571228, 0.2425653338432312, -0.30443036556243896, -0.007469034753739834, 0.28475382924079895, -0.05850447341799736, 0.18190664052963257, -0.33290642499923706, 0.13305741548538208, 0.14629687368869781, 0.22972418367862701, 0.24113884568214417, -0.05357890576124191, -0.36732372641563416, 0.14206260442733765, -0.7182417511940002, 0.39564022421836853, -0.22167852520942688, 0.24004057049751282, 0.01669667288661003, 0.32239842414855957, -0.11669176071882248, 0.24645236134529114, 0.24276122450828552, -0.09333926439285278, 0.11884713917970657, 0.050218284130096436, -0.23494629561901093, -0.0020498186349868774, -0.2285541445016861, -0.16097575426101685, 0.3383444845676422, -0.5207580327987671, 0.05670594051480293, -0.07224788516759872, 0.18383574485778809, -0.14927619695663452, -0.3342309594154358, 0.09711338579654694, 0.1433500349521637, 0.5966309905052185, 0.26920849084854126, 0.24119485914707184, -0.04079402610659599, -0.1440562605857849, -0.1243852823972702, -0.3183666467666626, 0.07180649787187576, 0.00005837529897689819, 0.12264159321784973, 0.06387835741043091, -0.28428179025650024, -0.35493704676628113, -0.324748158454895, 0.09232528507709503, 0.08931539952754974, -0.0798204243183136, -0.2577168345451355, -0.07091158628463745, -0.15220358967781067, 0.2547755539417267, -0.050595130771398544, 0.7089002728462219, -0.12339460849761963, 0.49829578399658203, -0.1800350546836853, -0.1781490594148636, 0.5450959801673889, -0.48461732268333435, -0.27337518334388733, -0.11139777302742004, 0.2527100145816803, -0.06890503317117691, -0.32048115134239197, -0.4433939456939697, -0.031323082745075226, 0.30661657452583313, -0.007108226418495178, -0.36161118745803833, 0.03030342049896717, -0.3417622148990631, 0.16792291402816772, -0.10153302550315857, 0.07317008078098297, 0.08249065279960632, 0.018058495596051216, 0.1740790605545044, -0.19893452525138855 ]
https://github.com/huggingface/datasets/issues/3297
.map() cache is wrongfully reused - only happens when the mapping function is imported
I agree. Sounds like a solution for it would be pretty dirty, even [cloudpickle](https://stackoverflow.com/a/16891169) doesn't help in this case. In the meanwhile I think that adding a warning and the workaround somewhere in the documentation can be helpful.
## Describe the bug When `.map` is used with a mapping function that is imported, the cache is reused even if the mapping function has been modified. The reason for this is that `dill` that is used for creating the fingerprint [pickles imported functions by reference](https://stackoverflow.com/a/67851411). I guess it is not a widespread case, but it can still lead to unwanted results unnoticeably. ## Steps to reproduce the bug Create files `a.py` and `b.py`: ```python # a.py from datasets import load_dataset def main(): squad = load_dataset("squad") squad.map(mapping_func, batched=True) def mapping_func(examples): ID_LENGTH = 4 examples["id"] = [id_[:ID_LENGTH] for id_ in examples["id"]] return examples if __name__ == "__main__": main() ``` ```python # b.py from datasets import load_dataset from a import mapping_func def main(): squad = load_dataset("squad") squad.map(mapping_func, batched=True) if __name__ == "__main__": main() ``` Run `python b.py` twice: In the first run you will see tqdm bars showing that the data is processed, and in the second run you will see "Loading cached processed dataset at...". Now change `ID_LENGTH` to another number in order to change the mapping function, and run `python b.py` again. You'll see that `.map` loads from the cache the result of the previous mapping function. ## Expected results Run `python a.py` twice: In the first run you will see tqdm bars showing that the data is processed, and in the second run you will see "Loading cached processed dataset at...". Now change `ID_LENGTH` to another number in order to change the mapping function, and run `python a.py` again. You'll see that the dataset is being processed and that there's no reuse of the previous mapping function result. ## Workaround Put the mapping function inside a dummy class as a static method: ```python # a.py class MappingFuncClass: @staticmethod def mapping_func(examples): ID_LENGTH = 4 examples["id"] = [id_[:ID_LENGTH] for id_ in examples["id"]] return examples ``` ```python # b.py from datasets import load_dataset from a import MappingFuncClass def main(): squad = load_dataset("squad") squad.map(MappingFuncClass.mapping_func, batched=True) if __name__ == "__main__": main() ``` ## Environment info <!-- You can run the command `datasets-cli env` and copy-and-paste its output below. --> - `datasets` version: 1.15.1 - Platform: Linux-4.4.0-19041-Microsoft-x86_64-with-glibc2.17 - Python version: 3.8.10 - PyArrow version: 4.0.1
38
.map() cache is wrongfully reused - only happens when the mapping function is imported ## Describe the bug When `.map` is used with a mapping function that is imported, the cache is reused even if the mapping function has been modified. The reason for this is that `dill` that is used for creating the fingerprint [pickles imported functions by reference](https://stackoverflow.com/a/67851411). I guess it is not a widespread case, but it can still lead to unwanted results unnoticeably. ## Steps to reproduce the bug Create files `a.py` and `b.py`: ```python # a.py from datasets import load_dataset def main(): squad = load_dataset("squad") squad.map(mapping_func, batched=True) def mapping_func(examples): ID_LENGTH = 4 examples["id"] = [id_[:ID_LENGTH] for id_ in examples["id"]] return examples if __name__ == "__main__": main() ``` ```python # b.py from datasets import load_dataset from a import mapping_func def main(): squad = load_dataset("squad") squad.map(mapping_func, batched=True) if __name__ == "__main__": main() ``` Run `python b.py` twice: In the first run you will see tqdm bars showing that the data is processed, and in the second run you will see "Loading cached processed dataset at...". Now change `ID_LENGTH` to another number in order to change the mapping function, and run `python b.py` again. You'll see that `.map` loads from the cache the result of the previous mapping function. ## Expected results Run `python a.py` twice: In the first run you will see tqdm bars showing that the data is processed, and in the second run you will see "Loading cached processed dataset at...". Now change `ID_LENGTH` to another number in order to change the mapping function, and run `python a.py` again. You'll see that the dataset is being processed and that there's no reuse of the previous mapping function result. ## Workaround Put the mapping function inside a dummy class as a static method: ```python # a.py class MappingFuncClass: @staticmethod def mapping_func(examples): ID_LENGTH = 4 examples["id"] = [id_[:ID_LENGTH] for id_ in examples["id"]] return examples ``` ```python # b.py from datasets import load_dataset from a import MappingFuncClass def main(): squad = load_dataset("squad") squad.map(MappingFuncClass.mapping_func, batched=True) if __name__ == "__main__": main() ``` ## Environment info <!-- You can run the command `datasets-cli env` and copy-and-paste its output below. --> - `datasets` version: 1.15.1 - Platform: Linux-4.4.0-19041-Microsoft-x86_64-with-glibc2.17 - Python version: 3.8.10 - PyArrow version: 4.0.1 I agree. Sounds like a solution for it would be pretty dirty, even [cloudpickle](https://stackoverflow.com/a/16891169) doesn't help in this case. In the meanwhile I think that adding a warning and the workaround somewhere in the documentation can be helpful.
[ 0.10230089724063873, -0.10667581856250763, 0.023120544850826263, 0.08790410310029984, 0.14070186018943787, 0.04736433923244476, 0.3940162658691406, 0.31970521807670593, 0.27036458253860474, 0.02674354612827301, -0.2999674081802368, 0.4735362231731415, 0.22659926116466522, -0.35392069816589355, 0.08257293701171875, 0.2903338670730591, 0.010886214673519135, -0.07991760969161987, -0.2749248445034027, -0.1475316733121872, -0.13137580454349518, 0.29691195487976074, -0.12476858496665955, -0.027531489729881287, -0.37643876671791077, -0.001955607905983925, -0.08252768218517303, 0.2113378643989563, 0.15491054952144623, -0.4368239641189575, 0.2179659754037857, -0.07688109576702118, -0.03574180603027344, 0.5390567183494568, -0.0001100551089621149, 0.054533183574676514, 0.03794850781559944, -0.08957463502883911, 0.13877257704734802, 0.06706537306308746, 0.10079250484704971, 0.009417491033673286, 0.17305424809455872, -0.36143243312835693, 0.05235188454389572, 0.25712719559669495, -0.13925829529762268, -0.5689484477043152, 0.447313129901886, -0.0037705348804593086, 0.2838269770145416, 0.1656336784362793, -0.21502824127674103, 0.062295034527778625, 0.13814091682434082, -0.21559052169322968, -0.000041740015149116516, 0.22928814589977264, 0.33754414319992065, -0.2384902685880661, -0.2451905906200409, 0.4039096236228943, -0.16380059719085693, 0.1910475194454193, 0.18892204761505127, 0.19473999738693237, 0.4208258092403412, -0.308711975812912, 0.249178946018219, -0.004850119352340698, -0.041128046810626984, -0.38335832953453064, -0.07324652373790741, -0.21876448392868042, -0.18603184819221497, -0.05574267357587814, 0.11618831008672714, -0.14452527463436127, 0.053653616458177567, 0.1453244686126709, -0.2832435667514801, 0.04088138788938522, 0.37070518732070923, -0.0397302508354187, -0.00635620579123497, -0.021535247564315796, -0.03816502168774605, 0.11835433542728424, 0.06154577061533928, -0.17766313254833221, 0.03703947365283966, -0.17607443034648895, -0.09967619180679321, 0.2941998541355133, -0.22332774102687836, -0.043509118258953094, 0.4221669137477875, -0.08419076353311539, 0.10550620406866074, -0.09759305417537689, 0.1274206042289734, 0.061025477945804596, -0.029226213693618774, 0.17752668261528015, 0.13278071582317352, 0.35566505789756775, 0.17415079474449158, 0.30960679054260254, 0.05345682427287102, -0.27206122875213623, -0.7355597615242004, 0.12154828757047653, 0.28280478715896606, -0.15564854443073273, 0.7647548913955688, 0.043512310832738876, 0.11004701256752014, -0.01210099458694458, 0.14299170672893524, -0.004904978908598423, -0.04043092578649521, -0.08082883805036545, 0.07960888743400574, 0.40667247772216797, 0.013117293827235699, 0.005461854860186577, -0.06614498049020767, -0.05052529275417328, -0.16526278853416443, 0.05075808987021446, -0.26834163069725037, -0.08314308524131775, -0.25202128291130066, 0.15206509828567505, 0.06075020506978035, -0.2434806227684021, 0.3540920913219452, 0.16892670094966888, 0.1843656748533249, -0.2418225109577179, 0.37603139877319336, -0.16999773681163788, 0.5994763970375061, -0.05569911375641823, -0.1549902707338333, 0.13923881947994232, 0.40731722116470337, -0.20253317058086395, -0.21290820837020874, 0.07291403412818909, -0.5269343256950378, -0.15558761358261108, 0.24047216773033142, 0.20545844733715057, -0.18999263644218445, 0.07066495716571808, -0.05216696113348007, 0.01440490409731865, 0.3411013185977936, -0.2802278995513916, 0.12190034240484238, -0.18109510838985443, -0.30573010444641113, -0.49416491389274597, 0.023571861907839775, 0.7083748579025269, -0.0251599233597517, -0.27365583181381226, 0.1357264369726181, 0.15354518592357635, -0.03671339899301529, 0.26522594690322876, -0.32646486163139343, 0.0614330992102623, -0.28046247363090515, 0.20157097280025482, 0.2636337876319885, -0.7171670794487, -0.45488837361335754, 0.1668402999639511, -0.06517007946968079, 0.2845681607723236, -0.24335625767707825, 0.027937164530158043, 0.34999555349349976, -0.18119977414608002, 0.20494116842746735, 0.2732793688774109, 0.05078759044408798, 0.1532679945230484, -0.40074458718299866, -0.08908841758966446, 0.27923107147216797, -0.20285311341285706, 0.0015270449221134186, 0.05504567548632622, 0.1965014934539795, -0.32530924677848816, 0.09882781654596329, -0.0005316063761711121, 0.06897842884063721, 0.21725307404994965, 0.13476426899433136, -0.0804612785577774, 0.06436344981193542, -0.12963317334651947, -0.4603273272514343, 0.31124961376190186, -0.34202471375465393, -0.38842934370040894, -0.08872166275978088, -0.22696903347969055, -0.09025611728429794, -0.10584607720375061, -0.3727753162384033, -0.17629162967205048, 0.1960374265909195, 0.07135684788227081, 0.2777422368526459, -0.11357484757900238, 0.06959268450737, 0.044720664620399475, 0.16837920248508453, -0.045299891382455826, -0.1710416078567505, 0.02016247622668743, -0.06449787318706512, -0.11861589550971985, -0.341167151927948, 0.02430545911192894, 0.3964194059371948, -0.02689712680876255, -0.1344560980796814, 0.293636679649353, 0.19258974492549896, 0.20720568299293518, 0.08274859189987183, 0.16280798614025116, 0.017160046845674515, -0.013747811317443848, 0.07188928872346878, 0.22027942538261414, 0.12092013657093048, -0.19120174646377563, 0.03503073751926422, 0.36275532841682434, -0.006752669811248779, 0.12495623528957367, -0.12248750776052475, -0.09634716808795929, 0.009802287444472313, -0.02927750162780285, -0.09968935698270798, -0.29671424627304077, -0.22784002125263214, 0.07485394924879074, 0.35145628452301025, 0.24226820468902588, -0.049452830106019974, 0.3744911253452301, 0.5678983926773071, 0.16620172560214996, 0.2612204849720001, -0.1951843500137329, -0.17319533228874207, -0.19585159420967102, -0.14266403019428253, 0.04918351396918297, 0.4420596957206726, 0.06961248815059662, 0.20384551584720612, 0.05667596310377121, 0.17876935005187988, -0.014281272888183594, 0.08085393905639648, -0.20157669484615326, 0.144841730594635, 0.02769649401307106, 0.33250874280929565, 0.025382114574313164, -0.12145426124334335, 0.09240075945854187, 0.0325666144490242, -0.06070595979690552, -0.168235182762146, 0.1196252629160881, -0.37127548456192017, 0.2542583644390106, -0.25494053959846497, -0.2912469506263733, -0.20368792116641998, -0.3541097044944763, 0.02480793558061123, 0.012580342590808868, -0.015463568270206451, 0.19742101430892944, -0.05885292962193489, -0.03239329159259796, 0.02162504754960537, -0.4866386651992798, -0.004056248813867569, -0.4126640260219574, -0.05275376886129379, 0.01134452223777771, 0.05154348164796829, -0.16083313524723053, 0.037816137075424194, -0.14551670849323273, -0.03901536762714386, -0.2864362299442291, -0.38753047585487366, 0.04133206978440285, -0.020206764340400696, 0.34793755412101746, -0.11077728867530823, -0.02299807220697403, -0.2151869535446167, -0.027202829718589783, 0.2387235164642334, -0.4787364602088928, -0.08531539887189865, -0.1691819429397583, -0.153203085064888, -0.07969759404659271, -0.07488708198070526, -0.2895053029060364, -0.20953746140003204, -0.20243148505687714, -0.005460485816001892, 0.06846970319747925, 0.08792692422866821, 0.27816241979599, -0.125578835606575, 0.04147185757756233, -0.07483512163162231, 0.13584057986736298, -0.4412340521812439, -0.5766787528991699, 0.29574185609817505, -0.3659021258354187, -0.1257682740688324, 0.0397186316549778, -0.03441204875707626, 0.19662052392959595, -0.08130549639463425, -0.3888835906982422, -0.5012037754058838, -0.05305813252925873, 0.5198502540588379, -0.008358187973499298, 0.22238826751708984, 0.2656993269920349, 0.10259749740362167, -0.07180001586675644, -0.1600397676229477, -0.30340826511383057, -0.0744127556681633, 0.13030937314033508, 0.14743801951408386, 0.0244799442589283, -0.11551447957754135, 0.02129247412085533, 0.948679506778717, 0.4342629909515381, -0.07023034989833832, 0.22316251695156097, -0.024862436577677727, 0.2981393039226532, -0.24544820189476013, -0.3688839375972748, -0.14769792556762695, -0.29280003905296326, 0.006780676543712616, 0.10854064673185349, 0.07525994628667831, -0.1753760427236557, -0.025014903396368027, 0.08259651064872742, -0.48920148611068726, -0.4031330347061157, 0.08567274361848831, -0.16568946838378906, 0.08155721426010132, 0.26020264625549316, 0.21061840653419495, -0.5321556925773621, 0.09022113680839539, 0.16487820446491241, -0.08619076013565063, 0.273644357919693, 0.0793529748916626, -0.36831793189048767, 0.12683819234371185, -0.14033478498458862, 0.2984185814857483, 0.14529134333133698, 0.0825679823756218, 0.08152718842029572, -0.31503409147262573, -0.0014727041125297546, 0.03425927832722664, 0.48994672298431396, -0.2179773896932602, 0.14017337560653687, 0.25524982810020447, -0.34574374556541443, -0.2329723984003067, -0.005628988146781921, 0.20938453078269958, 0.12447159737348557, 0.45651814341545105, 0.14555223286151886, -0.06839247792959213, 0.06686855852603912, -0.1950419843196869, 0.17439523339271545, -0.12984050810337067, -0.17306362092494965, -0.261625736951828, -0.11479873955249786, -0.19351327419281006, -0.046261899173259735, -0.02192769944667816, -0.08247212320566177, 0.2793249487876892, -0.004073712974786758, -0.0877625122666359, 0.024899937212467194, 0.04243368282914162, 0.3235796093940735, 0.4023791551589966, 0.11257065832614899, 0.24668994545936584, 0.2877407670021057, -0.03070354461669922, -0.3817560076713562, 0.5447894334793091, -0.4847739040851593, -0.0462716668844223, -0.04364502429962158, 0.05133180320262909, -0.14235979318618774, 0.3253248929977417, -0.04306568205356598, 0.10858987271785736, -0.26749494671821594, -0.19907818734645844, 0.0409596711397171, -0.2823696732521057, 0.021682433784008026, 0.14586517214775085, 0.04290346801280975, -0.3180772066116333, 0.22871637344360352, 0.15900157392024994, -0.24149386584758759, 0.43373849987983704, -0.4825398921966553, -0.051393039524555206, 0.331993043422699, 0.013612456619739532, 0.9110623002052307, -0.1734670102596283, 0.050028324127197266, 0.012861117720603943, 0.08332319557666779, 0.1100180447101593, 0.09235122799873352, 0.035075485706329346, -0.29237544536590576, -0.18331100046634674, 0.1781264841556549, -0.204847052693367, -0.03194790333509445, 0.0359761044383049, -0.20930294692516327, 0.22539781033992767, -0.24276579916477203, 0.33414292335510254, -0.08209946751594543, 0.02660652995109558, 0.24098040163516998, -0.20799227058887482, -0.0670744851231575, 0.25179022550582886, 0.13974973559379578, 0.1136319488286972, 0.010298699140548706, 0.05575307458639145, 0.011102493852376938, -0.16585063934326172, 0.11019326746463776, 0.19554859399795532, -0.42708620429039, 0.4328400492668152, 0.29245805740356445, 0.03991612792015076, -0.26597604155540466, 0.48051002621650696, 0.09568352997303009, 0.04184737429022789, -0.07787834852933884, 0.18836429715156555, 0.5420473217964172, 0.38608482480049133, -0.10877739638090134, -0.0869285985827446, 0.28976383805274963, 0.05488555133342743, -0.1755194067955017, 0.2509721517562866, -0.07366520166397095, -0.24231693148612976, -0.3938848376274109, 0.6141800880432129, 0.061378899961709976, -0.11860238760709763, -0.1760483682155609, 0.10486022382974625, 0.012377958744764328, -0.07582483440637589, 0.16478955745697021, 0.14628882706165314, -0.17905282974243164, 0.44578850269317627, -0.21310870349407196, -0.3718990385532379, 0.06992746889591217, 0.4534685015678406, 0.17333731055259705, 0.009321492165327072, 0.13762861490249634, -0.0693817287683487, -0.16267821192741394, -0.12016811221837997, 0.007510416209697723, -0.19024193286895752, -0.1392306685447693, 0.1540093719959259, -0.20274534821510315, 0.030033692717552185, 0.10617095232009888, 0.09167347103357315, 0.05862189829349518, 0.1371474415063858, -0.16483281552791595, -0.16937711834907532, -0.33855944871902466, 0.0306352898478508, -0.04413165524601936, 0.021330857649445534, 0.2136191427707672, 0.17973577976226807, -0.11572112888097763, 0.5498872995376587, -0.37376248836517334, 0.3833234906196594, 0.01130431704223156, 0.24342815577983856, 0.07101479172706604, -0.1554386019706726, 0.1830003708600998, -0.14075623452663422, 0.0831087976694107, 0.3224449157714844, -0.4399215579032898, -0.2872861921787262, -0.18114754557609558, 0.10950135439634323, -0.115654356777668, 0.04028066247701645, -0.08397622406482697, -0.0463806614279747, 0.23197157680988312, -0.40622010827064514, 0.23833119869232178, 0.3710241913795471, 0.04380248486995697, 0.02628869190812111, 0.00947713851928711, -0.2384491264820099, 0.07646604627370834, 0.0910535603761673, -0.04770796000957489, 0.013548962771892548, 0.0009513883851468563, 0.08931784331798553, -0.22280745208263397, 0.006117120385169983, -0.00538297463208437, 0.03914302960038185, 0.03585468977689743, -0.024814113974571228, 0.29942068457603455, -0.19010628759860992, -0.02399982139468193, 0.1953641176223755, -0.020641162991523743, 0.014089655131101608, -0.2981203496456146, 0.006875891238451004, -0.1363164782524109, 0.24218879640102386, -0.15658190846443176, -0.18435373902320862, 0.26018059253692627, 0.05663769692182541, 0.18627895414829254, 0.36390313506126404, 0.12493543326854706, 0.1763494312763214, 0.3144248127937317, 0.03460531309247017, 0.4242438077926636, -0.44323134422302246, 0.25291672348976135, -0.035836104303598404, 0.10165345668792725, -0.07559540867805481, 0.42018553614616394, 0.20772573351860046, -0.010179601609706879, 0.13668307662010193, -0.017200492322444916, 0.2263934314250946, -0.10378222912549973, -0.12344411015510559, 0.09181173145771027, -0.3116850256919861, 0.3174942135810852, 0.2845165729522705, -0.19787603616714478, 0.317580908536911, 0.07100521773099899, 0.2801997661590576, -0.08574605733156204, -0.2549968957901001, 0.06612391024827957, 0.35395973920822144, -0.19845902919769287, -0.2379937469959259, 0.2976207733154297, -0.082637257874012, -0.06728359311819077, 0.052072923630476, 0.03853393346071243, -0.07649290561676025, 0.6393723487854004, 0.0912356749176979, -0.09899501502513885, -0.28961315751075745, -0.3925936818122864, -0.022043846547603607, 0.36968153715133667, -0.3258841335773468, 0.16012278199195862, -0.08907763659954071, -0.11696755886077881, 0.013144543394446373, 0.14178034663200378, 0.3679862916469574, 0.2729368805885315, -0.03352585434913635, 0.22235140204429626, 0.019330205395817757, -0.060136713087558746, -0.21758849918842316, 0.19539926946163177, -0.04229661822319031, -0.2627485990524292, 0.2431415468454361, 0.19700101017951965, -0.2314496636390686, -0.19598770141601562, 0.02241406962275505, 0.32020002603530884, -0.1956767737865448, 0.27997490763664246, -0.16404478251934052, 0.04980960488319397, -0.20077785849571228, 0.2425653338432312, -0.30443036556243896, -0.007469034753739834, 0.28475382924079895, -0.05850447341799736, 0.18190664052963257, -0.33290642499923706, 0.13305741548538208, 0.14629687368869781, 0.22972418367862701, 0.24113884568214417, -0.05357890576124191, -0.36732372641563416, 0.14206260442733765, -0.7182417511940002, 0.39564022421836853, -0.22167852520942688, 0.24004057049751282, 0.01669667288661003, 0.32239842414855957, -0.11669176071882248, 0.24645236134529114, 0.24276122450828552, -0.09333926439285278, 0.11884713917970657, 0.050218284130096436, -0.23494629561901093, -0.0020498186349868774, -0.2285541445016861, -0.16097575426101685, 0.3383444845676422, -0.5207580327987671, 0.05670594051480293, -0.07224788516759872, 0.18383574485778809, -0.14927619695663452, -0.3342309594154358, 0.09711338579654694, 0.1433500349521637, 0.5966309905052185, 0.26920849084854126, 0.24119485914707184, -0.04079402610659599, -0.1440562605857849, -0.1243852823972702, -0.3183666467666626, 0.07180649787187576, 0.00005837529897689819, 0.12264159321784973, 0.06387835741043091, -0.28428179025650024, -0.35493704676628113, -0.324748158454895, 0.09232528507709503, 0.08931539952754974, -0.0798204243183136, -0.2577168345451355, -0.07091158628463745, -0.15220358967781067, 0.2547755539417267, -0.050595130771398544, 0.7089002728462219, -0.12339460849761963, 0.49829578399658203, -0.1800350546836853, -0.1781490594148636, 0.5450959801673889, -0.48461732268333435, -0.27337518334388733, -0.11139777302742004, 0.2527100145816803, -0.06890503317117691, -0.32048115134239197, -0.4433939456939697, -0.031323082745075226, 0.30661657452583313, -0.007108226418495178, -0.36161118745803833, 0.03030342049896717, -0.3417622148990631, 0.16792291402816772, -0.10153302550315857, 0.07317008078098297, 0.08249065279960632, 0.018058495596051216, 0.1740790605545044, -0.19893452525138855 ]
https://github.com/huggingface/datasets/issues/3297
.map() cache is wrongfully reused - only happens when the mapping function is imported
For anyone interested, I see that with `dill==0.3.6` the workaround I suggested doesn't work anymore. I opened an issue about it: https://github.com/uqfoundation/dill/issues/572.
## Describe the bug When `.map` is used with a mapping function that is imported, the cache is reused even if the mapping function has been modified. The reason for this is that `dill` that is used for creating the fingerprint [pickles imported functions by reference](https://stackoverflow.com/a/67851411). I guess it is not a widespread case, but it can still lead to unwanted results unnoticeably. ## Steps to reproduce the bug Create files `a.py` and `b.py`: ```python # a.py from datasets import load_dataset def main(): squad = load_dataset("squad") squad.map(mapping_func, batched=True) def mapping_func(examples): ID_LENGTH = 4 examples["id"] = [id_[:ID_LENGTH] for id_ in examples["id"]] return examples if __name__ == "__main__": main() ``` ```python # b.py from datasets import load_dataset from a import mapping_func def main(): squad = load_dataset("squad") squad.map(mapping_func, batched=True) if __name__ == "__main__": main() ``` Run `python b.py` twice: In the first run you will see tqdm bars showing that the data is processed, and in the second run you will see "Loading cached processed dataset at...". Now change `ID_LENGTH` to another number in order to change the mapping function, and run `python b.py` again. You'll see that `.map` loads from the cache the result of the previous mapping function. ## Expected results Run `python a.py` twice: In the first run you will see tqdm bars showing that the data is processed, and in the second run you will see "Loading cached processed dataset at...". Now change `ID_LENGTH` to another number in order to change the mapping function, and run `python a.py` again. You'll see that the dataset is being processed and that there's no reuse of the previous mapping function result. ## Workaround Put the mapping function inside a dummy class as a static method: ```python # a.py class MappingFuncClass: @staticmethod def mapping_func(examples): ID_LENGTH = 4 examples["id"] = [id_[:ID_LENGTH] for id_ in examples["id"]] return examples ``` ```python # b.py from datasets import load_dataset from a import MappingFuncClass def main(): squad = load_dataset("squad") squad.map(MappingFuncClass.mapping_func, batched=True) if __name__ == "__main__": main() ``` ## Environment info <!-- You can run the command `datasets-cli env` and copy-and-paste its output below. --> - `datasets` version: 1.15.1 - Platform: Linux-4.4.0-19041-Microsoft-x86_64-with-glibc2.17 - Python version: 3.8.10 - PyArrow version: 4.0.1
22
.map() cache is wrongfully reused - only happens when the mapping function is imported ## Describe the bug When `.map` is used with a mapping function that is imported, the cache is reused even if the mapping function has been modified. The reason for this is that `dill` that is used for creating the fingerprint [pickles imported functions by reference](https://stackoverflow.com/a/67851411). I guess it is not a widespread case, but it can still lead to unwanted results unnoticeably. ## Steps to reproduce the bug Create files `a.py` and `b.py`: ```python # a.py from datasets import load_dataset def main(): squad = load_dataset("squad") squad.map(mapping_func, batched=True) def mapping_func(examples): ID_LENGTH = 4 examples["id"] = [id_[:ID_LENGTH] for id_ in examples["id"]] return examples if __name__ == "__main__": main() ``` ```python # b.py from datasets import load_dataset from a import mapping_func def main(): squad = load_dataset("squad") squad.map(mapping_func, batched=True) if __name__ == "__main__": main() ``` Run `python b.py` twice: In the first run you will see tqdm bars showing that the data is processed, and in the second run you will see "Loading cached processed dataset at...". Now change `ID_LENGTH` to another number in order to change the mapping function, and run `python b.py` again. You'll see that `.map` loads from the cache the result of the previous mapping function. ## Expected results Run `python a.py` twice: In the first run you will see tqdm bars showing that the data is processed, and in the second run you will see "Loading cached processed dataset at...". Now change `ID_LENGTH` to another number in order to change the mapping function, and run `python a.py` again. You'll see that the dataset is being processed and that there's no reuse of the previous mapping function result. ## Workaround Put the mapping function inside a dummy class as a static method: ```python # a.py class MappingFuncClass: @staticmethod def mapping_func(examples): ID_LENGTH = 4 examples["id"] = [id_[:ID_LENGTH] for id_ in examples["id"]] return examples ``` ```python # b.py from datasets import load_dataset from a import MappingFuncClass def main(): squad = load_dataset("squad") squad.map(MappingFuncClass.mapping_func, batched=True) if __name__ == "__main__": main() ``` ## Environment info <!-- You can run the command `datasets-cli env` and copy-and-paste its output below. --> - `datasets` version: 1.15.1 - Platform: Linux-4.4.0-19041-Microsoft-x86_64-with-glibc2.17 - Python version: 3.8.10 - PyArrow version: 4.0.1 For anyone interested, I see that with `dill==0.3.6` the workaround I suggested doesn't work anymore. I opened an issue about it: https://github.com/uqfoundation/dill/issues/572.
[ 0.10230089724063873, -0.10667581856250763, 0.023120544850826263, 0.08790410310029984, 0.14070186018943787, 0.04736433923244476, 0.3940162658691406, 0.31970521807670593, 0.27036458253860474, 0.02674354612827301, -0.2999674081802368, 0.4735362231731415, 0.22659926116466522, -0.35392069816589355, 0.08257293701171875, 0.2903338670730591, 0.010886214673519135, -0.07991760969161987, -0.2749248445034027, -0.1475316733121872, -0.13137580454349518, 0.29691195487976074, -0.12476858496665955, -0.027531489729881287, -0.37643876671791077, -0.001955607905983925, -0.08252768218517303, 0.2113378643989563, 0.15491054952144623, -0.4368239641189575, 0.2179659754037857, -0.07688109576702118, -0.03574180603027344, 0.5390567183494568, -0.0001100551089621149, 0.054533183574676514, 0.03794850781559944, -0.08957463502883911, 0.13877257704734802, 0.06706537306308746, 0.10079250484704971, 0.009417491033673286, 0.17305424809455872, -0.36143243312835693, 0.05235188454389572, 0.25712719559669495, -0.13925829529762268, -0.5689484477043152, 0.447313129901886, -0.0037705348804593086, 0.2838269770145416, 0.1656336784362793, -0.21502824127674103, 0.062295034527778625, 0.13814091682434082, -0.21559052169322968, -0.000041740015149116516, 0.22928814589977264, 0.33754414319992065, -0.2384902685880661, -0.2451905906200409, 0.4039096236228943, -0.16380059719085693, 0.1910475194454193, 0.18892204761505127, 0.19473999738693237, 0.4208258092403412, -0.308711975812912, 0.249178946018219, -0.004850119352340698, -0.041128046810626984, -0.38335832953453064, -0.07324652373790741, -0.21876448392868042, -0.18603184819221497, -0.05574267357587814, 0.11618831008672714, -0.14452527463436127, 0.053653616458177567, 0.1453244686126709, -0.2832435667514801, 0.04088138788938522, 0.37070518732070923, -0.0397302508354187, -0.00635620579123497, -0.021535247564315796, -0.03816502168774605, 0.11835433542728424, 0.06154577061533928, -0.17766313254833221, 0.03703947365283966, -0.17607443034648895, -0.09967619180679321, 0.2941998541355133, -0.22332774102687836, -0.043509118258953094, 0.4221669137477875, -0.08419076353311539, 0.10550620406866074, -0.09759305417537689, 0.1274206042289734, 0.061025477945804596, -0.029226213693618774, 0.17752668261528015, 0.13278071582317352, 0.35566505789756775, 0.17415079474449158, 0.30960679054260254, 0.05345682427287102, -0.27206122875213623, -0.7355597615242004, 0.12154828757047653, 0.28280478715896606, -0.15564854443073273, 0.7647548913955688, 0.043512310832738876, 0.11004701256752014, -0.01210099458694458, 0.14299170672893524, -0.004904978908598423, -0.04043092578649521, -0.08082883805036545, 0.07960888743400574, 0.40667247772216797, 0.013117293827235699, 0.005461854860186577, -0.06614498049020767, -0.05052529275417328, -0.16526278853416443, 0.05075808987021446, -0.26834163069725037, -0.08314308524131775, -0.25202128291130066, 0.15206509828567505, 0.06075020506978035, -0.2434806227684021, 0.3540920913219452, 0.16892670094966888, 0.1843656748533249, -0.2418225109577179, 0.37603139877319336, -0.16999773681163788, 0.5994763970375061, -0.05569911375641823, -0.1549902707338333, 0.13923881947994232, 0.40731722116470337, -0.20253317058086395, -0.21290820837020874, 0.07291403412818909, -0.5269343256950378, -0.15558761358261108, 0.24047216773033142, 0.20545844733715057, -0.18999263644218445, 0.07066495716571808, -0.05216696113348007, 0.01440490409731865, 0.3411013185977936, -0.2802278995513916, 0.12190034240484238, -0.18109510838985443, -0.30573010444641113, -0.49416491389274597, 0.023571861907839775, 0.7083748579025269, -0.0251599233597517, -0.27365583181381226, 0.1357264369726181, 0.15354518592357635, -0.03671339899301529, 0.26522594690322876, -0.32646486163139343, 0.0614330992102623, -0.28046247363090515, 0.20157097280025482, 0.2636337876319885, -0.7171670794487, -0.45488837361335754, 0.1668402999639511, -0.06517007946968079, 0.2845681607723236, -0.24335625767707825, 0.027937164530158043, 0.34999555349349976, -0.18119977414608002, 0.20494116842746735, 0.2732793688774109, 0.05078759044408798, 0.1532679945230484, -0.40074458718299866, -0.08908841758966446, 0.27923107147216797, -0.20285311341285706, 0.0015270449221134186, 0.05504567548632622, 0.1965014934539795, -0.32530924677848816, 0.09882781654596329, -0.0005316063761711121, 0.06897842884063721, 0.21725307404994965, 0.13476426899433136, -0.0804612785577774, 0.06436344981193542, -0.12963317334651947, -0.4603273272514343, 0.31124961376190186, -0.34202471375465393, -0.38842934370040894, -0.08872166275978088, -0.22696903347969055, -0.09025611728429794, -0.10584607720375061, -0.3727753162384033, -0.17629162967205048, 0.1960374265909195, 0.07135684788227081, 0.2777422368526459, -0.11357484757900238, 0.06959268450737, 0.044720664620399475, 0.16837920248508453, -0.045299891382455826, -0.1710416078567505, 0.02016247622668743, -0.06449787318706512, -0.11861589550971985, -0.341167151927948, 0.02430545911192894, 0.3964194059371948, -0.02689712680876255, -0.1344560980796814, 0.293636679649353, 0.19258974492549896, 0.20720568299293518, 0.08274859189987183, 0.16280798614025116, 0.017160046845674515, -0.013747811317443848, 0.07188928872346878, 0.22027942538261414, 0.12092013657093048, -0.19120174646377563, 0.03503073751926422, 0.36275532841682434, -0.006752669811248779, 0.12495623528957367, -0.12248750776052475, -0.09634716808795929, 0.009802287444472313, -0.02927750162780285, -0.09968935698270798, -0.29671424627304077, -0.22784002125263214, 0.07485394924879074, 0.35145628452301025, 0.24226820468902588, -0.049452830106019974, 0.3744911253452301, 0.5678983926773071, 0.16620172560214996, 0.2612204849720001, -0.1951843500137329, -0.17319533228874207, -0.19585159420967102, -0.14266403019428253, 0.04918351396918297, 0.4420596957206726, 0.06961248815059662, 0.20384551584720612, 0.05667596310377121, 0.17876935005187988, -0.014281272888183594, 0.08085393905639648, -0.20157669484615326, 0.144841730594635, 0.02769649401307106, 0.33250874280929565, 0.025382114574313164, -0.12145426124334335, 0.09240075945854187, 0.0325666144490242, -0.06070595979690552, -0.168235182762146, 0.1196252629160881, -0.37127548456192017, 0.2542583644390106, -0.25494053959846497, -0.2912469506263733, -0.20368792116641998, -0.3541097044944763, 0.02480793558061123, 0.012580342590808868, -0.015463568270206451, 0.19742101430892944, -0.05885292962193489, -0.03239329159259796, 0.02162504754960537, -0.4866386651992798, -0.004056248813867569, -0.4126640260219574, -0.05275376886129379, 0.01134452223777771, 0.05154348164796829, -0.16083313524723053, 0.037816137075424194, -0.14551670849323273, -0.03901536762714386, -0.2864362299442291, -0.38753047585487366, 0.04133206978440285, -0.020206764340400696, 0.34793755412101746, -0.11077728867530823, -0.02299807220697403, -0.2151869535446167, -0.027202829718589783, 0.2387235164642334, -0.4787364602088928, -0.08531539887189865, -0.1691819429397583, -0.153203085064888, -0.07969759404659271, -0.07488708198070526, -0.2895053029060364, -0.20953746140003204, -0.20243148505687714, -0.005460485816001892, 0.06846970319747925, 0.08792692422866821, 0.27816241979599, -0.125578835606575, 0.04147185757756233, -0.07483512163162231, 0.13584057986736298, -0.4412340521812439, -0.5766787528991699, 0.29574185609817505, -0.3659021258354187, -0.1257682740688324, 0.0397186316549778, -0.03441204875707626, 0.19662052392959595, -0.08130549639463425, -0.3888835906982422, -0.5012037754058838, -0.05305813252925873, 0.5198502540588379, -0.008358187973499298, 0.22238826751708984, 0.2656993269920349, 0.10259749740362167, -0.07180001586675644, -0.1600397676229477, -0.30340826511383057, -0.0744127556681633, 0.13030937314033508, 0.14743801951408386, 0.0244799442589283, -0.11551447957754135, 0.02129247412085533, 0.948679506778717, 0.4342629909515381, -0.07023034989833832, 0.22316251695156097, -0.024862436577677727, 0.2981393039226532, -0.24544820189476013, -0.3688839375972748, -0.14769792556762695, -0.29280003905296326, 0.006780676543712616, 0.10854064673185349, 0.07525994628667831, -0.1753760427236557, -0.025014903396368027, 0.08259651064872742, -0.48920148611068726, -0.4031330347061157, 0.08567274361848831, -0.16568946838378906, 0.08155721426010132, 0.26020264625549316, 0.21061840653419495, -0.5321556925773621, 0.09022113680839539, 0.16487820446491241, -0.08619076013565063, 0.273644357919693, 0.0793529748916626, -0.36831793189048767, 0.12683819234371185, -0.14033478498458862, 0.2984185814857483, 0.14529134333133698, 0.0825679823756218, 0.08152718842029572, -0.31503409147262573, -0.0014727041125297546, 0.03425927832722664, 0.48994672298431396, -0.2179773896932602, 0.14017337560653687, 0.25524982810020447, -0.34574374556541443, -0.2329723984003067, -0.005628988146781921, 0.20938453078269958, 0.12447159737348557, 0.45651814341545105, 0.14555223286151886, -0.06839247792959213, 0.06686855852603912, -0.1950419843196869, 0.17439523339271545, -0.12984050810337067, -0.17306362092494965, -0.261625736951828, -0.11479873955249786, -0.19351327419281006, -0.046261899173259735, -0.02192769944667816, -0.08247212320566177, 0.2793249487876892, -0.004073712974786758, -0.0877625122666359, 0.024899937212467194, 0.04243368282914162, 0.3235796093940735, 0.4023791551589966, 0.11257065832614899, 0.24668994545936584, 0.2877407670021057, -0.03070354461669922, -0.3817560076713562, 0.5447894334793091, -0.4847739040851593, -0.0462716668844223, -0.04364502429962158, 0.05133180320262909, -0.14235979318618774, 0.3253248929977417, -0.04306568205356598, 0.10858987271785736, -0.26749494671821594, -0.19907818734645844, 0.0409596711397171, -0.2823696732521057, 0.021682433784008026, 0.14586517214775085, 0.04290346801280975, -0.3180772066116333, 0.22871637344360352, 0.15900157392024994, -0.24149386584758759, 0.43373849987983704, -0.4825398921966553, -0.051393039524555206, 0.331993043422699, 0.013612456619739532, 0.9110623002052307, -0.1734670102596283, 0.050028324127197266, 0.012861117720603943, 0.08332319557666779, 0.1100180447101593, 0.09235122799873352, 0.035075485706329346, -0.29237544536590576, -0.18331100046634674, 0.1781264841556549, -0.204847052693367, -0.03194790333509445, 0.0359761044383049, -0.20930294692516327, 0.22539781033992767, -0.24276579916477203, 0.33414292335510254, -0.08209946751594543, 0.02660652995109558, 0.24098040163516998, -0.20799227058887482, -0.0670744851231575, 0.25179022550582886, 0.13974973559379578, 0.1136319488286972, 0.010298699140548706, 0.05575307458639145, 0.011102493852376938, -0.16585063934326172, 0.11019326746463776, 0.19554859399795532, -0.42708620429039, 0.4328400492668152, 0.29245805740356445, 0.03991612792015076, -0.26597604155540466, 0.48051002621650696, 0.09568352997303009, 0.04184737429022789, -0.07787834852933884, 0.18836429715156555, 0.5420473217964172, 0.38608482480049133, -0.10877739638090134, -0.0869285985827446, 0.28976383805274963, 0.05488555133342743, -0.1755194067955017, 0.2509721517562866, -0.07366520166397095, -0.24231693148612976, -0.3938848376274109, 0.6141800880432129, 0.061378899961709976, -0.11860238760709763, -0.1760483682155609, 0.10486022382974625, 0.012377958744764328, -0.07582483440637589, 0.16478955745697021, 0.14628882706165314, -0.17905282974243164, 0.44578850269317627, -0.21310870349407196, -0.3718990385532379, 0.06992746889591217, 0.4534685015678406, 0.17333731055259705, 0.009321492165327072, 0.13762861490249634, -0.0693817287683487, -0.16267821192741394, -0.12016811221837997, 0.007510416209697723, -0.19024193286895752, -0.1392306685447693, 0.1540093719959259, -0.20274534821510315, 0.030033692717552185, 0.10617095232009888, 0.09167347103357315, 0.05862189829349518, 0.1371474415063858, -0.16483281552791595, -0.16937711834907532, -0.33855944871902466, 0.0306352898478508, -0.04413165524601936, 0.021330857649445534, 0.2136191427707672, 0.17973577976226807, -0.11572112888097763, 0.5498872995376587, -0.37376248836517334, 0.3833234906196594, 0.01130431704223156, 0.24342815577983856, 0.07101479172706604, -0.1554386019706726, 0.1830003708600998, -0.14075623452663422, 0.0831087976694107, 0.3224449157714844, -0.4399215579032898, -0.2872861921787262, -0.18114754557609558, 0.10950135439634323, -0.115654356777668, 0.04028066247701645, -0.08397622406482697, -0.0463806614279747, 0.23197157680988312, -0.40622010827064514, 0.23833119869232178, 0.3710241913795471, 0.04380248486995697, 0.02628869190812111, 0.00947713851928711, -0.2384491264820099, 0.07646604627370834, 0.0910535603761673, -0.04770796000957489, 0.013548962771892548, 0.0009513883851468563, 0.08931784331798553, -0.22280745208263397, 0.006117120385169983, -0.00538297463208437, 0.03914302960038185, 0.03585468977689743, -0.024814113974571228, 0.29942068457603455, -0.19010628759860992, -0.02399982139468193, 0.1953641176223755, -0.020641162991523743, 0.014089655131101608, -0.2981203496456146, 0.006875891238451004, -0.1363164782524109, 0.24218879640102386, -0.15658190846443176, -0.18435373902320862, 0.26018059253692627, 0.05663769692182541, 0.18627895414829254, 0.36390313506126404, 0.12493543326854706, 0.1763494312763214, 0.3144248127937317, 0.03460531309247017, 0.4242438077926636, -0.44323134422302246, 0.25291672348976135, -0.035836104303598404, 0.10165345668792725, -0.07559540867805481, 0.42018553614616394, 0.20772573351860046, -0.010179601609706879, 0.13668307662010193, -0.017200492322444916, 0.2263934314250946, -0.10378222912549973, -0.12344411015510559, 0.09181173145771027, -0.3116850256919861, 0.3174942135810852, 0.2845165729522705, -0.19787603616714478, 0.317580908536911, 0.07100521773099899, 0.2801997661590576, -0.08574605733156204, -0.2549968957901001, 0.06612391024827957, 0.35395973920822144, -0.19845902919769287, -0.2379937469959259, 0.2976207733154297, -0.082637257874012, -0.06728359311819077, 0.052072923630476, 0.03853393346071243, -0.07649290561676025, 0.6393723487854004, 0.0912356749176979, -0.09899501502513885, -0.28961315751075745, -0.3925936818122864, -0.022043846547603607, 0.36968153715133667, -0.3258841335773468, 0.16012278199195862, -0.08907763659954071, -0.11696755886077881, 0.013144543394446373, 0.14178034663200378, 0.3679862916469574, 0.2729368805885315, -0.03352585434913635, 0.22235140204429626, 0.019330205395817757, -0.060136713087558746, -0.21758849918842316, 0.19539926946163177, -0.04229661822319031, -0.2627485990524292, 0.2431415468454361, 0.19700101017951965, -0.2314496636390686, -0.19598770141601562, 0.02241406962275505, 0.32020002603530884, -0.1956767737865448, 0.27997490763664246, -0.16404478251934052, 0.04980960488319397, -0.20077785849571228, 0.2425653338432312, -0.30443036556243896, -0.007469034753739834, 0.28475382924079895, -0.05850447341799736, 0.18190664052963257, -0.33290642499923706, 0.13305741548538208, 0.14629687368869781, 0.22972418367862701, 0.24113884568214417, -0.05357890576124191, -0.36732372641563416, 0.14206260442733765, -0.7182417511940002, 0.39564022421836853, -0.22167852520942688, 0.24004057049751282, 0.01669667288661003, 0.32239842414855957, -0.11669176071882248, 0.24645236134529114, 0.24276122450828552, -0.09333926439285278, 0.11884713917970657, 0.050218284130096436, -0.23494629561901093, -0.0020498186349868774, -0.2285541445016861, -0.16097575426101685, 0.3383444845676422, -0.5207580327987671, 0.05670594051480293, -0.07224788516759872, 0.18383574485778809, -0.14927619695663452, -0.3342309594154358, 0.09711338579654694, 0.1433500349521637, 0.5966309905052185, 0.26920849084854126, 0.24119485914707184, -0.04079402610659599, -0.1440562605857849, -0.1243852823972702, -0.3183666467666626, 0.07180649787187576, 0.00005837529897689819, 0.12264159321784973, 0.06387835741043091, -0.28428179025650024, -0.35493704676628113, -0.324748158454895, 0.09232528507709503, 0.08931539952754974, -0.0798204243183136, -0.2577168345451355, -0.07091158628463745, -0.15220358967781067, 0.2547755539417267, -0.050595130771398544, 0.7089002728462219, -0.12339460849761963, 0.49829578399658203, -0.1800350546836853, -0.1781490594148636, 0.5450959801673889, -0.48461732268333435, -0.27337518334388733, -0.11139777302742004, 0.2527100145816803, -0.06890503317117691, -0.32048115134239197, -0.4433939456939697, -0.031323082745075226, 0.30661657452583313, -0.007108226418495178, -0.36161118745803833, 0.03030342049896717, -0.3417622148990631, 0.16792291402816772, -0.10153302550315857, 0.07317008078098297, 0.08249065279960632, 0.018058495596051216, 0.1740790605545044, -0.19893452525138855 ]
https://github.com/huggingface/datasets/issues/3295
Temporary dataset_path for remote fs URIs not built properly in arrow_dataset.py::load_from_disk
Hi ! Good catch and thanks for opening a PR :) I just responded in your PR
## Describe the bug When trying to build a temporary dataset path from a remote URI in this block of code: https://github.com/huggingface/datasets/blob/42f6b1d18a4a1b6009b6e62d115491be16dfca22/src/datasets/arrow_dataset.py#L1038-L1042 the result is not the expected when passing an absolute path in an URI like `hdfs:///absolute/path`. ## Steps to reproduce the bug ```python dataset_path = "hdfs:///absolute/path" src_dataset_path = extract_path_from_uri(dataset_path) tmp_dir = get_temporary_cache_files_directory() dataset_path = Path(tmp_dir, src_dataset_path) print(dataset_path) ``` ## Expected results With the code above, we would expect a value in `dataset_path` similar to: `/tmp/tmpnwxyvao5/absolute/path` ## Actual results However, we get a `dataset_path` value like: `/absolute/path` This is because this line here: https://github.com/huggingface/datasets/blob/42f6b1d18a4a1b6009b6e62d115491be16dfca22/src/datasets/arrow_dataset.py#L1041 returns the last absolute path when two absolute paths (the one in `tmp_dir` and the one extracted from the URI in `src_dataset_path`) are passed as arguments. ## Environment info - `datasets` version: 1.13.3 - Platform: Linux-3.10.0-1160.15.2.el7.x86_64-x86_64-with-glibc2.33 - Python version: 3.9.7 - PyArrow version: 5.0.0
17
Temporary dataset_path for remote fs URIs not built properly in arrow_dataset.py::load_from_disk ## Describe the bug When trying to build a temporary dataset path from a remote URI in this block of code: https://github.com/huggingface/datasets/blob/42f6b1d18a4a1b6009b6e62d115491be16dfca22/src/datasets/arrow_dataset.py#L1038-L1042 the result is not the expected when passing an absolute path in an URI like `hdfs:///absolute/path`. ## Steps to reproduce the bug ```python dataset_path = "hdfs:///absolute/path" src_dataset_path = extract_path_from_uri(dataset_path) tmp_dir = get_temporary_cache_files_directory() dataset_path = Path(tmp_dir, src_dataset_path) print(dataset_path) ``` ## Expected results With the code above, we would expect a value in `dataset_path` similar to: `/tmp/tmpnwxyvao5/absolute/path` ## Actual results However, we get a `dataset_path` value like: `/absolute/path` This is because this line here: https://github.com/huggingface/datasets/blob/42f6b1d18a4a1b6009b6e62d115491be16dfca22/src/datasets/arrow_dataset.py#L1041 returns the last absolute path when two absolute paths (the one in `tmp_dir` and the one extracted from the URI in `src_dataset_path`) are passed as arguments. ## Environment info - `datasets` version: 1.13.3 - Platform: Linux-3.10.0-1160.15.2.el7.x86_64-x86_64-with-glibc2.33 - Python version: 3.9.7 - PyArrow version: 5.0.0 Hi ! Good catch and thanks for opening a PR :) I just responded in your PR
[ 0.03695610538125038, -0.055297963321208954, 0.023463372141122818, 0.21661947667598724, 0.23282590508460999, -0.3071344196796417, 0.24979950487613678, -0.04079074040055275, -0.1296829879283905, -0.04365360736846924, 0.1355842500925064, 0.1818682849407196, 0.05517102777957916, -0.5092618465423584, -0.01665617898106575, -0.01107046753168106, -0.011272981762886047, -0.028055191040039062, -0.17032530903816223, -0.19380679726600647, -0.29785487055778503, 0.3347131311893463, -0.09465787559747696, 0.022532600909471512, -0.2919444739818573, 0.061158187687397, -0.1683160960674286, 0.1893918514251709, -0.01311793178319931, -0.2459220439195633, 0.5834466814994812, 0.014781074598431587, 0.22707290947437286, 0.36002397537231445, -0.00012274178152438253, 0.06250748038291931, 0.33361726999282837, 0.00046103447675704956, -0.5637112855911255, -0.23677130043506622, -0.3018210232257843, 0.12941864132881165, -0.001459853956475854, -0.3753424286842346, 0.10645530372858047, -0.1972128450870514, -0.14577673375606537, -0.21873696148395538, 0.08413098752498627, 0.20574988424777985, 0.0889071673154831, 0.3448933959007263, -0.3692677319049835, 0.11441656947135925, 0.2438657283782959, 0.2082265019416809, -0.08527062833309174, 0.13354939222335815, -0.17341426014900208, 0.056162573397159576, 0.37088677287101746, 0.13127534091472626, 0.013538045808672905, -0.19362245500087738, 0.28997913002967834, 0.2601414620876312, -0.16978630423545837, -0.05620826035737991, -0.02459823340177536, 0.1895168423652649, 0.25805768370628357, -0.2403487265110016, -0.4915509521961212, -0.007788471877574921, -0.23964041471481323, 0.19515849649906158, 0.26677095890045166, 0.23561441898345947, 0.02262977510690689, 0.17112357914447784, 0.05421730503439903, 0.004975161515176296, -0.2089625746011734, 0.4400539994239807, 0.08840632438659668, -0.03753189742565155, -0.06773439794778824, 0.1803167760372162, 0.027008621022105217, -0.07069652527570724, 0.120005302131176, -0.4672776162624359, 0.020075753331184387, 0.447898805141449, -0.0029310844838619232, 0.1765286773443222, -0.04945778846740723, 0.1900864541530609, 0.25200921297073364, 0.033767592161893845, 0.14864104986190796, -0.13743701577186584, -0.21420274674892426, 0.050396453589200974, -0.07803359627723694, 0.25460535287857056, 0.004572786390781403, 0.3935510516166687, 0.05236176401376724, 0.11091824620962143, -0.10365791618824005, -0.15378323197364807, 0.010021745227277279, -0.27395957708358765, 0.13878265023231506, -0.14171066880226135, 0.27179956436157227, 0.04439028725028038, -0.12895603477954865, -0.005802183412015438, 0.052848175168037415, 0.12890899181365967, 0.2091083973646164, 0.1645994484424591, 0.18952740728855133, 0.12118146568536758, 0.017314840108156204, 0.2567894756793976, -0.09010893106460571, 0.16722223162651062, -0.08930480480194092, -0.04249543324112892, -0.19796137511730194, 0.06744801998138428, -0.1602751761674881, -0.10960546135902405, 0.3737945556640625, -0.02437063679099083, -0.38752198219299316, 0.01114373654127121, -0.039908263832330704, -0.21592381596565247, 0.5142444968223572, 0.21191224455833435, -0.004056356847286224, 0.260587602853775, -0.03475477918982506, 0.09223659336566925, 0.07391462475061417, 0.12628942728042603, -0.2505222260951996, -0.39637625217437744, -0.15641513466835022, 0.04176429659128189, -0.1469457894563675, 0.19087569415569305, -0.18821179866790771, -0.12145140767097473, 0.2155371606349945, 0.159652441740036, 0.2525576055049896, 0.0014506056904792786, -0.30452123284339905, -0.07502131164073944, 0.32804372906684875, 0.6654716730117798, -0.18141187727451324, 0.0188632532954216, 0.09412144869565964, -0.13718527555465698, 0.0879540890455246, 0.5107913613319397, -0.10985608398914337, 0.09054213762283325, -0.46155697107315063, -0.027587689459323883, 0.3696819841861725, -0.27993035316467285, -0.23525471985340118, 0.5572880506515503, -0.23396863043308258, 0.061809442937374115, 0.2341713309288025, 0.1114199310541153, 0.09658028930425644, -0.027292007580399513, 0.026007220149040222, 0.5655301809310913, 0.09500228613615036, -0.008853623643517494, -0.47581198811531067, -0.20101872086524963, -0.05439279228448868, -0.17761985957622528, 0.13621404767036438, 0.039425529539585114, 0.1685274988412857, -0.21474553644657135, 0.6231132745742798, 0.11596207320690155, 0.06052117049694061, 0.34161651134490967, 0.3216989040374756, -0.03391371667385101, 0.13389182090759277, -0.0237494595348835, -0.4830389618873596, 0.22932323813438416, 0.023586254566907883, -0.18413253128528595, -0.3704822063446045, -0.0649401918053627, -0.23641592264175415, 0.2524692416191101, -0.23180870711803436, 0.047981906682252884, -0.008950728923082352, 0.14758606255054474, 0.3812808394432068, 0.10387614369392395, -0.10185149312019348, 0.09844331443309784, -0.3267231583595276, 0.14403153955936432, -0.14473405480384827, 0.5861162543296814, 0.19502206146717072, 0.06613318622112274, -0.40327706933021545, 0.1983177363872528, 0.3066444396972656, -0.273086816072464, -0.1848004162311554, 0.6214780807495117, 0.26103436946868896, 0.2618403434753418, 0.30443131923675537, 0.0028348416090011597, 0.2820242643356323, -0.059591144323349, -0.04440002888441086, 0.2906210124492645, 0.20241519808769226, 0.20731931924819946, -0.09668757766485214, 0.4392250180244446, -0.3264594078063965, 0.40478530526161194, 0.11102226376533508, 0.12731419503688812, 0.08920110017061234, 0.08592401444911957, -0.10335195064544678, -0.5248622894287109, 0.11380113661289215, 0.28049594163894653, 0.1325838565826416, 0.03454411029815674, -0.15461716055870056, 0.2714352011680603, 0.155695840716362, 0.019160374999046326, -0.16392681002616882, 0.1322447955608368, -0.10354601591825485, -0.06343559920787811, 0.10408946871757507, 0.5406018495559692, 0.24677106738090515, 0.0963677167892456, 0.10217322409152985, -0.23341333866119385, -0.020731035619974136, -0.11311861872673035, 0.6549538373947144, 0.07951495796442032, -0.2248225212097168, -0.10689672082662582, 0.05651041492819786, -0.06194812431931496, -0.07945802062749863, -0.13831306993961334, 0.12924489378929138, -0.007396481931209564, -0.28708404302597046, 0.1309349536895752, -0.26843711733818054, -0.2801208794116974, -0.3753237724304199, -0.28923270106315613, 0.06836406886577606, -0.2865797281265259, -0.14755597710609436, -0.1664268970489502, -0.17381085455417633, 0.046235524117946625, -0.15839870274066925, -0.18797244131565094, 0.10652175545692444, -0.673447847366333, -0.15283986926078796, -0.06276547163724899, -0.2968195080757141, -0.09398849308490753, 0.1417090892791748, 0.014688258990645409, -0.006652886047959328, -0.17253907024860382, -0.011571712791919708, -0.756629467010498, -0.030326329171657562, 0.08939777314662933, 0.04871540516614914, 0.3711918592453003, 0.2645784020423889, -0.013924553990364075, -0.005418404936790466, 0.11078066378831863, 0.2007712572813034, -0.1442756950855255, 0.09022177010774612, 0.2392406463623047, -0.08036966621875763, -0.08814459294080734, -0.12163174152374268, -0.06637764722108841, -0.23325593769550323, 0.08128876984119415, 0.013456445187330246, -0.06445196270942688, 0.09401537477970123, 0.18594084680080414, 0.2846471965312958, -0.08596285432577133, -0.2038813978433609, -0.30041685700416565, -0.016655167564749718, -0.5483571290969849, 0.4213203489780426, -0.21015383303165436, -0.2728804349899292, -0.21755647659301758, -0.18997912108898163, 0.09082767367362976, 0.38197189569473267, -0.504475474357605, -0.2342079132795334, -0.1366596519947052, 0.6991259455680847, -0.11793580651283264, 0.13723310828208923, -0.01005922257900238, -0.19509872794151306, 0.09058210253715515, -0.19956684112548828, 0.06268054246902466, 0.3449757993221283, -0.11664912849664688, 0.20055899024009705, 0.24597913026809692, 0.34298479557037354, 0.039278727024793625, 0.8522258996963501, -0.026561960577964783, -0.054207418113946915, 0.43912968039512634, -0.4285372495651245, 0.4026317894458771, 0.016350843012332916, -0.18900993466377258, -0.11558067798614502, 0.2197944074869156, -0.30288875102996826, 0.014543905854225159, 0.3223399221897125, 0.20558907091617584, 0.029742084443569183, -0.06558223068714142, -0.16528278589248657, -0.47757965326309204, -0.13621732592582703, -0.2751305103302002, 0.1810426115989685, 0.3089028596878052, 0.16328468918800354, -0.3162347078323364, -0.023119907826185226, 0.12576733529567719, 0.18044596910476685, 0.20467397570610046, 0.163447767496109, 0.20100684463977814, 0.16224056482315063, -0.21209809184074402, 0.08514426648616791, 0.21424098312854767, 0.4085385799407959, 0.3559889495372772, 0.16338428854942322, 0.09399356693029404, 0.06627964228391647, 0.8046400547027588, -0.022708619013428688, 0.3934677839279175, 0.06331464648246765, 0.2086760550737381, -0.8243213295936584, 0.047760073095560074, 0.23711705207824707, -0.0559384785592556, -0.06169374659657478, 0.41799479722976685, -0.12835805118083954, -0.1372193992137909, -0.046073682606220245, 0.334201842546463, -0.11911749839782715, -0.2491663247346878, -0.28412359952926636, -0.23203030228614807, -0.007835859432816505, -0.26644787192344666, 0.047450289130210876, 0.09023682028055191, 0.1354912668466568, -0.11992473900318146, -0.060441821813583374, -0.18822124600410461, -0.33810532093048096, -0.04617992416024208, 0.5384997129440308, -0.4136062562465668, 0.26526981592178345, 0.08835761249065399, -0.13228729367256165, 0.17969529330730438, 0.6699593663215637, -0.4103563725948334, 0.10683214664459229, -0.024223405867815018, -0.04716863855719566, 0.25452709197998047, 0.29777681827545166, -0.2869763672351837, 0.0369439423084259, -0.05839720368385315, 0.16064347326755524, 0.007125366013497114, 0.09405802190303802, 0.24554499983787537, -0.1252898871898651, 0.3470817506313324, -0.49618685245513916, 0.4860847592353821, 0.08249561488628387, -0.10455654561519623, 0.5191008448600769, 0.6014659404754639, -0.5262239575386047, 0.2791975140571594, 0.16672393679618835, 0.6307137608528137, 0.030605480074882507, 0.20691075921058655, 0.45755794644355774, -0.33666419982910156, 0.17575788497924805, -0.08619854599237442, -0.3970142602920532, -0.2474670559167862, 0.3043355345726013, -0.022191986441612244, -0.16627000272274017, -0.2920492887496948, 0.028405670076608658, 0.15438179671764374, 0.308442622423172, -0.05702141299843788, 0.4630051851272583, 0.20298327505588531, 0.1345714032649994, -0.2748803198337555, -0.2720045745372772, -0.17116901278495789, 0.02465926855802536, 0.36584675312042236, -0.17561694979667664, -0.07377206534147263, -0.1667369157075882, -0.01393202319741249, -0.18956038355827332, 0.06428724527359009, 0.17575430870056152, -0.7405608892440796, 0.2372119128704071, -0.06804174184799194, -0.3796141743659973, -0.4063441753387451, 0.2590470016002655, 0.13809500634670258, -0.11440575122833252, -0.105660080909729, 0.04784321039915085, 0.06790195405483246, 0.14700394868850708, -0.23282119631767273, -0.24485553801059723, 0.2137315422296524, 0.12013783305883408, 0.076706163585186, -0.227239727973938, -0.3225747048854828, 0.19858190417289734, -0.07929087430238724, -0.18679748475551605, 0.03784842789173126, 0.1897777020931244, -0.30905216932296753, -0.19466128945350647, -0.2141166776418686, -0.12112495303153992, -0.021065950393676758, -0.003480188548564911, 0.007651364430785179, -0.055636338889598846, -0.3301481604576111, -0.14795564115047455, 0.06485401093959808, 0.3668273985385895, -0.2200765609741211, 0.13730187714099884, 0.3823254108428955, -0.2449396401643753, 0.037084631621837616, -0.10915780812501907, 0.3887407183647156, 0.1891883760690689, -0.6400200724601746, 0.2538336515426636, -0.10487311333417892, 0.20761798322200775, -0.14291921257972717, 0.02464868500828743, 0.1217658668756485, 0.02180635929107666, -0.17229776084423065, -0.31842902302742004, -0.27350306510925293, 0.06125833839178085, -0.24327139556407928, -0.015921611338853836, -0.1775718331336975, 0.05548417195677757, 0.08698815852403641, -0.5338549017906189, -0.17501229047775269, 0.28680968284606934, 0.14981050789356232, 0.013535251840949059, -0.2922546863555908, 0.14511214196681976, 0.3496397137641907, -0.013807855546474457, 0.0045502688735723495, 0.031866393983364105, 0.02633705735206604, -0.037096552550792694, -0.3810775876045227, 0.19686228036880493, 0.14622928202152252, -0.1379304677248001, -0.13360820710659027, -0.36532509326934814, -0.1284661591053009, -0.22734050452709198, 0.020665206015110016, 0.31874358654022217, -0.1390867829322815, 0.016133379191160202, -0.015472378581762314, -0.0013150125741958618, -0.4767415523529053, 0.1332361102104187, -0.14757001399993896, 0.3038620352745056, -0.06121669337153435, 0.36978575587272644, -0.28254225850105286, -0.11112968623638153, -0.19384576380252838, -0.010002829134464264, -0.16455863416194916, 0.14736327528953552, 0.26283788681030273, -0.27773237228393555, -0.14695537090301514, -0.049820348620414734, 0.3426075577735901, 0.26437151432037354, -0.20127467811107635, -0.22353467345237732, -0.019826894626021385, 0.0866851657629013, -0.02119385078549385, 0.09772767126560211, -0.3078230917453766, 0.07737302780151367, 0.07206141948699951, 0.33326855301856995, 0.30845800042152405, -0.30474400520324707, -0.000467739999294281, -0.08584435284137726, 0.2566138803958893, -0.2895597219467163, -0.1264808475971222, 0.2774735987186432, 0.16909174621105194, 0.2783680260181427, 0.019986189901828766, 0.09880244731903076, 0.30517101287841797, 0.47993606328964233, -0.25648707151412964, 0.4663781523704529, 0.38139888644218445, -0.12181559205055237, -0.011484794318675995, -0.10724541544914246, -0.15383486449718475, -0.1749921441078186, -0.2102595567703247, 0.14810842275619507, -0.1195925921201706, 0.44955000281333923, -0.20314954221248627, 0.028752464801073074, -0.043650176376104355, 0.002439122647047043, 0.09914397448301315, -0.2607969641685486, -0.33100107312202454, -0.2841910123825073, -0.12848585844039917, -0.0643138587474823, -0.061182718724012375, -0.17270749807357788, 0.04036726802587509, 0.21597826480865479, 0.12393219769001007, -0.38293009996414185, -0.009409390389919281, 0.48623162508010864, 0.17677241563796997, -0.45467203855514526, 0.29213348031044006, 0.34040069580078125, -0.06667652726173401, -0.043186087161302567, -0.22052696347236633, 0.40363988280296326, 0.4103381931781769, -0.03357915207743645, -0.16978520154953003, 0.39772096276283264, -0.08027436584234238, 0.07912568002939224, 0.21905793249607086, -0.00613732635974884, -0.027130886912345886, 0.5444437265396118, 0.06938494741916656, -0.09076296538114548, 0.17897219955921173, 0.3381935656070709, 0.6006705164909363, -0.09606194496154785, 0.2571629583835602, -0.13772529363632202, 0.06283099204301834, -0.23849454522132874, 0.04591852426528931, -0.27822062373161316, 0.07217755168676376, 0.35335829854011536, -0.2051466852426529, 0.10262522846460342, -0.12915922701358795, 0.017664171755313873, 0.04297509789466858, 0.48607128858566284, 0.2970616817474365, 0.14412043988704681, -0.6475793123245239, -0.21313971281051636, -0.4523509740829468, -0.20132258534431458, 0.004682473838329315, -0.08589337021112442, -0.0943901315331459, 0.3138381540775299, -0.1685616672039032, -0.13136093318462372, 0.15723556280136108, 0.043393056839704514, 0.08767186105251312, 0.19255271553993225, -0.15871667861938477, -0.20599175989627838, -0.18248118460178375, 0.14104366302490234, 0.09980899095535278, -0.4877142310142517, -0.2540910542011261, -0.3078276216983795, -0.056816790252923965, -0.05686964839696884, -0.08421342819929123, 0.23334923386573792, 0.05203839763998985, 0.1857367604970932, 0.1316850483417511, -0.17312321066856384, 0.10267529636621475, -0.1493697464466095, -0.45152294635772705, -0.16884005069732666, -0.22746236622333527, -0.20478323101997375, -0.027758177369832993, 0.26511257886886597, -0.1753426194190979, -0.22234345972537994, -0.47297203540802, -0.12518024444580078, 0.051519013941287994, 0.30057966709136963, -0.11658700555562973, 0.22604793310165405, -0.324067085981369, 0.11998625844717026, 0.1612469106912613, 0.262340784072876, -0.10157562792301178, 0.528464674949646, -0.1160091906785965, -0.3621736764907837, 0.46046632528305054, -0.22279703617095947, -0.028610987588763237, 0.1801937073469162, 0.3792963922023773, 0.23653045296669006, -0.009477440267801285, -0.4844703674316406, 0.06300085037946701, 0.4716421961784363, 0.009955886751413345, 0.01860210672020912, -0.23948535323143005, 0.28777050971984863, 0.39363792538642883, -0.04942146688699722, 0.17082184553146362, 0.019984673708677292, -0.2172679752111435, 0.18056996166706085, -0.2082875370979309 ]
https://github.com/huggingface/datasets/issues/3292
Not able to load 'wikipedia' dataset
Hi ! Indeed it looks like the code snippet on the Hugging face Hub doesn't show the second parameter ![image](https://user-images.githubusercontent.com/42851186/142649237-45ba55c5-1a64-4c30-8692-2c8120572f92.png) Thanks for reporting, I'm taking a look
## Describe the bug I am following the instruction for loading the wikipedia dataset using datasets. However getting the below error. ## Steps to reproduce the bug from datasets import load_dataset dataset = load_dataset("wikipedia") ``` ## Expected results A clear and concise description of the expected results. ## Actual results ~/anaconda3/envs/pytorch_p36/lib/python3.6/site-packages/datasets/builder.py in _create_builder_config(self, name, custom_features, **config_kwargs) 339 "Config name is missing." 340 "\nPlease pick one among the available configs: %s" % list(self.builder_configs.keys()) --> 341 + "\nExample of usage:\n\t`{}`".format(example_of_usage) 342 ) 343 builder_config = self.BUILDER_CONFIGS[0] ValueError: Config name is missing. Please pick one among the available configs: ['20200501.aa', '20200501.ab', '20200501.ace', '20200501.ady', '20200501.af', '20200501.ak', '20200501.als', '20200501.am', '20200501.an', '20200501.ang', '20200501.ar', '20200501.arc', '20200501.arz', '20200501.as', '20200501.ast', '20200501.atj', '20200501.av', '20200501.ay', '20200501.az', '20200501.azb', '20200501.ba', '20200501.bar', '20200501.bat-smg', '20200501.bcl', '20200501.be', '20200501.be-x-old', '20200501.bg', '20200501.bh', '20200501.bi', '20200501.bjn', '20200501.bm', '20200501.bn', '20200501.bo', '20200501.bpy', '20200501.br', '20200501.bs', '20200501.bug', '20200501.bxr', '20200501.ca', '20200501.cbk-zam', '20200501.cdo', '20200501.ce', '20200501.ceb', '20200501.ch', '20200501.cho', '20200501.chr', '20200501.chy', '20200501.ckb', '20200501.co', '20200501.cr', '20200501.crh', '20200501.cs', '20200501.csb', '20200501.cu', '20200501.cv', '20200501.cy', '20200501.da', '20200501.de', '20200501.din', '20200501.diq', '20200501.dsb', '20200501.dty', '20200501.dv', '20200501.dz', '20200501.ee', '20200501.el', '20200501.eml', '20200501.en', '20200501.eo', '20200501.es', '20200501.et', '20200501.eu', '20200501.ext', '20200501.fa', '20200501.ff', '20200501.fi', '20200501.fiu-vro', '20200501.fj', '20200501.fo', '20200501.fr', '20200501.frp', '20200501.frr', '20200501.fur', '20200501.fy', '20200501.ga', '20200501.gag', '20200501.gan', '20200501.gd', '20200501.gl', '20200501.glk', '20200501.gn', '20200501.gom', '20200501.gor', '20200501.got', '20200501.gu', '20200501.gv', '20200501.ha', '20200501.hak', '20200501.haw', '20200501.he', '20200501.hi', '20200501.hif', '20200501.ho', '20200501.hr', '20200501.hsb', '20200501.ht', '20200501.hu', '20200501.hy', '20200501.ia', '20200501.id', '20200501.ie', '20200501.ig', '20200501.ii', '20200501.ik', '20200501.ilo', '20200501.inh', '20200501.io', '20200501.is', '20200501.it', '20200501.iu', '20200501.ja', '20200501.jam', '20200501.jbo', '20200501.jv', '20200501.ka', '20200501.kaa', '20200501.kab', '20200501.kbd', '20200501.kbp', '20200501.kg', '20200501.ki', '20200501.kj', '20200501.kk', '20200501.kl', '20200501.km', '20200501.kn', '20200501.ko', '20200501.koi', '20200501.krc', '20200501.ks', '20200501.ksh', '20200501.ku', '20200501.kv', '20200501.kw', '20200501.ky', '20200501.la', '20200501.lad', '20200501.lb', '20200501.lbe', '20200501.lez', '20200501.lfn', '20200501.lg', '20200501.li', '20200501.lij', '20200501.lmo', '20200501.ln', '20200501.lo', '20200501.lrc', '20200501.lt', '20200501.ltg', '20200501.lv', '20200501.mai', '20200501.map-bms', '20200501.mdf', '20200501.mg', '20200501.mh', '20200501.mhr', '20200501.mi', '20200501.min', '20200501.mk', '20200501.ml', '20200501.mn', '20200501.mr', '20200501.mrj', '20200501.ms', '20200501.mt', '20200501.mus', '20200501.mwl', '20200501.my', '20200501.myv', '20200501.mzn', '20200501.na', '20200501.nah', '20200501.nap', '20200501.nds', '20200501.nds-nl', '20200501.ne', '20200501.new', '20200501.ng', '20200501.nl', '20200501.nn', '20200501.no', '20200501.nov', '20200501.nrm', '20200501.nso', '20200501.nv', '20200501.ny', '20200501.oc', '20200501.olo', '20200501.om', '20200501.or', '20200501.os', '20200501.pa', '20200501.pag', '20200501.pam', '20200501.pap', '20200501.pcd', '20200501.pdc', '20200501.pfl', '20200501.pi', '20200501.pih', '20200501.pl', '20200501.pms', '20200501.pnb', '20200501.pnt', '20200501.ps', '20200501.pt', '20200501.qu', '20200501.rm', '20200501.rmy', '20200501.rn', '20200501.ro', '20200501.roa-rup', '20200501.roa-tara', '20200501.ru', '20200501.rue', '20200501.rw', '20200501.sa', '20200501.sah', '20200501.sat', '20200501.sc', '20200501.scn', '20200501.sco', '20200501.sd', '20200501.se', '20200501.sg', '20200501.sh', '20200501.si', '20200501.simple', '20200501.sk', '20200501.sl', '20200501.sm', '20200501.sn', '20200501.so', '20200501.sq', '20200501.sr', '20200501.srn', '20200501.ss', '20200501.st', '20200501.stq', '20200501.su', '20200501.sv', '20200501.sw', '20200501.szl', '20200501.ta', '20200501.tcy', '20200501.te', '20200501.tet', '20200501.tg', '20200501.th', '20200501.ti', '20200501.tk', '20200501.tl', '20200501.tn', '20200501.to', '20200501.tpi', '20200501.tr', '20200501.ts', '20200501.tt', '20200501.tum', '20200501.tw', '20200501.ty', '20200501.tyv', '20200501.udm', '20200501.ug', '20200501.uk', '20200501.ur', '20200501.uz', '20200501.ve', '20200501.vec', '20200501.vep', '20200501.vi', '20200501.vls', '20200501.vo', '20200501.wa', '20200501.war', '20200501.wo', '20200501.wuu', '20200501.xal', '20200501.xh', '20200501.xmf', '20200501.yi', '20200501.yo', '20200501.za', '20200501.zea', '20200501.zh', '20200501.zh-classical', '20200501.zh-min-nan', '20200501.zh-yue', '20200501.zu'] Example of usage: `load_dataset('wikipedia', '20200501.aa')` I think the other parameter is missing in the load_dataset function that is not shown in the instruction.
27
Not able to load 'wikipedia' dataset ## Describe the bug I am following the instruction for loading the wikipedia dataset using datasets. However getting the below error. ## Steps to reproduce the bug from datasets import load_dataset dataset = load_dataset("wikipedia") ``` ## Expected results A clear and concise description of the expected results. ## Actual results ~/anaconda3/envs/pytorch_p36/lib/python3.6/site-packages/datasets/builder.py in _create_builder_config(self, name, custom_features, **config_kwargs) 339 "Config name is missing." 340 "\nPlease pick one among the available configs: %s" % list(self.builder_configs.keys()) --> 341 + "\nExample of usage:\n\t`{}`".format(example_of_usage) 342 ) 343 builder_config = self.BUILDER_CONFIGS[0] ValueError: Config name is missing. Please pick one among the available configs: ['20200501.aa', '20200501.ab', '20200501.ace', '20200501.ady', '20200501.af', '20200501.ak', '20200501.als', '20200501.am', '20200501.an', '20200501.ang', '20200501.ar', '20200501.arc', '20200501.arz', '20200501.as', '20200501.ast', '20200501.atj', '20200501.av', '20200501.ay', '20200501.az', '20200501.azb', '20200501.ba', '20200501.bar', '20200501.bat-smg', '20200501.bcl', '20200501.be', '20200501.be-x-old', '20200501.bg', '20200501.bh', '20200501.bi', '20200501.bjn', '20200501.bm', '20200501.bn', '20200501.bo', '20200501.bpy', '20200501.br', '20200501.bs', '20200501.bug', '20200501.bxr', '20200501.ca', '20200501.cbk-zam', '20200501.cdo', '20200501.ce', '20200501.ceb', '20200501.ch', '20200501.cho', '20200501.chr', '20200501.chy', '20200501.ckb', '20200501.co', '20200501.cr', '20200501.crh', '20200501.cs', '20200501.csb', '20200501.cu', '20200501.cv', '20200501.cy', '20200501.da', '20200501.de', '20200501.din', '20200501.diq', '20200501.dsb', '20200501.dty', '20200501.dv', '20200501.dz', '20200501.ee', '20200501.el', '20200501.eml', '20200501.en', '20200501.eo', '20200501.es', '20200501.et', '20200501.eu', '20200501.ext', '20200501.fa', '20200501.ff', '20200501.fi', '20200501.fiu-vro', '20200501.fj', '20200501.fo', '20200501.fr', '20200501.frp', '20200501.frr', '20200501.fur', '20200501.fy', '20200501.ga', '20200501.gag', '20200501.gan', '20200501.gd', '20200501.gl', '20200501.glk', '20200501.gn', '20200501.gom', '20200501.gor', '20200501.got', '20200501.gu', '20200501.gv', '20200501.ha', '20200501.hak', '20200501.haw', '20200501.he', '20200501.hi', '20200501.hif', '20200501.ho', '20200501.hr', '20200501.hsb', '20200501.ht', '20200501.hu', '20200501.hy', '20200501.ia', '20200501.id', '20200501.ie', '20200501.ig', '20200501.ii', '20200501.ik', '20200501.ilo', '20200501.inh', '20200501.io', '20200501.is', '20200501.it', '20200501.iu', '20200501.ja', '20200501.jam', '20200501.jbo', '20200501.jv', '20200501.ka', '20200501.kaa', '20200501.kab', '20200501.kbd', '20200501.kbp', '20200501.kg', '20200501.ki', '20200501.kj', '20200501.kk', '20200501.kl', '20200501.km', '20200501.kn', '20200501.ko', '20200501.koi', '20200501.krc', '20200501.ks', '20200501.ksh', '20200501.ku', '20200501.kv', '20200501.kw', '20200501.ky', '20200501.la', '20200501.lad', '20200501.lb', '20200501.lbe', '20200501.lez', '20200501.lfn', '20200501.lg', '20200501.li', '20200501.lij', '20200501.lmo', '20200501.ln', '20200501.lo', '20200501.lrc', '20200501.lt', '20200501.ltg', '20200501.lv', '20200501.mai', '20200501.map-bms', '20200501.mdf', '20200501.mg', '20200501.mh', '20200501.mhr', '20200501.mi', '20200501.min', '20200501.mk', '20200501.ml', '20200501.mn', '20200501.mr', '20200501.mrj', '20200501.ms', '20200501.mt', '20200501.mus', '20200501.mwl', '20200501.my', '20200501.myv', '20200501.mzn', '20200501.na', '20200501.nah', '20200501.nap', '20200501.nds', '20200501.nds-nl', '20200501.ne', '20200501.new', '20200501.ng', '20200501.nl', '20200501.nn', '20200501.no', '20200501.nov', '20200501.nrm', '20200501.nso', '20200501.nv', '20200501.ny', '20200501.oc', '20200501.olo', '20200501.om', '20200501.or', '20200501.os', '20200501.pa', '20200501.pag', '20200501.pam', '20200501.pap', '20200501.pcd', '20200501.pdc', '20200501.pfl', '20200501.pi', '20200501.pih', '20200501.pl', '20200501.pms', '20200501.pnb', '20200501.pnt', '20200501.ps', '20200501.pt', '20200501.qu', '20200501.rm', '20200501.rmy', '20200501.rn', '20200501.ro', '20200501.roa-rup', '20200501.roa-tara', '20200501.ru', '20200501.rue', '20200501.rw', '20200501.sa', '20200501.sah', '20200501.sat', '20200501.sc', '20200501.scn', '20200501.sco', '20200501.sd', '20200501.se', '20200501.sg', '20200501.sh', '20200501.si', '20200501.simple', '20200501.sk', '20200501.sl', '20200501.sm', '20200501.sn', '20200501.so', '20200501.sq', '20200501.sr', '20200501.srn', '20200501.ss', '20200501.st', '20200501.stq', '20200501.su', '20200501.sv', '20200501.sw', '20200501.szl', '20200501.ta', '20200501.tcy', '20200501.te', '20200501.tet', '20200501.tg', '20200501.th', '20200501.ti', '20200501.tk', '20200501.tl', '20200501.tn', '20200501.to', '20200501.tpi', '20200501.tr', '20200501.ts', '20200501.tt', '20200501.tum', '20200501.tw', '20200501.ty', '20200501.tyv', '20200501.udm', '20200501.ug', '20200501.uk', '20200501.ur', '20200501.uz', '20200501.ve', '20200501.vec', '20200501.vep', '20200501.vi', '20200501.vls', '20200501.vo', '20200501.wa', '20200501.war', '20200501.wo', '20200501.wuu', '20200501.xal', '20200501.xh', '20200501.xmf', '20200501.yi', '20200501.yo', '20200501.za', '20200501.zea', '20200501.zh', '20200501.zh-classical', '20200501.zh-min-nan', '20200501.zh-yue', '20200501.zu'] Example of usage: `load_dataset('wikipedia', '20200501.aa')` I think the other parameter is missing in the load_dataset function that is not shown in the instruction. Hi ! Indeed it looks like the code snippet on the Hugging face Hub doesn't show the second parameter ![image](https://user-images.githubusercontent.com/42851186/142649237-45ba55c5-1a64-4c30-8692-2c8120572f92.png) Thanks for reporting, I'm taking a look
[ -0.07624967396259308, 0.1433967649936676, -0.05065655708312988, 0.36148685216903687, 0.15565353631973267, 0.37283116579055786, 0.39828601479530334, 0.2425008863210678, 0.18628564476966858, 0.06740747392177582, 0.1126716136932373, 0.3431463837623596, 0.08507014811038971, -0.08097556978464127, 0.1471761167049408, -0.19714641571044922, -0.027058430016040802, 0.04806172475218773, 0.029492512345314026, 0.10812273621559143, -0.15712282061576843, 0.14890103042125702, -0.28577756881713867, 0.09994141757488251, -0.30154943466186523, 0.12776562571525574, -0.024198656901717186, 0.20044055581092834, 0.027553986757993698, -0.5392953157424927, 0.3177028000354767, -0.0027131885290145874, 0.13954225182533264, 0.3887559771537781, -0.00010887781536439434, -0.0040135011076927185, 0.6608818769454956, 0.0011526644229888916, -0.4263211488723755, -0.16574083268642426, -0.33335646986961365, -0.3038102686405182, 0.1459580659866333, -0.4603993892669678, -0.037254899740219116, -0.17573456466197968, 0.08391878008842468, -0.1995670199394226, -0.011690042912960052, 0.14137797057628632, 0.24528729915618896, -0.12194213271141052, 0.386186420917511, -0.15071842074394226, 0.09826711565256119, -0.01818782091140747, -0.015235468745231628, 0.2158154398202896, -0.10085012018680573, -0.073630191385746, 0.04401825740933418, 0.1875632107257843, -0.20827479660511017, 0.053217411041259766, 0.5087937712669373, -0.05001083016395569, -0.014348223805427551, -0.3330167829990387, 0.3587853014469147, 0.3138605058193207, 0.8974267840385437, -0.24207249283790588, -0.11743683367967606, -0.14132291078567505, 0.14185099303722382, 0.1661684513092041, 0.26899978518486023, 0.10204026848077774, -0.3792634904384613, -0.13337258994579315, -0.04379982873797417, -0.48116976022720337, -0.2208625078201294, 0.40640586614608765, -0.18309178948402405, 0.27392488718032837, -0.05013170838356018, 0.19743001461029053, -0.22297616302967072, -0.1009688526391983, 0.10232974588871002, -0.38116133213043213, 0.14405187964439392, 0.2503112852573395, -0.2573224902153015, 0.15610602498054504, 0.17237403988838196, -0.008262097835540771, 0.1390540897846222, -0.19244429469108582, -0.31863442063331604, -0.17897242307662964, 0.1592133492231369, 0.19716718792915344, 0.25438374280929565, -0.04531732201576233, 0.08992017805576324, 0.3081813156604767, 0.22905750572681427, 0.30045852065086365, -0.22796630859375, -0.04326210170984268, -0.044421661645174026, -0.24145714938640594, 0.06229070946574211, -0.09140309691429138, 0.3935388922691345, -0.16653156280517578, -0.06445153057575226, 0.2788003981113434, -0.15986740589141846, -0.14461453258991241, 0.03262123838067055, 0.2899542450904846, -0.33468449115753174, -0.08664281666278839, 0.29219621419906616, 0.07582607120275497, -0.09728670120239258, 0.04254681244492531, -0.20560331642627716, 0.027531171217560768, -0.1764673888683319, 0.06464321166276932, 0.2770913243293762, -0.3871309459209442, 0.44508644938468933, 0.2117188274860382, 0.17124256491661072, -0.13675323128700256, -0.1352376937866211, 0.0778251588344574, -0.08941524475812912, 0.26987534761428833, 0.11323460936546326, 0.23658598959445953, 0.02638542652130127, -0.2652978301048279, -0.09081634879112244, 0.2578476071357727, -0.19719582796096802, -0.2262064665555954, -0.30394139885902405, 0.2417936623096466, -0.1847669929265976, -0.08768828213214874, -0.08822637051343918, 0.02245708554983139, 0.2084352672100067, -0.3131104111671448, -0.1747230589389801, -0.04119272530078888, 0.033694859594106674, -0.26734602451324463, 0.3951304256916046, 0.41492098569869995, -0.20766615867614746, -0.11781332641839981, -0.05897456407546997, 0.14664766192436218, 0.07368765771389008, -0.05324038490653038, -0.2705887258052826, 0.3825063705444336, -0.112315833568573, -0.06937791407108307, 0.44439592957496643, -0.1020064726471901, -0.3050430119037628, 0.10142764449119568, 0.16487988829612732, 0.10720343142747879, -0.08986911922693253, -0.05868310481309891, 0.14517952501773834, 0.14202263951301575, 0.22612698376178741, 0.3157554864883423, -0.0013494044542312622, -0.0606461800634861, -0.14974917471408844, -0.20483393967151642, 0.2640187740325928, 0.20167230069637299, 0.2600151598453522, 0.038970448076725006, 0.06592780351638794, 0.13523809611797333, 0.22743234038352966, -0.1065768152475357, -0.0679878517985344, 0.3541465997695923, -0.15411661565303802, 0.33202439546585083, 0.2752761244773865, -0.16382107138633728, -0.5081703662872314, 0.3589702248573303, 0.11457833647727966, 0.1903652548789978, -0.13364854454994202, 0.0004894882440567017, -0.38605186343193054, 0.033183753490448, -0.31979742646217346, -0.047953154891729355, 0.20049653947353363, 0.17189309000968933, -0.12693528831005096, 0.08971776068210602, -0.04906928539276123, -0.030970631167292595, -0.11405365914106369, 0.003124359529465437, -0.40207141637802124, 0.2683750092983246, -0.2581430971622467, 0.051518671214580536, -0.03888067230582237, 0.14563260972499847, 0.2769027352333069, 0.06785253435373306, -0.12772557139396667, 0.1147894486784935, 0.1085086390376091, -0.12179450690746307, -0.007083412259817123, -0.2365662306547165, 0.09573118388652802, -0.3781539499759674, 0.19571328163146973, 0.4140831530094147, 0.16992880403995514, -0.1158524751663208, -0.11525196582078934, -0.028283357620239258, 0.05181398615241051, 0.2994956076145172, -0.10555489361286163, 0.17879067361354828, 0.3160388469696045, -0.04017290845513344, 0.04005710780620575, -0.08761438727378845, 0.2812758684158325, 0.08624418079853058, 0.11638295650482178, -0.06808672100305557, -0.30556344985961914, -0.2052358090877533, 0.18281510472297668, -0.05018839240074158, -0.03585842251777649, 0.12516695261001587, -0.27396613359451294, -0.03696125000715256, 0.03852612525224686, -0.05183139443397522, 0.11072982847690582, 0.18192076683044434, -0.16373774409294128, -0.1179528757929802, -0.15687081217765808, 0.009181711822748184, 0.35476961731910706, 0.24607160687446594, 0.28394320607185364, 0.2029430866241455, 0.054391227662563324, 0.16074535250663757, -0.15797612071037292, -0.26485475897789, 0.059753790497779846, 0.17710579931735992, -0.40732690691947937, 0.07329876720905304, -0.09707711637020111, -0.2272070348262787, 0.05794140696525574, -0.24661003053188324, -0.3912614583969116, -0.3991885781288147, -0.11472898721694946, 0.03443455323576927, 0.047011274844408035, 0.2923377454280853, -0.09979110956192017, -0.025675088167190552, 0.14583009481430054, -0.323496013879776, -0.2285158783197403, -0.37587785720825195, -0.27567413449287415, 0.04542192444205284, 0.2205769270658493, -0.05399041995406151, 0.2392619252204895, -0.09900837391614914, -0.1166926696896553, -0.4501042366027832, -0.31134024262428284, 0.16357934474945068, -0.07803739607334137, 0.4584931433200836, 0.16758611798286438, 0.3674374222755432, 0.21566028892993927, -0.3337647020816803, 0.35705265402793884, 0.08028199523687363, 0.024486122652888298, 0.29315561056137085, -0.07886932790279388, -0.2447589933872223, 0.11588962376117706, -0.29631996154785156, -0.11401285976171494, -0.2727452218532562, -0.2193790227174759, 0.24675120413303375, 0.053257595747709274, 0.4353683292865753, -0.001249619759619236, 0.002992577850818634, 0.11211243271827698, 0.285823255777359, -0.26342207193374634, -0.14402246475219727, 0.4427887797355652, -0.2935156524181366, -0.3429136276245117, 0.06635458767414093, 0.026907268911600113, 0.15174245834350586, -0.01919705606997013, -0.46724259853363037, 0.3088128864765167, 0.055060453712940216, 0.3868803083896637, -0.2447832226753235, 0.13197356462478638, 0.07198672741651535, 0.16327819228172302, 0.05220817029476166, -0.15939436852931976, -0.2360759973526001, -0.16443049907684326, -0.11904264241456985, 0.4106627404689789, 0.056458089500665665, 0.36066263914108276, -0.2596128582954407, 0.7011083960533142, 0.23327204585075378, 0.030116401612758636, 0.12735989689826965, -0.1630524843931198, 0.2219768762588501, -0.14527863264083862, -0.5021957159042358, 0.050869062542915344, 0.0039183348417282104, -0.07059690356254578, 0.1741596758365631, -0.1274314522743225, -0.35521233081817627, -0.33553794026374817, -0.06910313665866852, -0.15827573835849762, -0.2660825252532959, -0.03259800374507904, -0.1303667277097702, 0.33397355675697327, 0.11816790699958801, 0.07526112347841263, -0.22208628058433533, -0.22435277700424194, 0.1759123057126999, 0.30022895336151123, 0.05428178608417511, -0.038265448063611984, -0.07601657509803772, -0.17887969315052032, -0.36112985014915466, 0.11356500536203384, -0.004401165060698986, 0.1310039460659027, -0.006640024483203888, 0.22357913851737976, 0.1020096018910408, 0.2515495717525482, 0.40423983335494995, -0.18574853241443634, 0.12914061546325684, 0.4274498224258423, 0.24650216102600098, -0.5051899552345276, -0.06599375605583191, -0.10238761454820633, 0.5418812036514282, 0.23835036158561707, 0.22835469245910645, -0.38569530844688416, -0.13094858825206757, 0.4610508382320404, 0.4112981855869293, -0.2030816674232483, -0.49837198853492737, -0.2539787292480469, -0.15047787129878998, -0.30629605054855347, -0.19752725958824158, -0.11035508662462234, 0.4979366958141327, 0.1474711000919342, 0.0024685822427272797, -0.08426868915557861, 0.2521483302116394, -0.1211366355419159, 0.17821496725082397, 0.28313809633255005, 0.21751081943511963, 0.15949460864067078, 0.18044711649417877, -0.02548396587371826, 0.02974323183298111, 0.3601619005203247, 0.18218624591827393, -0.40716153383255005, -0.05292858928442001, -0.04382123425602913, 0.0348922535777092, -0.06514516472816467, -0.24165868759155273, -0.24271085858345032, 0.04279875382781029, 0.06561726331710815, -0.025658942759037018, -0.21862545609474182, 0.1605842411518097, 0.06740319728851318, -0.333320289850235, -0.4888307452201843, 0.7041285037994385, -0.11597578227519989, -0.032432541251182556, 0.441791832447052, 0.033876024186611176, -0.4245893359184265, 0.2556721568107605, 0.1005975604057312, 0.6184563040733337, 0.07793356478214264, 0.058792613446712494, 0.2924254834651947, 0.2034122794866562, 0.4223276972770691, -0.0006723515689373016, 0.0590900182723999, -0.41739198565483093, 0.08989336341619492, 0.01639500819146633, -0.07468771189451218, 0.10855298489332199, 0.11111170798540115, -0.21223177015781403, 0.3194293975830078, -0.13796450197696686, 0.17823565006256104, 0.1373496800661087, 0.2509925663471222, 0.1967235654592514, -0.18255415558815002, -0.19097067415714264, 0.1320289969444275, -0.1504140943288803, 0.41016021370887756, -0.1417461633682251, 0.14556579291820526, -0.03377358242869377, -0.1143648773431778, -0.4278292655944824, 0.11179999262094498, -0.312831312417984, 0.41742879152297974, 0.09598959982395172, -0.27931952476501465, 0.2722392678260803, 0.40793728828430176, 0.009376317262649536, 0.3503386378288269, -0.2778100073337555, 0.26538971066474915, -0.19282633066177368, -0.1600652039051056, -0.04987369477748871, 0.05750717967748642, 0.26401934027671814, -0.04941180720925331, -0.3694516122341156, 0.18027660250663757, -0.278548002243042, -0.20518715679645538, -0.042266182601451874, -0.03499017655849457, 0.005328014492988586, -0.27565115690231323, -0.3117143213748932, -0.09034188091754913, 0.2370191216468811, -0.19922609627246857, 0.18211738765239716, 0.08527438342571259, -0.08542228490114212, 0.17168542742729187, 0.09468486160039902, -0.19513434171676636, 0.14547573029994965, 0.1537446826696396, 0.03526091203093529, 0.08367370814085007, 0.5873234272003174, 0.30210959911346436, -0.2761180102825165, -0.09586826711893082, -0.002189900726079941, -0.45093923807144165, -0.1380668580532074, -0.024957899004220963, 0.05869508162140846, 0.28097444772720337, -0.20276524126529694, 0.10077273100614548, 0.13432428240776062, -0.12642255425453186, 0.1416548639535904, -0.554551899433136, -0.07668463885784149, 0.16544967889785767, -0.12427061796188354, 0.04127413034439087, 0.21088895201683044, -0.19647033512592316, 0.14478041231632233, -0.1267901510000229, -0.3145427107810974, 0.08562275767326355, -0.28070804476737976, 0.12288707494735718, 0.2874767482280731, 0.11554241925477982, -0.1431731879711151, -0.29142069816589355, 0.21083635091781616, -0.43003779649734497, 0.21323750913143158, -0.24512895941734314, -0.10359899699687958, 0.10268858075141907, 0.030761605128645897, -0.07186048477888107, -0.14439694583415985, -0.3866754174232483, -0.0799490362405777, -0.10679908096790314, 0.07416032254695892, 0.060780301690101624, -0.026991210877895355, 0.3385419547557831, -0.041625622659921646, -0.15772676467895508, -0.3129315972328186, 0.3995967507362366, -0.09138168394565582, 0.20165112614631653, 0.23365522921085358, 0.2936466336250305, 0.17177055776119232, -0.0239555686712265, -0.23379455506801605, 0.17513126134872437, -0.47629809379577637, 0.15485918521881104, 0.43411222100257874, -0.3520621061325073, 0.1845673769712448, 0.4466387629508972, 0.004652254283428192, 0.3105723559856415, -0.3362981677055359, 0.14012227952480316, 0.023379437625408173, 0.23432540893554688, -0.47209084033966064, -0.2575364112854004, 0.4297344386577606, -0.0867108553647995, -0.007654834538698196, -0.014175020158290863, 0.01144038513302803, -0.2316787838935852, 0.0057421475648880005, 0.08376293629407883, 0.1140691488981247, -0.01698610559105873, 0.34070584177970886, 0.2914644777774811, 0.07511933147907257, 0.13447566330432892, 0.22303880751132965, 0.34821003675460815, -0.09532908350229263, 0.36044156551361084, 0.056263260543346405, -0.07867174595594406, 0.11296851933002472, -0.02667161449790001, 0.009502515196800232, -0.29505565762519836, 0.4079785645008087, -0.036414191126823425, -0.3305141031742096, -0.08551078289747238, -0.1702899932861328, 0.009547702968120575, -0.0032925810664892197, 0.16538263857364655, -0.16988234221935272, 0.05494903400540352, -0.24133425951004028, -0.11624471843242645, -0.34851470589637756, -0.26426950097084045, 0.23433905839920044, -0.013803796842694283, 0.003966610878705978, -0.3978196382522583, -0.0025661438703536987, 0.17685498297214508, -0.303600013256073, -0.48565804958343506, 0.5605624914169312, 0.23036769032478333, 0.07596802711486816, -0.25547322630882263, 0.018391789868474007, -0.010601751506328583, -0.1151353269815445, -0.004691269248723984, 0.3474290370941162, 0.43591707944869995, 0.1302095502614975, -0.2944420576095581, -0.08844605833292007, 0.06377946585416794, -0.20647989213466644, -0.0021646935492753983, 0.16338054835796356, 0.10102678835391998, -0.09701627492904663, 0.2647855281829834, 0.1687248945236206, -0.17716214060783386, -0.24987052381038666, 0.34071534872055054, 0.15480396151542664, -0.21751676499843597, -0.1117454394698143, -0.16006997227668762, -0.2669674754142761, -0.032721370458602905, 0.04843761771917343, -0.36970385909080505, -0.05931362509727478, 0.7955417037010193, 0.2854578197002411, 0.0417964905500412, -0.14849500358104706, 0.08002156019210815, -0.1739332526922226, 0.5828048586845398, 0.21267855167388916, 0.12340908497571945, -0.3108224868774414, -0.13592374324798584, -0.5117229223251343, 0.17260324954986572, 0.022484757006168365, -0.3236045837402344, 0.44672444462776184, 0.12121972441673279, -0.07366833835840225, 0.10472901165485382, 0.1857980638742447, -0.13112665712833405, 0.18024548888206482, 0.22072279453277588, -0.30239346623420715, -0.35810911655426025, 0.1102188378572464, 0.15136143565177917, -0.2193041294813156, -0.25924035906791687, 0.1024259403347969, -0.21667718887329102, 0.04440983384847641, -0.22091923654079437, 0.04949655383825302, 0.3243725001811981, 0.0066022202372550964, 0.3169943392276764, -0.06249874830245972, 0.5951159000396729, -0.033106978982686996, -0.08256940543651581, -0.15954144299030304, -0.2180832326412201, -0.025106385350227356, 0.5132483243942261, 0.029254188761115074, 0.1247902363538742, -0.0851343423128128, -0.18924613296985626, -0.22801052033901215, 0.2200961858034134, -0.05147216469049454, -0.1001165583729744, -0.34028470516204834, 0.046930693089962006, -0.056202925741672516, 0.30499720573425293, -0.04393969848752022, 0.10169591009616852, -0.24849781394004822, 0.17200538516044617, -0.18285223841667175, -0.4456847310066223, 0.44808655977249146, -0.3026408851146698, -0.4631524682044983, -0.21227112412452698, 0.11295171082019806, -0.1537611484527588, 0.1415073424577713, -0.3922463655471802, 0.08052828162908554, 0.5259371399879456, -0.16600510478019714, -0.25293999910354614, 0.09261573851108551, -0.10955987870693207, 0.2783752679824829, -0.03920264542102814, 0.21547406911849976, 0.028320815414190292, -0.23528555035591125, -0.3090519607067108, -0.22688859701156616 ]
https://github.com/huggingface/datasets/issues/3285
Add IEMOCAP dataset
The IEMOCAP dataset is private and available only on request. ``` To obtain the IEMOCAP data you just need to fill out an electronic release form below. ``` - [Request form](https://sail.usc.edu/iemocap/release_form.php) - [License ](https://sail.usc.edu/iemocap/Data_Release_Form_IEMOCAP.pdf) > We do not share the dataset for commercial purposes due to privacy concerns surrounding the participants of the research. The login details will only be emailed to the given academic email address. I think it won't be possible to add this dataset to 🤗 datasets.
## Adding a Dataset - **Name:** IEMOCAP - **Description:** acted, multimodal and multispeaker database - **Paper:** https://sail.usc.edu/iemocap/Busso_2008_iemocap.pdf - **Data:** https://sail.usc.edu/iemocap/index.html - **Motivation:** Useful multimodal dataset cc @anton-l Instructions to add a new dataset can be found [here](https://github.com/huggingface/datasets/blob/master/ADD_NEW_DATASET.md).
80
Add IEMOCAP dataset ## Adding a Dataset - **Name:** IEMOCAP - **Description:** acted, multimodal and multispeaker database - **Paper:** https://sail.usc.edu/iemocap/Busso_2008_iemocap.pdf - **Data:** https://sail.usc.edu/iemocap/index.html - **Motivation:** Useful multimodal dataset cc @anton-l Instructions to add a new dataset can be found [here](https://github.com/huggingface/datasets/blob/master/ADD_NEW_DATASET.md). The IEMOCAP dataset is private and available only on request. ``` To obtain the IEMOCAP data you just need to fill out an electronic release form below. ``` - [Request form](https://sail.usc.edu/iemocap/release_form.php) - [License ](https://sail.usc.edu/iemocap/Data_Release_Form_IEMOCAP.pdf) > We do not share the dataset for commercial purposes due to privacy concerns surrounding the participants of the research. The login details will only be emailed to the given academic email address. I think it won't be possible to add this dataset to 🤗 datasets.
[ -0.3974735140800476, -0.10452384501695633, -0.16263927519321442, 0.019414808601140976, -0.055338531732559204, -0.11475451290607452, 0.5808408856391907, 0.05183836817741394, 0.09897108376026154, 0.3002893924713135, -0.4795854687690735, 0.09580745548009872, -0.1967376321554184, 0.45369136333465576, 0.15946874022483826, -0.02470674365758896, -0.06571889668703079, 0.12874305248260498, 0.016377951949834824, 0.003770865499973297, 0.04281940311193466, 0.05525656044483185, -0.022384293377399445, -0.05640685558319092, -0.19072236120700836, 0.049165278673172, -0.18515436351299286, 0.04175374656915665, -0.2844047546386719, -0.16433553397655487, 0.028180668130517006, 0.34155210852622986, -0.17633575201034546, 0.2900148332118988, -0.00009748719458002597, -0.04722485691308975, -0.12196549773216248, -0.31687358021736145, -0.0934416651725769, 0.058860816061496735, -0.39964500069618225, 0.09387451410293579, -0.31337133049964905, -0.10033249109983444, -0.3224108815193176, -0.09189941734075546, -0.22767792642116547, -0.2974073886871338, 0.1359322965145111, 0.38553497195243835, 0.3168558180332184, 0.03181173652410507, 0.1325971484184265, -0.14054787158966064, 0.293794721364975, 0.3015146255493164, -0.22914427518844604, -0.00796283595263958, 0.091437429189682, 0.14438460767269135, -0.05844935029745102, 0.3583850562572479, -0.11078924685716629, 0.0481700673699379, -0.10379058867692947, 0.02286343276500702, 0.11413055658340454, -0.1054379791021347, 0.16252116858959198, 0.4214641749858856, 0.5761353969573975, -0.34682419896125793, -0.2958819568157196, 0.0910821482539177, 0.29509657621383667, -0.18534508347511292, 0.1303764283657074, 0.15221306681632996, 0.20142076909542084, 0.19357441365718842, -0.05189131945371628, -0.05935913324356079, -0.18607467412948608, 0.11451907455921173, -0.06180686503648758, 0.22577647864818573, -0.3401397466659546, -0.1609714925289154, 0.01878347247838974, -0.26471102237701416, -0.08557232469320297, 0.23194926977157593, -0.009513642638921738, -0.08125550299882889, -0.12401609122753143, -0.19551272690296173, -0.04658368229866028, 0.12068125605583191, 0.07456530630588531, 0.14284071326255798, 0.18807359039783478, 0.060098469257354736, 0.19220992922782898, 0.15875253081321716, 0.07407835125923157, -0.42782360315322876, -0.028166137635707855, -0.28118863701820374, 0.40386325120925903, 0.12602947652339935, -0.08195769786834717, 0.04221247136592865, 0.1543978601694107, 0.12682905793190002, -0.1551385372877121, -0.09434468299150467, 0.13725417852401733, -0.14605093002319336, -0.31039783358573914, -0.13106071949005127, -0.0871470719575882, -0.1315886229276657, 0.06026707589626312, 0.27277252078056335, -0.07704086601734161, 0.21414950489997864, -0.019829189404845238, 0.30798155069351196, -0.052064962685108185, -0.3060113489627838, -0.1031976193189621, 0.07865284383296967, -0.1309863030910492, 0.2466421127319336, 0.38330668210983276, 0.2544536590576172, 0.01758144237101078, -0.0562824048101902, 0.06718982756137848, -0.058595120906829834, 0.22516083717346191, -0.14939017593860626, 0.1864887923002243, 0.0956897884607315, 0.2446405589580536, -0.10054387897253036, -0.19651366770267487, -0.2140137404203415, -0.27527064085006714, -0.33386850357055664, -0.009057775139808655, -0.12980441749095917, -0.37065252661705017, 0.32810690999031067, 0.008005095645785332, -0.1325463354587555, -0.04232103377580643, 0.3735109865665436, -0.017596930265426636, -0.25580689311027527, 0.03626132756471634, 0.25734034180641174, -0.4331173598766327, -0.06168960779905319, 0.13069717586040497, 0.2101191282272339, -0.10186365246772766, -0.21512728929519653, -0.23851817846298218, -0.05047043040394783, -0.22957390546798706, 0.17591635882854462, -0.0021072574891149998, 0.13908883929252625, -0.21025343239307404, 0.16593654453754425, 0.06124178692698479, -0.325838178396225, -0.37013915181159973, -0.23558516800403595, -0.17055538296699524, -0.17340704798698425, 0.4858984649181366, 0.3162853419780731, 0.34465453028678894, -0.33649083971977234, 0.21640627086162567, 0.30856257677078247, -0.09070064127445221, 0.07424315810203552, 0.09141814708709717, -0.2873869240283966, -0.20521441102027893, 0.2619991898536682, -0.09330222010612488, -0.2307526171207428, 0.26909613609313965, 0.011294716037809849, 0.10673785209655762, -0.1691335141658783, 0.3663845360279083, 0.05923517048358917, 0.307355135679245, 0.1239265725016594, -0.05550311878323555, -0.515128493309021, 0.05510205402970314, -0.12443173676729202, -0.11550451815128326, 0.25789937376976013, 0.053544528782367706, -0.45084047317504883, -0.21669554710388184, -0.11207786947488785, -0.2036849409341812, -0.04555637016892433, 0.3301032483577728, 0.3583928048610687, -0.021989960223436356, 0.05029207840561867, -0.15264837443828583, -0.027261124923825264, 0.1640070676803589, -0.14999686181545258, -0.15671324729919434, 0.1836346536874771, -0.15973132848739624, -0.05830255150794983, 0.16709548234939575, 0.3672918677330017, -0.2413952648639679, 0.11696363240480423, 0.16382694244384766, 0.24580350518226624, -0.08375957608222961, 0.3472057580947876, 0.25308120250701904, 0.46159905195236206, 0.036594077944755554, -0.6401765942573547, 0.36325803399086, -0.11118051409721375, 0.059684477746486664, -0.07181800901889801, 0.05025028437376022, 0.40427058935165405, 0.418103963136673, -0.16263285279273987, 0.07521544396877289, 0.05878842622041702, 0.41810208559036255, -0.15536588430404663, -0.14221914112567902, -0.48979488015174866, -0.25294408202171326, 0.11090146005153656, -0.038925036787986755, -0.0332857221364975, -0.23750759661197662, 0.15264780819416046, 0.4643155336380005, 0.19700631499290466, 0.5026900768280029, -0.08044181019067764, -0.5265235900878906, -0.1293877363204956, 0.03876961022615433, -0.15805988013744354, 0.34503206610679626, 0.3945533037185669, 0.1465807855129242, -0.15270863473415375, 0.12503346800804138, -0.15536490082740784, 0.27028602361679077, -0.12722785770893097, -0.17304904758930206, 0.3177971839904785, 0.2377142310142517, -0.21559129655361176, -0.5438375473022461, -0.21402831375598907, -0.14960382878780365, -0.24766796827316284, -0.2814970910549164, -0.19005978107452393, -0.09854955226182938, -0.2753351628780365, 0.0664280578494072, -0.35894566774368286, 0.002289470285177231, 0.04301563650369644, 0.24723222851753235, 0.17280136048793793, -0.23255555331707, 0.09802677482366562, -0.0712130069732666, 0.4156302809715271, 0.08347445726394653, 0.10590830445289612, 0.16884487867355347, -0.04839437082409859, -0.05009697377681732, 0.3064126968383789, 0.22660861909389496, 0.02360670641064644, 0.3768422603607178, -0.12792184948921204, 0.14516954123973846, -0.35645708441734314, -0.28911805152893066, 0.28073471784591675, -0.08520650118589401, 0.02865605056285858, 0.11894075572490692, -0.1386023908853531, 0.12371554970741272, -0.15228261053562164, 0.26650553941726685, -0.14881029725074768, -0.07977116107940674, 0.03002278134226799, -0.19518257677555084, 0.10862407833337784, -0.1118050068616867, -0.4838259518146515, -0.3841775953769684, -0.4040662944316864, 0.26130518317222595, -0.02519300952553749, 0.015452064573764801, 0.019376248121261597, -0.07641004770994186, 0.18957941234111786, -0.11121093481779099, 0.35175657272338867, -0.49148523807525635, -0.2356438785791397, 0.31766101717948914, -0.44680118560791016, -0.1779693365097046, 0.022804532200098038, -0.21468447148799896, 0.1400448977947235, -0.09007488191127777, -0.23330605030059814, -0.11685653030872345, 0.021570514887571335, -0.059253111481666565, 0.13743971288204193, 0.14053048193454742, 0.20564495027065277, 0.10486594587564468, -0.2610454261302948, -0.14879566431045532, -0.19369544088840485, 0.16779612004756927, 0.24128803610801697, 0.04530512914061546, -0.10004960745573044, 0.04841466620564461, 0.1213095486164093, 0.2675737738609314, -0.06911027431488037, 0.027777180075645447, 0.4328351318836212, -0.20180357992649078, 0.28444892168045044, -0.08861818164587021, -0.11725953966379166, 0.2999522089958191, -0.05697448551654816, 0.13722559809684753, 0.4742630124092102, 0.2228774130344391, -0.15763111412525177, -0.2196546196937561, 0.15256869792938232, -0.07970279455184937, -0.3317902386188507, -0.04703407734632492, 0.25416529178619385, 0.2231646478176117, -0.09972351789474487, -0.28871554136276245, -0.17968976497650146, -0.27313950657844543, 0.3348548412322998, 0.09045513719320297, -0.27032357454299927, -0.24422921240329742, -0.2606804370880127, 0.18098965287208557, -0.24305367469787598, 0.23545154929161072, 0.28588294982910156, 0.07118222117424011, -0.29995039105415344, -0.12193460017442703, -0.011036477982997894, 0.1397339552640915, 0.10065752267837524, -0.5579904913902283, -0.13927464187145233, 0.1434810906648636, 0.2822324335575104, -0.13448962569236755, 0.09802429378032684, -0.41888701915740967, -0.012498226016759872, 0.1869644671678543, 0.005927480757236481, -0.2577487528324127, 0.20485739409923553, 0.32441139221191406, 0.1399463415145874, -0.05429590493440628, 0.016086146235466003, -0.04552741348743439, -0.14302699267864227, -0.2649112343788147, 0.15075597167015076, -0.03524543344974518, 0.07814901322126389, 0.15534920990467072, -0.28583765029907227, 0.134349524974823, -0.25478750467300415, 0.3361603617668152, 0.12285828590393066, 0.002346946392208338, 0.2627391815185547, 0.08269539475440979, -0.01698313280940056, -0.05929946154356003, 0.1547824889421463, 0.6335948705673218, 0.059759993106126785, -0.007207490503787994, 0.19245314598083496, -0.4623441994190216, 0.21097815036773682, 0.17567741870880127, 0.27973899245262146, 0.3724035322666168, 0.14515170454978943, -0.018479183316230774, -0.4336017072200775, 0.07039602845907211, 0.2507047653198242, 0.03572468087077141, -0.06233182176947594, -0.20006296038627625, 0.03286302462220192, 0.07158425450325012, -0.05860030651092529, 0.0778106227517128, 0.4010627865791321, -0.3350760340690613, -0.017401590943336487, -0.05683935433626175, 0.8944537043571472, 0.07943941652774811, 0.06345196068286896, 0.033603038638830185, 0.10173065960407257, -0.10323327034711838, -0.03481287881731987, 0.01499134860932827, 0.058687519282102585, -0.24545137584209442, -0.1233084499835968, 0.09928856790065765, -0.04715923219919205, 0.10057342797517776, -0.32874351739883423, -0.034520938992500305, 0.05136607587337494, 0.2058621346950531, -0.052985675632953644, 0.24650752544403076, -0.13664793968200684, -0.4210355579853058, -0.2581464350223541, 0.267042338848114, 0.1640017330646515, -0.24216294288635254, 0.19235587120056152, -0.17372900247573853, -0.08793655037879944, -0.043114885687828064, -0.27967241406440735, -0.025379616767168045, -0.12323655188083649, 0.0888998955488205, -0.2245250940322876, 0.217378631234169, 0.14037053287029266, -0.13223634660243988, 0.2705145478248596, 0.023936504498124123, -0.2660263478755951, -0.09228372573852539, 0.004140637814998627, 0.03461785614490509, -0.1047484502196312, -0.01236387062817812, 0.2601732313632965, -0.04312089830636978, -0.08213385939598083, 0.25464680790901184, 0.2551541030406952, -0.19614683091640472, -0.005794927477836609, 0.043792858719825745, 0.26054245233535767, -0.18886978924274445, 0.200186088681221, 0.11126042902469635, -0.13206656277179718, -0.24304889142513275, 0.22584956884384155, 0.2328525334596634, -0.13852138817310333, 0.20110177993774414, 0.20125342905521393, 0.014147937297821045, -0.12993833422660828, 0.3967592120170593, 0.25689786672592163, -0.0038507580757141113, 0.10172334313392639, -0.03448802977800369, -0.07957567274570465, -0.4123828411102295, -0.1071896106004715, 0.05803323909640312, -0.2591942846775055, -0.006212311796844006, 0.13131067156791687, -0.33996400237083435, 0.10828482359647751, 0.20224006474018097, 0.09763193130493164, 0.10422568023204803, -0.25098174810409546, -0.14251236617565155, -0.19349437952041626, 0.35222911834716797, 0.03960797190666199, 0.18903572857379913, 0.0030226968228816986, 0.16319826245307922, 0.059179119765758514, 0.017720192670822144, -0.5013095736503601, -0.07071760296821594, -0.12550088763237, 0.10061100125312805, 0.21043390035629272, -0.262134850025177, 0.07212888449430466, 0.02090268023312092, 0.24537092447280884, -0.27304333448410034, -0.35457488894462585, -0.322333425283432, -0.14223046600818634, 0.09495667368173599, -0.12051308900117874, 0.15356990694999695, 0.03651009500026703, -0.18223387002944946, -0.2683470547199249, -0.10873624682426453, 0.21267348527908325, 0.11334406584501266, -0.07978998124599457, -0.27846774458885193, -0.2677997052669525, -0.14235112071037292, -0.011471720412373543, -0.01994503289461136, 0.05854617804288864, -0.1533454805612564, -0.03317999094724655, 0.16030043363571167, -0.2593301832675934, -0.2650500237941742, 0.27030149102211, 0.30124104022979736, 0.35337579250335693, -0.07869571447372437, 0.23192328214645386, 0.09145789593458176, -0.16203652322292328, 0.4059540033340454, 0.41773316264152527, 0.06193815916776657, -0.17952050268650055, 0.08184852451086044, -0.0173041969537735, 0.3823648989200592, -0.33067116141319275, 0.04282796010375023, 0.2814325988292694, -0.2824195921421051, 0.4021790027618408, 0.2890291213989258, 0.6046369671821594, -0.11716720461845398, 0.037243038415908813, 0.053489990532398224, -0.22308696806430817, -0.08095277845859528, -0.07538110017776489, -0.10435868799686432, -0.04742852598428726, 0.11551783978939056, 0.3086717128753662, -0.06179546192288399, 0.42044955492019653, 0.330535888671875, -0.0013626515865325928, 0.39789414405822754, 0.30128392577171326, 0.1370542198419571, 0.502997875213623, -0.047512128949165344, 0.4418824017047882, -0.13988840579986572, 0.14162999391555786, 0.12022559344768524, 0.142988920211792, 0.3875337839126587, -0.20386885106563568, 0.05198874697089195, -0.2857378423213959, 0.11286565661430359, -0.07067015022039413, 0.041913438588380814, -0.0558612123131752, -0.10621260851621628, -0.329915314912796, -0.32083365321159363, -0.016032591462135315, 0.19103308022022247, 0.18241703510284424, -0.022829808294773102, 0.20258070528507233, -0.26182347536087036, -0.15584051609039307, 0.14094223082065582, 0.228628009557724, -0.2876203954219818, 0.1914444863796234, 0.24058283865451813, -0.13346467912197113, 0.23380109667778015, 0.38871052861213684, 0.20892967283725739, -0.03798814117908478, -0.06114226207137108, 0.2789340615272522, 0.08507585525512695, -0.251577764749527, -0.22932934761047363, 0.07558044791221619, 0.344175785779953, 0.01703481376171112, 0.27099424600601196, 0.2908010184764862, -0.2543141543865204, -0.2817816138267517, 0.12293951213359833, 0.2110174298286438, -0.020355671644210815, -0.39168867468833923, -0.011512719094753265, 0.07607754319906235, -0.2785365879535675, -0.09939873963594437, -0.6128139495849609, -0.25054702162742615, 0.2478652000427246, -0.33843740820884705, 0.15741461515426636, -0.1829812228679657, 0.14147648215293884, 0.2082018107175827, 0.1632898598909378, 0.21412694454193115, 0.11810284107923508, 0.25372570753097534, -0.19345027208328247, -0.6659442186355591, 0.21150678396224976, 0.02541509084403515, -0.06129171699285507, -0.2172803282737732, 0.25602200627326965, 0.5015316605567932, 0.1712949126958847, 0.1525469720363617, -0.13687610626220703, 0.1424889862537384, -0.03236168622970581, -0.4610908329486847, 0.03759624436497688, 0.3549180030822754, 0.24550850689411163, 0.1160990446805954, -0.09530964493751526, 0.04023178666830063, -0.06452006846666336, 0.22644174098968506, -0.1250361055135727, -0.16649362444877625, -0.2501353919506073, -0.11491349339485168, 0.3129744529724121, -0.0661243349313736, 0.47320523858070374, -0.46892744302749634, -0.013584223575890064, -0.14754970371723175, 0.006501398980617523, -0.08830596506595612, -0.02304014563560486, 0.3606341481208801, 0.46282821893692017, -0.16424745321273804, 0.12568014860153198, 0.23194801807403564, 0.3203164339065552, 0.0656857043504715, 0.37643545866012573, -0.2429962456226349, 0.24657383561134338, -0.040946364402770996, -0.01512257568538189, -0.1700505167245865, -0.0475723072886467, -0.022409744560718536, -0.10902319103479385, 0.09689506888389587, -0.48746299743652344, 0.38377708196640015, -0.05564539507031441, -0.218057319521904, -0.2589370310306549, 0.509305477142334, -0.07626516371965408, 0.20271311700344086, -0.3562496602535248, 0.2770669758319855, 0.23722633719444275, 0.10042302310466766, -0.017115306109189987, 0.2522122263908386, -0.12823408842086792, -0.05323069915175438, -0.26632142066955566, 0.15179738402366638, 0.08277767896652222, -0.09948592633008957, -0.22440049052238464, -0.32197314500808716 ]
https://github.com/huggingface/datasets/issues/3285
Add IEMOCAP dataset
Hi @dnaveenr ! We can contact the authors to see if they are interested in hosting the dataset on the Hub. In the meantime, feel free to work on a script with manual download.
## Adding a Dataset - **Name:** IEMOCAP - **Description:** acted, multimodal and multispeaker database - **Paper:** https://sail.usc.edu/iemocap/Busso_2008_iemocap.pdf - **Data:** https://sail.usc.edu/iemocap/index.html - **Motivation:** Useful multimodal dataset cc @anton-l Instructions to add a new dataset can be found [here](https://github.com/huggingface/datasets/blob/master/ADD_NEW_DATASET.md).
34
Add IEMOCAP dataset ## Adding a Dataset - **Name:** IEMOCAP - **Description:** acted, multimodal and multispeaker database - **Paper:** https://sail.usc.edu/iemocap/Busso_2008_iemocap.pdf - **Data:** https://sail.usc.edu/iemocap/index.html - **Motivation:** Useful multimodal dataset cc @anton-l Instructions to add a new dataset can be found [here](https://github.com/huggingface/datasets/blob/master/ADD_NEW_DATASET.md). Hi @dnaveenr ! We can contact the authors to see if they are interested in hosting the dataset on the Hub. In the meantime, feel free to work on a script with manual download.
[ -0.4055468440055847, -0.22969934344291687, -0.18075592815876007, 0.00048444420099258423, -0.07485215365886688, -0.057859018445014954, 0.530574381351471, 0.18253880739212036, 0.16522234678268433, 0.30681151151657104, -0.384627103805542, 0.09531068801879883, -0.2732802927494049, 0.4907403588294983, 0.2245355248451233, 0.048898808658123016, 0.09696603566408157, 0.199361652135849, 0.04715571179986, -0.0007036663591861725, 0.03542102128267288, 0.08142171055078506, -0.00950206071138382, -0.0823369026184082, -0.35166826844215393, 0.19874581694602966, -0.22068817913532257, 0.14111927151679993, -0.25840285420417786, -0.16627299785614014, 0.02488049678504467, 0.3543212413787842, -0.07163258641958237, 0.25051283836364746, -0.0000988241154118441, -0.13492128252983093, -0.1685381829738617, -0.27231600880622864, -0.06884829699993134, 0.15642264485359192, -0.4463663101196289, 0.1763772815465927, -0.20254011452198029, -0.1563001126050949, -0.28912633657455444, 0.0724959671497345, -0.1692509800195694, -0.08661191165447235, 0.1153777465224266, 0.33111482858657837, 0.29770171642303467, 0.08328687399625778, 0.02300683781504631, -0.2019422948360443, 0.22924509644508362, 0.31645214557647705, -0.1690036654472351, 0.12646900117397308, 0.3072815537452698, 0.031493306159973145, -0.21480032801628113, 0.37756863236427307, -0.19797638058662415, 0.031484149396419525, -0.08544863015413284, -0.006576479412615299, 0.06476729363203049, -0.003006402403116226, 0.1851745843887329, 0.3269099295139313, 0.4735693335533142, -0.37630507349967957, -0.12492170184850693, 0.06184308975934982, 0.24750816822052002, -0.11942087858915329, 0.07688374817371368, 0.12360870838165283, 0.21857823431491852, 0.19932425022125244, 0.022028453648090363, -0.12956935167312622, -0.14493806660175323, -0.03871406614780426, -0.07493498921394348, 0.1915438175201416, -0.26469141244888306, -0.24791094660758972, -0.12535057961940765, -0.1869174987077713, 0.03484676778316498, 0.2196124941110611, -0.0538337267935276, -0.10817930847406387, -0.04854956641793251, -0.25604328513145447, -0.07646108418703079, 0.27247288823127747, -0.011427467688918114, 0.09498564898967743, 0.13750208914279938, 0.13631966710090637, 0.12346424162387848, 0.12052425742149353, 0.0789363831281662, -0.3586460053920746, 0.12386877834796906, -0.309003621339798, 0.37526923418045044, 0.23533114790916443, -0.08600223064422607, 0.11021032184362411, -0.030667942017316818, 0.1233009621500969, -0.07853229343891144, 0.022208822891116142, 0.02257445827126503, -0.05938403308391571, -0.34360602498054504, -0.17139211297035217, 0.09882745891809464, -0.15527217090129852, 0.16374996304512024, 0.24358505010604858, -0.1434524655342102, 0.2902776300907135, -0.0691639631986618, 0.26325535774230957, -0.19919182360172272, -0.4034687578678131, -0.11672788858413696, 0.20670224726200104, -0.12260450422763824, 0.23119105398654938, 0.3377816677093506, 0.23253792524337769, -0.048108071088790894, -0.12323892116546631, 0.11147002130746841, -0.1520930528640747, 0.10184551775455475, -0.02325647510588169, 0.01881607621908188, -0.00689275935292244, 0.39923349022865295, -0.10923950374126434, -0.18550248444080353, -0.20131905376911163, -0.24762648344039917, -0.3594682812690735, 0.0011560320854187012, -0.18969984352588654, -0.3214370012283325, 0.3434807062149048, 0.034021973609924316, -0.19656485319137573, -0.051380328834056854, 0.25321125984191895, -0.15132957696914673, -0.25263676047325134, -0.03428427129983902, 0.38335108757019043, -0.3333946764469147, -0.1175922229886055, 0.03706932067871094, 0.37377840280532837, 0.03989576920866966, -0.10141826421022415, -0.09571422636508942, 0.06443332880735397, -0.3426506221294403, -0.04128872975707054, 0.08720923215150833, 0.23255285620689392, -0.1589200645685196, 0.19804500043392181, 0.08078058809041977, -0.45441168546676636, -0.16346795856952667, -0.23959866166114807, -0.13239434361457825, -0.17519696056842804, 0.3849940896034241, 0.3145805299282074, 0.46554091572761536, -0.319521963596344, 0.2067500501871109, 0.4071230888366699, -0.07812744379043579, 0.24166297912597656, 0.14862503111362457, -0.22054100036621094, -0.37886226177215576, 0.42027825117111206, 0.017105702310800552, -0.24949711561203003, 0.10354205965995789, 0.17655710875988007, 0.21021729707717896, -0.11190034449100494, 0.4049968123435974, 0.021375570446252823, 0.20684881508350372, 0.08692435175180435, -0.08148214221000671, -0.622357189655304, -0.007746994495391846, -0.11901809275150299, -0.06444254517555237, 0.22193914651870728, 0.06436023116111755, -0.4770543575286865, -0.343380331993103, -0.13544224202632904, -0.2023056298494339, 0.01625538244843483, 0.3522590100765228, 0.24083073437213898, -0.08394213020801544, -0.07445406913757324, -0.1803765445947647, 0.016567720100283623, 0.24302731454372406, -0.05774836614727974, -0.1978219449520111, 0.2661646902561188, -0.10993815213441849, -0.11033344268798828, 0.2173750400543213, 0.28314849734306335, -0.20271924138069153, 0.10499793291091919, 0.17747583985328674, 0.300660640001297, -0.013306142762303352, 0.43327778577804565, 0.33358415961265564, 0.4334612488746643, 0.12043733894824982, -0.469778448343277, 0.42445918917655945, -0.1389225274324417, 0.003425716422498226, -0.1827397644519806, 0.02336776629090309, 0.32095444202423096, 0.22657538950443268, -0.19855478405952454, 0.0035385489463806152, 0.18291865289211273, 0.2498593032360077, -0.1974567025899887, -0.08168527483940125, -0.3488304615020752, -0.2815343737602234, 0.1729869246482849, -0.1304216980934143, -0.09429392218589783, -0.08005417138338089, 0.1761651337146759, 0.36867257952690125, 0.06279326975345612, 0.4839057922363281, -0.025296516716480255, -0.4922381043434143, -0.14053168892860413, 0.0065091559663414955, -0.25673454999923706, 0.17065805196762085, 0.34879544377326965, 0.13943199813365936, -0.19070623815059662, 0.10863737761974335, -0.16298478841781616, 0.29931995272636414, -0.2170395702123642, -0.1901564747095108, 0.24435320496559143, 0.14483119547367096, -0.2748010456562042, -0.5054824948310852, -0.38293778896331787, -0.13424664735794067, -0.25041788816452026, -0.17908738553524017, -0.22899241745471954, -0.052440300583839417, -0.18577316403388977, 0.15800835192203522, -0.47762590646743774, 0.0828106701374054, 0.07189954072237015, 0.33567214012145996, 0.3286881446838379, -0.14856787025928497, -0.026950886473059654, 0.05810343101620674, 0.48903656005859375, 0.0734347403049469, 0.14868728816509247, 0.14840874075889587, -0.14559116959571838, -0.049468718469142914, 0.299268901348114, 0.28044846653938293, 0.15799835324287415, 0.2720438838005066, -0.32633936405181885, 0.2556185722351074, -0.2333497703075409, -0.060399021953344345, 0.23599810898303986, -0.042989566922187805, -0.12285691499710083, 0.17062419652938843, -0.0005426555871963501, 0.09758943319320679, -0.07022444158792496, 0.26177287101745605, -0.07640306651592255, 0.08170309662818909, 0.11488735675811768, -0.09362395107746124, 0.01690349355340004, 0.005723182111978531, -0.3566915988922119, -0.3285534381866455, -0.43511641025543213, 0.09954845160245895, -0.02294272929430008, 0.04954526573419571, -0.18490925431251526, 0.008004673756659031, 0.04042121022939682, -0.16270434856414795, 0.30021241307258606, -0.2769973874092102, -0.20640908181667328, 0.2458486258983612, -0.41263097524642944, -0.13000290095806122, -0.022877860814332962, -0.2272147536277771, 0.2172919511795044, -0.16981540620326996, -0.16544267535209656, -0.18532341718673706, 0.08822270482778549, -0.015033567324280739, 0.1486927717924118, 0.2058742493391037, 0.26893115043640137, 0.26583611965179443, -0.23605948686599731, -0.09753162413835526, -0.07932077348232269, 0.07264288514852524, 0.25099411606788635, -0.15088078379631042, -0.03963734954595566, -0.13389617204666138, 0.04524284973740578, 0.06644165515899658, -0.003557918593287468, 0.0808887779712677, 0.4724988639354706, -0.1506200134754181, 0.18278366327285767, -0.045532964169979095, -0.03206650912761688, 0.15129214525222778, -0.045781299471855164, 0.09559918940067291, 0.5500094890594482, 0.34252962470054626, -0.16533784568309784, -0.32508406043052673, -0.03960704803466797, -0.24351415038108826, -0.3144949972629547, 0.062186941504478455, 0.0960647314786911, 0.12116267532110214, -0.1034565418958664, -0.2240443229675293, -0.20562408864498138, -0.20656827092170715, 0.3943929374217987, 0.04856724664568901, -0.24830716848373413, -0.29553961753845215, -0.11838525533676147, 0.11688115447759628, -0.14832714200019836, 0.21672938764095306, 0.30220600962638855, -0.11366943269968033, -0.12458640336990356, -0.12345873564481735, -0.021486759185791016, 0.11926107108592987, 0.10992491990327835, -0.5207679271697998, -0.025884956121444702, 0.03764314949512482, 0.24395060539245605, -0.1858888417482376, 0.013813506811857224, -0.4543704092502594, 0.04841604456305504, 0.11238490045070648, 0.04144957661628723, -0.2794032394886017, 0.1919059157371521, 0.2624439299106598, 0.13354064524173737, -0.11594405770301819, 0.03319135680794716, 0.013683084398508072, -0.05306898057460785, -0.2860601544380188, 0.16871170699596405, 0.009578259661793709, -0.000029886141419410706, 0.18135155737400055, -0.26138269901275635, 0.21131983399391174, -0.211277037858963, 0.23644518852233887, 0.23318353295326233, 0.08428172767162323, 0.14432133734226227, 0.052607212215662, -0.047721073031425476, -0.07290776073932648, 0.0665460005402565, 0.5232717394828796, 0.04920424520969391, 0.06911847740411758, 0.11915614455938339, -0.43218502402305603, 0.19833502173423767, 0.23757591843605042, 0.3866678774356842, 0.23655077815055847, 0.010913286358118057, -0.020010612905025482, -0.5801274180412292, -0.0638907328248024, 0.20754474401474, 0.04924071580171585, -0.05330545827746391, -0.14945769309997559, 0.10450942814350128, -0.027860181406140327, -0.06320824474096298, 0.12987518310546875, 0.3515244126319885, -0.26623353362083435, 0.20793989300727844, -0.10407387465238571, 0.8796002864837646, 0.09995010495185852, 0.09899672865867615, 0.08033277094364166, 0.10712772607803345, -0.23973187804222107, -0.27133163809776306, 0.08231024444103241, -0.0723818838596344, -0.18444834649562836, -0.096070796251297, 0.16399241983890533, -0.20683833956718445, 0.19329330325126648, -0.4199965000152588, -0.0037036959547549486, 0.04917924106121063, 0.25834548473358154, -0.09118442982435226, 0.1919013410806656, -0.3752366304397583, -0.46672046184539795, -0.20771272480487823, 0.27334529161453247, 0.09239035844802856, -0.16405709087848663, 0.017593398690223694, -0.13844044506549835, 0.03537658229470253, -0.04602155461907387, -0.25916504859924316, -0.00042666681110858917, 0.12768352031707764, 0.03570396080613136, -0.206478551030159, 0.40653032064437866, -0.04354677349328995, -0.11724908649921417, 0.1820528507232666, 0.09953239560127258, -0.2683717608451843, -0.09750224649906158, -0.020564109086990356, 0.03188801184296608, -0.05286736786365509, 0.035240255296230316, 0.14126747846603394, -0.047487515956163406, -0.16631272435188293, 0.10998919606208801, 0.31735116243362427, -0.07405781745910645, 0.03973942995071411, 0.06319988518953323, 0.24912795424461365, -0.18681229650974274, 0.17168112099170685, 0.11979322135448456, -0.1591060310602188, -0.2572600245475769, 0.2249724417924881, 0.1863027811050415, -0.14453022181987762, 0.32035577297210693, 0.24007298052310944, 0.0795634537935257, -0.12175112962722778, 0.3371177017688751, 0.3055969476699829, -0.15997585654258728, -0.07011310756206512, 0.09315693378448486, -0.14687421917915344, -0.4498510956764221, -0.09331396967172623, 0.034628674387931824, -0.3159751892089844, -0.009215486235916615, 0.0206526517868042, -0.413745641708374, 0.12961779534816742, 0.15875044465065002, 0.11998121440410614, 0.2486945390701294, -0.18600177764892578, -0.13611385226249695, -0.037528231739997864, 0.3938542604446411, 0.25484710931777954, 0.22013361752033234, -0.03754439949989319, 0.05126393958926201, 0.07540267705917358, -0.02973826788365841, -0.5028820633888245, -0.059592463076114655, -0.08322039991617203, 0.10995373874902725, -0.023898068815469742, -0.2242814600467682, 0.09784457087516785, 0.07773222029209137, 0.25247567892074585, -0.18155692517757416, -0.23872393369674683, -0.2930739223957062, -0.03551609069108963, 0.0926002487540245, -0.18120163679122925, 0.22023072838783264, -0.062118012458086014, -0.1670973002910614, -0.27090129256248474, -0.2004375457763672, 0.19100381433963776, 0.1517881453037262, -0.07439151406288147, -0.32015088200569153, 0.04009059816598892, -0.16580265760421753, -0.028910305351018906, 0.01764148660004139, 0.08723873645067215, -0.062015414237976074, -0.17958639562129974, 0.060160230845212936, -0.17137829959392548, -0.28286075592041016, 0.26369622349739075, 0.40706098079681396, 0.3926977515220642, -0.06273475289344788, 0.2695823013782501, 0.20372693240642548, -0.13526226580142975, 0.3711172044277191, 0.42038169503211975, 0.0693485215306282, -0.06785042583942413, 0.03876158595085144, -0.003316354937851429, 0.4218071401119232, -0.23878352344036102, -0.042458001524209976, 0.19899892807006836, -0.34282079339027405, 0.37601789832115173, 0.34001749753952026, 0.4880691468715668, -0.21573545038700104, 0.04773569479584694, 0.14026430249214172, -0.1665828675031662, 0.003121219575405121, -0.16489505767822266, -0.1748732179403305, -0.008444186300039291, -0.02992546185851097, 0.25959837436676025, -0.08689486980438232, 0.3623686730861664, 0.3628045320510864, -0.010539919137954712, 0.3579200804233551, 0.34737157821655273, 0.0644371509552002, 0.4634145498275757, 0.03175074979662895, 0.3376133143901825, -0.22643086314201355, 0.1578003615140915, 0.029766742140054703, 0.0951082855463028, 0.3735412061214447, -0.26668691635131836, 0.09470945596694946, -0.41711580753326416, 0.11978764832019806, -0.0667710229754448, 0.13606718182563782, -0.04448637738823891, -0.1587398648262024, -0.43000173568725586, -0.25153520703315735, 0.013217423111200333, 0.19629164040088654, 0.1555584967136383, 0.05720849335193634, 0.31859761476516724, -0.15845976769924164, -0.08823376148939133, 0.07544959336519241, 0.31738555431365967, -0.34025129675865173, 0.07737453281879425, 0.33405473828315735, -0.06677524745464325, 0.18892218172550201, 0.3742090165615082, 0.17227640748023987, 0.0007235445082187653, -0.21773909032344818, 0.2968820631504059, -0.01629665493965149, -0.2134941667318344, -0.22385573387145996, -0.018162887543439865, 0.25130099058151245, 0.16889327764511108, 0.18273213505744934, 0.33206772804260254, -0.2838688790798187, -0.31624677777290344, 0.04583657532930374, 0.018900606781244278, 0.19207435846328735, -0.3468339741230011, 0.12027208507061005, 0.033121027052402496, -0.3202400505542755, -0.15611937642097473, -0.7729851603507996, -0.20742088556289673, 0.17104081809520721, -0.3408585786819458, 0.16198986768722534, -0.18506446480751038, 0.1439894735813141, 0.2897077798843384, 0.16817601025104523, 0.3038942515850067, 0.0024696476757526398, 0.19652728736400604, -0.34039098024368286, -0.416782408952713, 0.21734127402305603, 0.04834884777665138, -0.09966446459293365, -0.18522341549396515, 0.137393057346344, 0.42295384407043457, 0.17873698472976685, -0.027065783739089966, -0.08282847702503204, 0.152165025472641, 0.10657405853271484, -0.46667781472206116, 0.10193140804767609, 0.40868449211120605, 0.2326115220785141, 0.12239277362823486, -0.07411281764507294, 0.11584489047527313, -0.059250686317682266, 0.23644816875457764, -0.098933644592762, -0.2268044501543045, -0.13732239603996277, -0.30700039863586426, 0.20267054438591003, -0.2413332164287567, 0.39635035395622253, -0.48760786652565, -0.0856546089053154, -0.1607755422592163, 0.02367773838341236, 0.01672942191362381, -0.1385858654975891, 0.35423174500465393, 0.33916836977005005, -0.10721312463283539, 0.17651715874671936, 0.19817398488521576, 0.2596866190433502, 0.029495112597942352, 0.5444545149803162, -0.2679877281188965, 0.07260339707136154, -0.09927944839000702, 0.03218070790171623, -0.14982709288597107, 0.06999578326940536, -0.12004640698432922, -0.047308459877967834, 0.07790267467498779, -0.47823017835617065, 0.36054229736328125, 0.027108579874038696, -0.3054080903530121, -0.2823255658149719, 0.4641038775444031, -0.1790650486946106, 0.21217383444309235, -0.19484713673591614, 0.33105340600013733, 0.08095066994428635, 0.13243192434310913, -0.029613366350531578, 0.32205525040626526, -0.08720389008522034, -0.12965533137321472, -0.20194943249225616, 0.05238266661763191, 0.10417186468839645, -0.06486765295267105, -0.3130670189857483, -0.34227997064590454 ]
https://github.com/huggingface/datasets/issues/3285
Add IEMOCAP dataset
Hi @mariosasko . Thanks for your response. Sure, I will mail them and find out if they're open to this. Work on a script with manual download ? This is new to me, any guidelines would be helpful here.
## Adding a Dataset - **Name:** IEMOCAP - **Description:** acted, multimodal and multispeaker database - **Paper:** https://sail.usc.edu/iemocap/Busso_2008_iemocap.pdf - **Data:** https://sail.usc.edu/iemocap/index.html - **Motivation:** Useful multimodal dataset cc @anton-l Instructions to add a new dataset can be found [here](https://github.com/huggingface/datasets/blob/master/ADD_NEW_DATASET.md).
39
Add IEMOCAP dataset ## Adding a Dataset - **Name:** IEMOCAP - **Description:** acted, multimodal and multispeaker database - **Paper:** https://sail.usc.edu/iemocap/Busso_2008_iemocap.pdf - **Data:** https://sail.usc.edu/iemocap/index.html - **Motivation:** Useful multimodal dataset cc @anton-l Instructions to add a new dataset can be found [here](https://github.com/huggingface/datasets/blob/master/ADD_NEW_DATASET.md). Hi @mariosasko . Thanks for your response. Sure, I will mail them and find out if they're open to this. Work on a script with manual download ? This is new to me, any guidelines would be helpful here.
[ -0.3969154953956604, -0.09302140772342682, -0.16691555082798004, -0.02672746777534485, -0.051100149750709534, -0.06382941454648972, 0.41773343086242676, 0.09901118278503418, 0.1840798556804657, 0.225788414478302, -0.3469267189502716, 0.07419946044683456, -0.2861621379852295, 0.5310553312301636, 0.25026246905326843, 0.020621057599782944, 0.028656475245952606, 0.2210892140865326, -0.019393451511859894, -0.03422505781054497, -0.10757295042276382, 0.08233948796987534, 0.038876041769981384, -0.13915905356407166, -0.24162213504314423, 0.10521312803030014, -0.2594054341316223, 0.15838822722434998, -0.3712252974510193, -0.22189033031463623, 0.000294465571641922, 0.39211079478263855, 0.0019224472343921661, 0.28672969341278076, -0.00010137142817256972, -0.2679997682571411, -0.21151871979236603, -0.3301728665828705, -0.001690734177827835, 0.11318161338567734, -0.44387033581733704, 0.050261758267879486, -0.16275988519191742, -0.2590402066707611, -0.22123432159423828, 0.07579908519983292, -0.1932438760995865, -0.23038199543952942, 0.21203330159187317, 0.3563753068447113, 0.2751033306121826, -0.028376618400216103, 0.05478178337216377, -0.17529962956905365, 0.3194936513900757, 0.3267853260040283, -0.08098199218511581, 0.10517068207263947, 0.23757804930210114, -0.03336809575557709, -0.0797811821103096, 0.35421252250671387, -0.1636052280664444, 0.04468192905187607, 0.03781469166278839, 0.08313087373971939, 0.09441975504159927, -0.20074711740016937, 0.15449869632720947, 0.34090057015419006, 0.6211658120155334, -0.4425307810306549, -0.15083856880664825, 0.14409944415092468, 0.3110227882862091, -0.23126882314682007, 0.0633678138256073, 0.18114405870437622, 0.21279533207416534, 0.158065527677536, -0.008390235714614391, -0.16277511417865753, -0.2060202807188034, -0.05241602659225464, -0.009936302900314331, 0.0917358547449112, -0.28494980931282043, -0.22910770773887634, 0.014037568122148514, -0.174932599067688, -0.1798776388168335, 0.18177762627601624, -0.0399346761405468, 0.06435921043157578, 0.06170967221260071, -0.269206166267395, -0.11333590000867844, 0.19715099036693573, 0.0839744433760643, 0.18544316291809082, 0.10266920924186707, 0.03348798304796219, 0.18112485110759735, 0.07801880687475204, 0.06016791611909866, -0.3585987091064453, 0.06265303492546082, -0.3617115318775177, 0.3205794095993042, 0.21564385294914246, -0.03521993011236191, 0.12190425395965576, -0.03800812363624573, 0.000251078512519598, 0.006010767072439194, 0.01388548593968153, 0.16577278077602386, -0.23071147501468658, -0.3142763376235962, -0.1014426201581955, 0.08788501471281052, -0.2844668924808502, 0.019430242478847504, 0.2533009350299835, -0.13496236503124237, 0.2052134871482849, 0.026376284658908844, 0.3483768105506897, -0.19784599542617798, -0.3751407265663147, -0.01969965174794197, 0.23734813928604126, -0.1189156174659729, 0.21365998685359955, 0.32418981194496155, 0.3455127775669098, -0.07745347172021866, -0.08580033481121063, 0.010839797556400299, -0.14460645616054535, 0.12125052511692047, -0.06488639116287231, 0.028565406799316406, 0.02250966802239418, 0.3870973289012909, -0.034697458148002625, -0.2153736799955368, -0.1501205414533615, -0.2511586844921112, -0.17446011304855347, 0.10594101995229721, -0.14929142594337463, -0.31032058596611023, 0.34672898054122925, 0.10381172597408295, -0.2688966393470764, -0.0035395771265029907, 0.3086498975753784, -0.10006780177354813, -0.20269620418548584, -0.0017691552639007568, 0.34773117303848267, -0.3861079514026642, -0.17412729561328888, 0.07097506523132324, 0.5280354619026184, -0.1576307862997055, -0.09108733385801315, -0.20313668251037598, -0.1035575419664383, -0.21319317817687988, -0.016615428030490875, 0.07966668158769608, 0.22502848505973816, -0.16040605306625366, 0.10760059952735901, 0.15333910286426544, -0.3023418188095093, -0.1417745053768158, -0.11519178748130798, -0.22637560963630676, -0.1752481311559677, 0.4996742606163025, 0.3168559968471527, 0.38913610577583313, -0.366093248128891, 0.07307474315166473, 0.4515550136566162, -0.12329705059528351, 0.14182902872562408, 0.0547943077981472, -0.21704240143299103, -0.26804018020629883, 0.3671303987503052, 0.10578405857086182, -0.1512223780155182, 0.11677248775959015, -0.03847053647041321, 0.11871194839477539, -0.07339955866336823, 0.38174954056739807, 0.009771870449185371, 0.2801235616207123, 0.12264542281627655, -0.13013145327568054, -0.5039898157119751, -0.14747479557991028, -0.11421595513820648, -0.09692994505167007, 0.22684518992900848, -0.06770116090774536, -0.5169662833213806, -0.358155757188797, -0.20252075791358948, -0.22711102664470673, 0.017387084662914276, 0.2786126732826233, 0.32755833864212036, -0.051622938364744186, -0.05572208762168884, -0.19063720107078552, -0.13711461424827576, 0.2103082686662674, 0.011042642407119274, -0.17708609998226166, 0.17925213277339935, -0.1561465859413147, -0.07449540495872498, 0.14330551028251648, 0.18069496750831604, -0.16908982396125793, -0.01997818797826767, 0.16382119059562683, 0.3702625036239624, -0.016447661444544792, 0.34012722969055176, 0.2754345238208771, 0.3599399924278259, 0.08305443078279495, -0.4316743016242981, 0.49205270409584045, -0.13617777824401855, 0.08033444732427597, -0.2606782913208008, -0.00676485151052475, 0.3448168933391571, 0.14528687298297882, -0.22781914472579956, 0.0596054345369339, 0.0807916447520256, 0.1998196542263031, -0.2511596381664276, -0.08425818383693695, -0.36443501710891724, -0.331030011177063, 0.186565101146698, -0.11056871712207794, -0.12678369879722595, -0.17756162583827972, 0.1934748888015747, 0.40011066198349, 0.05794515088200569, 0.35492902994155884, 0.0493723526597023, -0.3316982090473175, -0.015929168090224266, -0.14744263887405396, -0.12267932295799255, 0.3348826766014099, 0.3721969425678253, 0.1259937733411789, -0.0813448503613472, 0.117843858897686, -0.16575178503990173, 0.28914210200309753, -0.17150366306304932, -0.21352212131023407, 0.20599365234375, -0.048715077340602875, -0.1479041427373886, -0.41523778438568115, -0.3969702124595642, -0.1524871438741684, -0.22105184197425842, -0.26184406876564026, -0.2738454043865204, 0.04930888116359711, -0.28158608078956604, -0.0019770972430706024, -0.4425511658191681, 0.12422826886177063, 0.12599103152751923, 0.22459794580936432, 0.2045457810163498, -0.19708488881587982, 0.043625980615615845, 0.018513411283493042, 0.45397818088531494, 0.005102271214127541, 0.11791948229074478, 0.22810906171798706, -0.07317344844341278, -0.06589141488075256, 0.28111544251441956, 0.3851020634174347, 0.12615665793418884, 0.42428058385849, -0.4298039674758911, 0.17766770720481873, -0.24713575839996338, -0.08361206948757172, 0.1644076704978943, -0.06864853948354721, -0.1025957390666008, 0.1379185914993286, -0.008129097521305084, 0.21183739602565765, -0.12920646369457245, 0.23875005543231964, -0.09554373472929001, 0.06492362171411514, -0.009346399456262589, -0.10829348862171173, -0.10076668113470078, -0.08227188885211945, -0.5480561256408691, -0.36920639872550964, -0.4141218066215515, 0.1445549875497818, 0.08802944421768188, 0.12813375890254974, -0.15605363249778748, 0.037706345319747925, 0.02198854088783264, -0.11942523717880249, 0.4207764267921448, -0.20958882570266724, -0.15020693838596344, 0.2653988003730774, -0.3291862905025482, -0.193235844373703, 0.13852615654468536, -0.24518007040023804, 0.14510197937488556, -0.04474630579352379, -0.14385336637496948, -0.13280625641345978, 0.08373011648654938, 0.028175536543130875, 0.0513855442404747, 0.31618842482566833, 0.3464291989803314, 0.2921847701072693, -0.20100684463977814, -0.04676523804664612, -0.03654906526207924, 0.15969255566596985, 0.13467806577682495, -0.05755733698606491, -0.08245151489973068, 0.18434405326843262, -0.07017308473587036, 0.1292095184326172, -0.019815556704998016, 0.031026486307382584, 0.4420987665653229, -0.18710623681545258, 0.2990175783634186, -0.04832867532968521, -0.11026458442211151, 0.10501272231340408, -0.016316398978233337, 0.08302795886993408, 0.5184850692749023, 0.21400421857833862, -0.14707599580287933, -0.3648499548435211, 0.1239800900220871, -0.21493536233901978, -0.315142422914505, 0.12488286197185516, 0.15080010890960693, 0.09782478958368301, -0.10060477256774902, -0.1821918785572052, -0.14052385091781616, -0.0927133709192276, 0.35250788927078247, 0.053273044526576996, -0.19859737157821655, -0.2715546488761902, -0.17330323159694672, 0.23605884611606598, -0.1722855567932129, 0.26451924443244934, 0.3157859742641449, -0.07372105121612549, -0.12214037775993347, -0.2228916883468628, -0.062389492988586426, 0.10955964773893356, 0.12598934769630432, -0.507693886756897, -0.05282562971115112, 0.18900638818740845, 0.3352877199649811, -0.17043372988700867, -0.047563742846250534, -0.502397358417511, 0.074913389980793, 0.25794386863708496, -0.11530449986457825, -0.3378812074661255, 0.1898742914199829, 0.4515407979488373, 0.21636059880256653, -0.04479984939098358, 0.027939386665821075, -0.021109163761138916, -0.18264895677566528, -0.2839656472206116, 0.24400243163108826, -0.04198257997632027, -0.11451181769371033, 0.07836440205574036, -0.24322889745235443, 0.2750229835510254, -0.14056521654129028, 0.2692432403564453, 0.12120413780212402, 0.08759903162717819, 0.25806909799575806, 0.21967074275016785, -0.09358540177345276, -0.10519462823867798, 0.1985119879245758, 0.6692526340484619, -0.12543663382530212, -0.000855959951877594, 0.06761497259140015, -0.5224432945251465, 0.29469719529151917, 0.2948235273361206, 0.3952290117740631, 0.14199386537075043, 0.0494917668402195, 0.008031778037548065, -0.4998612403869629, -0.05042246729135513, 0.3076150715351105, -0.05225459486246109, -0.11593586951494217, -0.348508358001709, 0.06983409076929092, -0.02580174431204796, -0.057363856583833694, 0.11035917699337006, 0.3450300097465515, -0.2690795660018921, 0.11278250068426132, -0.16915354132652283, 0.9367128014564514, 0.053109291940927505, 0.05004796013236046, 0.11397291719913483, 0.05109322816133499, -0.18994329869747162, -0.13772279024124146, -0.059471920132637024, -0.09217742085456848, -0.13645561039447784, -0.11009390652179718, 0.05062059685587883, -0.10893736034631729, 0.24313654005527496, -0.48117783665657043, 0.11725898087024689, -0.0056699663400650024, 0.1993728131055832, -0.04608675837516785, 0.3323899209499359, -0.32990798354148865, -0.4313538670539856, -0.06544966250658035, 0.23005864024162292, 0.08589954674243927, -0.1674100160598755, -0.015564891509711742, -0.21045008301734924, 0.07212705910205841, -0.11481469124555588, -0.13677194714546204, 0.08559387922286987, -0.07448947429656982, -0.01632409542798996, -0.3292805552482605, 0.38782376050949097, 0.08345025777816772, -0.08741909265518188, 0.12069989740848541, 0.09545933455228806, -0.12453426420688629, -0.1334008276462555, 0.06276871263980865, 0.06697137653827667, 0.08397132903337479, 0.02463396266102791, 0.2560868263244629, -0.0345720611512661, -0.1572573333978653, 0.1055845320224762, 0.2551935017108917, 0.02090362459421158, 0.11420270800590515, -0.02765130251646042, 0.3773273825645447, -0.2825302183628082, 0.04289203882217407, 0.1881522387266159, -0.19302983582019806, -0.22426480054855347, 0.20690488815307617, 0.26897716522216797, -0.17704759538173676, 0.36771494150161743, 0.13371641933918, 0.025269433856010437, -0.2038688361644745, 0.35165032744407654, 0.2534986138343811, -0.09137695282697678, -0.02573411911725998, 0.09004135429859161, -0.13379636406898499, -0.4213102161884308, -0.1307820975780487, 0.025064382702112198, -0.40616199374198914, -0.011322339065372944, 0.12006814032793045, -0.2700435519218445, 0.1043577715754509, 0.1896638423204422, 0.15689128637313843, 0.19540590047836304, -0.08432520925998688, -0.15205442905426025, -0.105950728058815, 0.33336400985717773, 0.311699777841568, 0.2776496112346649, -0.010159840807318687, 0.08603191375732422, 0.14026902616024017, -0.00794321857392788, -0.49425220489501953, -0.04670420289039612, 0.03798547387123108, 0.15195433795452118, 0.2633664011955261, -0.14885124564170837, 0.10988351702690125, 0.10516521334648132, 0.23042121529579163, -0.23079203069210052, -0.3326526880264282, -0.2402125597000122, -0.0215274877846241, 0.1251329630613327, -0.24560418725013733, 0.09291727840900421, 0.07343079894781113, -0.2551422715187073, -0.3645886778831482, -0.07657504081726074, 0.13069172203540802, 0.035574592649936676, -0.16244834661483765, -0.2611498236656189, -0.08586263656616211, -0.17795950174331665, -0.05972274765372276, 0.01837006025016308, -0.0662471354007721, -0.05085580050945282, -0.13535234332084656, 0.17243225872516632, -0.24160468578338623, -0.33120471239089966, 0.25593626499176025, 0.28388646245002747, 0.44380277395248413, -0.0682234913110733, 0.25770488381385803, 0.06708507239818573, -0.15634652972221375, 0.3285960555076599, 0.5015301704406738, 0.26657634973526, -0.10610966384410858, 0.043594010174274445, 0.12480133026838303, 0.4240201413631439, -0.32345157861709595, 0.12941402196884155, 0.20474345982074738, -0.2832027077674866, 0.33465495705604553, 0.3512764275074005, 0.49112144112586975, -0.21740271151065826, 0.11550073325634003, 0.1312122941017151, -0.0954849049448967, 0.07212771475315094, -0.10896813869476318, -0.11001266539096832, -0.06894098222255707, 0.023157130926847458, 0.2522418200969696, 0.1292557418346405, 0.2782497704029083, 0.2102544605731964, -0.13030549883842468, 0.3329743444919586, 0.1922234296798706, 0.11275653541088104, 0.3027993440628052, -0.23114533722400665, 0.5183586478233337, -0.057874083518981934, 0.14802968502044678, 0.030635349452495575, 0.20430579781532288, 0.4271584451198578, -0.1665615290403366, 0.03947122395038605, -0.38952600955963135, 0.16996856033802032, -0.03483257442712784, 0.1743539571762085, -0.05488475784659386, -0.18390163779258728, -0.4072493016719818, -0.17035791277885437, -0.024280551820993423, 0.19571006298065186, 0.10563259571790695, 0.12219114601612091, 0.3140333592891693, -0.2377079576253891, -0.14874520897865295, -0.06761030107736588, 0.3152196407318115, -0.4716017246246338, 0.11601580679416656, 0.40915215015411377, -0.0710657387971878, 0.25982144474983215, 0.34883642196655273, 0.235458642244339, 0.12618838250637054, -0.16017283499240875, 0.3318312466144562, 0.0782814472913742, -0.18388134241104126, -0.16562508046627045, 0.01691379025578499, 0.26725584268569946, 0.2009887993335724, 0.16985207796096802, 0.2937999963760376, -0.29109105467796326, -0.29212287068367004, 0.08135630935430527, 0.012205667793750763, 0.11780418455600739, -0.374409556388855, 0.18715211749076843, -0.024891134351491928, -0.413161039352417, -0.11395371705293655, -0.7682317495346069, -0.23133544623851776, 0.14469152688980103, -0.29627272486686707, 0.11897283047437668, -0.21955804526805878, 0.13445734977722168, 0.3375352621078491, 0.152367502450943, 0.3179735839366913, 0.09286383539438248, 0.08503109961748123, -0.28682661056518555, -0.6061638593673706, 0.16452831029891968, 0.11329174041748047, -0.17031556367874146, -0.17526273429393768, 0.25725826621055603, 0.4213064908981323, 0.16744758188724518, 0.06527626514434814, -0.17482353746891022, 0.20283252000808716, 0.11931430548429489, -0.5030267238616943, 0.07637341320514679, 0.3936766982078552, 0.20197941362857819, 0.1253422498703003, -0.11048145592212677, 0.06786803156137466, -0.184061199426651, 0.21607258915901184, -0.1687641590833664, -0.20966549217700958, -0.16356654465198517, -0.2101058065891266, 0.3601456582546234, -0.21710756421089172, 0.590467095375061, -0.4328199625015259, -0.08533439040184021, -0.10013025999069214, 0.17104174196720123, -0.03344972804188728, -0.016349337995052338, 0.4173825979232788, 0.3864506483078003, -0.14464761316776276, 0.19280734658241272, 0.018101505935192108, 0.28542524576187134, 0.00007930397987365723, 0.4753415882587433, -0.3610517680644989, 0.06929811835289001, -0.05938379839062691, -0.0007051336579024792, -0.11488480120897293, 0.018396377563476562, -0.154285728931427, 0.014163115993142128, -0.04878932982683182, -0.3595838248729706, 0.4191324710845947, 0.06618855148553848, -0.24090208113193512, -0.3133779764175415, 0.5093717575073242, -0.2507261037826538, 0.15839122235774994, -0.2099379003047943, 0.35027989745140076, 0.07781083881855011, 0.07835780829191208, -0.10056950151920319, 0.39997610449790955, -0.2176843285560608, -0.12042741477489471, -0.16216759383678436, 0.10634748637676239, 0.040180474519729614, -0.06464724987745285, -0.43949973583221436, -0.41677039861679077 ]
https://github.com/huggingface/datasets/issues/3285
Add IEMOCAP dataset
> Thanks for your response. Sure, I will mail them and find out if they're open to this. It's best to leave this part to us because we have to explain how login would work and (potentially) set up a custom verification for the dataset. > Work on a script with manual download ? This is new to me, any guidelines would be helpful here. For instance, this is one of the scripts with manual download: https://huggingface.co/datasets/arxiv_dataset. Compared to the standard dataset, it has the `manual_download_instructions` attribute and uses `dl_manager.manual_dir` (derived from `load_dataset(..., data_dir="path/to/data")`) to access the dataset's data files.
## Adding a Dataset - **Name:** IEMOCAP - **Description:** acted, multimodal and multispeaker database - **Paper:** https://sail.usc.edu/iemocap/Busso_2008_iemocap.pdf - **Data:** https://sail.usc.edu/iemocap/index.html - **Motivation:** Useful multimodal dataset cc @anton-l Instructions to add a new dataset can be found [here](https://github.com/huggingface/datasets/blob/master/ADD_NEW_DATASET.md).
100
Add IEMOCAP dataset ## Adding a Dataset - **Name:** IEMOCAP - **Description:** acted, multimodal and multispeaker database - **Paper:** https://sail.usc.edu/iemocap/Busso_2008_iemocap.pdf - **Data:** https://sail.usc.edu/iemocap/index.html - **Motivation:** Useful multimodal dataset cc @anton-l Instructions to add a new dataset can be found [here](https://github.com/huggingface/datasets/blob/master/ADD_NEW_DATASET.md). > Thanks for your response. Sure, I will mail them and find out if they're open to this. It's best to leave this part to us because we have to explain how login would work and (potentially) set up a custom verification for the dataset. > Work on a script with manual download ? This is new to me, any guidelines would be helpful here. For instance, this is one of the scripts with manual download: https://huggingface.co/datasets/arxiv_dataset. Compared to the standard dataset, it has the `manual_download_instructions` attribute and uses `dl_manager.manual_dir` (derived from `load_dataset(..., data_dir="path/to/data")`) to access the dataset's data files.
[ -0.1976325660943985, -0.1684258133172989, -0.06367644667625427, 0.017522871494293213, 0.04931339994072914, -0.07717625796794891, 0.3879881501197815, -0.020906683057546616, 0.2226245254278183, 0.15890434384346008, -0.3142952024936676, 0.12450329214334488, -0.2589573264122009, 0.4931377172470093, 0.3352164626121521, 0.06323477625846863, -0.06904957443475723, -0.07716168463230133, 0.03773713484406471, -0.09115852415561676, -0.06326980888843536, -0.06942663341760635, -0.08409952372312546, -0.08807000517845154, -0.014076774008572102, 0.02468789741396904, -0.2020876705646515, 0.35204997658729553, -0.26455700397491455, -0.3052985370159149, 0.04576150327920914, 0.5268148183822632, 0.13642030954360962, 0.380705326795578, -0.00010322402522433549, -0.25667041540145874, -0.052897557616233826, -0.3228548467159271, -0.11854046583175659, -0.16163967549800873, -0.5238993763923645, -0.002176903188228607, -0.02081708423793316, -0.3468746542930603, -0.11609867215156555, -0.0025780750438570976, -0.029383370652794838, -0.24356059730052948, 0.2817179560661316, 0.21647526323795319, 0.23821185529232025, 0.08757218718528748, 0.0708472728729248, -0.11715195327997208, 0.22406473755836487, 0.3444558382034302, -0.056649766862392426, 0.3198430836200714, 0.320972740650177, 0.05103752762079239, -0.024601556360721588, 0.2910274565219879, -0.14743582904338837, 0.011705022305250168, 0.2757401168346405, 0.13769392669200897, -0.12024029344320297, -0.3202724754810333, 0.0580485537648201, 0.446871817111969, 0.5915086269378662, -0.5359812378883362, -0.27137723565101624, 0.11462380737066269, 0.2571251392364502, -0.04383833333849907, 0.10807620733976364, 0.2229529768228531, 0.11742241680622101, 0.1256692111492157, -0.15802453458309174, -0.205072820186615, -0.2792186141014099, 0.026123475283384323, 0.02037447690963745, -0.05715182423591614, -0.1541009396314621, -0.1578650176525116, 0.17872117459774017, -0.11259463429450989, -0.2770734131336212, 0.14540067315101624, 0.11167587339878082, 0.1842919886112213, 0.19467376172542572, -0.18690593540668488, -0.05444628745317459, 0.23517704010009766, 0.19949716329574585, 0.331026554107666, 0.07357992231845856, 0.04751870781183243, -0.0525386668741703, 0.12956959009170532, -0.031727857887744904, -0.2770078182220459, 0.005475744605064392, -0.32499927282333374, 0.4319000840187073, 0.43090832233428955, -0.016060996800661087, 0.1148209422826767, -0.1281747967004776, 0.005869805812835693, 0.014583855867385864, -0.0023720674216747284, 0.0822768360376358, -0.225463405251503, -0.0044425297528505325, -0.06164565682411194, 0.14898163080215454, -0.1874992549419403, -0.07643517851829529, 0.2098063826560974, -0.13953933119773865, 0.0460447333753109, 0.1335286796092987, 0.4149436354637146, -0.10955986380577087, -0.2989902198314667, 0.024263417348265648, 0.23794329166412354, -0.16521364450454712, 0.20746681094169617, 0.3909165859222412, 0.2631654441356659, -0.04965145140886307, -0.13343271613121033, 0.11734859645366669, -0.09298737347126007, 0.24448296427726746, -0.09189566969871521, 0.14620190858840942, 0.11947695910930634, 0.40164539217948914, -0.002513699233531952, -0.1967032551765442, -0.23689505457878113, -0.2346499264240265, -0.1512664556503296, 0.19296222925186157, -0.23497600853443146, -0.09229711443185806, 0.278757244348526, -0.015804588794708252, -0.28318271040916443, -0.08906237035989761, 0.0811953991651535, -0.17017081379890442, -0.17203134298324585, -0.1312030553817749, 0.2764289677143097, -0.24412545561790466, -0.25447705388069153, 0.14833541214466095, 0.6781429648399353, -0.1788543164730072, 0.054914191365242004, -0.1871156543493271, -0.13120999932289124, -0.17730942368507385, 0.06922829151153564, 0.01802583411335945, 0.15538910031318665, -0.11490852385759354, 0.07544912397861481, 0.11097466945648193, -0.5927901864051819, -0.15590447187423706, -0.0659443736076355, -0.1140161007642746, -0.08090739697217941, 0.4672364294528961, 0.2093617171049118, 0.35436519980430603, -0.4699808657169342, -0.02318131923675537, 0.3799635171890259, -0.09765388071537018, 0.13530470430850983, -0.12100982666015625, -0.3332984149456024, -0.252920925617218, 0.3960062861442566, 0.1864425390958786, -0.3389749825000763, 0.15258489549160004, -0.19678464531898499, 0.18183816969394684, -0.07233594357967377, 0.29125434160232544, -0.11702865362167358, 0.1545640528202057, 0.10374759137630463, -0.09925155341625214, -0.27119824290275574, -0.24851152300834656, 0.06328211724758148, -0.08188897371292114, 0.3185347020626068, -0.15114252269268036, -0.48412400484085083, -0.2892688512802124, -0.22072336077690125, -0.17334561049938202, -0.009806390851736069, 0.2109929472208023, 0.34528109431266785, -0.006803244352340698, 0.11962918937206268, -0.24179044365882874, -0.03445656597614288, -0.010519485920667648, 0.10319656878709793, -0.4642118513584137, 0.10717073082923889, -0.11134185642004013, 0.07193094491958618, -0.012184539809823036, 0.21762380003929138, -0.21863362193107605, -0.1566467136144638, 0.20986828207969666, 0.4024135172367096, 0.056947335600852966, 0.38829368352890015, 0.3090576231479645, 0.5236165523529053, 0.19154910743236542, -0.40061402320861816, 0.4709201157093048, -0.16768087446689606, 0.172231987118721, -0.2133636176586151, -0.18860092759132385, 0.3207131028175354, -0.06067045405507088, -0.19854259490966797, 0.2029254287481308, 0.10234355926513672, 0.2361903190612793, -0.25979751348495483, -0.23682838678359985, -0.33306220173835754, -0.23952792584896088, 0.17011138796806335, -0.1659463346004486, -0.22441570460796356, -0.30158644914627075, 0.13051572442054749, 0.2815515398979187, 0.08909960091114044, 0.24756276607513428, -0.03204133361577988, -0.3158792555332184, 0.09585250914096832, -0.0640590563416481, 0.05025433376431465, 0.26280415058135986, 0.3320058584213257, 0.15193764865398407, 0.11855974048376083, 0.02284257672727108, -0.21552959084510803, 0.30942997336387634, -0.1156771183013916, -0.29725152254104614, 0.13286229968070984, -0.1465999186038971, 0.05159268155694008, -0.2338109314441681, -0.3478030562400818, -0.1313234567642212, -0.21769699454307556, -0.42857062816619873, -0.3046225607395172, 0.013649215921759605, -0.3276859223842621, -0.14974536001682281, -0.4673313796520233, 0.05548150837421417, 0.0102018341422081, 0.098153255879879, 0.19844169914722443, -0.23463861644268036, -0.015337636694312096, -0.05876807123422623, 0.4139854311943054, -0.1392839401960373, -0.036714062094688416, 0.143207386136055, -0.13162371516227722, 0.023134954273700714, 0.18897005915641785, 0.5069562196731567, 0.12173520028591156, 0.5541546940803528, -0.422160804271698, 0.1453382968902588, -0.20832805335521698, -0.15730085968971252, 0.11739099770784378, -0.09511718153953552, -0.07105986028909683, 0.1300981342792511, -0.02976050227880478, 0.37549763917922974, -0.00976217444986105, 0.177973672747612, -0.08287209272384644, 0.09945876896381378, -0.017648300155997276, -0.11610008776187897, -0.20436422526836395, -0.15994282066822052, -0.6270091533660889, -0.40285131335258484, -0.37225863337516785, 0.12275208532810211, 0.13985581696033478, 0.17714473605155945, -0.009733268059790134, -0.014931507408618927, 0.17288781702518463, -0.0559043325483799, 0.38809457421302795, -0.18657922744750977, -0.15198567509651184, 0.22641626000404358, -0.3039664924144745, -0.2754429876804352, 0.2018829882144928, -0.15845544636249542, 0.24679993093013763, 0.11026902496814728, -0.2547765076160431, -0.3259902000427246, 0.06481684744358063, 0.017509210854768753, 0.07790684700012207, 0.3397800922393799, 0.431223064661026, 0.2177170366048813, -0.15466472506523132, 0.08404117077589035, -0.10673984885215759, 0.20179679989814758, 0.17376074194908142, -0.09871866554021835, 0.01779904216527939, 0.2479844093322754, 0.014839686453342438, 0.3313101530075073, -0.0007982440292835236, 0.12955521047115326, 0.28823935985565186, -0.14398007094860077, 0.2774878442287445, 0.05860593914985657, -0.12741191685199738, 0.1410815417766571, -0.03440806269645691, 0.09877896308898926, 0.44514304399490356, 0.15766093134880066, -0.12679089605808258, -0.36709362268447876, 0.08198578655719757, -0.30515143275260925, -0.4524599015712738, 0.20179802179336548, 0.04255426675081253, 0.040441010147333145, -0.04758038371801376, -0.0948113277554512, -0.11407507956027985, -0.20315518975257874, 0.2663152515888214, 0.3161603808403015, -0.147721529006958, -0.1618458330631256, -0.0840730220079422, 0.2588604986667633, -0.24379810690879822, 0.3376913070678711, 0.25629130005836487, -0.09318026155233383, -0.03961484879255295, -0.3114734888076782, 0.06702066212892532, 0.04166761040687561, 0.06603511422872543, -0.5781225562095642, 0.03516034781932831, 0.266705185174942, 0.16792534291744232, -0.3163118362426758, -0.03202594816684723, -0.5297605991363525, 0.07314132899045944, 0.28042271733283997, -0.0938604474067688, -0.32237544655799866, 0.038372449576854706, 0.29581236839294434, 0.12079878896474838, 0.0183473639190197, -0.01012148056179285, 0.04515012726187706, -0.2610640823841095, -0.33342137932777405, 0.1785401999950409, -0.1816176027059555, -0.2632947266101837, -0.19386063516139984, -0.15472431480884552, 0.23525072634220123, 0.03660234808921814, 0.40679216384887695, 0.24065642058849335, 0.08736272156238556, 0.14823763072490692, 0.10350576043128967, 0.16665029525756836, -0.02961026132106781, 0.2094963639974594, 0.5911563634872437, -0.17208008468151093, 0.024745121598243713, 0.009469264186918736, -0.6265850067138672, 0.21621648967266083, 0.41763192415237427, 0.33370015025138855, -0.025910943746566772, 0.10108815133571625, -0.012440696358680725, -0.6068965792655945, -0.055198799818754196, 0.25015950202941895, -0.1236528530716896, -0.24433082342147827, -0.468061625957489, 0.049165625125169754, -0.05090454965829849, -0.1979442834854126, 0.09671464562416077, 0.47886693477630615, -0.3776344060897827, 0.15416325628757477, -0.04884956032037735, 1.113705039024353, -0.04625987261533737, 0.20294129848480225, 0.14404726028442383, 0.018030904233455658, -0.11566465348005295, -0.1951749175786972, -0.14674966037273407, -0.20596465468406677, -0.07097534090280533, -0.14167697727680206, -0.001417204737663269, -0.11683883517980576, 0.1652664989233017, -0.541925847530365, 0.0828646570444107, -0.02017376199364662, 0.13086377084255219, -0.08357664942741394, 0.5503522753715515, -0.27360284328460693, -0.43774834275245667, -0.0134328193962574, 0.18195727467536926, 0.2625015079975128, -0.18260352313518524, -0.04517540708184242, -0.20773014426231384, -0.04314896836876869, -0.05262745916843414, -0.17085711658000946, 0.13343292474746704, -0.07838939875364304, -0.08055376261472702, -0.31742146611213684, 0.3866492509841919, 0.28500157594680786, 0.07137033343315125, 0.2052566409111023, 0.12906183302402496, -0.23154443502426147, -0.16050803661346436, 0.03651229664683342, -0.01537137757986784, 0.22933699190616608, -0.04432256892323494, 0.4814950227737427, -0.11978305876255035, -0.16998976469039917, 0.07872281968593597, 0.1871764212846756, 0.10214535892009735, 0.03583487868309021, 0.03203529492020607, 0.43443620204925537, -0.40781617164611816, 0.007002633064985275, 0.14696455001831055, -0.2896477282047272, -0.0442594550549984, 0.17497219145298004, 0.19284826517105103, -0.09164290875196457, 0.5662813782691956, 0.1366197019815445, -0.04283718764781952, -0.1061561107635498, 0.2523658871650696, 0.17213180661201477, -0.006425485014915466, 0.0457010418176651, 0.09486110508441925, -0.08252976834774017, -0.3923412561416626, -0.05829261988401413, -0.04923968017101288, -0.5093322396278381, -0.025476664304733276, 0.12452695518732071, -0.1584991216659546, 0.126262366771698, 0.11615516245365143, 0.1635187715291977, -0.0757027342915535, -0.11248989403247833, -0.24409739673137665, -0.09775693714618683, 0.3199986219406128, 0.336277574300766, 0.21244798600673676, -0.005091991275548935, 0.09322838485240936, 0.14347368478775024, 0.00015558116137981415, -0.4779467284679413, 0.13853856921195984, 0.0775628313422203, 0.002525612711906433, 0.37810462713241577, -0.017955243587493896, 0.2802059054374695, -0.03841209411621094, 0.18068547546863556, -0.2238340824842453, -0.43012580275535583, -0.18802255392074585, -0.146158367395401, 0.16332842409610748, -0.29498347640037537, -0.05544627457857132, 0.14402417838573456, -0.25135892629623413, -0.32599252462387085, -0.041941266506910324, 0.17390134930610657, 0.048949725925922394, -0.11972542107105255, -0.15923769772052765, -0.1728232502937317, 0.04251783341169357, -0.06679835915565491, 0.17091847956180573, -0.06819044053554535, 0.026946954429149628, -0.041835419833660126, 0.12109286338090897, -0.3626926839351654, -0.38765063881874084, 0.3871850073337555, 0.2993064820766449, 0.5341612696647644, -0.016355086117982864, 0.32460951805114746, 0.15393267571926117, -0.037182748317718506, 0.20686635375022888, 0.4428347051143646, 0.2988259792327881, -0.18661510944366455, 0.014248723164200783, 0.06520313769578934, 0.32503512501716614, -0.20174488425254822, 0.17066922783851624, 0.1633938103914261, -0.09051060676574707, 0.2978290617465973, 0.36265355348587036, 0.46581873297691345, -0.06512453407049179, 0.028820600360631943, -0.024021726101636887, 0.12091410905122757, 0.035404399037361145, -0.12424063682556152, -0.30230632424354553, -0.2298702895641327, 0.029880596324801445, 0.09363247454166412, 0.19273144006729126, 0.24601319432258606, 0.039373889565467834, -0.09558407217264175, 0.2551630437374115, 0.09874755889177322, 0.14052237570285797, 0.31460753083229065, -0.41831648349761963, 0.3792150914669037, 0.06218433380126953, 0.16549988090991974, 0.08948866277933121, 0.05776367336511612, 0.48449382185935974, -0.05511683598160744, 0.07314851880073547, -0.40671709179878235, 0.12067599594593048, 0.1153026819229126, 0.10076384246349335, -0.07620111107826233, -0.25978580117225647, -0.3636851906776428, -0.22766296565532684, -0.11342695355415344, -0.012061744928359985, 0.06275483965873718, 0.1698600947856903, 0.2735138535499573, -0.36519819498062134, -0.14450937509536743, -0.1363992691040039, 0.3456187844276428, -0.40224725008010864, 0.16215486824512482, 0.4456560015678406, -0.02089162915945053, 0.25266188383102417, 0.28916630148887634, 0.34727683663368225, 0.1706090122461319, -0.12975354492664337, 0.4433732032775879, 0.1383403241634369, -0.04749754071235657, -0.14662156999111176, 0.11328555643558502, 0.29655927419662476, 0.28015848994255066, 0.24671946465969086, 0.24078723788261414, -0.23209814727306366, -0.2804771959781647, 0.023111820220947266, -0.08726459741592407, 0.09458062052726746, -0.2104991376399994, 0.22057794034481049, 0.013153687119483948, -0.3635708689689636, -0.11741813272237778, -0.7062492966651917, -0.16901883482933044, 0.21932728588581085, -0.215533047914505, 0.20485645532608032, -0.24122118949890137, 0.11842691898345947, 0.37760788202285767, 0.33108440041542053, 0.42383337020874023, 0.17664438486099243, -0.02405194193124771, -0.25694650411605835, -0.7594287395477295, 0.20205369591712952, 0.16152191162109375, -0.2622400224208832, -0.21152986586093903, 0.3564881384372711, 0.39723458886146545, 0.13316193222999573, 0.037897899746894836, -0.217901811003685, 0.16585969924926758, 0.19782252609729767, -0.3235311806201935, 0.06247515603899956, 0.17015290260314941, 0.047275662422180176, 0.045133672654628754, -0.15999078750610352, 0.00808854028582573, -0.23607970774173737, 0.11755945533514023, -0.03613626956939697, 0.025639303028583527, -0.06886102259159088, -0.10140246152877808, 0.5120303630828857, -0.20988233387470245, 0.5884244441986084, -0.3061162829399109, -0.19129690527915955, -0.20909109711647034, 0.3642340898513794, -0.22892625629901886, 0.07331440597772598, 0.4110037684440613, 0.29538601636886597, -0.14301900565624237, 0.13822974264621735, -0.005114267580211163, 0.2967206835746765, -0.05350668728351593, 0.3414318561553955, -0.39437904953956604, -0.12004251033067703, 0.07199109345674515, -0.039173249155282974, -0.0545983649790287, 0.12710700929164886, -0.19213271141052246, 0.05866274982690811, -0.09585505723953247, -0.3177282512187958, 0.557221531867981, 0.09331700205802917, -0.08030040562152863, -0.2747315764427185, 0.41857361793518066, -0.41746535897254944, 0.22774460911750793, -0.33810776472091675, 0.379923939704895, 0.03783955052495003, -0.011179465800523758, -0.09011118113994598, 0.2274472713470459, -0.14813268184661865, -0.07401268184185028, -0.2826409935951233, 0.12602990865707397, -0.023600682616233826, -0.06955758482217789, -0.46654248237609863, -0.2879008650779724 ]
https://github.com/huggingface/datasets/issues/3285
Add IEMOCAP dataset
> It's best to leave this part to us because we have to explain how login would work and (potentially) set up a custom verification for the dataset. Yes. That would be perfect. Thanks. ---- Okay. Thanks for giving a reference. This is helpful. I will go through it.
## Adding a Dataset - **Name:** IEMOCAP - **Description:** acted, multimodal and multispeaker database - **Paper:** https://sail.usc.edu/iemocap/Busso_2008_iemocap.pdf - **Data:** https://sail.usc.edu/iemocap/index.html - **Motivation:** Useful multimodal dataset cc @anton-l Instructions to add a new dataset can be found [here](https://github.com/huggingface/datasets/blob/master/ADD_NEW_DATASET.md).
49
Add IEMOCAP dataset ## Adding a Dataset - **Name:** IEMOCAP - **Description:** acted, multimodal and multispeaker database - **Paper:** https://sail.usc.edu/iemocap/Busso_2008_iemocap.pdf - **Data:** https://sail.usc.edu/iemocap/index.html - **Motivation:** Useful multimodal dataset cc @anton-l Instructions to add a new dataset can be found [here](https://github.com/huggingface/datasets/blob/master/ADD_NEW_DATASET.md). > It's best to leave this part to us because we have to explain how login would work and (potentially) set up a custom verification for the dataset. Yes. That would be perfect. Thanks. ---- Okay. Thanks for giving a reference. This is helpful. I will go through it.
[ -0.2882097065448761, -0.14979110658168793, -0.16369414329528809, -0.007033802568912506, -0.03612620383501053, -0.11274392902851105, 0.5733916759490967, -0.07195711135864258, 0.11405661702156067, 0.27055421471595764, -0.30420446395874023, -0.01560431532561779, -0.14486724138259888, 0.4219709038734436, 0.2603904604911804, -0.018376387655735016, 0.035323865711688995, 0.1186276227235794, 0.06496912240982056, -0.02545294165611267, 0.035838156938552856, -0.018992533907294273, -0.030200082808732986, -0.05510643124580383, -0.247806578874588, 0.0683169811964035, -0.2235221266746521, 0.16113659739494324, -0.36754536628723145, -0.2540755271911621, 0.0062404293566942215, 0.34783709049224854, -0.20254892110824585, 0.33460497856140137, -0.00009774148929864168, -0.15445974469184875, -0.13935674726963043, -0.18163222074508667, -0.19150234758853912, 0.13426236808300018, -0.6082987189292908, 0.13511919975280762, -0.16834987699985504, -0.14685077965259552, -0.3847377300262451, -0.08612474054098129, -0.09335510432720184, -0.2191462218761444, 0.3088786005973816, 0.41412466764450073, 0.30990350246429443, -0.13270732760429382, -0.013376601040363312, -0.05365946516394615, 0.143259197473526, 0.3244229555130005, 0.013734346255660057, 0.07784560322761536, 0.18510308861732483, -0.044133223593235016, -0.0989493802189827, 0.2853443920612335, -0.02367757447063923, 0.05677993968129158, -0.009798072278499603, 0.04351754114031792, 0.02982989326119423, 0.004354439675807953, 0.1107902005314827, 0.3291454315185547, 0.5085182785987854, -0.3150940537452698, -0.1635606288909912, 0.12828579545021057, 0.1657792031764984, -0.1438342034816742, 0.2948932647705078, 0.0841270163655281, 0.22970741987228394, 0.1816808134317398, -0.12929382920265198, -0.011895844712853432, -0.23283997178077698, 0.05177696421742439, -0.09567885100841522, 0.0695672258734703, -0.17304828763008118, -0.19641605019569397, -0.03384896740317345, -0.21676971018314362, -0.13989171385765076, 0.2435196340084076, -0.04197845980525017, 0.04983898252248764, -0.0646493136882782, -0.22757457196712494, -0.032040759921073914, 0.27727171778678894, 0.036316514015197754, 0.24039265513420105, 0.03355889022350311, 0.10553541034460068, 0.15642724931240082, 0.12547940015792847, 0.0063324905931949615, -0.27082088589668274, 0.10276807844638824, -0.3406524658203125, 0.31846892833709717, 0.13813923299312592, -0.1255490481853485, 0.1262868344783783, 0.03309452533721924, 0.0008076285012066364, 0.009175807237625122, 0.0723663717508316, 0.06341379135847092, -0.08863688260316849, -0.1429937481880188, -0.07090399414300919, -0.053022824227809906, -0.2351008802652359, 0.0772470086812973, 0.23918873071670532, -0.1884251981973648, 0.022684508934617043, -0.008487649261951447, 0.23880884051322937, -0.2531655430793762, -0.42169255018234253, -0.09783932566642761, 0.15438544750213623, -0.1757078766822815, 0.2367403209209442, 0.328120619058609, 0.22067038714885712, -0.021090153604745865, -0.033812083303928375, -0.03091929852962494, -0.14173924922943115, 0.3827453553676605, -0.06165003031492233, 0.1402960568666458, -0.058395203202962875, 0.26018163561820984, -0.20565593242645264, -0.15032890439033508, -0.2748584747314453, -0.1788003146648407, -0.40436941385269165, 0.2265416979789734, -0.18747469782829285, -0.40286701917648315, 0.34801986813545227, 0.14068542420864105, -0.21902817487716675, 0.12735497951507568, 0.23323141038417816, -0.06400150805711746, -0.20961979031562805, 0.00014878064393997192, 0.38719642162323, -0.24995267391204834, -0.06459778547286987, -0.01017777994275093, 0.28455936908721924, -0.044246312230825424, -0.10489575564861298, -0.16993390023708344, -0.2330085039138794, -0.34424740076065063, -0.004963122308254242, -0.009883495979011059, 0.19824355840682983, -0.0756673812866211, 0.17597611248493195, 0.06684143841266632, -0.4050110876560211, -0.22017137706279755, -0.24896100163459778, -0.1223612129688263, -0.15409047901630402, 0.4291633665561676, 0.2761203646659851, 0.4018418788909912, -0.284663587808609, 0.1940399706363678, 0.4086149334907532, -0.1215829849243164, 0.2875230610370636, 0.010008513927459717, -0.1953142136335373, -0.23044951260089874, 0.35546472668647766, 0.00477692112326622, -0.35051196813583374, 0.2136562466621399, 0.015355856157839298, 0.1452626883983612, -0.17129231989383698, 0.2785535752773285, -0.0674743726849556, 0.30752328038215637, 0.09153245389461517, -0.14621776342391968, -0.3634188175201416, 0.11000382900238037, -0.09970642626285553, 0.05617092549800873, 0.3417157828807831, 0.13550779223442078, -0.43646693229675293, -0.2947010099887848, -0.14994630217552185, -0.2873438000679016, -0.06923618912696838, 0.33645498752593994, 0.46575114130973816, -0.020090773701667786, -0.03163302317261696, -0.15099851787090302, 0.03889739513397217, 0.21458840370178223, -0.06830637156963348, -0.1832309365272522, 0.0911954939365387, -0.19632306694984436, 0.00516476109623909, 0.025743350386619568, 0.21454161405563354, -0.1361345648765564, 0.08483722805976868, 0.16081443428993225, 0.3604382574558258, 0.045068539679050446, 0.3119688034057617, 0.2387312650680542, 0.461447536945343, 0.23786330223083496, -0.5024251937866211, 0.36474326252937317, -0.11028341948986053, 0.036828793585300446, -0.1080624982714653, 0.005139071494340897, 0.3000056743621826, 0.35169684886932373, -0.31984150409698486, 0.07063760608434677, 0.0714699998497963, 0.25707924365997314, -0.3253779113292694, -0.107572540640831, -0.30500608682632446, -0.18717122077941895, -0.02816227823495865, -0.13280275464057922, -0.1283819079399109, -0.2122342586517334, 0.07976894825696945, 0.3497878313064575, 0.12508247792720795, 0.43176597356796265, -0.19938841462135315, -0.41016608476638794, -0.15416640043258667, 0.10808631032705307, -0.09809394925832748, 0.18818442523479462, 0.3141822814941406, 0.23385560512542725, -0.04068254679441452, 0.045496758073568344, -0.03578422963619232, 0.320083349943161, -0.3611379861831665, -0.28394588828086853, 0.14708878099918365, 0.09418496489524841, -0.2224728763103485, -0.4201083779335022, -0.32938313484191895, -0.10240863263607025, -0.26183003187179565, -0.3442915380001068, -0.1544608175754547, -0.016797635704278946, -0.294098436832428, 0.15070852637290955, -0.5270517468452454, 0.06679242849349976, 0.05685819685459137, 0.3053348660469055, 0.22132998704910278, -0.11791282892227173, 0.06551656126976013, 0.014347877353429794, 0.4581190347671509, 0.08737718313932419, 0.05831495672464371, 0.20773878693580627, -0.1609342098236084, -0.03743564337491989, 0.3066595792770386, 0.3671802878379822, 0.12291145324707031, 0.4014611840248108, -0.295919269323349, 0.12551766633987427, -0.22067038714885712, -0.2753940522670746, 0.2873976230621338, -0.030764319002628326, 0.08492094278335571, 0.17548677325248718, -0.05952604115009308, 0.16256283223628998, -0.034528039395809174, 0.221685528755188, -0.020104415714740753, -0.12265486270189285, 0.07284905761480331, -0.09048513323068619, 0.050097569823265076, -0.07448900490999222, -0.4146081507205963, -0.32197046279907227, -0.2661839425563812, 0.19028112292289734, 0.06502531468868256, 0.10086394101381302, -0.027454011142253876, -0.02467064931988716, 0.1759125292301178, -0.1400703340768814, 0.47561848163604736, -0.4204109311103821, -0.30414488911628723, 0.14279189705848694, -0.37967899441719055, -0.1819184273481369, 0.016284968703985214, -0.2622573971748352, 0.19847281277179718, -0.12032732367515564, -0.28566136956214905, -0.2798052132129669, 0.026618435978889465, -0.005403947085142136, 0.03349532186985016, 0.12463618814945221, 0.3600057363510132, 0.18036124110221863, -0.2287750095129013, -0.01831022836267948, -0.2371969372034073, 0.12330575287342072, 0.24640324711799622, 0.06503023952245712, -0.13192206621170044, 0.039905473589897156, 0.09132061898708344, 0.29035231471061707, -0.0705660730600357, 0.007575560361146927, 0.3430299758911133, -0.19224882125854492, 0.1660253405570984, -0.023121774196624756, -0.11399798840284348, 0.2405012845993042, -0.0016410201787948608, 0.0976262092590332, 0.4373055100440979, 0.17242729663848877, -0.14941853284835815, -0.32506293058395386, 0.1106014996767044, -0.2762274742126465, -0.3538283109664917, 0.05515816807746887, 0.08311434090137482, 0.11814089119434357, -0.09426698088645935, -0.1418859362602234, -0.18786931037902832, -0.19311806559562683, 0.28083693981170654, 0.14235153794288635, -0.3428810238838196, -0.26995980739593506, -0.2451857179403305, 0.23294450342655182, -0.03395506739616394, 0.19215649366378784, 0.29855236411094666, -0.0254746675491333, -0.2138437032699585, -0.2191171646118164, 0.03161545842885971, 0.12859006226062775, 0.12522774934768677, -0.5179080963134766, -0.05532263219356537, 0.09293164312839508, 0.2786637842655182, -0.06746788322925568, 0.1152404248714447, -0.36679133772850037, -0.06037813052535057, 0.2334999144077301, 0.007356412708759308, -0.2308899164199829, 0.21780237555503845, 0.2801275849342346, 0.07681844383478165, -0.0712289810180664, 0.10324027389287949, -0.04487334191799164, -0.05341882258653641, -0.2538495361804962, 0.18145692348480225, -0.15384440124034882, -0.06571558862924576, 0.2590366005897522, -0.1447364240884781, 0.09447339177131653, -0.14604049921035767, 0.3648117780685425, 0.3131374716758728, -0.008546097204089165, 0.13371936976909637, -0.02423933334648609, -0.02741122990846634, 0.0034237243235111237, 0.020948026329278946, 0.5764485001564026, 0.0033971089869737625, 0.07015718519687653, 0.08619245141744614, -0.3984620273113251, 0.23039737343788147, 0.2584075927734375, 0.38002753257751465, 0.20291775465011597, 0.1118539348244667, -0.040243662893772125, -0.4955482482910156, 0.05895886942744255, 0.11232265084981918, 0.09611926972866058, -0.12529584765434265, -0.13589324057102203, -0.08137331157922745, -0.10925005376338959, -0.13851749897003174, 0.1313553899526596, 0.5484825968742371, -0.3644970655441284, 0.049939122051000595, 0.01802320033311844, 0.9822058081626892, 0.08983337879180908, 0.09400160610675812, 0.08581274747848511, 0.003260664641857147, -0.2280922681093216, -0.1905442476272583, 0.13024252653121948, -0.07225318998098373, -0.23264554142951965, -0.1194632351398468, 0.08044292032718658, -0.07462731748819351, 0.11675255745649338, -0.5081307291984558, -0.1073157787322998, 0.13275206089019775, 0.09933437407016754, -0.13707415759563446, 0.3826608657836914, -0.22129835188388824, -0.3417673110961914, -0.1621665209531784, 0.3452264666557312, 0.1742038130760193, -0.3229040205478668, -0.04559599980711937, -0.07609465718269348, 0.05263608321547508, -0.049136046320199966, -0.1316470205783844, -0.04049931839108467, -0.11207453906536102, 0.03550703823566437, -0.06471119821071625, 0.34145933389663696, 0.01112212985754013, -0.17096823453903198, 0.22113056480884552, 0.08391875773668289, -0.24240592122077942, -0.14382535219192505, 0.027614504098892212, 0.1132361888885498, -0.05894426256418228, 0.0014333343133330345, 0.4071989059448242, -0.12158474326133728, -0.16874966025352478, 0.07594829797744751, 0.1862775683403015, -0.2027997076511383, 0.05220253765583038, 0.12512993812561035, 0.3240662217140198, -0.2863547205924988, 0.28005921840667725, 0.09076392650604248, -0.1420062780380249, -0.17777720093727112, 0.24183951318264008, 0.08464500308036804, -0.07958968728780746, 0.25823450088500977, 0.26578599214553833, 0.0436452180147171, -0.07368309795856476, 0.2322777807712555, 0.1208696961402893, -0.07327081263065338, 0.03421493619680405, 0.05240476503968239, -0.12764081358909607, -0.47128593921661377, -0.10878092050552368, -0.02964654192328453, -0.07569268345832825, -0.12771214544773102, -0.003399514826014638, -0.3883225917816162, 0.11165112257003784, 0.16976064443588257, 0.24976086616516113, 0.31044015288352966, -0.04116411134600639, -0.12167273461818695, -0.16794323921203613, 0.26544445753097534, 0.17325355112552643, 0.2532874643802643, -0.08398085832595825, 0.16082386672496796, 0.12211218476295471, 0.005597366020083427, -0.5199923515319824, -0.042476870119571686, -0.09916938096284866, 0.1920577436685562, 0.2107432335615158, -0.24372389912605286, 0.16424694657325745, 0.027717307209968567, 0.29173141717910767, -0.2573567032814026, -0.32025647163391113, -0.3241313695907593, -0.03833407163619995, 0.10033267736434937, -0.07785172015428543, 0.010770689696073532, 0.0481032095849514, -0.06458321213722229, -0.17798195779323578, -0.050079114735126495, 0.08597047626972198, 0.046316586434841156, -0.14154605567455292, -0.16732081770896912, -0.19007159769535065, -0.007421962916851044, -0.05207604914903641, -0.15651799738407135, 0.04327119514346123, -0.09077569842338562, -0.15768887102603912, -0.017189163714647293, -0.2644275724887848, -0.31946831941604614, 0.2869660556316376, 0.426724374294281, 0.5245382785797119, -0.04358050972223282, 0.19661644101142883, 0.17952874302864075, -0.17393125593662262, 0.3283191919326782, 0.3482712507247925, -0.005562551319599152, -0.20390798151493073, 0.0980759933590889, 0.06820465624332428, 0.4565093517303467, -0.18939879536628723, 0.18003495037555695, 0.2380659133195877, -0.23845602571964264, 0.38000917434692383, 0.25723811984062195, 0.366247296333313, -0.16628789901733398, 0.05934569239616394, 0.11834871023893356, -0.2841786742210388, -0.037221118807792664, -0.0970086008310318, -0.224605530500412, -0.3769099712371826, -0.08859887719154358, 0.42071160674095154, -0.05157800391316414, 0.25840553641319275, 0.21880245208740234, -0.15266487002372742, 0.2980289161205292, 0.19577232003211975, 0.12187840044498444, 0.36149436235427856, 0.04688239470124245, 0.5783886909484863, -0.08822007477283478, 0.1372932642698288, -0.047607921063899994, 0.20406952500343323, 0.44290533661842346, -0.24921493232250214, 0.06002030894160271, -0.42420652508735657, 0.0884925052523613, -0.03195222467184067, 0.1505730301141739, -0.04343805089592934, -0.16007506847381592, -0.32787278294563293, -0.26692527532577515, -0.023496005684137344, 0.06185689568519592, 0.18278807401657104, 0.0924152210354805, 0.21975277364253998, -0.37431421875953674, -0.05019726604223251, 0.11505256593227386, 0.2475833296775818, -0.39790427684783936, 0.13474807143211365, 0.36744362115859985, -0.10840311646461487, 0.24851110577583313, 0.40547314286231995, 0.04336705058813095, 0.019952330738306046, -0.18879570066928864, 0.3356984555721283, 0.04653147608041763, -0.15223024785518646, -0.23354023694992065, 0.03720638155937195, 0.3607201874256134, 0.1659580022096634, 0.2269318699836731, 0.3062414228916168, -0.24975751340389252, -0.21715746819972992, 0.028154049068689346, -0.06908850371837616, -0.009573355317115784, -0.34278151392936707, 0.1602082997560501, 0.04460424184799194, -0.343582421541214, -0.0545145645737648, -0.744227409362793, -0.30211925506591797, 0.17212416231632233, -0.25779831409454346, 0.26099148392677307, -0.250643789768219, 0.13440421223640442, 0.3244224190711975, 0.07887758314609528, 0.30842339992523193, 0.042865458875894547, 0.14235316216945648, -0.27294594049453735, -0.5383737087249756, 0.2543633282184601, 0.0848003551363945, -0.23489320278167725, -0.3613143265247345, 0.3105219602584839, 0.4373209774494171, 0.23719267547130585, 0.054565779864788055, -0.1439293622970581, 0.18005123734474182, 0.01595499739050865, -0.47529688477516174, 0.13937003910541534, 0.388840913772583, 0.1305203139781952, 0.09099617600440979, -0.07989034056663513, 0.11682186275720596, -0.1636257916688919, 0.28344112634658813, 0.01857592724263668, -0.22225233912467957, -0.16240546107292175, -0.08511051535606384, 0.31546032428741455, -0.04251456260681152, 0.47486478090286255, -0.4053322970867157, -0.013413670472800732, -0.03672332689166069, 0.1846078336238861, -0.12793682515621185, -0.019744664430618286, 0.39371010661125183, 0.4193345308303833, -0.03471268713474274, 0.2384166568517685, 0.12057381123304367, 0.3251664638519287, 0.05423526465892792, 0.2824520766735077, -0.3565240800380707, 0.08184164762496948, 0.03216765075922012, -0.04217205569148064, -0.138383686542511, 0.026797469705343246, -0.04906771332025528, -0.019828958436846733, 0.02086023986339569, -0.39754876494407654, 0.2596758008003235, -0.12136413156986237, -0.1767977923154831, -0.26113229990005493, 0.527324914932251, -0.0923023596405983, 0.12404762208461761, -0.25126442313194275, 0.2588489055633545, 0.13224612176418304, 0.020736142992973328, -0.026090925559401512, 0.298970103263855, -0.05859203264117241, 0.05450419709086418, -0.2450474202632904, 0.058098338544368744, 0.11007210612297058, 0.002133551985025406, -0.36861783266067505, -0.2897844910621643 ]
https://github.com/huggingface/datasets/issues/3285
Add IEMOCAP dataset
@mariosasko has this been solved? I would like to use login and custom verification for training on my private dataset.
## Adding a Dataset - **Name:** IEMOCAP - **Description:** acted, multimodal and multispeaker database - **Paper:** https://sail.usc.edu/iemocap/Busso_2008_iemocap.pdf - **Data:** https://sail.usc.edu/iemocap/index.html - **Motivation:** Useful multimodal dataset cc @anton-l Instructions to add a new dataset can be found [here](https://github.com/huggingface/datasets/blob/master/ADD_NEW_DATASET.md).
20
Add IEMOCAP dataset ## Adding a Dataset - **Name:** IEMOCAP - **Description:** acted, multimodal and multispeaker database - **Paper:** https://sail.usc.edu/iemocap/Busso_2008_iemocap.pdf - **Data:** https://sail.usc.edu/iemocap/index.html - **Motivation:** Useful multimodal dataset cc @anton-l Instructions to add a new dataset can be found [here](https://github.com/huggingface/datasets/blob/master/ADD_NEW_DATASET.md). @mariosasko has this been solved? I would like to use login and custom verification for training on my private dataset.
[ -0.12680035829544067, 0.11343635618686676, 0.0273774154484272, 0.15640445053577423, 0.030530765652656555, -0.10810022801160812, 0.7614243626594543, -0.13327506184577942, 0.06842054426670074, 0.260284423828125, -0.37945225834846497, -0.04375028610229492, -0.03868076950311661, 0.4949885606765747, 0.3253805637359619, 0.12156893312931061, -0.08597167581319809, -0.0689953863620758, 0.16366106271743774, -0.0513601116836071, 0.19506333768367767, -0.14273780584335327, -0.1541479527950287, -0.12364985048770905, -0.2533320486545563, -0.06635192036628723, -0.13712000846862793, 0.06620892137289047, -0.3407714366912842, -0.3156537115573883, 0.34121790528297424, 0.302900105714798, -0.18994095921516418, 0.34772107005119324, -0.00011121440184069797, 0.005071215331554413, 0.05157559737563133, -0.12329789251089096, -0.17031711339950562, 0.03206317126750946, -0.6800369024276733, 0.0664784386754036, 0.009985698387026787, -0.14236147701740265, -0.5571898221969604, -0.062177132815122604, -0.1184282898902893, -0.23667770624160767, 0.31139492988586426, 0.554655909538269, 0.18130050599575043, -0.10118065774440765, 0.0514385811984539, -0.09629204124212265, 0.10203234106302261, 0.4665462374687195, -0.023439206182956696, 0.05866393446922302, 0.08718040585517883, 0.02259881980717182, 0.06729958951473236, 0.14902909100055695, 0.08865530043840408, 0.008475303649902344, 0.06956776231527328, 0.169288769364357, 0.049241699278354645, -0.023211531341075897, 0.10731522738933563, 0.3709118962287903, 0.7700899839401245, -0.15781477093696594, -0.3186511695384979, 0.20086386799812317, 0.504071831703186, -0.17179536819458008, 0.5184959173202515, 0.1671927273273468, 0.21315354108810425, 0.2506425976753235, -0.25785383582115173, -0.06407132744789124, -0.23849277198314667, 0.08957166969776154, 0.005946800112724304, -0.14294207096099854, -0.06690963357686996, -0.013020932674407959, 0.06830131262540817, -0.1821141093969345, -0.07179378718137741, 0.2858167886734009, -0.09354539215564728, 0.07412920147180557, -0.14607150852680206, -0.3055214583873749, -0.25295987725257874, 0.3149105906486511, 0.0062438249588012695, 0.42680299282073975, -0.08651556819677353, 0.05616804584860802, 0.13926571607589722, -0.03204585611820221, 0.06503047049045563, -0.1805540919303894, -0.08641432970762253, -0.02799873799085617, 0.37315207719802856, 0.24025321006774902, -0.2653430700302124, 0.0993436649441719, -0.0008631385862827301, 0.011532988399267197, -0.041116755455732346, 0.036472201347351074, 0.16883982717990875, -0.2974945902824402, -0.009596254676580429, -0.0020905518904328346, -0.21799206733703613, -0.31113672256469727, 0.15039299428462982, 0.12795433402061462, -0.12384705990552902, -0.2710925340652466, -0.037432439625263214, 0.06207255274057388, -0.30739712715148926, -0.5722836256027222, -0.07650101184844971, 0.19441218674182892, -0.37615764141082764, 0.16614335775375366, 0.5025243163108826, 0.12850238382816315, -0.1017514243721962, -0.011727454140782356, 0.02656637504696846, -0.19780220091342926, 0.2516769468784332, -0.20353733003139496, 0.11297619342803955, 0.10533005744218826, 0.11734373867511749, -0.21092672646045685, -0.21263368427753448, -0.3272567391395569, -0.05287322774529457, -0.2971874177455902, 0.005552932620048523, -0.38982948660850525, -0.2511211335659027, 0.12834885716438293, -0.037329621613025665, -0.09912940859794617, 0.11658035218715668, 0.06902673840522766, 0.08754865825176239, -0.21853427588939667, -0.13809660077095032, 0.14293605089187622, -0.3278026282787323, 0.0032335661817342043, 0.12404059618711472, 0.37793755531311035, -0.1274898797273636, 0.07445669174194336, -0.37000739574432373, -0.24265620112419128, -0.10177571326494217, 0.05749921500682831, -0.2010505199432373, 0.5054101943969727, -0.21688036620616913, 0.08228862285614014, 0.10102548450231552, -0.39718809723854065, -0.5235866904258728, -0.13320492208003998, -0.04325377941131592, -0.1275043934583664, 0.4283786118030548, 0.1728028506040573, 0.4085817337036133, -0.1815650910139084, 0.09828313440084457, 0.43236929178237915, -0.03600652515888214, 0.04760097712278366, 0.02503412589430809, -0.17575228214263916, -0.06291978061199188, 0.4139291048049927, 0.22584107518196106, -0.3113420307636261, 0.295200377702713, -0.028041422367095947, -0.07416697591543198, -0.11636115610599518, 0.24682147800922394, -0.1629723608493805, 0.28942328691482544, 0.09687808156013489, -0.1521444171667099, -0.05041669309139252, 0.04481900483369827, 0.08582811802625656, 0.1469370424747467, 0.5220296382904053, 0.07322374731302261, -0.24491088092327118, -0.16012507677078247, -0.3765798509120941, -0.529653787612915, -0.339406818151474, 0.0829542726278305, 0.35958176851272583, -0.05227232724428177, -0.04632417857646942, -0.2975795567035675, 0.2725849151611328, -0.12658749520778656, 0.04896581172943115, -0.23150169849395752, 0.19513346254825592, -0.10460012406110764, 0.03022705391049385, -0.13101211190223694, 0.3627200126647949, -0.1315758228302002, 0.014444185420870781, 0.019208813086152077, 0.30736273527145386, 0.07904393970966339, 0.09751085191965103, 0.3175625205039978, 0.30498436093330383, 0.282162606716156, -0.7889450192451477, 0.17211884260177612, -0.1433984935283661, 0.012307439930737019, -0.18573994934558868, 0.07815219461917877, 0.2700995206832886, 0.2938513159751892, -0.3020578920841217, -0.03144330531358719, 0.04962339997291565, 0.21432368457317352, -0.35670891404151917, -0.30733609199523926, -0.3541905879974365, -0.34168505668640137, -0.1419454663991928, 0.08995166420936584, -0.1919739693403244, -0.1391429603099823, -0.05268215388059616, 0.30077841877937317, 0.20253194868564606, 0.3143497407436371, -0.2533142864704132, -0.14824384450912476, -0.018023867160081863, -0.02154082991182804, 0.09673833847045898, 0.5233458280563354, 0.15985426306724548, 0.23397020995616913, 0.2965847849845886, 0.0018353923223912716, -0.04835839197039604, 0.3402896523475647, -0.35059595108032227, -0.28164777159690857, 0.059116825461387634, 0.06884447485208511, -0.15170642733573914, -0.28207525610923767, -0.1409483104944229, 0.1602896898984909, -0.12052980065345764, -0.489139199256897, -0.18868902325630188, -0.26377665996551514, -0.249013751745224, 0.1096310093998909, -0.4681204855442047, -0.0016886889934539795, 0.2129753977060318, 0.06288954615592957, 0.0586932972073555, 0.1729632318019867, 0.10807943344116211, -0.07025900483131409, 0.4790250062942505, 0.004012038931250572, -0.0007747039198875427, 0.41793665289878845, 0.012254718691110611, -0.24288752675056458, 0.1172848641872406, 0.5691251158714294, 0.027935517951846123, 0.3602898418903351, -0.26586899161338806, -0.006588362157344818, -0.3927896022796631, -0.31948575377464294, 0.1858913004398346, -0.029044710099697113, 0.20722869038581848, 0.23705005645751953, -0.2467910200357437, 0.26243215799331665, 0.1524142324924469, 0.22480539977550507, -0.09659618139266968, -0.2495861053466797, -0.0754600316286087, -0.16834259033203125, 0.0807889774441719, -0.19307920336723328, -0.5275442004203796, -0.39456790685653687, -0.07040049135684967, 0.09645932912826538, -0.04261865094304085, 0.10683833062648773, 0.23478993773460388, -0.02535153552889824, 0.33714962005615234, -0.13585564494132996, 0.20521771907806396, -0.5203530788421631, -0.5536259412765503, 0.13383689522743225, -0.3103220462799072, -0.14361681044101715, 0.3975968658924103, -0.12964041531085968, 0.24297569692134857, -0.04492037743330002, -0.46454381942749023, -0.2500367760658264, 0.028530685231089592, 0.13528262078762054, -0.20173881947994232, 0.23018121719360352, 0.3922528326511383, -0.03587113320827484, -0.10867920517921448, -0.005373112857341766, -0.4388919770717621, 0.26475656032562256, 0.17850112915039062, 0.3672572076320648, -0.15768545866012573, 0.1253373622894287, 0.08515298366546631, 0.5037767291069031, 0.035785648971796036, -0.008911069482564926, 0.2492537647485733, -0.12680307030677795, 0.24231499433517456, -0.08964390307664871, -0.388712614774704, 0.3823798596858978, 0.06904732435941696, -0.0020592156797647476, 0.2963307499885559, 0.024410247802734375, -0.02217206172645092, -0.4005948603153229, 0.11188694834709167, -0.06068556383252144, -0.445072740316391, -0.10731010138988495, 0.2130584865808487, 0.20681846141815186, -0.0018750149756669998, 0.1582297682762146, -0.15149180591106415, -0.23231446743011475, 0.17908796668052673, 0.20302674174308777, -0.3782450258731842, -0.09428669512271881, -0.3240392208099365, 0.11611565947532654, -0.07874505966901779, 0.19098325073719025, 0.1686101108789444, 0.17670145630836487, -0.23543347418308258, -0.039966776967048645, 0.26562562584877014, 0.23088446259498596, 0.21812698245048523, -0.7707736492156982, 0.010712523013353348, 0.14008042216300964, 0.16355681419372559, 0.06731656193733215, -0.20529264211654663, -0.1876145303249359, 0.09995115548372269, 0.2670497000217438, 0.27047428488731384, -0.14616423845291138, 0.15283361077308655, 0.4192838668823242, -0.19089947640895844, -0.037586744874715805, -0.027017325162887573, -0.08019405603408813, -0.1496202051639557, -0.01663215272128582, 0.29361146688461304, -0.2406265288591385, -0.0011705979704856873, 0.14630307257175446, -0.043769773095846176, 0.05710490047931671, -0.06695842742919922, 0.44941002130508423, 0.07229088246822357, -0.0255730003118515, 0.27388903498649597, 0.15832306444644928, 0.17306610941886902, 0.01840326562523842, 0.13506682217121124, 0.8458434343338013, 0.00971691869199276, -0.021459534764289856, 0.08907599002122879, -0.41275814175605774, 0.3379920721054077, 0.4796862304210663, 0.26448509097099304, 0.08417458087205887, 0.22448626160621643, -0.16855086386203766, -0.3071660101413727, 0.24844081699848175, 0.07665595412254333, -0.042149867862463, -0.19133903086185455, -0.3392668664455414, -0.32856762409210205, -0.17069295048713684, 0.01819324493408203, 0.09899711608886719, 0.6522038578987122, -0.47308772802352905, -0.2680591344833374, 0.03887104243040085, 0.9738394021987915, 0.10302919149398804, 0.12646931409835815, 0.05401520058512688, 0.004448220133781433, -0.19658872485160828, -0.08381003141403198, 0.11571803689002991, -0.1524391621351242, -0.1688360720872879, -0.06624557077884674, -0.16816700994968414, 0.33031874895095825, -0.22663961350917816, -0.24570232629776, -0.02530728094279766, 0.16384220123291016, 0.32562538981437683, -0.04677777737379074, 0.4163866341114044, 0.025910189375281334, -0.30186209082603455, 0.051830973476171494, 0.17021223902702332, 0.010997798293828964, -0.18559512495994568, 0.0013544531539082527, -0.22175252437591553, -0.09915551543235779, -0.07465359568595886, -0.15568900108337402, 0.07093723863363266, -0.19987162947654724, 0.11917883902788162, 0.023415319621562958, 0.08945634961128235, 0.5077995657920837, -0.06288878619670868, 0.40396928787231445, 0.11647333204746246, -0.28152889013290405, 0.014474853873252869, -0.007281437516212463, 0.007981370203197002, -0.10324211418628693, 0.0339546762406826, 0.5461559295654297, -0.056292712688446045, -0.20602691173553467, 0.06767872720956802, 0.1307644546031952, -0.24526147544384003, -0.019807130098342896, 0.09441551566123962, 0.5260617733001709, -0.4458363354206085, 0.28343331813812256, 0.03927500173449516, -0.013585224747657776, -0.15627048909664154, 0.10376328229904175, 0.12682999670505524, -0.14769041538238525, 0.2745705842971802, 0.23694607615470886, -0.11801322549581528, 0.0691063180565834, 0.40140286087989807, 0.1147233247756958, 0.16405121982097626, 0.3461866080760956, -0.08866728842258453, 0.06466330587863922, -0.33071139454841614, 0.11891477555036545, 0.1268957406282425, -0.044057201594114304, -0.2290540486574173, 0.086701400578022, -0.1272297352552414, 0.15885990858078003, 0.0595356710255146, 0.12983639538288116, 0.1546655148267746, 0.10586042702198029, -0.2180566042661667, -0.3097415566444397, 0.07372987270355225, -0.07451885938644409, 0.1934375762939453, -0.039637915790081024, 0.5175387263298035, 0.14247503876686096, 0.0022565536201000214, -0.32633355259895325, 0.21378447115421295, -0.24805884063243866, 0.1042756512761116, 0.2924133837223053, -0.3396543264389038, 0.25726503133773804, 0.02433054894208908, 0.1574621945619583, -0.18006135523319244, -0.5566515922546387, -0.15208247303962708, -0.05844248831272125, 0.15845702588558197, -0.023540981113910675, -0.06252428889274597, 0.13168561458587646, -0.18955208361148834, -0.40288642048835754, 0.1131686270236969, 0.08071501553058624, 0.061055876314640045, -0.14684289693832397, -0.11045953631401062, -0.29278117418289185, 0.028376668691635132, -0.10204383730888367, -0.12863513827323914, 0.06355352699756622, -0.16263704001903534, -0.07134959846735, -0.11878979206085205, -0.3908725380897522, -0.21970374882221222, 0.13220152258872986, 0.33146435022354126, 0.45712101459503174, 0.04340248554944992, 0.23536956310272217, -0.09602396190166473, -0.12998799979686737, 0.16490955650806427, 0.19728411734104156, 0.027811691164970398, -0.3371766209602356, 0.17763657867908478, 0.2258574664592743, 0.16150367259979248, -0.1652260422706604, 0.18098340928554535, 0.45930832624435425, 0.0005438756197690964, 0.1359085589647293, 0.1867818534374237, 0.6048406958580017, 0.06769700348377228, -0.21636845171451569, -0.039687469601631165, -0.32691675424575806, 0.022719968110322952, -0.0051656682044267654, -0.13389644026756287, -0.6575559973716736, -0.1798630952835083, 0.5711687207221985, -0.22556114196777344, -0.17386683821678162, 0.4664124846458435, -0.2201123833656311, 0.4058482348918915, 0.1978456974029541, 0.1693379133939743, 0.2942919135093689, -0.29997971653938293, 0.5717746615409851, -0.196374773979187, 0.22088994085788727, -0.172841876745224, -0.07264569401741028, 0.448678195476532, -0.35275787115097046, 0.009360698983073235, -0.3308490812778473, -0.05394423380494118, -0.05238431692123413, 0.16701802611351013, -0.01588558778166771, -0.08397536724805832, -0.0194321870803833, -0.13817590475082397, -0.16703449189662933, -0.07540176808834076, 0.14107578992843628, 0.09042361378669739, -0.02500644326210022, -0.2637198567390442, -0.3410080671310425, 0.13182401657104492, 0.16588644683361053, -0.40704408288002014, 0.32257696986198425, 0.009103618562221527, -0.08324095606803894, 0.34603363275527954, 0.38562896847724915, 0.017726890742778778, 0.05056938901543617, -0.025399960577487946, 0.15291832387447357, 0.3017028868198395, -0.045138902962207794, 0.04790759086608887, 0.22073768079280853, 0.49382802844047546, 0.13095588982105255, 0.2757377028465271, 0.0535256564617157, -0.06734299659729004, -0.2884189486503601, -0.008794393390417099, 0.15317754447460175, -0.2970028221607208, -0.19198361039161682, 0.13227935135364532, 0.017878897488117218, -0.2873167395591736, 0.1932225227355957, -0.5931588411331177, -0.2514055669307709, 0.3543020486831665, 0.04152127727866173, 0.2448011040687561, -0.3487532436847687, 0.05469229817390442, -0.005739619955420494, 0.2782205045223236, 0.28879469633102417, -0.1096261665225029, -0.12138199061155319, -0.13177689909934998, -0.6612860560417175, 0.4324588179588318, -0.029567483812570572, -0.13797913491725922, -0.33463454246520996, 0.4468778669834137, 0.4221945106983185, 0.15868982672691345, 0.4302607774734497, -0.4182782471179962, 0.40674468874931335, -0.008538320660591125, -0.4353393316268921, 0.17479993402957916, 0.18868353962898254, 0.04443380981683731, 0.022006802260875702, -0.06836799532175064, 0.1632404774427414, -0.17163880169391632, 0.09480243176221848, 0.2684440016746521, -0.136140376329422, -0.04057430848479271, 0.08991500735282898, 0.6178323030471802, -0.08842303603887558, 0.7124407291412354, 0.05051974952220917, 0.14027361571788788, -0.2861257791519165, 0.3005492091178894, -0.09338651597499847, 0.1855303943157196, 0.26791369915008545, 0.5431712865829468, -0.10521133244037628, 0.23079688847064972, -0.06214570999145508, 0.2647358477115631, -0.02449585683643818, 0.3333137035369873, -0.4096740782260895, 0.00592895969748497, 0.047848887741565704, 0.05049058422446251, -0.02850445546209812, 0.11421246826648712, -0.08594465255737305, -0.23947225511074066, -0.21152222156524658, -0.1631721407175064, 0.3930572271347046, -0.38262271881103516, -0.26970720291137695, -0.34393900632858276, 0.4734686613082886, 0.04289241507649422, 0.07510331273078918, -0.42611581087112427, 0.11751823872327805, 0.09844610840082169, -0.14768058061599731, -0.11560273170471191, 0.2494739145040512, -0.1572674810886383, 0.29735270142555237, -0.10400475561618805, -0.012856803834438324, -0.13575249910354614, 0.11185322701931, -0.2935051918029785, -0.16365791857242584 ]
https://github.com/huggingface/datasets/issues/3285
Add IEMOCAP dataset
@mariosasko Thanks, but no. I would like to keep my HuggingFace Dataset private and train a model on it. Is this possible?
## Adding a Dataset - **Name:** IEMOCAP - **Description:** acted, multimodal and multispeaker database - **Paper:** https://sail.usc.edu/iemocap/Busso_2008_iemocap.pdf - **Data:** https://sail.usc.edu/iemocap/index.html - **Motivation:** Useful multimodal dataset cc @anton-l Instructions to add a new dataset can be found [here](https://github.com/huggingface/datasets/blob/master/ADD_NEW_DATASET.md).
22
Add IEMOCAP dataset ## Adding a Dataset - **Name:** IEMOCAP - **Description:** acted, multimodal and multispeaker database - **Paper:** https://sail.usc.edu/iemocap/Busso_2008_iemocap.pdf - **Data:** https://sail.usc.edu/iemocap/index.html - **Motivation:** Useful multimodal dataset cc @anton-l Instructions to add a new dataset can be found [here](https://github.com/huggingface/datasets/blob/master/ADD_NEW_DATASET.md). @mariosasko Thanks, but no. I would like to keep my HuggingFace Dataset private and train a model on it. Is this possible?
[ -0.19322222471237183, -0.1053321585059166, 0.04185104742646217, 0.2510071396827698, 0.07254549115896225, 0.08445350080728531, 0.651877760887146, -0.09288500249385834, 0.021535493433475494, 0.020382538437843323, -0.61033695936203, -0.06026357412338257, -0.31426721811294556, 0.6207936406135559, 0.3884630799293518, 0.11674106866121292, 0.019308894872665405, -0.17415010929107666, 0.19308359920978546, -0.034970082342624664, 0.15440009534358978, -0.13061201572418213, 0.2849764823913574, 0.03876546025276184, -0.20993290841579437, -0.22909143567085266, -0.11830327659845352, -0.0021178647875785828, -0.40771716833114624, -0.1772756576538086, 0.43635842204093933, 0.3717707693576813, 0.008501764386892319, 0.33309635519981384, -0.000120772652735468, -0.06968406587839127, -0.22401417791843414, -0.23561473190784454, -0.04105367511510849, -0.013484299182891846, -0.4893108308315277, -0.037071019411087036, 0.06123719364404678, -0.15552687644958496, -0.4649156332015991, -0.051408786326646805, -0.12279462814331055, -0.36208927631378174, 0.3611346483230591, 0.253782719373703, 0.10748355090618134, 0.27182430028915405, 0.16252629458904266, -0.009107696823775768, -0.0004275888204574585, 0.3195798397064209, -0.2953852713108063, 0.36718040704727173, -0.3858795166015625, 0.3529272973537445, 0.004892721772193909, 0.26680994033813477, -0.021683983504772186, -0.02944183349609375, 0.38571855425834656, 0.35007965564727783, 0.10119055956602097, -0.31004559993743896, 0.024691730737686157, 0.3710678517818451, 0.5220962762832642, -0.36804628372192383, -0.5047305226325989, 0.00003126263618469238, 0.35278481245040894, -0.17416085302829742, 0.18288560211658478, 0.29051855206489563, 0.17404021322727203, 0.38345956802368164, -0.23617936670780182, -0.5541001558303833, -0.2336646169424057, -0.07056304812431335, 0.08259423077106476, -0.07858529686927795, -0.17319969832897186, 0.0298655666410923, 0.21114304661750793, -0.16070376336574554, -0.3113848865032196, 0.05823960900306702, -0.09255172312259674, 0.09823700785636902, 0.010457582771778107, -0.43013834953308105, -0.23734059929847717, 0.4938972592353821, 0.2255479097366333, 0.29981720447540283, -0.09095646440982819, -0.127259761095047, 0.06919942796230316, 0.021379344165325165, 0.2899131178855896, -0.3739481270313263, -0.15320396423339844, -0.019047848880290985, 0.20969906449317932, 0.10986188054084778, -0.22143100202083588, -0.11074209958314896, 0.1963828206062317, 0.26369327306747437, -0.14594529569149017, -0.3365131616592407, 0.3911466598510742, -0.17672500014305115, 0.06233210116624832, 0.012017205357551575, -0.08689418435096741, -0.36324837803840637, 0.1206001341342926, 0.05404766649007797, 0.08497670292854309, -0.4434530436992645, -0.1953553855419159, 0.15911701321601868, -0.12440675497055054, -0.3472646474838257, -0.18140694499015808, -0.06060340628027916, -0.1587761640548706, 0.4027763605117798, 0.24430926144123077, -0.030314307659864426, -0.0330219641327858, -0.03706115111708641, 0.09955114871263504, -0.026356559246778488, 0.26742589473724365, -0.07182098180055618, 0.1784459352493286, 0.243805930018425, -0.007279835641384125, -0.028869029134511948, -0.019134804606437683, -0.35699957609176636, -0.3123847544193268, -0.274334192276001, 0.09405041486024857, -0.12518179416656494, -0.124974325299263, 0.006463571917265654, -0.2724028527736664, 0.10182368755340576, -0.20233383774757385, 0.3091064691543579, -0.03566857427358627, -0.09293374419212341, 0.14448879659175873, 0.2854268550872803, -0.3627760708332062, -0.1220393255352974, 0.21484848856925964, 0.34449464082717896, -0.08013014495372772, -0.1954384446144104, -0.05529710277915001, -0.3057863116264343, -0.13898396492004395, 0.21279305219650269, -0.10926277190446854, 0.17456784844398499, -0.14153771102428436, -0.04085305333137512, 0.18862104415893555, 0.004434484988451004, -0.5089407563209534, -0.03649870678782463, -0.32802313566207886, -0.19978930056095123, 0.3654055893421173, 0.47915464639663696, 0.07900523394346237, -0.2014244794845581, 0.06370235979557037, 0.27125585079193115, 0.03230650722980499, -0.1667770892381668, 0.20315338671207428, -0.45966970920562744, 0.2822895050048828, -0.017695734277367592, -0.061891499906778336, 0.21028992533683777, 0.12623614072799683, 0.0954735204577446, 0.15265686810016632, 0.19351410865783691, 0.12635774910449982, -0.06323742866516113, 0.40273067355155945, 0.22870631515979767, -0.2957195043563843, -0.34673944115638733, -0.2917364239692688, -0.02129538357257843, 0.030894219875335693, 0.10989727824926376, 0.32564079761505127, -0.5682892799377441, 0.0800105556845665, -0.2516012489795685, -0.18522869050502777, -0.41201138496398926, -0.02191312238574028, 0.2353784143924713, 0.10747100412845612, -0.0182739719748497, -0.5535836219787598, 0.27686089277267456, 0.08911629021167755, 0.2798879146575928, -0.5471624135971069, 0.0059828124940395355, 0.10485638678073883, -0.015102461911737919, -0.15363822877407074, 0.3659658432006836, -0.19732129573822021, 0.01569862850010395, 0.16418451070785522, 0.22727862000465393, -0.11442790925502777, 0.19850285351276398, 0.14890776574611664, 0.5218813419342041, 0.024744682013988495, -0.47970443964004517, 0.16294561326503754, -0.278790146112442, -0.12465829402208328, 0.045139528810977936, -0.07998248189687729, 0.47476691007614136, 0.2550605833530426, -0.07505222409963608, -0.023675113916397095, -0.13493791222572327, 0.12105090916156769, -0.19345203042030334, -0.4891587197780609, -0.5100778341293335, -0.26227426528930664, -0.017440680414438248, 0.3459257483482361, -0.05186033993959427, -0.2811158299446106, -0.02603871375322342, 0.16300499439239502, 0.40027087926864624, 0.13340318202972412, -0.13850370049476624, -0.2557169497013092, 0.1303170621395111, -0.05467132478952408, 0.012553159147500992, 0.4548971652984619, 0.12295817583799362, 0.1424274891614914, 0.32589322328567505, 0.13869428634643555, -0.008456859737634659, 0.08141320943832397, 0.05346469581127167, -0.2278957962989807, -0.20149418711662292, 0.10038956254720688, 0.03783641383051872, -0.17794528603553772, -0.01097148098051548, -0.22145648300647736, -0.3700259327888489, -0.3958764672279358, 0.0393824428319931, -0.17574752867221832, -0.19416430592536926, -0.039794351905584335, -0.39798247814178467, -0.4790906310081482, 0.45390281081199646, -0.09207790344953537, 0.10320466756820679, 0.13013283908367157, 0.05111085623502731, -0.41639965772628784, 0.5265781879425049, -0.30153995752334595, 0.08112611621618271, 0.21182245016098022, 0.1372515857219696, 0.09962448477745056, 0.023214399814605713, 0.38346052169799805, -0.14605170488357544, 0.48929083347320557, 0.0305797066539526, -0.09923818707466125, -0.2629409730434418, -0.242258220911026, 0.12026313692331314, -0.15050196647644043, 0.36525988578796387, 0.21051956713199615, -0.045435234904289246, 0.05827835947275162, 0.07582434266805649, 0.2977031469345093, -0.12562911212444305, -0.13338126242160797, -0.3524959087371826, -0.0054039014503359795, 0.30476558208465576, -0.0725957527756691, -0.16788890957832336, -0.33700627088546753, 0.026132769882678986, 0.6101736426353455, 0.010762050747871399, -0.08134868741035461, 0.20652002096176147, -0.2190222293138504, 0.4164774417877197, -0.40534189343452454, -0.008771577849984169, -0.307677686214447, -0.6993115544319153, 0.13735634088516235, -0.23918625712394714, -0.023457828909158707, 0.34140661358833313, -0.28048431873321533, 0.09743638336658478, -0.19518060982227325, -0.2956687808036804, -0.09455358982086182, 0.04997618496417999, 0.1565464735031128, -0.07472750544548035, 0.10273971408605576, 0.25872722268104553, -0.18111386895179749, 0.021920060738921165, 0.03719479590654373, -0.3387705683708191, 0.1337474286556244, 0.207071453332901, 0.331360787153244, -0.17006057500839233, 0.22711211442947388, -0.26235246658325195, 0.2728632688522339, 0.18296100199222565, -0.06273144483566284, 0.08863350003957748, -0.2567797601222992, 0.4879525899887085, -0.14255279302597046, -0.3359743654727936, 0.22809414565563202, 0.08359120041131973, -0.24571290612220764, 0.3512563705444336, 0.11171476542949677, 0.3189452588558197, -0.26663005352020264, -0.09831248223781586, 0.2371634542942047, -0.48064595460891724, -0.15471629798412323, 0.5963712930679321, 0.12656308710575104, 0.05934044346213341, -0.12675555050373077, -0.12494698166847229, -0.2641105651855469, -0.00011481810361146927, 0.4708613157272339, -0.20376890897750854, -0.0529165118932724, -0.38051652908325195, 0.049388304352760315, -0.536053478717804, -0.07527236640453339, -0.044284503906965256, -0.12963446974754333, -0.006112582981586456, -0.031617093831300735, 0.24597199261188507, 0.21440939605236053, 0.5977243185043335, -0.21966347098350525, -0.07679596543312073, 0.08948624134063721, 0.021867237985134125, -0.09980274736881256, 0.05063584819436073, -0.11216415464878082, 0.15106920897960663, 0.1699979156255722, 0.4289291501045227, -0.1867738515138626, 0.131097674369812, 0.3577750325202942, 0.061481643468141556, -0.22121299803256989, -0.07536684721708298, -0.2912258505821228, 0.07435887306928635, 0.03659242391586304, 0.30954626202583313, -0.10384820401668549, -0.07488694041967392, 0.23307928442955017, 0.16150005161762238, 0.03815875202417374, -0.1865033209323883, 0.4262770414352417, 0.05139578506350517, 0.01670101284980774, 0.46905577182769775, 0.14902737736701965, 0.3781254291534424, 0.0914924144744873, 0.07960403710603714, 0.8474903702735901, -0.08148530125617981, -0.20137497782707214, -0.13862645626068115, -0.18595059216022491, 0.46772870421409607, 0.4001660645008087, 0.1642531305551529, 0.18653705716133118, 0.44075676798820496, 0.07043197751045227, -0.39167845249176025, 0.2661236524581909, 0.08786306530237198, -0.11614345014095306, -0.13320651650428772, -0.45187243819236755, 0.28590917587280273, -0.05959403142333031, 0.07745879888534546, 0.07615363597869873, 0.7354071736335754, -0.25519198179244995, -0.1442694216966629, 0.17332476377487183, 1.1007970571517944, 0.016645129770040512, 0.4813220798969269, -0.11876464635133743, 0.19216212630271912, 0.37191250920295715, -0.17263062298297882, -0.059669382870197296, -0.050934117287397385, -0.09599539637565613, -0.11322242766618729, -0.08745450526475906, 0.31298643350601196, -0.2118820995092392, 0.020335588604211807, -0.2017432451248169, -0.06948157399892807, 0.42115575075149536, -0.2158827781677246, 0.21097546815872192, 0.047909144312143326, -0.34010687470436096, -0.19348840415477753, 0.026037827134132385, 0.06357710063457489, -0.026415590196847916, 0.09261371940374374, -0.1287485957145691, -0.1432931274175644, 0.024101734161376953, -0.09744080901145935, -0.14782026410102844, -0.3535268306732178, -0.044216156005859375, -0.10462749004364014, -0.14102861285209656, 0.33510372042655945, 0.15824685990810394, 0.45330047607421875, 0.1094093918800354, -0.33234813809394836, -0.20995236933231354, -0.17719075083732605, -0.2200523316860199, -0.3146524429321289, -0.03369203209877014, 0.2659918963909149, 0.020519141107797623, 0.06906769424676895, 0.1223214864730835, 0.3625486493110657, 0.008500836789608002, -0.09361615777015686, -0.03231392800807953, 0.48301422595977783, -0.535581648349762, 0.1300978809595108, -0.06295499205589294, 0.18459364771842957, -0.1760854423046112, 0.00160934217274189, 0.32639509439468384, -0.10231969505548477, 0.012860123068094254, 0.11249600350856781, -0.1607063263654709, -0.023461848497390747, 0.6266648173332214, 0.23231089115142822, 0.020000074058771133, 0.2255188524723053, -0.12707465887069702, 0.05748804658651352, -0.19833704829216003, 0.2719442844390869, 0.4037025272846222, -0.2203940749168396, -0.018921073526144028, 0.5366641879081726, -0.02257978916168213, -0.25325146317481995, 0.012184780091047287, 0.1729293167591095, -0.2244410216808319, -0.07606866955757141, -0.032345425337553024, -0.4501141309738159, 0.2695075571537018, -0.15266087651252747, 0.17719677090644836, 0.011613208800554276, 0.4587891101837158, 0.09143073856830597, 0.07360498607158661, -0.1856430172920227, -0.04425492882728577, 0.008239367976784706, -0.26665404438972473, 0.41121038794517517, 0.09548719227313995, 0.32798728346824646, -0.2007337510585785, -0.004463352262973785, -0.055803991854190826, -0.35404640436172485, -0.14993831515312195, -0.35631024837493896, 0.20216158032417297, -0.04695482552051544, -0.046639807522296906, 0.1833677589893341, -0.12088534235954285, -0.16202625632286072, 0.06565893441438675, 0.14695465564727783, 0.2170676290988922, 0.39425724744796753, -0.21091367304325104, -0.16395819187164307, 0.046093884855508804, -0.3921965956687927, -0.1014665812253952, 0.15527212619781494, -0.1261083483695984, 0.12220273911952972, -0.15113814175128937, -0.40159475803375244, -0.10029180347919464, 0.1289113461971283, 0.053656138479709625, 0.5307366251945496, 0.12555155158042908, -0.05276307463645935, 0.07068907469511032, -0.30141687393188477, 0.15878355503082275, 0.28333863615989685, 0.29284965991973877, -0.1345347762107849, 0.23449070751667023, 0.32172825932502747, -0.0008325465023517609, -0.2561076879501343, 0.21133455634117126, 0.6628417372703552, -0.03196059167385101, 0.08194312453269958, 0.29190123081207275, 0.3110007345676422, 0.4753173589706421, -0.30903464555740356, -0.21357131004333496, -0.1074303388595581, 0.25151997804641724, 0.061687126755714417, 0.026981430128216743, -0.31708958745002747, 0.09377443045377731, 0.5913832783699036, 0.4386964440345764, 0.29061341285705566, 0.3472101092338562, -0.09925306588411331, 0.4225150942802429, -0.003350570797920227, 0.08482550084590912, 0.3255321979522705, -0.2680782973766327, 0.14285989105701447, -0.22888854146003723, 0.27317097783088684, 0.09773453325033188, -0.2916618585586548, 0.48046165704727173, -0.10045088082551956, 0.017836013808846474, -0.06952982395887375, 0.11604882776737213, 0.033704161643981934, -0.15998919308185577, 0.15087305009365082, 0.03529437631368637, -0.00034799426794052124, -0.010099904611706734, -0.21181991696357727, -0.43394505977630615, 0.0787615105509758, -0.05548800528049469, 0.2861230969429016, -0.03014969266951084, -0.4103866219520569, 0.0727594718337059, -0.09730350226163864, -0.19468003511428833, 0.14755484461784363, 0.07913701236248016, -0.04890313744544983, 0.18208666145801544, 0.161174938082695, -0.10132192075252533, -0.40162399411201477, 0.2342994213104248, 0.2687503695487976, 0.1550130397081375, -0.1331595629453659, -0.15647292137145996, 0.10683044046163559, 0.20446404814720154, -0.032356422394514084, 0.12752336263656616, -0.016603916883468628, -0.07574072480201721, -0.19917263090610504, 0.07201974093914032, 0.34785789251327515, -0.4501388967037201, -0.06191705912351608, -0.04802022874355316, -0.07608131319284439, -0.18007484078407288, -0.056440211832523346, -0.3023586571216583, -0.06153964251279831, 0.3655235469341278, -0.1392604112625122, -0.14398860931396484, -0.07329743355512619, -0.03066302090883255, -0.01956760138273239, 0.4063335657119751, 0.20617185533046722, 0.14172130823135376, -0.0325901098549366, 0.02377747744321823, -0.6199783682823181, 0.4603341817855835, 0.0783630907535553, -0.2496945858001709, -0.3171144425868988, 0.1941988319158554, 0.3905094861984253, 0.19795578718185425, 0.1653568148612976, -0.3007427752017975, 0.10186286270618439, -0.04672170430421829, -0.12965995073318481, 0.009345995262265205, -0.13176292181015015, 0.3400810956954956, 0.08815443515777588, 0.33208683133125305, 0.16958917677402496, -0.003232890274375677, -0.1914951503276825, 0.030463356524705887, -0.06181753799319267, -0.12252427637577057, -0.041348837316036224, 0.5002539157867432, -0.1664220690727234, 0.4543094336986542, -0.05063137412071228, -0.18299299478530884, -0.1395038217306137, 0.4280858337879181, -0.17057538032531738, 0.04008296877145767, 0.2969357967376709, 0.43689513206481934, -0.5745874047279358, -0.05814022198319435, -0.09647148102521896, 0.267965167760849, 0.06580821424722672, 0.34790515899658203, -0.14802691340446472, 0.19318513572216034, 0.08190744370222092, -0.04376433789730072, 0.18898501992225647, 0.30605241656303406, -0.22443637251853943, -0.16531503200531006, 0.04045209288597107, 0.012822506949305534, 0.6274197101593018, -0.4449519217014313, -0.0794624537229538, -0.29959771037101746, 0.456658273935318, 0.08286811411380768, -0.24265608191490173, -0.593248188495636, 0.25282880663871765, 0.12595023214817047, -0.03324677050113678, -0.04594986513257027, 0.25122392177581787, -0.24819090962409973, 0.08571812510490417, -0.1730920970439911, 0.40450766682624817, -0.1882687509059906, 0.1617913693189621, -0.1041853129863739, -0.2179650366306305 ]
https://github.com/huggingface/datasets/issues/3282
ConnectionError: Couldn't reach https://huggingface.co/datasets/oscar-corpus/OSCAR-2109/resolve/main/OSCAR-2109.py
Hi ! Thanks for reporting :) I think this is because the dataset is behind an access page. We can fix the dataset viewer If you also have this error when you use the `datasets` library in python, you should probably pass `use_auth_token=True` to the `load_dataset()` function to use your account to access the dataset.
## Dataset viewer issue for '*oscar-corpus/OSCAR-2109*' **Link:** *[link to the dataset viewer page](https://huggingface.co/datasets/oscar-corpus/OSCAR-2109)* *The dataset library cannot download any language from the oscar-corpus/OSCAR-2109 dataset. By entering the URL in your browser I can access the file.* ``` raise ConnectionError("Couldn't reach {}".format(url)) ConnectionError: Couldn't reach https://huggingface.co/datasets/oscar-corpus/OSCAR-2109/resolve/main/OSCAR-2109.py ``` Am I the one who added this dataset ? No Using the older version of [OSCAR](https://huggingface.co/datasets/oscar) I don't have any issues downloading languages with the dataset library.
55
ConnectionError: Couldn't reach https://huggingface.co/datasets/oscar-corpus/OSCAR-2109/resolve/main/OSCAR-2109.py ## Dataset viewer issue for '*oscar-corpus/OSCAR-2109*' **Link:** *[link to the dataset viewer page](https://huggingface.co/datasets/oscar-corpus/OSCAR-2109)* *The dataset library cannot download any language from the oscar-corpus/OSCAR-2109 dataset. By entering the URL in your browser I can access the file.* ``` raise ConnectionError("Couldn't reach {}".format(url)) ConnectionError: Couldn't reach https://huggingface.co/datasets/oscar-corpus/OSCAR-2109/resolve/main/OSCAR-2109.py ``` Am I the one who added this dataset ? No Using the older version of [OSCAR](https://huggingface.co/datasets/oscar) I don't have any issues downloading languages with the dataset library. Hi ! Thanks for reporting :) I think this is because the dataset is behind an access page. We can fix the dataset viewer If you also have this error when you use the `datasets` library in python, you should probably pass `use_auth_token=True` to the `load_dataset()` function to use your account to access the dataset.
[ -0.202765554189682, 0.19938740134239197, -0.017374303191900253, 0.38500624895095825, 0.2765265703201294, 0.1723119616508484, -0.005310799926519394, 0.22693227231502533, -0.11762736737728119, 0.19206731021404266, -0.2589605450630188, -0.0070931073278188705, 0.19795739650726318, -0.050627872347831726, 0.0628776103258133, -0.2161213755607605, -0.10842324048280716, -0.09979541599750519, -0.08939670026302338, -0.018495965749025345, -0.272064745426178, 0.0012207813560962677, -0.04876471683382988, 0.29384803771972656, -0.09653171896934509, -0.014558287337422371, -0.07925400137901306, 0.021726619452238083, -0.28496164083480835, -0.417449414730072, 0.2633958160877228, -0.01644051820039749, 0.1208617091178894, 0.33056744933128357, -0.0001076562621165067, -0.029482286423444748, 0.5196360945701599, 0.08769327402114868, -0.3862411081790924, -0.6431907415390015, -0.060078077018260956, -0.2329304963350296, 0.21821966767311096, -0.0073607563972473145, -0.06815508008003235, -0.23329395055770874, 0.2048516422510147, -0.27224200963974, 0.10737294703722, 0.21532565355300903, 0.2902388274669647, 0.24968913197517395, 0.43482106924057007, -0.320554256439209, 0.136788010597229, -0.16738802194595337, -0.10475973039865494, 0.230729877948761, 0.1612733155488968, 0.11613196134567261, 0.14506801962852478, 0.18562698364257812, 0.14987149834632874, -0.0734693706035614, 0.3786954879760742, -0.09342528879642487, -0.30298227071762085, -0.4241178035736084, 0.27978724241256714, 0.1504000723361969, 0.7434461712837219, -0.1431635320186615, -0.506580650806427, 0.07249075919389725, 0.15321730077266693, -0.07585175335407257, 0.395325630903244, 0.40106168389320374, -0.08026483654975891, 0.03918149694800377, -0.1685735136270523, -0.25705164670944214, -0.27727192640304565, 0.519319474697113, -0.1465919017791748, 0.1637357771396637, -0.12181279063224792, 0.17443987727165222, 0.19892026484012604, -0.06885425001382828, 0.11203156411647797, -0.10138311982154846, 0.042479898780584335, 0.2691727876663208, -0.07724973559379578, 0.289909690618515, -0.04846318066120148, 0.3560121953487396, 0.13618537783622742, 0.047682683914899826, -0.0292356014251709, 0.14581653475761414, -0.3487766683101654, 0.06629975885152817, 0.3788774311542511, 0.06574861705303192, -0.14254194498062134, 0.013147288002073765, 0.3362300992012024, 0.33948877453804016, 0.1115783154964447, -0.16729792952537537, -0.1309717297554016, -0.3140823245048523, -0.1623687893152237, -0.15457528829574585, 0.42656242847442627, -0.1780371218919754, -0.09945285320281982, 0.12845788896083832, -0.28407591581344604, -0.10180910676717758, 0.010945419780910015, 0.4008486270904541, -0.3027249872684479, 0.13247963786125183, 0.01594633236527443, 0.1856575310230255, -0.07336197793483734, -0.10720023512840271, -0.19070571660995483, 0.11866869032382965, -0.3018156886100769, -0.08351190388202667, 0.15374796092510223, -0.467288076877594, 0.18336383998394012, -0.09598755091428757, 0.23182313144207, -0.14081893861293793, 0.1524849236011505, -0.18710282444953918, -0.13002002239227295, 0.1926501989364624, 0.24026891589164734, 0.44317013025283813, 0.14488756656646729, -0.24935084581375122, -0.03504915535449982, -0.01777736097574234, -0.2433142364025116, -0.2388843595981598, -0.15574923157691956, 0.2146775722503662, -0.03913673758506775, -0.018971014767885208, -0.16275939345359802, -0.22019656002521515, -0.17247125506401062, 0.02999761328101158, -0.021856196224689484, -0.06860867887735367, -0.08020824193954468, -0.1935221403837204, 0.2517101764678955, 0.5226734280586243, -0.2972840666770935, 0.040226906538009644, -0.2712689936161041, -0.2423306107521057, -0.03531957417726517, 0.1291242092847824, -0.2708791196346283, 0.004239723086357117, -0.29849061369895935, 0.07500582933425903, 0.32715904712677, -0.4252154529094696, -0.6005561947822571, 0.223918616771698, -0.08156386017799377, 0.03281767666339874, -0.1335957944393158, 0.0962628573179245, 0.15696856379508972, 0.0009914435213431716, 0.0051673948764801025, 0.12704111635684967, 0.13422085344791412, -0.0878775492310524, -0.03187280893325806, -0.19546791911125183, 0.03768062964081764, 0.18911822140216827, 0.11467885971069336, 0.08002844452857971, 0.2441411316394806, 0.05523540824651718, 0.2985982596874237, -0.02808741107583046, 0.22174836695194244, 0.11586909741163254, 0.12070955336093903, 0.46730077266693115, 0.01168818399310112, -0.1403723657131195, -0.09853947907686234, 0.15644416213035583, 0.03409728407859802, 0.3388136029243469, -0.3569268584251404, -0.09020348638296127, -0.385653555393219, -0.007201625034213066, -0.3222621977329254, 0.00394945964217186, 0.1375611424446106, 0.1365206241607666, 0.1370212733745575, 0.35643270611763, -0.1535232961177826, 0.2270909696817398, 0.06975298374891281, 0.20007461309432983, -0.47178584337234497, 0.15598954260349274, -0.1643623560667038, 0.1504880040884018, 0.10820966958999634, 0.028303083032369614, 0.18521341681480408, -0.1798798143863678, -0.16129383444786072, 0.29952821135520935, -0.007030964363366365, 0.2834112048149109, 0.05242244526743889, 0.13949662446975708, 0.36779314279556274, -0.4319249391555786, 0.20297174155712128, 0.21478526294231415, 0.25035586953163147, 0.1023978665471077, 0.22979456186294556, 0.16340996325016022, -0.004899661988019943, 0.23176130652427673, 0.21105916798114777, 0.27153027057647705, 0.4035409688949585, 0.19014327228069305, -0.17518304288387299, -0.0753101035952568, 0.2559177577495575, -0.06075887009501457, 0.2961600720882416, -0.20851010084152222, -0.3017110526561737, -0.03255321830511093, 0.1828528195619583, -0.030301589518785477, -0.028258010745048523, 0.23709198832511902, -0.3072897791862488, 0.1307976245880127, -0.002703683450818062, 0.26337355375289917, 0.21020980179309845, 0.09194137156009674, 0.03119560331106186, 0.3542661964893341, 0.015506931580603123, -0.2901536226272583, 0.165825754404068, 0.17855851352214813, 0.006478048395365477, -0.06647387892007828, 0.019814804196357727, 0.021831348538398743, -0.2774794101715088, -0.007340105250477791, -0.20109494030475616, 0.28576216101646423, -0.1946772038936615, 0.08681473881006241, -0.3310259282588959, -0.5319349765777588, -0.19149719178676605, -0.2879302501678467, -0.29901009798049927, -0.3978271484375, -0.22035609185695648, 0.1988132745027542, 0.01710709184408188, 0.07630746066570282, -0.46944332122802734, -0.02456866204738617, -0.10428643226623535, 0.07037890702486038, -0.0844595655798912, -0.1499600112438202, -0.17663460969924927, 0.11387351155281067, 0.26300179958343506, -0.015241488814353943, 0.35768792033195496, -0.1284128576517105, 0.13353197276592255, -0.42393073439598083, -0.1696915477514267, 0.0647769346833229, 0.03565780818462372, 0.09858691692352295, 0.12426610291004181, 0.308779776096344, -0.025257088243961334, -0.16920800507068634, 0.34501761198043823, -0.059876494109630585, -0.06847230345010757, -0.1151292622089386, 0.07271914184093475, -0.03304319456219673, 0.14297981560230255, -0.4839431345462799, -0.3743896186351776, -0.3295212388038635, 0.24061210453510284, 0.10000395774841309, 0.16437752544879913, 0.07264016568660736, -0.121357262134552, 0.24200259149074554, -0.19162780046463013, 0.13285009562969208, -0.2671848237514496, -0.1641094833612442, 0.35130760073661804, -0.32385918498039246, -0.5939623117446899, 0.3540237247943878, 0.10445079207420349, 0.2606615126132965, -0.05107153207063675, -0.397060751914978, -0.29012757539749146, -0.25430482625961304, -0.038817163556814194, 0.07652536034584045, 0.10768190026283264, 0.2036738395690918, -0.17602184414863586, -0.05300641059875488, 0.13421231508255005, -0.11980389058589935, -0.18315690755844116, -0.27819696068763733, 0.2680691182613373, -0.10004844516515732, 0.4044796824455261, -0.06583558768033981, 0.40818095207214355, 0.29411184787750244, 0.1921270340681076, 0.527687668800354, 0.061873577535152435, 0.25317350029945374, -0.2463560700416565, -0.5655339360237122, 0.08605818450450897, -0.14190369844436646, 0.10100413858890533, 0.22149774432182312, 0.11319631338119507, -0.1381412297487259, -0.4108753502368927, -0.2776784598827362, -0.3991936445236206, -0.24800124764442444, -0.1738719493150711, -0.034224286675453186, 0.17863400280475616, 0.1913960725069046, 0.1320452094078064, 0.0192575640976429, -0.2997601628303528, -0.024703962728381157, 0.4354974627494812, 0.1424436718225479, 0.10166450589895248, -0.2474028468132019, -0.01764352060854435, -0.4690905213356018, 0.4094414710998535, -0.03392043337225914, 0.3629898130893707, -0.14377626776695251, 0.16499224305152893, 0.29110297560691833, 0.024784235283732414, 0.6514784693717957, -0.22324448823928833, -0.05481976270675659, -0.012577610090374947, -0.12219757586717606, -0.3620074689388275, 0.02905942127108574, -0.1262088418006897, 0.22133147716522217, 0.20571978390216827, 0.2087736427783966, -0.191413015127182, 0.08230707794427872, 0.10595764964818954, 0.04063607379794121, -0.12884294986724854, -0.07644061744213104, -0.2263394445180893, -0.5405516028404236, -0.3553222417831421, -0.09981045871973038, -0.11968088895082474, 0.3752511441707611, 0.23488874733448029, -0.06807804107666016, 0.0019609685987234116, 0.04057244956493378, 0.1989864557981491, 0.04827948287129402, -0.014081098139286041, 0.24117092788219452, 0.21648404002189636, 0.3963952958583832, 0.37478208541870117, 0.2090197205543518, 0.522200345993042, -0.0010368525981903076, -0.6040945649147034, -0.07134582102298737, -0.07279551774263382, 0.15472349524497986, 0.2073010802268982, -0.048187509179115295, 0.10691642761230469, 0.21919570863246918, -0.06075248122215271, -0.25288164615631104, 0.0798717588186264, 0.35200217366218567, 0.13884702324867249, -0.47370243072509766, -0.6560757756233215, 0.24112942814826965, -0.04455990344285965, -0.05254863202571869, 0.20565740764141083, 0.3867124915122986, -0.2261100858449936, 0.11735929548740387, -0.19031426310539246, 1.018123984336853, -0.18976490199565887, 0.006081040948629379, -0.023394349962472916, -0.09278362989425659, 0.6583040356636047, 0.018318206071853638, 0.09608815610408783, -0.330803781747818, -0.3378795087337494, -0.2302732616662979, -0.1292656660079956, 0.3311738073825836, -0.0790633112192154, -0.07517559826374054, 0.3052082061767578, -0.1910661906003952, -0.019599299877882004, 0.020848827436566353, 0.3572906255722046, -0.35038310289382935, -0.1054782122373581, -0.4207896888256073, 0.2840251922607422, -0.07140934467315674, 0.5055626630783081, -0.10082080960273743, -0.09424986690282822, -0.26533740758895874, -0.16330410540103912, -0.28888189792633057, 0.29558783769607544, -0.18558208644390106, 0.072787344455719, -0.040464501827955246, -0.12539516389369965, 0.3871293365955353, 0.14089195430278778, 0.4056631326675415, 0.17987297475337982, -0.2594805657863617, 0.24362806975841522, -0.34182009100914, -0.3947606086730957, 0.2020108848810196, 0.10569141060113907, 0.09306932240724564, -0.20472148060798645, -0.4060966968536377, 0.35255876183509827, 0.16754573583602905, -0.15549993515014648, 0.027909979224205017, 0.07579673826694489, 0.005756136029958725, -0.11111006140708923, -0.36607661843299866, -0.28038474917411804, -0.0008401274681091309, -0.090245321393013, 0.16797485947608948, 0.020917870104312897, -0.041202362626791, -0.09579078108072281, 0.25673040747642517, -0.15123707056045532, -0.058758120983839035, 0.48083585500717163, -0.09365733712911606, -0.1682790070772171, 0.5083467960357666, 0.3387850224971771, -0.2458731085062027, -0.05867098271846771, -0.125274196267128, -0.03548271954059601, -0.4210474193096161, -0.23288242518901825, 0.13107185065746307, 0.44027429819107056, -0.33643224835395813, 0.1730741709470749, 0.0811142772436142, -0.019004657864570618, -0.022770201787352562, -0.5439379215240479, -0.0615401566028595, 0.09876202791929245, 0.03617612645030022, 0.053348541259765625, -0.03964589163661003, 0.08283834159374237, 0.24522662162780762, -0.08358578383922577, -0.31461501121520996, 0.05161764472723007, -0.1455092579126358, -0.07736006379127502, 0.26254189014434814, 0.06014980748295784, 0.1245972290635109, -0.10283739864826202, 0.12707318365573883, 0.15696652233600616, -0.2014980912208557, -0.19621124863624573, -0.04026016592979431, 0.10266344249248505, 0.05421939864754677, -0.5077405571937561, 0.04572150111198425, -0.2586626708507538, 0.042640380561351776, 0.013341219164431095, -0.03562219813466072, 0.29976174235343933, 0.05850847065448761, -0.17237217724323273, 0.05823168531060219, -0.0979582741856575, -0.05811730772256851, 0.25173088908195496, -0.037294164299964905, 0.3661852478981018, 0.10961288958787918, 0.04708125442266464, 0.0313611663877964, -0.05972811207175255, -0.25830790400505066, -0.05804549902677536, -0.054678574204444885, 0.06886710971593857, 0.39610955119132996, -0.14658904075622559, 0.23357579112052917, 0.3113304078578949, 0.4705086648464203, 0.28574153780937195, -0.14497171342372894, 0.08411957323551178, 0.2973075807094574, 0.175437793135643, -0.32796305418014526, -0.03668166697025299, 0.23992228507995605, 0.06737598031759262, -0.11836390197277069, 0.0030338093638420105, 0.0556810237467289, 0.09474556148052216, -0.17270512878894806, 0.018601689487695694, 0.36919569969177246, -0.06014609336853027, 0.3020559251308441, 0.1943986862897873, -0.06419646739959717, 0.026806101202964783, 0.24655677378177643, 0.08513239771127701, 0.0064093321561813354, 0.39391541481018066, -0.3491903841495514, 0.021128496155142784, -0.12230203300714493, 0.16463859379291534, 0.050981562584638596, -0.3357008397579193, 0.06845070421695709, 0.170514315366745, -0.04098522663116455, -0.08338082581758499, -0.04931411147117615, 0.3922654092311859, -0.09236564487218857, 0.05274936929345131, -0.3956129252910614, 0.3153190612792969, 0.1167876198887825, -0.11416375637054443, -0.07713057100772858, -0.3194993734359741, -0.09934866428375244, 0.08988520503044128, -0.06831133365631104, -0.34306788444519043, 0.01633647084236145, 0.061281073838472366, -0.15052205324172974, -0.47955939173698425, 0.13195426762104034, -0.0850960835814476, 0.11046738922595978, -0.11930081248283386, 0.18483418226242065, 0.09729637205600739, 0.12622462213039398, 0.08156023919582367, 0.44422438740730286, 0.3628690838813782, 0.2645370066165924, 0.22721728682518005, 0.2755535840988159, -0.2016245722770691, -0.002847110852599144, -0.005896693095564842, 0.173810675740242, 0.3367471694946289, 0.1366572082042694, 0.37262967228889465, 0.1748613864183426, -0.17589400708675385, 0.16723529994487762, -0.1616877168416977, 0.40820544958114624, -0.3227119743824005, 0.4274560213088989, -0.39501330256462097, 0.06358509510755539, -0.3885422945022583, 0.0007792189717292786, -0.5760036110877991, 0.24085411429405212, 0.3682505190372467, -0.05510784685611725, 0.028298702090978622, -0.423298716545105, 0.07626117765903473, -0.025423016399145126, 0.45481041073799133, 0.5182127356529236, 0.35659506916999817, -0.14048519730567932, -0.3263028860092163, -0.8057557940483093, 0.2427210807800293, -0.2795892059803009, 0.174174964427948, -0.1474742442369461, 0.007860317826271057, -0.10505073517560959, 0.23981668055057526, 0.14757828414440155, 0.2543720304965973, -0.11128585785627365, 0.09481281787157059, -0.01763177290558815, -0.18045976758003235, -0.023486219346523285, 0.15566952526569366, -0.12034986168146133, -0.03721468150615692, 0.2419956922531128, -0.39932671189308167, 0.049129195511341095, -0.03550688922405243, 0.07302716374397278, -0.27627694606781006, -0.1912788301706314, 0.40124067664146423, 0.24692094326019287, 0.5209870338439941, 0.07591946423053741, -0.08727432042360306, -0.42546355724334717, -0.39010903239250183, -0.16168662905693054, 0.38447901606559753, 0.039796970784664154, 0.28767165541648865, 0.004306863993406296, -0.12804245948791504, -0.26563042402267456, 0.4534432590007782, -0.18370170891284943, -0.043997813016176224, -0.13427823781967163, -0.12690797448158264, -0.13534796237945557, -0.06950881332159042, 0.04199066013097763, 0.0434272326529026, 0.03770918399095535, 0.05902985483407974, -0.1768021285533905, -0.3886202573776245, 0.5000829100608826, -0.3918817937374115, -0.16745306551456451, 0.025423556566238403, 0.13835975527763367, -0.017671242356300354, -0.2948046028614044, -0.38022956252098083, 0.2586956322193146, 0.3808039128780365, 0.023604463785886765, -0.14344537258148193, 0.0639023408293724, -0.3231334090232849, -0.026485798880457878, -0.12741266191005707, 0.28433266282081604, 0.07349076122045517, -0.24004460871219635, 0.2641964554786682, 0.03246074914932251 ]
https://github.com/huggingface/datasets/issues/3282
ConnectionError: Couldn't reach https://huggingface.co/datasets/oscar-corpus/OSCAR-2109/resolve/main/OSCAR-2109.py
Ah ok, I didn't realise about the login page. I'll try `use_auth_token=True` and see if that solves it. Regards!
## Dataset viewer issue for '*oscar-corpus/OSCAR-2109*' **Link:** *[link to the dataset viewer page](https://huggingface.co/datasets/oscar-corpus/OSCAR-2109)* *The dataset library cannot download any language from the oscar-corpus/OSCAR-2109 dataset. By entering the URL in your browser I can access the file.* ``` raise ConnectionError("Couldn't reach {}".format(url)) ConnectionError: Couldn't reach https://huggingface.co/datasets/oscar-corpus/OSCAR-2109/resolve/main/OSCAR-2109.py ``` Am I the one who added this dataset ? No Using the older version of [OSCAR](https://huggingface.co/datasets/oscar) I don't have any issues downloading languages with the dataset library.
19
ConnectionError: Couldn't reach https://huggingface.co/datasets/oscar-corpus/OSCAR-2109/resolve/main/OSCAR-2109.py ## Dataset viewer issue for '*oscar-corpus/OSCAR-2109*' **Link:** *[link to the dataset viewer page](https://huggingface.co/datasets/oscar-corpus/OSCAR-2109)* *The dataset library cannot download any language from the oscar-corpus/OSCAR-2109 dataset. By entering the URL in your browser I can access the file.* ``` raise ConnectionError("Couldn't reach {}".format(url)) ConnectionError: Couldn't reach https://huggingface.co/datasets/oscar-corpus/OSCAR-2109/resolve/main/OSCAR-2109.py ``` Am I the one who added this dataset ? No Using the older version of [OSCAR](https://huggingface.co/datasets/oscar) I don't have any issues downloading languages with the dataset library. Ah ok, I didn't realise about the login page. I'll try `use_auth_token=True` and see if that solves it. Regards!
[ -0.1426580250263214, 0.15587007999420166, 0.006098456680774689, 0.33921414613723755, 0.27242061495780945, 0.1259441375732422, -0.006369892507791519, 0.19402645528316498, -0.14451515674591064, 0.20942868292331696, -0.21142926812171936, -0.10457406938076019, 0.21274946630001068, 0.00035396404564380646, 0.17619258165359497, -0.1613224297761917, -0.0735766664147377, -0.17232772707939148, -0.06654490530490875, -0.07265017926692963, -0.24377714097499847, 0.04681576043367386, -0.05272684246301651, 0.24191561341285706, -0.11033806949853897, 0.06280551850795746, -0.08799032866954803, 0.12484142929315567, -0.3088074028491974, -0.4200097918510437, 0.25646108388900757, 0.07104069739580154, 0.0663246363401413, 0.2381953001022339, -0.00010991390445269644, -0.029243644326925278, 0.5209181904792786, 0.08338968455791473, -0.3889167010784149, -0.5973930954933167, -0.029880767688155174, -0.17415668070316315, 0.25167620182037354, 0.030895359814167023, -0.1596904993057251, -0.20206458866596222, 0.29098567366600037, -0.17471247911453247, 0.13508081436157227, 0.18571920692920685, 0.2642936110496521, 0.17527350783348083, 0.40022802352905273, -0.31701895594596863, 0.16651871800422668, -0.04199397563934326, -0.10100997239351273, 0.19333632290363312, 0.1918208748102188, 0.08534666895866394, 0.12216779589653015, 0.16668318212032318, 0.21541310846805573, -0.09408557415008545, 0.4747638404369354, -0.10087941586971283, -0.35675591230392456, -0.4271946847438812, 0.29757624864578247, 0.19907653331756592, 0.6796488165855408, -0.029958315193653107, -0.4646298289299011, 0.14726999402046204, 0.13389931619167328, -0.0795765221118927, 0.47369900345802307, 0.298129677772522, -0.06068921834230423, -0.0013071559369564056, -0.18267221748828888, -0.3463898003101349, -0.3439478874206543, 0.5416828393936157, -0.1120353564620018, 0.2589777708053589, -0.03769418224692345, 0.19461488723754883, 0.21659812331199646, -0.12185938656330109, 0.05051363259553909, 0.030165424570441246, -0.004381541162729263, 0.26840004324913025, -0.06271347403526306, 0.2647521495819092, -0.055742524564266205, 0.3592349886894226, 0.2194002866744995, 0.10444800555706024, -0.05062909424304962, 0.2112489938735962, -0.38434478640556335, 0.031320519745349884, 0.3504379391670227, 0.12822693586349487, -0.0700058564543724, -0.05639183893799782, 0.41269171237945557, 0.30946725606918335, 0.11024196445941925, -0.12146509438753128, -0.09979628771543503, -0.34008339047431946, -0.16492778062820435, -0.14421701431274414, 0.3900933861732483, -0.26996755599975586, 0.06160435825586319, 0.10037977248430252, -0.22557756304740906, -0.14808954298496246, -0.08932376652956009, 0.45574188232421875, -0.2500987946987152, 0.0686870813369751, 0.030561313033103943, 0.19074399769306183, -0.1334601491689682, -0.15584640204906464, -0.15604473650455475, 0.1916096806526184, -0.27116361260414124, -0.11905240267515182, 0.1629333347082138, -0.4172598421573639, 0.14044080674648285, -0.10926952213048935, 0.20580434799194336, -0.1701171100139618, 0.18367160856723785, -0.04191557690501213, -0.039757899940013885, 0.16671843826770782, 0.20553837716579437, 0.41780340671539307, 0.06572098284959793, -0.26275187730789185, 0.015591688454151154, -0.014927417039871216, -0.22350433468818665, -0.2401398867368698, -0.23428909480571747, 0.17122673988342285, -0.017179829999804497, -0.03240520507097244, -0.0970747098326683, -0.20130515098571777, -0.18552148342132568, 0.07304859161376953, -0.07395607978105545, -0.07557415217161179, -0.00040480494499206543, -0.2123304307460785, 0.24074387550354004, 0.5114322900772095, -0.2561291456222534, 0.013999223709106445, -0.20160222053527832, -0.2845812141895294, -0.046656109392642975, 0.19122174382209778, -0.2767924964427948, -0.06456931680440903, -0.29459312558174133, 0.13459739089012146, 0.2801423668861389, -0.5271683931350708, -0.5403923988342285, 0.17492717504501343, -0.10164772719144821, -0.004539556801319122, -0.045252300798892975, 0.13517960906028748, 0.20073992013931274, -0.0012245922116562724, -0.04631226509809494, 0.12201529741287231, 0.22157008945941925, -0.08526149392127991, -0.06572574377059937, -0.20042140781879425, 0.0376715287566185, 0.21895281970500946, 0.16470205783843994, 0.01365698128938675, 0.27838462591171265, 0.004981157369911671, 0.37995651364326477, -0.12395773828029633, 0.22515738010406494, 0.09966816753149033, 0.13514241576194763, 0.4891672134399414, 0.06689779460430145, 0.05733068287372589, -0.08933653682470322, 0.11823836714029312, 0.029258955270051956, 0.4636808931827545, -0.35526472330093384, -0.12917381525039673, -0.3622664511203766, -0.0888175219297409, -0.33918142318725586, -0.06330125033855438, 0.09179726243019104, 0.16747750341892242, 0.11154486238956451, 0.3894375264644623, -0.14929422736167908, 0.2069070190191269, 0.07649186998605728, 0.27684518694877625, -0.5142534971237183, 0.0994085818529129, -0.16824747622013092, 0.1659311056137085, 0.10551221668720245, -0.01854914426803589, 0.265672892332077, -0.3082682192325592, -0.15762615203857422, 0.32206103205680847, -0.05021437257528305, 0.32296842336654663, 0.08505506813526154, 0.07092498987913132, 0.4094833731651306, -0.42739641666412354, 0.10992047190666199, 0.14849629998207092, 0.1885126680135727, 0.04378911852836609, 0.18562571704387665, 0.16409152746200562, 0.07011406123638153, 0.20066142082214355, 0.22011612355709076, 0.2539496123790741, 0.43905794620513916, 0.13406144082546234, -0.15339553356170654, -0.03519076481461525, 0.2800716459751129, -0.05387149378657341, 0.22882486879825592, -0.3223938047885895, -0.33599933981895447, 0.00013955682516098022, 0.1727745085954666, -0.09464319050312042, -0.04178383946418762, 0.22288620471954346, -0.29193687438964844, 0.11597519367933273, 0.14704455435276031, 0.24461255967617035, 0.12203512340784073, 0.06477402150630951, 0.03815944492816925, 0.3802868723869324, -0.06318303942680359, -0.3046349287033081, 0.17870114743709564, 0.02228107675909996, -0.10939140617847443, -0.08685512095689774, -0.004594108555465937, -0.09076184779405594, -0.35962364077568054, 0.07865756750106812, -0.2090320736169815, 0.26526013016700745, -0.28342172503471375, 0.025333648547530174, -0.32369673252105713, -0.5549079775810242, -0.1282786875963211, -0.2587190568447113, -0.36676323413848877, -0.47166699171066284, -0.1990819275379181, 0.2129581719636917, 0.0010950453579425812, 0.043076835572719574, -0.30355679988861084, 0.025541499257087708, -0.11553503572940826, 0.10174421966075897, -0.10697683691978455, -0.1666286587715149, -0.16239362955093384, 0.084953173995018, 0.2841728925704956, 0.050495635718107224, 0.32740333676338196, -0.2320939600467682, 0.14140643179416656, -0.42809075117111206, -0.25858569145202637, 0.11040303111076355, -0.0014178380370140076, 0.11840251833200455, 0.11609457433223724, 0.31857436895370483, 0.007492128759622574, -0.16160953044891357, 0.3599187731742859, -0.03975488245487213, -0.10398610681295395, -0.15318462252616882, 0.05118232220411301, -0.04780653864145279, 0.052787017077207565, -0.5101013779640198, -0.3066563904285431, -0.26333966851234436, 0.3358568549156189, 0.18527428805828094, 0.2290140688419342, 0.05044565349817276, -0.13273435831069946, 0.25899919867515564, -0.23430824279785156, 0.14242830872535706, -0.3232116997241974, -0.21810074150562286, 0.3821178376674652, -0.351484090089798, -0.6084120869636536, 0.4241509437561035, 0.13692286610603333, 0.22617559134960175, -0.08853291720151901, -0.4297250509262085, -0.33313900232315063, -0.18113817274570465, -0.0792057067155838, 0.03192628547549248, 0.08754713088274002, 0.24445031583309174, -0.27915456891059875, -0.06368906795978546, 0.14634010195732117, -0.1846926212310791, -0.14038005471229553, -0.20905041694641113, 0.33788222074508667, -0.15790000557899475, 0.3981999456882477, -0.05708438903093338, 0.4537928104400635, 0.1372724324464798, 0.30408403277397156, 0.48741719126701355, 0.03468699753284454, 0.2897946238517761, -0.2126440703868866, -0.509473979473114, 0.13830411434173584, -0.19118651747703552, 0.12459331750869751, 0.20398187637329102, 0.1921006441116333, -0.08551616221666336, -0.4341147243976593, -0.30851033329963684, -0.3219682276248932, -0.31690752506256104, -0.18232694268226624, 0.042397353798151016, 0.05261991545557976, 0.24446311593055725, 0.2185753881931305, -0.019481651484966278, -0.31017395853996277, 0.054188843816518784, 0.5416944026947021, 0.11898831278085709, 0.09257947653532028, -0.2769881784915924, 0.03126202151179314, -0.5411673188209534, 0.44331032037734985, -0.06042599305510521, 0.29260963201522827, -0.18849888443946838, 0.10629808157682419, 0.3068791329860687, -0.05462733283638954, 0.6967258453369141, -0.26923367381095886, -0.0005028918385505676, 0.0008545331656932831, -0.1198100820183754, -0.28061965107917786, 0.05361315235495567, -0.09356686472892761, 0.17601631581783295, 0.32957544922828674, 0.20372045040130615, -0.2358027994632721, 0.08256370574235916, 0.08916240930557251, -0.04292012006044388, -0.16274790465831757, -0.019609181210398674, -0.17782875895500183, -0.589558482170105, -0.381870299577713, -0.12567085027694702, -0.16666348278522491, 0.3005029559135437, 0.24032440781593323, -0.04845316708087921, -0.01111639104783535, -0.022686118260025978, 0.23758302628993988, 0.11207982897758484, -0.06050006300210953, 0.2620757818222046, 0.13980107009410858, 0.4807407557964325, 0.3525258004665375, 0.14076738059520721, 0.4834395945072174, 0.04565061256289482, -0.5346739292144775, -0.09307141602039337, -0.16460630297660828, 0.15959620475769043, 0.30047398805618286, -0.042824577540159225, 0.1309925615787506, 0.2624965310096741, -0.033098407089710236, -0.22884859144687653, 0.11961653083562851, 0.35019195079803467, 0.17602881789207458, -0.5311894416809082, -0.5720807313919067, 0.14785128831863403, -0.13691571354866028, -0.12862364947795868, 0.2129906862974167, 0.46055489778518677, -0.23929281532764435, 0.14599967002868652, -0.20603767037391663, 1.087006688117981, -0.21739859879016876, 0.045397426933050156, -0.05753962695598602, -0.14394505321979523, 0.653250515460968, 0.007477875798940659, 0.12387596070766449, -0.3449161946773529, -0.2248339205980301, -0.20943835377693176, -0.1484733372926712, 0.33045634627342224, -0.12362278997898102, -0.09168532490730286, 0.28303274512290955, -0.1159011721611023, 0.016436312347650528, -0.039484329521656036, 0.4840388894081116, -0.290778785943985, -0.04272134229540825, -0.2715911269187927, 0.2442455291748047, -0.07435145974159241, 0.5073838829994202, -0.07925044745206833, -0.19532866775989532, -0.30991044640541077, -0.19803723692893982, -0.22748713195323944, 0.2533027231693268, -0.22095538675785065, 0.06141999363899231, 0.007083015516400337, -0.15583239495754242, 0.3595382273197174, 0.0770706906914711, 0.4290902018547058, 0.17586171627044678, -0.28673240542411804, 0.26839974522590637, -0.2440793216228485, -0.41340917348861694, 0.19997690618038177, 0.12100948393344879, 0.12026780843734741, -0.2287447452545166, -0.3740217983722687, 0.3365308940410614, 0.13207083940505981, -0.26855307817459106, -0.043517984449863434, 0.06401892751455307, -0.03311246633529663, -0.11565311253070831, -0.306266725063324, -0.2108110785484314, -0.09595239162445068, -0.11049941182136536, 0.1424640715122223, 0.010812286287546158, -0.04102602228522301, -0.12107773870229721, 0.3727421462535858, -0.10753706842660904, -0.0665520429611206, 0.4802019000053406, -0.0631454661488533, -0.1952742338180542, 0.5202471017837524, 0.2996332049369812, -0.21785305440425873, -0.03949768468737602, -0.13263987004756927, -0.04126941040158272, -0.4034329056739807, -0.2701363265514374, 0.11217688024044037, 0.35369473695755005, -0.2518196105957031, 0.15923385322093964, 0.09669637680053711, 0.061161138117313385, 0.02726498618721962, -0.4566658139228821, -0.08146857470273972, 0.03204753249883652, 0.04830687865614891, 0.09902721643447876, -0.02060798928141594, 0.15536397695541382, 0.2903241217136383, -0.07123645395040512, -0.2938937544822693, 0.06865252554416656, -0.11009432375431061, -0.09533987939357758, 0.32828497886657715, 0.07268670201301575, 0.13514494895935059, -0.10019795596599579, 0.0920548290014267, 0.1304195374250412, -0.30055513978004456, -0.14400538802146912, -0.07383991777896881, 0.1123490035533905, 0.08916839957237244, -0.5222033262252808, 0.032124828547239304, -0.24272027611732483, 0.10726845264434814, 0.07278423756361008, -0.022559117525815964, 0.25584372878074646, -0.002660326659679413, -0.24199847877025604, 0.05173153430223465, -0.10409518331289291, -0.019342737272381783, 0.21824504435062408, 0.06152345985174179, 0.45526695251464844, 0.08466695994138718, 0.02226322703063488, -0.16127894818782806, -0.07268436253070831, -0.18887518346309662, -0.060049690306186676, -0.05958414077758789, 0.08824485540390015, 0.3522056043148041, -0.14428555965423584, 0.1630149781703949, 0.24294300377368927, 0.43009153008461, 0.3109149634838104, -0.20587100088596344, 0.13245099782943726, 0.2761867046356201, 0.12999041378498077, -0.26201456785202026, -0.010667494498193264, 0.23805713653564453, 0.05883413180708885, -0.15280413627624512, -0.04670221358537674, 0.09628833830356598, 0.04012864828109741, -0.07312215864658356, 0.024593673646450043, 0.3203202486038208, -0.1239904910326004, 0.2710290551185608, 0.04245387390255928, -0.30318310856819153, -0.03541276231408119, 0.30680760741233826, 0.043387968093156815, -0.0508367195725441, 0.3909870982170105, -0.30852237343788147, -0.004617651924490929, -0.15489602088928223, 0.2224067896604538, 0.05598112940788269, -0.23621207475662231, 0.05646725744009018, 0.20031151175498962, -0.027740478515625, -0.06867756694555283, -0.01131138950586319, 0.483213871717453, -0.09049221128225327, 0.003388037672266364, -0.4195865988731384, 0.35596030950546265, 0.09006157517433167, -0.08931946754455566, -0.027081158012151718, -0.3401263654232025, -0.06888137757778168, 0.08814868330955505, -0.09489676356315613, -0.4113790988922119, -0.015406742691993713, 0.09603452682495117, -0.13220128417015076, -0.4204863905906677, 0.1579637974500656, -0.25692519545555115, 0.16041557490825653, -0.10669595748186111, 0.1941509246826172, 0.0945904552936554, 0.12415270507335663, 0.16550569236278534, 0.39396238327026367, 0.3633105754852295, 0.2968067228794098, 0.2680906355381012, 0.27241259813308716, -0.20600976049900055, 0.04334323853254318, 0.05378483980894089, 0.18804575502872467, 0.4151667058467865, 0.1424998790025711, 0.40786537528038025, 0.12228156626224518, -0.16955959796905518, 0.20996195077896118, -0.15876731276512146, 0.3979088068008423, -0.2815392017364502, 0.3838863968849182, -0.42616960406303406, 0.06654734164476395, -0.4638001322746277, -0.046841494739055634, -0.6553522348403931, 0.22701404988765717, 0.29269346594810486, -0.03287306800484657, 0.04431605339050293, -0.46298542618751526, 0.06037180870771408, -0.03189220651984215, 0.5121111273765564, 0.4413846433162689, 0.27993547916412354, -0.08261091262102127, -0.35021793842315674, -0.8646219968795776, 0.25862550735473633, -0.24498161673545837, 0.1599661409854889, -0.17741063237190247, 0.12345388531684875, -0.04432249814271927, 0.2011205404996872, 0.21088384091854095, 0.22467684745788574, -0.1243368461728096, -0.014564745128154755, -0.0013453662395477295, -0.08279874920845032, 0.05307690054178238, 0.16682060062885284, -0.10417573899030685, 0.01935010403394699, 0.34203261137008667, -0.3745066225528717, 0.02443397045135498, 0.04823382571339607, 0.10020054876804352, -0.2633821964263916, -0.12326109409332275, 0.449695348739624, 0.23569540679454803, 0.5508691072463989, 0.11079790443181992, -0.11277878284454346, -0.3748799264431, -0.42842429876327515, -0.1264220029115677, 0.39484038949012756, 0.09989683330059052, 0.3528144955635071, 0.08747217804193497, -0.15154699981212616, -0.22212611138820648, 0.5140665173530579, -0.2176375389099121, -0.09055998921394348, -0.1407701075077057, -0.08726570755243301, -0.11903050541877747, -0.09705213457345963, 0.037889428436756134, 0.04940243065357208, 0.057961106300354004, -0.030130401253700256, -0.24309709668159485, -0.3975871205329895, 0.5144396424293518, -0.43442413210868835, -0.11775049567222595, 0.024230193346738815, 0.14382439851760864, 0.026101388037204742, -0.3029158115386963, -0.3945889472961426, 0.2370142638683319, 0.2754211723804474, 0.02430984377861023, -0.09903028607368469, 0.07640877366065979, -0.37546229362487793, -0.016530051827430725, -0.1522701382637024, 0.25552770495414734, 0.18463429808616638, -0.2524825930595398, 0.16203707456588745, 0.0062272809445858 ]
https://github.com/huggingface/datasets/issues/3282
ConnectionError: Couldn't reach https://huggingface.co/datasets/oscar-corpus/OSCAR-2109/resolve/main/OSCAR-2109.py
Hi, Using `use_auth_token=True` and downloading the credentials with `huggingface-cli login` (stored in .huggingface/token) solved the issue. Should I leave the issue open until you fix the Dataset viewer issue?
## Dataset viewer issue for '*oscar-corpus/OSCAR-2109*' **Link:** *[link to the dataset viewer page](https://huggingface.co/datasets/oscar-corpus/OSCAR-2109)* *The dataset library cannot download any language from the oscar-corpus/OSCAR-2109 dataset. By entering the URL in your browser I can access the file.* ``` raise ConnectionError("Couldn't reach {}".format(url)) ConnectionError: Couldn't reach https://huggingface.co/datasets/oscar-corpus/OSCAR-2109/resolve/main/OSCAR-2109.py ``` Am I the one who added this dataset ? No Using the older version of [OSCAR](https://huggingface.co/datasets/oscar) I don't have any issues downloading languages with the dataset library.
29
ConnectionError: Couldn't reach https://huggingface.co/datasets/oscar-corpus/OSCAR-2109/resolve/main/OSCAR-2109.py ## Dataset viewer issue for '*oscar-corpus/OSCAR-2109*' **Link:** *[link to the dataset viewer page](https://huggingface.co/datasets/oscar-corpus/OSCAR-2109)* *The dataset library cannot download any language from the oscar-corpus/OSCAR-2109 dataset. By entering the URL in your browser I can access the file.* ``` raise ConnectionError("Couldn't reach {}".format(url)) ConnectionError: Couldn't reach https://huggingface.co/datasets/oscar-corpus/OSCAR-2109/resolve/main/OSCAR-2109.py ``` Am I the one who added this dataset ? No Using the older version of [OSCAR](https://huggingface.co/datasets/oscar) I don't have any issues downloading languages with the dataset library. Hi, Using `use_auth_token=True` and downloading the credentials with `huggingface-cli login` (stored in .huggingface/token) solved the issue. Should I leave the issue open until you fix the Dataset viewer issue?
[ -0.16486816108226776, 0.14332416653633118, 0.029134340584278107, 0.3350147604942322, 0.2738422155380249, 0.07492389529943466, -0.004863705486059189, 0.1728968322277069, -0.1965862512588501, 0.1607673317193985, -0.24759399890899658, -0.06617427617311478, 0.08118434250354767, 0.04797928035259247, 0.11276913434267044, -0.1378088742494583, -0.06303039938211441, -0.15043026208877563, -0.05123937129974365, -0.06396475434303284, -0.2606891393661499, 0.10492977499961853, 0.07753665745258331, 0.23193152248859406, -0.1920366883277893, -0.048760734498500824, -0.01601429097354412, 0.09204234182834625, -0.31500232219696045, -0.4188506007194519, 0.32546523213386536, 0.09520183503627777, 0.08474807441234589, 0.28274571895599365, -0.00011139292473671958, 0.02139183133840561, 0.4820179343223572, 0.018265986815094948, -0.4163567125797272, -0.564693033695221, 0.06291387230157852, -0.14232854545116425, 0.1999109983444214, 0.06169348210096359, -0.17112037539482117, -0.13024961948394775, 0.20961374044418335, -0.23904681205749512, 0.14864158630371094, 0.16387341916561127, 0.2620609402656555, 0.2970886528491974, 0.4424208104610443, -0.2402568906545639, 0.0660262405872345, -0.02785973995923996, -0.11778576672077179, 0.298856645822525, 0.1977044939994812, 0.16608282923698425, 0.0511002242565155, 0.22482693195343018, 0.2431873381137848, -0.10864627361297607, 0.4299424886703491, -0.14441992342472076, -0.3956693708896637, -0.378905713558197, 0.2582373321056366, 0.1838948130607605, 0.5891259908676147, -0.10212165862321854, -0.5237858891487122, 0.04329928010702133, 0.17049457132816315, -0.09151361882686615, 0.44289642572402954, 0.2691282629966736, -0.06939533352851868, 0.018386106938123703, -0.19299647212028503, -0.3573024272918701, -0.2812393307685852, 0.4102177023887634, -0.13409122824668884, 0.17318600416183472, -0.10931365191936493, 0.16612720489501953, 0.2565062940120697, -0.18147067725658417, -0.05268149450421333, 0.015012559480965137, -0.024562228471040726, 0.23576447367668152, -0.050974395126104355, 0.2536643147468567, 0.03640509769320488, 0.43001788854599, 0.1778438687324524, 0.07426129281520844, -0.08492308109998703, 0.18188807368278503, -0.3433172106742859, 0.03616764396429062, 0.35937586426734924, 0.06391723453998566, -0.03791277855634689, -0.06844183802604675, 0.3963209390640259, 0.35413938760757446, 0.17396163940429688, -0.13598015904426575, -0.06537982821464539, -0.26373395323753357, -0.2566167712211609, -0.20293119549751282, 0.39557182788848877, -0.22297395765781403, -0.07030762732028961, 0.10117125511169434, -0.2426474392414093, -0.1286511868238449, -0.0032872362062335014, 0.43315544724464417, -0.25156232714653015, 0.12496305257081985, 0.020977802574634552, 0.2003929316997528, -0.14028432965278625, -0.10552085936069489, -0.16816145181655884, 0.1077100932598114, -0.15625439584255219, -0.07326120138168335, 0.15813203155994415, -0.5202468633651733, 0.1302141547203064, -0.1410984843969345, 0.27479928731918335, -0.08533184230327606, 0.025373319163918495, -0.11097060143947601, -0.11751580983400345, 0.13566891849040985, 0.1278953105211258, 0.4154250919818878, 0.04847817122936249, -0.30482566356658936, -0.022145956754684448, -0.13408610224723816, -0.15792471170425415, -0.24194511771202087, -0.17728087306022644, 0.18351246416568756, -0.10527066141366959, 0.05055611580610275, -0.19333618879318237, -0.11585301160812378, -0.24520784616470337, 0.05245164409279823, -0.08049415796995163, -0.014723990112543106, -0.0942070484161377, -0.1953197866678238, 0.3287201523780823, 0.5413909554481506, -0.22807034850120544, -0.07359793037176132, -0.15450918674468994, -0.2726243734359741, -0.14040663838386536, 0.2142551690340042, -0.3014264702796936, -0.024150744080543518, -0.32895779609680176, 0.09726393222808838, 0.16341999173164368, -0.5110560655593872, -0.5605505108833313, 0.11985038965940475, -0.0942699983716011, 0.12995436787605286, -0.042230091989040375, 0.056075505912303925, 0.20569775998592377, -0.09232181310653687, 0.014588847756385803, 0.07992801070213318, 0.16188350319862366, -0.09547054767608643, -0.1197211891412735, -0.27097639441490173, -0.033986516296863556, 0.1920759081840515, 0.1689331978559494, -0.029609501361846924, 0.19597285985946655, 0.034833505749702454, 0.32892313599586487, -0.05483504757285118, 0.2571033537387848, 0.072471022605896, 0.19433356821537018, 0.5006559491157532, -0.02272498980164528, -0.06366637349128723, -0.2460806965827942, 0.17894938588142395, 0.03144368901848793, 0.3865860402584076, -0.42391765117645264, -0.1686965823173523, -0.2948090732097626, -0.05118865892291069, -0.3298170566558838, -0.053301457315683365, 0.108836829662323, 0.12615136802196503, 0.14065612852573395, 0.4854874610900879, -0.17689155042171478, 0.22569940984249115, 0.10235004127025604, 0.2652812600135803, -0.5332072973251343, 0.1512332558631897, -0.13070805370807648, 0.12658701837062836, 0.11843419075012207, 0.05181918293237686, 0.15667098760604858, -0.3374658226966858, -0.10548378527164459, 0.34037283062934875, -0.10754190385341644, 0.3886389136314392, -0.03297484666109085, 0.06589490920305252, 0.4032423496246338, -0.3652525842189789, 0.07430945336818695, 0.11947770416736603, 0.17682914435863495, 0.05601399391889572, 0.12150460481643677, 0.2094956338405609, 0.06393744051456451, 0.1965591460466385, 0.21265356242656708, 0.2024216651916504, 0.35905835032463074, 0.14986677467823029, -0.2471623718738556, -0.08171164989471436, 0.23150309920310974, -0.09104414284229279, 0.29079052805900574, -0.20169712603092194, -0.3573431968688965, -0.061545513570308685, 0.24572548270225525, -0.00930115394294262, -0.13670676946640015, 0.27308908104896545, -0.24047577381134033, 0.18429437279701233, 0.11364991962909698, 0.18546847999095917, 0.1792413592338562, 0.06773992627859116, -0.03655485436320305, 0.2788810133934021, -0.00270087830722332, -0.25605538487434387, 0.13194230198860168, 0.1012537032365799, -0.047034360468387604, -0.04435308277606964, 0.011760398745536804, -0.071490578353405, -0.36700454354286194, 0.0622926689684391, -0.22730930149555206, 0.28739356994628906, -0.29508140683174133, 0.052402399480342865, -0.3244498074054718, -0.52840656042099, -0.18959887325763702, -0.3248277008533478, -0.43287983536720276, -0.34485310316085815, -0.20057237148284912, 0.2038096934556961, -0.017426587641239166, 0.06891249120235443, -0.26044079661369324, 0.027677148580551147, -0.18799051642417908, 0.10267840325832367, -0.14377494156360626, -0.1602575182914734, -0.1744534969329834, 0.08504687249660492, 0.309897243976593, -0.022644979879260063, 0.40510207414627075, -0.25171589851379395, 0.0962357297539711, -0.3601126968860626, -0.29114481806755066, 0.066373810172081, 0.034797679632902145, 0.12435532361268997, 0.1953638345003128, 0.28212231397628784, -0.08367767930030823, -0.24909861385822296, 0.4150029420852661, -0.03293158859014511, -0.10182692110538483, -0.205518901348114, 0.06958671659231186, 0.02997131459414959, 0.08908666670322418, -0.40101006627082825, -0.35695210099220276, -0.3483041822910309, 0.4968693256378174, 0.11765307188034058, 0.15087106823921204, 0.054491687566041946, -0.1268777996301651, 0.2905275225639343, -0.2951737642288208, 0.10241007059812546, -0.2724830210208893, -0.24140328168869019, 0.3005031645298004, -0.26923424005508423, -0.5744301080703735, 0.3569948673248291, 0.13412629067897797, 0.25604626536369324, -0.09348230063915253, -0.3751751184463501, -0.2904052138328552, -0.1713009923696518, 0.06194017454981804, 0.07333087176084518, 0.04342129826545715, 0.26636114716529846, -0.19951476156711578, -0.024161625653505325, 0.15440136194229126, -0.12808679044246674, -0.08044897764921188, -0.24495327472686768, 0.30543580651283264, -0.08634829521179199, 0.39589646458625793, -0.04261152818799019, 0.4725378155708313, 0.1841079592704773, 0.16718998551368713, 0.45091426372528076, 0.06755241751670837, 0.3779694139957428, -0.1688825786113739, -0.580782949924469, 0.19576850533485413, -0.13974592089653015, 0.15321677923202515, 0.23124293982982635, 0.1666765809059143, 0.08043765276670456, -0.4232071340084076, -0.27847641706466675, -0.26935556530952454, -0.39484065771102905, -0.14620541036128998, 0.03160640969872475, 0.10116875916719437, 0.20719188451766968, 0.16242408752441406, 0.04072530195116997, -0.24529239535331726, 0.00755126029253006, 0.5038946270942688, 0.13451050221920013, 0.14009419083595276, -0.25952526926994324, 0.03143244981765747, -0.5529119968414307, 0.36521458625793457, -0.003244951367378235, 0.3164377212524414, -0.13628849387168884, 0.08886633068323135, 0.2612544298171997, -0.07423657923936844, 0.6776659488677979, -0.14031974971294403, -0.03933408111333847, -0.03345485404133797, -0.10720761865377426, -0.3560357093811035, 0.06674617528915405, -0.05570776015520096, 0.17523324489593506, 0.36120930314064026, 0.35907822847366333, -0.3006407916545868, 0.029564548283815384, 0.07728944718837738, -0.0009568807436153293, -0.1662409007549286, -0.054861437529325485, -0.2482696920633316, -0.5621877312660217, -0.3612445890903473, -0.05400920659303665, -0.09454794973134995, 0.3179279565811157, 0.24636965990066528, 0.025682825595140457, -0.019962826743721962, -0.054216418415308, 0.24983619153499603, 0.042721230536699295, -0.006538987159729004, 0.27641505002975464, 0.23395001888275146, 0.5212613344192505, 0.3816528618335724, 0.27806711196899414, 0.5176005363464355, 0.03539237007498741, -0.571601152420044, -0.11723948270082474, -0.03245798125863075, 0.17519012093544006, 0.33589571714401245, -0.05594996362924576, 0.1642022728919983, 0.25846123695373535, 0.02781878039240837, -0.27227774262428284, 0.12232352793216705, 0.34887221455574036, 0.1523318588733673, -0.5117806196212769, -0.45054149627685547, 0.18130183219909668, -0.07427853345870972, -0.06613153219223022, 0.14049354195594788, 0.4859228730201721, -0.24893398582935333, 0.08561141788959503, -0.14022499322891235, 1.034174919128418, -0.1703871637582779, 0.057010382413864136, -0.012308388948440552, -0.1666053980588913, 0.7590104937553406, -0.02360694482922554, 0.037661924958229065, -0.22632291913032532, -0.22745274007320404, -0.16551418602466583, -0.06752917170524597, 0.3711974024772644, -0.1817077249288559, -0.07865738868713379, 0.2388758659362793, -0.06305652856826782, 0.019191130995750427, 0.006337322294712067, 0.4314374625682831, -0.3705940842628479, -0.1414158046245575, -0.32320722937583923, 0.2340749204158783, -0.12588316202163696, 0.5126872658729553, -0.04128542169928551, -0.18830695748329163, -0.24060697853565216, -0.23440825939178467, -0.23758426308631897, 0.14935624599456787, -0.31462493538856506, 0.022465432062745094, 0.026819270104169846, -0.18748827278614044, 0.3824213445186615, 0.0985637977719307, 0.35333967208862305, 0.13327495753765106, -0.2754128575325012, 0.2880634069442749, -0.24968630075454712, -0.3835183084011078, 0.2110585719347, 0.0860755518078804, 0.14187228679656982, -0.1656183898448944, -0.27693262696266174, 0.2772887647151947, 0.11583317816257477, -0.12581002712249756, -0.08210690319538116, 0.01587682217359543, -0.016749583184719086, -0.12985770404338837, -0.30289819836616516, -0.2209511399269104, -0.02472860738635063, -0.1102486401796341, 0.14304840564727783, 0.03296198695898056, -0.0765497013926506, -0.09954995661973953, 0.212772935628891, -0.04583652317523956, -0.11558768153190613, 0.545011579990387, -0.09638168662786484, -0.21743223071098328, 0.4796566963195801, 0.29006993770599365, -0.2047104835510254, -0.010679446160793304, -0.11751358956098557, 0.026330260559916496, -0.5404437780380249, -0.22506257891654968, 0.2394946962594986, 0.32843178510665894, -0.2899572551250458, 0.20951245725154877, 0.11244199424982071, -0.08642566949129105, 0.04618095979094505, -0.39293211698532104, -0.17463211715221405, 0.11329302191734314, 0.13060951232910156, 0.07484035193920135, -0.022236313670873642, 0.22014537453651428, 0.22177208960056305, -0.02439081110060215, -0.2933351993560791, 0.06296668946743011, -0.14792382717132568, -0.13971082866191864, 0.31036972999572754, 0.022433288395404816, 0.19540056586265564, -0.12382937967777252, 0.09216750413179398, 0.20740455389022827, -0.252802312374115, -0.14013808965682983, -0.14197427034378052, 0.10110437870025635, 0.05827239155769348, -0.4569297432899475, 0.1037411317229271, -0.14090803265571594, 0.1497025191783905, 0.06119661033153534, -0.04102610424160957, 0.31945380568504333, 0.02945028617978096, -0.2329608052968979, -0.0145183764398098, -0.06539707630872726, 0.05300123989582062, 0.18800324201583862, 0.07891358435153961, 0.4356103539466858, 0.11553264409303665, 0.0789637416601181, -0.15730297565460205, -0.04722832143306732, -0.1455010026693344, -0.013261675834655762, -0.10955178737640381, 0.05068018287420273, 0.3181726634502411, -0.16719287633895874, 0.11602732539176941, 0.2273859977722168, 0.5253504514694214, 0.30893731117248535, -0.17132899165153503, 0.04843845218420029, 0.39625492691993713, 0.14231868088245392, -0.30744504928588867, -0.00495500722900033, 0.21300525963306427, 0.009518329985439777, -0.11999918520450592, 0.002284422516822815, 0.05703059211373329, 0.019210457801818848, -0.03715261071920395, 0.023517347872257233, 0.3894902765750885, -0.0570484921336174, 0.31521040201187134, 0.07250755280256271, -0.18435944616794586, -0.010005291551351547, 0.3322506248950958, 0.10445493459701538, 0.09149938821792603, 0.2825496196746826, -0.37905243039131165, 0.012839221395552158, -0.2788865864276886, 0.274997353553772, 0.08285465091466904, -0.34245142340660095, 0.016161782667040825, 0.20757487416267395, -0.10316747426986694, -0.008081592619419098, -0.06839200854301453, 0.6271143555641174, -0.1702364981174469, -0.08421152830123901, -0.3662065267562866, 0.41052865982055664, 0.017747320234775543, -0.10569740831851959, 0.016086317598819733, -0.2999866306781769, -0.10855637490749359, 0.1314767450094223, -0.09850192070007324, -0.3913338780403137, 0.009472854435443878, 0.12733322381973267, -0.08696897327899933, -0.46306687593460083, 0.030054911971092224, -0.2331487238407135, 0.22691276669502258, -0.12040108442306519, 0.2709852457046509, 0.16683128476142883, 0.05481065809726715, 0.12681788206100464, 0.43125513195991516, 0.3864718973636627, 0.24232986569404602, 0.3937188386917114, 0.35100993514060974, -0.23364602029323578, 0.11658520996570587, -0.018919985741376877, 0.19685117900371552, 0.35847991704940796, 0.1206190437078476, 0.40895092487335205, 0.15162910521030426, -0.19671720266342163, 0.12072916328907013, -0.24139626324176788, 0.3921586573123932, -0.3245765268802643, 0.3602999448776245, -0.5171440839767456, 0.0717584565281868, -0.46301737427711487, -0.045179031789302826, -0.5943788886070251, 0.25215277075767517, 0.1769331693649292, -0.001183357322588563, 0.051812201738357544, -0.43384692072868347, 0.06032738834619522, 0.028213458135724068, 0.480844110250473, 0.3991788327693939, 0.24166452884674072, -0.11494045704603195, -0.40709197521209717, -0.8393811583518982, 0.17710396647453308, -0.20000512897968292, 0.17948020994663239, -0.1653335690498352, 0.12012927234172821, -0.03811601549386978, 0.11276180297136307, 0.12305271625518799, 0.20488214492797852, -0.0985666885972023, -0.06965820491313934, 0.026626985520124435, -0.037157092243433, -0.035183124244213104, 0.08496865630149841, -0.017484020441770554, 0.07067713886499405, 0.27410438656806946, -0.30287063121795654, 0.016157574951648712, -0.061323195695877075, 0.13720129430294037, -0.3057480454444885, -0.23854675889015198, 0.30143147706985474, 0.2496522068977356, 0.45587828755378723, 0.1273878514766693, -0.14547964930534363, -0.37333765625953674, -0.33416521549224854, -0.18068483471870422, 0.37095409631729126, 0.07571399211883545, 0.4197474420070648, -0.0017333384603261948, -0.18128998577594757, -0.34825655817985535, 0.42647919058799744, -0.1331619769334793, -0.07663542032241821, -0.15149688720703125, -0.0131289167329669, -0.1196739450097084, -0.12599602341651917, 0.08948402106761932, 0.2169824242591858, 0.029850071296095848, -0.013434790074825287, -0.2746106684207916, -0.4000537693500519, 0.5648267269134521, -0.3957751989364624, -0.04454350098967552, 0.08212235569953918, 0.20350944995880127, 0.07087378948926926, -0.3798578977584839, -0.439083069562912, 0.22729316353797913, 0.2930641174316406, 0.07883536070585251, -0.11406822502613068, 0.0964609831571579, -0.3941778838634491, -0.11137893795967102, -0.14837318658828735, 0.22897052764892578, 0.17635944485664368, -0.23608101904392242, 0.33202800154685974, 0.06630466878414154 ]
https://github.com/huggingface/datasets/issues/3282
ConnectionError: Couldn't reach https://huggingface.co/datasets/oscar-corpus/OSCAR-2109/resolve/main/OSCAR-2109.py
Cool ! Yes let's keep this issue open until the viewer is fixed - I'll close it when this is fixed. Thanks
## Dataset viewer issue for '*oscar-corpus/OSCAR-2109*' **Link:** *[link to the dataset viewer page](https://huggingface.co/datasets/oscar-corpus/OSCAR-2109)* *The dataset library cannot download any language from the oscar-corpus/OSCAR-2109 dataset. By entering the URL in your browser I can access the file.* ``` raise ConnectionError("Couldn't reach {}".format(url)) ConnectionError: Couldn't reach https://huggingface.co/datasets/oscar-corpus/OSCAR-2109/resolve/main/OSCAR-2109.py ``` Am I the one who added this dataset ? No Using the older version of [OSCAR](https://huggingface.co/datasets/oscar) I don't have any issues downloading languages with the dataset library.
22
ConnectionError: Couldn't reach https://huggingface.co/datasets/oscar-corpus/OSCAR-2109/resolve/main/OSCAR-2109.py ## Dataset viewer issue for '*oscar-corpus/OSCAR-2109*' **Link:** *[link to the dataset viewer page](https://huggingface.co/datasets/oscar-corpus/OSCAR-2109)* *The dataset library cannot download any language from the oscar-corpus/OSCAR-2109 dataset. By entering the URL in your browser I can access the file.* ``` raise ConnectionError("Couldn't reach {}".format(url)) ConnectionError: Couldn't reach https://huggingface.co/datasets/oscar-corpus/OSCAR-2109/resolve/main/OSCAR-2109.py ``` Am I the one who added this dataset ? No Using the older version of [OSCAR](https://huggingface.co/datasets/oscar) I don't have any issues downloading languages with the dataset library. Cool ! Yes let's keep this issue open until the viewer is fixed - I'll close it when this is fixed. Thanks
[ -0.22987356781959534, 0.29968953132629395, 0.015976183116436005, 0.34803926944732666, 0.24289672076702118, 0.0843784287571907, 0.02897503599524498, 0.21517091989517212, -0.19251811504364014, 0.15969456732273102, -0.20041854679584503, -0.04559898376464844, 0.09618120640516281, -0.09563032537698746, 0.04574669897556305, -0.13472186028957367, -0.07463333755731583, -0.08021968603134155, 0.010940752923488617, -0.030785012990236282, -0.33090847730636597, 0.01907288283109665, 0.026401378214359283, 0.18985074758529663, -0.14159725606441498, -0.0024225618690252304, -0.033242035657167435, -0.031797170639038086, -0.3335894048213959, -0.4994383156299591, 0.25564515590667725, 0.10017642378807068, 0.07137937098741531, 0.31334930658340454, -0.00011423500836826861, -0.0024444088339805603, 0.5902068614959717, 0.05850454419851303, -0.3949887156486511, -0.5379754900932312, 0.00010614469647407532, -0.15117107331752777, 0.23180708289146423, 0.036164574325084686, -0.0230173971503973, -0.18279321491718292, 0.24493730068206787, -0.25560399889945984, 0.04414038360118866, 0.09284867346286774, 0.24528256058692932, 0.15932641923427582, 0.48054444789886475, -0.27392199635505676, 0.16886168718338013, -0.07165618240833282, -0.14802399277687073, 0.3112684488296509, 0.1860905885696411, 0.15410077571868896, -0.00231962651014328, 0.2536826729774475, 0.15971960127353668, -0.12542128562927246, 0.40196624398231506, -0.18666091561317444, -0.3489052653312683, -0.3790023922920227, 0.271165668964386, 0.17643122375011444, 0.7827457189559937, -0.07496632635593414, -0.5295537710189819, 0.08697829395532608, 0.1829093098640442, -0.03479362279176712, 0.4602307677268982, 0.34496691823005676, -0.0739646628499031, 0.06325505673885345, -0.09666255116462708, -0.4122805595397949, -0.29637208580970764, 0.48301392793655396, -0.2478577047586441, 0.2111051231622696, -0.10588572174310684, 0.17060676217079163, 0.24660126864910126, -0.031543657183647156, 0.1761508584022522, -0.0914616659283638, 0.00480448454618454, 0.1260884702205658, -0.06106911227107048, 0.24192219972610474, -0.018010415136814117, 0.36248579621315, 0.09703389555215836, 0.022740401327610016, -0.05407589673995972, 0.1294173300266266, -0.3970663249492645, 0.07867737114429474, 0.44259655475616455, 0.02770952507853508, -0.11894694715738297, -0.03375796973705292, 0.4811336398124695, 0.3868338465690613, 0.1491968333721161, -0.1156434640288353, -0.07981903105974197, -0.35843002796173096, -0.24006114900112152, -0.15810877084732056, 0.5349317193031311, -0.18137210607528687, -0.11621854454278946, 0.10879442095756531, -0.2916104793548584, -0.13628187775611877, -0.027403652667999268, 0.3910422623157501, -0.30498790740966797, 0.2576603591442108, -0.02047785371541977, 0.18229500949382782, -0.08431165665388107, -0.16717040538787842, -0.14100322127342224, 0.11257320642471313, -0.19585531949996948, -0.1458219438791275, 0.14234483242034912, -0.47204217314720154, 0.03423328697681427, -0.11465371400117874, 0.23505035042762756, -0.1282939612865448, -0.001334628090262413, -0.19568638503551483, -0.16876277327537537, 0.2050844430923462, 0.1475646048784256, 0.4707227051258087, 0.07621932029724121, -0.3385764956474304, 0.020067617297172546, 0.09488826245069504, -0.17897331714630127, -0.17614534497261047, -0.22931797802448273, 0.16019213199615479, -0.11609696596860886, 0.006354168057441711, -0.141385018825531, -0.11672276258468628, -0.19538164138793945, -0.05448334664106369, -0.052862443029880524, -0.042272716760635376, -0.05386466160416603, -0.2697578966617584, 0.27801769971847534, 0.5737362504005432, -0.43031057715415955, 0.048196181654930115, -0.2930605411529541, -0.24904325604438782, -0.09533814340829849, 0.17037537693977356, -0.27504244446754456, -0.023106075823307037, -0.36339491605758667, -0.004018358886241913, 0.35045382380485535, -0.41371360421180725, -0.6100946664810181, 0.27692610025405884, -0.10287314653396606, 0.10561365634202957, -0.004619687795639038, 0.11285217106342316, 0.1893273890018463, -0.17586463689804077, -0.0677834004163742, -0.01450071856379509, 0.0849079117178917, -0.1552448272705078, -0.09510941803455353, -0.2506187856197357, 0.008832769468426704, 0.13772135972976685, 0.18320763111114502, 0.07032225281000137, 0.22935128211975098, 0.04839951917529106, 0.3863131105899811, -0.013891343027353287, 0.301180362701416, 0.0596945583820343, 0.20796586573123932, 0.4459072947502136, 0.014293506741523743, -0.06501659750938416, -0.22227099537849426, 0.13231530785560608, 0.04508260637521744, 0.24808017909526825, -0.44213980436325073, -0.15493281185626984, -0.367906391620636, -0.014622320421040058, -0.30300915241241455, 0.0011283047497272491, 0.08331573009490967, 0.11013425886631012, -0.0796724259853363, 0.4337308406829834, -0.19113968312740326, 0.1123141348361969, 0.12201160192489624, 0.23026949167251587, -0.4320511221885681, 0.19306494295597076, -0.14975397288799286, 0.1702527552843094, 0.1020205020904541, -0.021324746310710907, 0.15846872329711914, -0.25344252586364746, -0.18662548065185547, 0.3259758949279785, -0.005588213447481394, 0.4241673946380615, 0.052466556429862976, 0.090312160551548, 0.3939424157142639, -0.44619765877723694, 0.147137850522995, 0.2177409827709198, 0.19812200963497162, 0.02230881154537201, 0.17408379912376404, 0.1357349157333374, 0.04804806783795357, 0.17772558331489563, 0.1676744818687439, 0.27508115768432617, 0.3247307538986206, 0.12916700541973114, -0.21208612620830536, -0.06651420891284943, 0.2800680100917816, 0.004392882809042931, 0.24154101312160492, -0.19204027950763702, -0.38157153129577637, -0.029831238090991974, 0.24167145788669586, -0.03484747186303139, -0.06206188350915909, 0.3564069867134094, -0.22379890084266663, 0.14001324772834778, 0.004708491265773773, 0.2431885153055191, 0.173676535487175, 0.04831787943840027, -0.012286845594644547, 0.33378010988235474, 0.020794525742530823, -0.331193745136261, 0.1385883390903473, 0.2239212542772293, 0.02363889105618, 0.028353137895464897, -0.0003627329133450985, -0.007316906936466694, -0.3158526122570038, 0.03690766915678978, -0.1662096232175827, 0.25682780146598816, -0.26555776596069336, 0.06592535227537155, -0.33696192502975464, -0.5760096907615662, -0.24534237384796143, -0.27080002427101135, -0.34688249230384827, -0.4530678689479828, -0.20762069523334503, 0.28803732991218567, 0.012435197830200195, 0.12326101213693619, -0.4658850133419037, 0.08243420720100403, -0.1876073181629181, 0.15179836750030518, -0.1346862018108368, -0.21027769148349762, -0.2040732502937317, 0.10014626383781433, 0.30191490054130554, -0.10464061051607132, 0.3230874240398407, -0.15047377347946167, 0.1700940728187561, -0.39496177434921265, -0.26839572191238403, 0.0396357960999012, 0.10910201817750931, 0.11691058427095413, 0.2513173222541809, 0.273512601852417, -0.049676377326250076, -0.23341983556747437, 0.3328443765640259, -0.0249565988779068, -0.015282475389540195, -0.225500226020813, 0.04553169012069702, 0.0763455182313919, 0.1926182210445404, -0.43999090790748596, -0.31112509965896606, -0.39873006939888, 0.3509676456451416, 0.03633832558989525, 0.1771811842918396, -0.04101657122373581, -0.13894391059875488, 0.16533130407333374, -0.15353254973888397, 0.01977911964058876, -0.2172437161207199, -0.14840534329414368, 0.35880330204963684, -0.291596382856369, -0.5922045111656189, 0.3649151623249054, 0.09819808602333069, 0.19552786648273468, -0.09632449597120285, -0.48276710510253906, -0.23401574790477753, -0.11947415769100189, -0.08255580067634583, 0.1086973249912262, -0.02536475844681263, 0.15289728343486786, -0.11993782967329025, -0.032663483172655106, 0.11649379879236221, -0.08011270314455032, -0.1925848424434662, -0.26775458455085754, 0.3589242398738861, -0.03541320562362671, 0.43433910608291626, 0.007677949965000153, 0.3766167163848877, 0.2034997045993805, 0.2767505347728729, 0.5129262208938599, 0.09341145306825638, 0.3596448302268982, -0.19121557474136353, -0.5392753481864929, 0.1764729917049408, -0.2576504051685333, 0.0666595846414566, 0.18394480645656586, 0.10649202018976212, -0.10036271065473557, -0.43898719549179077, -0.2652624249458313, -0.2773422300815582, -0.3466954827308655, -0.11823520064353943, -0.07292212545871735, 0.09971824288368225, 0.19746287167072296, 0.13513952493667603, 0.07426124811172485, -0.2984585762023926, 0.00010171066969633102, 0.4808003306388855, 0.21732081472873688, 0.07118689268827438, -0.1845957189798355, 0.07186337560415268, -0.4725918173789978, 0.44432133436203003, -0.020515915006399155, 0.3676883578300476, -0.112611323595047, 0.17884904146194458, 0.279500812292099, -0.05032936483621597, 0.8032041788101196, -0.17110393941402435, -0.04108061641454697, 0.04049766808748245, 0.014525141566991806, -0.3354414105415344, 0.055336687713861465, -0.011448614299297333, 0.22403237223625183, 0.27300646901130676, 0.19888055324554443, -0.20193850994110107, 0.08191214501857758, 0.18195629119873047, 0.02895710989832878, -0.20991812646389008, -0.15130534768104553, -0.20428557693958282, -0.47505131363868713, -0.2919892966747284, -0.16571322083473206, -0.10617322474718094, 0.2860943675041199, 0.21789614856243134, -0.040609996765851974, -0.03498418629169464, -0.07913678884506226, 0.19851846992969513, -0.06993140280246735, -0.05465994030237198, 0.25312864780426025, 0.19087554514408112, 0.5214024782180786, 0.38620296120643616, 0.2551926076412201, 0.462556928396225, 0.001773059368133545, -0.6327350735664368, -0.015833556652069092, -0.04146741330623627, 0.16281156241893768, 0.3265712261199951, -0.06103457137942314, 0.06407684087753296, 0.2948276400566101, -0.0893479734659195, -0.2535724937915802, 0.08182057738304138, 0.41982918977737427, 0.05279656872153282, -0.606332540512085, -0.6154420375823975, 0.2778880298137665, -0.06727345287799835, -0.11259300261735916, 0.24760790169239044, 0.37345606088638306, -0.1617932766675949, 0.09541857987642288, -0.18417975306510925, 1.1131259202957153, -0.11025087535381317, 0.003755073994398117, -0.030345067381858826, -0.24535176157951355, 0.7026159167289734, -0.058407291769981384, 0.08360514789819717, -0.2956250309944153, -0.31648772954940796, -0.25252866744995117, -0.12405961751937866, 0.4344368278980255, -0.14574187994003296, -0.10291078686714172, 0.2931681275367737, -0.17024293541908264, 0.02929178811609745, 0.10168206691741943, 0.3533729612827301, -0.3073529005050659, -0.06747905910015106, -0.26222702860832214, 0.1897907555103302, -0.12317976355552673, 0.4940403997898102, -0.11327044665813446, -0.1779831200838089, -0.17526201903820038, -0.2539743483066559, -0.29358792304992676, 0.22977611422538757, -0.2182714194059372, 0.07343742996454239, -0.033090997487306595, -0.20816367864608765, 0.4366442561149597, 0.12917853891849518, 0.2842388153076172, 0.09470044076442719, -0.1772036850452423, 0.4128149449825287, -0.1889551281929016, -0.320907324552536, 0.2923215925693512, 0.11265423893928528, 0.10463840514421463, -0.16144800186157227, -0.31334513425827026, 0.3954043984413147, 0.11296968162059784, -0.18154297769069672, 0.007685601711273193, -0.010029532015323639, 0.0356675386428833, -0.11912338435649872, -0.2612525522708893, -0.3014911711215973, -0.016419142484664917, -0.16085614264011383, 0.11632528901100159, 0.03934691101312637, 0.010928090661764145, -0.04102575033903122, 0.17713434994220734, -0.08905477821826935, -0.08986137807369232, 0.5933374166488647, -0.034460343420505524, -0.294281542301178, 0.5143276453018188, 0.2807084321975708, -0.26833873987197876, -0.0036779269576072693, -0.023687884211540222, -0.08986590802669525, -0.5248208045959473, -0.16368812322616577, 0.087273508310318, 0.40215325355529785, -0.28418615460395813, 0.18426471948623657, 0.10659541189670563, 0.06343823671340942, -0.04620923474431038, -0.5114604234695435, -0.053926460444927216, 0.07415515184402466, 0.07742057740688324, 0.07484705746173859, -0.06054671108722687, 0.1324518620967865, 0.3009873926639557, -0.017093060538172722, -0.26292744278907776, 0.012189042754471302, -0.10099246352910995, -0.19244420528411865, 0.18382947146892548, 0.09476709365844727, 0.11551208049058914, -0.11265957355499268, 0.08829018473625183, 0.13926875591278076, -0.2595660984516144, -0.11047855764627457, -0.10331954061985016, 0.13318514823913574, 0.017667904496192932, -0.38099849224090576, 0.027898184955120087, -0.24452699720859528, 0.13078482449054718, 0.1458219289779663, -0.15655457973480225, 0.23364251852035522, 0.03302918002009392, -0.2768007218837738, 0.020189546048641205, -0.1524619162082672, 0.03231578320264816, 0.28580254316329956, 0.03329171612858772, 0.4748408794403076, 0.11641879379749298, 0.12829358875751495, -0.028766030445694923, -0.10314261168241501, -0.2453688532114029, -0.07992301136255264, -0.1588023453950882, 0.04841272160410881, 0.35095131397247314, -0.216055229306221, 0.17597633600234985, 0.28478673100471497, 0.5430663824081421, 0.37564536929130554, -0.1791457235813141, -0.03048750013113022, 0.3399629294872284, 0.11631753295660019, -0.3530905246734619, -0.0018462007865309715, 0.25504070520401, 0.13116921484470367, -0.164987713098526, -0.06636311858892441, 0.05904961749911308, 0.07799749076366425, -0.1327774077653885, 0.0712280198931694, 0.4416259229183197, -0.11687883734703064, 0.4259811341762543, 0.24520787596702576, -0.14903736114501953, 0.06360571086406708, 0.29750701785087585, 0.15578332543373108, 0.09614855796098709, 0.4094744324684143, -0.301128625869751, -0.06302972137928009, -0.11416862159967422, 0.18822725117206573, 0.09202976524829865, -0.3451961278915405, 0.08292372524738312, 0.2568252384662628, -0.12265998125076294, -0.07726909965276718, 0.018194690346717834, 0.42155128717422485, -0.06271366775035858, 0.00571223022416234, -0.3461659550666809, 0.35244667530059814, 0.10253977030515671, -0.09642617404460907, -0.050521835684776306, -0.3273397982120514, -0.10713841021060944, 0.09344080090522766, -0.08800213038921356, -0.2735387682914734, 0.005793392658233643, 0.12698906660079956, -0.1079065352678299, -0.45265939831733704, 0.09029628336429596, -0.2414100170135498, 0.20867446064949036, -0.1264800876379013, 0.17989332973957062, 0.19189941883087158, 0.1612015962600708, 0.15904280543327332, 0.4452037513256073, 0.37211868166923523, 0.30309948325157166, 0.3112209141254425, 0.2535337507724762, -0.24801893532276154, 0.0405973419547081, 0.025309138000011444, 0.09625934064388275, 0.4101724922657013, 0.13726221024990082, 0.44525712728500366, 0.1229507327079773, -0.1497592031955719, 0.3324289917945862, -0.1725160926580429, 0.43318769335746765, -0.30037373304367065, 0.45224711298942566, -0.4396522641181946, 0.05206773430109024, -0.3554671108722687, -0.06162772327661514, -0.5360228419303894, 0.19293823838233948, 0.28013181686401367, -0.08434558659791946, 0.009943336248397827, -0.3753030002117157, 0.04411591589450836, 0.08372553437948227, 0.4359753429889679, 0.4304569959640503, 0.2908623516559601, -0.11005964875221252, -0.39251768589019775, -0.8604526519775391, 0.2654452323913574, -0.16611260175704956, 0.18691757321357727, -0.10489297658205032, 0.04265204071998596, -0.07234122604131699, 0.18205879628658295, 0.11026939749717712, 0.24514523148536682, -0.10324304550886154, 0.10032668709754944, 0.014796674251556396, -0.1198272705078125, 0.10427241027355194, 0.1849876046180725, -0.1611720323562622, -0.009519383311271667, 0.3410956859588623, -0.33451297879219055, 0.0015861839056015015, -0.0999244749546051, 0.02071508765220642, -0.22902321815490723, -0.189305379986763, 0.3753867745399475, 0.2647731304168701, 0.5009153485298157, 0.09390047937631607, -0.12564153969287872, -0.4499052166938782, -0.43694305419921875, -0.15064653754234314, 0.3031556010246277, 0.09172861278057098, 0.3368544578552246, -0.02778461202979088, -0.08831317722797394, -0.3073135018348694, 0.4242902100086212, -0.2569078803062439, 0.09684357792139053, -0.18825070559978485, -0.12530219554901123, -0.08531655371189117, -0.08290837705135345, 0.07469527423381805, 0.06433839350938797, 0.059274766594171524, 0.05733533948659897, -0.259816974401474, -0.4461221992969513, 0.5827842950820923, -0.40526795387268066, -0.10900653898715973, 0.040915586054325104, 0.16228549182415009, -0.023418016731739044, -0.2404865026473999, -0.34399092197418213, 0.17103996872901917, 0.4121434688568115, 0.0797620415687561, -0.06827463209629059, 0.01599780097603798, -0.32161062955856323, -0.07659807056188583, -0.11547257006168365, 0.21941179037094116, 0.11003176122903824, -0.2925571799278259, 0.2049235850572586, 0.024603646248579025 ]
https://github.com/huggingface/datasets/issues/3282
ConnectionError: Couldn't reach https://huggingface.co/datasets/oscar-corpus/OSCAR-2109/resolve/main/OSCAR-2109.py
The error I get when trying to load OSCAR 21.09 is this ``` ConnectionError: Couldn't reach https://huggingface.co/datasets/oscar-corpus/OSCAR-2109/resolve/main/OSCAR-2109.py ``` The URL I get in the browser is this ``` https://huggingface.co/datasets/oscar-corpus/OSCAR-2109/blob/main/OSCAR-2109.py ``` Maybe URL is the issue? (resolve vs blob)
## Dataset viewer issue for '*oscar-corpus/OSCAR-2109*' **Link:** *[link to the dataset viewer page](https://huggingface.co/datasets/oscar-corpus/OSCAR-2109)* *The dataset library cannot download any language from the oscar-corpus/OSCAR-2109 dataset. By entering the URL in your browser I can access the file.* ``` raise ConnectionError("Couldn't reach {}".format(url)) ConnectionError: Couldn't reach https://huggingface.co/datasets/oscar-corpus/OSCAR-2109/resolve/main/OSCAR-2109.py ``` Am I the one who added this dataset ? No Using the older version of [OSCAR](https://huggingface.co/datasets/oscar) I don't have any issues downloading languages with the dataset library.
38
ConnectionError: Couldn't reach https://huggingface.co/datasets/oscar-corpus/OSCAR-2109/resolve/main/OSCAR-2109.py ## Dataset viewer issue for '*oscar-corpus/OSCAR-2109*' **Link:** *[link to the dataset viewer page](https://huggingface.co/datasets/oscar-corpus/OSCAR-2109)* *The dataset library cannot download any language from the oscar-corpus/OSCAR-2109 dataset. By entering the URL in your browser I can access the file.* ``` raise ConnectionError("Couldn't reach {}".format(url)) ConnectionError: Couldn't reach https://huggingface.co/datasets/oscar-corpus/OSCAR-2109/resolve/main/OSCAR-2109.py ``` Am I the one who added this dataset ? No Using the older version of [OSCAR](https://huggingface.co/datasets/oscar) I don't have any issues downloading languages with the dataset library. The error I get when trying to load OSCAR 21.09 is this ``` ConnectionError: Couldn't reach https://huggingface.co/datasets/oscar-corpus/OSCAR-2109/resolve/main/OSCAR-2109.py ``` The URL I get in the browser is this ``` https://huggingface.co/datasets/oscar-corpus/OSCAR-2109/blob/main/OSCAR-2109.py ``` Maybe URL is the issue? (resolve vs blob)
[ -0.16342921555042267, 0.2305831015110016, 0.02441392093896866, 0.3770049214363098, 0.09095509350299835, 0.03072672337293625, 0.0639224499464035, 0.22147156298160553, -0.2426067739725113, 0.25978517532348633, -0.214043989777565, -0.16907939314842224, 0.14280346035957336, -0.007228763774037361, 0.11718316376209259, -0.2361692190170288, -0.013990432024002075, 0.04609365016222, 0.13864149153232574, -0.06344841420650482, -0.43083614110946655, 0.1030634269118309, -0.11624106764793396, 0.162631094455719, -0.22725145518779755, 0.1512603461742401, -0.17238815128803253, 0.17300820350646973, -0.34584054350852966, -0.35198163986206055, 0.3061034679412842, 0.04671703279018402, 0.2580544054508209, 0.26146140694618225, -0.00012211759167257696, -0.16637104749679565, 0.6389610171318054, 0.002184741199016571, -0.3595399260520935, -0.5516810417175293, -0.16299432516098022, -0.14207103848457336, 0.22159583866596222, 0.035218916833400726, 0.06641428172588348, -0.3831172287464142, 0.2749202251434326, -0.0009585171937942505, -0.08982355892658234, 0.06731634587049484, 0.13367964327335358, 0.10137960314750671, 0.44911056756973267, -0.22881461679935455, 0.37035366892814636, -0.24556173384189606, -0.16043958067893982, 0.3844382166862488, 0.3922189772129059, 0.047653377056121826, -0.08902090042829514, 0.14518439769744873, 0.29118430614471436, 0.06606549769639969, 0.5376978516578674, 0.06794695556163788, -0.24009403586387634, -0.2774823009967804, 0.1975741982460022, 0.11588038504123688, 0.6147938370704651, 0.16872945427894592, -0.5776153206825256, 0.028436660766601562, 0.017343461513519287, -0.17747411131858826, 0.5133478045463562, 0.2289513349533081, 0.06701284646987915, -0.016765892505645752, -0.20558667182922363, -0.29746219515800476, -0.28197386860847473, 0.6054016947746277, -0.3230806887149811, 0.3527909219264984, -0.19623637199401855, 0.20452633500099182, 0.2549601197242737, 0.09845346957445145, 0.3903214931488037, -0.22300465404987335, 0.14124226570129395, 0.12548324465751648, 0.014326181262731552, 0.31400394439697266, 0.02191350981593132, 0.3218463063240051, 0.05687578022480011, 0.014473490417003632, -0.08211732655763626, 0.055320121347904205, -0.44085171818733215, 0.08478592336177826, 0.4427170157432556, 0.2962769865989685, -0.15415912866592407, -0.13573244214057922, 0.3526931405067444, 0.4938682019710541, 0.12894092500209808, -0.11921677738428116, -0.02924860268831253, -0.36722254753112793, -0.18976934254169464, -0.1800999641418457, 0.33986812829971313, -0.29492175579071045, -0.18712642788887024, -0.026925794780254364, -0.43342897295951843, -0.2115352600812912, 0.007566469255834818, 0.369998574256897, -0.42623671889305115, 0.28698986768722534, -0.1006208062171936, 0.11947332322597504, -0.028620291501283646, 0.053557347506284714, -0.13872763514518738, 0.09041813015937805, -0.2627212405204773, -0.08049671351909637, 0.10402059555053711, -0.4537067413330078, 0.16087128221988678, -0.2464471459388733, 0.30256280303001404, -0.12233973294496536, -0.08430887013673782, -0.23800435662269592, 0.07025838643312454, 0.11648982018232346, 0.2463526427745819, 0.3947829604148865, -0.05823991075158119, -0.3425530791282654, -0.05844599008560181, 0.09005557745695114, -0.18478292226791382, -0.26010820269584656, -0.19481182098388672, 0.06449799239635468, -0.051136717200279236, 0.03804880008101463, -0.09651509672403336, -0.2384212464094162, -0.2706737518310547, -0.04518172889947891, -0.0852118656039238, -0.01663777604699135, -0.08395768702030182, -0.2407636046409607, 0.3611595332622528, 0.35136595368385315, -0.3612564504146576, 0.05487220734357834, -0.24635232985019684, -0.1119350790977478, 0.041857361793518066, 0.1452334076166153, -0.22801391780376434, -0.09694363921880722, -0.30658623576164246, 0.0702107697725296, 0.27333545684814453, -0.42404523491859436, -0.6276170015335083, 0.3681555390357971, -0.09008309990167618, 0.06369772553443909, -0.047873370349407196, 0.25616368651390076, 0.3231491446495056, -0.16846676170825958, 0.2948795557022095, 0.10559124499559402, 0.19911834597587585, -0.182454451918602, -0.049997538328170776, -0.23154394328594208, -0.2791441082954407, 0.1502659171819687, 0.17155657708644867, 0.05362527817487717, 0.11417673528194427, -0.1755533218383789, 0.3752935826778412, -0.01818130537867546, 0.19345326721668243, 0.027934450656175613, 0.18297603726387024, 0.4601307511329651, -0.04104648157954216, 0.017700713127851486, -0.28657233715057373, 0.2255958914756775, -0.006910290569067001, 0.15925654768943787, -0.3726580739021301, -0.045039042830467224, -0.4383387565612793, -0.07952152192592621, -0.3449828028678894, 0.06993632018566132, -0.010943140834569931, 0.26696959137916565, 0.11867627501487732, 0.22822658717632294, -0.27911537885665894, 0.0939931720495224, 0.03869842737913132, 0.1661515086889267, -0.322920560836792, 0.20213258266448975, -0.22372223436832428, 0.08927874267101288, 0.2197040617465973, -0.06875026971101761, 0.20495367050170898, -0.32102441787719727, -0.16303351521492004, 0.3772006034851074, -0.15005186200141907, 0.4110323190689087, 0.00956747680902481, 0.10689397156238556, 0.36002999544143677, -0.2728175222873688, 0.2592155337333679, 0.03683190047740936, 0.15841372311115265, 0.005178868770599365, 0.2963707745075226, 0.1289951503276825, 0.13522449135780334, 0.30529963970184326, 0.3560335040092468, 0.1303754448890686, 0.22063031792640686, 0.13187287747859955, -0.16800200939178467, -0.21257054805755615, 0.13441112637519836, -0.01403772085905075, 0.07488925755023956, -0.06953514367341995, -0.23416300117969513, -0.0483890101313591, 0.49544352293014526, -0.11843383312225342, -0.1240244135260582, 0.24526077508926392, -0.29314324259757996, 0.01911386474967003, 0.12948715686798096, 0.4569980204105377, 0.31779158115386963, 0.07975360006093979, 0.04470456391572952, 0.2724913954734802, -0.10291831195354462, -0.3030644655227661, 0.1119554415345192, 0.17887458205223083, 0.07054570317268372, -0.056828729808330536, -0.13521423935890198, 0.0036983387544751167, -0.2112627923488617, 0.11661827564239502, -0.04051530733704567, 0.11219499260187149, -0.2197899967432022, 0.07584717869758606, -0.25767216086387634, -0.3753136694431305, -0.2693043053150177, -0.35581284761428833, -0.20707352459430695, -0.5857594013214111, -0.20343135297298431, 0.38589122891426086, 0.03858283534646034, 0.006185387726873159, -0.4256002604961395, -0.03457622230052948, -0.2524453103542328, 0.011622929945588112, 0.03028549998998642, -0.17204169929027557, -0.36685892939567566, 0.00987023115158081, 0.2004254162311554, -0.059495843946933746, 0.22049421072006226, -0.3487718999385834, 0.2347174435853958, -0.3876609802246094, -0.27536359429359436, 0.1577802300453186, 0.11696012318134308, 0.08111799508333206, 0.31736502051353455, 0.24087843298912048, -0.008692014962434769, -0.13545751571655273, 0.4267871379852295, -0.08964766561985016, -0.02880322001874447, -0.30136334896087646, 0.10154861956834793, -0.01898455247282982, 0.18838173151016235, -0.475612610578537, -0.2231464385986328, -0.2780423164367676, 0.19635175168514252, 0.054882992058992386, 0.20758937299251556, -0.0635756403207779, -0.025614775717258453, 0.22087512910366058, -0.16386397182941437, 0.11200755834579468, -0.16843007504940033, -0.12278829514980316, 0.35010021924972534, -0.22369980812072754, -0.5654821991920471, 0.30751433968544006, 0.053251005709171295, 0.15414416790008545, 0.1375071108341217, -0.3897571563720703, -0.28913047909736633, -0.29455921053886414, -0.21176032721996307, 0.13639147579669952, 0.03159952163696289, 0.14596599340438843, -0.09357699006795883, -0.07044138759374619, 0.13364967703819275, -0.20941698551177979, -0.1640501618385315, -0.14009761810302734, 0.5212143063545227, 0.11635825783014297, 0.3665333092212677, -0.05250987038016319, 0.5527783036231995, -0.04272398725152016, 0.1107378602027893, 0.591760516166687, 0.13053356111049652, 0.28833141922950745, -0.17499417066574097, -0.4224923551082611, 0.23111049830913544, -0.2629135549068451, 0.07186315208673477, 0.33063799142837524, 0.16041481494903564, -0.11680822819471359, -0.4883953928947449, -0.24648933112621307, -0.33232805132865906, -0.2595219910144806, -0.022205734625458717, 0.09187919646501541, 0.13884854316711426, 0.16729068756103516, 0.10744897276163101, 0.17220668494701385, -0.21151301264762878, 0.06257447600364685, 0.36700332164764404, 0.2910962998867035, 0.017251089215278625, 0.08103859424591064, 0.07565265148878098, -0.43000972270965576, 0.4578006863594055, 0.08688218891620636, 0.40244781970977783, -0.07955390959978104, 0.03718838095664978, 0.2759132385253906, -0.04847867786884308, 0.7247366309165955, -0.12037841230630875, -0.019027091562747955, -0.13787801563739777, -0.03245112672448158, -0.40488874912261963, -0.010820843279361725, -0.15881028771400452, 0.34790393710136414, 0.18894444406032562, 0.3895728588104248, -0.2218957543373108, 0.03833683207631111, 0.24084360897541046, -0.042838532477617264, -0.20542429387569427, -0.12255929410457611, -0.2932383120059967, -0.524345874786377, -0.39988163113594055, -0.3219173848628998, -0.15581569075584412, 0.3797101378440857, 0.15562908351421356, -0.22860682010650635, -0.05967432260513306, -0.10113279521465302, 0.16031554341316223, 0.03579450398683548, -0.10797455161809921, 0.264963299036026, 0.08520889282226562, 0.4300053119659424, 0.5313317775726318, 0.2698996663093567, 0.25373828411102295, -0.16752836108207703, -0.4196024537086487, -0.02625732123851776, -0.0561639741063118, 0.2747477889060974, 0.3816283345222473, -0.11289575695991516, -0.13624566793441772, 0.3323337137699127, -0.23973555862903595, -0.20466676354408264, 0.09760601073503494, 0.5041003227233887, 0.14551806449890137, -0.5121802091598511, -0.5765966773033142, 0.3634297251701355, 0.1752101480960846, -0.16461557149887085, 0.23931846022605896, 0.5097030401229858, -0.12720926105976105, -0.010222761891782284, -0.14310455322265625, 1.026252269744873, -0.15917667746543884, 0.07299189269542694, -0.005018506199121475, -0.1351369023323059, 0.4637082517147064, 0.22776134312152863, 0.24821798503398895, -0.30103784799575806, -0.5340772271156311, -0.31652384996414185, -0.17342574894428253, 0.2922864556312561, -0.020689189434051514, 0.028955239802598953, 0.474251925945282, -0.13534128665924072, 0.212544783949852, 0.19386717677116394, 0.21023786067962646, -0.39349400997161865, -0.06628195941448212, -0.5098779797554016, 0.08950884640216827, -0.04320088028907776, 0.499303936958313, -0.1148606464266777, -0.10689375549554825, -0.302768349647522, -0.16867326200008392, -0.016124531626701355, 0.24765050411224365, -0.27419182658195496, 0.023195696994662285, -0.15959061682224274, -0.12886327505111694, 0.17799276113510132, 0.06469609588384628, 0.213140606880188, -0.10635904967784882, -0.07828406989574432, 0.2863706946372986, -0.21400904655456543, -0.27526047825813293, 0.296827107667923, -0.005313617177307606, 0.04191245138645172, -0.17314201593399048, -0.3544386923313141, 0.3217107057571411, 0.11274781823158264, -0.27986693382263184, 0.14132019877433777, 0.08279445767402649, 0.12880733609199524, -0.017405081540346146, -0.47865793108940125, -0.3646225035190582, -0.12245847284793854, -0.11932125687599182, 0.02985674887895584, -0.1687491238117218, 0.03015546128153801, -0.06153280287981033, 0.19320611655712128, -0.11696819961071014, -0.0025295205414295197, 0.5698459148406982, -0.12331517785787582, -0.05644650757312775, 0.48042595386505127, 0.19719198346138, -0.1717446893453598, 0.15872898697853088, -0.24493765830993652, -0.1690520942211151, -0.461681067943573, -0.09634578227996826, 0.021093929186463356, 0.30457454919815063, -0.3936828374862671, 0.36383217573165894, 0.2524350583553314, 0.21767637133598328, -0.08996136486530304, -0.4430432617664337, -0.09240567684173584, 0.20016568899154663, 0.15300880372524261, 0.14752717316150665, -0.08207874000072479, -0.09583911299705505, 0.38374000787734985, -0.21582740545272827, -0.17710354924201965, 0.05726996064186096, -0.14802998304367065, -0.07248837500810623, 0.10199284553527832, 0.13401785492897034, 0.23524367809295654, -0.023014163598418236, -0.0369015634059906, 0.18086235225200653, -0.08137133717536926, -0.030842622742056847, -0.02198633924126625, 0.1640622317790985, 0.11921004951000214, -0.4050222337245941, -0.08195408433675766, -0.1924123764038086, 0.08987368643283844, 0.04789847880601883, 0.0037512779235839844, 0.19810795783996582, 0.06442201882600784, -0.3026182949542999, 0.1462772935628891, -0.14978507161140442, 0.03166709095239639, 0.3375512659549713, -0.02749357372522354, 0.6893866658210754, 0.2506345212459564, 0.08279091864824295, -0.024757826700806618, -0.11729796230792999, -0.09257632493972778, -0.1158718690276146, -0.16493360698223114, 0.05871196836233139, 0.21967318654060364, -0.20234759151935577, 0.1128680557012558, 0.19751830399036407, 0.5268089771270752, 0.4224816560745239, -0.05081117898225784, -0.10607779026031494, 0.18577030301094055, 0.040596432983875275, -0.15688535571098328, 0.07855173200368881, 0.11248883605003357, 0.0460708849132061, -0.13175535202026367, 0.0017306432127952576, -0.045615751296281815, 0.09926466643810272, -0.28479689359664917, 0.04189475625753403, 0.2507205009460449, 0.07054238766431808, 0.32522517442703247, 0.2722937762737274, -0.12849967181682587, 0.2475644201040268, 0.3724258840084076, -0.011114530265331268, 0.015074051916599274, 0.21190686523914337, -0.28285497426986694, -0.03660998493432999, -0.19958710670471191, 0.38912561535835266, 0.21268871426582336, -0.2579142153263092, -0.04994238540530205, 0.41514793038368225, 0.09470687806606293, -0.019044622778892517, 0.02941473200917244, 0.5372028350830078, -0.02792731672525406, 0.09854379296302795, -0.32935041189193726, 0.32715046405792236, 0.15526282787322998, -0.17125897109508514, -0.175339937210083, -0.3186663091182709, -0.15333892405033112, 0.1892053335905075, -0.1542166918516159, -0.30187273025512695, 0.037164002656936646, 0.12278793752193451, -0.13269953429698944, -0.43043550848960876, 0.14012235403060913, -0.18819287419319153, 0.23532769083976746, -0.03183966502547264, 0.2938389182090759, 0.2466566264629364, 0.35012581944465637, 0.22142210602760315, 0.38490885496139526, 0.318387895822525, 0.4585002064704895, 0.32651224732398987, 0.031000684946775436, -0.15458878874778748, -0.02902311086654663, -0.0323561355471611, 0.06866306066513062, 0.4245796799659729, 0.03434222564101219, 0.4268365502357483, 0.06010102480649948, -0.10534155368804932, 0.3026692867279053, -0.11526785790920258, 0.5090917348861694, -0.10918731987476349, 0.6304513812065125, -0.4631063938140869, 0.028576858341693878, -0.40360227227211, 0.08077380061149597, -0.6474546790122986, 0.07148001343011856, 0.14967559278011322, -0.2233002632856369, 0.022358659654855728, -0.26487812399864197, -0.012613045983016491, -0.10374495387077332, 0.5025018453598022, 0.5063302516937256, 0.28417256474494934, -0.08796971291303635, -0.39878153800964355, -0.79346764087677, 0.1550203114748001, -0.12412814795970917, 0.22981560230255127, -0.15696556866168976, 0.1201624870300293, -0.27394241094589233, 0.07834385335445404, 0.16046184301376343, 0.49764949083328247, -0.009707493707537651, 0.05356437712907791, 0.002145625650882721, -0.22143782675266266, 0.059314485639333725, 0.13877733051776886, -0.19063018262386322, -0.09691527485847473, 0.19760340452194214, -0.3483286201953888, -0.08445952087640762, -0.13306324183940887, 0.05295960605144501, -0.3343118131160736, -0.22153356671333313, 0.49052247405052185, 0.24604298174381256, 0.5047018527984619, -0.004938572645187378, -0.3017255961894989, -0.3434291481971741, -0.23594482243061066, -0.03112245351076126, 0.3236287534236908, 0.09384723007678986, 0.2934502065181732, 0.07070943713188171, 0.25882062315940857, -0.32935789227485657, 0.44838035106658936, -0.18908043205738068, -0.10808952152729034, -0.11191867291927338, -0.24650387465953827, -0.13581734895706177, -0.24744364619255066, 0.11541861295700073, 0.05794963613152504, 0.07097779214382172, -0.03352241963148117, -0.2648583650588989, -0.44405606389045715, 0.5721875429153442, -0.28114041686058044, -0.026692673563957214, 0.15264824032783508, 0.05189482867717743, 0.06236368790268898, -0.23488590121269226, -0.2815861999988556, 0.2064433991909027, 0.3062710464000702, 0.031437382102012634, 0.019537784159183502, 0.026166729629039764, -0.28088992834091187, -0.0012590251863002777, -0.1509028822183609, 0.08905257284641266, 0.13900446891784668, -0.36869508028030396, 0.015862010419368744, -0.002806253731250763 ]
https://github.com/huggingface/datasets/issues/3282
ConnectionError: Couldn't reach https://huggingface.co/datasets/oscar-corpus/OSCAR-2109/resolve/main/OSCAR-2109.py
> The error I get when trying to load OSCAR 21.09 is this > > ``` > ConnectionError: Couldn't reach https://huggingface.co/datasets/oscar-corpus/OSCAR-2109/resolve/main/OSCAR-2109.py > ``` > > The URL I get in the browser is this > > ``` > https://huggingface.co/datasets/oscar-corpus/OSCAR-2109/blob/main/OSCAR-2109.py > ``` > > Maybe URL is the issue? (resolve vs blob) You need to download your login credentials. See `huggingface-cli login` documentation and when loading the dataset use `use_auth_token=True`: ` load_dataset(corpus, language, split=None, use_auth_token=True, cache_dir=cache_folder)`
## Dataset viewer issue for '*oscar-corpus/OSCAR-2109*' **Link:** *[link to the dataset viewer page](https://huggingface.co/datasets/oscar-corpus/OSCAR-2109)* *The dataset library cannot download any language from the oscar-corpus/OSCAR-2109 dataset. By entering the URL in your browser I can access the file.* ``` raise ConnectionError("Couldn't reach {}".format(url)) ConnectionError: Couldn't reach https://huggingface.co/datasets/oscar-corpus/OSCAR-2109/resolve/main/OSCAR-2109.py ``` Am I the one who added this dataset ? No Using the older version of [OSCAR](https://huggingface.co/datasets/oscar) I don't have any issues downloading languages with the dataset library.
75
ConnectionError: Couldn't reach https://huggingface.co/datasets/oscar-corpus/OSCAR-2109/resolve/main/OSCAR-2109.py ## Dataset viewer issue for '*oscar-corpus/OSCAR-2109*' **Link:** *[link to the dataset viewer page](https://huggingface.co/datasets/oscar-corpus/OSCAR-2109)* *The dataset library cannot download any language from the oscar-corpus/OSCAR-2109 dataset. By entering the URL in your browser I can access the file.* ``` raise ConnectionError("Couldn't reach {}".format(url)) ConnectionError: Couldn't reach https://huggingface.co/datasets/oscar-corpus/OSCAR-2109/resolve/main/OSCAR-2109.py ``` Am I the one who added this dataset ? No Using the older version of [OSCAR](https://huggingface.co/datasets/oscar) I don't have any issues downloading languages with the dataset library. > The error I get when trying to load OSCAR 21.09 is this > > ``` > ConnectionError: Couldn't reach https://huggingface.co/datasets/oscar-corpus/OSCAR-2109/resolve/main/OSCAR-2109.py > ``` > > The URL I get in the browser is this > > ``` > https://huggingface.co/datasets/oscar-corpus/OSCAR-2109/blob/main/OSCAR-2109.py > ``` > > Maybe URL is the issue? (resolve vs blob) You need to download your login credentials. See `huggingface-cli login` documentation and when loading the dataset use `use_auth_token=True`: ` load_dataset(corpus, language, split=None, use_auth_token=True, cache_dir=cache_folder)`
[ -0.16387346386909485, 0.10318903625011444, 0.05588674917817116, 0.4317851662635803, 0.14870800077915192, 0.08593945950269699, -0.025600504130125046, 0.22207605838775635, -0.210985466837883, 0.227425217628479, -0.2897392213344574, -0.16319741308689117, 0.11376070976257324, 0.0779961422085762, 0.10408878326416016, -0.3276960551738739, -0.0717860534787178, -0.02968369424343109, 0.015516508370637894, -0.04343349486589432, -0.35521653294563293, 0.19340713322162628, -0.115012988448143, 0.17091920971870422, -0.15095479786396027, 0.04950173944234848, -0.14995117485523224, 0.13612151145935059, -0.33529824018478394, -0.3501965403556824, 0.29124271869659424, 0.022226734086871147, 0.26440733671188354, 0.2784639000892639, -0.00011866520071635023, -0.15249040722846985, 0.5552981495857239, -0.001618802547454834, -0.398995041847229, -0.6619231104850769, -0.06554587185382843, -0.13104987144470215, 0.24202357232570648, 0.116683728992939, -0.094281867146492, -0.37158921360969543, 0.22532647848129272, -0.0853220671415329, 0.0703279972076416, 0.12415613979101181, 0.16396911442279816, 0.18697944283485413, 0.4523056745529175, -0.29667186737060547, 0.19965508580207825, -0.20641957223415375, -0.13603350520133972, 0.3594052493572235, 0.37111425399780273, 0.0397748127579689, -0.02445824444293976, 0.18734292685985565, 0.2935539484024048, 0.018748370930552483, 0.561555802822113, -0.036599837243556976, -0.2769496440887451, -0.38390353322029114, 0.24375012516975403, 0.16178768873214722, 0.589424729347229, 0.04102363437414169, -0.5316882729530334, 0.012050725519657135, 0.09302668273448944, -0.24318048357963562, 0.4912883937358856, 0.26255372166633606, -0.0021325983107089996, -0.044488441199064255, -0.23879721760749817, -0.27212968468666077, -0.3040897250175476, 0.5619144439697266, -0.15531551837921143, 0.26516392827033997, -0.17634692788124084, 0.18119238317012787, 0.3177570700645447, -0.04352883994579315, 0.16317227482795715, -0.10855895280838013, 0.05447939410805702, 0.24454829096794128, 0.014236412942409515, 0.27071046829223633, -0.02591729909181595, 0.4211360812187195, 0.14315083622932434, 0.06767815351486206, -0.17297041416168213, 0.09708597511053085, -0.3271922171115875, 0.04304405301809311, 0.4541620910167694, 0.2891751527786255, -0.07791202515363693, -0.0842086523771286, 0.2599658966064453, 0.4737868010997772, 0.14513294398784637, -0.13576123118400574, -0.03653574734926224, -0.3163922429084778, -0.20145533978939056, -0.20104947686195374, 0.30453920364379883, -0.2892735004425049, -0.09838463366031647, -0.02281923219561577, -0.3946245014667511, -0.18806686997413635, 0.039062391966581345, 0.4054933786392212, -0.38536715507507324, 0.19502240419387817, -0.0636259913444519, 0.1621129810810089, -0.03692881762981415, 0.009728609584271908, -0.15030571818351746, 0.11387062072753906, -0.27000999450683594, 0.0570523664355278, 0.13577541708946228, -0.5649886131286621, 0.17421385645866394, -0.2156408578157425, 0.40636396408081055, -0.11376018077135086, -0.03008955717086792, -0.15945057570934296, 0.06700007617473602, 0.09415462613105774, 0.2535083293914795, 0.3764215111732483, 0.006988119333982468, -0.32680511474609375, -0.09330734610557556, -0.07540331035852432, -0.16217559576034546, -0.2903393507003784, -0.17912977933883667, 0.08250507712364197, -0.03345828130841255, 0.04115479812026024, -0.20186927914619446, -0.17114290595054626, -0.2660009264945984, 0.03786874935030937, -0.04414822906255722, -0.01652628183364868, -0.11801430583000183, -0.13748709857463837, 0.38256531953811646, 0.4791222810745239, -0.276054322719574, -0.02864464372396469, -0.16248758137226105, -0.16199299693107605, -0.06894805282354355, 0.10871070623397827, -0.22443467378616333, -0.1267281174659729, -0.3414146900177002, 0.046903178095817566, 0.14146378636360168, -0.477872759103775, -0.5335478782653809, 0.25293177366256714, -0.022085905075073242, 0.12797275185585022, -0.0600140318274498, 0.12130752950906754, 0.31959211826324463, -0.11236410588026047, 0.23233060538768768, 0.06191635876893997, 0.20451128482818604, -0.15358033776283264, -0.060313254594802856, -0.2424405813217163, -0.27655839920043945, 0.1993156522512436, 0.16096970438957214, 0.03377390652894974, 0.0843529999256134, -0.16128386557102203, 0.3363696038722992, -0.021970268338918686, 0.20614300668239594, 0.026077328249812126, 0.16167600452899933, 0.5748981237411499, -0.029456939548254013, -0.008573880419135094, -0.31161361932754517, 0.2600068151950836, 0.004144016653299332, 0.27802520990371704, -0.2965083718299866, -0.06097613275051117, -0.36112409830093384, -0.12466157227754593, -0.34722065925598145, 0.022405268624424934, 0.030638784170150757, 0.19223159551620483, 0.2306404709815979, 0.28708747029304504, -0.25782841444015503, 0.24575483798980713, 0.08266152441501617, 0.17941521108150482, -0.4501204788684845, 0.15999557077884674, -0.19989296793937683, 0.09574487805366516, 0.18995346128940582, -0.01729615032672882, 0.18815910816192627, -0.3220211863517761, -0.11282042413949966, 0.4024182856082916, -0.1760050356388092, 0.3776147961616516, -0.059635236859321594, 0.11696143448352814, 0.371992290019989, -0.34671884775161743, 0.16670973598957062, -0.02190690115094185, 0.13952191174030304, 0.06018801033496857, 0.23896852135658264, 0.17893755435943604, 0.12297274172306061, 0.2920709550380707, 0.33849531412124634, 0.20256264507770538, 0.24325793981552124, 0.12672001123428345, -0.25601354241371155, -0.22011800110340118, 0.195476233959198, -0.1696826070547104, 0.10959823429584503, -0.16090741753578186, -0.2752625346183777, -0.05278132110834122, 0.330551415681839, -0.029347512871026993, -0.151572585105896, 0.21982741355895996, -0.37008002400398254, 0.09419690817594528, 0.11694548279047012, 0.37482568621635437, 0.28338658809661865, 0.07121183723211288, -0.006821837276220322, 0.3066983222961426, -0.054674163460731506, -0.2504383325576782, 0.14393480122089386, 0.15207567811012268, 0.09654080122709274, -0.12039709836244583, -0.14679110050201416, 0.0069660283625125885, -0.21971145272254944, 0.1224718689918518, -0.10187453776597977, 0.15180939435958862, -0.22134941816329956, 0.061670318245887756, -0.2506423592567444, -0.4344049096107483, -0.23128433525562286, -0.32542499899864197, -0.2749616205692291, -0.42913487553596497, -0.21847708523273468, 0.3423594832420349, 0.10137446224689484, 0.03709223121404648, -0.33196210861206055, -0.0006289929151535034, -0.24695007503032684, 0.02366016060113907, -0.0688266009092331, -0.15688514709472656, -0.28249305486679077, 0.018584560602903366, 0.25484707951545715, -0.06290864944458008, 0.3189649283885956, -0.31347718834877014, 0.16755221784114838, -0.3799768090248108, -0.2709621489048004, 0.18300412595272064, 0.03817075863480568, 0.04485839605331421, 0.2339814156293869, 0.25785917043685913, -0.09289998561143875, -0.1637963056564331, 0.4195307791233063, -0.10437766462564468, -0.04192908853292465, -0.22915062308311462, 0.08453641086816788, -0.0058034006506204605, 0.13316424190998077, -0.45785418152809143, -0.2821192145347595, -0.2767312526702881, 0.3250189423561096, 0.12605272233486176, 0.17270565032958984, 0.08771345019340515, -0.006020198110491037, 0.25214236974716187, -0.3269655704498291, 0.12498747557401657, -0.23055952787399292, -0.19440366327762604, 0.31606325507164, -0.29678377509117126, -0.5885473489761353, 0.36639702320098877, 0.09063290059566498, 0.22553056478500366, 0.010906223207712173, -0.3837217688560486, -0.34660840034484863, -0.2625718116760254, -0.1392284780740738, 0.11178147792816162, 0.026319660246372223, 0.2449188232421875, -0.16795633733272552, -0.044467370957136154, 0.19949528574943542, -0.2043112963438034, -0.1254386007785797, -0.1883741319179535, 0.42834240198135376, 0.023577943444252014, 0.38037797808647156, -0.04152415320277214, 0.6155349016189575, 0.11471503973007202, 0.11076413094997406, 0.5615171194076538, 0.14573226869106293, 0.30351340770721436, -0.13913071155548096, -0.5145663022994995, 0.20513424277305603, -0.21877670288085938, 0.18268629908561707, 0.2715017795562744, 0.17659863829612732, -0.11349757760763168, -0.5078955888748169, -0.1886395663022995, -0.2955525517463684, -0.27890875935554504, -0.09370549023151398, 0.024406634271144867, 0.1706068366765976, 0.21427933871746063, 0.12594693899154663, 0.12391924858093262, -0.25506702065467834, 0.061147477477788925, 0.41709160804748535, 0.2514706552028656, 0.08687645196914673, -0.023709995672106743, 0.038818635046482086, -0.4734135866165161, 0.40310126543045044, 0.055517230182886124, 0.3156028091907501, -0.12650251388549805, -0.007076626643538475, 0.28775766491889954, 0.00816277414560318, 0.6918700337409973, -0.10747019201517105, -0.04683452844619751, -0.11128738522529602, -0.10325594246387482, -0.395670622587204, 0.00887475535273552, -0.12966689467430115, 0.21573179960250854, 0.24465669691562653, 0.4961048662662506, -0.2109108865261078, -0.0256632212549448, 0.16603201627731323, -0.03200255706906319, -0.20761136710643768, -0.1059994101524353, -0.2836361527442932, -0.5521224141120911, -0.4263894855976105, -0.19913122057914734, -0.1237458661198616, 0.44705337285995483, 0.17844127118587494, -0.1081942468881607, -0.011331429705023766, -0.06454285979270935, 0.1884298473596573, 0.08849513530731201, -0.014369182288646698, 0.33794286847114563, 0.17992594838142395, 0.4593256115913391, 0.4631693661212921, 0.2746872007846832, 0.30071574449539185, -0.14989003539085388, -0.45271313190460205, -0.08541113138198853, 0.033397745341062546, 0.2585289180278778, 0.3070255219936371, -0.10305444896221161, -0.11241694539785385, 0.2602844834327698, -0.10721613466739655, -0.2765562832355499, 0.11270210146903992, 0.38406211137771606, 0.16829611361026764, -0.46311014890670776, -0.5098254680633545, 0.28037479519844055, 0.1625547707080841, -0.0974014475941658, 0.21949373185634613, 0.6238231062889099, -0.18613691627979279, -0.0034920985344797373, -0.10278057307004929, 1.0224281549453735, -0.2147536724805832, 0.05561599135398865, -0.015882618725299835, -0.09228342026472092, 0.573314368724823, 0.22241659462451935, 0.19673916697502136, -0.2728748917579651, -0.527778685092926, -0.2561403512954712, -0.1369493305683136, 0.30313006043434143, -0.06643221527338028, -0.046304404735565186, 0.3830075263977051, -0.04665946587920189, 0.09194331616163254, 0.07282193750143051, 0.2567044496536255, -0.44469329714775085, -0.15684263408184052, -0.45795395970344543, 0.1453942060470581, -0.019501470029354095, 0.5534862875938416, -0.058728523552417755, -0.12391030788421631, -0.24747715890407562, -0.14282923936843872, -0.08893492817878723, 0.23423072695732117, -0.2903168499469757, -0.010807439684867859, -0.05090515688061714, -0.1550377905368805, 0.3037400245666504, 0.06714753061532974, 0.2894287705421448, -0.06032682582736015, -0.15562602877616882, 0.263279527425766, -0.23080232739448547, -0.422769159078598, 0.20997798442840576, 0.005054408684372902, 0.09459909051656723, -0.1978519856929779, -0.27270153164863586, 0.29731160402297974, 0.15168224275112152, -0.16722437739372253, 0.009553372859954834, 0.061711885035037994, 0.057955268770456314, -0.03623386472463608, -0.4089914560317993, -0.30352041125297546, -0.06861799955368042, -0.09381494671106339, 0.06152762472629547, -0.11606916785240173, -0.053745415061712265, -0.0949496254324913, 0.21557606756687164, -0.10087523609399796, 0.00905168429017067, 0.5578501224517822, -0.1585272252559662, -0.12733101844787598, 0.4738849699497223, 0.37298867106437683, -0.13414901494979858, 0.09296093136072159, -0.2681698799133301, -0.08784091472625732, -0.561587929725647, -0.16863198578357697, 0.19546566903591156, 0.35651129484176636, -0.37364432215690613, 0.3470597267150879, 0.17557649314403534, 0.057280365377664566, 0.054522644728422165, -0.3990425765514374, -0.13785317540168762, 0.1864275336265564, 0.09848889708518982, 0.13338054716587067, -0.03124186024069786, -0.07037076354026794, 0.337822824716568, -0.07707153260707855, -0.21394500136375427, 0.03917085379362106, -0.14973284304141998, -0.12744025886058807, 0.28552189469337463, 0.08454952389001846, 0.24578158557415009, -0.0457129068672657, -0.010830503888428211, 0.23087114095687866, -0.13312773406505585, -0.07887472957372665, -0.017098961398005486, 0.13388291001319885, 0.12009461969137192, -0.4907940924167633, -0.03931053727865219, -0.1159147173166275, 0.10446561872959137, -0.019995007663965225, -0.0060078464448452, 0.2808651030063629, 0.05395834520459175, -0.2299831211566925, 0.0492655448615551, -0.05770724266767502, 0.05639740824699402, 0.24134956300258636, 0.09270575642585754, 0.570330023765564, 0.20318755507469177, 0.040824536234140396, -0.06997573375701904, -0.11285725235939026, -0.16127510368824005, -0.05500426143407822, -0.12580521404743195, 0.016366727650165558, 0.24722135066986084, -0.11399568617343903, 0.09570503234863281, 0.23635217547416687, 0.5004775524139404, 0.33746302127838135, -0.07144567370414734, -0.0008467044681310654, 0.28340351581573486, 0.06138987094163895, -0.20991827547550201, 0.08905908465385437, 0.10913674533367157, 0.04804331064224243, -0.1176958978176117, 0.046346284449100494, -0.05509308725595474, 0.08236581087112427, -0.1902555376291275, 0.038945965468883514, 0.2751537561416626, 0.04540203511714935, 0.35836246609687805, 0.18625524640083313, -0.088746577501297, 0.0819612592458725, 0.36537376046180725, 0.09567895531654358, 0.04062170535326004, 0.14107270538806915, -0.35404670238494873, -0.0010983627289533615, -0.3645062744617462, 0.4137093722820282, 0.21512389183044434, -0.28218337893486023, -0.09078764915466309, 0.3514786958694458, 0.07618026435375214, -0.02260299026966095, -0.10207191109657288, 0.6308677792549133, -0.10633653402328491, -0.017543766647577286, -0.369809627532959, 0.34117430448532104, 0.16928580403327942, -0.1261390745639801, -0.11646103858947754, -0.2991590201854706, -0.15563300251960754, 0.15462327003479004, -0.08162282407283783, -0.4262961149215698, 0.14004437625408173, 0.10678552091121674, -0.1342482566833496, -0.4267948865890503, 0.03175072371959686, -0.06625667214393616, 0.211776465177536, -0.006046812981367111, 0.3268025517463684, 0.2123969942331314, 0.21484310925006866, 0.08257152140140533, 0.39734703302383423, 0.3262507915496826, 0.3355168104171753, 0.3540504276752472, 0.2128530889749527, -0.16666004061698914, 0.021598102524876595, 0.020776566118001938, 0.11451853066682816, 0.3913697898387909, 0.01985209435224533, 0.3757514953613281, 0.08681237697601318, -0.1318572610616684, 0.17382176220417023, -0.22765637934207916, 0.5522866249084473, -0.17050109803676605, 0.5857923030853271, -0.4417150616645813, 0.08616786450147629, -0.4371979534626007, 0.05491846054792404, -0.6440973281860352, 0.14471282064914703, 0.1543431431055069, -0.11190097779035568, -0.0066860271617770195, -0.4010477662086487, 0.0063389260321855545, -0.053496625274419785, 0.5198119282722473, 0.4829202890396118, 0.20827746391296387, -0.14712630212306976, -0.42619043588638306, -0.8168044090270996, 0.13943471014499664, -0.13263970613479614, 0.24524465203285217, -0.19037137925624847, 0.16302300989627838, -0.20527130365371704, 0.10691314190626144, 0.12074988335371017, 0.46201422810554504, 0.0020130882039666176, 0.023138385266065598, 0.01964651048183441, -0.1432046890258789, -0.025556080043315887, 0.12397372722625732, -0.09443897008895874, 0.04330658167600632, 0.18122847378253937, -0.3895862102508545, -0.057257696986198425, -0.0771157443523407, 0.09715268015861511, -0.38598644733428955, -0.24479347467422485, 0.4426618218421936, 0.21450550854206085, 0.4457113742828369, 0.08710097521543503, -0.25243279337882996, -0.35416021943092346, -0.2375873327255249, -0.10354946553707123, 0.320024311542511, 0.07058288156986237, 0.2881774604320526, 0.010983539745211601, 0.07577045261859894, -0.34253403544425964, 0.42681705951690674, -0.1739313006401062, -0.2182515412569046, -0.07324518263339996, -0.1454264521598816, -0.09283575415611267, -0.1766774207353592, 0.16968247294425964, 0.14276771247386932, 0.062102850526571274, -0.038810018450021744, -0.29245179891586304, -0.42760899662971497, 0.5767029523849487, -0.360235333442688, -0.021527469158172607, 0.1057002916932106, 0.068918377161026, 0.10660146921873093, -0.37992945313453674, -0.35604506731033325, 0.26152750849723816, 0.2472054362297058, 0.0542476549744606, 0.00140371173620224, 0.04832487180829048, -0.337942898273468, -0.019097696989774704, -0.19106104969978333, 0.151783287525177, 0.20331698656082153, -0.2886877954006195, 0.14977169036865234, 0.06318411976099014 ]
https://github.com/huggingface/datasets/issues/3272
Make iter_archive work with ZIP files
Hi ! Sure this is open for any contributor. If you're interested feel free to self-assign this issue to you by commenting `#self-assign`. Then if you have any question or if I can help, feel free to ping me. To begin with, feel free to take a look at both implementations of `iter_archive` for local downloads and for data streaming: In the `DownloadManager` for local dowloads: https://github.com/huggingface/datasets/blob/dfa334bd8dc6cbc854b170379c7d2cb7e3d3fe4f/src/datasets/utils/download_manager.py#L218-L242 In the `StreamingDownloadManager` to stream the content of the archive directly from the remote file: https://github.com/huggingface/datasets/blob/dfa334bd8dc6cbc854b170379c7d2cb7e3d3fe4f/src/datasets/utils/streaming_download_manager.py#L502-L526 Notice the call to `xopen` that opens and streams a file given either an URL or a local path :)
Currently users can use `dl_manager.iter_archive` in their dataset script to iterate over all the files of a TAR archive. It would be nice if it could work with ZIP files too !
103
Make iter_archive work with ZIP files Currently users can use `dl_manager.iter_archive` in their dataset script to iterate over all the files of a TAR archive. It would be nice if it could work with ZIP files too ! Hi ! Sure this is open for any contributor. If you're interested feel free to self-assign this issue to you by commenting `#self-assign`. Then if you have any question or if I can help, feel free to ping me. To begin with, feel free to take a look at both implementations of `iter_archive` for local downloads and for data streaming: In the `DownloadManager` for local dowloads: https://github.com/huggingface/datasets/blob/dfa334bd8dc6cbc854b170379c7d2cb7e3d3fe4f/src/datasets/utils/download_manager.py#L218-L242 In the `StreamingDownloadManager` to stream the content of the archive directly from the remote file: https://github.com/huggingface/datasets/blob/dfa334bd8dc6cbc854b170379c7d2cb7e3d3fe4f/src/datasets/utils/streaming_download_manager.py#L502-L526 Notice the call to `xopen` that opens and streams a file given either an URL or a local path :)
[ -0.5271627306938171, 0.16346463561058044, -0.08822938799858093, 0.15864083170890808, -0.0910506471991539, -0.09600644558668137, 0.13648173213005066, 0.4259108603000641, -0.026686128228902817, 0.09313473850488663, -0.051503077149391174, 0.6554415225982666, -0.12108863145112991, 0.47058504819869995, -0.03709636628627777, 0.04977598786354065, -0.25438880920410156, 0.35238295793533325, -0.4338119328022003, 0.1170511245727539, -0.15533038973808289, 0.13990472257137299, 0.025118716061115265, -0.12070886790752411, 0.31960201263427734, 0.14760324358940125, -0.09037675708532333, 0.21499252319335938, -0.2577504515647888, -0.46633175015449524, 0.26483339071273804, 0.18390579521656036, 0.486005038022995, 0.3807256519794464, -0.00010188982560066506, -0.013232897967100143, 0.21844865381717682, -0.030641892924904823, -0.35860708355903625, -0.5234249830245972, -0.19177213311195374, -0.1938413679599762, 0.029316823929548264, -0.23775213956832886, 0.17556798458099365, -0.11827946454286575, 0.13282285630702972, -0.16872245073318481, 0.37398451566696167, 0.19409072399139404, 0.22565549612045288, 0.3935410678386688, 0.034268926829099655, -0.06559864431619644, 0.39312392473220825, 0.23362945020198822, -0.23980043828487396, 0.30115649104118347, 0.23052296042442322, -0.05694583058357239, -0.22257474064826965, 0.15323524177074432, -0.025621745735406876, 0.23024031519889832, 0.2761283218860626, -0.04664391279220581, -0.26692721247673035, -0.14875562489032745, -0.25107207894325256, 0.17073377966880798, 0.6428152322769165, -0.4028434455394745, -0.3676697909832001, -0.08330930769443512, -0.2868480086326599, -0.3921360671520233, 0.28262272477149963, 0.21152186393737793, -0.20212392508983612, 0.21114657819271088, -0.016820892691612244, 0.06789369136095047, -0.26797470450401306, 0.09133615344762802, -0.15618571639060974, 0.5876092910766602, -0.15695242583751678, -0.11873186379671097, 0.518310546875, -0.07517123222351074, 0.6211426258087158, 0.0702008605003357, -0.11614115536212921, -0.1386106312274933, -0.17416127026081085, -0.31715962290763855, -0.026145949959754944, 0.005780823528766632, 0.1836363673210144, 0.49426472187042236, 0.20099204778671265, 0.15249860286712646, -0.0054410467855632305, 0.12342724949121475, 0.31558236479759216, 0.2565484046936035, 0.2426479160785675, 0.17788580060005188, 0.2892773747444153, 0.3290778696537018, 0.25902366638183594, -0.2413899004459381, -0.05468205362558365, 0.037371955811977386, -0.13417480885982513, 0.09918004274368286, 0.022542286664247513, -0.04702197015285492, 0.13302601873874664, -0.25333142280578613, 0.06392205506563187, -0.4127048850059509, 0.005811675451695919, -0.01598847657442093, -0.1320154368877411, 0.2903732359409332, -0.39194661378860474, 0.08722490817308426, 0.23963885009288788, -0.11703189462423325, 0.07275179773569107, 0.07997360825538635, -0.10354261100292206, 0.08310354501008987, 0.3216743469238281, -0.2207287698984146, 0.11009174585342407, -0.20389588177204132, -0.009107820689678192, 0.3727923333644867, 0.3598785400390625, -0.1966828554868698, 0.3351733982563019, 0.05142233148217201, 0.06671163439750671, 0.10319112241268158, -0.015537384897470474, -0.05323253199458122, -0.24404457211494446, -0.041496895253658295, -0.12042700499296188, -0.2244499921798706, -0.0018877368420362473, 0.19112084805965424, -0.26094505190849304, -0.12372995913028717, -0.0020653605461120605, -0.12351006269454956, -0.28063276410102844, -0.4027182459831238, -0.057992346584796906, 0.22400423884391785, -0.2275242805480957, -0.11000822484493256, 0.14596261084079742, 0.49797600507736206, -0.6566015481948853, 0.21796497702598572, -0.3574219048023224, 0.04386831074953079, 0.16412365436553955, -0.03557412698864937, -0.209366112947464, 0.11136743426322937, -0.35222288966178894, 0.14732736349105835, 0.30780649185180664, -0.24121154844760895, -0.3783237934112549, 0.6909530162811279, -0.24309973418712616, 0.24019841849803925, 0.16958148777484894, 0.0003237162600271404, 0.3103087842464447, -0.3186671733856201, -0.2762661278247833, 0.37376099824905396, -0.06402179598808289, 0.03195273131132126, -0.07040106505155563, -0.21449661254882812, 0.1358136236667633, 0.2773147225379944, -0.024074826389551163, 0.20106111466884613, -0.10144881159067154, -0.3788156807422638, 0.1642206609249115, -0.011355143040418625, 0.24519652128219604, 0.06331498920917511, 0.06930601596832275, 0.21295978128910065, -0.021489178761839867, -0.03374459594488144, -0.17670053243637085, 0.1574035882949829, -0.1406189501285553, -0.18237456679344177, -0.27244365215301514, -0.07772926241159439, -0.08888539671897888, 0.053215302526950836, -0.22550971806049347, -0.11872872710227966, 0.21744585037231445, 0.4845651686191559, 0.32321083545684814, 0.003796350210905075, -0.34513986110687256, 0.17375321686267853, 0.37440672516822815, 0.06776640564203262, -0.3528168499469757, 0.06652084738016129, -0.054454557597637177, 0.007544293068349361, 0.15762600302696228, -0.22256484627723694, -0.055099643766880035, -0.326038658618927, -0.07436958700418472, 0.18541833758354187, -0.4222799241542816, -0.052383601665496826, 0.30676406621932983, 0.1259947121143341, 0.25516393780708313, -0.17261159420013428, 0.23344539105892181, 0.23930348455905914, 0.14631183445453644, -0.10864479839801788, -0.3874174654483795, 0.20079557597637177, -0.1367948204278946, 0.4228154122829437, -0.011452455073595047, 0.09078827500343323, 0.10672235488891602, -0.18803630769252777, -0.1766638308763504, 0.1731513887643814, -0.13203996419906616, 0.046773433685302734, 0.43834924697875977, -0.08397655189037323, 0.1748831570148468, 0.12263180315494537, 0.1639256328344345, 0.05928843095898628, -0.22668525576591492, 0.38613399863243103, -0.17077213525772095, 0.13644084334373474, 0.22094225883483887, 0.6206466555595398, 0.397189736366272, 0.1972801238298416, 0.30542758107185364, -0.051169753074645996, 0.31635797023773193, -0.2141161412000656, -0.06495732814073563, 0.1159183531999588, -0.1345130354166031, 0.11048009991645813, -0.1745249330997467, 0.004691751673817635, -0.19264274835586548, -0.1396157294511795, -0.08307136595249176, 0.11542361974716187, 0.1555059403181076, 0.1730688512325287, -0.3750016391277313, -0.5810019969940186, 0.13140301406383514, 0.0819249302148819, -0.07485717535018921, -0.23055726289749146, -0.05097733438014984, 0.40289250016212463, -0.10654443502426147, -0.010951543226838112, 0.42088648676872253, 0.18384256958961487, -0.0063161179423332214, -0.12603949010372162, -0.18683844804763794, -0.22446511685848236, -0.09864943474531174, 0.22922977805137634, 0.3748164176940918, -0.15348730981349945, 0.3059159219264984, -0.19332264363765717, 0.06058801710605621, -0.5222424268722534, 0.22889170050621033, 0.17261911928653717, 0.035488758236169815, 0.015093578025698662, 0.0846080332994461, 0.2433120161294937, 0.0013856403529644012, -0.1439165323972702, 0.06581691652536392, 0.021411774680018425, 0.06323719769716263, -0.022269345819950104, 0.05911341682076454, 0.09138178825378418, -0.1593388468027115, -0.07298684865236282, -0.3485810458660126, -0.6411197781562805, 0.5931685566902161, 0.0152188241481781, 0.29742231965065, -0.10923650860786438, 0.12535443902015686, -0.12523294985294342, -0.06654153764247894, -0.19243168830871582, 0.08585210144519806, -0.6903449296951294, 0.4563922882080078, -0.3439543843269348, -0.3164689242839813, 0.08543302118778229, 0.12863971292972565, 0.12720371782779694, 0.06291688233613968, -0.31146496534347534, -0.15546368062496185, -0.13714471459388733, 0.27375614643096924, 0.0500028058886528, 0.3798839747905731, 0.26049500703811646, 0.04788660630583763, -0.08830733597278595, 0.136158287525177, -0.14431536197662354, 0.2660086750984192, -0.1457962691783905, 0.160284623503685, 0.6300450563430786, 0.2263752818107605, 0.08763472735881805, 0.11802373826503754, 0.09991072118282318, 0.18015912175178528, 0.45054808259010315, -0.11960823088884354, 0.2838406264781952, 0.1534222662448883, -0.24566364288330078, -0.08597637712955475, -0.17316046357154846, 0.026609856635332108, 0.14035317301750183, -0.07100895792245865, -0.2451706975698471, -0.5072771310806274, 0.022965263575315475, -0.10040200501680374, -0.283855676651001, 0.1920854151248932, -0.1389448642730713, -0.11550923436880112, -0.13662223517894745, 0.010055579245090485, -0.14996694028377533, 0.012402361258864403, 0.23900006711483002, 0.10929155349731445, 0.1071171760559082, 0.03904469683766365, -0.1599375605583191, 0.06763052195310593, -0.3189750015735626, 0.10760711133480072, 0.060041382908821106, 0.0025909682735800743, 0.018685858696699142, -0.3042127788066864, -0.1988711804151535, -0.15836091339588165, 0.5377818942070007, -0.2775847017765045, -0.17672733962535858, 0.15444381535053253, -0.2189525067806244, 0.16178159415721893, -0.05723268538713455, -0.16238340735435486, 0.09605388343334198, -0.2508111298084259, 0.11711832880973816, -0.3166573643684387, -0.035108085721731186, 0.09899604320526123, 0.13753439486026764, -0.05530146509408951, -0.4262465238571167, 0.22362564504146576, -0.11763782054185867, -0.27548208832740784, -0.26223042607307434, -0.2533082365989685, -0.25223731994628906, -0.05367398262023926, 0.012442786246538162, 0.08947386592626572, 0.05356455594301224, 0.1997283697128296, 0.002887990325689316, 0.12422997504472733, -0.18818888068199158, 0.1492079347372055, 0.3422461152076721, 0.21469682455062866, 0.08874385058879852, 0.41825780272483826, -0.07548560202121735, -0.1195184588432312, 0.11930660158395767, -0.1425546258687973, 0.06590758264064789, 0.1734355092048645, 0.02098238468170166, -0.044231437146663666, -0.19355927407741547, 0.1850612759590149, -0.2070487141609192, 0.025601480156183243, 0.18215252459049225, -0.24917539954185486, -0.05188766494393349, -0.5617214441299438, 0.24940595030784607, 0.07385998964309692, 0.0677269846200943, 0.41091495752334595, -0.3907843828201294, 0.20151546597480774, 0.0754275992512703, -0.23134541511535645, 0.6504809856414795, 0.07364615052938461, 0.08816312998533249, 0.14876490831375122, 0.11172863841056824, 0.296518474817276, -0.3508908748626709, -0.029431190341711044, -0.2505013048648834, -0.3472851812839508, -0.1095188781619072, 0.005719609558582306, -0.07551627606153488, 0.2037741094827652, -0.4529172480106354, 0.2717234790325165, 0.0804133266210556, 0.10076871514320374, 0.1423414945602417, 0.19220536947250366, -0.4322196841239929, -0.4776586890220642, -0.09342782199382782, 0.2776039242744446, -0.03580853343009949, 0.09773226082324982, 0.007188959047198296, -0.4889373779296875, 0.22395184636116028, -0.06985342502593994, -0.09514407068490982, 0.29511192440986633, -0.13943570852279663, -0.05274069309234619, -0.059289466589689255, -0.1493011713027954, -0.17114239931106567, -0.0017292127013206482, 0.04565269872546196, 0.12909147143363953, -0.0667385458946228, -0.2347840517759323, 0.09961529076099396, 0.16907502710819244, -0.08287020027637482, 0.01637142151594162, -0.01607482321560383, -0.0905817300081253, -0.03131576627492905, 0.2125656008720398, -0.022366616874933243, -0.2972489595413208, 0.3352223336696625, 0.11129923909902573, 0.1879844069480896, -0.024134943261742592, 0.12338630855083466, -0.055942341685295105, -0.27725377678871155, -0.13664352893829346, 0.20023274421691895, -0.0011510178446769714, -0.10578271001577377, 0.1996782422065735, -0.3057187795639038, 0.11686411499977112, -0.08562800288200378, 0.2722875475883484, -0.29289108514785767, -0.1833306849002838, 0.09663498401641846, 0.10848625004291534, -0.12249109894037247, -0.20519572496414185, -0.010900188237428665, -0.15282197296619415, -0.22890380024909973, 0.13282476365566254, -0.10859807580709457, -0.014563098549842834, 0.04612220451235771, 0.1056784838438034, 0.31432878971099854, -0.08264831453561783, -0.11294595897197723, -0.22260288894176483, -0.17575021088123322, -0.021792970597743988, 0.060934338718652725, 0.18744434416294098, -0.052829522639513016, -0.30122673511505127, 0.11464910209178925, -0.15560293197631836, -0.4133700430393219, -0.1647641509771347, 0.004768023267388344, -0.08268917351961136, 0.21178217232227325, 0.021484464406967163, 0.2862418293952942, 0.09221100807189941, 0.08647966384887695, 0.34749138355255127, -0.17290519177913666, -0.29524216055870056, -0.13054588437080383, 0.036587342619895935, 0.013651504181325436, -0.30336692929267883, 0.04750775545835495, -0.07665268331766129, -0.11818026006221771, -0.146929070353508, -0.04237443581223488, -0.1797288954257965, -0.16463924944400787, 0.09808649867773056, 0.3660687506198883, -0.09512457996606827, -0.19759167730808258, 0.21221789717674255, 0.17572200298309326, 0.4080313444137573, -0.21421389281749725, 0.27035942673683167, -0.27474313974380493, -0.1833762526512146, 0.008937381207942963, 0.014299966394901276, 0.2654149532318115, 0.000620529055595398, 0.5387880802154541, -0.07296103239059448, 0.05408252403140068, 0.1276046335697174, 0.48567143082618713, 0.5763184428215027, 0.11625809967517853, 0.0633077621459961, 0.3392783999443054, 0.2424701750278473, -0.01490929163992405, -0.1612715721130371, -0.1451045125722885, 0.0817667618393898, 0.21440818905830383, 0.1754503697156906, 0.06355895102024078, -0.13813510537147522, 0.11590158939361572, -0.061234112828969955, 0.3221622705459595, 0.04648120701313019, -0.03633969649672508, 0.3382008671760559, -0.09065081924200058, -0.03422821685671806, 0.005020489916205406, 0.21920990943908691, 0.20964030921459198, 0.005865953862667084, -0.2238500714302063, 0.19484351575374603, 0.0777188092470169, -0.049983952194452286, -0.1037764921784401, -0.54976886510849, -0.026181746274232864, -0.04891306161880493, 0.4095354378223419, 0.15432798862457275, 0.22161684930324554, 0.38413068652153015, -0.18857182562351227, -0.08467814326286316, -0.15913644433021545, 0.25430724024772644, 0.383684366941452, 0.17819221317768097, -0.1679786592721939, -0.12602759897708893, -0.31498435139656067, 0.06716032326221466, 0.1537359058856964, -0.07299613952636719, 0.4923078119754791, 0.19158440828323364, 0.16068312525749207, -0.06612578779459, -0.10003187507390976, -0.0972289964556694, 0.0908067524433136, -0.3492740988731384, 0.003269679844379425, 0.3558557629585266, -0.09150801599025726, -0.17351506650447845, 0.18047192692756653, 0.26032260060310364, 0.4065500497817993, 0.14900192618370056, 0.26719412207603455, -0.4751039147377014, -0.07506576180458069, -0.15507951378822327, -0.03440219536423683, -0.25427713990211487, -0.1303250640630722, 0.35858914256095886, 0.23036262392997742, -0.21328066289424896, 0.28759250044822693, -0.2637987434864044, 0.31172099709510803, -0.058554548770189285, -0.2164422571659088, 0.40535005927085876, 0.018649719655513763, -0.06519702076911926, -0.2625108063220978, -0.5676862597465515, 0.10101580619812012, 0.21223954856395721, -0.033851396292448044, 0.10724037140607834, -0.12164272367954254, 0.14389650523662567, 0.15431001782417297, 0.41446131467819214, 0.39493831992149353, 0.03617598116397858, -0.2469792366027832, -0.3624832034111023, -0.5733823776245117, -0.09511455148458481, -0.12391658127307892, -0.03417748212814331, -0.12102574110031128, 0.20900291204452515, 0.10493800044059753, 0.3277130126953125, -0.19109787046909332, -0.08409707248210907, -0.05299556627869606, 0.23998038470745087, -0.3115414083003998, -0.2180088609457016, 0.38113582134246826, 0.24223770201206207, 0.17883411049842834, -0.32473456859588623, 0.10424034297466278, -0.1712532490491867, 0.17090526223182678, 0.039856813848018646, -0.11853247135877609, -0.053996916860342026, -0.4025968313217163, 0.28283339738845825, -0.09587322920560837, 0.032170459628105164, -0.17768412828445435, -0.06758681684732437, -0.05530441924929619, 0.2258167862892151, -0.16332241892814636, -0.23077914118766785, 0.10561875998973846, 0.23098915815353394, -0.1671704202890396, 0.3053315281867981, -0.4869304597377777, 0.07201007008552551, -0.16211628913879395, 0.0994073823094368, -0.20053553581237793, -0.03750571608543396, 0.06855329126119614, 0.06193797290325165, 0.048797354102134705, 0.032850950956344604, -0.02453511208295822, 0.001689765602350235, -0.3895683288574219, -0.22273266315460205, 0.26650890707969666, -0.11720838397741318, -0.1949547380208969, 0.11835528910160065, -0.09962564706802368, -0.12847355008125305, -0.042060308158397675, -0.11986090242862701, 0.05252382904291153, 0.020105481147766113, -0.07802140712738037, 0.17014947533607483, 0.042308613657951355, -0.06968285143375397, 0.08231250941753387, -0.18892215192317963, 0.26436853408813477, 0.26181450486183167, -0.33110010623931885, -0.1496531367301941, -0.034149449318647385 ]
https://github.com/huggingface/datasets/issues/3269
coqa NonMatchingChecksumError
Hi @ZhaofengWu, thanks for reporting. Unfortunately, I'm not able to reproduce your bug: ```python In [1]: from datasets import load_dataset In [2]: ds = load_dataset("coqa") Downloading: 3.82kB [00:00, 1.91MB/s] Downloading: 1.79kB [00:00, 1.79MB/s] Using custom data configuration default Downloading and preparing dataset coqa/default (download: 55.40 MiB, generated: 18.35 MiB, post-processed: Unknown size, total: 73.75 MiB) to .cache\coqa\default\1.0.0\553ce70bfdcd15ff4b5f4abc4fc2f37137139cde1f58f4f60384a53a327716f0... Downloading: 100%|████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 49.0M/49.0M [00:06<00:00, 7.17MB/s] Downloading: 100%|████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 9.09M/9.09M [00:01<00:00, 6.08MB/s] 100%|████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 2/2 [00:12<00:00, 6.48s/it] 100%|███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 2/2 [00:00<00:00, 333.26it/s] Dataset coqa downloaded and prepared to .cache\coqa\default\1.0.0\553ce70bfdcd15ff4b5f4abc4fc2f37137139cde1f58f4f60384a53a327716f0. Subsequent calls will reuse this data. 100%|███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 2/2 [00:00<00:00, 285.49it/s] In [3]: ds Out[3]: DatasetDict({ train: Dataset({ features: ['source', 'story', 'questions', 'answers'], num_rows: 7199 }) validation: Dataset({ features: ['source', 'story', 'questions', 'answers'], num_rows: 500 }) }) ``` Could you please give more details about your development environment? You can run the command `datasets-cli env` and copy-and-paste its output: ``` - `datasets` version: - Platform: - Python version: - PyArrow version: ``` It might be because you are using an old version of `datasets`. Could you please update it (`pip install -U datasets`) and confirm if the problem parsists?
``` >>> from datasets import load_dataset >>> dataset = load_dataset("coqa") Downloading: 3.82kB [00:00, 1.26MB/s] Downloading: 1.79kB [00:00, 733kB/s] Using custom data configuration default Downloading and preparing dataset coqa/default (download: 55.40 MiB, generated: 18.35 MiB, post-processed: Unknown size, total: 73.75 MiB) to /Users/zhaofengw/.cache/huggingface/datasets/coqa/default/1.0.0/553ce70bfdcd15ff4b5f4abc4fc2f37137139cde1f58f4f60384a53a327716f0... Downloading: 100%|█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 222/222 [00:00<00:00, 1.38MB/s] Downloading: 100%|█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 222/222 [00:00<00:00, 1.32MB/s] 100%|█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 2/2 [00:01<00:00, 1.91it/s] 100%|███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 2/2 [00:00<00:00, 1117.44it/s] Traceback (most recent call last): File "<stdin>", line 1, in <module> File "/Users/zhaofengw/miniconda3/lib/python3.9/site-packages/datasets/load.py", line 1632, in load_dataset builder_instance.download_and_prepare( File "/Users/zhaofengw/miniconda3/lib/python3.9/site-packages/datasets/builder.py", line 607, in download_and_prepare self._download_and_prepare( File "/Users/zhaofengw/miniconda3/lib/python3.9/site-packages/datasets/builder.py", line 679, in _download_and_prepare verify_checksums( File "/Users/zhaofengw/miniconda3/lib/python3.9/site-packages/datasets/utils/info_utils.py", line 40, in verify_checksums raise NonMatchingChecksumError(error_msg + str(bad_urls)) datasets.utils.info_utils.NonMatchingChecksumError: Checksums didn't match for dataset source files: ['https://nlp.stanford.edu/data/coqa/coqa-train-v1.0.json', 'https://nlp.stanford.edu/data/coqa/coqa-dev-v1.0.json'] ```
180
coqa NonMatchingChecksumError ``` >>> from datasets import load_dataset >>> dataset = load_dataset("coqa") Downloading: 3.82kB [00:00, 1.26MB/s] Downloading: 1.79kB [00:00, 733kB/s] Using custom data configuration default Downloading and preparing dataset coqa/default (download: 55.40 MiB, generated: 18.35 MiB, post-processed: Unknown size, total: 73.75 MiB) to /Users/zhaofengw/.cache/huggingface/datasets/coqa/default/1.0.0/553ce70bfdcd15ff4b5f4abc4fc2f37137139cde1f58f4f60384a53a327716f0... Downloading: 100%|█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 222/222 [00:00<00:00, 1.38MB/s] Downloading: 100%|█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 222/222 [00:00<00:00, 1.32MB/s] 100%|█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 2/2 [00:01<00:00, 1.91it/s] 100%|███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 2/2 [00:00<00:00, 1117.44it/s] Traceback (most recent call last): File "<stdin>", line 1, in <module> File "/Users/zhaofengw/miniconda3/lib/python3.9/site-packages/datasets/load.py", line 1632, in load_dataset builder_instance.download_and_prepare( File "/Users/zhaofengw/miniconda3/lib/python3.9/site-packages/datasets/builder.py", line 607, in download_and_prepare self._download_and_prepare( File "/Users/zhaofengw/miniconda3/lib/python3.9/site-packages/datasets/builder.py", line 679, in _download_and_prepare verify_checksums( File "/Users/zhaofengw/miniconda3/lib/python3.9/site-packages/datasets/utils/info_utils.py", line 40, in verify_checksums raise NonMatchingChecksumError(error_msg + str(bad_urls)) datasets.utils.info_utils.NonMatchingChecksumError: Checksums didn't match for dataset source files: ['https://nlp.stanford.edu/data/coqa/coqa-train-v1.0.json', 'https://nlp.stanford.edu/data/coqa/coqa-dev-v1.0.json'] ``` Hi @ZhaofengWu, thanks for reporting. Unfortunately, I'm not able to reproduce your bug: ```python In [1]: from datasets import load_dataset In [2]: ds = load_dataset("coqa") Downloading: 3.82kB [00:00, 1.91MB/s] Downloading: 1.79kB [00:00, 1.79MB/s] Using custom data configuration default Downloading and preparing dataset coqa/default (download: 55.40 MiB, generated: 18.35 MiB, post-processed: Unknown size, total: 73.75 MiB) to .cache\coqa\default\1.0.0\553ce70bfdcd15ff4b5f4abc4fc2f37137139cde1f58f4f60384a53a327716f0... Downloading: 100%|████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 49.0M/49.0M [00:06<00:00, 7.17MB/s] Downloading: 100%|████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 9.09M/9.09M [00:01<00:00, 6.08MB/s] 100%|████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 2/2 [00:12<00:00, 6.48s/it] 100%|███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 2/2 [00:00<00:00, 333.26it/s] Dataset coqa downloaded and prepared to .cache\coqa\default\1.0.0\553ce70bfdcd15ff4b5f4abc4fc2f37137139cde1f58f4f60384a53a327716f0. Subsequent calls will reuse this data. 100%|███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 2/2 [00:00<00:00, 285.49it/s] In [3]: ds Out[3]: DatasetDict({ train: Dataset({ features: ['source', 'story', 'questions', 'answers'], num_rows: 7199 }) validation: Dataset({ features: ['source', 'story', 'questions', 'answers'], num_rows: 500 }) }) ``` Could you please give more details about your development environment? You can run the command `datasets-cli env` and copy-and-paste its output: ``` - `datasets` version: - Platform: - Python version: - PyArrow version: ``` It might be because you are using an old version of `datasets`. Could you please update it (`pip install -U datasets`) and confirm if the problem parsists?
[ -0.2934424877166748, -0.16965605318546295, -0.23772868514060974, 0.1443958878517151, 0.17530269920825958, -0.03220370039343834, 0.10853204131126404, 0.34697225689888, 0.1612992137670517, 0.34507638216018677, -0.12422356754541397, 0.016303548589348793, 0.13270717859268188, 0.3179677724838257, -0.24001473188400269, 0.41088542342185974, -0.03730381280183792, 0.130801722407341, -0.13652393221855164, -0.08464013040065765, -0.16203461587429047, 0.16598115861415863, -0.01582520455121994, -0.21113817393779755, 0.02861746959388256, -0.10914026945829391, 0.10121777653694153, 0.14800600707530975, -0.2446722537279129, -0.28355634212493896, 0.09498230367898941, 0.13728395104408264, -0.2691483199596405, 0.30232828855514526, -0.00010783330799313262, -0.0027384981513023376, 0.3951041102409363, -0.039331186562776566, -0.3947451412677765, 0.14915716648101807, -0.5660779476165771, -0.3265206217765808, -0.04970679432153702, -0.17008115351200104, -0.0475759357213974, 0.23689433932304382, -0.06580795347690582, -0.08954586833715439, 0.2255401611328125, 0.3060496151447296, 0.33020082116127014, 0.5339956283569336, -0.10401947796344757, -0.16375169157981873, 0.07236073911190033, 0.031290773302316666, -0.12435615807771683, 0.2001531571149826, 0.21609294414520264, 0.1913791298866272, -0.27258944511413574, 0.3140356242656708, -0.0051485151052474976, 0.09484364092350006, -0.17975234985351562, -0.14494965970516205, 0.12952551245689392, -0.10418336093425751, 0.5087623596191406, 0.2842763364315033, 0.27493998408317566, -0.176284521818161, -0.2551177740097046, -0.07698702812194824, -0.20052854716777802, -0.3510757386684418, 0.24585279822349548, 0.14968642592430115, -0.340237557888031, -0.17369966208934784, -0.2658529281616211, 0.3822205364704132, 0.03578901290893555, -0.11176595091819763, -0.2776526212692261, -0.06412157416343689, -0.1459256261587143, -0.10768140107393265, 0.19801907241344452, -0.18681031465530396, 0.10265035182237625, -0.10998208820819855, -0.2069360315799713, 0.039076365530490875, -0.5156916379928589, -0.14970144629478455, 0.31265756487846375, 0.37973666191101074, 0.3413914740085602, 0.22981014847755432, 0.18982462584972382, 0.21446359157562256, 0.026291899383068085, -0.021310336887836456, -0.15561148524284363, 0.3892468512058258, 0.011136263608932495, -0.24692974984645844, 0.22724728286266327, 0.3603816330432892, -0.08430300652980804, 0.035563740879297256, 0.09798380732536316, -0.310355007648468, 0.16753895580768585, 0.25340837240219116, 0.06962268054485321, -0.4281231462955475, -0.4341353178024292, 0.149600550532341, 0.1567331850528717, 0.06822070479393005, 0.18170641362667084, 0.5912106037139893, -0.03076007217168808, -0.06389985978603363, -0.16616404056549072, 0.004891406744718552, -0.30665868520736694, -0.1340271681547165, -0.371019572019577, 0.031862448900938034, -0.14453153312206268, -0.007327264174818993, 0.1801055371761322, -0.11212418973445892, 0.23918317258358002, -0.1675238162279129, 0.33850133419036865, -0.021233825013041496, 0.02179025299847126, -0.2919423282146454, 0.0382426381111145, 0.4026385545730591, -0.01665576733648777, 0.04756862670183182, 0.28407829999923706, -0.0009175539016723633, -0.1435098946094513, -0.03872884809970856, -0.03240456432104111, -0.26845183968544006, 0.10987308621406555, 0.3479248583316803, -0.07606720924377441, -0.0021591894328594208, 0.2647094130516052, -0.20924822986125946, 0.3453936278820038, -0.06105532497167587, 0.13540741801261902, 0.01325797289609909, -0.16954652965068817, -0.2886042594909668, 0.16366930305957794, 0.4162479043006897, -0.07393622398376465, 0.032692380249500275, 0.038964398205280304, -0.12756450474262238, 0.17309290170669556, 0.149419367313385, 0.0685000866651535, 0.09921149909496307, -0.21407602727413177, -0.10196132957935333, 0.21608251333236694, -0.3309718668460846, -0.6776994466781616, 0.09962806105613708, 0.045031264424324036, 0.1138063296675682, 0.15592333674430847, 0.021511884406208992, 0.09797555953264236, -0.03561897203326225, 0.07381267100572586, -0.0027298852801322937, 0.031051501631736755, 0.11351162940263748, -0.39217624068260193, -0.31785261631011963, -0.009648721665143967, 0.10581538081169128, 0.16304001212120056, -0.05722411721944809, 0.29456934332847595, -0.45781758427619934, 0.20404884219169617, -0.09221106767654419, -0.011318291537463665, 0.12655538320541382, 0.18324358761310577, -0.20327387750148773, -0.04442282021045685, 0.004791315644979477, -0.2321658432483673, 0.2732808291912079, -0.44594860076904297, 0.06045011430978775, -0.18885435163974762, -0.26077142357826233, -0.3654577136039734, -0.0270660612732172, -0.21089313924312592, -0.14423216879367828, 0.30756711959838867, 0.273681640625, 0.27484431862831116, 0.07274362444877625, 0.11723446846008301, 0.40884360671043396, -0.1587977558374405, -0.04461226612329483, -0.31232354044914246, 0.043137192726135254, -0.09874071925878525, -0.07750507444143295, -0.03355168551206589, 0.3281101882457733, 0.15009266138076782, -0.022737614810466766, -0.07894660532474518, 0.30079612135887146, 0.17490367591381073, 0.1836465299129486, -0.08949295431375504, 0.127378910779953, -0.0025923699140548706, 0.049132224172353745, 0.0637911930680275, 0.16952727735042572, 0.07616879045963287, -0.014355748891830444, -0.21904432773590088, 0.49147361516952515, -0.1414717584848404, 0.17851026356220245, 0.1221497654914856, -0.14977209270000458, 0.24572929739952087, -0.15667659044265747, -0.11089283972978592, -0.11869918555021286, 0.23188894987106323, 0.17755544185638428, 0.04459628090262413, 0.10382231324911118, -0.11840202659368515, 0.113840252161026, 0.3319092392921448, -0.06497618556022644, 0.0596817247569561, 0.1184130534529686, 0.09951990842819214, -0.09228239208459854, 0.07496040314435959, 0.3611769676208496, 0.4361034631729126, 0.19483688473701477, 0.17049480974674225, -0.05781761556863785, -0.00705199409276247, -0.16996005177497864, 0.12952379882335663, 0.12153053283691406, -0.03822976350784302, 0.4889443516731262, 0.23847328126430511, -0.19473984837532043, -0.48423442244529724, -0.17633193731307983, -0.07251535356044769, 0.20507536828517914, -0.29004234075546265, 0.048694491386413574, -0.17661550641059875, -0.24514919519424438, 0.018816251307725906, -0.23127946257591248, 0.0636468231678009, -0.40280500054359436, 0.12155710905790329, 0.18837758898735046, -0.06813565641641617, 0.24740423262119293, -0.3666554391384125, 0.17079229652881622, 0.20224541425704956, -0.23210398852825165, -0.1817013919353485, 0.2013235241174698, -0.10452926903963089, 0.2084091603755951, 0.18242862820625305, 0.049002859741449356, 0.5008370280265808, -0.33716222643852234, 0.0265551395714283, -0.2955659031867981, -0.22314369678497314, -0.04286115616559982, -0.0206168070435524, 0.02589571662247181, 0.23955890536308289, 0.1678852140903473, -0.09732411056756973, -0.16121135652065277, 0.1723998636007309, -0.03255085274577141, -0.42428526282310486, 0.07566442340612411, -0.20237238705158234, 0.07886164635419846, -0.18486922979354858, -0.041290752589702606, -0.2166948914527893, -0.4261755645275116, 0.10516571998596191, 0.1664564609527588, 0.21152444183826447, 0.28348469734191895, 0.030940603464841843, 0.18370208144187927, 0.06931445002555847, 0.2948223650455475, -0.35511231422424316, -0.6185640692710876, 0.30382198095321655, -0.11850994825363159, -0.3948781490325928, -0.0802287831902504, -0.29940736293792725, 0.5251651406288147, -0.05346399173140526, -0.25605493783950806, -0.2709777355194092, -0.43960779905319214, 0.19161812961101532, 0.058311913162469864, -0.09370128065347672, 0.4126143455505371, -0.019693177193403244, -0.30627769231796265, -0.05406895652413368, -0.1069871336221695, 0.10140863060951233, -0.07748894393444061, 0.2577381432056427, -0.22634556889533997, 0.4307520091533661, 0.0870751142501831, 0.37161386013031006, 0.39679551124572754, -0.04324616864323616, 0.2767592668533325, -0.0012930259108543396, 0.366716593503952, -0.29272159934043884, -0.3451104760169983, 0.11048631370067596, -0.010120302438735962, -0.10813893377780914, 0.17037226259708405, -0.049006424844264984, 0.1882525533437729, -0.0010115094482898712, -0.04595613479614258, -0.3217918574810028, -0.2026652693748474, -0.029957303777337074, -0.011170759797096252, 0.20619788765907288, -0.0590057373046875, 0.1796014904975891, -0.07419231534004211, -0.05333031713962555, 0.07544931769371033, 0.23053954541683197, -0.1735401153564453, -0.22238445281982422, -0.17990374565124512, 0.02114269882440567, -0.5448867082595825, 0.3739597797393799, 0.14488767087459564, 0.19165657460689545, -0.18221527338027954, -0.21478384733200073, 0.2275918871164322, -0.27609628438949585, 0.5989823937416077, 0.019277457147836685, 0.06914625316858292, 0.061302151530981064, -0.0501546785235405, -0.10577737540006638, -0.055776819586753845, -0.03336707502603531, -0.0936836525797844, 0.20603084564208984, -0.0033683478832244873, -0.42974868416786194, 0.006628898903727531, 0.15482155978679657, 0.19221405684947968, -0.07304496318101883, -0.08640987426042557, -0.44292178750038147, -0.4385754466056824, -0.40330877900123596, 0.2203482687473297, -0.19638533890247345, 0.3476666510105133, -0.25391799211502075, -0.04840502142906189, 0.024263707920908928, -0.10065814852714539, 0.2695053815841675, 0.1647171527147293, 0.22914716601371765, 0.110596664249897, 0.22661995887756348, -0.24429190158843994, 0.13070419430732727, 0.1984192579984665, 0.5014007091522217, 0.049889978021383286, -0.03833119571208954, 0.04114202409982681, -0.09934808313846588, -0.08475775271654129, 0.1514367312192917, -0.07930830866098404, 0.06131284311413765, 0.08193901181221008, 0.17971403896808624, 0.007807188667356968, 0.06768348813056946, 0.191093310713768, 0.07904420047998428, -0.4913080930709839, 0.00012611597776412964, 0.18332332372665405, -0.1703171283006668, -0.12918595969676971, 0.22338254749774933, -0.07339797914028168, -0.06663050502538681, 0.10432832688093185, 0.15409207344055176, 0.9350462555885315, -0.014139235019683838, 0.058612577617168427, 0.29328739643096924, -0.079803965985775, 0.12429782748222351, -0.2610677480697632, 0.09160012751817703, -0.308572918176651, -0.4105004072189331, -0.08249296247959137, -0.13053175806999207, 0.2970247268676758, -0.14368225634098053, -0.1895328313112259, 0.23112767934799194, -0.0813201293349266, 0.11333084106445312, 0.008750002831220627, 0.03075598180294037, -0.40086105465888977, -0.04071492329239845, 0.01718025654554367, 0.2892783284187317, 0.13341988623142242, 0.20583026111125946, -0.12051525712013245, 0.05827419087290764, -0.10158440470695496, -0.24899086356163025, -0.13879992067813873, -0.039493925869464874, -0.19463592767715454, 0.03599635511636734, 0.16839082539081573, -0.1722528636455536, -0.23880907893180847, 0.038397498428821564, 0.21403709053993225, 0.18490250408649445, -0.15437829494476318, 0.15479524433612823, 0.31905168294906616, 0.2688971757888794, 0.10504724830389023, -0.12844356894493103, 0.07145668566226959, -0.12665459513664246, -0.2375257909297943, 0.17874372005462646, -0.03149297088384628, -0.19412989914417267, 0.08989214897155762, 0.20072123408317566, 0.13910531997680664, -0.39492350816726685, -0.05906708911061287, -0.19327202439308167, -0.06835195422172546, -0.2689076364040375, 0.2183004766702652, 0.12494394183158875, -0.1642821729183197, 0.3021155297756195, -0.2200939804315567, -0.381645143032074, -0.19553539156913757, 0.4039522707462311, 0.059818439185619354, -0.055473219603300095, 0.39847618341445923, -0.1549912393093109, -0.3118517994880676, -0.3498164415359497, -0.08506038784980774, -0.20270290970802307, -0.17557567358016968, 0.05849461257457733, -0.03073701076209545, -0.15075963735580444, -0.020298466086387634, 0.5994767546653748, 0.060186974704265594, 0.19920223951339722, 0.02526635304093361, -0.4625312387943268, -0.42742159962654114, -0.061734944581985474, 0.03706744685769081, 0.3987518548965454, -0.15916256606578827, 0.16445614397525787, 0.012947244569659233, -0.004292689263820648, -0.43596765398979187, 0.031307466328144073, -0.4266003370285034, -0.018036898225545883, -0.08434324711561203, 0.023849669843912125, 0.3092130124568939, 0.21308329701423645, 0.29234951734542847, 0.12799608707427979, -0.30219441652297974, -0.3937187194824219, 0.08653353154659271, 0.09008870273828506, -0.14846336841583252, -0.09343032538890839, 0.1611853688955307, 0.1144799292087555, -0.08965542912483215, -0.1671106219291687, 0.13754960894584656, 0.09744145721197128, -0.05776767432689667, -0.0011662635952234268, 0.03317973017692566, 0.11357127875089645, 0.06544121354818344, 0.03810965642333031, -0.12498892843723297, -0.06489604711532593, 0.08184729516506195, 0.06233051419258118, -0.31649965047836304, -0.06265197694301605, 0.21798862516880035, 0.2692120373249054, 0.1765723079442978, -0.25738468766212463, 0.18408872187137604, -0.08021324872970581, -0.28304219245910645, 0.12898407876491547, 0.2626402676105499, 0.10557858645915985, -0.10393302142620087, -0.05853545665740967, -0.00696902722120285, 0.3814464211463928, -0.24597476422786713, 0.062213074415922165, -0.19105800986289978, -0.11888439208269119, 0.3324759006500244, 0.20271265506744385, 0.03767793998122215, -0.49493420124053955, 0.7025297284126282, -0.0032799430191516876, 0.09852687269449234, -0.2750313878059387, 0.06997153162956238, 0.3853769600391388, -0.09488283097743988, 0.06583025306463242, 0.3065243363380432, -0.20568472146987915, 0.0029283538460731506, 0.1775141954421997, -0.12993362545967102, 0.3608565926551819, -0.3100311756134033, 0.22306671738624573, -0.21101057529449463, -0.5824345946311951, 0.43522578477859497, 0.19912779331207275, -0.1894797384738922, -0.1579817831516266, 0.21143674850463867, 0.006730489432811737, 0.12381017208099365, 0.1221541166305542, -0.5876337885856628, 0.054521504789590836, -0.18315264582633972, -0.2643299400806427, 0.04633136838674545, -0.25904372334480286, 0.06537827849388123, 0.08788329362869263, 0.17545495927333832, -0.03460018336772919, 0.14828503131866455, -0.06597074866294861, -0.07132065296173096, -0.2589384913444519, -0.050329938530921936, 0.05690690875053406, -0.019562505185604095, -0.226518452167511, 0.3146122694015503, 0.3966416120529175, 0.10995562374591827, 0.06532835960388184, 0.26924097537994385, 0.4736747443675995, 0.30895155668258667, 0.07838893681764603, 0.11792709678411484, -0.1571085900068283, -0.06981592625379562, -0.29738831520080566, 0.5326287746429443, 0.056090086698532104, 0.12402398884296417, 0.3892194330692291, 0.33868253231048584, -0.35118669271469116, -0.10180355608463287, -0.004990827292203903, -0.2602482736110687, -0.25271090865135193, 0.4092099964618683, 0.04140118509531021, 0.11650843173265457, -0.1890028864145279, 0.08631154149770737, -0.4327796995639801, -0.12798988819122314, -0.12977595627307892, -0.10070309042930603, 0.26383310556411743, -0.047427937388420105, 0.13595466315746307, -0.13304288685321808, 0.3954499065876007, 0.11508388072252274, 0.2237357795238495, -0.35402292013168335, -0.29979121685028076, -0.443930059671402, 0.2721990644931793, 0.11012555658817291, -0.08830752223730087, -0.28892645239830017, 0.4001695513725281, -0.13441091775894165, 0.005416510626673698, 0.3089107275009155, 0.20314213633537292, 0.21907810866832733, 0.012316066771745682, -0.15926919877529144, 0.17761847376823425, -0.16125626862049103, -0.17664110660552979, -0.0006082989275455475, -0.4943605661392212, 0.24998092651367188, 0.01212752889841795, 0.29278966784477234, 0.03693773224949837, -0.08022898435592651, -0.08585919439792633, 0.1793816238641739, 0.2793874442577362, 0.22420385479927063, 0.4025237262248993, -0.26060590147972107, -0.1163613572716713, -0.17698027193546295, 0.11177251487970352, 0.007236148230731487, 0.1602901816368103, 0.17387434840202332, 0.23797091841697693, 0.19372721016407013, -0.002248309552669525, -0.05700988322496414, 0.6293025016784668, 0.3451418876647949, -0.1713215857744217, 0.006119709461927414, 0.24794191122055054, -0.04957638308405876, 0.05936165153980255, -0.02183469757437706, 0.1271129846572876, 0.16174350678920746, 0.22889575362205505, -0.23515881597995758, -0.29199516773223877, 0.3922101855278015, -0.3292052447795868, -0.23996081948280334, -0.16823481023311615, 0.46806830167770386, -0.2205522656440735, -0.0836518332362175, -0.4472202956676483, 0.23536372184753418, 0.33403486013412476, 0.0017696619033813477, -0.10090698301792145, 0.39558759331703186, -0.2101522535085678, 0.04606184735894203, -0.14001600444316864, 0.25752827525138855, 0.15152159333229065, -0.052701279520988464, -0.09237298369407654, -0.29959636926651 ]
https://github.com/huggingface/datasets/issues/3269
coqa NonMatchingChecksumError
I'm getting the same error in two separate environments: ``` - `datasets` version: 1.15.1 - Platform: Linux-5.4.0-84-generic-x86_64-with-debian-bullseye-sid - Python version: 3.7.11 - PyArrow version: 6.0.0 ``` ``` - `datasets` version: 1.15.1 - Platform: macOS-10.16-x86_64-i386-64bit - Python version: 3.9.5 - PyArrow version: 6.0.0 ```
``` >>> from datasets import load_dataset >>> dataset = load_dataset("coqa") Downloading: 3.82kB [00:00, 1.26MB/s] Downloading: 1.79kB [00:00, 733kB/s] Using custom data configuration default Downloading and preparing dataset coqa/default (download: 55.40 MiB, generated: 18.35 MiB, post-processed: Unknown size, total: 73.75 MiB) to /Users/zhaofengw/.cache/huggingface/datasets/coqa/default/1.0.0/553ce70bfdcd15ff4b5f4abc4fc2f37137139cde1f58f4f60384a53a327716f0... Downloading: 100%|█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 222/222 [00:00<00:00, 1.38MB/s] Downloading: 100%|█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 222/222 [00:00<00:00, 1.32MB/s] 100%|█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 2/2 [00:01<00:00, 1.91it/s] 100%|███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 2/2 [00:00<00:00, 1117.44it/s] Traceback (most recent call last): File "<stdin>", line 1, in <module> File "/Users/zhaofengw/miniconda3/lib/python3.9/site-packages/datasets/load.py", line 1632, in load_dataset builder_instance.download_and_prepare( File "/Users/zhaofengw/miniconda3/lib/python3.9/site-packages/datasets/builder.py", line 607, in download_and_prepare self._download_and_prepare( File "/Users/zhaofengw/miniconda3/lib/python3.9/site-packages/datasets/builder.py", line 679, in _download_and_prepare verify_checksums( File "/Users/zhaofengw/miniconda3/lib/python3.9/site-packages/datasets/utils/info_utils.py", line 40, in verify_checksums raise NonMatchingChecksumError(error_msg + str(bad_urls)) datasets.utils.info_utils.NonMatchingChecksumError: Checksums didn't match for dataset source files: ['https://nlp.stanford.edu/data/coqa/coqa-train-v1.0.json', 'https://nlp.stanford.edu/data/coqa/coqa-dev-v1.0.json'] ```
43
coqa NonMatchingChecksumError ``` >>> from datasets import load_dataset >>> dataset = load_dataset("coqa") Downloading: 3.82kB [00:00, 1.26MB/s] Downloading: 1.79kB [00:00, 733kB/s] Using custom data configuration default Downloading and preparing dataset coqa/default (download: 55.40 MiB, generated: 18.35 MiB, post-processed: Unknown size, total: 73.75 MiB) to /Users/zhaofengw/.cache/huggingface/datasets/coqa/default/1.0.0/553ce70bfdcd15ff4b5f4abc4fc2f37137139cde1f58f4f60384a53a327716f0... Downloading: 100%|█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 222/222 [00:00<00:00, 1.38MB/s] Downloading: 100%|█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 222/222 [00:00<00:00, 1.32MB/s] 100%|█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 2/2 [00:01<00:00, 1.91it/s] 100%|███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 2/2 [00:00<00:00, 1117.44it/s] Traceback (most recent call last): File "<stdin>", line 1, in <module> File "/Users/zhaofengw/miniconda3/lib/python3.9/site-packages/datasets/load.py", line 1632, in load_dataset builder_instance.download_and_prepare( File "/Users/zhaofengw/miniconda3/lib/python3.9/site-packages/datasets/builder.py", line 607, in download_and_prepare self._download_and_prepare( File "/Users/zhaofengw/miniconda3/lib/python3.9/site-packages/datasets/builder.py", line 679, in _download_and_prepare verify_checksums( File "/Users/zhaofengw/miniconda3/lib/python3.9/site-packages/datasets/utils/info_utils.py", line 40, in verify_checksums raise NonMatchingChecksumError(error_msg + str(bad_urls)) datasets.utils.info_utils.NonMatchingChecksumError: Checksums didn't match for dataset source files: ['https://nlp.stanford.edu/data/coqa/coqa-train-v1.0.json', 'https://nlp.stanford.edu/data/coqa/coqa-dev-v1.0.json'] ``` I'm getting the same error in two separate environments: ``` - `datasets` version: 1.15.1 - Platform: Linux-5.4.0-84-generic-x86_64-with-debian-bullseye-sid - Python version: 3.7.11 - PyArrow version: 6.0.0 ``` ``` - `datasets` version: 1.15.1 - Platform: macOS-10.16-x86_64-i386-64bit - Python version: 3.9.5 - PyArrow version: 6.0.0 ```
[ -0.2934424877166748, -0.16965605318546295, -0.23772868514060974, 0.1443958878517151, 0.17530269920825958, -0.03220370039343834, 0.10853204131126404, 0.34697225689888, 0.1612992137670517, 0.34507638216018677, -0.12422356754541397, 0.016303548589348793, 0.13270717859268188, 0.3179677724838257, -0.24001473188400269, 0.41088542342185974, -0.03730381280183792, 0.130801722407341, -0.13652393221855164, -0.08464013040065765, -0.16203461587429047, 0.16598115861415863, -0.01582520455121994, -0.21113817393779755, 0.02861746959388256, -0.10914026945829391, 0.10121777653694153, 0.14800600707530975, -0.2446722537279129, -0.28355634212493896, 0.09498230367898941, 0.13728395104408264, -0.2691483199596405, 0.30232828855514526, -0.00010783330799313262, -0.0027384981513023376, 0.3951041102409363, -0.039331186562776566, -0.3947451412677765, 0.14915716648101807, -0.5660779476165771, -0.3265206217765808, -0.04970679432153702, -0.17008115351200104, -0.0475759357213974, 0.23689433932304382, -0.06580795347690582, -0.08954586833715439, 0.2255401611328125, 0.3060496151447296, 0.33020082116127014, 0.5339956283569336, -0.10401947796344757, -0.16375169157981873, 0.07236073911190033, 0.031290773302316666, -0.12435615807771683, 0.2001531571149826, 0.21609294414520264, 0.1913791298866272, -0.27258944511413574, 0.3140356242656708, -0.0051485151052474976, 0.09484364092350006, -0.17975234985351562, -0.14494965970516205, 0.12952551245689392, -0.10418336093425751, 0.5087623596191406, 0.2842763364315033, 0.27493998408317566, -0.176284521818161, -0.2551177740097046, -0.07698702812194824, -0.20052854716777802, -0.3510757386684418, 0.24585279822349548, 0.14968642592430115, -0.340237557888031, -0.17369966208934784, -0.2658529281616211, 0.3822205364704132, 0.03578901290893555, -0.11176595091819763, -0.2776526212692261, -0.06412157416343689, -0.1459256261587143, -0.10768140107393265, 0.19801907241344452, -0.18681031465530396, 0.10265035182237625, -0.10998208820819855, -0.2069360315799713, 0.039076365530490875, -0.5156916379928589, -0.14970144629478455, 0.31265756487846375, 0.37973666191101074, 0.3413914740085602, 0.22981014847755432, 0.18982462584972382, 0.21446359157562256, 0.026291899383068085, -0.021310336887836456, -0.15561148524284363, 0.3892468512058258, 0.011136263608932495, -0.24692974984645844, 0.22724728286266327, 0.3603816330432892, -0.08430300652980804, 0.035563740879297256, 0.09798380732536316, -0.310355007648468, 0.16753895580768585, 0.25340837240219116, 0.06962268054485321, -0.4281231462955475, -0.4341353178024292, 0.149600550532341, 0.1567331850528717, 0.06822070479393005, 0.18170641362667084, 0.5912106037139893, -0.03076007217168808, -0.06389985978603363, -0.16616404056549072, 0.004891406744718552, -0.30665868520736694, -0.1340271681547165, -0.371019572019577, 0.031862448900938034, -0.14453153312206268, -0.007327264174818993, 0.1801055371761322, -0.11212418973445892, 0.23918317258358002, -0.1675238162279129, 0.33850133419036865, -0.021233825013041496, 0.02179025299847126, -0.2919423282146454, 0.0382426381111145, 0.4026385545730591, -0.01665576733648777, 0.04756862670183182, 0.28407829999923706, -0.0009175539016723633, -0.1435098946094513, -0.03872884809970856, -0.03240456432104111, -0.26845183968544006, 0.10987308621406555, 0.3479248583316803, -0.07606720924377441, -0.0021591894328594208, 0.2647094130516052, -0.20924822986125946, 0.3453936278820038, -0.06105532497167587, 0.13540741801261902, 0.01325797289609909, -0.16954652965068817, -0.2886042594909668, 0.16366930305957794, 0.4162479043006897, -0.07393622398376465, 0.032692380249500275, 0.038964398205280304, -0.12756450474262238, 0.17309290170669556, 0.149419367313385, 0.0685000866651535, 0.09921149909496307, -0.21407602727413177, -0.10196132957935333, 0.21608251333236694, -0.3309718668460846, -0.6776994466781616, 0.09962806105613708, 0.045031264424324036, 0.1138063296675682, 0.15592333674430847, 0.021511884406208992, 0.09797555953264236, -0.03561897203326225, 0.07381267100572586, -0.0027298852801322937, 0.031051501631736755, 0.11351162940263748, -0.39217624068260193, -0.31785261631011963, -0.009648721665143967, 0.10581538081169128, 0.16304001212120056, -0.05722411721944809, 0.29456934332847595, -0.45781758427619934, 0.20404884219169617, -0.09221106767654419, -0.011318291537463665, 0.12655538320541382, 0.18324358761310577, -0.20327387750148773, -0.04442282021045685, 0.004791315644979477, -0.2321658432483673, 0.2732808291912079, -0.44594860076904297, 0.06045011430978775, -0.18885435163974762, -0.26077142357826233, -0.3654577136039734, -0.0270660612732172, -0.21089313924312592, -0.14423216879367828, 0.30756711959838867, 0.273681640625, 0.27484431862831116, 0.07274362444877625, 0.11723446846008301, 0.40884360671043396, -0.1587977558374405, -0.04461226612329483, -0.31232354044914246, 0.043137192726135254, -0.09874071925878525, -0.07750507444143295, -0.03355168551206589, 0.3281101882457733, 0.15009266138076782, -0.022737614810466766, -0.07894660532474518, 0.30079612135887146, 0.17490367591381073, 0.1836465299129486, -0.08949295431375504, 0.127378910779953, -0.0025923699140548706, 0.049132224172353745, 0.0637911930680275, 0.16952727735042572, 0.07616879045963287, -0.014355748891830444, -0.21904432773590088, 0.49147361516952515, -0.1414717584848404, 0.17851026356220245, 0.1221497654914856, -0.14977209270000458, 0.24572929739952087, -0.15667659044265747, -0.11089283972978592, -0.11869918555021286, 0.23188894987106323, 0.17755544185638428, 0.04459628090262413, 0.10382231324911118, -0.11840202659368515, 0.113840252161026, 0.3319092392921448, -0.06497618556022644, 0.0596817247569561, 0.1184130534529686, 0.09951990842819214, -0.09228239208459854, 0.07496040314435959, 0.3611769676208496, 0.4361034631729126, 0.19483688473701477, 0.17049480974674225, -0.05781761556863785, -0.00705199409276247, -0.16996005177497864, 0.12952379882335663, 0.12153053283691406, -0.03822976350784302, 0.4889443516731262, 0.23847328126430511, -0.19473984837532043, -0.48423442244529724, -0.17633193731307983, -0.07251535356044769, 0.20507536828517914, -0.29004234075546265, 0.048694491386413574, -0.17661550641059875, -0.24514919519424438, 0.018816251307725906, -0.23127946257591248, 0.0636468231678009, -0.40280500054359436, 0.12155710905790329, 0.18837758898735046, -0.06813565641641617, 0.24740423262119293, -0.3666554391384125, 0.17079229652881622, 0.20224541425704956, -0.23210398852825165, -0.1817013919353485, 0.2013235241174698, -0.10452926903963089, 0.2084091603755951, 0.18242862820625305, 0.049002859741449356, 0.5008370280265808, -0.33716222643852234, 0.0265551395714283, -0.2955659031867981, -0.22314369678497314, -0.04286115616559982, -0.0206168070435524, 0.02589571662247181, 0.23955890536308289, 0.1678852140903473, -0.09732411056756973, -0.16121135652065277, 0.1723998636007309, -0.03255085274577141, -0.42428526282310486, 0.07566442340612411, -0.20237238705158234, 0.07886164635419846, -0.18486922979354858, -0.041290752589702606, -0.2166948914527893, -0.4261755645275116, 0.10516571998596191, 0.1664564609527588, 0.21152444183826447, 0.28348469734191895, 0.030940603464841843, 0.18370208144187927, 0.06931445002555847, 0.2948223650455475, -0.35511231422424316, -0.6185640692710876, 0.30382198095321655, -0.11850994825363159, -0.3948781490325928, -0.0802287831902504, -0.29940736293792725, 0.5251651406288147, -0.05346399173140526, -0.25605493783950806, -0.2709777355194092, -0.43960779905319214, 0.19161812961101532, 0.058311913162469864, -0.09370128065347672, 0.4126143455505371, -0.019693177193403244, -0.30627769231796265, -0.05406895652413368, -0.1069871336221695, 0.10140863060951233, -0.07748894393444061, 0.2577381432056427, -0.22634556889533997, 0.4307520091533661, 0.0870751142501831, 0.37161386013031006, 0.39679551124572754, -0.04324616864323616, 0.2767592668533325, -0.0012930259108543396, 0.366716593503952, -0.29272159934043884, -0.3451104760169983, 0.11048631370067596, -0.010120302438735962, -0.10813893377780914, 0.17037226259708405, -0.049006424844264984, 0.1882525533437729, -0.0010115094482898712, -0.04595613479614258, -0.3217918574810028, -0.2026652693748474, -0.029957303777337074, -0.011170759797096252, 0.20619788765907288, -0.0590057373046875, 0.1796014904975891, -0.07419231534004211, -0.05333031713962555, 0.07544931769371033, 0.23053954541683197, -0.1735401153564453, -0.22238445281982422, -0.17990374565124512, 0.02114269882440567, -0.5448867082595825, 0.3739597797393799, 0.14488767087459564, 0.19165657460689545, -0.18221527338027954, -0.21478384733200073, 0.2275918871164322, -0.27609628438949585, 0.5989823937416077, 0.019277457147836685, 0.06914625316858292, 0.061302151530981064, -0.0501546785235405, -0.10577737540006638, -0.055776819586753845, -0.03336707502603531, -0.0936836525797844, 0.20603084564208984, -0.0033683478832244873, -0.42974868416786194, 0.006628898903727531, 0.15482155978679657, 0.19221405684947968, -0.07304496318101883, -0.08640987426042557, -0.44292178750038147, -0.4385754466056824, -0.40330877900123596, 0.2203482687473297, -0.19638533890247345, 0.3476666510105133, -0.25391799211502075, -0.04840502142906189, 0.024263707920908928, -0.10065814852714539, 0.2695053815841675, 0.1647171527147293, 0.22914716601371765, 0.110596664249897, 0.22661995887756348, -0.24429190158843994, 0.13070419430732727, 0.1984192579984665, 0.5014007091522217, 0.049889978021383286, -0.03833119571208954, 0.04114202409982681, -0.09934808313846588, -0.08475775271654129, 0.1514367312192917, -0.07930830866098404, 0.06131284311413765, 0.08193901181221008, 0.17971403896808624, 0.007807188667356968, 0.06768348813056946, 0.191093310713768, 0.07904420047998428, -0.4913080930709839, 0.00012611597776412964, 0.18332332372665405, -0.1703171283006668, -0.12918595969676971, 0.22338254749774933, -0.07339797914028168, -0.06663050502538681, 0.10432832688093185, 0.15409207344055176, 0.9350462555885315, -0.014139235019683838, 0.058612577617168427, 0.29328739643096924, -0.079803965985775, 0.12429782748222351, -0.2610677480697632, 0.09160012751817703, -0.308572918176651, -0.4105004072189331, -0.08249296247959137, -0.13053175806999207, 0.2970247268676758, -0.14368225634098053, -0.1895328313112259, 0.23112767934799194, -0.0813201293349266, 0.11333084106445312, 0.008750002831220627, 0.03075598180294037, -0.40086105465888977, -0.04071492329239845, 0.01718025654554367, 0.2892783284187317, 0.13341988623142242, 0.20583026111125946, -0.12051525712013245, 0.05827419087290764, -0.10158440470695496, -0.24899086356163025, -0.13879992067813873, -0.039493925869464874, -0.19463592767715454, 0.03599635511636734, 0.16839082539081573, -0.1722528636455536, -0.23880907893180847, 0.038397498428821564, 0.21403709053993225, 0.18490250408649445, -0.15437829494476318, 0.15479524433612823, 0.31905168294906616, 0.2688971757888794, 0.10504724830389023, -0.12844356894493103, 0.07145668566226959, -0.12665459513664246, -0.2375257909297943, 0.17874372005462646, -0.03149297088384628, -0.19412989914417267, 0.08989214897155762, 0.20072123408317566, 0.13910531997680664, -0.39492350816726685, -0.05906708911061287, -0.19327202439308167, -0.06835195422172546, -0.2689076364040375, 0.2183004766702652, 0.12494394183158875, -0.1642821729183197, 0.3021155297756195, -0.2200939804315567, -0.381645143032074, -0.19553539156913757, 0.4039522707462311, 0.059818439185619354, -0.055473219603300095, 0.39847618341445923, -0.1549912393093109, -0.3118517994880676, -0.3498164415359497, -0.08506038784980774, -0.20270290970802307, -0.17557567358016968, 0.05849461257457733, -0.03073701076209545, -0.15075963735580444, -0.020298466086387634, 0.5994767546653748, 0.060186974704265594, 0.19920223951339722, 0.02526635304093361, -0.4625312387943268, -0.42742159962654114, -0.061734944581985474, 0.03706744685769081, 0.3987518548965454, -0.15916256606578827, 0.16445614397525787, 0.012947244569659233, -0.004292689263820648, -0.43596765398979187, 0.031307466328144073, -0.4266003370285034, -0.018036898225545883, -0.08434324711561203, 0.023849669843912125, 0.3092130124568939, 0.21308329701423645, 0.29234951734542847, 0.12799608707427979, -0.30219441652297974, -0.3937187194824219, 0.08653353154659271, 0.09008870273828506, -0.14846336841583252, -0.09343032538890839, 0.1611853688955307, 0.1144799292087555, -0.08965542912483215, -0.1671106219291687, 0.13754960894584656, 0.09744145721197128, -0.05776767432689667, -0.0011662635952234268, 0.03317973017692566, 0.11357127875089645, 0.06544121354818344, 0.03810965642333031, -0.12498892843723297, -0.06489604711532593, 0.08184729516506195, 0.06233051419258118, -0.31649965047836304, -0.06265197694301605, 0.21798862516880035, 0.2692120373249054, 0.1765723079442978, -0.25738468766212463, 0.18408872187137604, -0.08021324872970581, -0.28304219245910645, 0.12898407876491547, 0.2626402676105499, 0.10557858645915985, -0.10393302142620087, -0.05853545665740967, -0.00696902722120285, 0.3814464211463928, -0.24597476422786713, 0.062213074415922165, -0.19105800986289978, -0.11888439208269119, 0.3324759006500244, 0.20271265506744385, 0.03767793998122215, -0.49493420124053955, 0.7025297284126282, -0.0032799430191516876, 0.09852687269449234, -0.2750313878059387, 0.06997153162956238, 0.3853769600391388, -0.09488283097743988, 0.06583025306463242, 0.3065243363380432, -0.20568472146987915, 0.0029283538460731506, 0.1775141954421997, -0.12993362545967102, 0.3608565926551819, -0.3100311756134033, 0.22306671738624573, -0.21101057529449463, -0.5824345946311951, 0.43522578477859497, 0.19912779331207275, -0.1894797384738922, -0.1579817831516266, 0.21143674850463867, 0.006730489432811737, 0.12381017208099365, 0.1221541166305542, -0.5876337885856628, 0.054521504789590836, -0.18315264582633972, -0.2643299400806427, 0.04633136838674545, -0.25904372334480286, 0.06537827849388123, 0.08788329362869263, 0.17545495927333832, -0.03460018336772919, 0.14828503131866455, -0.06597074866294861, -0.07132065296173096, -0.2589384913444519, -0.050329938530921936, 0.05690690875053406, -0.019562505185604095, -0.226518452167511, 0.3146122694015503, 0.3966416120529175, 0.10995562374591827, 0.06532835960388184, 0.26924097537994385, 0.4736747443675995, 0.30895155668258667, 0.07838893681764603, 0.11792709678411484, -0.1571085900068283, -0.06981592625379562, -0.29738831520080566, 0.5326287746429443, 0.056090086698532104, 0.12402398884296417, 0.3892194330692291, 0.33868253231048584, -0.35118669271469116, -0.10180355608463287, -0.004990827292203903, -0.2602482736110687, -0.25271090865135193, 0.4092099964618683, 0.04140118509531021, 0.11650843173265457, -0.1890028864145279, 0.08631154149770737, -0.4327796995639801, -0.12798988819122314, -0.12977595627307892, -0.10070309042930603, 0.26383310556411743, -0.047427937388420105, 0.13595466315746307, -0.13304288685321808, 0.3954499065876007, 0.11508388072252274, 0.2237357795238495, -0.35402292013168335, -0.29979121685028076, -0.443930059671402, 0.2721990644931793, 0.11012555658817291, -0.08830752223730087, -0.28892645239830017, 0.4001695513725281, -0.13441091775894165, 0.005416510626673698, 0.3089107275009155, 0.20314213633537292, 0.21907810866832733, 0.012316066771745682, -0.15926919877529144, 0.17761847376823425, -0.16125626862049103, -0.17664110660552979, -0.0006082989275455475, -0.4943605661392212, 0.24998092651367188, 0.01212752889841795, 0.29278966784477234, 0.03693773224949837, -0.08022898435592651, -0.08585919439792633, 0.1793816238641739, 0.2793874442577362, 0.22420385479927063, 0.4025237262248993, -0.26060590147972107, -0.1163613572716713, -0.17698027193546295, 0.11177251487970352, 0.007236148230731487, 0.1602901816368103, 0.17387434840202332, 0.23797091841697693, 0.19372721016407013, -0.002248309552669525, -0.05700988322496414, 0.6293025016784668, 0.3451418876647949, -0.1713215857744217, 0.006119709461927414, 0.24794191122055054, -0.04957638308405876, 0.05936165153980255, -0.02183469757437706, 0.1271129846572876, 0.16174350678920746, 0.22889575362205505, -0.23515881597995758, -0.29199516773223877, 0.3922101855278015, -0.3292052447795868, -0.23996081948280334, -0.16823481023311615, 0.46806830167770386, -0.2205522656440735, -0.0836518332362175, -0.4472202956676483, 0.23536372184753418, 0.33403486013412476, 0.0017696619033813477, -0.10090698301792145, 0.39558759331703186, -0.2101522535085678, 0.04606184735894203, -0.14001600444316864, 0.25752827525138855, 0.15152159333229065, -0.052701279520988464, -0.09237298369407654, -0.29959636926651 ]
https://github.com/huggingface/datasets/issues/3269
coqa NonMatchingChecksumError
I'm sorry, but don't get to reproduce the error in the Linux environment. @mariosasko @lhoestq can you reproduce it?
``` >>> from datasets import load_dataset >>> dataset = load_dataset("coqa") Downloading: 3.82kB [00:00, 1.26MB/s] Downloading: 1.79kB [00:00, 733kB/s] Using custom data configuration default Downloading and preparing dataset coqa/default (download: 55.40 MiB, generated: 18.35 MiB, post-processed: Unknown size, total: 73.75 MiB) to /Users/zhaofengw/.cache/huggingface/datasets/coqa/default/1.0.0/553ce70bfdcd15ff4b5f4abc4fc2f37137139cde1f58f4f60384a53a327716f0... Downloading: 100%|█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 222/222 [00:00<00:00, 1.38MB/s] Downloading: 100%|█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 222/222 [00:00<00:00, 1.32MB/s] 100%|█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 2/2 [00:01<00:00, 1.91it/s] 100%|███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 2/2 [00:00<00:00, 1117.44it/s] Traceback (most recent call last): File "<stdin>", line 1, in <module> File "/Users/zhaofengw/miniconda3/lib/python3.9/site-packages/datasets/load.py", line 1632, in load_dataset builder_instance.download_and_prepare( File "/Users/zhaofengw/miniconda3/lib/python3.9/site-packages/datasets/builder.py", line 607, in download_and_prepare self._download_and_prepare( File "/Users/zhaofengw/miniconda3/lib/python3.9/site-packages/datasets/builder.py", line 679, in _download_and_prepare verify_checksums( File "/Users/zhaofengw/miniconda3/lib/python3.9/site-packages/datasets/utils/info_utils.py", line 40, in verify_checksums raise NonMatchingChecksumError(error_msg + str(bad_urls)) datasets.utils.info_utils.NonMatchingChecksumError: Checksums didn't match for dataset source files: ['https://nlp.stanford.edu/data/coqa/coqa-train-v1.0.json', 'https://nlp.stanford.edu/data/coqa/coqa-dev-v1.0.json'] ```
19
coqa NonMatchingChecksumError ``` >>> from datasets import load_dataset >>> dataset = load_dataset("coqa") Downloading: 3.82kB [00:00, 1.26MB/s] Downloading: 1.79kB [00:00, 733kB/s] Using custom data configuration default Downloading and preparing dataset coqa/default (download: 55.40 MiB, generated: 18.35 MiB, post-processed: Unknown size, total: 73.75 MiB) to /Users/zhaofengw/.cache/huggingface/datasets/coqa/default/1.0.0/553ce70bfdcd15ff4b5f4abc4fc2f37137139cde1f58f4f60384a53a327716f0... Downloading: 100%|█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 222/222 [00:00<00:00, 1.38MB/s] Downloading: 100%|█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 222/222 [00:00<00:00, 1.32MB/s] 100%|█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 2/2 [00:01<00:00, 1.91it/s] 100%|███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 2/2 [00:00<00:00, 1117.44it/s] Traceback (most recent call last): File "<stdin>", line 1, in <module> File "/Users/zhaofengw/miniconda3/lib/python3.9/site-packages/datasets/load.py", line 1632, in load_dataset builder_instance.download_and_prepare( File "/Users/zhaofengw/miniconda3/lib/python3.9/site-packages/datasets/builder.py", line 607, in download_and_prepare self._download_and_prepare( File "/Users/zhaofengw/miniconda3/lib/python3.9/site-packages/datasets/builder.py", line 679, in _download_and_prepare verify_checksums( File "/Users/zhaofengw/miniconda3/lib/python3.9/site-packages/datasets/utils/info_utils.py", line 40, in verify_checksums raise NonMatchingChecksumError(error_msg + str(bad_urls)) datasets.utils.info_utils.NonMatchingChecksumError: Checksums didn't match for dataset source files: ['https://nlp.stanford.edu/data/coqa/coqa-train-v1.0.json', 'https://nlp.stanford.edu/data/coqa/coqa-dev-v1.0.json'] ``` I'm sorry, but don't get to reproduce the error in the Linux environment. @mariosasko @lhoestq can you reproduce it?
[ -0.2934424877166748, -0.16965605318546295, -0.23772868514060974, 0.1443958878517151, 0.17530269920825958, -0.03220370039343834, 0.10853204131126404, 0.34697225689888, 0.1612992137670517, 0.34507638216018677, -0.12422356754541397, 0.016303548589348793, 0.13270717859268188, 0.3179677724838257, -0.24001473188400269, 0.41088542342185974, -0.03730381280183792, 0.130801722407341, -0.13652393221855164, -0.08464013040065765, -0.16203461587429047, 0.16598115861415863, -0.01582520455121994, -0.21113817393779755, 0.02861746959388256, -0.10914026945829391, 0.10121777653694153, 0.14800600707530975, -0.2446722537279129, -0.28355634212493896, 0.09498230367898941, 0.13728395104408264, -0.2691483199596405, 0.30232828855514526, -0.00010783330799313262, -0.0027384981513023376, 0.3951041102409363, -0.039331186562776566, -0.3947451412677765, 0.14915716648101807, -0.5660779476165771, -0.3265206217765808, -0.04970679432153702, -0.17008115351200104, -0.0475759357213974, 0.23689433932304382, -0.06580795347690582, -0.08954586833715439, 0.2255401611328125, 0.3060496151447296, 0.33020082116127014, 0.5339956283569336, -0.10401947796344757, -0.16375169157981873, 0.07236073911190033, 0.031290773302316666, -0.12435615807771683, 0.2001531571149826, 0.21609294414520264, 0.1913791298866272, -0.27258944511413574, 0.3140356242656708, -0.0051485151052474976, 0.09484364092350006, -0.17975234985351562, -0.14494965970516205, 0.12952551245689392, -0.10418336093425751, 0.5087623596191406, 0.2842763364315033, 0.27493998408317566, -0.176284521818161, -0.2551177740097046, -0.07698702812194824, -0.20052854716777802, -0.3510757386684418, 0.24585279822349548, 0.14968642592430115, -0.340237557888031, -0.17369966208934784, -0.2658529281616211, 0.3822205364704132, 0.03578901290893555, -0.11176595091819763, -0.2776526212692261, -0.06412157416343689, -0.1459256261587143, -0.10768140107393265, 0.19801907241344452, -0.18681031465530396, 0.10265035182237625, -0.10998208820819855, -0.2069360315799713, 0.039076365530490875, -0.5156916379928589, -0.14970144629478455, 0.31265756487846375, 0.37973666191101074, 0.3413914740085602, 0.22981014847755432, 0.18982462584972382, 0.21446359157562256, 0.026291899383068085, -0.021310336887836456, -0.15561148524284363, 0.3892468512058258, 0.011136263608932495, -0.24692974984645844, 0.22724728286266327, 0.3603816330432892, -0.08430300652980804, 0.035563740879297256, 0.09798380732536316, -0.310355007648468, 0.16753895580768585, 0.25340837240219116, 0.06962268054485321, -0.4281231462955475, -0.4341353178024292, 0.149600550532341, 0.1567331850528717, 0.06822070479393005, 0.18170641362667084, 0.5912106037139893, -0.03076007217168808, -0.06389985978603363, -0.16616404056549072, 0.004891406744718552, -0.30665868520736694, -0.1340271681547165, -0.371019572019577, 0.031862448900938034, -0.14453153312206268, -0.007327264174818993, 0.1801055371761322, -0.11212418973445892, 0.23918317258358002, -0.1675238162279129, 0.33850133419036865, -0.021233825013041496, 0.02179025299847126, -0.2919423282146454, 0.0382426381111145, 0.4026385545730591, -0.01665576733648777, 0.04756862670183182, 0.28407829999923706, -0.0009175539016723633, -0.1435098946094513, -0.03872884809970856, -0.03240456432104111, -0.26845183968544006, 0.10987308621406555, 0.3479248583316803, -0.07606720924377441, -0.0021591894328594208, 0.2647094130516052, -0.20924822986125946, 0.3453936278820038, -0.06105532497167587, 0.13540741801261902, 0.01325797289609909, -0.16954652965068817, -0.2886042594909668, 0.16366930305957794, 0.4162479043006897, -0.07393622398376465, 0.032692380249500275, 0.038964398205280304, -0.12756450474262238, 0.17309290170669556, 0.149419367313385, 0.0685000866651535, 0.09921149909496307, -0.21407602727413177, -0.10196132957935333, 0.21608251333236694, -0.3309718668460846, -0.6776994466781616, 0.09962806105613708, 0.045031264424324036, 0.1138063296675682, 0.15592333674430847, 0.021511884406208992, 0.09797555953264236, -0.03561897203326225, 0.07381267100572586, -0.0027298852801322937, 0.031051501631736755, 0.11351162940263748, -0.39217624068260193, -0.31785261631011963, -0.009648721665143967, 0.10581538081169128, 0.16304001212120056, -0.05722411721944809, 0.29456934332847595, -0.45781758427619934, 0.20404884219169617, -0.09221106767654419, -0.011318291537463665, 0.12655538320541382, 0.18324358761310577, -0.20327387750148773, -0.04442282021045685, 0.004791315644979477, -0.2321658432483673, 0.2732808291912079, -0.44594860076904297, 0.06045011430978775, -0.18885435163974762, -0.26077142357826233, -0.3654577136039734, -0.0270660612732172, -0.21089313924312592, -0.14423216879367828, 0.30756711959838867, 0.273681640625, 0.27484431862831116, 0.07274362444877625, 0.11723446846008301, 0.40884360671043396, -0.1587977558374405, -0.04461226612329483, -0.31232354044914246, 0.043137192726135254, -0.09874071925878525, -0.07750507444143295, -0.03355168551206589, 0.3281101882457733, 0.15009266138076782, -0.022737614810466766, -0.07894660532474518, 0.30079612135887146, 0.17490367591381073, 0.1836465299129486, -0.08949295431375504, 0.127378910779953, -0.0025923699140548706, 0.049132224172353745, 0.0637911930680275, 0.16952727735042572, 0.07616879045963287, -0.014355748891830444, -0.21904432773590088, 0.49147361516952515, -0.1414717584848404, 0.17851026356220245, 0.1221497654914856, -0.14977209270000458, 0.24572929739952087, -0.15667659044265747, -0.11089283972978592, -0.11869918555021286, 0.23188894987106323, 0.17755544185638428, 0.04459628090262413, 0.10382231324911118, -0.11840202659368515, 0.113840252161026, 0.3319092392921448, -0.06497618556022644, 0.0596817247569561, 0.1184130534529686, 0.09951990842819214, -0.09228239208459854, 0.07496040314435959, 0.3611769676208496, 0.4361034631729126, 0.19483688473701477, 0.17049480974674225, -0.05781761556863785, -0.00705199409276247, -0.16996005177497864, 0.12952379882335663, 0.12153053283691406, -0.03822976350784302, 0.4889443516731262, 0.23847328126430511, -0.19473984837532043, -0.48423442244529724, -0.17633193731307983, -0.07251535356044769, 0.20507536828517914, -0.29004234075546265, 0.048694491386413574, -0.17661550641059875, -0.24514919519424438, 0.018816251307725906, -0.23127946257591248, 0.0636468231678009, -0.40280500054359436, 0.12155710905790329, 0.18837758898735046, -0.06813565641641617, 0.24740423262119293, -0.3666554391384125, 0.17079229652881622, 0.20224541425704956, -0.23210398852825165, -0.1817013919353485, 0.2013235241174698, -0.10452926903963089, 0.2084091603755951, 0.18242862820625305, 0.049002859741449356, 0.5008370280265808, -0.33716222643852234, 0.0265551395714283, -0.2955659031867981, -0.22314369678497314, -0.04286115616559982, -0.0206168070435524, 0.02589571662247181, 0.23955890536308289, 0.1678852140903473, -0.09732411056756973, -0.16121135652065277, 0.1723998636007309, -0.03255085274577141, -0.42428526282310486, 0.07566442340612411, -0.20237238705158234, 0.07886164635419846, -0.18486922979354858, -0.041290752589702606, -0.2166948914527893, -0.4261755645275116, 0.10516571998596191, 0.1664564609527588, 0.21152444183826447, 0.28348469734191895, 0.030940603464841843, 0.18370208144187927, 0.06931445002555847, 0.2948223650455475, -0.35511231422424316, -0.6185640692710876, 0.30382198095321655, -0.11850994825363159, -0.3948781490325928, -0.0802287831902504, -0.29940736293792725, 0.5251651406288147, -0.05346399173140526, -0.25605493783950806, -0.2709777355194092, -0.43960779905319214, 0.19161812961101532, 0.058311913162469864, -0.09370128065347672, 0.4126143455505371, -0.019693177193403244, -0.30627769231796265, -0.05406895652413368, -0.1069871336221695, 0.10140863060951233, -0.07748894393444061, 0.2577381432056427, -0.22634556889533997, 0.4307520091533661, 0.0870751142501831, 0.37161386013031006, 0.39679551124572754, -0.04324616864323616, 0.2767592668533325, -0.0012930259108543396, 0.366716593503952, -0.29272159934043884, -0.3451104760169983, 0.11048631370067596, -0.010120302438735962, -0.10813893377780914, 0.17037226259708405, -0.049006424844264984, 0.1882525533437729, -0.0010115094482898712, -0.04595613479614258, -0.3217918574810028, -0.2026652693748474, -0.029957303777337074, -0.011170759797096252, 0.20619788765907288, -0.0590057373046875, 0.1796014904975891, -0.07419231534004211, -0.05333031713962555, 0.07544931769371033, 0.23053954541683197, -0.1735401153564453, -0.22238445281982422, -0.17990374565124512, 0.02114269882440567, -0.5448867082595825, 0.3739597797393799, 0.14488767087459564, 0.19165657460689545, -0.18221527338027954, -0.21478384733200073, 0.2275918871164322, -0.27609628438949585, 0.5989823937416077, 0.019277457147836685, 0.06914625316858292, 0.061302151530981064, -0.0501546785235405, -0.10577737540006638, -0.055776819586753845, -0.03336707502603531, -0.0936836525797844, 0.20603084564208984, -0.0033683478832244873, -0.42974868416786194, 0.006628898903727531, 0.15482155978679657, 0.19221405684947968, -0.07304496318101883, -0.08640987426042557, -0.44292178750038147, -0.4385754466056824, -0.40330877900123596, 0.2203482687473297, -0.19638533890247345, 0.3476666510105133, -0.25391799211502075, -0.04840502142906189, 0.024263707920908928, -0.10065814852714539, 0.2695053815841675, 0.1647171527147293, 0.22914716601371765, 0.110596664249897, 0.22661995887756348, -0.24429190158843994, 0.13070419430732727, 0.1984192579984665, 0.5014007091522217, 0.049889978021383286, -0.03833119571208954, 0.04114202409982681, -0.09934808313846588, -0.08475775271654129, 0.1514367312192917, -0.07930830866098404, 0.06131284311413765, 0.08193901181221008, 0.17971403896808624, 0.007807188667356968, 0.06768348813056946, 0.191093310713768, 0.07904420047998428, -0.4913080930709839, 0.00012611597776412964, 0.18332332372665405, -0.1703171283006668, -0.12918595969676971, 0.22338254749774933, -0.07339797914028168, -0.06663050502538681, 0.10432832688093185, 0.15409207344055176, 0.9350462555885315, -0.014139235019683838, 0.058612577617168427, 0.29328739643096924, -0.079803965985775, 0.12429782748222351, -0.2610677480697632, 0.09160012751817703, -0.308572918176651, -0.4105004072189331, -0.08249296247959137, -0.13053175806999207, 0.2970247268676758, -0.14368225634098053, -0.1895328313112259, 0.23112767934799194, -0.0813201293349266, 0.11333084106445312, 0.008750002831220627, 0.03075598180294037, -0.40086105465888977, -0.04071492329239845, 0.01718025654554367, 0.2892783284187317, 0.13341988623142242, 0.20583026111125946, -0.12051525712013245, 0.05827419087290764, -0.10158440470695496, -0.24899086356163025, -0.13879992067813873, -0.039493925869464874, -0.19463592767715454, 0.03599635511636734, 0.16839082539081573, -0.1722528636455536, -0.23880907893180847, 0.038397498428821564, 0.21403709053993225, 0.18490250408649445, -0.15437829494476318, 0.15479524433612823, 0.31905168294906616, 0.2688971757888794, 0.10504724830389023, -0.12844356894493103, 0.07145668566226959, -0.12665459513664246, -0.2375257909297943, 0.17874372005462646, -0.03149297088384628, -0.19412989914417267, 0.08989214897155762, 0.20072123408317566, 0.13910531997680664, -0.39492350816726685, -0.05906708911061287, -0.19327202439308167, -0.06835195422172546, -0.2689076364040375, 0.2183004766702652, 0.12494394183158875, -0.1642821729183197, 0.3021155297756195, -0.2200939804315567, -0.381645143032074, -0.19553539156913757, 0.4039522707462311, 0.059818439185619354, -0.055473219603300095, 0.39847618341445923, -0.1549912393093109, -0.3118517994880676, -0.3498164415359497, -0.08506038784980774, -0.20270290970802307, -0.17557567358016968, 0.05849461257457733, -0.03073701076209545, -0.15075963735580444, -0.020298466086387634, 0.5994767546653748, 0.060186974704265594, 0.19920223951339722, 0.02526635304093361, -0.4625312387943268, -0.42742159962654114, -0.061734944581985474, 0.03706744685769081, 0.3987518548965454, -0.15916256606578827, 0.16445614397525787, 0.012947244569659233, -0.004292689263820648, -0.43596765398979187, 0.031307466328144073, -0.4266003370285034, -0.018036898225545883, -0.08434324711561203, 0.023849669843912125, 0.3092130124568939, 0.21308329701423645, 0.29234951734542847, 0.12799608707427979, -0.30219441652297974, -0.3937187194824219, 0.08653353154659271, 0.09008870273828506, -0.14846336841583252, -0.09343032538890839, 0.1611853688955307, 0.1144799292087555, -0.08965542912483215, -0.1671106219291687, 0.13754960894584656, 0.09744145721197128, -0.05776767432689667, -0.0011662635952234268, 0.03317973017692566, 0.11357127875089645, 0.06544121354818344, 0.03810965642333031, -0.12498892843723297, -0.06489604711532593, 0.08184729516506195, 0.06233051419258118, -0.31649965047836304, -0.06265197694301605, 0.21798862516880035, 0.2692120373249054, 0.1765723079442978, -0.25738468766212463, 0.18408872187137604, -0.08021324872970581, -0.28304219245910645, 0.12898407876491547, 0.2626402676105499, 0.10557858645915985, -0.10393302142620087, -0.05853545665740967, -0.00696902722120285, 0.3814464211463928, -0.24597476422786713, 0.062213074415922165, -0.19105800986289978, -0.11888439208269119, 0.3324759006500244, 0.20271265506744385, 0.03767793998122215, -0.49493420124053955, 0.7025297284126282, -0.0032799430191516876, 0.09852687269449234, -0.2750313878059387, 0.06997153162956238, 0.3853769600391388, -0.09488283097743988, 0.06583025306463242, 0.3065243363380432, -0.20568472146987915, 0.0029283538460731506, 0.1775141954421997, -0.12993362545967102, 0.3608565926551819, -0.3100311756134033, 0.22306671738624573, -0.21101057529449463, -0.5824345946311951, 0.43522578477859497, 0.19912779331207275, -0.1894797384738922, -0.1579817831516266, 0.21143674850463867, 0.006730489432811737, 0.12381017208099365, 0.1221541166305542, -0.5876337885856628, 0.054521504789590836, -0.18315264582633972, -0.2643299400806427, 0.04633136838674545, -0.25904372334480286, 0.06537827849388123, 0.08788329362869263, 0.17545495927333832, -0.03460018336772919, 0.14828503131866455, -0.06597074866294861, -0.07132065296173096, -0.2589384913444519, -0.050329938530921936, 0.05690690875053406, -0.019562505185604095, -0.226518452167511, 0.3146122694015503, 0.3966416120529175, 0.10995562374591827, 0.06532835960388184, 0.26924097537994385, 0.4736747443675995, 0.30895155668258667, 0.07838893681764603, 0.11792709678411484, -0.1571085900068283, -0.06981592625379562, -0.29738831520080566, 0.5326287746429443, 0.056090086698532104, 0.12402398884296417, 0.3892194330692291, 0.33868253231048584, -0.35118669271469116, -0.10180355608463287, -0.004990827292203903, -0.2602482736110687, -0.25271090865135193, 0.4092099964618683, 0.04140118509531021, 0.11650843173265457, -0.1890028864145279, 0.08631154149770737, -0.4327796995639801, -0.12798988819122314, -0.12977595627307892, -0.10070309042930603, 0.26383310556411743, -0.047427937388420105, 0.13595466315746307, -0.13304288685321808, 0.3954499065876007, 0.11508388072252274, 0.2237357795238495, -0.35402292013168335, -0.29979121685028076, -0.443930059671402, 0.2721990644931793, 0.11012555658817291, -0.08830752223730087, -0.28892645239830017, 0.4001695513725281, -0.13441091775894165, 0.005416510626673698, 0.3089107275009155, 0.20314213633537292, 0.21907810866832733, 0.012316066771745682, -0.15926919877529144, 0.17761847376823425, -0.16125626862049103, -0.17664110660552979, -0.0006082989275455475, -0.4943605661392212, 0.24998092651367188, 0.01212752889841795, 0.29278966784477234, 0.03693773224949837, -0.08022898435592651, -0.08585919439792633, 0.1793816238641739, 0.2793874442577362, 0.22420385479927063, 0.4025237262248993, -0.26060590147972107, -0.1163613572716713, -0.17698027193546295, 0.11177251487970352, 0.007236148230731487, 0.1602901816368103, 0.17387434840202332, 0.23797091841697693, 0.19372721016407013, -0.002248309552669525, -0.05700988322496414, 0.6293025016784668, 0.3451418876647949, -0.1713215857744217, 0.006119709461927414, 0.24794191122055054, -0.04957638308405876, 0.05936165153980255, -0.02183469757437706, 0.1271129846572876, 0.16174350678920746, 0.22889575362205505, -0.23515881597995758, -0.29199516773223877, 0.3922101855278015, -0.3292052447795868, -0.23996081948280334, -0.16823481023311615, 0.46806830167770386, -0.2205522656440735, -0.0836518332362175, -0.4472202956676483, 0.23536372184753418, 0.33403486013412476, 0.0017696619033813477, -0.10090698301792145, 0.39558759331703186, -0.2101522535085678, 0.04606184735894203, -0.14001600444316864, 0.25752827525138855, 0.15152159333229065, -0.052701279520988464, -0.09237298369407654, -0.29959636926651 ]
https://github.com/huggingface/datasets/issues/3269
coqa NonMatchingChecksumError
I also can't reproduce the error on Windows/Linux (tested both the master and the `1.15.1` version).
``` >>> from datasets import load_dataset >>> dataset = load_dataset("coqa") Downloading: 3.82kB [00:00, 1.26MB/s] Downloading: 1.79kB [00:00, 733kB/s] Using custom data configuration default Downloading and preparing dataset coqa/default (download: 55.40 MiB, generated: 18.35 MiB, post-processed: Unknown size, total: 73.75 MiB) to /Users/zhaofengw/.cache/huggingface/datasets/coqa/default/1.0.0/553ce70bfdcd15ff4b5f4abc4fc2f37137139cde1f58f4f60384a53a327716f0... Downloading: 100%|█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 222/222 [00:00<00:00, 1.38MB/s] Downloading: 100%|█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 222/222 [00:00<00:00, 1.32MB/s] 100%|█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 2/2 [00:01<00:00, 1.91it/s] 100%|███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 2/2 [00:00<00:00, 1117.44it/s] Traceback (most recent call last): File "<stdin>", line 1, in <module> File "/Users/zhaofengw/miniconda3/lib/python3.9/site-packages/datasets/load.py", line 1632, in load_dataset builder_instance.download_and_prepare( File "/Users/zhaofengw/miniconda3/lib/python3.9/site-packages/datasets/builder.py", line 607, in download_and_prepare self._download_and_prepare( File "/Users/zhaofengw/miniconda3/lib/python3.9/site-packages/datasets/builder.py", line 679, in _download_and_prepare verify_checksums( File "/Users/zhaofengw/miniconda3/lib/python3.9/site-packages/datasets/utils/info_utils.py", line 40, in verify_checksums raise NonMatchingChecksumError(error_msg + str(bad_urls)) datasets.utils.info_utils.NonMatchingChecksumError: Checksums didn't match for dataset source files: ['https://nlp.stanford.edu/data/coqa/coqa-train-v1.0.json', 'https://nlp.stanford.edu/data/coqa/coqa-dev-v1.0.json'] ```
16
coqa NonMatchingChecksumError ``` >>> from datasets import load_dataset >>> dataset = load_dataset("coqa") Downloading: 3.82kB [00:00, 1.26MB/s] Downloading: 1.79kB [00:00, 733kB/s] Using custom data configuration default Downloading and preparing dataset coqa/default (download: 55.40 MiB, generated: 18.35 MiB, post-processed: Unknown size, total: 73.75 MiB) to /Users/zhaofengw/.cache/huggingface/datasets/coqa/default/1.0.0/553ce70bfdcd15ff4b5f4abc4fc2f37137139cde1f58f4f60384a53a327716f0... Downloading: 100%|█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 222/222 [00:00<00:00, 1.38MB/s] Downloading: 100%|█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 222/222 [00:00<00:00, 1.32MB/s] 100%|█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 2/2 [00:01<00:00, 1.91it/s] 100%|███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 2/2 [00:00<00:00, 1117.44it/s] Traceback (most recent call last): File "<stdin>", line 1, in <module> File "/Users/zhaofengw/miniconda3/lib/python3.9/site-packages/datasets/load.py", line 1632, in load_dataset builder_instance.download_and_prepare( File "/Users/zhaofengw/miniconda3/lib/python3.9/site-packages/datasets/builder.py", line 607, in download_and_prepare self._download_and_prepare( File "/Users/zhaofengw/miniconda3/lib/python3.9/site-packages/datasets/builder.py", line 679, in _download_and_prepare verify_checksums( File "/Users/zhaofengw/miniconda3/lib/python3.9/site-packages/datasets/utils/info_utils.py", line 40, in verify_checksums raise NonMatchingChecksumError(error_msg + str(bad_urls)) datasets.utils.info_utils.NonMatchingChecksumError: Checksums didn't match for dataset source files: ['https://nlp.stanford.edu/data/coqa/coqa-train-v1.0.json', 'https://nlp.stanford.edu/data/coqa/coqa-dev-v1.0.json'] ``` I also can't reproduce the error on Windows/Linux (tested both the master and the `1.15.1` version).
[ -0.2934424877166748, -0.16965605318546295, -0.23772868514060974, 0.1443958878517151, 0.17530269920825958, -0.03220370039343834, 0.10853204131126404, 0.34697225689888, 0.1612992137670517, 0.34507638216018677, -0.12422356754541397, 0.016303548589348793, 0.13270717859268188, 0.3179677724838257, -0.24001473188400269, 0.41088542342185974, -0.03730381280183792, 0.130801722407341, -0.13652393221855164, -0.08464013040065765, -0.16203461587429047, 0.16598115861415863, -0.01582520455121994, -0.21113817393779755, 0.02861746959388256, -0.10914026945829391, 0.10121777653694153, 0.14800600707530975, -0.2446722537279129, -0.28355634212493896, 0.09498230367898941, 0.13728395104408264, -0.2691483199596405, 0.30232828855514526, -0.00010783330799313262, -0.0027384981513023376, 0.3951041102409363, -0.039331186562776566, -0.3947451412677765, 0.14915716648101807, -0.5660779476165771, -0.3265206217765808, -0.04970679432153702, -0.17008115351200104, -0.0475759357213974, 0.23689433932304382, -0.06580795347690582, -0.08954586833715439, 0.2255401611328125, 0.3060496151447296, 0.33020082116127014, 0.5339956283569336, -0.10401947796344757, -0.16375169157981873, 0.07236073911190033, 0.031290773302316666, -0.12435615807771683, 0.2001531571149826, 0.21609294414520264, 0.1913791298866272, -0.27258944511413574, 0.3140356242656708, -0.0051485151052474976, 0.09484364092350006, -0.17975234985351562, -0.14494965970516205, 0.12952551245689392, -0.10418336093425751, 0.5087623596191406, 0.2842763364315033, 0.27493998408317566, -0.176284521818161, -0.2551177740097046, -0.07698702812194824, -0.20052854716777802, -0.3510757386684418, 0.24585279822349548, 0.14968642592430115, -0.340237557888031, -0.17369966208934784, -0.2658529281616211, 0.3822205364704132, 0.03578901290893555, -0.11176595091819763, -0.2776526212692261, -0.06412157416343689, -0.1459256261587143, -0.10768140107393265, 0.19801907241344452, -0.18681031465530396, 0.10265035182237625, -0.10998208820819855, -0.2069360315799713, 0.039076365530490875, -0.5156916379928589, -0.14970144629478455, 0.31265756487846375, 0.37973666191101074, 0.3413914740085602, 0.22981014847755432, 0.18982462584972382, 0.21446359157562256, 0.026291899383068085, -0.021310336887836456, -0.15561148524284363, 0.3892468512058258, 0.011136263608932495, -0.24692974984645844, 0.22724728286266327, 0.3603816330432892, -0.08430300652980804, 0.035563740879297256, 0.09798380732536316, -0.310355007648468, 0.16753895580768585, 0.25340837240219116, 0.06962268054485321, -0.4281231462955475, -0.4341353178024292, 0.149600550532341, 0.1567331850528717, 0.06822070479393005, 0.18170641362667084, 0.5912106037139893, -0.03076007217168808, -0.06389985978603363, -0.16616404056549072, 0.004891406744718552, -0.30665868520736694, -0.1340271681547165, -0.371019572019577, 0.031862448900938034, -0.14453153312206268, -0.007327264174818993, 0.1801055371761322, -0.11212418973445892, 0.23918317258358002, -0.1675238162279129, 0.33850133419036865, -0.021233825013041496, 0.02179025299847126, -0.2919423282146454, 0.0382426381111145, 0.4026385545730591, -0.01665576733648777, 0.04756862670183182, 0.28407829999923706, -0.0009175539016723633, -0.1435098946094513, -0.03872884809970856, -0.03240456432104111, -0.26845183968544006, 0.10987308621406555, 0.3479248583316803, -0.07606720924377441, -0.0021591894328594208, 0.2647094130516052, -0.20924822986125946, 0.3453936278820038, -0.06105532497167587, 0.13540741801261902, 0.01325797289609909, -0.16954652965068817, -0.2886042594909668, 0.16366930305957794, 0.4162479043006897, -0.07393622398376465, 0.032692380249500275, 0.038964398205280304, -0.12756450474262238, 0.17309290170669556, 0.149419367313385, 0.0685000866651535, 0.09921149909496307, -0.21407602727413177, -0.10196132957935333, 0.21608251333236694, -0.3309718668460846, -0.6776994466781616, 0.09962806105613708, 0.045031264424324036, 0.1138063296675682, 0.15592333674430847, 0.021511884406208992, 0.09797555953264236, -0.03561897203326225, 0.07381267100572586, -0.0027298852801322937, 0.031051501631736755, 0.11351162940263748, -0.39217624068260193, -0.31785261631011963, -0.009648721665143967, 0.10581538081169128, 0.16304001212120056, -0.05722411721944809, 0.29456934332847595, -0.45781758427619934, 0.20404884219169617, -0.09221106767654419, -0.011318291537463665, 0.12655538320541382, 0.18324358761310577, -0.20327387750148773, -0.04442282021045685, 0.004791315644979477, -0.2321658432483673, 0.2732808291912079, -0.44594860076904297, 0.06045011430978775, -0.18885435163974762, -0.26077142357826233, -0.3654577136039734, -0.0270660612732172, -0.21089313924312592, -0.14423216879367828, 0.30756711959838867, 0.273681640625, 0.27484431862831116, 0.07274362444877625, 0.11723446846008301, 0.40884360671043396, -0.1587977558374405, -0.04461226612329483, -0.31232354044914246, 0.043137192726135254, -0.09874071925878525, -0.07750507444143295, -0.03355168551206589, 0.3281101882457733, 0.15009266138076782, -0.022737614810466766, -0.07894660532474518, 0.30079612135887146, 0.17490367591381073, 0.1836465299129486, -0.08949295431375504, 0.127378910779953, -0.0025923699140548706, 0.049132224172353745, 0.0637911930680275, 0.16952727735042572, 0.07616879045963287, -0.014355748891830444, -0.21904432773590088, 0.49147361516952515, -0.1414717584848404, 0.17851026356220245, 0.1221497654914856, -0.14977209270000458, 0.24572929739952087, -0.15667659044265747, -0.11089283972978592, -0.11869918555021286, 0.23188894987106323, 0.17755544185638428, 0.04459628090262413, 0.10382231324911118, -0.11840202659368515, 0.113840252161026, 0.3319092392921448, -0.06497618556022644, 0.0596817247569561, 0.1184130534529686, 0.09951990842819214, -0.09228239208459854, 0.07496040314435959, 0.3611769676208496, 0.4361034631729126, 0.19483688473701477, 0.17049480974674225, -0.05781761556863785, -0.00705199409276247, -0.16996005177497864, 0.12952379882335663, 0.12153053283691406, -0.03822976350784302, 0.4889443516731262, 0.23847328126430511, -0.19473984837532043, -0.48423442244529724, -0.17633193731307983, -0.07251535356044769, 0.20507536828517914, -0.29004234075546265, 0.048694491386413574, -0.17661550641059875, -0.24514919519424438, 0.018816251307725906, -0.23127946257591248, 0.0636468231678009, -0.40280500054359436, 0.12155710905790329, 0.18837758898735046, -0.06813565641641617, 0.24740423262119293, -0.3666554391384125, 0.17079229652881622, 0.20224541425704956, -0.23210398852825165, -0.1817013919353485, 0.2013235241174698, -0.10452926903963089, 0.2084091603755951, 0.18242862820625305, 0.049002859741449356, 0.5008370280265808, -0.33716222643852234, 0.0265551395714283, -0.2955659031867981, -0.22314369678497314, -0.04286115616559982, -0.0206168070435524, 0.02589571662247181, 0.23955890536308289, 0.1678852140903473, -0.09732411056756973, -0.16121135652065277, 0.1723998636007309, -0.03255085274577141, -0.42428526282310486, 0.07566442340612411, -0.20237238705158234, 0.07886164635419846, -0.18486922979354858, -0.041290752589702606, -0.2166948914527893, -0.4261755645275116, 0.10516571998596191, 0.1664564609527588, 0.21152444183826447, 0.28348469734191895, 0.030940603464841843, 0.18370208144187927, 0.06931445002555847, 0.2948223650455475, -0.35511231422424316, -0.6185640692710876, 0.30382198095321655, -0.11850994825363159, -0.3948781490325928, -0.0802287831902504, -0.29940736293792725, 0.5251651406288147, -0.05346399173140526, -0.25605493783950806, -0.2709777355194092, -0.43960779905319214, 0.19161812961101532, 0.058311913162469864, -0.09370128065347672, 0.4126143455505371, -0.019693177193403244, -0.30627769231796265, -0.05406895652413368, -0.1069871336221695, 0.10140863060951233, -0.07748894393444061, 0.2577381432056427, -0.22634556889533997, 0.4307520091533661, 0.0870751142501831, 0.37161386013031006, 0.39679551124572754, -0.04324616864323616, 0.2767592668533325, -0.0012930259108543396, 0.366716593503952, -0.29272159934043884, -0.3451104760169983, 0.11048631370067596, -0.010120302438735962, -0.10813893377780914, 0.17037226259708405, -0.049006424844264984, 0.1882525533437729, -0.0010115094482898712, -0.04595613479614258, -0.3217918574810028, -0.2026652693748474, -0.029957303777337074, -0.011170759797096252, 0.20619788765907288, -0.0590057373046875, 0.1796014904975891, -0.07419231534004211, -0.05333031713962555, 0.07544931769371033, 0.23053954541683197, -0.1735401153564453, -0.22238445281982422, -0.17990374565124512, 0.02114269882440567, -0.5448867082595825, 0.3739597797393799, 0.14488767087459564, 0.19165657460689545, -0.18221527338027954, -0.21478384733200073, 0.2275918871164322, -0.27609628438949585, 0.5989823937416077, 0.019277457147836685, 0.06914625316858292, 0.061302151530981064, -0.0501546785235405, -0.10577737540006638, -0.055776819586753845, -0.03336707502603531, -0.0936836525797844, 0.20603084564208984, -0.0033683478832244873, -0.42974868416786194, 0.006628898903727531, 0.15482155978679657, 0.19221405684947968, -0.07304496318101883, -0.08640987426042557, -0.44292178750038147, -0.4385754466056824, -0.40330877900123596, 0.2203482687473297, -0.19638533890247345, 0.3476666510105133, -0.25391799211502075, -0.04840502142906189, 0.024263707920908928, -0.10065814852714539, 0.2695053815841675, 0.1647171527147293, 0.22914716601371765, 0.110596664249897, 0.22661995887756348, -0.24429190158843994, 0.13070419430732727, 0.1984192579984665, 0.5014007091522217, 0.049889978021383286, -0.03833119571208954, 0.04114202409982681, -0.09934808313846588, -0.08475775271654129, 0.1514367312192917, -0.07930830866098404, 0.06131284311413765, 0.08193901181221008, 0.17971403896808624, 0.007807188667356968, 0.06768348813056946, 0.191093310713768, 0.07904420047998428, -0.4913080930709839, 0.00012611597776412964, 0.18332332372665405, -0.1703171283006668, -0.12918595969676971, 0.22338254749774933, -0.07339797914028168, -0.06663050502538681, 0.10432832688093185, 0.15409207344055176, 0.9350462555885315, -0.014139235019683838, 0.058612577617168427, 0.29328739643096924, -0.079803965985775, 0.12429782748222351, -0.2610677480697632, 0.09160012751817703, -0.308572918176651, -0.4105004072189331, -0.08249296247959137, -0.13053175806999207, 0.2970247268676758, -0.14368225634098053, -0.1895328313112259, 0.23112767934799194, -0.0813201293349266, 0.11333084106445312, 0.008750002831220627, 0.03075598180294037, -0.40086105465888977, -0.04071492329239845, 0.01718025654554367, 0.2892783284187317, 0.13341988623142242, 0.20583026111125946, -0.12051525712013245, 0.05827419087290764, -0.10158440470695496, -0.24899086356163025, -0.13879992067813873, -0.039493925869464874, -0.19463592767715454, 0.03599635511636734, 0.16839082539081573, -0.1722528636455536, -0.23880907893180847, 0.038397498428821564, 0.21403709053993225, 0.18490250408649445, -0.15437829494476318, 0.15479524433612823, 0.31905168294906616, 0.2688971757888794, 0.10504724830389023, -0.12844356894493103, 0.07145668566226959, -0.12665459513664246, -0.2375257909297943, 0.17874372005462646, -0.03149297088384628, -0.19412989914417267, 0.08989214897155762, 0.20072123408317566, 0.13910531997680664, -0.39492350816726685, -0.05906708911061287, -0.19327202439308167, -0.06835195422172546, -0.2689076364040375, 0.2183004766702652, 0.12494394183158875, -0.1642821729183197, 0.3021155297756195, -0.2200939804315567, -0.381645143032074, -0.19553539156913757, 0.4039522707462311, 0.059818439185619354, -0.055473219603300095, 0.39847618341445923, -0.1549912393093109, -0.3118517994880676, -0.3498164415359497, -0.08506038784980774, -0.20270290970802307, -0.17557567358016968, 0.05849461257457733, -0.03073701076209545, -0.15075963735580444, -0.020298466086387634, 0.5994767546653748, 0.060186974704265594, 0.19920223951339722, 0.02526635304093361, -0.4625312387943268, -0.42742159962654114, -0.061734944581985474, 0.03706744685769081, 0.3987518548965454, -0.15916256606578827, 0.16445614397525787, 0.012947244569659233, -0.004292689263820648, -0.43596765398979187, 0.031307466328144073, -0.4266003370285034, -0.018036898225545883, -0.08434324711561203, 0.023849669843912125, 0.3092130124568939, 0.21308329701423645, 0.29234951734542847, 0.12799608707427979, -0.30219441652297974, -0.3937187194824219, 0.08653353154659271, 0.09008870273828506, -0.14846336841583252, -0.09343032538890839, 0.1611853688955307, 0.1144799292087555, -0.08965542912483215, -0.1671106219291687, 0.13754960894584656, 0.09744145721197128, -0.05776767432689667, -0.0011662635952234268, 0.03317973017692566, 0.11357127875089645, 0.06544121354818344, 0.03810965642333031, -0.12498892843723297, -0.06489604711532593, 0.08184729516506195, 0.06233051419258118, -0.31649965047836304, -0.06265197694301605, 0.21798862516880035, 0.2692120373249054, 0.1765723079442978, -0.25738468766212463, 0.18408872187137604, -0.08021324872970581, -0.28304219245910645, 0.12898407876491547, 0.2626402676105499, 0.10557858645915985, -0.10393302142620087, -0.05853545665740967, -0.00696902722120285, 0.3814464211463928, -0.24597476422786713, 0.062213074415922165, -0.19105800986289978, -0.11888439208269119, 0.3324759006500244, 0.20271265506744385, 0.03767793998122215, -0.49493420124053955, 0.7025297284126282, -0.0032799430191516876, 0.09852687269449234, -0.2750313878059387, 0.06997153162956238, 0.3853769600391388, -0.09488283097743988, 0.06583025306463242, 0.3065243363380432, -0.20568472146987915, 0.0029283538460731506, 0.1775141954421997, -0.12993362545967102, 0.3608565926551819, -0.3100311756134033, 0.22306671738624573, -0.21101057529449463, -0.5824345946311951, 0.43522578477859497, 0.19912779331207275, -0.1894797384738922, -0.1579817831516266, 0.21143674850463867, 0.006730489432811737, 0.12381017208099365, 0.1221541166305542, -0.5876337885856628, 0.054521504789590836, -0.18315264582633972, -0.2643299400806427, 0.04633136838674545, -0.25904372334480286, 0.06537827849388123, 0.08788329362869263, 0.17545495927333832, -0.03460018336772919, 0.14828503131866455, -0.06597074866294861, -0.07132065296173096, -0.2589384913444519, -0.050329938530921936, 0.05690690875053406, -0.019562505185604095, -0.226518452167511, 0.3146122694015503, 0.3966416120529175, 0.10995562374591827, 0.06532835960388184, 0.26924097537994385, 0.4736747443675995, 0.30895155668258667, 0.07838893681764603, 0.11792709678411484, -0.1571085900068283, -0.06981592625379562, -0.29738831520080566, 0.5326287746429443, 0.056090086698532104, 0.12402398884296417, 0.3892194330692291, 0.33868253231048584, -0.35118669271469116, -0.10180355608463287, -0.004990827292203903, -0.2602482736110687, -0.25271090865135193, 0.4092099964618683, 0.04140118509531021, 0.11650843173265457, -0.1890028864145279, 0.08631154149770737, -0.4327796995639801, -0.12798988819122314, -0.12977595627307892, -0.10070309042930603, 0.26383310556411743, -0.047427937388420105, 0.13595466315746307, -0.13304288685321808, 0.3954499065876007, 0.11508388072252274, 0.2237357795238495, -0.35402292013168335, -0.29979121685028076, -0.443930059671402, 0.2721990644931793, 0.11012555658817291, -0.08830752223730087, -0.28892645239830017, 0.4001695513725281, -0.13441091775894165, 0.005416510626673698, 0.3089107275009155, 0.20314213633537292, 0.21907810866832733, 0.012316066771745682, -0.15926919877529144, 0.17761847376823425, -0.16125626862049103, -0.17664110660552979, -0.0006082989275455475, -0.4943605661392212, 0.24998092651367188, 0.01212752889841795, 0.29278966784477234, 0.03693773224949837, -0.08022898435592651, -0.08585919439792633, 0.1793816238641739, 0.2793874442577362, 0.22420385479927063, 0.4025237262248993, -0.26060590147972107, -0.1163613572716713, -0.17698027193546295, 0.11177251487970352, 0.007236148230731487, 0.1602901816368103, 0.17387434840202332, 0.23797091841697693, 0.19372721016407013, -0.002248309552669525, -0.05700988322496414, 0.6293025016784668, 0.3451418876647949, -0.1713215857744217, 0.006119709461927414, 0.24794191122055054, -0.04957638308405876, 0.05936165153980255, -0.02183469757437706, 0.1271129846572876, 0.16174350678920746, 0.22889575362205505, -0.23515881597995758, -0.29199516773223877, 0.3922101855278015, -0.3292052447795868, -0.23996081948280334, -0.16823481023311615, 0.46806830167770386, -0.2205522656440735, -0.0836518332362175, -0.4472202956676483, 0.23536372184753418, 0.33403486013412476, 0.0017696619033813477, -0.10090698301792145, 0.39558759331703186, -0.2101522535085678, 0.04606184735894203, -0.14001600444316864, 0.25752827525138855, 0.15152159333229065, -0.052701279520988464, -0.09237298369407654, -0.29959636926651 ]
https://github.com/huggingface/datasets/issues/3269
coqa NonMatchingChecksumError
Maybe the file had issues during the download ? Could you try to delete your cache and try again ? By default the downloads cache is at `~/.cache/huggingface/datasets/downloads` Also can you check if you have a proxy that could prevent the download to succeed ? Are you able to download those files via your browser ?
``` >>> from datasets import load_dataset >>> dataset = load_dataset("coqa") Downloading: 3.82kB [00:00, 1.26MB/s] Downloading: 1.79kB [00:00, 733kB/s] Using custom data configuration default Downloading and preparing dataset coqa/default (download: 55.40 MiB, generated: 18.35 MiB, post-processed: Unknown size, total: 73.75 MiB) to /Users/zhaofengw/.cache/huggingface/datasets/coqa/default/1.0.0/553ce70bfdcd15ff4b5f4abc4fc2f37137139cde1f58f4f60384a53a327716f0... Downloading: 100%|█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 222/222 [00:00<00:00, 1.38MB/s] Downloading: 100%|█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 222/222 [00:00<00:00, 1.32MB/s] 100%|█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 2/2 [00:01<00:00, 1.91it/s] 100%|███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 2/2 [00:00<00:00, 1117.44it/s] Traceback (most recent call last): File "<stdin>", line 1, in <module> File "/Users/zhaofengw/miniconda3/lib/python3.9/site-packages/datasets/load.py", line 1632, in load_dataset builder_instance.download_and_prepare( File "/Users/zhaofengw/miniconda3/lib/python3.9/site-packages/datasets/builder.py", line 607, in download_and_prepare self._download_and_prepare( File "/Users/zhaofengw/miniconda3/lib/python3.9/site-packages/datasets/builder.py", line 679, in _download_and_prepare verify_checksums( File "/Users/zhaofengw/miniconda3/lib/python3.9/site-packages/datasets/utils/info_utils.py", line 40, in verify_checksums raise NonMatchingChecksumError(error_msg + str(bad_urls)) datasets.utils.info_utils.NonMatchingChecksumError: Checksums didn't match for dataset source files: ['https://nlp.stanford.edu/data/coqa/coqa-train-v1.0.json', 'https://nlp.stanford.edu/data/coqa/coqa-dev-v1.0.json'] ```
56
coqa NonMatchingChecksumError ``` >>> from datasets import load_dataset >>> dataset = load_dataset("coqa") Downloading: 3.82kB [00:00, 1.26MB/s] Downloading: 1.79kB [00:00, 733kB/s] Using custom data configuration default Downloading and preparing dataset coqa/default (download: 55.40 MiB, generated: 18.35 MiB, post-processed: Unknown size, total: 73.75 MiB) to /Users/zhaofengw/.cache/huggingface/datasets/coqa/default/1.0.0/553ce70bfdcd15ff4b5f4abc4fc2f37137139cde1f58f4f60384a53a327716f0... Downloading: 100%|█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 222/222 [00:00<00:00, 1.38MB/s] Downloading: 100%|█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 222/222 [00:00<00:00, 1.32MB/s] 100%|█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 2/2 [00:01<00:00, 1.91it/s] 100%|███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 2/2 [00:00<00:00, 1117.44it/s] Traceback (most recent call last): File "<stdin>", line 1, in <module> File "/Users/zhaofengw/miniconda3/lib/python3.9/site-packages/datasets/load.py", line 1632, in load_dataset builder_instance.download_and_prepare( File "/Users/zhaofengw/miniconda3/lib/python3.9/site-packages/datasets/builder.py", line 607, in download_and_prepare self._download_and_prepare( File "/Users/zhaofengw/miniconda3/lib/python3.9/site-packages/datasets/builder.py", line 679, in _download_and_prepare verify_checksums( File "/Users/zhaofengw/miniconda3/lib/python3.9/site-packages/datasets/utils/info_utils.py", line 40, in verify_checksums raise NonMatchingChecksumError(error_msg + str(bad_urls)) datasets.utils.info_utils.NonMatchingChecksumError: Checksums didn't match for dataset source files: ['https://nlp.stanford.edu/data/coqa/coqa-train-v1.0.json', 'https://nlp.stanford.edu/data/coqa/coqa-dev-v1.0.json'] ``` Maybe the file had issues during the download ? Could you try to delete your cache and try again ? By default the downloads cache is at `~/.cache/huggingface/datasets/downloads` Also can you check if you have a proxy that could prevent the download to succeed ? Are you able to download those files via your browser ?
[ -0.2934424877166748, -0.16965605318546295, -0.23772868514060974, 0.1443958878517151, 0.17530269920825958, -0.03220370039343834, 0.10853204131126404, 0.34697225689888, 0.1612992137670517, 0.34507638216018677, -0.12422356754541397, 0.016303548589348793, 0.13270717859268188, 0.3179677724838257, -0.24001473188400269, 0.41088542342185974, -0.03730381280183792, 0.130801722407341, -0.13652393221855164, -0.08464013040065765, -0.16203461587429047, 0.16598115861415863, -0.01582520455121994, -0.21113817393779755, 0.02861746959388256, -0.10914026945829391, 0.10121777653694153, 0.14800600707530975, -0.2446722537279129, -0.28355634212493896, 0.09498230367898941, 0.13728395104408264, -0.2691483199596405, 0.30232828855514526, -0.00010783330799313262, -0.0027384981513023376, 0.3951041102409363, -0.039331186562776566, -0.3947451412677765, 0.14915716648101807, -0.5660779476165771, -0.3265206217765808, -0.04970679432153702, -0.17008115351200104, -0.0475759357213974, 0.23689433932304382, -0.06580795347690582, -0.08954586833715439, 0.2255401611328125, 0.3060496151447296, 0.33020082116127014, 0.5339956283569336, -0.10401947796344757, -0.16375169157981873, 0.07236073911190033, 0.031290773302316666, -0.12435615807771683, 0.2001531571149826, 0.21609294414520264, 0.1913791298866272, -0.27258944511413574, 0.3140356242656708, -0.0051485151052474976, 0.09484364092350006, -0.17975234985351562, -0.14494965970516205, 0.12952551245689392, -0.10418336093425751, 0.5087623596191406, 0.2842763364315033, 0.27493998408317566, -0.176284521818161, -0.2551177740097046, -0.07698702812194824, -0.20052854716777802, -0.3510757386684418, 0.24585279822349548, 0.14968642592430115, -0.340237557888031, -0.17369966208934784, -0.2658529281616211, 0.3822205364704132, 0.03578901290893555, -0.11176595091819763, -0.2776526212692261, -0.06412157416343689, -0.1459256261587143, -0.10768140107393265, 0.19801907241344452, -0.18681031465530396, 0.10265035182237625, -0.10998208820819855, -0.2069360315799713, 0.039076365530490875, -0.5156916379928589, -0.14970144629478455, 0.31265756487846375, 0.37973666191101074, 0.3413914740085602, 0.22981014847755432, 0.18982462584972382, 0.21446359157562256, 0.026291899383068085, -0.021310336887836456, -0.15561148524284363, 0.3892468512058258, 0.011136263608932495, -0.24692974984645844, 0.22724728286266327, 0.3603816330432892, -0.08430300652980804, 0.035563740879297256, 0.09798380732536316, -0.310355007648468, 0.16753895580768585, 0.25340837240219116, 0.06962268054485321, -0.4281231462955475, -0.4341353178024292, 0.149600550532341, 0.1567331850528717, 0.06822070479393005, 0.18170641362667084, 0.5912106037139893, -0.03076007217168808, -0.06389985978603363, -0.16616404056549072, 0.004891406744718552, -0.30665868520736694, -0.1340271681547165, -0.371019572019577, 0.031862448900938034, -0.14453153312206268, -0.007327264174818993, 0.1801055371761322, -0.11212418973445892, 0.23918317258358002, -0.1675238162279129, 0.33850133419036865, -0.021233825013041496, 0.02179025299847126, -0.2919423282146454, 0.0382426381111145, 0.4026385545730591, -0.01665576733648777, 0.04756862670183182, 0.28407829999923706, -0.0009175539016723633, -0.1435098946094513, -0.03872884809970856, -0.03240456432104111, -0.26845183968544006, 0.10987308621406555, 0.3479248583316803, -0.07606720924377441, -0.0021591894328594208, 0.2647094130516052, -0.20924822986125946, 0.3453936278820038, -0.06105532497167587, 0.13540741801261902, 0.01325797289609909, -0.16954652965068817, -0.2886042594909668, 0.16366930305957794, 0.4162479043006897, -0.07393622398376465, 0.032692380249500275, 0.038964398205280304, -0.12756450474262238, 0.17309290170669556, 0.149419367313385, 0.0685000866651535, 0.09921149909496307, -0.21407602727413177, -0.10196132957935333, 0.21608251333236694, -0.3309718668460846, -0.6776994466781616, 0.09962806105613708, 0.045031264424324036, 0.1138063296675682, 0.15592333674430847, 0.021511884406208992, 0.09797555953264236, -0.03561897203326225, 0.07381267100572586, -0.0027298852801322937, 0.031051501631736755, 0.11351162940263748, -0.39217624068260193, -0.31785261631011963, -0.009648721665143967, 0.10581538081169128, 0.16304001212120056, -0.05722411721944809, 0.29456934332847595, -0.45781758427619934, 0.20404884219169617, -0.09221106767654419, -0.011318291537463665, 0.12655538320541382, 0.18324358761310577, -0.20327387750148773, -0.04442282021045685, 0.004791315644979477, -0.2321658432483673, 0.2732808291912079, -0.44594860076904297, 0.06045011430978775, -0.18885435163974762, -0.26077142357826233, -0.3654577136039734, -0.0270660612732172, -0.21089313924312592, -0.14423216879367828, 0.30756711959838867, 0.273681640625, 0.27484431862831116, 0.07274362444877625, 0.11723446846008301, 0.40884360671043396, -0.1587977558374405, -0.04461226612329483, -0.31232354044914246, 0.043137192726135254, -0.09874071925878525, -0.07750507444143295, -0.03355168551206589, 0.3281101882457733, 0.15009266138076782, -0.022737614810466766, -0.07894660532474518, 0.30079612135887146, 0.17490367591381073, 0.1836465299129486, -0.08949295431375504, 0.127378910779953, -0.0025923699140548706, 0.049132224172353745, 0.0637911930680275, 0.16952727735042572, 0.07616879045963287, -0.014355748891830444, -0.21904432773590088, 0.49147361516952515, -0.1414717584848404, 0.17851026356220245, 0.1221497654914856, -0.14977209270000458, 0.24572929739952087, -0.15667659044265747, -0.11089283972978592, -0.11869918555021286, 0.23188894987106323, 0.17755544185638428, 0.04459628090262413, 0.10382231324911118, -0.11840202659368515, 0.113840252161026, 0.3319092392921448, -0.06497618556022644, 0.0596817247569561, 0.1184130534529686, 0.09951990842819214, -0.09228239208459854, 0.07496040314435959, 0.3611769676208496, 0.4361034631729126, 0.19483688473701477, 0.17049480974674225, -0.05781761556863785, -0.00705199409276247, -0.16996005177497864, 0.12952379882335663, 0.12153053283691406, -0.03822976350784302, 0.4889443516731262, 0.23847328126430511, -0.19473984837532043, -0.48423442244529724, -0.17633193731307983, -0.07251535356044769, 0.20507536828517914, -0.29004234075546265, 0.048694491386413574, -0.17661550641059875, -0.24514919519424438, 0.018816251307725906, -0.23127946257591248, 0.0636468231678009, -0.40280500054359436, 0.12155710905790329, 0.18837758898735046, -0.06813565641641617, 0.24740423262119293, -0.3666554391384125, 0.17079229652881622, 0.20224541425704956, -0.23210398852825165, -0.1817013919353485, 0.2013235241174698, -0.10452926903963089, 0.2084091603755951, 0.18242862820625305, 0.049002859741449356, 0.5008370280265808, -0.33716222643852234, 0.0265551395714283, -0.2955659031867981, -0.22314369678497314, -0.04286115616559982, -0.0206168070435524, 0.02589571662247181, 0.23955890536308289, 0.1678852140903473, -0.09732411056756973, -0.16121135652065277, 0.1723998636007309, -0.03255085274577141, -0.42428526282310486, 0.07566442340612411, -0.20237238705158234, 0.07886164635419846, -0.18486922979354858, -0.041290752589702606, -0.2166948914527893, -0.4261755645275116, 0.10516571998596191, 0.1664564609527588, 0.21152444183826447, 0.28348469734191895, 0.030940603464841843, 0.18370208144187927, 0.06931445002555847, 0.2948223650455475, -0.35511231422424316, -0.6185640692710876, 0.30382198095321655, -0.11850994825363159, -0.3948781490325928, -0.0802287831902504, -0.29940736293792725, 0.5251651406288147, -0.05346399173140526, -0.25605493783950806, -0.2709777355194092, -0.43960779905319214, 0.19161812961101532, 0.058311913162469864, -0.09370128065347672, 0.4126143455505371, -0.019693177193403244, -0.30627769231796265, -0.05406895652413368, -0.1069871336221695, 0.10140863060951233, -0.07748894393444061, 0.2577381432056427, -0.22634556889533997, 0.4307520091533661, 0.0870751142501831, 0.37161386013031006, 0.39679551124572754, -0.04324616864323616, 0.2767592668533325, -0.0012930259108543396, 0.366716593503952, -0.29272159934043884, -0.3451104760169983, 0.11048631370067596, -0.010120302438735962, -0.10813893377780914, 0.17037226259708405, -0.049006424844264984, 0.1882525533437729, -0.0010115094482898712, -0.04595613479614258, -0.3217918574810028, -0.2026652693748474, -0.029957303777337074, -0.011170759797096252, 0.20619788765907288, -0.0590057373046875, 0.1796014904975891, -0.07419231534004211, -0.05333031713962555, 0.07544931769371033, 0.23053954541683197, -0.1735401153564453, -0.22238445281982422, -0.17990374565124512, 0.02114269882440567, -0.5448867082595825, 0.3739597797393799, 0.14488767087459564, 0.19165657460689545, -0.18221527338027954, -0.21478384733200073, 0.2275918871164322, -0.27609628438949585, 0.5989823937416077, 0.019277457147836685, 0.06914625316858292, 0.061302151530981064, -0.0501546785235405, -0.10577737540006638, -0.055776819586753845, -0.03336707502603531, -0.0936836525797844, 0.20603084564208984, -0.0033683478832244873, -0.42974868416786194, 0.006628898903727531, 0.15482155978679657, 0.19221405684947968, -0.07304496318101883, -0.08640987426042557, -0.44292178750038147, -0.4385754466056824, -0.40330877900123596, 0.2203482687473297, -0.19638533890247345, 0.3476666510105133, -0.25391799211502075, -0.04840502142906189, 0.024263707920908928, -0.10065814852714539, 0.2695053815841675, 0.1647171527147293, 0.22914716601371765, 0.110596664249897, 0.22661995887756348, -0.24429190158843994, 0.13070419430732727, 0.1984192579984665, 0.5014007091522217, 0.049889978021383286, -0.03833119571208954, 0.04114202409982681, -0.09934808313846588, -0.08475775271654129, 0.1514367312192917, -0.07930830866098404, 0.06131284311413765, 0.08193901181221008, 0.17971403896808624, 0.007807188667356968, 0.06768348813056946, 0.191093310713768, 0.07904420047998428, -0.4913080930709839, 0.00012611597776412964, 0.18332332372665405, -0.1703171283006668, -0.12918595969676971, 0.22338254749774933, -0.07339797914028168, -0.06663050502538681, 0.10432832688093185, 0.15409207344055176, 0.9350462555885315, -0.014139235019683838, 0.058612577617168427, 0.29328739643096924, -0.079803965985775, 0.12429782748222351, -0.2610677480697632, 0.09160012751817703, -0.308572918176651, -0.4105004072189331, -0.08249296247959137, -0.13053175806999207, 0.2970247268676758, -0.14368225634098053, -0.1895328313112259, 0.23112767934799194, -0.0813201293349266, 0.11333084106445312, 0.008750002831220627, 0.03075598180294037, -0.40086105465888977, -0.04071492329239845, 0.01718025654554367, 0.2892783284187317, 0.13341988623142242, 0.20583026111125946, -0.12051525712013245, 0.05827419087290764, -0.10158440470695496, -0.24899086356163025, -0.13879992067813873, -0.039493925869464874, -0.19463592767715454, 0.03599635511636734, 0.16839082539081573, -0.1722528636455536, -0.23880907893180847, 0.038397498428821564, 0.21403709053993225, 0.18490250408649445, -0.15437829494476318, 0.15479524433612823, 0.31905168294906616, 0.2688971757888794, 0.10504724830389023, -0.12844356894493103, 0.07145668566226959, -0.12665459513664246, -0.2375257909297943, 0.17874372005462646, -0.03149297088384628, -0.19412989914417267, 0.08989214897155762, 0.20072123408317566, 0.13910531997680664, -0.39492350816726685, -0.05906708911061287, -0.19327202439308167, -0.06835195422172546, -0.2689076364040375, 0.2183004766702652, 0.12494394183158875, -0.1642821729183197, 0.3021155297756195, -0.2200939804315567, -0.381645143032074, -0.19553539156913757, 0.4039522707462311, 0.059818439185619354, -0.055473219603300095, 0.39847618341445923, -0.1549912393093109, -0.3118517994880676, -0.3498164415359497, -0.08506038784980774, -0.20270290970802307, -0.17557567358016968, 0.05849461257457733, -0.03073701076209545, -0.15075963735580444, -0.020298466086387634, 0.5994767546653748, 0.060186974704265594, 0.19920223951339722, 0.02526635304093361, -0.4625312387943268, -0.42742159962654114, -0.061734944581985474, 0.03706744685769081, 0.3987518548965454, -0.15916256606578827, 0.16445614397525787, 0.012947244569659233, -0.004292689263820648, -0.43596765398979187, 0.031307466328144073, -0.4266003370285034, -0.018036898225545883, -0.08434324711561203, 0.023849669843912125, 0.3092130124568939, 0.21308329701423645, 0.29234951734542847, 0.12799608707427979, -0.30219441652297974, -0.3937187194824219, 0.08653353154659271, 0.09008870273828506, -0.14846336841583252, -0.09343032538890839, 0.1611853688955307, 0.1144799292087555, -0.08965542912483215, -0.1671106219291687, 0.13754960894584656, 0.09744145721197128, -0.05776767432689667, -0.0011662635952234268, 0.03317973017692566, 0.11357127875089645, 0.06544121354818344, 0.03810965642333031, -0.12498892843723297, -0.06489604711532593, 0.08184729516506195, 0.06233051419258118, -0.31649965047836304, -0.06265197694301605, 0.21798862516880035, 0.2692120373249054, 0.1765723079442978, -0.25738468766212463, 0.18408872187137604, -0.08021324872970581, -0.28304219245910645, 0.12898407876491547, 0.2626402676105499, 0.10557858645915985, -0.10393302142620087, -0.05853545665740967, -0.00696902722120285, 0.3814464211463928, -0.24597476422786713, 0.062213074415922165, -0.19105800986289978, -0.11888439208269119, 0.3324759006500244, 0.20271265506744385, 0.03767793998122215, -0.49493420124053955, 0.7025297284126282, -0.0032799430191516876, 0.09852687269449234, -0.2750313878059387, 0.06997153162956238, 0.3853769600391388, -0.09488283097743988, 0.06583025306463242, 0.3065243363380432, -0.20568472146987915, 0.0029283538460731506, 0.1775141954421997, -0.12993362545967102, 0.3608565926551819, -0.3100311756134033, 0.22306671738624573, -0.21101057529449463, -0.5824345946311951, 0.43522578477859497, 0.19912779331207275, -0.1894797384738922, -0.1579817831516266, 0.21143674850463867, 0.006730489432811737, 0.12381017208099365, 0.1221541166305542, -0.5876337885856628, 0.054521504789590836, -0.18315264582633972, -0.2643299400806427, 0.04633136838674545, -0.25904372334480286, 0.06537827849388123, 0.08788329362869263, 0.17545495927333832, -0.03460018336772919, 0.14828503131866455, -0.06597074866294861, -0.07132065296173096, -0.2589384913444519, -0.050329938530921936, 0.05690690875053406, -0.019562505185604095, -0.226518452167511, 0.3146122694015503, 0.3966416120529175, 0.10995562374591827, 0.06532835960388184, 0.26924097537994385, 0.4736747443675995, 0.30895155668258667, 0.07838893681764603, 0.11792709678411484, -0.1571085900068283, -0.06981592625379562, -0.29738831520080566, 0.5326287746429443, 0.056090086698532104, 0.12402398884296417, 0.3892194330692291, 0.33868253231048584, -0.35118669271469116, -0.10180355608463287, -0.004990827292203903, -0.2602482736110687, -0.25271090865135193, 0.4092099964618683, 0.04140118509531021, 0.11650843173265457, -0.1890028864145279, 0.08631154149770737, -0.4327796995639801, -0.12798988819122314, -0.12977595627307892, -0.10070309042930603, 0.26383310556411743, -0.047427937388420105, 0.13595466315746307, -0.13304288685321808, 0.3954499065876007, 0.11508388072252274, 0.2237357795238495, -0.35402292013168335, -0.29979121685028076, -0.443930059671402, 0.2721990644931793, 0.11012555658817291, -0.08830752223730087, -0.28892645239830017, 0.4001695513725281, -0.13441091775894165, 0.005416510626673698, 0.3089107275009155, 0.20314213633537292, 0.21907810866832733, 0.012316066771745682, -0.15926919877529144, 0.17761847376823425, -0.16125626862049103, -0.17664110660552979, -0.0006082989275455475, -0.4943605661392212, 0.24998092651367188, 0.01212752889841795, 0.29278966784477234, 0.03693773224949837, -0.08022898435592651, -0.08585919439792633, 0.1793816238641739, 0.2793874442577362, 0.22420385479927063, 0.4025237262248993, -0.26060590147972107, -0.1163613572716713, -0.17698027193546295, 0.11177251487970352, 0.007236148230731487, 0.1602901816368103, 0.17387434840202332, 0.23797091841697693, 0.19372721016407013, -0.002248309552669525, -0.05700988322496414, 0.6293025016784668, 0.3451418876647949, -0.1713215857744217, 0.006119709461927414, 0.24794191122055054, -0.04957638308405876, 0.05936165153980255, -0.02183469757437706, 0.1271129846572876, 0.16174350678920746, 0.22889575362205505, -0.23515881597995758, -0.29199516773223877, 0.3922101855278015, -0.3292052447795868, -0.23996081948280334, -0.16823481023311615, 0.46806830167770386, -0.2205522656440735, -0.0836518332362175, -0.4472202956676483, 0.23536372184753418, 0.33403486013412476, 0.0017696619033813477, -0.10090698301792145, 0.39558759331703186, -0.2101522535085678, 0.04606184735894203, -0.14001600444316864, 0.25752827525138855, 0.15152159333229065, -0.052701279520988464, -0.09237298369407654, -0.29959636926651 ]
https://github.com/huggingface/datasets/issues/3269
coqa NonMatchingChecksumError
I got the same error in a third environment (google cloud) as well. The internet for these three environments are all different so I don't think that's the reason. ``` - `datasets` version: 1.12.1 - Platform: Linux-5.11.0-1022-gcp-x86_64-with-glibc2.31 - Python version: 3.9.7 - PyArrow version: 6.0.0 ``` I deleted the entire `~/.cache/huggingface/datasets` on my local mac, and got a different first time error. ``` Python 3.9.5 (default, May 18 2021, 12:31:01) [Clang 10.0.0 ] :: Anaconda, Inc. on darwin Type "help", "copyright", "credits" or "license" for more information. >>> from datasets import load_dataset >>> dataset = load_dataset("coqa") Downloading: 3.82kB [00:00, 1.19MB/s] Downloading: 1.79kB [00:00, 712kB/s] Using custom data configuration default Downloading and preparing dataset coqa/default (download: 55.40 MiB, generated: 18.35 MiB, post-processed: Unknown size, total: 73.75 MiB) to /Users/zhaofengw/.cache/huggingface/datasets/coqa/default/1.0.0/553ce70bfdcd15ff4b5f4abc4fc2f37137139cde1f58f4f60384a53a327716f0... Downloading: 100%|█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 222/222 [00:00<00:00, 1.36MB/s] 50%|████████████████████████████████████████████████████████████████████████████████████████████████████████████▌ | 1/2 [00:00<00:00, 2.47it/s]Traceback (most recent call last): File "<stdin>", line 1, in <module> File "/Users/zhaofengw/miniconda3/lib/python3.9/site-packages/datasets/load.py", line 1632, in load_dataset builder_instance.download_and_prepare( File "/Users/zhaofengw/miniconda3/lib/python3.9/site-packages/datasets/builder.py", line 607, in download_and_prepare self._download_and_prepare( File "/Users/zhaofengw/miniconda3/lib/python3.9/site-packages/datasets/builder.py", line 675, in _download_and_prepare split_generators = self._split_generators(dl_manager, **split_generators_kwargs) File "/Users/zhaofengw/.cache/huggingface/modules/datasets_modules/datasets/coqa/553ce70bfdcd15ff4b5f4abc4fc2f37137139cde1f58f4f60384a53a327716f0/coqa.py", line 70, in _split_generators downloaded_files = dl_manager.download_and_extract(urls_to_download) File "/Users/zhaofengw/miniconda3/lib/python3.9/site-packages/datasets/utils/download_manager.py", line 284, in download_and_extract return self.extract(self.download(url_or_urls)) File "/Users/zhaofengw/miniconda3/lib/python3.9/site-packages/datasets/utils/download_manager.py", line 196, in download downloaded_path_or_paths = map_nested( File "/Users/zhaofengw/miniconda3/lib/python3.9/site-packages/datasets/utils/py_utils.py", line 216, in map_nested mapped = [ File "/Users/zhaofengw/miniconda3/lib/python3.9/site-packages/datasets/utils/py_utils.py", line 217, in <listcomp> _single_map_nested((function, obj, types, None, True)) File "/Users/zhaofengw/miniconda3/lib/python3.9/site-packages/datasets/utils/py_utils.py", line 152, in _single_map_nested return function(data_struct) File "/Users/zhaofengw/miniconda3/lib/python3.9/site-packages/datasets/utils/download_manager.py", line 217, in _download return cached_path(url_or_filename, download_config=download_config) File "/Users/zhaofengw/miniconda3/lib/python3.9/site-packages/datasets/utils/file_utils.py", line 295, in cached_path output_path = get_from_cache( File "/Users/zhaofengw/miniconda3/lib/python3.9/site-packages/datasets/utils/file_utils.py", line 594, in get_from_cache raise ConnectionError("Couldn't reach {}".format(url)) ConnectionError: Couldn't reach https://nlp.stanford.edu/data/coqa/coqa-dev-v1.0.json >>> dataset = load_dataset("coqa") Using custom data configuration default Downloading and preparing dataset coqa/default (download: 55.40 MiB, generated: 18.35 MiB, post-processed: Unknown size, total: 73.75 MiB) to /Users/zhaofengw/.cache/huggingface/datasets/coqa/default/1.0.0/553ce70bfdcd15ff4b5f4abc4fc2f37137139cde1f58f4f60384a53a327716f0... Downloading: 100%|█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 222/222 [00:00<00:00, 1.38MB/s] 100%|█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 2/2 [00:00<00:00, 6.26it/s] 100%|███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 2/2 [00:00<00:00, 1087.45it/s] 50%|████████████████████████████████████████████████████████████████████████████████████████████████████████████▌ | 1/2 [00:45<00:45, 45.60s/it] Traceback (most recent call last): File "<stdin>", line 1, in <module> File "/Users/zhaofengw/miniconda3/lib/python3.9/site-packages/datasets/load.py", line 1632, in load_dataset builder_instance.download_and_prepare( File "/Users/zhaofengw/miniconda3/lib/python3.9/site-packages/datasets/builder.py", line 607, in download_and_prepare self._download_and_prepare( File "/Users/zhaofengw/miniconda3/lib/python3.9/site-packages/datasets/builder.py", line 679, in _download_and_prepare verify_checksums( File "/Users/zhaofengw/miniconda3/lib/python3.9/site-packages/datasets/utils/info_utils.py", line 40, in verify_checksums raise NonMatchingChecksumError(error_msg + str(bad_urls)) datasets.utils.info_utils.NonMatchingChecksumError: Checksums didn't match for dataset source files: ['https://nlp.stanford.edu/data/coqa/coqa-train-v1.0.json', 'https://nlp.stanford.edu/data/coqa/coqa-dev-v1.0.json'] ``` I can access the URL using my browser, though I did notice a redirection -- could that have something to do with it?
``` >>> from datasets import load_dataset >>> dataset = load_dataset("coqa") Downloading: 3.82kB [00:00, 1.26MB/s] Downloading: 1.79kB [00:00, 733kB/s] Using custom data configuration default Downloading and preparing dataset coqa/default (download: 55.40 MiB, generated: 18.35 MiB, post-processed: Unknown size, total: 73.75 MiB) to /Users/zhaofengw/.cache/huggingface/datasets/coqa/default/1.0.0/553ce70bfdcd15ff4b5f4abc4fc2f37137139cde1f58f4f60384a53a327716f0... Downloading: 100%|█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 222/222 [00:00<00:00, 1.38MB/s] Downloading: 100%|█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 222/222 [00:00<00:00, 1.32MB/s] 100%|█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 2/2 [00:01<00:00, 1.91it/s] 100%|███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 2/2 [00:00<00:00, 1117.44it/s] Traceback (most recent call last): File "<stdin>", line 1, in <module> File "/Users/zhaofengw/miniconda3/lib/python3.9/site-packages/datasets/load.py", line 1632, in load_dataset builder_instance.download_and_prepare( File "/Users/zhaofengw/miniconda3/lib/python3.9/site-packages/datasets/builder.py", line 607, in download_and_prepare self._download_and_prepare( File "/Users/zhaofengw/miniconda3/lib/python3.9/site-packages/datasets/builder.py", line 679, in _download_and_prepare verify_checksums( File "/Users/zhaofengw/miniconda3/lib/python3.9/site-packages/datasets/utils/info_utils.py", line 40, in verify_checksums raise NonMatchingChecksumError(error_msg + str(bad_urls)) datasets.utils.info_utils.NonMatchingChecksumError: Checksums didn't match for dataset source files: ['https://nlp.stanford.edu/data/coqa/coqa-train-v1.0.json', 'https://nlp.stanford.edu/data/coqa/coqa-dev-v1.0.json'] ```
380
coqa NonMatchingChecksumError ``` >>> from datasets import load_dataset >>> dataset = load_dataset("coqa") Downloading: 3.82kB [00:00, 1.26MB/s] Downloading: 1.79kB [00:00, 733kB/s] Using custom data configuration default Downloading and preparing dataset coqa/default (download: 55.40 MiB, generated: 18.35 MiB, post-processed: Unknown size, total: 73.75 MiB) to /Users/zhaofengw/.cache/huggingface/datasets/coqa/default/1.0.0/553ce70bfdcd15ff4b5f4abc4fc2f37137139cde1f58f4f60384a53a327716f0... Downloading: 100%|█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 222/222 [00:00<00:00, 1.38MB/s] Downloading: 100%|█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 222/222 [00:00<00:00, 1.32MB/s] 100%|█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 2/2 [00:01<00:00, 1.91it/s] 100%|███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 2/2 [00:00<00:00, 1117.44it/s] Traceback (most recent call last): File "<stdin>", line 1, in <module> File "/Users/zhaofengw/miniconda3/lib/python3.9/site-packages/datasets/load.py", line 1632, in load_dataset builder_instance.download_and_prepare( File "/Users/zhaofengw/miniconda3/lib/python3.9/site-packages/datasets/builder.py", line 607, in download_and_prepare self._download_and_prepare( File "/Users/zhaofengw/miniconda3/lib/python3.9/site-packages/datasets/builder.py", line 679, in _download_and_prepare verify_checksums( File "/Users/zhaofengw/miniconda3/lib/python3.9/site-packages/datasets/utils/info_utils.py", line 40, in verify_checksums raise NonMatchingChecksumError(error_msg + str(bad_urls)) datasets.utils.info_utils.NonMatchingChecksumError: Checksums didn't match for dataset source files: ['https://nlp.stanford.edu/data/coqa/coqa-train-v1.0.json', 'https://nlp.stanford.edu/data/coqa/coqa-dev-v1.0.json'] ``` I got the same error in a third environment (google cloud) as well. The internet for these three environments are all different so I don't think that's the reason. ``` - `datasets` version: 1.12.1 - Platform: Linux-5.11.0-1022-gcp-x86_64-with-glibc2.31 - Python version: 3.9.7 - PyArrow version: 6.0.0 ``` I deleted the entire `~/.cache/huggingface/datasets` on my local mac, and got a different first time error. ``` Python 3.9.5 (default, May 18 2021, 12:31:01) [Clang 10.0.0 ] :: Anaconda, Inc. on darwin Type "help", "copyright", "credits" or "license" for more information. >>> from datasets import load_dataset >>> dataset = load_dataset("coqa") Downloading: 3.82kB [00:00, 1.19MB/s] Downloading: 1.79kB [00:00, 712kB/s] Using custom data configuration default Downloading and preparing dataset coqa/default (download: 55.40 MiB, generated: 18.35 MiB, post-processed: Unknown size, total: 73.75 MiB) to /Users/zhaofengw/.cache/huggingface/datasets/coqa/default/1.0.0/553ce70bfdcd15ff4b5f4abc4fc2f37137139cde1f58f4f60384a53a327716f0... Downloading: 100%|█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 222/222 [00:00<00:00, 1.36MB/s] 50%|████████████████████████████████████████████████████████████████████████████████████████████████████████████▌ | 1/2 [00:00<00:00, 2.47it/s]Traceback (most recent call last): File "<stdin>", line 1, in <module> File "/Users/zhaofengw/miniconda3/lib/python3.9/site-packages/datasets/load.py", line 1632, in load_dataset builder_instance.download_and_prepare( File "/Users/zhaofengw/miniconda3/lib/python3.9/site-packages/datasets/builder.py", line 607, in download_and_prepare self._download_and_prepare( File "/Users/zhaofengw/miniconda3/lib/python3.9/site-packages/datasets/builder.py", line 675, in _download_and_prepare split_generators = self._split_generators(dl_manager, **split_generators_kwargs) File "/Users/zhaofengw/.cache/huggingface/modules/datasets_modules/datasets/coqa/553ce70bfdcd15ff4b5f4abc4fc2f37137139cde1f58f4f60384a53a327716f0/coqa.py", line 70, in _split_generators downloaded_files = dl_manager.download_and_extract(urls_to_download) File "/Users/zhaofengw/miniconda3/lib/python3.9/site-packages/datasets/utils/download_manager.py", line 284, in download_and_extract return self.extract(self.download(url_or_urls)) File "/Users/zhaofengw/miniconda3/lib/python3.9/site-packages/datasets/utils/download_manager.py", line 196, in download downloaded_path_or_paths = map_nested( File "/Users/zhaofengw/miniconda3/lib/python3.9/site-packages/datasets/utils/py_utils.py", line 216, in map_nested mapped = [ File "/Users/zhaofengw/miniconda3/lib/python3.9/site-packages/datasets/utils/py_utils.py", line 217, in <listcomp> _single_map_nested((function, obj, types, None, True)) File "/Users/zhaofengw/miniconda3/lib/python3.9/site-packages/datasets/utils/py_utils.py", line 152, in _single_map_nested return function(data_struct) File "/Users/zhaofengw/miniconda3/lib/python3.9/site-packages/datasets/utils/download_manager.py", line 217, in _download return cached_path(url_or_filename, download_config=download_config) File "/Users/zhaofengw/miniconda3/lib/python3.9/site-packages/datasets/utils/file_utils.py", line 295, in cached_path output_path = get_from_cache( File "/Users/zhaofengw/miniconda3/lib/python3.9/site-packages/datasets/utils/file_utils.py", line 594, in get_from_cache raise ConnectionError("Couldn't reach {}".format(url)) ConnectionError: Couldn't reach https://nlp.stanford.edu/data/coqa/coqa-dev-v1.0.json >>> dataset = load_dataset("coqa") Using custom data configuration default Downloading and preparing dataset coqa/default (download: 55.40 MiB, generated: 18.35 MiB, post-processed: Unknown size, total: 73.75 MiB) to /Users/zhaofengw/.cache/huggingface/datasets/coqa/default/1.0.0/553ce70bfdcd15ff4b5f4abc4fc2f37137139cde1f58f4f60384a53a327716f0... Downloading: 100%|█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 222/222 [00:00<00:00, 1.38MB/s] 100%|█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 2/2 [00:00<00:00, 6.26it/s] 100%|███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 2/2 [00:00<00:00, 1087.45it/s] 50%|████████████████████████████████████████████████████████████████████████████████████████████████████████████▌ | 1/2 [00:45<00:45, 45.60s/it] Traceback (most recent call last): File "<stdin>", line 1, in <module> File "/Users/zhaofengw/miniconda3/lib/python3.9/site-packages/datasets/load.py", line 1632, in load_dataset builder_instance.download_and_prepare( File "/Users/zhaofengw/miniconda3/lib/python3.9/site-packages/datasets/builder.py", line 607, in download_and_prepare self._download_and_prepare( File "/Users/zhaofengw/miniconda3/lib/python3.9/site-packages/datasets/builder.py", line 679, in _download_and_prepare verify_checksums( File "/Users/zhaofengw/miniconda3/lib/python3.9/site-packages/datasets/utils/info_utils.py", line 40, in verify_checksums raise NonMatchingChecksumError(error_msg + str(bad_urls)) datasets.utils.info_utils.NonMatchingChecksumError: Checksums didn't match for dataset source files: ['https://nlp.stanford.edu/data/coqa/coqa-train-v1.0.json', 'https://nlp.stanford.edu/data/coqa/coqa-dev-v1.0.json'] ``` I can access the URL using my browser, though I did notice a redirection -- could that have something to do with it?
[ -0.2934424877166748, -0.16965605318546295, -0.23772868514060974, 0.1443958878517151, 0.17530269920825958, -0.03220370039343834, 0.10853204131126404, 0.34697225689888, 0.1612992137670517, 0.34507638216018677, -0.12422356754541397, 0.016303548589348793, 0.13270717859268188, 0.3179677724838257, -0.24001473188400269, 0.41088542342185974, -0.03730381280183792, 0.130801722407341, -0.13652393221855164, -0.08464013040065765, -0.16203461587429047, 0.16598115861415863, -0.01582520455121994, -0.21113817393779755, 0.02861746959388256, -0.10914026945829391, 0.10121777653694153, 0.14800600707530975, -0.2446722537279129, -0.28355634212493896, 0.09498230367898941, 0.13728395104408264, -0.2691483199596405, 0.30232828855514526, -0.00010783330799313262, -0.0027384981513023376, 0.3951041102409363, -0.039331186562776566, -0.3947451412677765, 0.14915716648101807, -0.5660779476165771, -0.3265206217765808, -0.04970679432153702, -0.17008115351200104, -0.0475759357213974, 0.23689433932304382, -0.06580795347690582, -0.08954586833715439, 0.2255401611328125, 0.3060496151447296, 0.33020082116127014, 0.5339956283569336, -0.10401947796344757, -0.16375169157981873, 0.07236073911190033, 0.031290773302316666, -0.12435615807771683, 0.2001531571149826, 0.21609294414520264, 0.1913791298866272, -0.27258944511413574, 0.3140356242656708, -0.0051485151052474976, 0.09484364092350006, -0.17975234985351562, -0.14494965970516205, 0.12952551245689392, -0.10418336093425751, 0.5087623596191406, 0.2842763364315033, 0.27493998408317566, -0.176284521818161, -0.2551177740097046, -0.07698702812194824, -0.20052854716777802, -0.3510757386684418, 0.24585279822349548, 0.14968642592430115, -0.340237557888031, -0.17369966208934784, -0.2658529281616211, 0.3822205364704132, 0.03578901290893555, -0.11176595091819763, -0.2776526212692261, -0.06412157416343689, -0.1459256261587143, -0.10768140107393265, 0.19801907241344452, -0.18681031465530396, 0.10265035182237625, -0.10998208820819855, -0.2069360315799713, 0.039076365530490875, -0.5156916379928589, -0.14970144629478455, 0.31265756487846375, 0.37973666191101074, 0.3413914740085602, 0.22981014847755432, 0.18982462584972382, 0.21446359157562256, 0.026291899383068085, -0.021310336887836456, -0.15561148524284363, 0.3892468512058258, 0.011136263608932495, -0.24692974984645844, 0.22724728286266327, 0.3603816330432892, -0.08430300652980804, 0.035563740879297256, 0.09798380732536316, -0.310355007648468, 0.16753895580768585, 0.25340837240219116, 0.06962268054485321, -0.4281231462955475, -0.4341353178024292, 0.149600550532341, 0.1567331850528717, 0.06822070479393005, 0.18170641362667084, 0.5912106037139893, -0.03076007217168808, -0.06389985978603363, -0.16616404056549072, 0.004891406744718552, -0.30665868520736694, -0.1340271681547165, -0.371019572019577, 0.031862448900938034, -0.14453153312206268, -0.007327264174818993, 0.1801055371761322, -0.11212418973445892, 0.23918317258358002, -0.1675238162279129, 0.33850133419036865, -0.021233825013041496, 0.02179025299847126, -0.2919423282146454, 0.0382426381111145, 0.4026385545730591, -0.01665576733648777, 0.04756862670183182, 0.28407829999923706, -0.0009175539016723633, -0.1435098946094513, -0.03872884809970856, -0.03240456432104111, -0.26845183968544006, 0.10987308621406555, 0.3479248583316803, -0.07606720924377441, -0.0021591894328594208, 0.2647094130516052, -0.20924822986125946, 0.3453936278820038, -0.06105532497167587, 0.13540741801261902, 0.01325797289609909, -0.16954652965068817, -0.2886042594909668, 0.16366930305957794, 0.4162479043006897, -0.07393622398376465, 0.032692380249500275, 0.038964398205280304, -0.12756450474262238, 0.17309290170669556, 0.149419367313385, 0.0685000866651535, 0.09921149909496307, -0.21407602727413177, -0.10196132957935333, 0.21608251333236694, -0.3309718668460846, -0.6776994466781616, 0.09962806105613708, 0.045031264424324036, 0.1138063296675682, 0.15592333674430847, 0.021511884406208992, 0.09797555953264236, -0.03561897203326225, 0.07381267100572586, -0.0027298852801322937, 0.031051501631736755, 0.11351162940263748, -0.39217624068260193, -0.31785261631011963, -0.009648721665143967, 0.10581538081169128, 0.16304001212120056, -0.05722411721944809, 0.29456934332847595, -0.45781758427619934, 0.20404884219169617, -0.09221106767654419, -0.011318291537463665, 0.12655538320541382, 0.18324358761310577, -0.20327387750148773, -0.04442282021045685, 0.004791315644979477, -0.2321658432483673, 0.2732808291912079, -0.44594860076904297, 0.06045011430978775, -0.18885435163974762, -0.26077142357826233, -0.3654577136039734, -0.0270660612732172, -0.21089313924312592, -0.14423216879367828, 0.30756711959838867, 0.273681640625, 0.27484431862831116, 0.07274362444877625, 0.11723446846008301, 0.40884360671043396, -0.1587977558374405, -0.04461226612329483, -0.31232354044914246, 0.043137192726135254, -0.09874071925878525, -0.07750507444143295, -0.03355168551206589, 0.3281101882457733, 0.15009266138076782, -0.022737614810466766, -0.07894660532474518, 0.30079612135887146, 0.17490367591381073, 0.1836465299129486, -0.08949295431375504, 0.127378910779953, -0.0025923699140548706, 0.049132224172353745, 0.0637911930680275, 0.16952727735042572, 0.07616879045963287, -0.014355748891830444, -0.21904432773590088, 0.49147361516952515, -0.1414717584848404, 0.17851026356220245, 0.1221497654914856, -0.14977209270000458, 0.24572929739952087, -0.15667659044265747, -0.11089283972978592, -0.11869918555021286, 0.23188894987106323, 0.17755544185638428, 0.04459628090262413, 0.10382231324911118, -0.11840202659368515, 0.113840252161026, 0.3319092392921448, -0.06497618556022644, 0.0596817247569561, 0.1184130534529686, 0.09951990842819214, -0.09228239208459854, 0.07496040314435959, 0.3611769676208496, 0.4361034631729126, 0.19483688473701477, 0.17049480974674225, -0.05781761556863785, -0.00705199409276247, -0.16996005177497864, 0.12952379882335663, 0.12153053283691406, -0.03822976350784302, 0.4889443516731262, 0.23847328126430511, -0.19473984837532043, -0.48423442244529724, -0.17633193731307983, -0.07251535356044769, 0.20507536828517914, -0.29004234075546265, 0.048694491386413574, -0.17661550641059875, -0.24514919519424438, 0.018816251307725906, -0.23127946257591248, 0.0636468231678009, -0.40280500054359436, 0.12155710905790329, 0.18837758898735046, -0.06813565641641617, 0.24740423262119293, -0.3666554391384125, 0.17079229652881622, 0.20224541425704956, -0.23210398852825165, -0.1817013919353485, 0.2013235241174698, -0.10452926903963089, 0.2084091603755951, 0.18242862820625305, 0.049002859741449356, 0.5008370280265808, -0.33716222643852234, 0.0265551395714283, -0.2955659031867981, -0.22314369678497314, -0.04286115616559982, -0.0206168070435524, 0.02589571662247181, 0.23955890536308289, 0.1678852140903473, -0.09732411056756973, -0.16121135652065277, 0.1723998636007309, -0.03255085274577141, -0.42428526282310486, 0.07566442340612411, -0.20237238705158234, 0.07886164635419846, -0.18486922979354858, -0.041290752589702606, -0.2166948914527893, -0.4261755645275116, 0.10516571998596191, 0.1664564609527588, 0.21152444183826447, 0.28348469734191895, 0.030940603464841843, 0.18370208144187927, 0.06931445002555847, 0.2948223650455475, -0.35511231422424316, -0.6185640692710876, 0.30382198095321655, -0.11850994825363159, -0.3948781490325928, -0.0802287831902504, -0.29940736293792725, 0.5251651406288147, -0.05346399173140526, -0.25605493783950806, -0.2709777355194092, -0.43960779905319214, 0.19161812961101532, 0.058311913162469864, -0.09370128065347672, 0.4126143455505371, -0.019693177193403244, -0.30627769231796265, -0.05406895652413368, -0.1069871336221695, 0.10140863060951233, -0.07748894393444061, 0.2577381432056427, -0.22634556889533997, 0.4307520091533661, 0.0870751142501831, 0.37161386013031006, 0.39679551124572754, -0.04324616864323616, 0.2767592668533325, -0.0012930259108543396, 0.366716593503952, -0.29272159934043884, -0.3451104760169983, 0.11048631370067596, -0.010120302438735962, -0.10813893377780914, 0.17037226259708405, -0.049006424844264984, 0.1882525533437729, -0.0010115094482898712, -0.04595613479614258, -0.3217918574810028, -0.2026652693748474, -0.029957303777337074, -0.011170759797096252, 0.20619788765907288, -0.0590057373046875, 0.1796014904975891, -0.07419231534004211, -0.05333031713962555, 0.07544931769371033, 0.23053954541683197, -0.1735401153564453, -0.22238445281982422, -0.17990374565124512, 0.02114269882440567, -0.5448867082595825, 0.3739597797393799, 0.14488767087459564, 0.19165657460689545, -0.18221527338027954, -0.21478384733200073, 0.2275918871164322, -0.27609628438949585, 0.5989823937416077, 0.019277457147836685, 0.06914625316858292, 0.061302151530981064, -0.0501546785235405, -0.10577737540006638, -0.055776819586753845, -0.03336707502603531, -0.0936836525797844, 0.20603084564208984, -0.0033683478832244873, -0.42974868416786194, 0.006628898903727531, 0.15482155978679657, 0.19221405684947968, -0.07304496318101883, -0.08640987426042557, -0.44292178750038147, -0.4385754466056824, -0.40330877900123596, 0.2203482687473297, -0.19638533890247345, 0.3476666510105133, -0.25391799211502075, -0.04840502142906189, 0.024263707920908928, -0.10065814852714539, 0.2695053815841675, 0.1647171527147293, 0.22914716601371765, 0.110596664249897, 0.22661995887756348, -0.24429190158843994, 0.13070419430732727, 0.1984192579984665, 0.5014007091522217, 0.049889978021383286, -0.03833119571208954, 0.04114202409982681, -0.09934808313846588, -0.08475775271654129, 0.1514367312192917, -0.07930830866098404, 0.06131284311413765, 0.08193901181221008, 0.17971403896808624, 0.007807188667356968, 0.06768348813056946, 0.191093310713768, 0.07904420047998428, -0.4913080930709839, 0.00012611597776412964, 0.18332332372665405, -0.1703171283006668, -0.12918595969676971, 0.22338254749774933, -0.07339797914028168, -0.06663050502538681, 0.10432832688093185, 0.15409207344055176, 0.9350462555885315, -0.014139235019683838, 0.058612577617168427, 0.29328739643096924, -0.079803965985775, 0.12429782748222351, -0.2610677480697632, 0.09160012751817703, -0.308572918176651, -0.4105004072189331, -0.08249296247959137, -0.13053175806999207, 0.2970247268676758, -0.14368225634098053, -0.1895328313112259, 0.23112767934799194, -0.0813201293349266, 0.11333084106445312, 0.008750002831220627, 0.03075598180294037, -0.40086105465888977, -0.04071492329239845, 0.01718025654554367, 0.2892783284187317, 0.13341988623142242, 0.20583026111125946, -0.12051525712013245, 0.05827419087290764, -0.10158440470695496, -0.24899086356163025, -0.13879992067813873, -0.039493925869464874, -0.19463592767715454, 0.03599635511636734, 0.16839082539081573, -0.1722528636455536, -0.23880907893180847, 0.038397498428821564, 0.21403709053993225, 0.18490250408649445, -0.15437829494476318, 0.15479524433612823, 0.31905168294906616, 0.2688971757888794, 0.10504724830389023, -0.12844356894493103, 0.07145668566226959, -0.12665459513664246, -0.2375257909297943, 0.17874372005462646, -0.03149297088384628, -0.19412989914417267, 0.08989214897155762, 0.20072123408317566, 0.13910531997680664, -0.39492350816726685, -0.05906708911061287, -0.19327202439308167, -0.06835195422172546, -0.2689076364040375, 0.2183004766702652, 0.12494394183158875, -0.1642821729183197, 0.3021155297756195, -0.2200939804315567, -0.381645143032074, -0.19553539156913757, 0.4039522707462311, 0.059818439185619354, -0.055473219603300095, 0.39847618341445923, -0.1549912393093109, -0.3118517994880676, -0.3498164415359497, -0.08506038784980774, -0.20270290970802307, -0.17557567358016968, 0.05849461257457733, -0.03073701076209545, -0.15075963735580444, -0.020298466086387634, 0.5994767546653748, 0.060186974704265594, 0.19920223951339722, 0.02526635304093361, -0.4625312387943268, -0.42742159962654114, -0.061734944581985474, 0.03706744685769081, 0.3987518548965454, -0.15916256606578827, 0.16445614397525787, 0.012947244569659233, -0.004292689263820648, -0.43596765398979187, 0.031307466328144073, -0.4266003370285034, -0.018036898225545883, -0.08434324711561203, 0.023849669843912125, 0.3092130124568939, 0.21308329701423645, 0.29234951734542847, 0.12799608707427979, -0.30219441652297974, -0.3937187194824219, 0.08653353154659271, 0.09008870273828506, -0.14846336841583252, -0.09343032538890839, 0.1611853688955307, 0.1144799292087555, -0.08965542912483215, -0.1671106219291687, 0.13754960894584656, 0.09744145721197128, -0.05776767432689667, -0.0011662635952234268, 0.03317973017692566, 0.11357127875089645, 0.06544121354818344, 0.03810965642333031, -0.12498892843723297, -0.06489604711532593, 0.08184729516506195, 0.06233051419258118, -0.31649965047836304, -0.06265197694301605, 0.21798862516880035, 0.2692120373249054, 0.1765723079442978, -0.25738468766212463, 0.18408872187137604, -0.08021324872970581, -0.28304219245910645, 0.12898407876491547, 0.2626402676105499, 0.10557858645915985, -0.10393302142620087, -0.05853545665740967, -0.00696902722120285, 0.3814464211463928, -0.24597476422786713, 0.062213074415922165, -0.19105800986289978, -0.11888439208269119, 0.3324759006500244, 0.20271265506744385, 0.03767793998122215, -0.49493420124053955, 0.7025297284126282, -0.0032799430191516876, 0.09852687269449234, -0.2750313878059387, 0.06997153162956238, 0.3853769600391388, -0.09488283097743988, 0.06583025306463242, 0.3065243363380432, -0.20568472146987915, 0.0029283538460731506, 0.1775141954421997, -0.12993362545967102, 0.3608565926551819, -0.3100311756134033, 0.22306671738624573, -0.21101057529449463, -0.5824345946311951, 0.43522578477859497, 0.19912779331207275, -0.1894797384738922, -0.1579817831516266, 0.21143674850463867, 0.006730489432811737, 0.12381017208099365, 0.1221541166305542, -0.5876337885856628, 0.054521504789590836, -0.18315264582633972, -0.2643299400806427, 0.04633136838674545, -0.25904372334480286, 0.06537827849388123, 0.08788329362869263, 0.17545495927333832, -0.03460018336772919, 0.14828503131866455, -0.06597074866294861, -0.07132065296173096, -0.2589384913444519, -0.050329938530921936, 0.05690690875053406, -0.019562505185604095, -0.226518452167511, 0.3146122694015503, 0.3966416120529175, 0.10995562374591827, 0.06532835960388184, 0.26924097537994385, 0.4736747443675995, 0.30895155668258667, 0.07838893681764603, 0.11792709678411484, -0.1571085900068283, -0.06981592625379562, -0.29738831520080566, 0.5326287746429443, 0.056090086698532104, 0.12402398884296417, 0.3892194330692291, 0.33868253231048584, -0.35118669271469116, -0.10180355608463287, -0.004990827292203903, -0.2602482736110687, -0.25271090865135193, 0.4092099964618683, 0.04140118509531021, 0.11650843173265457, -0.1890028864145279, 0.08631154149770737, -0.4327796995639801, -0.12798988819122314, -0.12977595627307892, -0.10070309042930603, 0.26383310556411743, -0.047427937388420105, 0.13595466315746307, -0.13304288685321808, 0.3954499065876007, 0.11508388072252274, 0.2237357795238495, -0.35402292013168335, -0.29979121685028076, -0.443930059671402, 0.2721990644931793, 0.11012555658817291, -0.08830752223730087, -0.28892645239830017, 0.4001695513725281, -0.13441091775894165, 0.005416510626673698, 0.3089107275009155, 0.20314213633537292, 0.21907810866832733, 0.012316066771745682, -0.15926919877529144, 0.17761847376823425, -0.16125626862049103, -0.17664110660552979, -0.0006082989275455475, -0.4943605661392212, 0.24998092651367188, 0.01212752889841795, 0.29278966784477234, 0.03693773224949837, -0.08022898435592651, -0.08585919439792633, 0.1793816238641739, 0.2793874442577362, 0.22420385479927063, 0.4025237262248993, -0.26060590147972107, -0.1163613572716713, -0.17698027193546295, 0.11177251487970352, 0.007236148230731487, 0.1602901816368103, 0.17387434840202332, 0.23797091841697693, 0.19372721016407013, -0.002248309552669525, -0.05700988322496414, 0.6293025016784668, 0.3451418876647949, -0.1713215857744217, 0.006119709461927414, 0.24794191122055054, -0.04957638308405876, 0.05936165153980255, -0.02183469757437706, 0.1271129846572876, 0.16174350678920746, 0.22889575362205505, -0.23515881597995758, -0.29199516773223877, 0.3922101855278015, -0.3292052447795868, -0.23996081948280334, -0.16823481023311615, 0.46806830167770386, -0.2205522656440735, -0.0836518332362175, -0.4472202956676483, 0.23536372184753418, 0.33403486013412476, 0.0017696619033813477, -0.10090698301792145, 0.39558759331703186, -0.2101522535085678, 0.04606184735894203, -0.14001600444316864, 0.25752827525138855, 0.15152159333229065, -0.052701279520988464, -0.09237298369407654, -0.29959636926651 ]
https://github.com/huggingface/datasets/issues/3269
coqa NonMatchingChecksumError
I can run your notebook fine, but if I create one myself, it has that error: https://colab.research.google.com/drive/107GIdhrauPO6ZiFDY7G9S74in4qqI2Kx?usp=sharing. It's so funny -- it's like whenever you guys run it it's fine but whenever I run it it fails, whatever the environment is.
``` >>> from datasets import load_dataset >>> dataset = load_dataset("coqa") Downloading: 3.82kB [00:00, 1.26MB/s] Downloading: 1.79kB [00:00, 733kB/s] Using custom data configuration default Downloading and preparing dataset coqa/default (download: 55.40 MiB, generated: 18.35 MiB, post-processed: Unknown size, total: 73.75 MiB) to /Users/zhaofengw/.cache/huggingface/datasets/coqa/default/1.0.0/553ce70bfdcd15ff4b5f4abc4fc2f37137139cde1f58f4f60384a53a327716f0... Downloading: 100%|█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 222/222 [00:00<00:00, 1.38MB/s] Downloading: 100%|█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 222/222 [00:00<00:00, 1.32MB/s] 100%|█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 2/2 [00:01<00:00, 1.91it/s] 100%|███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 2/2 [00:00<00:00, 1117.44it/s] Traceback (most recent call last): File "<stdin>", line 1, in <module> File "/Users/zhaofengw/miniconda3/lib/python3.9/site-packages/datasets/load.py", line 1632, in load_dataset builder_instance.download_and_prepare( File "/Users/zhaofengw/miniconda3/lib/python3.9/site-packages/datasets/builder.py", line 607, in download_and_prepare self._download_and_prepare( File "/Users/zhaofengw/miniconda3/lib/python3.9/site-packages/datasets/builder.py", line 679, in _download_and_prepare verify_checksums( File "/Users/zhaofengw/miniconda3/lib/python3.9/site-packages/datasets/utils/info_utils.py", line 40, in verify_checksums raise NonMatchingChecksumError(error_msg + str(bad_urls)) datasets.utils.info_utils.NonMatchingChecksumError: Checksums didn't match for dataset source files: ['https://nlp.stanford.edu/data/coqa/coqa-train-v1.0.json', 'https://nlp.stanford.edu/data/coqa/coqa-dev-v1.0.json'] ```
41
coqa NonMatchingChecksumError ``` >>> from datasets import load_dataset >>> dataset = load_dataset("coqa") Downloading: 3.82kB [00:00, 1.26MB/s] Downloading: 1.79kB [00:00, 733kB/s] Using custom data configuration default Downloading and preparing dataset coqa/default (download: 55.40 MiB, generated: 18.35 MiB, post-processed: Unknown size, total: 73.75 MiB) to /Users/zhaofengw/.cache/huggingface/datasets/coqa/default/1.0.0/553ce70bfdcd15ff4b5f4abc4fc2f37137139cde1f58f4f60384a53a327716f0... Downloading: 100%|█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 222/222 [00:00<00:00, 1.38MB/s] Downloading: 100%|█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 222/222 [00:00<00:00, 1.32MB/s] 100%|█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 2/2 [00:01<00:00, 1.91it/s] 100%|███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 2/2 [00:00<00:00, 1117.44it/s] Traceback (most recent call last): File "<stdin>", line 1, in <module> File "/Users/zhaofengw/miniconda3/lib/python3.9/site-packages/datasets/load.py", line 1632, in load_dataset builder_instance.download_and_prepare( File "/Users/zhaofengw/miniconda3/lib/python3.9/site-packages/datasets/builder.py", line 607, in download_and_prepare self._download_and_prepare( File "/Users/zhaofengw/miniconda3/lib/python3.9/site-packages/datasets/builder.py", line 679, in _download_and_prepare verify_checksums( File "/Users/zhaofengw/miniconda3/lib/python3.9/site-packages/datasets/utils/info_utils.py", line 40, in verify_checksums raise NonMatchingChecksumError(error_msg + str(bad_urls)) datasets.utils.info_utils.NonMatchingChecksumError: Checksums didn't match for dataset source files: ['https://nlp.stanford.edu/data/coqa/coqa-train-v1.0.json', 'https://nlp.stanford.edu/data/coqa/coqa-dev-v1.0.json'] ``` I can run your notebook fine, but if I create one myself, it has that error: https://colab.research.google.com/drive/107GIdhrauPO6ZiFDY7G9S74in4qqI2Kx?usp=sharing. It's so funny -- it's like whenever you guys run it it's fine but whenever I run it it fails, whatever the environment is.
[ -0.2934424877166748, -0.16965605318546295, -0.23772868514060974, 0.1443958878517151, 0.17530269920825958, -0.03220370039343834, 0.10853204131126404, 0.34697225689888, 0.1612992137670517, 0.34507638216018677, -0.12422356754541397, 0.016303548589348793, 0.13270717859268188, 0.3179677724838257, -0.24001473188400269, 0.41088542342185974, -0.03730381280183792, 0.130801722407341, -0.13652393221855164, -0.08464013040065765, -0.16203461587429047, 0.16598115861415863, -0.01582520455121994, -0.21113817393779755, 0.02861746959388256, -0.10914026945829391, 0.10121777653694153, 0.14800600707530975, -0.2446722537279129, -0.28355634212493896, 0.09498230367898941, 0.13728395104408264, -0.2691483199596405, 0.30232828855514526, -0.00010783330799313262, -0.0027384981513023376, 0.3951041102409363, -0.039331186562776566, -0.3947451412677765, 0.14915716648101807, -0.5660779476165771, -0.3265206217765808, -0.04970679432153702, -0.17008115351200104, -0.0475759357213974, 0.23689433932304382, -0.06580795347690582, -0.08954586833715439, 0.2255401611328125, 0.3060496151447296, 0.33020082116127014, 0.5339956283569336, -0.10401947796344757, -0.16375169157981873, 0.07236073911190033, 0.031290773302316666, -0.12435615807771683, 0.2001531571149826, 0.21609294414520264, 0.1913791298866272, -0.27258944511413574, 0.3140356242656708, -0.0051485151052474976, 0.09484364092350006, -0.17975234985351562, -0.14494965970516205, 0.12952551245689392, -0.10418336093425751, 0.5087623596191406, 0.2842763364315033, 0.27493998408317566, -0.176284521818161, -0.2551177740097046, -0.07698702812194824, -0.20052854716777802, -0.3510757386684418, 0.24585279822349548, 0.14968642592430115, -0.340237557888031, -0.17369966208934784, -0.2658529281616211, 0.3822205364704132, 0.03578901290893555, -0.11176595091819763, -0.2776526212692261, -0.06412157416343689, -0.1459256261587143, -0.10768140107393265, 0.19801907241344452, -0.18681031465530396, 0.10265035182237625, -0.10998208820819855, -0.2069360315799713, 0.039076365530490875, -0.5156916379928589, -0.14970144629478455, 0.31265756487846375, 0.37973666191101074, 0.3413914740085602, 0.22981014847755432, 0.18982462584972382, 0.21446359157562256, 0.026291899383068085, -0.021310336887836456, -0.15561148524284363, 0.3892468512058258, 0.011136263608932495, -0.24692974984645844, 0.22724728286266327, 0.3603816330432892, -0.08430300652980804, 0.035563740879297256, 0.09798380732536316, -0.310355007648468, 0.16753895580768585, 0.25340837240219116, 0.06962268054485321, -0.4281231462955475, -0.4341353178024292, 0.149600550532341, 0.1567331850528717, 0.06822070479393005, 0.18170641362667084, 0.5912106037139893, -0.03076007217168808, -0.06389985978603363, -0.16616404056549072, 0.004891406744718552, -0.30665868520736694, -0.1340271681547165, -0.371019572019577, 0.031862448900938034, -0.14453153312206268, -0.007327264174818993, 0.1801055371761322, -0.11212418973445892, 0.23918317258358002, -0.1675238162279129, 0.33850133419036865, -0.021233825013041496, 0.02179025299847126, -0.2919423282146454, 0.0382426381111145, 0.4026385545730591, -0.01665576733648777, 0.04756862670183182, 0.28407829999923706, -0.0009175539016723633, -0.1435098946094513, -0.03872884809970856, -0.03240456432104111, -0.26845183968544006, 0.10987308621406555, 0.3479248583316803, -0.07606720924377441, -0.0021591894328594208, 0.2647094130516052, -0.20924822986125946, 0.3453936278820038, -0.06105532497167587, 0.13540741801261902, 0.01325797289609909, -0.16954652965068817, -0.2886042594909668, 0.16366930305957794, 0.4162479043006897, -0.07393622398376465, 0.032692380249500275, 0.038964398205280304, -0.12756450474262238, 0.17309290170669556, 0.149419367313385, 0.0685000866651535, 0.09921149909496307, -0.21407602727413177, -0.10196132957935333, 0.21608251333236694, -0.3309718668460846, -0.6776994466781616, 0.09962806105613708, 0.045031264424324036, 0.1138063296675682, 0.15592333674430847, 0.021511884406208992, 0.09797555953264236, -0.03561897203326225, 0.07381267100572586, -0.0027298852801322937, 0.031051501631736755, 0.11351162940263748, -0.39217624068260193, -0.31785261631011963, -0.009648721665143967, 0.10581538081169128, 0.16304001212120056, -0.05722411721944809, 0.29456934332847595, -0.45781758427619934, 0.20404884219169617, -0.09221106767654419, -0.011318291537463665, 0.12655538320541382, 0.18324358761310577, -0.20327387750148773, -0.04442282021045685, 0.004791315644979477, -0.2321658432483673, 0.2732808291912079, -0.44594860076904297, 0.06045011430978775, -0.18885435163974762, -0.26077142357826233, -0.3654577136039734, -0.0270660612732172, -0.21089313924312592, -0.14423216879367828, 0.30756711959838867, 0.273681640625, 0.27484431862831116, 0.07274362444877625, 0.11723446846008301, 0.40884360671043396, -0.1587977558374405, -0.04461226612329483, -0.31232354044914246, 0.043137192726135254, -0.09874071925878525, -0.07750507444143295, -0.03355168551206589, 0.3281101882457733, 0.15009266138076782, -0.022737614810466766, -0.07894660532474518, 0.30079612135887146, 0.17490367591381073, 0.1836465299129486, -0.08949295431375504, 0.127378910779953, -0.0025923699140548706, 0.049132224172353745, 0.0637911930680275, 0.16952727735042572, 0.07616879045963287, -0.014355748891830444, -0.21904432773590088, 0.49147361516952515, -0.1414717584848404, 0.17851026356220245, 0.1221497654914856, -0.14977209270000458, 0.24572929739952087, -0.15667659044265747, -0.11089283972978592, -0.11869918555021286, 0.23188894987106323, 0.17755544185638428, 0.04459628090262413, 0.10382231324911118, -0.11840202659368515, 0.113840252161026, 0.3319092392921448, -0.06497618556022644, 0.0596817247569561, 0.1184130534529686, 0.09951990842819214, -0.09228239208459854, 0.07496040314435959, 0.3611769676208496, 0.4361034631729126, 0.19483688473701477, 0.17049480974674225, -0.05781761556863785, -0.00705199409276247, -0.16996005177497864, 0.12952379882335663, 0.12153053283691406, -0.03822976350784302, 0.4889443516731262, 0.23847328126430511, -0.19473984837532043, -0.48423442244529724, -0.17633193731307983, -0.07251535356044769, 0.20507536828517914, -0.29004234075546265, 0.048694491386413574, -0.17661550641059875, -0.24514919519424438, 0.018816251307725906, -0.23127946257591248, 0.0636468231678009, -0.40280500054359436, 0.12155710905790329, 0.18837758898735046, -0.06813565641641617, 0.24740423262119293, -0.3666554391384125, 0.17079229652881622, 0.20224541425704956, -0.23210398852825165, -0.1817013919353485, 0.2013235241174698, -0.10452926903963089, 0.2084091603755951, 0.18242862820625305, 0.049002859741449356, 0.5008370280265808, -0.33716222643852234, 0.0265551395714283, -0.2955659031867981, -0.22314369678497314, -0.04286115616559982, -0.0206168070435524, 0.02589571662247181, 0.23955890536308289, 0.1678852140903473, -0.09732411056756973, -0.16121135652065277, 0.1723998636007309, -0.03255085274577141, -0.42428526282310486, 0.07566442340612411, -0.20237238705158234, 0.07886164635419846, -0.18486922979354858, -0.041290752589702606, -0.2166948914527893, -0.4261755645275116, 0.10516571998596191, 0.1664564609527588, 0.21152444183826447, 0.28348469734191895, 0.030940603464841843, 0.18370208144187927, 0.06931445002555847, 0.2948223650455475, -0.35511231422424316, -0.6185640692710876, 0.30382198095321655, -0.11850994825363159, -0.3948781490325928, -0.0802287831902504, -0.29940736293792725, 0.5251651406288147, -0.05346399173140526, -0.25605493783950806, -0.2709777355194092, -0.43960779905319214, 0.19161812961101532, 0.058311913162469864, -0.09370128065347672, 0.4126143455505371, -0.019693177193403244, -0.30627769231796265, -0.05406895652413368, -0.1069871336221695, 0.10140863060951233, -0.07748894393444061, 0.2577381432056427, -0.22634556889533997, 0.4307520091533661, 0.0870751142501831, 0.37161386013031006, 0.39679551124572754, -0.04324616864323616, 0.2767592668533325, -0.0012930259108543396, 0.366716593503952, -0.29272159934043884, -0.3451104760169983, 0.11048631370067596, -0.010120302438735962, -0.10813893377780914, 0.17037226259708405, -0.049006424844264984, 0.1882525533437729, -0.0010115094482898712, -0.04595613479614258, -0.3217918574810028, -0.2026652693748474, -0.029957303777337074, -0.011170759797096252, 0.20619788765907288, -0.0590057373046875, 0.1796014904975891, -0.07419231534004211, -0.05333031713962555, 0.07544931769371033, 0.23053954541683197, -0.1735401153564453, -0.22238445281982422, -0.17990374565124512, 0.02114269882440567, -0.5448867082595825, 0.3739597797393799, 0.14488767087459564, 0.19165657460689545, -0.18221527338027954, -0.21478384733200073, 0.2275918871164322, -0.27609628438949585, 0.5989823937416077, 0.019277457147836685, 0.06914625316858292, 0.061302151530981064, -0.0501546785235405, -0.10577737540006638, -0.055776819586753845, -0.03336707502603531, -0.0936836525797844, 0.20603084564208984, -0.0033683478832244873, -0.42974868416786194, 0.006628898903727531, 0.15482155978679657, 0.19221405684947968, -0.07304496318101883, -0.08640987426042557, -0.44292178750038147, -0.4385754466056824, -0.40330877900123596, 0.2203482687473297, -0.19638533890247345, 0.3476666510105133, -0.25391799211502075, -0.04840502142906189, 0.024263707920908928, -0.10065814852714539, 0.2695053815841675, 0.1647171527147293, 0.22914716601371765, 0.110596664249897, 0.22661995887756348, -0.24429190158843994, 0.13070419430732727, 0.1984192579984665, 0.5014007091522217, 0.049889978021383286, -0.03833119571208954, 0.04114202409982681, -0.09934808313846588, -0.08475775271654129, 0.1514367312192917, -0.07930830866098404, 0.06131284311413765, 0.08193901181221008, 0.17971403896808624, 0.007807188667356968, 0.06768348813056946, 0.191093310713768, 0.07904420047998428, -0.4913080930709839, 0.00012611597776412964, 0.18332332372665405, -0.1703171283006668, -0.12918595969676971, 0.22338254749774933, -0.07339797914028168, -0.06663050502538681, 0.10432832688093185, 0.15409207344055176, 0.9350462555885315, -0.014139235019683838, 0.058612577617168427, 0.29328739643096924, -0.079803965985775, 0.12429782748222351, -0.2610677480697632, 0.09160012751817703, -0.308572918176651, -0.4105004072189331, -0.08249296247959137, -0.13053175806999207, 0.2970247268676758, -0.14368225634098053, -0.1895328313112259, 0.23112767934799194, -0.0813201293349266, 0.11333084106445312, 0.008750002831220627, 0.03075598180294037, -0.40086105465888977, -0.04071492329239845, 0.01718025654554367, 0.2892783284187317, 0.13341988623142242, 0.20583026111125946, -0.12051525712013245, 0.05827419087290764, -0.10158440470695496, -0.24899086356163025, -0.13879992067813873, -0.039493925869464874, -0.19463592767715454, 0.03599635511636734, 0.16839082539081573, -0.1722528636455536, -0.23880907893180847, 0.038397498428821564, 0.21403709053993225, 0.18490250408649445, -0.15437829494476318, 0.15479524433612823, 0.31905168294906616, 0.2688971757888794, 0.10504724830389023, -0.12844356894493103, 0.07145668566226959, -0.12665459513664246, -0.2375257909297943, 0.17874372005462646, -0.03149297088384628, -0.19412989914417267, 0.08989214897155762, 0.20072123408317566, 0.13910531997680664, -0.39492350816726685, -0.05906708911061287, -0.19327202439308167, -0.06835195422172546, -0.2689076364040375, 0.2183004766702652, 0.12494394183158875, -0.1642821729183197, 0.3021155297756195, -0.2200939804315567, -0.381645143032074, -0.19553539156913757, 0.4039522707462311, 0.059818439185619354, -0.055473219603300095, 0.39847618341445923, -0.1549912393093109, -0.3118517994880676, -0.3498164415359497, -0.08506038784980774, -0.20270290970802307, -0.17557567358016968, 0.05849461257457733, -0.03073701076209545, -0.15075963735580444, -0.020298466086387634, 0.5994767546653748, 0.060186974704265594, 0.19920223951339722, 0.02526635304093361, -0.4625312387943268, -0.42742159962654114, -0.061734944581985474, 0.03706744685769081, 0.3987518548965454, -0.15916256606578827, 0.16445614397525787, 0.012947244569659233, -0.004292689263820648, -0.43596765398979187, 0.031307466328144073, -0.4266003370285034, -0.018036898225545883, -0.08434324711561203, 0.023849669843912125, 0.3092130124568939, 0.21308329701423645, 0.29234951734542847, 0.12799608707427979, -0.30219441652297974, -0.3937187194824219, 0.08653353154659271, 0.09008870273828506, -0.14846336841583252, -0.09343032538890839, 0.1611853688955307, 0.1144799292087555, -0.08965542912483215, -0.1671106219291687, 0.13754960894584656, 0.09744145721197128, -0.05776767432689667, -0.0011662635952234268, 0.03317973017692566, 0.11357127875089645, 0.06544121354818344, 0.03810965642333031, -0.12498892843723297, -0.06489604711532593, 0.08184729516506195, 0.06233051419258118, -0.31649965047836304, -0.06265197694301605, 0.21798862516880035, 0.2692120373249054, 0.1765723079442978, -0.25738468766212463, 0.18408872187137604, -0.08021324872970581, -0.28304219245910645, 0.12898407876491547, 0.2626402676105499, 0.10557858645915985, -0.10393302142620087, -0.05853545665740967, -0.00696902722120285, 0.3814464211463928, -0.24597476422786713, 0.062213074415922165, -0.19105800986289978, -0.11888439208269119, 0.3324759006500244, 0.20271265506744385, 0.03767793998122215, -0.49493420124053955, 0.7025297284126282, -0.0032799430191516876, 0.09852687269449234, -0.2750313878059387, 0.06997153162956238, 0.3853769600391388, -0.09488283097743988, 0.06583025306463242, 0.3065243363380432, -0.20568472146987915, 0.0029283538460731506, 0.1775141954421997, -0.12993362545967102, 0.3608565926551819, -0.3100311756134033, 0.22306671738624573, -0.21101057529449463, -0.5824345946311951, 0.43522578477859497, 0.19912779331207275, -0.1894797384738922, -0.1579817831516266, 0.21143674850463867, 0.006730489432811737, 0.12381017208099365, 0.1221541166305542, -0.5876337885856628, 0.054521504789590836, -0.18315264582633972, -0.2643299400806427, 0.04633136838674545, -0.25904372334480286, 0.06537827849388123, 0.08788329362869263, 0.17545495927333832, -0.03460018336772919, 0.14828503131866455, -0.06597074866294861, -0.07132065296173096, -0.2589384913444519, -0.050329938530921936, 0.05690690875053406, -0.019562505185604095, -0.226518452167511, 0.3146122694015503, 0.3966416120529175, 0.10995562374591827, 0.06532835960388184, 0.26924097537994385, 0.4736747443675995, 0.30895155668258667, 0.07838893681764603, 0.11792709678411484, -0.1571085900068283, -0.06981592625379562, -0.29738831520080566, 0.5326287746429443, 0.056090086698532104, 0.12402398884296417, 0.3892194330692291, 0.33868253231048584, -0.35118669271469116, -0.10180355608463287, -0.004990827292203903, -0.2602482736110687, -0.25271090865135193, 0.4092099964618683, 0.04140118509531021, 0.11650843173265457, -0.1890028864145279, 0.08631154149770737, -0.4327796995639801, -0.12798988819122314, -0.12977595627307892, -0.10070309042930603, 0.26383310556411743, -0.047427937388420105, 0.13595466315746307, -0.13304288685321808, 0.3954499065876007, 0.11508388072252274, 0.2237357795238495, -0.35402292013168335, -0.29979121685028076, -0.443930059671402, 0.2721990644931793, 0.11012555658817291, -0.08830752223730087, -0.28892645239830017, 0.4001695513725281, -0.13441091775894165, 0.005416510626673698, 0.3089107275009155, 0.20314213633537292, 0.21907810866832733, 0.012316066771745682, -0.15926919877529144, 0.17761847376823425, -0.16125626862049103, -0.17664110660552979, -0.0006082989275455475, -0.4943605661392212, 0.24998092651367188, 0.01212752889841795, 0.29278966784477234, 0.03693773224949837, -0.08022898435592651, -0.08585919439792633, 0.1793816238641739, 0.2793874442577362, 0.22420385479927063, 0.4025237262248993, -0.26060590147972107, -0.1163613572716713, -0.17698027193546295, 0.11177251487970352, 0.007236148230731487, 0.1602901816368103, 0.17387434840202332, 0.23797091841697693, 0.19372721016407013, -0.002248309552669525, -0.05700988322496414, 0.6293025016784668, 0.3451418876647949, -0.1713215857744217, 0.006119709461927414, 0.24794191122055054, -0.04957638308405876, 0.05936165153980255, -0.02183469757437706, 0.1271129846572876, 0.16174350678920746, 0.22889575362205505, -0.23515881597995758, -0.29199516773223877, 0.3922101855278015, -0.3292052447795868, -0.23996081948280334, -0.16823481023311615, 0.46806830167770386, -0.2205522656440735, -0.0836518332362175, -0.4472202956676483, 0.23536372184753418, 0.33403486013412476, 0.0017696619033813477, -0.10090698301792145, 0.39558759331703186, -0.2101522535085678, 0.04606184735894203, -0.14001600444316864, 0.25752827525138855, 0.15152159333229065, -0.052701279520988464, -0.09237298369407654, -0.29959636926651 ]
https://github.com/huggingface/datasets/issues/3269
coqa NonMatchingChecksumError
I guess it must be some connection issue: the data owner may be blocking requests coming from your country or IP range...
``` >>> from datasets import load_dataset >>> dataset = load_dataset("coqa") Downloading: 3.82kB [00:00, 1.26MB/s] Downloading: 1.79kB [00:00, 733kB/s] Using custom data configuration default Downloading and preparing dataset coqa/default (download: 55.40 MiB, generated: 18.35 MiB, post-processed: Unknown size, total: 73.75 MiB) to /Users/zhaofengw/.cache/huggingface/datasets/coqa/default/1.0.0/553ce70bfdcd15ff4b5f4abc4fc2f37137139cde1f58f4f60384a53a327716f0... Downloading: 100%|█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 222/222 [00:00<00:00, 1.38MB/s] Downloading: 100%|█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 222/222 [00:00<00:00, 1.32MB/s] 100%|█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 2/2 [00:01<00:00, 1.91it/s] 100%|███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 2/2 [00:00<00:00, 1117.44it/s] Traceback (most recent call last): File "<stdin>", line 1, in <module> File "/Users/zhaofengw/miniconda3/lib/python3.9/site-packages/datasets/load.py", line 1632, in load_dataset builder_instance.download_and_prepare( File "/Users/zhaofengw/miniconda3/lib/python3.9/site-packages/datasets/builder.py", line 607, in download_and_prepare self._download_and_prepare( File "/Users/zhaofengw/miniconda3/lib/python3.9/site-packages/datasets/builder.py", line 679, in _download_and_prepare verify_checksums( File "/Users/zhaofengw/miniconda3/lib/python3.9/site-packages/datasets/utils/info_utils.py", line 40, in verify_checksums raise NonMatchingChecksumError(error_msg + str(bad_urls)) datasets.utils.info_utils.NonMatchingChecksumError: Checksums didn't match for dataset source files: ['https://nlp.stanford.edu/data/coqa/coqa-train-v1.0.json', 'https://nlp.stanford.edu/data/coqa/coqa-dev-v1.0.json'] ```
22
coqa NonMatchingChecksumError ``` >>> from datasets import load_dataset >>> dataset = load_dataset("coqa") Downloading: 3.82kB [00:00, 1.26MB/s] Downloading: 1.79kB [00:00, 733kB/s] Using custom data configuration default Downloading and preparing dataset coqa/default (download: 55.40 MiB, generated: 18.35 MiB, post-processed: Unknown size, total: 73.75 MiB) to /Users/zhaofengw/.cache/huggingface/datasets/coqa/default/1.0.0/553ce70bfdcd15ff4b5f4abc4fc2f37137139cde1f58f4f60384a53a327716f0... Downloading: 100%|█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 222/222 [00:00<00:00, 1.38MB/s] Downloading: 100%|█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 222/222 [00:00<00:00, 1.32MB/s] 100%|█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 2/2 [00:01<00:00, 1.91it/s] 100%|███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 2/2 [00:00<00:00, 1117.44it/s] Traceback (most recent call last): File "<stdin>", line 1, in <module> File "/Users/zhaofengw/miniconda3/lib/python3.9/site-packages/datasets/load.py", line 1632, in load_dataset builder_instance.download_and_prepare( File "/Users/zhaofengw/miniconda3/lib/python3.9/site-packages/datasets/builder.py", line 607, in download_and_prepare self._download_and_prepare( File "/Users/zhaofengw/miniconda3/lib/python3.9/site-packages/datasets/builder.py", line 679, in _download_and_prepare verify_checksums( File "/Users/zhaofengw/miniconda3/lib/python3.9/site-packages/datasets/utils/info_utils.py", line 40, in verify_checksums raise NonMatchingChecksumError(error_msg + str(bad_urls)) datasets.utils.info_utils.NonMatchingChecksumError: Checksums didn't match for dataset source files: ['https://nlp.stanford.edu/data/coqa/coqa-train-v1.0.json', 'https://nlp.stanford.edu/data/coqa/coqa-dev-v1.0.json'] ``` I guess it must be some connection issue: the data owner may be blocking requests coming from your country or IP range...
[ -0.2934424877166748, -0.16965605318546295, -0.23772868514060974, 0.1443958878517151, 0.17530269920825958, -0.03220370039343834, 0.10853204131126404, 0.34697225689888, 0.1612992137670517, 0.34507638216018677, -0.12422356754541397, 0.016303548589348793, 0.13270717859268188, 0.3179677724838257, -0.24001473188400269, 0.41088542342185974, -0.03730381280183792, 0.130801722407341, -0.13652393221855164, -0.08464013040065765, -0.16203461587429047, 0.16598115861415863, -0.01582520455121994, -0.21113817393779755, 0.02861746959388256, -0.10914026945829391, 0.10121777653694153, 0.14800600707530975, -0.2446722537279129, -0.28355634212493896, 0.09498230367898941, 0.13728395104408264, -0.2691483199596405, 0.30232828855514526, -0.00010783330799313262, -0.0027384981513023376, 0.3951041102409363, -0.039331186562776566, -0.3947451412677765, 0.14915716648101807, -0.5660779476165771, -0.3265206217765808, -0.04970679432153702, -0.17008115351200104, -0.0475759357213974, 0.23689433932304382, -0.06580795347690582, -0.08954586833715439, 0.2255401611328125, 0.3060496151447296, 0.33020082116127014, 0.5339956283569336, -0.10401947796344757, -0.16375169157981873, 0.07236073911190033, 0.031290773302316666, -0.12435615807771683, 0.2001531571149826, 0.21609294414520264, 0.1913791298866272, -0.27258944511413574, 0.3140356242656708, -0.0051485151052474976, 0.09484364092350006, -0.17975234985351562, -0.14494965970516205, 0.12952551245689392, -0.10418336093425751, 0.5087623596191406, 0.2842763364315033, 0.27493998408317566, -0.176284521818161, -0.2551177740097046, -0.07698702812194824, -0.20052854716777802, -0.3510757386684418, 0.24585279822349548, 0.14968642592430115, -0.340237557888031, -0.17369966208934784, -0.2658529281616211, 0.3822205364704132, 0.03578901290893555, -0.11176595091819763, -0.2776526212692261, -0.06412157416343689, -0.1459256261587143, -0.10768140107393265, 0.19801907241344452, -0.18681031465530396, 0.10265035182237625, -0.10998208820819855, -0.2069360315799713, 0.039076365530490875, -0.5156916379928589, -0.14970144629478455, 0.31265756487846375, 0.37973666191101074, 0.3413914740085602, 0.22981014847755432, 0.18982462584972382, 0.21446359157562256, 0.026291899383068085, -0.021310336887836456, -0.15561148524284363, 0.3892468512058258, 0.011136263608932495, -0.24692974984645844, 0.22724728286266327, 0.3603816330432892, -0.08430300652980804, 0.035563740879297256, 0.09798380732536316, -0.310355007648468, 0.16753895580768585, 0.25340837240219116, 0.06962268054485321, -0.4281231462955475, -0.4341353178024292, 0.149600550532341, 0.1567331850528717, 0.06822070479393005, 0.18170641362667084, 0.5912106037139893, -0.03076007217168808, -0.06389985978603363, -0.16616404056549072, 0.004891406744718552, -0.30665868520736694, -0.1340271681547165, -0.371019572019577, 0.031862448900938034, -0.14453153312206268, -0.007327264174818993, 0.1801055371761322, -0.11212418973445892, 0.23918317258358002, -0.1675238162279129, 0.33850133419036865, -0.021233825013041496, 0.02179025299847126, -0.2919423282146454, 0.0382426381111145, 0.4026385545730591, -0.01665576733648777, 0.04756862670183182, 0.28407829999923706, -0.0009175539016723633, -0.1435098946094513, -0.03872884809970856, -0.03240456432104111, -0.26845183968544006, 0.10987308621406555, 0.3479248583316803, -0.07606720924377441, -0.0021591894328594208, 0.2647094130516052, -0.20924822986125946, 0.3453936278820038, -0.06105532497167587, 0.13540741801261902, 0.01325797289609909, -0.16954652965068817, -0.2886042594909668, 0.16366930305957794, 0.4162479043006897, -0.07393622398376465, 0.032692380249500275, 0.038964398205280304, -0.12756450474262238, 0.17309290170669556, 0.149419367313385, 0.0685000866651535, 0.09921149909496307, -0.21407602727413177, -0.10196132957935333, 0.21608251333236694, -0.3309718668460846, -0.6776994466781616, 0.09962806105613708, 0.045031264424324036, 0.1138063296675682, 0.15592333674430847, 0.021511884406208992, 0.09797555953264236, -0.03561897203326225, 0.07381267100572586, -0.0027298852801322937, 0.031051501631736755, 0.11351162940263748, -0.39217624068260193, -0.31785261631011963, -0.009648721665143967, 0.10581538081169128, 0.16304001212120056, -0.05722411721944809, 0.29456934332847595, -0.45781758427619934, 0.20404884219169617, -0.09221106767654419, -0.011318291537463665, 0.12655538320541382, 0.18324358761310577, -0.20327387750148773, -0.04442282021045685, 0.004791315644979477, -0.2321658432483673, 0.2732808291912079, -0.44594860076904297, 0.06045011430978775, -0.18885435163974762, -0.26077142357826233, -0.3654577136039734, -0.0270660612732172, -0.21089313924312592, -0.14423216879367828, 0.30756711959838867, 0.273681640625, 0.27484431862831116, 0.07274362444877625, 0.11723446846008301, 0.40884360671043396, -0.1587977558374405, -0.04461226612329483, -0.31232354044914246, 0.043137192726135254, -0.09874071925878525, -0.07750507444143295, -0.03355168551206589, 0.3281101882457733, 0.15009266138076782, -0.022737614810466766, -0.07894660532474518, 0.30079612135887146, 0.17490367591381073, 0.1836465299129486, -0.08949295431375504, 0.127378910779953, -0.0025923699140548706, 0.049132224172353745, 0.0637911930680275, 0.16952727735042572, 0.07616879045963287, -0.014355748891830444, -0.21904432773590088, 0.49147361516952515, -0.1414717584848404, 0.17851026356220245, 0.1221497654914856, -0.14977209270000458, 0.24572929739952087, -0.15667659044265747, -0.11089283972978592, -0.11869918555021286, 0.23188894987106323, 0.17755544185638428, 0.04459628090262413, 0.10382231324911118, -0.11840202659368515, 0.113840252161026, 0.3319092392921448, -0.06497618556022644, 0.0596817247569561, 0.1184130534529686, 0.09951990842819214, -0.09228239208459854, 0.07496040314435959, 0.3611769676208496, 0.4361034631729126, 0.19483688473701477, 0.17049480974674225, -0.05781761556863785, -0.00705199409276247, -0.16996005177497864, 0.12952379882335663, 0.12153053283691406, -0.03822976350784302, 0.4889443516731262, 0.23847328126430511, -0.19473984837532043, -0.48423442244529724, -0.17633193731307983, -0.07251535356044769, 0.20507536828517914, -0.29004234075546265, 0.048694491386413574, -0.17661550641059875, -0.24514919519424438, 0.018816251307725906, -0.23127946257591248, 0.0636468231678009, -0.40280500054359436, 0.12155710905790329, 0.18837758898735046, -0.06813565641641617, 0.24740423262119293, -0.3666554391384125, 0.17079229652881622, 0.20224541425704956, -0.23210398852825165, -0.1817013919353485, 0.2013235241174698, -0.10452926903963089, 0.2084091603755951, 0.18242862820625305, 0.049002859741449356, 0.5008370280265808, -0.33716222643852234, 0.0265551395714283, -0.2955659031867981, -0.22314369678497314, -0.04286115616559982, -0.0206168070435524, 0.02589571662247181, 0.23955890536308289, 0.1678852140903473, -0.09732411056756973, -0.16121135652065277, 0.1723998636007309, -0.03255085274577141, -0.42428526282310486, 0.07566442340612411, -0.20237238705158234, 0.07886164635419846, -0.18486922979354858, -0.041290752589702606, -0.2166948914527893, -0.4261755645275116, 0.10516571998596191, 0.1664564609527588, 0.21152444183826447, 0.28348469734191895, 0.030940603464841843, 0.18370208144187927, 0.06931445002555847, 0.2948223650455475, -0.35511231422424316, -0.6185640692710876, 0.30382198095321655, -0.11850994825363159, -0.3948781490325928, -0.0802287831902504, -0.29940736293792725, 0.5251651406288147, -0.05346399173140526, -0.25605493783950806, -0.2709777355194092, -0.43960779905319214, 0.19161812961101532, 0.058311913162469864, -0.09370128065347672, 0.4126143455505371, -0.019693177193403244, -0.30627769231796265, -0.05406895652413368, -0.1069871336221695, 0.10140863060951233, -0.07748894393444061, 0.2577381432056427, -0.22634556889533997, 0.4307520091533661, 0.0870751142501831, 0.37161386013031006, 0.39679551124572754, -0.04324616864323616, 0.2767592668533325, -0.0012930259108543396, 0.366716593503952, -0.29272159934043884, -0.3451104760169983, 0.11048631370067596, -0.010120302438735962, -0.10813893377780914, 0.17037226259708405, -0.049006424844264984, 0.1882525533437729, -0.0010115094482898712, -0.04595613479614258, -0.3217918574810028, -0.2026652693748474, -0.029957303777337074, -0.011170759797096252, 0.20619788765907288, -0.0590057373046875, 0.1796014904975891, -0.07419231534004211, -0.05333031713962555, 0.07544931769371033, 0.23053954541683197, -0.1735401153564453, -0.22238445281982422, -0.17990374565124512, 0.02114269882440567, -0.5448867082595825, 0.3739597797393799, 0.14488767087459564, 0.19165657460689545, -0.18221527338027954, -0.21478384733200073, 0.2275918871164322, -0.27609628438949585, 0.5989823937416077, 0.019277457147836685, 0.06914625316858292, 0.061302151530981064, -0.0501546785235405, -0.10577737540006638, -0.055776819586753845, -0.03336707502603531, -0.0936836525797844, 0.20603084564208984, -0.0033683478832244873, -0.42974868416786194, 0.006628898903727531, 0.15482155978679657, 0.19221405684947968, -0.07304496318101883, -0.08640987426042557, -0.44292178750038147, -0.4385754466056824, -0.40330877900123596, 0.2203482687473297, -0.19638533890247345, 0.3476666510105133, -0.25391799211502075, -0.04840502142906189, 0.024263707920908928, -0.10065814852714539, 0.2695053815841675, 0.1647171527147293, 0.22914716601371765, 0.110596664249897, 0.22661995887756348, -0.24429190158843994, 0.13070419430732727, 0.1984192579984665, 0.5014007091522217, 0.049889978021383286, -0.03833119571208954, 0.04114202409982681, -0.09934808313846588, -0.08475775271654129, 0.1514367312192917, -0.07930830866098404, 0.06131284311413765, 0.08193901181221008, 0.17971403896808624, 0.007807188667356968, 0.06768348813056946, 0.191093310713768, 0.07904420047998428, -0.4913080930709839, 0.00012611597776412964, 0.18332332372665405, -0.1703171283006668, -0.12918595969676971, 0.22338254749774933, -0.07339797914028168, -0.06663050502538681, 0.10432832688093185, 0.15409207344055176, 0.9350462555885315, -0.014139235019683838, 0.058612577617168427, 0.29328739643096924, -0.079803965985775, 0.12429782748222351, -0.2610677480697632, 0.09160012751817703, -0.308572918176651, -0.4105004072189331, -0.08249296247959137, -0.13053175806999207, 0.2970247268676758, -0.14368225634098053, -0.1895328313112259, 0.23112767934799194, -0.0813201293349266, 0.11333084106445312, 0.008750002831220627, 0.03075598180294037, -0.40086105465888977, -0.04071492329239845, 0.01718025654554367, 0.2892783284187317, 0.13341988623142242, 0.20583026111125946, -0.12051525712013245, 0.05827419087290764, -0.10158440470695496, -0.24899086356163025, -0.13879992067813873, -0.039493925869464874, -0.19463592767715454, 0.03599635511636734, 0.16839082539081573, -0.1722528636455536, -0.23880907893180847, 0.038397498428821564, 0.21403709053993225, 0.18490250408649445, -0.15437829494476318, 0.15479524433612823, 0.31905168294906616, 0.2688971757888794, 0.10504724830389023, -0.12844356894493103, 0.07145668566226959, -0.12665459513664246, -0.2375257909297943, 0.17874372005462646, -0.03149297088384628, -0.19412989914417267, 0.08989214897155762, 0.20072123408317566, 0.13910531997680664, -0.39492350816726685, -0.05906708911061287, -0.19327202439308167, -0.06835195422172546, -0.2689076364040375, 0.2183004766702652, 0.12494394183158875, -0.1642821729183197, 0.3021155297756195, -0.2200939804315567, -0.381645143032074, -0.19553539156913757, 0.4039522707462311, 0.059818439185619354, -0.055473219603300095, 0.39847618341445923, -0.1549912393093109, -0.3118517994880676, -0.3498164415359497, -0.08506038784980774, -0.20270290970802307, -0.17557567358016968, 0.05849461257457733, -0.03073701076209545, -0.15075963735580444, -0.020298466086387634, 0.5994767546653748, 0.060186974704265594, 0.19920223951339722, 0.02526635304093361, -0.4625312387943268, -0.42742159962654114, -0.061734944581985474, 0.03706744685769081, 0.3987518548965454, -0.15916256606578827, 0.16445614397525787, 0.012947244569659233, -0.004292689263820648, -0.43596765398979187, 0.031307466328144073, -0.4266003370285034, -0.018036898225545883, -0.08434324711561203, 0.023849669843912125, 0.3092130124568939, 0.21308329701423645, 0.29234951734542847, 0.12799608707427979, -0.30219441652297974, -0.3937187194824219, 0.08653353154659271, 0.09008870273828506, -0.14846336841583252, -0.09343032538890839, 0.1611853688955307, 0.1144799292087555, -0.08965542912483215, -0.1671106219291687, 0.13754960894584656, 0.09744145721197128, -0.05776767432689667, -0.0011662635952234268, 0.03317973017692566, 0.11357127875089645, 0.06544121354818344, 0.03810965642333031, -0.12498892843723297, -0.06489604711532593, 0.08184729516506195, 0.06233051419258118, -0.31649965047836304, -0.06265197694301605, 0.21798862516880035, 0.2692120373249054, 0.1765723079442978, -0.25738468766212463, 0.18408872187137604, -0.08021324872970581, -0.28304219245910645, 0.12898407876491547, 0.2626402676105499, 0.10557858645915985, -0.10393302142620087, -0.05853545665740967, -0.00696902722120285, 0.3814464211463928, -0.24597476422786713, 0.062213074415922165, -0.19105800986289978, -0.11888439208269119, 0.3324759006500244, 0.20271265506744385, 0.03767793998122215, -0.49493420124053955, 0.7025297284126282, -0.0032799430191516876, 0.09852687269449234, -0.2750313878059387, 0.06997153162956238, 0.3853769600391388, -0.09488283097743988, 0.06583025306463242, 0.3065243363380432, -0.20568472146987915, 0.0029283538460731506, 0.1775141954421997, -0.12993362545967102, 0.3608565926551819, -0.3100311756134033, 0.22306671738624573, -0.21101057529449463, -0.5824345946311951, 0.43522578477859497, 0.19912779331207275, -0.1894797384738922, -0.1579817831516266, 0.21143674850463867, 0.006730489432811737, 0.12381017208099365, 0.1221541166305542, -0.5876337885856628, 0.054521504789590836, -0.18315264582633972, -0.2643299400806427, 0.04633136838674545, -0.25904372334480286, 0.06537827849388123, 0.08788329362869263, 0.17545495927333832, -0.03460018336772919, 0.14828503131866455, -0.06597074866294861, -0.07132065296173096, -0.2589384913444519, -0.050329938530921936, 0.05690690875053406, -0.019562505185604095, -0.226518452167511, 0.3146122694015503, 0.3966416120529175, 0.10995562374591827, 0.06532835960388184, 0.26924097537994385, 0.4736747443675995, 0.30895155668258667, 0.07838893681764603, 0.11792709678411484, -0.1571085900068283, -0.06981592625379562, -0.29738831520080566, 0.5326287746429443, 0.056090086698532104, 0.12402398884296417, 0.3892194330692291, 0.33868253231048584, -0.35118669271469116, -0.10180355608463287, -0.004990827292203903, -0.2602482736110687, -0.25271090865135193, 0.4092099964618683, 0.04140118509531021, 0.11650843173265457, -0.1890028864145279, 0.08631154149770737, -0.4327796995639801, -0.12798988819122314, -0.12977595627307892, -0.10070309042930603, 0.26383310556411743, -0.047427937388420105, 0.13595466315746307, -0.13304288685321808, 0.3954499065876007, 0.11508388072252274, 0.2237357795238495, -0.35402292013168335, -0.29979121685028076, -0.443930059671402, 0.2721990644931793, 0.11012555658817291, -0.08830752223730087, -0.28892645239830017, 0.4001695513725281, -0.13441091775894165, 0.005416510626673698, 0.3089107275009155, 0.20314213633537292, 0.21907810866832733, 0.012316066771745682, -0.15926919877529144, 0.17761847376823425, -0.16125626862049103, -0.17664110660552979, -0.0006082989275455475, -0.4943605661392212, 0.24998092651367188, 0.01212752889841795, 0.29278966784477234, 0.03693773224949837, -0.08022898435592651, -0.08585919439792633, 0.1793816238641739, 0.2793874442577362, 0.22420385479927063, 0.4025237262248993, -0.26060590147972107, -0.1163613572716713, -0.17698027193546295, 0.11177251487970352, 0.007236148230731487, 0.1602901816368103, 0.17387434840202332, 0.23797091841697693, 0.19372721016407013, -0.002248309552669525, -0.05700988322496414, 0.6293025016784668, 0.3451418876647949, -0.1713215857744217, 0.006119709461927414, 0.24794191122055054, -0.04957638308405876, 0.05936165153980255, -0.02183469757437706, 0.1271129846572876, 0.16174350678920746, 0.22889575362205505, -0.23515881597995758, -0.29199516773223877, 0.3922101855278015, -0.3292052447795868, -0.23996081948280334, -0.16823481023311615, 0.46806830167770386, -0.2205522656440735, -0.0836518332362175, -0.4472202956676483, 0.23536372184753418, 0.33403486013412476, 0.0017696619033813477, -0.10090698301792145, 0.39558759331703186, -0.2101522535085678, 0.04606184735894203, -0.14001600444316864, 0.25752827525138855, 0.15152159333229065, -0.052701279520988464, -0.09237298369407654, -0.29959636926651 ]
https://github.com/huggingface/datasets/issues/3269
coqa NonMatchingChecksumError
I mean, I don't think google colab sends the connection from my IP. Same applies to google cloud.
``` >>> from datasets import load_dataset >>> dataset = load_dataset("coqa") Downloading: 3.82kB [00:00, 1.26MB/s] Downloading: 1.79kB [00:00, 733kB/s] Using custom data configuration default Downloading and preparing dataset coqa/default (download: 55.40 MiB, generated: 18.35 MiB, post-processed: Unknown size, total: 73.75 MiB) to /Users/zhaofengw/.cache/huggingface/datasets/coqa/default/1.0.0/553ce70bfdcd15ff4b5f4abc4fc2f37137139cde1f58f4f60384a53a327716f0... Downloading: 100%|█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 222/222 [00:00<00:00, 1.38MB/s] Downloading: 100%|█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 222/222 [00:00<00:00, 1.32MB/s] 100%|█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 2/2 [00:01<00:00, 1.91it/s] 100%|███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 2/2 [00:00<00:00, 1117.44it/s] Traceback (most recent call last): File "<stdin>", line 1, in <module> File "/Users/zhaofengw/miniconda3/lib/python3.9/site-packages/datasets/load.py", line 1632, in load_dataset builder_instance.download_and_prepare( File "/Users/zhaofengw/miniconda3/lib/python3.9/site-packages/datasets/builder.py", line 607, in download_and_prepare self._download_and_prepare( File "/Users/zhaofengw/miniconda3/lib/python3.9/site-packages/datasets/builder.py", line 679, in _download_and_prepare verify_checksums( File "/Users/zhaofengw/miniconda3/lib/python3.9/site-packages/datasets/utils/info_utils.py", line 40, in verify_checksums raise NonMatchingChecksumError(error_msg + str(bad_urls)) datasets.utils.info_utils.NonMatchingChecksumError: Checksums didn't match for dataset source files: ['https://nlp.stanford.edu/data/coqa/coqa-train-v1.0.json', 'https://nlp.stanford.edu/data/coqa/coqa-dev-v1.0.json'] ```
18
coqa NonMatchingChecksumError ``` >>> from datasets import load_dataset >>> dataset = load_dataset("coqa") Downloading: 3.82kB [00:00, 1.26MB/s] Downloading: 1.79kB [00:00, 733kB/s] Using custom data configuration default Downloading and preparing dataset coqa/default (download: 55.40 MiB, generated: 18.35 MiB, post-processed: Unknown size, total: 73.75 MiB) to /Users/zhaofengw/.cache/huggingface/datasets/coqa/default/1.0.0/553ce70bfdcd15ff4b5f4abc4fc2f37137139cde1f58f4f60384a53a327716f0... Downloading: 100%|█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 222/222 [00:00<00:00, 1.38MB/s] Downloading: 100%|█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 222/222 [00:00<00:00, 1.32MB/s] 100%|█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 2/2 [00:01<00:00, 1.91it/s] 100%|███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 2/2 [00:00<00:00, 1117.44it/s] Traceback (most recent call last): File "<stdin>", line 1, in <module> File "/Users/zhaofengw/miniconda3/lib/python3.9/site-packages/datasets/load.py", line 1632, in load_dataset builder_instance.download_and_prepare( File "/Users/zhaofengw/miniconda3/lib/python3.9/site-packages/datasets/builder.py", line 607, in download_and_prepare self._download_and_prepare( File "/Users/zhaofengw/miniconda3/lib/python3.9/site-packages/datasets/builder.py", line 679, in _download_and_prepare verify_checksums( File "/Users/zhaofengw/miniconda3/lib/python3.9/site-packages/datasets/utils/info_utils.py", line 40, in verify_checksums raise NonMatchingChecksumError(error_msg + str(bad_urls)) datasets.utils.info_utils.NonMatchingChecksumError: Checksums didn't match for dataset source files: ['https://nlp.stanford.edu/data/coqa/coqa-train-v1.0.json', 'https://nlp.stanford.edu/data/coqa/coqa-dev-v1.0.json'] ``` I mean, I don't think google colab sends the connection from my IP. Same applies to google cloud.
[ -0.2934424877166748, -0.16965605318546295, -0.23772868514060974, 0.1443958878517151, 0.17530269920825958, -0.03220370039343834, 0.10853204131126404, 0.34697225689888, 0.1612992137670517, 0.34507638216018677, -0.12422356754541397, 0.016303548589348793, 0.13270717859268188, 0.3179677724838257, -0.24001473188400269, 0.41088542342185974, -0.03730381280183792, 0.130801722407341, -0.13652393221855164, -0.08464013040065765, -0.16203461587429047, 0.16598115861415863, -0.01582520455121994, -0.21113817393779755, 0.02861746959388256, -0.10914026945829391, 0.10121777653694153, 0.14800600707530975, -0.2446722537279129, -0.28355634212493896, 0.09498230367898941, 0.13728395104408264, -0.2691483199596405, 0.30232828855514526, -0.00010783330799313262, -0.0027384981513023376, 0.3951041102409363, -0.039331186562776566, -0.3947451412677765, 0.14915716648101807, -0.5660779476165771, -0.3265206217765808, -0.04970679432153702, -0.17008115351200104, -0.0475759357213974, 0.23689433932304382, -0.06580795347690582, -0.08954586833715439, 0.2255401611328125, 0.3060496151447296, 0.33020082116127014, 0.5339956283569336, -0.10401947796344757, -0.16375169157981873, 0.07236073911190033, 0.031290773302316666, -0.12435615807771683, 0.2001531571149826, 0.21609294414520264, 0.1913791298866272, -0.27258944511413574, 0.3140356242656708, -0.0051485151052474976, 0.09484364092350006, -0.17975234985351562, -0.14494965970516205, 0.12952551245689392, -0.10418336093425751, 0.5087623596191406, 0.2842763364315033, 0.27493998408317566, -0.176284521818161, -0.2551177740097046, -0.07698702812194824, -0.20052854716777802, -0.3510757386684418, 0.24585279822349548, 0.14968642592430115, -0.340237557888031, -0.17369966208934784, -0.2658529281616211, 0.3822205364704132, 0.03578901290893555, -0.11176595091819763, -0.2776526212692261, -0.06412157416343689, -0.1459256261587143, -0.10768140107393265, 0.19801907241344452, -0.18681031465530396, 0.10265035182237625, -0.10998208820819855, -0.2069360315799713, 0.039076365530490875, -0.5156916379928589, -0.14970144629478455, 0.31265756487846375, 0.37973666191101074, 0.3413914740085602, 0.22981014847755432, 0.18982462584972382, 0.21446359157562256, 0.026291899383068085, -0.021310336887836456, -0.15561148524284363, 0.3892468512058258, 0.011136263608932495, -0.24692974984645844, 0.22724728286266327, 0.3603816330432892, -0.08430300652980804, 0.035563740879297256, 0.09798380732536316, -0.310355007648468, 0.16753895580768585, 0.25340837240219116, 0.06962268054485321, -0.4281231462955475, -0.4341353178024292, 0.149600550532341, 0.1567331850528717, 0.06822070479393005, 0.18170641362667084, 0.5912106037139893, -0.03076007217168808, -0.06389985978603363, -0.16616404056549072, 0.004891406744718552, -0.30665868520736694, -0.1340271681547165, -0.371019572019577, 0.031862448900938034, -0.14453153312206268, -0.007327264174818993, 0.1801055371761322, -0.11212418973445892, 0.23918317258358002, -0.1675238162279129, 0.33850133419036865, -0.021233825013041496, 0.02179025299847126, -0.2919423282146454, 0.0382426381111145, 0.4026385545730591, -0.01665576733648777, 0.04756862670183182, 0.28407829999923706, -0.0009175539016723633, -0.1435098946094513, -0.03872884809970856, -0.03240456432104111, -0.26845183968544006, 0.10987308621406555, 0.3479248583316803, -0.07606720924377441, -0.0021591894328594208, 0.2647094130516052, -0.20924822986125946, 0.3453936278820038, -0.06105532497167587, 0.13540741801261902, 0.01325797289609909, -0.16954652965068817, -0.2886042594909668, 0.16366930305957794, 0.4162479043006897, -0.07393622398376465, 0.032692380249500275, 0.038964398205280304, -0.12756450474262238, 0.17309290170669556, 0.149419367313385, 0.0685000866651535, 0.09921149909496307, -0.21407602727413177, -0.10196132957935333, 0.21608251333236694, -0.3309718668460846, -0.6776994466781616, 0.09962806105613708, 0.045031264424324036, 0.1138063296675682, 0.15592333674430847, 0.021511884406208992, 0.09797555953264236, -0.03561897203326225, 0.07381267100572586, -0.0027298852801322937, 0.031051501631736755, 0.11351162940263748, -0.39217624068260193, -0.31785261631011963, -0.009648721665143967, 0.10581538081169128, 0.16304001212120056, -0.05722411721944809, 0.29456934332847595, -0.45781758427619934, 0.20404884219169617, -0.09221106767654419, -0.011318291537463665, 0.12655538320541382, 0.18324358761310577, -0.20327387750148773, -0.04442282021045685, 0.004791315644979477, -0.2321658432483673, 0.2732808291912079, -0.44594860076904297, 0.06045011430978775, -0.18885435163974762, -0.26077142357826233, -0.3654577136039734, -0.0270660612732172, -0.21089313924312592, -0.14423216879367828, 0.30756711959838867, 0.273681640625, 0.27484431862831116, 0.07274362444877625, 0.11723446846008301, 0.40884360671043396, -0.1587977558374405, -0.04461226612329483, -0.31232354044914246, 0.043137192726135254, -0.09874071925878525, -0.07750507444143295, -0.03355168551206589, 0.3281101882457733, 0.15009266138076782, -0.022737614810466766, -0.07894660532474518, 0.30079612135887146, 0.17490367591381073, 0.1836465299129486, -0.08949295431375504, 0.127378910779953, -0.0025923699140548706, 0.049132224172353745, 0.0637911930680275, 0.16952727735042572, 0.07616879045963287, -0.014355748891830444, -0.21904432773590088, 0.49147361516952515, -0.1414717584848404, 0.17851026356220245, 0.1221497654914856, -0.14977209270000458, 0.24572929739952087, -0.15667659044265747, -0.11089283972978592, -0.11869918555021286, 0.23188894987106323, 0.17755544185638428, 0.04459628090262413, 0.10382231324911118, -0.11840202659368515, 0.113840252161026, 0.3319092392921448, -0.06497618556022644, 0.0596817247569561, 0.1184130534529686, 0.09951990842819214, -0.09228239208459854, 0.07496040314435959, 0.3611769676208496, 0.4361034631729126, 0.19483688473701477, 0.17049480974674225, -0.05781761556863785, -0.00705199409276247, -0.16996005177497864, 0.12952379882335663, 0.12153053283691406, -0.03822976350784302, 0.4889443516731262, 0.23847328126430511, -0.19473984837532043, -0.48423442244529724, -0.17633193731307983, -0.07251535356044769, 0.20507536828517914, -0.29004234075546265, 0.048694491386413574, -0.17661550641059875, -0.24514919519424438, 0.018816251307725906, -0.23127946257591248, 0.0636468231678009, -0.40280500054359436, 0.12155710905790329, 0.18837758898735046, -0.06813565641641617, 0.24740423262119293, -0.3666554391384125, 0.17079229652881622, 0.20224541425704956, -0.23210398852825165, -0.1817013919353485, 0.2013235241174698, -0.10452926903963089, 0.2084091603755951, 0.18242862820625305, 0.049002859741449356, 0.5008370280265808, -0.33716222643852234, 0.0265551395714283, -0.2955659031867981, -0.22314369678497314, -0.04286115616559982, -0.0206168070435524, 0.02589571662247181, 0.23955890536308289, 0.1678852140903473, -0.09732411056756973, -0.16121135652065277, 0.1723998636007309, -0.03255085274577141, -0.42428526282310486, 0.07566442340612411, -0.20237238705158234, 0.07886164635419846, -0.18486922979354858, -0.041290752589702606, -0.2166948914527893, -0.4261755645275116, 0.10516571998596191, 0.1664564609527588, 0.21152444183826447, 0.28348469734191895, 0.030940603464841843, 0.18370208144187927, 0.06931445002555847, 0.2948223650455475, -0.35511231422424316, -0.6185640692710876, 0.30382198095321655, -0.11850994825363159, -0.3948781490325928, -0.0802287831902504, -0.29940736293792725, 0.5251651406288147, -0.05346399173140526, -0.25605493783950806, -0.2709777355194092, -0.43960779905319214, 0.19161812961101532, 0.058311913162469864, -0.09370128065347672, 0.4126143455505371, -0.019693177193403244, -0.30627769231796265, -0.05406895652413368, -0.1069871336221695, 0.10140863060951233, -0.07748894393444061, 0.2577381432056427, -0.22634556889533997, 0.4307520091533661, 0.0870751142501831, 0.37161386013031006, 0.39679551124572754, -0.04324616864323616, 0.2767592668533325, -0.0012930259108543396, 0.366716593503952, -0.29272159934043884, -0.3451104760169983, 0.11048631370067596, -0.010120302438735962, -0.10813893377780914, 0.17037226259708405, -0.049006424844264984, 0.1882525533437729, -0.0010115094482898712, -0.04595613479614258, -0.3217918574810028, -0.2026652693748474, -0.029957303777337074, -0.011170759797096252, 0.20619788765907288, -0.0590057373046875, 0.1796014904975891, -0.07419231534004211, -0.05333031713962555, 0.07544931769371033, 0.23053954541683197, -0.1735401153564453, -0.22238445281982422, -0.17990374565124512, 0.02114269882440567, -0.5448867082595825, 0.3739597797393799, 0.14488767087459564, 0.19165657460689545, -0.18221527338027954, -0.21478384733200073, 0.2275918871164322, -0.27609628438949585, 0.5989823937416077, 0.019277457147836685, 0.06914625316858292, 0.061302151530981064, -0.0501546785235405, -0.10577737540006638, -0.055776819586753845, -0.03336707502603531, -0.0936836525797844, 0.20603084564208984, -0.0033683478832244873, -0.42974868416786194, 0.006628898903727531, 0.15482155978679657, 0.19221405684947968, -0.07304496318101883, -0.08640987426042557, -0.44292178750038147, -0.4385754466056824, -0.40330877900123596, 0.2203482687473297, -0.19638533890247345, 0.3476666510105133, -0.25391799211502075, -0.04840502142906189, 0.024263707920908928, -0.10065814852714539, 0.2695053815841675, 0.1647171527147293, 0.22914716601371765, 0.110596664249897, 0.22661995887756348, -0.24429190158843994, 0.13070419430732727, 0.1984192579984665, 0.5014007091522217, 0.049889978021383286, -0.03833119571208954, 0.04114202409982681, -0.09934808313846588, -0.08475775271654129, 0.1514367312192917, -0.07930830866098404, 0.06131284311413765, 0.08193901181221008, 0.17971403896808624, 0.007807188667356968, 0.06768348813056946, 0.191093310713768, 0.07904420047998428, -0.4913080930709839, 0.00012611597776412964, 0.18332332372665405, -0.1703171283006668, -0.12918595969676971, 0.22338254749774933, -0.07339797914028168, -0.06663050502538681, 0.10432832688093185, 0.15409207344055176, 0.9350462555885315, -0.014139235019683838, 0.058612577617168427, 0.29328739643096924, -0.079803965985775, 0.12429782748222351, -0.2610677480697632, 0.09160012751817703, -0.308572918176651, -0.4105004072189331, -0.08249296247959137, -0.13053175806999207, 0.2970247268676758, -0.14368225634098053, -0.1895328313112259, 0.23112767934799194, -0.0813201293349266, 0.11333084106445312, 0.008750002831220627, 0.03075598180294037, -0.40086105465888977, -0.04071492329239845, 0.01718025654554367, 0.2892783284187317, 0.13341988623142242, 0.20583026111125946, -0.12051525712013245, 0.05827419087290764, -0.10158440470695496, -0.24899086356163025, -0.13879992067813873, -0.039493925869464874, -0.19463592767715454, 0.03599635511636734, 0.16839082539081573, -0.1722528636455536, -0.23880907893180847, 0.038397498428821564, 0.21403709053993225, 0.18490250408649445, -0.15437829494476318, 0.15479524433612823, 0.31905168294906616, 0.2688971757888794, 0.10504724830389023, -0.12844356894493103, 0.07145668566226959, -0.12665459513664246, -0.2375257909297943, 0.17874372005462646, -0.03149297088384628, -0.19412989914417267, 0.08989214897155762, 0.20072123408317566, 0.13910531997680664, -0.39492350816726685, -0.05906708911061287, -0.19327202439308167, -0.06835195422172546, -0.2689076364040375, 0.2183004766702652, 0.12494394183158875, -0.1642821729183197, 0.3021155297756195, -0.2200939804315567, -0.381645143032074, -0.19553539156913757, 0.4039522707462311, 0.059818439185619354, -0.055473219603300095, 0.39847618341445923, -0.1549912393093109, -0.3118517994880676, -0.3498164415359497, -0.08506038784980774, -0.20270290970802307, -0.17557567358016968, 0.05849461257457733, -0.03073701076209545, -0.15075963735580444, -0.020298466086387634, 0.5994767546653748, 0.060186974704265594, 0.19920223951339722, 0.02526635304093361, -0.4625312387943268, -0.42742159962654114, -0.061734944581985474, 0.03706744685769081, 0.3987518548965454, -0.15916256606578827, 0.16445614397525787, 0.012947244569659233, -0.004292689263820648, -0.43596765398979187, 0.031307466328144073, -0.4266003370285034, -0.018036898225545883, -0.08434324711561203, 0.023849669843912125, 0.3092130124568939, 0.21308329701423645, 0.29234951734542847, 0.12799608707427979, -0.30219441652297974, -0.3937187194824219, 0.08653353154659271, 0.09008870273828506, -0.14846336841583252, -0.09343032538890839, 0.1611853688955307, 0.1144799292087555, -0.08965542912483215, -0.1671106219291687, 0.13754960894584656, 0.09744145721197128, -0.05776767432689667, -0.0011662635952234268, 0.03317973017692566, 0.11357127875089645, 0.06544121354818344, 0.03810965642333031, -0.12498892843723297, -0.06489604711532593, 0.08184729516506195, 0.06233051419258118, -0.31649965047836304, -0.06265197694301605, 0.21798862516880035, 0.2692120373249054, 0.1765723079442978, -0.25738468766212463, 0.18408872187137604, -0.08021324872970581, -0.28304219245910645, 0.12898407876491547, 0.2626402676105499, 0.10557858645915985, -0.10393302142620087, -0.05853545665740967, -0.00696902722120285, 0.3814464211463928, -0.24597476422786713, 0.062213074415922165, -0.19105800986289978, -0.11888439208269119, 0.3324759006500244, 0.20271265506744385, 0.03767793998122215, -0.49493420124053955, 0.7025297284126282, -0.0032799430191516876, 0.09852687269449234, -0.2750313878059387, 0.06997153162956238, 0.3853769600391388, -0.09488283097743988, 0.06583025306463242, 0.3065243363380432, -0.20568472146987915, 0.0029283538460731506, 0.1775141954421997, -0.12993362545967102, 0.3608565926551819, -0.3100311756134033, 0.22306671738624573, -0.21101057529449463, -0.5824345946311951, 0.43522578477859497, 0.19912779331207275, -0.1894797384738922, -0.1579817831516266, 0.21143674850463867, 0.006730489432811737, 0.12381017208099365, 0.1221541166305542, -0.5876337885856628, 0.054521504789590836, -0.18315264582633972, -0.2643299400806427, 0.04633136838674545, -0.25904372334480286, 0.06537827849388123, 0.08788329362869263, 0.17545495927333832, -0.03460018336772919, 0.14828503131866455, -0.06597074866294861, -0.07132065296173096, -0.2589384913444519, -0.050329938530921936, 0.05690690875053406, -0.019562505185604095, -0.226518452167511, 0.3146122694015503, 0.3966416120529175, 0.10995562374591827, 0.06532835960388184, 0.26924097537994385, 0.4736747443675995, 0.30895155668258667, 0.07838893681764603, 0.11792709678411484, -0.1571085900068283, -0.06981592625379562, -0.29738831520080566, 0.5326287746429443, 0.056090086698532104, 0.12402398884296417, 0.3892194330692291, 0.33868253231048584, -0.35118669271469116, -0.10180355608463287, -0.004990827292203903, -0.2602482736110687, -0.25271090865135193, 0.4092099964618683, 0.04140118509531021, 0.11650843173265457, -0.1890028864145279, 0.08631154149770737, -0.4327796995639801, -0.12798988819122314, -0.12977595627307892, -0.10070309042930603, 0.26383310556411743, -0.047427937388420105, 0.13595466315746307, -0.13304288685321808, 0.3954499065876007, 0.11508388072252274, 0.2237357795238495, -0.35402292013168335, -0.29979121685028076, -0.443930059671402, 0.2721990644931793, 0.11012555658817291, -0.08830752223730087, -0.28892645239830017, 0.4001695513725281, -0.13441091775894165, 0.005416510626673698, 0.3089107275009155, 0.20314213633537292, 0.21907810866832733, 0.012316066771745682, -0.15926919877529144, 0.17761847376823425, -0.16125626862049103, -0.17664110660552979, -0.0006082989275455475, -0.4943605661392212, 0.24998092651367188, 0.01212752889841795, 0.29278966784477234, 0.03693773224949837, -0.08022898435592651, -0.08585919439792633, 0.1793816238641739, 0.2793874442577362, 0.22420385479927063, 0.4025237262248993, -0.26060590147972107, -0.1163613572716713, -0.17698027193546295, 0.11177251487970352, 0.007236148230731487, 0.1602901816368103, 0.17387434840202332, 0.23797091841697693, 0.19372721016407013, -0.002248309552669525, -0.05700988322496414, 0.6293025016784668, 0.3451418876647949, -0.1713215857744217, 0.006119709461927414, 0.24794191122055054, -0.04957638308405876, 0.05936165153980255, -0.02183469757437706, 0.1271129846572876, 0.16174350678920746, 0.22889575362205505, -0.23515881597995758, -0.29199516773223877, 0.3922101855278015, -0.3292052447795868, -0.23996081948280334, -0.16823481023311615, 0.46806830167770386, -0.2205522656440735, -0.0836518332362175, -0.4472202956676483, 0.23536372184753418, 0.33403486013412476, 0.0017696619033813477, -0.10090698301792145, 0.39558759331703186, -0.2101522535085678, 0.04606184735894203, -0.14001600444316864, 0.25752827525138855, 0.15152159333229065, -0.052701279520988464, -0.09237298369407654, -0.29959636926651 ]
https://github.com/huggingface/datasets/issues/3269
coqa NonMatchingChecksumError
Hello, I am having the same error with @ZhaofengWu first with "social bias frames" dataset. As I found this report, I tried also "coqa" and it fails as well. I test this on Google Colab. ``` - `datasets` version: 1.15.1 - Platform: Linux-5.4.104+-x86_64-with-Ubuntu-18.04-bionic - Python version: 3.7.12 - PyArrow version: 3.0.0 ``` Then another environment ``` - `datasets` version: 1.15.1 - Platform: macOS-12.0.1-arm64-arm-64bit - Python version: 3.9.7 - PyArrow version: 6.0.1 ``` I tried the notebook @albertvillanova provided earlier, and it fails...
``` >>> from datasets import load_dataset >>> dataset = load_dataset("coqa") Downloading: 3.82kB [00:00, 1.26MB/s] Downloading: 1.79kB [00:00, 733kB/s] Using custom data configuration default Downloading and preparing dataset coqa/default (download: 55.40 MiB, generated: 18.35 MiB, post-processed: Unknown size, total: 73.75 MiB) to /Users/zhaofengw/.cache/huggingface/datasets/coqa/default/1.0.0/553ce70bfdcd15ff4b5f4abc4fc2f37137139cde1f58f4f60384a53a327716f0... Downloading: 100%|█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 222/222 [00:00<00:00, 1.38MB/s] Downloading: 100%|█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 222/222 [00:00<00:00, 1.32MB/s] 100%|█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 2/2 [00:01<00:00, 1.91it/s] 100%|███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 2/2 [00:00<00:00, 1117.44it/s] Traceback (most recent call last): File "<stdin>", line 1, in <module> File "/Users/zhaofengw/miniconda3/lib/python3.9/site-packages/datasets/load.py", line 1632, in load_dataset builder_instance.download_and_prepare( File "/Users/zhaofengw/miniconda3/lib/python3.9/site-packages/datasets/builder.py", line 607, in download_and_prepare self._download_and_prepare( File "/Users/zhaofengw/miniconda3/lib/python3.9/site-packages/datasets/builder.py", line 679, in _download_and_prepare verify_checksums( File "/Users/zhaofengw/miniconda3/lib/python3.9/site-packages/datasets/utils/info_utils.py", line 40, in verify_checksums raise NonMatchingChecksumError(error_msg + str(bad_urls)) datasets.utils.info_utils.NonMatchingChecksumError: Checksums didn't match for dataset source files: ['https://nlp.stanford.edu/data/coqa/coqa-train-v1.0.json', 'https://nlp.stanford.edu/data/coqa/coqa-dev-v1.0.json'] ```
82
coqa NonMatchingChecksumError ``` >>> from datasets import load_dataset >>> dataset = load_dataset("coqa") Downloading: 3.82kB [00:00, 1.26MB/s] Downloading: 1.79kB [00:00, 733kB/s] Using custom data configuration default Downloading and preparing dataset coqa/default (download: 55.40 MiB, generated: 18.35 MiB, post-processed: Unknown size, total: 73.75 MiB) to /Users/zhaofengw/.cache/huggingface/datasets/coqa/default/1.0.0/553ce70bfdcd15ff4b5f4abc4fc2f37137139cde1f58f4f60384a53a327716f0... Downloading: 100%|█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 222/222 [00:00<00:00, 1.38MB/s] Downloading: 100%|█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 222/222 [00:00<00:00, 1.32MB/s] 100%|█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 2/2 [00:01<00:00, 1.91it/s] 100%|███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 2/2 [00:00<00:00, 1117.44it/s] Traceback (most recent call last): File "<stdin>", line 1, in <module> File "/Users/zhaofengw/miniconda3/lib/python3.9/site-packages/datasets/load.py", line 1632, in load_dataset builder_instance.download_and_prepare( File "/Users/zhaofengw/miniconda3/lib/python3.9/site-packages/datasets/builder.py", line 607, in download_and_prepare self._download_and_prepare( File "/Users/zhaofengw/miniconda3/lib/python3.9/site-packages/datasets/builder.py", line 679, in _download_and_prepare verify_checksums( File "/Users/zhaofengw/miniconda3/lib/python3.9/site-packages/datasets/utils/info_utils.py", line 40, in verify_checksums raise NonMatchingChecksumError(error_msg + str(bad_urls)) datasets.utils.info_utils.NonMatchingChecksumError: Checksums didn't match for dataset source files: ['https://nlp.stanford.edu/data/coqa/coqa-train-v1.0.json', 'https://nlp.stanford.edu/data/coqa/coqa-dev-v1.0.json'] ``` Hello, I am having the same error with @ZhaofengWu first with "social bias frames" dataset. As I found this report, I tried also "coqa" and it fails as well. I test this on Google Colab. ``` - `datasets` version: 1.15.1 - Platform: Linux-5.4.104+-x86_64-with-Ubuntu-18.04-bionic - Python version: 3.7.12 - PyArrow version: 3.0.0 ``` Then another environment ``` - `datasets` version: 1.15.1 - Platform: macOS-12.0.1-arm64-arm-64bit - Python version: 3.9.7 - PyArrow version: 6.0.1 ``` I tried the notebook @albertvillanova provided earlier, and it fails...
[ -0.2934424877166748, -0.16965605318546295, -0.23772868514060974, 0.1443958878517151, 0.17530269920825958, -0.03220370039343834, 0.10853204131126404, 0.34697225689888, 0.1612992137670517, 0.34507638216018677, -0.12422356754541397, 0.016303548589348793, 0.13270717859268188, 0.3179677724838257, -0.24001473188400269, 0.41088542342185974, -0.03730381280183792, 0.130801722407341, -0.13652393221855164, -0.08464013040065765, -0.16203461587429047, 0.16598115861415863, -0.01582520455121994, -0.21113817393779755, 0.02861746959388256, -0.10914026945829391, 0.10121777653694153, 0.14800600707530975, -0.2446722537279129, -0.28355634212493896, 0.09498230367898941, 0.13728395104408264, -0.2691483199596405, 0.30232828855514526, -0.00010783330799313262, -0.0027384981513023376, 0.3951041102409363, -0.039331186562776566, -0.3947451412677765, 0.14915716648101807, -0.5660779476165771, -0.3265206217765808, -0.04970679432153702, -0.17008115351200104, -0.0475759357213974, 0.23689433932304382, -0.06580795347690582, -0.08954586833715439, 0.2255401611328125, 0.3060496151447296, 0.33020082116127014, 0.5339956283569336, -0.10401947796344757, -0.16375169157981873, 0.07236073911190033, 0.031290773302316666, -0.12435615807771683, 0.2001531571149826, 0.21609294414520264, 0.1913791298866272, -0.27258944511413574, 0.3140356242656708, -0.0051485151052474976, 0.09484364092350006, -0.17975234985351562, -0.14494965970516205, 0.12952551245689392, -0.10418336093425751, 0.5087623596191406, 0.2842763364315033, 0.27493998408317566, -0.176284521818161, -0.2551177740097046, -0.07698702812194824, -0.20052854716777802, -0.3510757386684418, 0.24585279822349548, 0.14968642592430115, -0.340237557888031, -0.17369966208934784, -0.2658529281616211, 0.3822205364704132, 0.03578901290893555, -0.11176595091819763, -0.2776526212692261, -0.06412157416343689, -0.1459256261587143, -0.10768140107393265, 0.19801907241344452, -0.18681031465530396, 0.10265035182237625, -0.10998208820819855, -0.2069360315799713, 0.039076365530490875, -0.5156916379928589, -0.14970144629478455, 0.31265756487846375, 0.37973666191101074, 0.3413914740085602, 0.22981014847755432, 0.18982462584972382, 0.21446359157562256, 0.026291899383068085, -0.021310336887836456, -0.15561148524284363, 0.3892468512058258, 0.011136263608932495, -0.24692974984645844, 0.22724728286266327, 0.3603816330432892, -0.08430300652980804, 0.035563740879297256, 0.09798380732536316, -0.310355007648468, 0.16753895580768585, 0.25340837240219116, 0.06962268054485321, -0.4281231462955475, -0.4341353178024292, 0.149600550532341, 0.1567331850528717, 0.06822070479393005, 0.18170641362667084, 0.5912106037139893, -0.03076007217168808, -0.06389985978603363, -0.16616404056549072, 0.004891406744718552, -0.30665868520736694, -0.1340271681547165, -0.371019572019577, 0.031862448900938034, -0.14453153312206268, -0.007327264174818993, 0.1801055371761322, -0.11212418973445892, 0.23918317258358002, -0.1675238162279129, 0.33850133419036865, -0.021233825013041496, 0.02179025299847126, -0.2919423282146454, 0.0382426381111145, 0.4026385545730591, -0.01665576733648777, 0.04756862670183182, 0.28407829999923706, -0.0009175539016723633, -0.1435098946094513, -0.03872884809970856, -0.03240456432104111, -0.26845183968544006, 0.10987308621406555, 0.3479248583316803, -0.07606720924377441, -0.0021591894328594208, 0.2647094130516052, -0.20924822986125946, 0.3453936278820038, -0.06105532497167587, 0.13540741801261902, 0.01325797289609909, -0.16954652965068817, -0.2886042594909668, 0.16366930305957794, 0.4162479043006897, -0.07393622398376465, 0.032692380249500275, 0.038964398205280304, -0.12756450474262238, 0.17309290170669556, 0.149419367313385, 0.0685000866651535, 0.09921149909496307, -0.21407602727413177, -0.10196132957935333, 0.21608251333236694, -0.3309718668460846, -0.6776994466781616, 0.09962806105613708, 0.045031264424324036, 0.1138063296675682, 0.15592333674430847, 0.021511884406208992, 0.09797555953264236, -0.03561897203326225, 0.07381267100572586, -0.0027298852801322937, 0.031051501631736755, 0.11351162940263748, -0.39217624068260193, -0.31785261631011963, -0.009648721665143967, 0.10581538081169128, 0.16304001212120056, -0.05722411721944809, 0.29456934332847595, -0.45781758427619934, 0.20404884219169617, -0.09221106767654419, -0.011318291537463665, 0.12655538320541382, 0.18324358761310577, -0.20327387750148773, -0.04442282021045685, 0.004791315644979477, -0.2321658432483673, 0.2732808291912079, -0.44594860076904297, 0.06045011430978775, -0.18885435163974762, -0.26077142357826233, -0.3654577136039734, -0.0270660612732172, -0.21089313924312592, -0.14423216879367828, 0.30756711959838867, 0.273681640625, 0.27484431862831116, 0.07274362444877625, 0.11723446846008301, 0.40884360671043396, -0.1587977558374405, -0.04461226612329483, -0.31232354044914246, 0.043137192726135254, -0.09874071925878525, -0.07750507444143295, -0.03355168551206589, 0.3281101882457733, 0.15009266138076782, -0.022737614810466766, -0.07894660532474518, 0.30079612135887146, 0.17490367591381073, 0.1836465299129486, -0.08949295431375504, 0.127378910779953, -0.0025923699140548706, 0.049132224172353745, 0.0637911930680275, 0.16952727735042572, 0.07616879045963287, -0.014355748891830444, -0.21904432773590088, 0.49147361516952515, -0.1414717584848404, 0.17851026356220245, 0.1221497654914856, -0.14977209270000458, 0.24572929739952087, -0.15667659044265747, -0.11089283972978592, -0.11869918555021286, 0.23188894987106323, 0.17755544185638428, 0.04459628090262413, 0.10382231324911118, -0.11840202659368515, 0.113840252161026, 0.3319092392921448, -0.06497618556022644, 0.0596817247569561, 0.1184130534529686, 0.09951990842819214, -0.09228239208459854, 0.07496040314435959, 0.3611769676208496, 0.4361034631729126, 0.19483688473701477, 0.17049480974674225, -0.05781761556863785, -0.00705199409276247, -0.16996005177497864, 0.12952379882335663, 0.12153053283691406, -0.03822976350784302, 0.4889443516731262, 0.23847328126430511, -0.19473984837532043, -0.48423442244529724, -0.17633193731307983, -0.07251535356044769, 0.20507536828517914, -0.29004234075546265, 0.048694491386413574, -0.17661550641059875, -0.24514919519424438, 0.018816251307725906, -0.23127946257591248, 0.0636468231678009, -0.40280500054359436, 0.12155710905790329, 0.18837758898735046, -0.06813565641641617, 0.24740423262119293, -0.3666554391384125, 0.17079229652881622, 0.20224541425704956, -0.23210398852825165, -0.1817013919353485, 0.2013235241174698, -0.10452926903963089, 0.2084091603755951, 0.18242862820625305, 0.049002859741449356, 0.5008370280265808, -0.33716222643852234, 0.0265551395714283, -0.2955659031867981, -0.22314369678497314, -0.04286115616559982, -0.0206168070435524, 0.02589571662247181, 0.23955890536308289, 0.1678852140903473, -0.09732411056756973, -0.16121135652065277, 0.1723998636007309, -0.03255085274577141, -0.42428526282310486, 0.07566442340612411, -0.20237238705158234, 0.07886164635419846, -0.18486922979354858, -0.041290752589702606, -0.2166948914527893, -0.4261755645275116, 0.10516571998596191, 0.1664564609527588, 0.21152444183826447, 0.28348469734191895, 0.030940603464841843, 0.18370208144187927, 0.06931445002555847, 0.2948223650455475, -0.35511231422424316, -0.6185640692710876, 0.30382198095321655, -0.11850994825363159, -0.3948781490325928, -0.0802287831902504, -0.29940736293792725, 0.5251651406288147, -0.05346399173140526, -0.25605493783950806, -0.2709777355194092, -0.43960779905319214, 0.19161812961101532, 0.058311913162469864, -0.09370128065347672, 0.4126143455505371, -0.019693177193403244, -0.30627769231796265, -0.05406895652413368, -0.1069871336221695, 0.10140863060951233, -0.07748894393444061, 0.2577381432056427, -0.22634556889533997, 0.4307520091533661, 0.0870751142501831, 0.37161386013031006, 0.39679551124572754, -0.04324616864323616, 0.2767592668533325, -0.0012930259108543396, 0.366716593503952, -0.29272159934043884, -0.3451104760169983, 0.11048631370067596, -0.010120302438735962, -0.10813893377780914, 0.17037226259708405, -0.049006424844264984, 0.1882525533437729, -0.0010115094482898712, -0.04595613479614258, -0.3217918574810028, -0.2026652693748474, -0.029957303777337074, -0.011170759797096252, 0.20619788765907288, -0.0590057373046875, 0.1796014904975891, -0.07419231534004211, -0.05333031713962555, 0.07544931769371033, 0.23053954541683197, -0.1735401153564453, -0.22238445281982422, -0.17990374565124512, 0.02114269882440567, -0.5448867082595825, 0.3739597797393799, 0.14488767087459564, 0.19165657460689545, -0.18221527338027954, -0.21478384733200073, 0.2275918871164322, -0.27609628438949585, 0.5989823937416077, 0.019277457147836685, 0.06914625316858292, 0.061302151530981064, -0.0501546785235405, -0.10577737540006638, -0.055776819586753845, -0.03336707502603531, -0.0936836525797844, 0.20603084564208984, -0.0033683478832244873, -0.42974868416786194, 0.006628898903727531, 0.15482155978679657, 0.19221405684947968, -0.07304496318101883, -0.08640987426042557, -0.44292178750038147, -0.4385754466056824, -0.40330877900123596, 0.2203482687473297, -0.19638533890247345, 0.3476666510105133, -0.25391799211502075, -0.04840502142906189, 0.024263707920908928, -0.10065814852714539, 0.2695053815841675, 0.1647171527147293, 0.22914716601371765, 0.110596664249897, 0.22661995887756348, -0.24429190158843994, 0.13070419430732727, 0.1984192579984665, 0.5014007091522217, 0.049889978021383286, -0.03833119571208954, 0.04114202409982681, -0.09934808313846588, -0.08475775271654129, 0.1514367312192917, -0.07930830866098404, 0.06131284311413765, 0.08193901181221008, 0.17971403896808624, 0.007807188667356968, 0.06768348813056946, 0.191093310713768, 0.07904420047998428, -0.4913080930709839, 0.00012611597776412964, 0.18332332372665405, -0.1703171283006668, -0.12918595969676971, 0.22338254749774933, -0.07339797914028168, -0.06663050502538681, 0.10432832688093185, 0.15409207344055176, 0.9350462555885315, -0.014139235019683838, 0.058612577617168427, 0.29328739643096924, -0.079803965985775, 0.12429782748222351, -0.2610677480697632, 0.09160012751817703, -0.308572918176651, -0.4105004072189331, -0.08249296247959137, -0.13053175806999207, 0.2970247268676758, -0.14368225634098053, -0.1895328313112259, 0.23112767934799194, -0.0813201293349266, 0.11333084106445312, 0.008750002831220627, 0.03075598180294037, -0.40086105465888977, -0.04071492329239845, 0.01718025654554367, 0.2892783284187317, 0.13341988623142242, 0.20583026111125946, -0.12051525712013245, 0.05827419087290764, -0.10158440470695496, -0.24899086356163025, -0.13879992067813873, -0.039493925869464874, -0.19463592767715454, 0.03599635511636734, 0.16839082539081573, -0.1722528636455536, -0.23880907893180847, 0.038397498428821564, 0.21403709053993225, 0.18490250408649445, -0.15437829494476318, 0.15479524433612823, 0.31905168294906616, 0.2688971757888794, 0.10504724830389023, -0.12844356894493103, 0.07145668566226959, -0.12665459513664246, -0.2375257909297943, 0.17874372005462646, -0.03149297088384628, -0.19412989914417267, 0.08989214897155762, 0.20072123408317566, 0.13910531997680664, -0.39492350816726685, -0.05906708911061287, -0.19327202439308167, -0.06835195422172546, -0.2689076364040375, 0.2183004766702652, 0.12494394183158875, -0.1642821729183197, 0.3021155297756195, -0.2200939804315567, -0.381645143032074, -0.19553539156913757, 0.4039522707462311, 0.059818439185619354, -0.055473219603300095, 0.39847618341445923, -0.1549912393093109, -0.3118517994880676, -0.3498164415359497, -0.08506038784980774, -0.20270290970802307, -0.17557567358016968, 0.05849461257457733, -0.03073701076209545, -0.15075963735580444, -0.020298466086387634, 0.5994767546653748, 0.060186974704265594, 0.19920223951339722, 0.02526635304093361, -0.4625312387943268, -0.42742159962654114, -0.061734944581985474, 0.03706744685769081, 0.3987518548965454, -0.15916256606578827, 0.16445614397525787, 0.012947244569659233, -0.004292689263820648, -0.43596765398979187, 0.031307466328144073, -0.4266003370285034, -0.018036898225545883, -0.08434324711561203, 0.023849669843912125, 0.3092130124568939, 0.21308329701423645, 0.29234951734542847, 0.12799608707427979, -0.30219441652297974, -0.3937187194824219, 0.08653353154659271, 0.09008870273828506, -0.14846336841583252, -0.09343032538890839, 0.1611853688955307, 0.1144799292087555, -0.08965542912483215, -0.1671106219291687, 0.13754960894584656, 0.09744145721197128, -0.05776767432689667, -0.0011662635952234268, 0.03317973017692566, 0.11357127875089645, 0.06544121354818344, 0.03810965642333031, -0.12498892843723297, -0.06489604711532593, 0.08184729516506195, 0.06233051419258118, -0.31649965047836304, -0.06265197694301605, 0.21798862516880035, 0.2692120373249054, 0.1765723079442978, -0.25738468766212463, 0.18408872187137604, -0.08021324872970581, -0.28304219245910645, 0.12898407876491547, 0.2626402676105499, 0.10557858645915985, -0.10393302142620087, -0.05853545665740967, -0.00696902722120285, 0.3814464211463928, -0.24597476422786713, 0.062213074415922165, -0.19105800986289978, -0.11888439208269119, 0.3324759006500244, 0.20271265506744385, 0.03767793998122215, -0.49493420124053955, 0.7025297284126282, -0.0032799430191516876, 0.09852687269449234, -0.2750313878059387, 0.06997153162956238, 0.3853769600391388, -0.09488283097743988, 0.06583025306463242, 0.3065243363380432, -0.20568472146987915, 0.0029283538460731506, 0.1775141954421997, -0.12993362545967102, 0.3608565926551819, -0.3100311756134033, 0.22306671738624573, -0.21101057529449463, -0.5824345946311951, 0.43522578477859497, 0.19912779331207275, -0.1894797384738922, -0.1579817831516266, 0.21143674850463867, 0.006730489432811737, 0.12381017208099365, 0.1221541166305542, -0.5876337885856628, 0.054521504789590836, -0.18315264582633972, -0.2643299400806427, 0.04633136838674545, -0.25904372334480286, 0.06537827849388123, 0.08788329362869263, 0.17545495927333832, -0.03460018336772919, 0.14828503131866455, -0.06597074866294861, -0.07132065296173096, -0.2589384913444519, -0.050329938530921936, 0.05690690875053406, -0.019562505185604095, -0.226518452167511, 0.3146122694015503, 0.3966416120529175, 0.10995562374591827, 0.06532835960388184, 0.26924097537994385, 0.4736747443675995, 0.30895155668258667, 0.07838893681764603, 0.11792709678411484, -0.1571085900068283, -0.06981592625379562, -0.29738831520080566, 0.5326287746429443, 0.056090086698532104, 0.12402398884296417, 0.3892194330692291, 0.33868253231048584, -0.35118669271469116, -0.10180355608463287, -0.004990827292203903, -0.2602482736110687, -0.25271090865135193, 0.4092099964618683, 0.04140118509531021, 0.11650843173265457, -0.1890028864145279, 0.08631154149770737, -0.4327796995639801, -0.12798988819122314, -0.12977595627307892, -0.10070309042930603, 0.26383310556411743, -0.047427937388420105, 0.13595466315746307, -0.13304288685321808, 0.3954499065876007, 0.11508388072252274, 0.2237357795238495, -0.35402292013168335, -0.29979121685028076, -0.443930059671402, 0.2721990644931793, 0.11012555658817291, -0.08830752223730087, -0.28892645239830017, 0.4001695513725281, -0.13441091775894165, 0.005416510626673698, 0.3089107275009155, 0.20314213633537292, 0.21907810866832733, 0.012316066771745682, -0.15926919877529144, 0.17761847376823425, -0.16125626862049103, -0.17664110660552979, -0.0006082989275455475, -0.4943605661392212, 0.24998092651367188, 0.01212752889841795, 0.29278966784477234, 0.03693773224949837, -0.08022898435592651, -0.08585919439792633, 0.1793816238641739, 0.2793874442577362, 0.22420385479927063, 0.4025237262248993, -0.26060590147972107, -0.1163613572716713, -0.17698027193546295, 0.11177251487970352, 0.007236148230731487, 0.1602901816368103, 0.17387434840202332, 0.23797091841697693, 0.19372721016407013, -0.002248309552669525, -0.05700988322496414, 0.6293025016784668, 0.3451418876647949, -0.1713215857744217, 0.006119709461927414, 0.24794191122055054, -0.04957638308405876, 0.05936165153980255, -0.02183469757437706, 0.1271129846572876, 0.16174350678920746, 0.22889575362205505, -0.23515881597995758, -0.29199516773223877, 0.3922101855278015, -0.3292052447795868, -0.23996081948280334, -0.16823481023311615, 0.46806830167770386, -0.2205522656440735, -0.0836518332362175, -0.4472202956676483, 0.23536372184753418, 0.33403486013412476, 0.0017696619033813477, -0.10090698301792145, 0.39558759331703186, -0.2101522535085678, 0.04606184735894203, -0.14001600444316864, 0.25752827525138855, 0.15152159333229065, -0.052701279520988464, -0.09237298369407654, -0.29959636926651 ]
https://github.com/huggingface/datasets/issues/3269
coqa NonMatchingChecksumError
Hi, still not able to reproduce the issue with `coqa`. If you still have this issue, could you please run these additional commands ? ```python >>> import os >>> from hashlib import md5 >>> from datasets.utils import DownloadManager, DownloadConfig >>> path = DownloadManager(download_config=DownloadConfig(use_etag=False)).download("https://nlp.stanford.edu/data/coqa/coqa-dev-v1.0.json") # it returns the cached file >>> os.path.getsize(path) 9090845 >>> m = md5() >>> m.update(open(path, "rb").read()) >>> m.hexdigest() `95d427588e3733e4ebec55f6938dbba6` >>> open(path).read(500) '{\n "version": "1.0",\n "data": [\n {\n "source": "mctest",\n "id": "3dr23u6we5exclen4th8uq9rb42tel",\n "filename": "mc160.test.41",\n "story": "Once upon a time, in a barn near a farm house, there lived a little white kitten named Cotton. Cotton lived high up in a nice warm place above the barn where all of the farmer\'s horses slept. But Cotton wasn\'t alone in her little home above the barn, oh no. She shared her hay bed with her mommy and 5 other sisters. All of her sisters w' ``` This way we can know whether you downloaded a corrupted file or an error file that could cause the `NonMatchingChecksumError` error to happen
``` >>> from datasets import load_dataset >>> dataset = load_dataset("coqa") Downloading: 3.82kB [00:00, 1.26MB/s] Downloading: 1.79kB [00:00, 733kB/s] Using custom data configuration default Downloading and preparing dataset coqa/default (download: 55.40 MiB, generated: 18.35 MiB, post-processed: Unknown size, total: 73.75 MiB) to /Users/zhaofengw/.cache/huggingface/datasets/coqa/default/1.0.0/553ce70bfdcd15ff4b5f4abc4fc2f37137139cde1f58f4f60384a53a327716f0... Downloading: 100%|█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 222/222 [00:00<00:00, 1.38MB/s] Downloading: 100%|█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 222/222 [00:00<00:00, 1.32MB/s] 100%|█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 2/2 [00:01<00:00, 1.91it/s] 100%|███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 2/2 [00:00<00:00, 1117.44it/s] Traceback (most recent call last): File "<stdin>", line 1, in <module> File "/Users/zhaofengw/miniconda3/lib/python3.9/site-packages/datasets/load.py", line 1632, in load_dataset builder_instance.download_and_prepare( File "/Users/zhaofengw/miniconda3/lib/python3.9/site-packages/datasets/builder.py", line 607, in download_and_prepare self._download_and_prepare( File "/Users/zhaofengw/miniconda3/lib/python3.9/site-packages/datasets/builder.py", line 679, in _download_and_prepare verify_checksums( File "/Users/zhaofengw/miniconda3/lib/python3.9/site-packages/datasets/utils/info_utils.py", line 40, in verify_checksums raise NonMatchingChecksumError(error_msg + str(bad_urls)) datasets.utils.info_utils.NonMatchingChecksumError: Checksums didn't match for dataset source files: ['https://nlp.stanford.edu/data/coqa/coqa-train-v1.0.json', 'https://nlp.stanford.edu/data/coqa/coqa-dev-v1.0.json'] ```
169
coqa NonMatchingChecksumError ``` >>> from datasets import load_dataset >>> dataset = load_dataset("coqa") Downloading: 3.82kB [00:00, 1.26MB/s] Downloading: 1.79kB [00:00, 733kB/s] Using custom data configuration default Downloading and preparing dataset coqa/default (download: 55.40 MiB, generated: 18.35 MiB, post-processed: Unknown size, total: 73.75 MiB) to /Users/zhaofengw/.cache/huggingface/datasets/coqa/default/1.0.0/553ce70bfdcd15ff4b5f4abc4fc2f37137139cde1f58f4f60384a53a327716f0... Downloading: 100%|█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 222/222 [00:00<00:00, 1.38MB/s] Downloading: 100%|█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 222/222 [00:00<00:00, 1.32MB/s] 100%|█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 2/2 [00:01<00:00, 1.91it/s] 100%|███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 2/2 [00:00<00:00, 1117.44it/s] Traceback (most recent call last): File "<stdin>", line 1, in <module> File "/Users/zhaofengw/miniconda3/lib/python3.9/site-packages/datasets/load.py", line 1632, in load_dataset builder_instance.download_and_prepare( File "/Users/zhaofengw/miniconda3/lib/python3.9/site-packages/datasets/builder.py", line 607, in download_and_prepare self._download_and_prepare( File "/Users/zhaofengw/miniconda3/lib/python3.9/site-packages/datasets/builder.py", line 679, in _download_and_prepare verify_checksums( File "/Users/zhaofengw/miniconda3/lib/python3.9/site-packages/datasets/utils/info_utils.py", line 40, in verify_checksums raise NonMatchingChecksumError(error_msg + str(bad_urls)) datasets.utils.info_utils.NonMatchingChecksumError: Checksums didn't match for dataset source files: ['https://nlp.stanford.edu/data/coqa/coqa-train-v1.0.json', 'https://nlp.stanford.edu/data/coqa/coqa-dev-v1.0.json'] ``` Hi, still not able to reproduce the issue with `coqa`. If you still have this issue, could you please run these additional commands ? ```python >>> import os >>> from hashlib import md5 >>> from datasets.utils import DownloadManager, DownloadConfig >>> path = DownloadManager(download_config=DownloadConfig(use_etag=False)).download("https://nlp.stanford.edu/data/coqa/coqa-dev-v1.0.json") # it returns the cached file >>> os.path.getsize(path) 9090845 >>> m = md5() >>> m.update(open(path, "rb").read()) >>> m.hexdigest() `95d427588e3733e4ebec55f6938dbba6` >>> open(path).read(500) '{\n "version": "1.0",\n "data": [\n {\n "source": "mctest",\n "id": "3dr23u6we5exclen4th8uq9rb42tel",\n "filename": "mc160.test.41",\n "story": "Once upon a time, in a barn near a farm house, there lived a little white kitten named Cotton. Cotton lived high up in a nice warm place above the barn where all of the farmer\'s horses slept. But Cotton wasn\'t alone in her little home above the barn, oh no. She shared her hay bed with her mommy and 5 other sisters. All of her sisters w' ``` This way we can know whether you downloaded a corrupted file or an error file that could cause the `NonMatchingChecksumError` error to happen
[ -0.2934424877166748, -0.16965605318546295, -0.23772868514060974, 0.1443958878517151, 0.17530269920825958, -0.03220370039343834, 0.10853204131126404, 0.34697225689888, 0.1612992137670517, 0.34507638216018677, -0.12422356754541397, 0.016303548589348793, 0.13270717859268188, 0.3179677724838257, -0.24001473188400269, 0.41088542342185974, -0.03730381280183792, 0.130801722407341, -0.13652393221855164, -0.08464013040065765, -0.16203461587429047, 0.16598115861415863, -0.01582520455121994, -0.21113817393779755, 0.02861746959388256, -0.10914026945829391, 0.10121777653694153, 0.14800600707530975, -0.2446722537279129, -0.28355634212493896, 0.09498230367898941, 0.13728395104408264, -0.2691483199596405, 0.30232828855514526, -0.00010783330799313262, -0.0027384981513023376, 0.3951041102409363, -0.039331186562776566, -0.3947451412677765, 0.14915716648101807, -0.5660779476165771, -0.3265206217765808, -0.04970679432153702, -0.17008115351200104, -0.0475759357213974, 0.23689433932304382, -0.06580795347690582, -0.08954586833715439, 0.2255401611328125, 0.3060496151447296, 0.33020082116127014, 0.5339956283569336, -0.10401947796344757, -0.16375169157981873, 0.07236073911190033, 0.031290773302316666, -0.12435615807771683, 0.2001531571149826, 0.21609294414520264, 0.1913791298866272, -0.27258944511413574, 0.3140356242656708, -0.0051485151052474976, 0.09484364092350006, -0.17975234985351562, -0.14494965970516205, 0.12952551245689392, -0.10418336093425751, 0.5087623596191406, 0.2842763364315033, 0.27493998408317566, -0.176284521818161, -0.2551177740097046, -0.07698702812194824, -0.20052854716777802, -0.3510757386684418, 0.24585279822349548, 0.14968642592430115, -0.340237557888031, -0.17369966208934784, -0.2658529281616211, 0.3822205364704132, 0.03578901290893555, -0.11176595091819763, -0.2776526212692261, -0.06412157416343689, -0.1459256261587143, -0.10768140107393265, 0.19801907241344452, -0.18681031465530396, 0.10265035182237625, -0.10998208820819855, -0.2069360315799713, 0.039076365530490875, -0.5156916379928589, -0.14970144629478455, 0.31265756487846375, 0.37973666191101074, 0.3413914740085602, 0.22981014847755432, 0.18982462584972382, 0.21446359157562256, 0.026291899383068085, -0.021310336887836456, -0.15561148524284363, 0.3892468512058258, 0.011136263608932495, -0.24692974984645844, 0.22724728286266327, 0.3603816330432892, -0.08430300652980804, 0.035563740879297256, 0.09798380732536316, -0.310355007648468, 0.16753895580768585, 0.25340837240219116, 0.06962268054485321, -0.4281231462955475, -0.4341353178024292, 0.149600550532341, 0.1567331850528717, 0.06822070479393005, 0.18170641362667084, 0.5912106037139893, -0.03076007217168808, -0.06389985978603363, -0.16616404056549072, 0.004891406744718552, -0.30665868520736694, -0.1340271681547165, -0.371019572019577, 0.031862448900938034, -0.14453153312206268, -0.007327264174818993, 0.1801055371761322, -0.11212418973445892, 0.23918317258358002, -0.1675238162279129, 0.33850133419036865, -0.021233825013041496, 0.02179025299847126, -0.2919423282146454, 0.0382426381111145, 0.4026385545730591, -0.01665576733648777, 0.04756862670183182, 0.28407829999923706, -0.0009175539016723633, -0.1435098946094513, -0.03872884809970856, -0.03240456432104111, -0.26845183968544006, 0.10987308621406555, 0.3479248583316803, -0.07606720924377441, -0.0021591894328594208, 0.2647094130516052, -0.20924822986125946, 0.3453936278820038, -0.06105532497167587, 0.13540741801261902, 0.01325797289609909, -0.16954652965068817, -0.2886042594909668, 0.16366930305957794, 0.4162479043006897, -0.07393622398376465, 0.032692380249500275, 0.038964398205280304, -0.12756450474262238, 0.17309290170669556, 0.149419367313385, 0.0685000866651535, 0.09921149909496307, -0.21407602727413177, -0.10196132957935333, 0.21608251333236694, -0.3309718668460846, -0.6776994466781616, 0.09962806105613708, 0.045031264424324036, 0.1138063296675682, 0.15592333674430847, 0.021511884406208992, 0.09797555953264236, -0.03561897203326225, 0.07381267100572586, -0.0027298852801322937, 0.031051501631736755, 0.11351162940263748, -0.39217624068260193, -0.31785261631011963, -0.009648721665143967, 0.10581538081169128, 0.16304001212120056, -0.05722411721944809, 0.29456934332847595, -0.45781758427619934, 0.20404884219169617, -0.09221106767654419, -0.011318291537463665, 0.12655538320541382, 0.18324358761310577, -0.20327387750148773, -0.04442282021045685, 0.004791315644979477, -0.2321658432483673, 0.2732808291912079, -0.44594860076904297, 0.06045011430978775, -0.18885435163974762, -0.26077142357826233, -0.3654577136039734, -0.0270660612732172, -0.21089313924312592, -0.14423216879367828, 0.30756711959838867, 0.273681640625, 0.27484431862831116, 0.07274362444877625, 0.11723446846008301, 0.40884360671043396, -0.1587977558374405, -0.04461226612329483, -0.31232354044914246, 0.043137192726135254, -0.09874071925878525, -0.07750507444143295, -0.03355168551206589, 0.3281101882457733, 0.15009266138076782, -0.022737614810466766, -0.07894660532474518, 0.30079612135887146, 0.17490367591381073, 0.1836465299129486, -0.08949295431375504, 0.127378910779953, -0.0025923699140548706, 0.049132224172353745, 0.0637911930680275, 0.16952727735042572, 0.07616879045963287, -0.014355748891830444, -0.21904432773590088, 0.49147361516952515, -0.1414717584848404, 0.17851026356220245, 0.1221497654914856, -0.14977209270000458, 0.24572929739952087, -0.15667659044265747, -0.11089283972978592, -0.11869918555021286, 0.23188894987106323, 0.17755544185638428, 0.04459628090262413, 0.10382231324911118, -0.11840202659368515, 0.113840252161026, 0.3319092392921448, -0.06497618556022644, 0.0596817247569561, 0.1184130534529686, 0.09951990842819214, -0.09228239208459854, 0.07496040314435959, 0.3611769676208496, 0.4361034631729126, 0.19483688473701477, 0.17049480974674225, -0.05781761556863785, -0.00705199409276247, -0.16996005177497864, 0.12952379882335663, 0.12153053283691406, -0.03822976350784302, 0.4889443516731262, 0.23847328126430511, -0.19473984837532043, -0.48423442244529724, -0.17633193731307983, -0.07251535356044769, 0.20507536828517914, -0.29004234075546265, 0.048694491386413574, -0.17661550641059875, -0.24514919519424438, 0.018816251307725906, -0.23127946257591248, 0.0636468231678009, -0.40280500054359436, 0.12155710905790329, 0.18837758898735046, -0.06813565641641617, 0.24740423262119293, -0.3666554391384125, 0.17079229652881622, 0.20224541425704956, -0.23210398852825165, -0.1817013919353485, 0.2013235241174698, -0.10452926903963089, 0.2084091603755951, 0.18242862820625305, 0.049002859741449356, 0.5008370280265808, -0.33716222643852234, 0.0265551395714283, -0.2955659031867981, -0.22314369678497314, -0.04286115616559982, -0.0206168070435524, 0.02589571662247181, 0.23955890536308289, 0.1678852140903473, -0.09732411056756973, -0.16121135652065277, 0.1723998636007309, -0.03255085274577141, -0.42428526282310486, 0.07566442340612411, -0.20237238705158234, 0.07886164635419846, -0.18486922979354858, -0.041290752589702606, -0.2166948914527893, -0.4261755645275116, 0.10516571998596191, 0.1664564609527588, 0.21152444183826447, 0.28348469734191895, 0.030940603464841843, 0.18370208144187927, 0.06931445002555847, 0.2948223650455475, -0.35511231422424316, -0.6185640692710876, 0.30382198095321655, -0.11850994825363159, -0.3948781490325928, -0.0802287831902504, -0.29940736293792725, 0.5251651406288147, -0.05346399173140526, -0.25605493783950806, -0.2709777355194092, -0.43960779905319214, 0.19161812961101532, 0.058311913162469864, -0.09370128065347672, 0.4126143455505371, -0.019693177193403244, -0.30627769231796265, -0.05406895652413368, -0.1069871336221695, 0.10140863060951233, -0.07748894393444061, 0.2577381432056427, -0.22634556889533997, 0.4307520091533661, 0.0870751142501831, 0.37161386013031006, 0.39679551124572754, -0.04324616864323616, 0.2767592668533325, -0.0012930259108543396, 0.366716593503952, -0.29272159934043884, -0.3451104760169983, 0.11048631370067596, -0.010120302438735962, -0.10813893377780914, 0.17037226259708405, -0.049006424844264984, 0.1882525533437729, -0.0010115094482898712, -0.04595613479614258, -0.3217918574810028, -0.2026652693748474, -0.029957303777337074, -0.011170759797096252, 0.20619788765907288, -0.0590057373046875, 0.1796014904975891, -0.07419231534004211, -0.05333031713962555, 0.07544931769371033, 0.23053954541683197, -0.1735401153564453, -0.22238445281982422, -0.17990374565124512, 0.02114269882440567, -0.5448867082595825, 0.3739597797393799, 0.14488767087459564, 0.19165657460689545, -0.18221527338027954, -0.21478384733200073, 0.2275918871164322, -0.27609628438949585, 0.5989823937416077, 0.019277457147836685, 0.06914625316858292, 0.061302151530981064, -0.0501546785235405, -0.10577737540006638, -0.055776819586753845, -0.03336707502603531, -0.0936836525797844, 0.20603084564208984, -0.0033683478832244873, -0.42974868416786194, 0.006628898903727531, 0.15482155978679657, 0.19221405684947968, -0.07304496318101883, -0.08640987426042557, -0.44292178750038147, -0.4385754466056824, -0.40330877900123596, 0.2203482687473297, -0.19638533890247345, 0.3476666510105133, -0.25391799211502075, -0.04840502142906189, 0.024263707920908928, -0.10065814852714539, 0.2695053815841675, 0.1647171527147293, 0.22914716601371765, 0.110596664249897, 0.22661995887756348, -0.24429190158843994, 0.13070419430732727, 0.1984192579984665, 0.5014007091522217, 0.049889978021383286, -0.03833119571208954, 0.04114202409982681, -0.09934808313846588, -0.08475775271654129, 0.1514367312192917, -0.07930830866098404, 0.06131284311413765, 0.08193901181221008, 0.17971403896808624, 0.007807188667356968, 0.06768348813056946, 0.191093310713768, 0.07904420047998428, -0.4913080930709839, 0.00012611597776412964, 0.18332332372665405, -0.1703171283006668, -0.12918595969676971, 0.22338254749774933, -0.07339797914028168, -0.06663050502538681, 0.10432832688093185, 0.15409207344055176, 0.9350462555885315, -0.014139235019683838, 0.058612577617168427, 0.29328739643096924, -0.079803965985775, 0.12429782748222351, -0.2610677480697632, 0.09160012751817703, -0.308572918176651, -0.4105004072189331, -0.08249296247959137, -0.13053175806999207, 0.2970247268676758, -0.14368225634098053, -0.1895328313112259, 0.23112767934799194, -0.0813201293349266, 0.11333084106445312, 0.008750002831220627, 0.03075598180294037, -0.40086105465888977, -0.04071492329239845, 0.01718025654554367, 0.2892783284187317, 0.13341988623142242, 0.20583026111125946, -0.12051525712013245, 0.05827419087290764, -0.10158440470695496, -0.24899086356163025, -0.13879992067813873, -0.039493925869464874, -0.19463592767715454, 0.03599635511636734, 0.16839082539081573, -0.1722528636455536, -0.23880907893180847, 0.038397498428821564, 0.21403709053993225, 0.18490250408649445, -0.15437829494476318, 0.15479524433612823, 0.31905168294906616, 0.2688971757888794, 0.10504724830389023, -0.12844356894493103, 0.07145668566226959, -0.12665459513664246, -0.2375257909297943, 0.17874372005462646, -0.03149297088384628, -0.19412989914417267, 0.08989214897155762, 0.20072123408317566, 0.13910531997680664, -0.39492350816726685, -0.05906708911061287, -0.19327202439308167, -0.06835195422172546, -0.2689076364040375, 0.2183004766702652, 0.12494394183158875, -0.1642821729183197, 0.3021155297756195, -0.2200939804315567, -0.381645143032074, -0.19553539156913757, 0.4039522707462311, 0.059818439185619354, -0.055473219603300095, 0.39847618341445923, -0.1549912393093109, -0.3118517994880676, -0.3498164415359497, -0.08506038784980774, -0.20270290970802307, -0.17557567358016968, 0.05849461257457733, -0.03073701076209545, -0.15075963735580444, -0.020298466086387634, 0.5994767546653748, 0.060186974704265594, 0.19920223951339722, 0.02526635304093361, -0.4625312387943268, -0.42742159962654114, -0.061734944581985474, 0.03706744685769081, 0.3987518548965454, -0.15916256606578827, 0.16445614397525787, 0.012947244569659233, -0.004292689263820648, -0.43596765398979187, 0.031307466328144073, -0.4266003370285034, -0.018036898225545883, -0.08434324711561203, 0.023849669843912125, 0.3092130124568939, 0.21308329701423645, 0.29234951734542847, 0.12799608707427979, -0.30219441652297974, -0.3937187194824219, 0.08653353154659271, 0.09008870273828506, -0.14846336841583252, -0.09343032538890839, 0.1611853688955307, 0.1144799292087555, -0.08965542912483215, -0.1671106219291687, 0.13754960894584656, 0.09744145721197128, -0.05776767432689667, -0.0011662635952234268, 0.03317973017692566, 0.11357127875089645, 0.06544121354818344, 0.03810965642333031, -0.12498892843723297, -0.06489604711532593, 0.08184729516506195, 0.06233051419258118, -0.31649965047836304, -0.06265197694301605, 0.21798862516880035, 0.2692120373249054, 0.1765723079442978, -0.25738468766212463, 0.18408872187137604, -0.08021324872970581, -0.28304219245910645, 0.12898407876491547, 0.2626402676105499, 0.10557858645915985, -0.10393302142620087, -0.05853545665740967, -0.00696902722120285, 0.3814464211463928, -0.24597476422786713, 0.062213074415922165, -0.19105800986289978, -0.11888439208269119, 0.3324759006500244, 0.20271265506744385, 0.03767793998122215, -0.49493420124053955, 0.7025297284126282, -0.0032799430191516876, 0.09852687269449234, -0.2750313878059387, 0.06997153162956238, 0.3853769600391388, -0.09488283097743988, 0.06583025306463242, 0.3065243363380432, -0.20568472146987915, 0.0029283538460731506, 0.1775141954421997, -0.12993362545967102, 0.3608565926551819, -0.3100311756134033, 0.22306671738624573, -0.21101057529449463, -0.5824345946311951, 0.43522578477859497, 0.19912779331207275, -0.1894797384738922, -0.1579817831516266, 0.21143674850463867, 0.006730489432811737, 0.12381017208099365, 0.1221541166305542, -0.5876337885856628, 0.054521504789590836, -0.18315264582633972, -0.2643299400806427, 0.04633136838674545, -0.25904372334480286, 0.06537827849388123, 0.08788329362869263, 0.17545495927333832, -0.03460018336772919, 0.14828503131866455, -0.06597074866294861, -0.07132065296173096, -0.2589384913444519, -0.050329938530921936, 0.05690690875053406, -0.019562505185604095, -0.226518452167511, 0.3146122694015503, 0.3966416120529175, 0.10995562374591827, 0.06532835960388184, 0.26924097537994385, 0.4736747443675995, 0.30895155668258667, 0.07838893681764603, 0.11792709678411484, -0.1571085900068283, -0.06981592625379562, -0.29738831520080566, 0.5326287746429443, 0.056090086698532104, 0.12402398884296417, 0.3892194330692291, 0.33868253231048584, -0.35118669271469116, -0.10180355608463287, -0.004990827292203903, -0.2602482736110687, -0.25271090865135193, 0.4092099964618683, 0.04140118509531021, 0.11650843173265457, -0.1890028864145279, 0.08631154149770737, -0.4327796995639801, -0.12798988819122314, -0.12977595627307892, -0.10070309042930603, 0.26383310556411743, -0.047427937388420105, 0.13595466315746307, -0.13304288685321808, 0.3954499065876007, 0.11508388072252274, 0.2237357795238495, -0.35402292013168335, -0.29979121685028076, -0.443930059671402, 0.2721990644931793, 0.11012555658817291, -0.08830752223730087, -0.28892645239830017, 0.4001695513725281, -0.13441091775894165, 0.005416510626673698, 0.3089107275009155, 0.20314213633537292, 0.21907810866832733, 0.012316066771745682, -0.15926919877529144, 0.17761847376823425, -0.16125626862049103, -0.17664110660552979, -0.0006082989275455475, -0.4943605661392212, 0.24998092651367188, 0.01212752889841795, 0.29278966784477234, 0.03693773224949837, -0.08022898435592651, -0.08585919439792633, 0.1793816238641739, 0.2793874442577362, 0.22420385479927063, 0.4025237262248993, -0.26060590147972107, -0.1163613572716713, -0.17698027193546295, 0.11177251487970352, 0.007236148230731487, 0.1602901816368103, 0.17387434840202332, 0.23797091841697693, 0.19372721016407013, -0.002248309552669525, -0.05700988322496414, 0.6293025016784668, 0.3451418876647949, -0.1713215857744217, 0.006119709461927414, 0.24794191122055054, -0.04957638308405876, 0.05936165153980255, -0.02183469757437706, 0.1271129846572876, 0.16174350678920746, 0.22889575362205505, -0.23515881597995758, -0.29199516773223877, 0.3922101855278015, -0.3292052447795868, -0.23996081948280334, -0.16823481023311615, 0.46806830167770386, -0.2205522656440735, -0.0836518332362175, -0.4472202956676483, 0.23536372184753418, 0.33403486013412476, 0.0017696619033813477, -0.10090698301792145, 0.39558759331703186, -0.2101522535085678, 0.04606184735894203, -0.14001600444316864, 0.25752827525138855, 0.15152159333229065, -0.052701279520988464, -0.09237298369407654, -0.29959636926651 ]
https://github.com/huggingface/datasets/issues/3269
coqa NonMatchingChecksumError
``` >>> import os >>> from hashlib import md5 >>> from datasets.utils import DownloadManager, DownloadConfig >>> path = DownloadManager(download_config=DownloadConfig(use_etag=False)).download("https://nlp.stanford.edu/data/coqa/coqa-dev-v1.0.json") # it returns the cached file >>> os.path.getsize(path) 222 >>> m = md5() >>> m.update(open(path, "rb").read()) >>> m.hexdigest() '1195812a37c01a4481a4748c85d0c6a9' >>> open(path).read(500) '<html>\n<head><title>503 Service Temporarily Unavailable</title></head>\n<body bgcolor="white">\n<center><h1>503 Service Temporarily Unavailable</h1></center>\n<hr><center>nginx/1.10.3 (Ubuntu)</center>\n</body>\n</html>\n' ``` Looks like there was a server-side error when downloading the dataset? But I don't believe this is a transient error given (a) deleting the cache and re-downloading gives the same error; (b) it happens on multiple platforms with different network configurations; (c) other people are getting this error too, see above. So I'm not sure why it works for some people but not others.
``` >>> from datasets import load_dataset >>> dataset = load_dataset("coqa") Downloading: 3.82kB [00:00, 1.26MB/s] Downloading: 1.79kB [00:00, 733kB/s] Using custom data configuration default Downloading and preparing dataset coqa/default (download: 55.40 MiB, generated: 18.35 MiB, post-processed: Unknown size, total: 73.75 MiB) to /Users/zhaofengw/.cache/huggingface/datasets/coqa/default/1.0.0/553ce70bfdcd15ff4b5f4abc4fc2f37137139cde1f58f4f60384a53a327716f0... Downloading: 100%|█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 222/222 [00:00<00:00, 1.38MB/s] Downloading: 100%|█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 222/222 [00:00<00:00, 1.32MB/s] 100%|█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 2/2 [00:01<00:00, 1.91it/s] 100%|███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 2/2 [00:00<00:00, 1117.44it/s] Traceback (most recent call last): File "<stdin>", line 1, in <module> File "/Users/zhaofengw/miniconda3/lib/python3.9/site-packages/datasets/load.py", line 1632, in load_dataset builder_instance.download_and_prepare( File "/Users/zhaofengw/miniconda3/lib/python3.9/site-packages/datasets/builder.py", line 607, in download_and_prepare self._download_and_prepare( File "/Users/zhaofengw/miniconda3/lib/python3.9/site-packages/datasets/builder.py", line 679, in _download_and_prepare verify_checksums( File "/Users/zhaofengw/miniconda3/lib/python3.9/site-packages/datasets/utils/info_utils.py", line 40, in verify_checksums raise NonMatchingChecksumError(error_msg + str(bad_urls)) datasets.utils.info_utils.NonMatchingChecksumError: Checksums didn't match for dataset source files: ['https://nlp.stanford.edu/data/coqa/coqa-train-v1.0.json', 'https://nlp.stanford.edu/data/coqa/coqa-dev-v1.0.json'] ```
114
coqa NonMatchingChecksumError ``` >>> from datasets import load_dataset >>> dataset = load_dataset("coqa") Downloading: 3.82kB [00:00, 1.26MB/s] Downloading: 1.79kB [00:00, 733kB/s] Using custom data configuration default Downloading and preparing dataset coqa/default (download: 55.40 MiB, generated: 18.35 MiB, post-processed: Unknown size, total: 73.75 MiB) to /Users/zhaofengw/.cache/huggingface/datasets/coqa/default/1.0.0/553ce70bfdcd15ff4b5f4abc4fc2f37137139cde1f58f4f60384a53a327716f0... Downloading: 100%|█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 222/222 [00:00<00:00, 1.38MB/s] Downloading: 100%|█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 222/222 [00:00<00:00, 1.32MB/s] 100%|█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 2/2 [00:01<00:00, 1.91it/s] 100%|███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 2/2 [00:00<00:00, 1117.44it/s] Traceback (most recent call last): File "<stdin>", line 1, in <module> File "/Users/zhaofengw/miniconda3/lib/python3.9/site-packages/datasets/load.py", line 1632, in load_dataset builder_instance.download_and_prepare( File "/Users/zhaofengw/miniconda3/lib/python3.9/site-packages/datasets/builder.py", line 607, in download_and_prepare self._download_and_prepare( File "/Users/zhaofengw/miniconda3/lib/python3.9/site-packages/datasets/builder.py", line 679, in _download_and_prepare verify_checksums( File "/Users/zhaofengw/miniconda3/lib/python3.9/site-packages/datasets/utils/info_utils.py", line 40, in verify_checksums raise NonMatchingChecksumError(error_msg + str(bad_urls)) datasets.utils.info_utils.NonMatchingChecksumError: Checksums didn't match for dataset source files: ['https://nlp.stanford.edu/data/coqa/coqa-train-v1.0.json', 'https://nlp.stanford.edu/data/coqa/coqa-dev-v1.0.json'] ``` ``` >>> import os >>> from hashlib import md5 >>> from datasets.utils import DownloadManager, DownloadConfig >>> path = DownloadManager(download_config=DownloadConfig(use_etag=False)).download("https://nlp.stanford.edu/data/coqa/coqa-dev-v1.0.json") # it returns the cached file >>> os.path.getsize(path) 222 >>> m = md5() >>> m.update(open(path, "rb").read()) >>> m.hexdigest() '1195812a37c01a4481a4748c85d0c6a9' >>> open(path).read(500) '<html>\n<head><title>503 Service Temporarily Unavailable</title></head>\n<body bgcolor="white">\n<center><h1>503 Service Temporarily Unavailable</h1></center>\n<hr><center>nginx/1.10.3 (Ubuntu)</center>\n</body>\n</html>\n' ``` Looks like there was a server-side error when downloading the dataset? But I don't believe this is a transient error given (a) deleting the cache and re-downloading gives the same error; (b) it happens on multiple platforms with different network configurations; (c) other people are getting this error too, see above. So I'm not sure why it works for some people but not others.
[ -0.2934424877166748, -0.16965605318546295, -0.23772868514060974, 0.1443958878517151, 0.17530269920825958, -0.03220370039343834, 0.10853204131126404, 0.34697225689888, 0.1612992137670517, 0.34507638216018677, -0.12422356754541397, 0.016303548589348793, 0.13270717859268188, 0.3179677724838257, -0.24001473188400269, 0.41088542342185974, -0.03730381280183792, 0.130801722407341, -0.13652393221855164, -0.08464013040065765, -0.16203461587429047, 0.16598115861415863, -0.01582520455121994, -0.21113817393779755, 0.02861746959388256, -0.10914026945829391, 0.10121777653694153, 0.14800600707530975, -0.2446722537279129, -0.28355634212493896, 0.09498230367898941, 0.13728395104408264, -0.2691483199596405, 0.30232828855514526, -0.00010783330799313262, -0.0027384981513023376, 0.3951041102409363, -0.039331186562776566, -0.3947451412677765, 0.14915716648101807, -0.5660779476165771, -0.3265206217765808, -0.04970679432153702, -0.17008115351200104, -0.0475759357213974, 0.23689433932304382, -0.06580795347690582, -0.08954586833715439, 0.2255401611328125, 0.3060496151447296, 0.33020082116127014, 0.5339956283569336, -0.10401947796344757, -0.16375169157981873, 0.07236073911190033, 0.031290773302316666, -0.12435615807771683, 0.2001531571149826, 0.21609294414520264, 0.1913791298866272, -0.27258944511413574, 0.3140356242656708, -0.0051485151052474976, 0.09484364092350006, -0.17975234985351562, -0.14494965970516205, 0.12952551245689392, -0.10418336093425751, 0.5087623596191406, 0.2842763364315033, 0.27493998408317566, -0.176284521818161, -0.2551177740097046, -0.07698702812194824, -0.20052854716777802, -0.3510757386684418, 0.24585279822349548, 0.14968642592430115, -0.340237557888031, -0.17369966208934784, -0.2658529281616211, 0.3822205364704132, 0.03578901290893555, -0.11176595091819763, -0.2776526212692261, -0.06412157416343689, -0.1459256261587143, -0.10768140107393265, 0.19801907241344452, -0.18681031465530396, 0.10265035182237625, -0.10998208820819855, -0.2069360315799713, 0.039076365530490875, -0.5156916379928589, -0.14970144629478455, 0.31265756487846375, 0.37973666191101074, 0.3413914740085602, 0.22981014847755432, 0.18982462584972382, 0.21446359157562256, 0.026291899383068085, -0.021310336887836456, -0.15561148524284363, 0.3892468512058258, 0.011136263608932495, -0.24692974984645844, 0.22724728286266327, 0.3603816330432892, -0.08430300652980804, 0.035563740879297256, 0.09798380732536316, -0.310355007648468, 0.16753895580768585, 0.25340837240219116, 0.06962268054485321, -0.4281231462955475, -0.4341353178024292, 0.149600550532341, 0.1567331850528717, 0.06822070479393005, 0.18170641362667084, 0.5912106037139893, -0.03076007217168808, -0.06389985978603363, -0.16616404056549072, 0.004891406744718552, -0.30665868520736694, -0.1340271681547165, -0.371019572019577, 0.031862448900938034, -0.14453153312206268, -0.007327264174818993, 0.1801055371761322, -0.11212418973445892, 0.23918317258358002, -0.1675238162279129, 0.33850133419036865, -0.021233825013041496, 0.02179025299847126, -0.2919423282146454, 0.0382426381111145, 0.4026385545730591, -0.01665576733648777, 0.04756862670183182, 0.28407829999923706, -0.0009175539016723633, -0.1435098946094513, -0.03872884809970856, -0.03240456432104111, -0.26845183968544006, 0.10987308621406555, 0.3479248583316803, -0.07606720924377441, -0.0021591894328594208, 0.2647094130516052, -0.20924822986125946, 0.3453936278820038, -0.06105532497167587, 0.13540741801261902, 0.01325797289609909, -0.16954652965068817, -0.2886042594909668, 0.16366930305957794, 0.4162479043006897, -0.07393622398376465, 0.032692380249500275, 0.038964398205280304, -0.12756450474262238, 0.17309290170669556, 0.149419367313385, 0.0685000866651535, 0.09921149909496307, -0.21407602727413177, -0.10196132957935333, 0.21608251333236694, -0.3309718668460846, -0.6776994466781616, 0.09962806105613708, 0.045031264424324036, 0.1138063296675682, 0.15592333674430847, 0.021511884406208992, 0.09797555953264236, -0.03561897203326225, 0.07381267100572586, -0.0027298852801322937, 0.031051501631736755, 0.11351162940263748, -0.39217624068260193, -0.31785261631011963, -0.009648721665143967, 0.10581538081169128, 0.16304001212120056, -0.05722411721944809, 0.29456934332847595, -0.45781758427619934, 0.20404884219169617, -0.09221106767654419, -0.011318291537463665, 0.12655538320541382, 0.18324358761310577, -0.20327387750148773, -0.04442282021045685, 0.004791315644979477, -0.2321658432483673, 0.2732808291912079, -0.44594860076904297, 0.06045011430978775, -0.18885435163974762, -0.26077142357826233, -0.3654577136039734, -0.0270660612732172, -0.21089313924312592, -0.14423216879367828, 0.30756711959838867, 0.273681640625, 0.27484431862831116, 0.07274362444877625, 0.11723446846008301, 0.40884360671043396, -0.1587977558374405, -0.04461226612329483, -0.31232354044914246, 0.043137192726135254, -0.09874071925878525, -0.07750507444143295, -0.03355168551206589, 0.3281101882457733, 0.15009266138076782, -0.022737614810466766, -0.07894660532474518, 0.30079612135887146, 0.17490367591381073, 0.1836465299129486, -0.08949295431375504, 0.127378910779953, -0.0025923699140548706, 0.049132224172353745, 0.0637911930680275, 0.16952727735042572, 0.07616879045963287, -0.014355748891830444, -0.21904432773590088, 0.49147361516952515, -0.1414717584848404, 0.17851026356220245, 0.1221497654914856, -0.14977209270000458, 0.24572929739952087, -0.15667659044265747, -0.11089283972978592, -0.11869918555021286, 0.23188894987106323, 0.17755544185638428, 0.04459628090262413, 0.10382231324911118, -0.11840202659368515, 0.113840252161026, 0.3319092392921448, -0.06497618556022644, 0.0596817247569561, 0.1184130534529686, 0.09951990842819214, -0.09228239208459854, 0.07496040314435959, 0.3611769676208496, 0.4361034631729126, 0.19483688473701477, 0.17049480974674225, -0.05781761556863785, -0.00705199409276247, -0.16996005177497864, 0.12952379882335663, 0.12153053283691406, -0.03822976350784302, 0.4889443516731262, 0.23847328126430511, -0.19473984837532043, -0.48423442244529724, -0.17633193731307983, -0.07251535356044769, 0.20507536828517914, -0.29004234075546265, 0.048694491386413574, -0.17661550641059875, -0.24514919519424438, 0.018816251307725906, -0.23127946257591248, 0.0636468231678009, -0.40280500054359436, 0.12155710905790329, 0.18837758898735046, -0.06813565641641617, 0.24740423262119293, -0.3666554391384125, 0.17079229652881622, 0.20224541425704956, -0.23210398852825165, -0.1817013919353485, 0.2013235241174698, -0.10452926903963089, 0.2084091603755951, 0.18242862820625305, 0.049002859741449356, 0.5008370280265808, -0.33716222643852234, 0.0265551395714283, -0.2955659031867981, -0.22314369678497314, -0.04286115616559982, -0.0206168070435524, 0.02589571662247181, 0.23955890536308289, 0.1678852140903473, -0.09732411056756973, -0.16121135652065277, 0.1723998636007309, -0.03255085274577141, -0.42428526282310486, 0.07566442340612411, -0.20237238705158234, 0.07886164635419846, -0.18486922979354858, -0.041290752589702606, -0.2166948914527893, -0.4261755645275116, 0.10516571998596191, 0.1664564609527588, 0.21152444183826447, 0.28348469734191895, 0.030940603464841843, 0.18370208144187927, 0.06931445002555847, 0.2948223650455475, -0.35511231422424316, -0.6185640692710876, 0.30382198095321655, -0.11850994825363159, -0.3948781490325928, -0.0802287831902504, -0.29940736293792725, 0.5251651406288147, -0.05346399173140526, -0.25605493783950806, -0.2709777355194092, -0.43960779905319214, 0.19161812961101532, 0.058311913162469864, -0.09370128065347672, 0.4126143455505371, -0.019693177193403244, -0.30627769231796265, -0.05406895652413368, -0.1069871336221695, 0.10140863060951233, -0.07748894393444061, 0.2577381432056427, -0.22634556889533997, 0.4307520091533661, 0.0870751142501831, 0.37161386013031006, 0.39679551124572754, -0.04324616864323616, 0.2767592668533325, -0.0012930259108543396, 0.366716593503952, -0.29272159934043884, -0.3451104760169983, 0.11048631370067596, -0.010120302438735962, -0.10813893377780914, 0.17037226259708405, -0.049006424844264984, 0.1882525533437729, -0.0010115094482898712, -0.04595613479614258, -0.3217918574810028, -0.2026652693748474, -0.029957303777337074, -0.011170759797096252, 0.20619788765907288, -0.0590057373046875, 0.1796014904975891, -0.07419231534004211, -0.05333031713962555, 0.07544931769371033, 0.23053954541683197, -0.1735401153564453, -0.22238445281982422, -0.17990374565124512, 0.02114269882440567, -0.5448867082595825, 0.3739597797393799, 0.14488767087459564, 0.19165657460689545, -0.18221527338027954, -0.21478384733200073, 0.2275918871164322, -0.27609628438949585, 0.5989823937416077, 0.019277457147836685, 0.06914625316858292, 0.061302151530981064, -0.0501546785235405, -0.10577737540006638, -0.055776819586753845, -0.03336707502603531, -0.0936836525797844, 0.20603084564208984, -0.0033683478832244873, -0.42974868416786194, 0.006628898903727531, 0.15482155978679657, 0.19221405684947968, -0.07304496318101883, -0.08640987426042557, -0.44292178750038147, -0.4385754466056824, -0.40330877900123596, 0.2203482687473297, -0.19638533890247345, 0.3476666510105133, -0.25391799211502075, -0.04840502142906189, 0.024263707920908928, -0.10065814852714539, 0.2695053815841675, 0.1647171527147293, 0.22914716601371765, 0.110596664249897, 0.22661995887756348, -0.24429190158843994, 0.13070419430732727, 0.1984192579984665, 0.5014007091522217, 0.049889978021383286, -0.03833119571208954, 0.04114202409982681, -0.09934808313846588, -0.08475775271654129, 0.1514367312192917, -0.07930830866098404, 0.06131284311413765, 0.08193901181221008, 0.17971403896808624, 0.007807188667356968, 0.06768348813056946, 0.191093310713768, 0.07904420047998428, -0.4913080930709839, 0.00012611597776412964, 0.18332332372665405, -0.1703171283006668, -0.12918595969676971, 0.22338254749774933, -0.07339797914028168, -0.06663050502538681, 0.10432832688093185, 0.15409207344055176, 0.9350462555885315, -0.014139235019683838, 0.058612577617168427, 0.29328739643096924, -0.079803965985775, 0.12429782748222351, -0.2610677480697632, 0.09160012751817703, -0.308572918176651, -0.4105004072189331, -0.08249296247959137, -0.13053175806999207, 0.2970247268676758, -0.14368225634098053, -0.1895328313112259, 0.23112767934799194, -0.0813201293349266, 0.11333084106445312, 0.008750002831220627, 0.03075598180294037, -0.40086105465888977, -0.04071492329239845, 0.01718025654554367, 0.2892783284187317, 0.13341988623142242, 0.20583026111125946, -0.12051525712013245, 0.05827419087290764, -0.10158440470695496, -0.24899086356163025, -0.13879992067813873, -0.039493925869464874, -0.19463592767715454, 0.03599635511636734, 0.16839082539081573, -0.1722528636455536, -0.23880907893180847, 0.038397498428821564, 0.21403709053993225, 0.18490250408649445, -0.15437829494476318, 0.15479524433612823, 0.31905168294906616, 0.2688971757888794, 0.10504724830389023, -0.12844356894493103, 0.07145668566226959, -0.12665459513664246, -0.2375257909297943, 0.17874372005462646, -0.03149297088384628, -0.19412989914417267, 0.08989214897155762, 0.20072123408317566, 0.13910531997680664, -0.39492350816726685, -0.05906708911061287, -0.19327202439308167, -0.06835195422172546, -0.2689076364040375, 0.2183004766702652, 0.12494394183158875, -0.1642821729183197, 0.3021155297756195, -0.2200939804315567, -0.381645143032074, -0.19553539156913757, 0.4039522707462311, 0.059818439185619354, -0.055473219603300095, 0.39847618341445923, -0.1549912393093109, -0.3118517994880676, -0.3498164415359497, -0.08506038784980774, -0.20270290970802307, -0.17557567358016968, 0.05849461257457733, -0.03073701076209545, -0.15075963735580444, -0.020298466086387634, 0.5994767546653748, 0.060186974704265594, 0.19920223951339722, 0.02526635304093361, -0.4625312387943268, -0.42742159962654114, -0.061734944581985474, 0.03706744685769081, 0.3987518548965454, -0.15916256606578827, 0.16445614397525787, 0.012947244569659233, -0.004292689263820648, -0.43596765398979187, 0.031307466328144073, -0.4266003370285034, -0.018036898225545883, -0.08434324711561203, 0.023849669843912125, 0.3092130124568939, 0.21308329701423645, 0.29234951734542847, 0.12799608707427979, -0.30219441652297974, -0.3937187194824219, 0.08653353154659271, 0.09008870273828506, -0.14846336841583252, -0.09343032538890839, 0.1611853688955307, 0.1144799292087555, -0.08965542912483215, -0.1671106219291687, 0.13754960894584656, 0.09744145721197128, -0.05776767432689667, -0.0011662635952234268, 0.03317973017692566, 0.11357127875089645, 0.06544121354818344, 0.03810965642333031, -0.12498892843723297, -0.06489604711532593, 0.08184729516506195, 0.06233051419258118, -0.31649965047836304, -0.06265197694301605, 0.21798862516880035, 0.2692120373249054, 0.1765723079442978, -0.25738468766212463, 0.18408872187137604, -0.08021324872970581, -0.28304219245910645, 0.12898407876491547, 0.2626402676105499, 0.10557858645915985, -0.10393302142620087, -0.05853545665740967, -0.00696902722120285, 0.3814464211463928, -0.24597476422786713, 0.062213074415922165, -0.19105800986289978, -0.11888439208269119, 0.3324759006500244, 0.20271265506744385, 0.03767793998122215, -0.49493420124053955, 0.7025297284126282, -0.0032799430191516876, 0.09852687269449234, -0.2750313878059387, 0.06997153162956238, 0.3853769600391388, -0.09488283097743988, 0.06583025306463242, 0.3065243363380432, -0.20568472146987915, 0.0029283538460731506, 0.1775141954421997, -0.12993362545967102, 0.3608565926551819, -0.3100311756134033, 0.22306671738624573, -0.21101057529449463, -0.5824345946311951, 0.43522578477859497, 0.19912779331207275, -0.1894797384738922, -0.1579817831516266, 0.21143674850463867, 0.006730489432811737, 0.12381017208099365, 0.1221541166305542, -0.5876337885856628, 0.054521504789590836, -0.18315264582633972, -0.2643299400806427, 0.04633136838674545, -0.25904372334480286, 0.06537827849388123, 0.08788329362869263, 0.17545495927333832, -0.03460018336772919, 0.14828503131866455, -0.06597074866294861, -0.07132065296173096, -0.2589384913444519, -0.050329938530921936, 0.05690690875053406, -0.019562505185604095, -0.226518452167511, 0.3146122694015503, 0.3966416120529175, 0.10995562374591827, 0.06532835960388184, 0.26924097537994385, 0.4736747443675995, 0.30895155668258667, 0.07838893681764603, 0.11792709678411484, -0.1571085900068283, -0.06981592625379562, -0.29738831520080566, 0.5326287746429443, 0.056090086698532104, 0.12402398884296417, 0.3892194330692291, 0.33868253231048584, -0.35118669271469116, -0.10180355608463287, -0.004990827292203903, -0.2602482736110687, -0.25271090865135193, 0.4092099964618683, 0.04140118509531021, 0.11650843173265457, -0.1890028864145279, 0.08631154149770737, -0.4327796995639801, -0.12798988819122314, -0.12977595627307892, -0.10070309042930603, 0.26383310556411743, -0.047427937388420105, 0.13595466315746307, -0.13304288685321808, 0.3954499065876007, 0.11508388072252274, 0.2237357795238495, -0.35402292013168335, -0.29979121685028076, -0.443930059671402, 0.2721990644931793, 0.11012555658817291, -0.08830752223730087, -0.28892645239830017, 0.4001695513725281, -0.13441091775894165, 0.005416510626673698, 0.3089107275009155, 0.20314213633537292, 0.21907810866832733, 0.012316066771745682, -0.15926919877529144, 0.17761847376823425, -0.16125626862049103, -0.17664110660552979, -0.0006082989275455475, -0.4943605661392212, 0.24998092651367188, 0.01212752889841795, 0.29278966784477234, 0.03693773224949837, -0.08022898435592651, -0.08585919439792633, 0.1793816238641739, 0.2793874442577362, 0.22420385479927063, 0.4025237262248993, -0.26060590147972107, -0.1163613572716713, -0.17698027193546295, 0.11177251487970352, 0.007236148230731487, 0.1602901816368103, 0.17387434840202332, 0.23797091841697693, 0.19372721016407013, -0.002248309552669525, -0.05700988322496414, 0.6293025016784668, 0.3451418876647949, -0.1713215857744217, 0.006119709461927414, 0.24794191122055054, -0.04957638308405876, 0.05936165153980255, -0.02183469757437706, 0.1271129846572876, 0.16174350678920746, 0.22889575362205505, -0.23515881597995758, -0.29199516773223877, 0.3922101855278015, -0.3292052447795868, -0.23996081948280334, -0.16823481023311615, 0.46806830167770386, -0.2205522656440735, -0.0836518332362175, -0.4472202956676483, 0.23536372184753418, 0.33403486013412476, 0.0017696619033813477, -0.10090698301792145, 0.39558759331703186, -0.2101522535085678, 0.04606184735894203, -0.14001600444316864, 0.25752827525138855, 0.15152159333229065, -0.052701279520988464, -0.09237298369407654, -0.29959636926651 ]
https://github.com/huggingface/datasets/issues/3269
coqa NonMatchingChecksumError
`wget https://nlp.stanford.edu/data/coqa/coqa-dev-v1.0.json` does work. So I suspect there might be some problem in `datasets`' networking code? Can you give me some snippet that simulates how `datasets` requests the resource which I can run on my end?
``` >>> from datasets import load_dataset >>> dataset = load_dataset("coqa") Downloading: 3.82kB [00:00, 1.26MB/s] Downloading: 1.79kB [00:00, 733kB/s] Using custom data configuration default Downloading and preparing dataset coqa/default (download: 55.40 MiB, generated: 18.35 MiB, post-processed: Unknown size, total: 73.75 MiB) to /Users/zhaofengw/.cache/huggingface/datasets/coqa/default/1.0.0/553ce70bfdcd15ff4b5f4abc4fc2f37137139cde1f58f4f60384a53a327716f0... Downloading: 100%|█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 222/222 [00:00<00:00, 1.38MB/s] Downloading: 100%|█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 222/222 [00:00<00:00, 1.32MB/s] 100%|█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 2/2 [00:01<00:00, 1.91it/s] 100%|███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 2/2 [00:00<00:00, 1117.44it/s] Traceback (most recent call last): File "<stdin>", line 1, in <module> File "/Users/zhaofengw/miniconda3/lib/python3.9/site-packages/datasets/load.py", line 1632, in load_dataset builder_instance.download_and_prepare( File "/Users/zhaofengw/miniconda3/lib/python3.9/site-packages/datasets/builder.py", line 607, in download_and_prepare self._download_and_prepare( File "/Users/zhaofengw/miniconda3/lib/python3.9/site-packages/datasets/builder.py", line 679, in _download_and_prepare verify_checksums( File "/Users/zhaofengw/miniconda3/lib/python3.9/site-packages/datasets/utils/info_utils.py", line 40, in verify_checksums raise NonMatchingChecksumError(error_msg + str(bad_urls)) datasets.utils.info_utils.NonMatchingChecksumError: Checksums didn't match for dataset source files: ['https://nlp.stanford.edu/data/coqa/coqa-train-v1.0.json', 'https://nlp.stanford.edu/data/coqa/coqa-dev-v1.0.json'] ```
36
coqa NonMatchingChecksumError ``` >>> from datasets import load_dataset >>> dataset = load_dataset("coqa") Downloading: 3.82kB [00:00, 1.26MB/s] Downloading: 1.79kB [00:00, 733kB/s] Using custom data configuration default Downloading and preparing dataset coqa/default (download: 55.40 MiB, generated: 18.35 MiB, post-processed: Unknown size, total: 73.75 MiB) to /Users/zhaofengw/.cache/huggingface/datasets/coqa/default/1.0.0/553ce70bfdcd15ff4b5f4abc4fc2f37137139cde1f58f4f60384a53a327716f0... Downloading: 100%|█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 222/222 [00:00<00:00, 1.38MB/s] Downloading: 100%|█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 222/222 [00:00<00:00, 1.32MB/s] 100%|█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 2/2 [00:01<00:00, 1.91it/s] 100%|███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 2/2 [00:00<00:00, 1117.44it/s] Traceback (most recent call last): File "<stdin>", line 1, in <module> File "/Users/zhaofengw/miniconda3/lib/python3.9/site-packages/datasets/load.py", line 1632, in load_dataset builder_instance.download_and_prepare( File "/Users/zhaofengw/miniconda3/lib/python3.9/site-packages/datasets/builder.py", line 607, in download_and_prepare self._download_and_prepare( File "/Users/zhaofengw/miniconda3/lib/python3.9/site-packages/datasets/builder.py", line 679, in _download_and_prepare verify_checksums( File "/Users/zhaofengw/miniconda3/lib/python3.9/site-packages/datasets/utils/info_utils.py", line 40, in verify_checksums raise NonMatchingChecksumError(error_msg + str(bad_urls)) datasets.utils.info_utils.NonMatchingChecksumError: Checksums didn't match for dataset source files: ['https://nlp.stanford.edu/data/coqa/coqa-train-v1.0.json', 'https://nlp.stanford.edu/data/coqa/coqa-dev-v1.0.json'] ``` `wget https://nlp.stanford.edu/data/coqa/coqa-dev-v1.0.json` does work. So I suspect there might be some problem in `datasets`' networking code? Can you give me some snippet that simulates how `datasets` requests the resource which I can run on my end?
[ -0.2934424877166748, -0.16965605318546295, -0.23772868514060974, 0.1443958878517151, 0.17530269920825958, -0.03220370039343834, 0.10853204131126404, 0.34697225689888, 0.1612992137670517, 0.34507638216018677, -0.12422356754541397, 0.016303548589348793, 0.13270717859268188, 0.3179677724838257, -0.24001473188400269, 0.41088542342185974, -0.03730381280183792, 0.130801722407341, -0.13652393221855164, -0.08464013040065765, -0.16203461587429047, 0.16598115861415863, -0.01582520455121994, -0.21113817393779755, 0.02861746959388256, -0.10914026945829391, 0.10121777653694153, 0.14800600707530975, -0.2446722537279129, -0.28355634212493896, 0.09498230367898941, 0.13728395104408264, -0.2691483199596405, 0.30232828855514526, -0.00010783330799313262, -0.0027384981513023376, 0.3951041102409363, -0.039331186562776566, -0.3947451412677765, 0.14915716648101807, -0.5660779476165771, -0.3265206217765808, -0.04970679432153702, -0.17008115351200104, -0.0475759357213974, 0.23689433932304382, -0.06580795347690582, -0.08954586833715439, 0.2255401611328125, 0.3060496151447296, 0.33020082116127014, 0.5339956283569336, -0.10401947796344757, -0.16375169157981873, 0.07236073911190033, 0.031290773302316666, -0.12435615807771683, 0.2001531571149826, 0.21609294414520264, 0.1913791298866272, -0.27258944511413574, 0.3140356242656708, -0.0051485151052474976, 0.09484364092350006, -0.17975234985351562, -0.14494965970516205, 0.12952551245689392, -0.10418336093425751, 0.5087623596191406, 0.2842763364315033, 0.27493998408317566, -0.176284521818161, -0.2551177740097046, -0.07698702812194824, -0.20052854716777802, -0.3510757386684418, 0.24585279822349548, 0.14968642592430115, -0.340237557888031, -0.17369966208934784, -0.2658529281616211, 0.3822205364704132, 0.03578901290893555, -0.11176595091819763, -0.2776526212692261, -0.06412157416343689, -0.1459256261587143, -0.10768140107393265, 0.19801907241344452, -0.18681031465530396, 0.10265035182237625, -0.10998208820819855, -0.2069360315799713, 0.039076365530490875, -0.5156916379928589, -0.14970144629478455, 0.31265756487846375, 0.37973666191101074, 0.3413914740085602, 0.22981014847755432, 0.18982462584972382, 0.21446359157562256, 0.026291899383068085, -0.021310336887836456, -0.15561148524284363, 0.3892468512058258, 0.011136263608932495, -0.24692974984645844, 0.22724728286266327, 0.3603816330432892, -0.08430300652980804, 0.035563740879297256, 0.09798380732536316, -0.310355007648468, 0.16753895580768585, 0.25340837240219116, 0.06962268054485321, -0.4281231462955475, -0.4341353178024292, 0.149600550532341, 0.1567331850528717, 0.06822070479393005, 0.18170641362667084, 0.5912106037139893, -0.03076007217168808, -0.06389985978603363, -0.16616404056549072, 0.004891406744718552, -0.30665868520736694, -0.1340271681547165, -0.371019572019577, 0.031862448900938034, -0.14453153312206268, -0.007327264174818993, 0.1801055371761322, -0.11212418973445892, 0.23918317258358002, -0.1675238162279129, 0.33850133419036865, -0.021233825013041496, 0.02179025299847126, -0.2919423282146454, 0.0382426381111145, 0.4026385545730591, -0.01665576733648777, 0.04756862670183182, 0.28407829999923706, -0.0009175539016723633, -0.1435098946094513, -0.03872884809970856, -0.03240456432104111, -0.26845183968544006, 0.10987308621406555, 0.3479248583316803, -0.07606720924377441, -0.0021591894328594208, 0.2647094130516052, -0.20924822986125946, 0.3453936278820038, -0.06105532497167587, 0.13540741801261902, 0.01325797289609909, -0.16954652965068817, -0.2886042594909668, 0.16366930305957794, 0.4162479043006897, -0.07393622398376465, 0.032692380249500275, 0.038964398205280304, -0.12756450474262238, 0.17309290170669556, 0.149419367313385, 0.0685000866651535, 0.09921149909496307, -0.21407602727413177, -0.10196132957935333, 0.21608251333236694, -0.3309718668460846, -0.6776994466781616, 0.09962806105613708, 0.045031264424324036, 0.1138063296675682, 0.15592333674430847, 0.021511884406208992, 0.09797555953264236, -0.03561897203326225, 0.07381267100572586, -0.0027298852801322937, 0.031051501631736755, 0.11351162940263748, -0.39217624068260193, -0.31785261631011963, -0.009648721665143967, 0.10581538081169128, 0.16304001212120056, -0.05722411721944809, 0.29456934332847595, -0.45781758427619934, 0.20404884219169617, -0.09221106767654419, -0.011318291537463665, 0.12655538320541382, 0.18324358761310577, -0.20327387750148773, -0.04442282021045685, 0.004791315644979477, -0.2321658432483673, 0.2732808291912079, -0.44594860076904297, 0.06045011430978775, -0.18885435163974762, -0.26077142357826233, -0.3654577136039734, -0.0270660612732172, -0.21089313924312592, -0.14423216879367828, 0.30756711959838867, 0.273681640625, 0.27484431862831116, 0.07274362444877625, 0.11723446846008301, 0.40884360671043396, -0.1587977558374405, -0.04461226612329483, -0.31232354044914246, 0.043137192726135254, -0.09874071925878525, -0.07750507444143295, -0.03355168551206589, 0.3281101882457733, 0.15009266138076782, -0.022737614810466766, -0.07894660532474518, 0.30079612135887146, 0.17490367591381073, 0.1836465299129486, -0.08949295431375504, 0.127378910779953, -0.0025923699140548706, 0.049132224172353745, 0.0637911930680275, 0.16952727735042572, 0.07616879045963287, -0.014355748891830444, -0.21904432773590088, 0.49147361516952515, -0.1414717584848404, 0.17851026356220245, 0.1221497654914856, -0.14977209270000458, 0.24572929739952087, -0.15667659044265747, -0.11089283972978592, -0.11869918555021286, 0.23188894987106323, 0.17755544185638428, 0.04459628090262413, 0.10382231324911118, -0.11840202659368515, 0.113840252161026, 0.3319092392921448, -0.06497618556022644, 0.0596817247569561, 0.1184130534529686, 0.09951990842819214, -0.09228239208459854, 0.07496040314435959, 0.3611769676208496, 0.4361034631729126, 0.19483688473701477, 0.17049480974674225, -0.05781761556863785, -0.00705199409276247, -0.16996005177497864, 0.12952379882335663, 0.12153053283691406, -0.03822976350784302, 0.4889443516731262, 0.23847328126430511, -0.19473984837532043, -0.48423442244529724, -0.17633193731307983, -0.07251535356044769, 0.20507536828517914, -0.29004234075546265, 0.048694491386413574, -0.17661550641059875, -0.24514919519424438, 0.018816251307725906, -0.23127946257591248, 0.0636468231678009, -0.40280500054359436, 0.12155710905790329, 0.18837758898735046, -0.06813565641641617, 0.24740423262119293, -0.3666554391384125, 0.17079229652881622, 0.20224541425704956, -0.23210398852825165, -0.1817013919353485, 0.2013235241174698, -0.10452926903963089, 0.2084091603755951, 0.18242862820625305, 0.049002859741449356, 0.5008370280265808, -0.33716222643852234, 0.0265551395714283, -0.2955659031867981, -0.22314369678497314, -0.04286115616559982, -0.0206168070435524, 0.02589571662247181, 0.23955890536308289, 0.1678852140903473, -0.09732411056756973, -0.16121135652065277, 0.1723998636007309, -0.03255085274577141, -0.42428526282310486, 0.07566442340612411, -0.20237238705158234, 0.07886164635419846, -0.18486922979354858, -0.041290752589702606, -0.2166948914527893, -0.4261755645275116, 0.10516571998596191, 0.1664564609527588, 0.21152444183826447, 0.28348469734191895, 0.030940603464841843, 0.18370208144187927, 0.06931445002555847, 0.2948223650455475, -0.35511231422424316, -0.6185640692710876, 0.30382198095321655, -0.11850994825363159, -0.3948781490325928, -0.0802287831902504, -0.29940736293792725, 0.5251651406288147, -0.05346399173140526, -0.25605493783950806, -0.2709777355194092, -0.43960779905319214, 0.19161812961101532, 0.058311913162469864, -0.09370128065347672, 0.4126143455505371, -0.019693177193403244, -0.30627769231796265, -0.05406895652413368, -0.1069871336221695, 0.10140863060951233, -0.07748894393444061, 0.2577381432056427, -0.22634556889533997, 0.4307520091533661, 0.0870751142501831, 0.37161386013031006, 0.39679551124572754, -0.04324616864323616, 0.2767592668533325, -0.0012930259108543396, 0.366716593503952, -0.29272159934043884, -0.3451104760169983, 0.11048631370067596, -0.010120302438735962, -0.10813893377780914, 0.17037226259708405, -0.049006424844264984, 0.1882525533437729, -0.0010115094482898712, -0.04595613479614258, -0.3217918574810028, -0.2026652693748474, -0.029957303777337074, -0.011170759797096252, 0.20619788765907288, -0.0590057373046875, 0.1796014904975891, -0.07419231534004211, -0.05333031713962555, 0.07544931769371033, 0.23053954541683197, -0.1735401153564453, -0.22238445281982422, -0.17990374565124512, 0.02114269882440567, -0.5448867082595825, 0.3739597797393799, 0.14488767087459564, 0.19165657460689545, -0.18221527338027954, -0.21478384733200073, 0.2275918871164322, -0.27609628438949585, 0.5989823937416077, 0.019277457147836685, 0.06914625316858292, 0.061302151530981064, -0.0501546785235405, -0.10577737540006638, -0.055776819586753845, -0.03336707502603531, -0.0936836525797844, 0.20603084564208984, -0.0033683478832244873, -0.42974868416786194, 0.006628898903727531, 0.15482155978679657, 0.19221405684947968, -0.07304496318101883, -0.08640987426042557, -0.44292178750038147, -0.4385754466056824, -0.40330877900123596, 0.2203482687473297, -0.19638533890247345, 0.3476666510105133, -0.25391799211502075, -0.04840502142906189, 0.024263707920908928, -0.10065814852714539, 0.2695053815841675, 0.1647171527147293, 0.22914716601371765, 0.110596664249897, 0.22661995887756348, -0.24429190158843994, 0.13070419430732727, 0.1984192579984665, 0.5014007091522217, 0.049889978021383286, -0.03833119571208954, 0.04114202409982681, -0.09934808313846588, -0.08475775271654129, 0.1514367312192917, -0.07930830866098404, 0.06131284311413765, 0.08193901181221008, 0.17971403896808624, 0.007807188667356968, 0.06768348813056946, 0.191093310713768, 0.07904420047998428, -0.4913080930709839, 0.00012611597776412964, 0.18332332372665405, -0.1703171283006668, -0.12918595969676971, 0.22338254749774933, -0.07339797914028168, -0.06663050502538681, 0.10432832688093185, 0.15409207344055176, 0.9350462555885315, -0.014139235019683838, 0.058612577617168427, 0.29328739643096924, -0.079803965985775, 0.12429782748222351, -0.2610677480697632, 0.09160012751817703, -0.308572918176651, -0.4105004072189331, -0.08249296247959137, -0.13053175806999207, 0.2970247268676758, -0.14368225634098053, -0.1895328313112259, 0.23112767934799194, -0.0813201293349266, 0.11333084106445312, 0.008750002831220627, 0.03075598180294037, -0.40086105465888977, -0.04071492329239845, 0.01718025654554367, 0.2892783284187317, 0.13341988623142242, 0.20583026111125946, -0.12051525712013245, 0.05827419087290764, -0.10158440470695496, -0.24899086356163025, -0.13879992067813873, -0.039493925869464874, -0.19463592767715454, 0.03599635511636734, 0.16839082539081573, -0.1722528636455536, -0.23880907893180847, 0.038397498428821564, 0.21403709053993225, 0.18490250408649445, -0.15437829494476318, 0.15479524433612823, 0.31905168294906616, 0.2688971757888794, 0.10504724830389023, -0.12844356894493103, 0.07145668566226959, -0.12665459513664246, -0.2375257909297943, 0.17874372005462646, -0.03149297088384628, -0.19412989914417267, 0.08989214897155762, 0.20072123408317566, 0.13910531997680664, -0.39492350816726685, -0.05906708911061287, -0.19327202439308167, -0.06835195422172546, -0.2689076364040375, 0.2183004766702652, 0.12494394183158875, -0.1642821729183197, 0.3021155297756195, -0.2200939804315567, -0.381645143032074, -0.19553539156913757, 0.4039522707462311, 0.059818439185619354, -0.055473219603300095, 0.39847618341445923, -0.1549912393093109, -0.3118517994880676, -0.3498164415359497, -0.08506038784980774, -0.20270290970802307, -0.17557567358016968, 0.05849461257457733, -0.03073701076209545, -0.15075963735580444, -0.020298466086387634, 0.5994767546653748, 0.060186974704265594, 0.19920223951339722, 0.02526635304093361, -0.4625312387943268, -0.42742159962654114, -0.061734944581985474, 0.03706744685769081, 0.3987518548965454, -0.15916256606578827, 0.16445614397525787, 0.012947244569659233, -0.004292689263820648, -0.43596765398979187, 0.031307466328144073, -0.4266003370285034, -0.018036898225545883, -0.08434324711561203, 0.023849669843912125, 0.3092130124568939, 0.21308329701423645, 0.29234951734542847, 0.12799608707427979, -0.30219441652297974, -0.3937187194824219, 0.08653353154659271, 0.09008870273828506, -0.14846336841583252, -0.09343032538890839, 0.1611853688955307, 0.1144799292087555, -0.08965542912483215, -0.1671106219291687, 0.13754960894584656, 0.09744145721197128, -0.05776767432689667, -0.0011662635952234268, 0.03317973017692566, 0.11357127875089645, 0.06544121354818344, 0.03810965642333031, -0.12498892843723297, -0.06489604711532593, 0.08184729516506195, 0.06233051419258118, -0.31649965047836304, -0.06265197694301605, 0.21798862516880035, 0.2692120373249054, 0.1765723079442978, -0.25738468766212463, 0.18408872187137604, -0.08021324872970581, -0.28304219245910645, 0.12898407876491547, 0.2626402676105499, 0.10557858645915985, -0.10393302142620087, -0.05853545665740967, -0.00696902722120285, 0.3814464211463928, -0.24597476422786713, 0.062213074415922165, -0.19105800986289978, -0.11888439208269119, 0.3324759006500244, 0.20271265506744385, 0.03767793998122215, -0.49493420124053955, 0.7025297284126282, -0.0032799430191516876, 0.09852687269449234, -0.2750313878059387, 0.06997153162956238, 0.3853769600391388, -0.09488283097743988, 0.06583025306463242, 0.3065243363380432, -0.20568472146987915, 0.0029283538460731506, 0.1775141954421997, -0.12993362545967102, 0.3608565926551819, -0.3100311756134033, 0.22306671738624573, -0.21101057529449463, -0.5824345946311951, 0.43522578477859497, 0.19912779331207275, -0.1894797384738922, -0.1579817831516266, 0.21143674850463867, 0.006730489432811737, 0.12381017208099365, 0.1221541166305542, -0.5876337885856628, 0.054521504789590836, -0.18315264582633972, -0.2643299400806427, 0.04633136838674545, -0.25904372334480286, 0.06537827849388123, 0.08788329362869263, 0.17545495927333832, -0.03460018336772919, 0.14828503131866455, -0.06597074866294861, -0.07132065296173096, -0.2589384913444519, -0.050329938530921936, 0.05690690875053406, -0.019562505185604095, -0.226518452167511, 0.3146122694015503, 0.3966416120529175, 0.10995562374591827, 0.06532835960388184, 0.26924097537994385, 0.4736747443675995, 0.30895155668258667, 0.07838893681764603, 0.11792709678411484, -0.1571085900068283, -0.06981592625379562, -0.29738831520080566, 0.5326287746429443, 0.056090086698532104, 0.12402398884296417, 0.3892194330692291, 0.33868253231048584, -0.35118669271469116, -0.10180355608463287, -0.004990827292203903, -0.2602482736110687, -0.25271090865135193, 0.4092099964618683, 0.04140118509531021, 0.11650843173265457, -0.1890028864145279, 0.08631154149770737, -0.4327796995639801, -0.12798988819122314, -0.12977595627307892, -0.10070309042930603, 0.26383310556411743, -0.047427937388420105, 0.13595466315746307, -0.13304288685321808, 0.3954499065876007, 0.11508388072252274, 0.2237357795238495, -0.35402292013168335, -0.29979121685028076, -0.443930059671402, 0.2721990644931793, 0.11012555658817291, -0.08830752223730087, -0.28892645239830017, 0.4001695513725281, -0.13441091775894165, 0.005416510626673698, 0.3089107275009155, 0.20314213633537292, 0.21907810866832733, 0.012316066771745682, -0.15926919877529144, 0.17761847376823425, -0.16125626862049103, -0.17664110660552979, -0.0006082989275455475, -0.4943605661392212, 0.24998092651367188, 0.01212752889841795, 0.29278966784477234, 0.03693773224949837, -0.08022898435592651, -0.08585919439792633, 0.1793816238641739, 0.2793874442577362, 0.22420385479927063, 0.4025237262248993, -0.26060590147972107, -0.1163613572716713, -0.17698027193546295, 0.11177251487970352, 0.007236148230731487, 0.1602901816368103, 0.17387434840202332, 0.23797091841697693, 0.19372721016407013, -0.002248309552669525, -0.05700988322496414, 0.6293025016784668, 0.3451418876647949, -0.1713215857744217, 0.006119709461927414, 0.24794191122055054, -0.04957638308405876, 0.05936165153980255, -0.02183469757437706, 0.1271129846572876, 0.16174350678920746, 0.22889575362205505, -0.23515881597995758, -0.29199516773223877, 0.3922101855278015, -0.3292052447795868, -0.23996081948280334, -0.16823481023311615, 0.46806830167770386, -0.2205522656440735, -0.0836518332362175, -0.4472202956676483, 0.23536372184753418, 0.33403486013412476, 0.0017696619033813477, -0.10090698301792145, 0.39558759331703186, -0.2101522535085678, 0.04606184735894203, -0.14001600444316864, 0.25752827525138855, 0.15152159333229065, -0.052701279520988464, -0.09237298369407654, -0.29959636926651 ]
https://github.com/huggingface/datasets/issues/3269
coqa NonMatchingChecksumError
Ok This is an issue with the server that hosts the data at `https://nlp.stanford.edu/nlp/data` that randomly returns 503 (by trying several times it also happens on my side), hopefully it can be fixed soon. I'll try to reach the people in charge of hosting the data
``` >>> from datasets import load_dataset >>> dataset = load_dataset("coqa") Downloading: 3.82kB [00:00, 1.26MB/s] Downloading: 1.79kB [00:00, 733kB/s] Using custom data configuration default Downloading and preparing dataset coqa/default (download: 55.40 MiB, generated: 18.35 MiB, post-processed: Unknown size, total: 73.75 MiB) to /Users/zhaofengw/.cache/huggingface/datasets/coqa/default/1.0.0/553ce70bfdcd15ff4b5f4abc4fc2f37137139cde1f58f4f60384a53a327716f0... Downloading: 100%|█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 222/222 [00:00<00:00, 1.38MB/s] Downloading: 100%|█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 222/222 [00:00<00:00, 1.32MB/s] 100%|█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 2/2 [00:01<00:00, 1.91it/s] 100%|███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 2/2 [00:00<00:00, 1117.44it/s] Traceback (most recent call last): File "<stdin>", line 1, in <module> File "/Users/zhaofengw/miniconda3/lib/python3.9/site-packages/datasets/load.py", line 1632, in load_dataset builder_instance.download_and_prepare( File "/Users/zhaofengw/miniconda3/lib/python3.9/site-packages/datasets/builder.py", line 607, in download_and_prepare self._download_and_prepare( File "/Users/zhaofengw/miniconda3/lib/python3.9/site-packages/datasets/builder.py", line 679, in _download_and_prepare verify_checksums( File "/Users/zhaofengw/miniconda3/lib/python3.9/site-packages/datasets/utils/info_utils.py", line 40, in verify_checksums raise NonMatchingChecksumError(error_msg + str(bad_urls)) datasets.utils.info_utils.NonMatchingChecksumError: Checksums didn't match for dataset source files: ['https://nlp.stanford.edu/data/coqa/coqa-train-v1.0.json', 'https://nlp.stanford.edu/data/coqa/coqa-dev-v1.0.json'] ```
46
coqa NonMatchingChecksumError ``` >>> from datasets import load_dataset >>> dataset = load_dataset("coqa") Downloading: 3.82kB [00:00, 1.26MB/s] Downloading: 1.79kB [00:00, 733kB/s] Using custom data configuration default Downloading and preparing dataset coqa/default (download: 55.40 MiB, generated: 18.35 MiB, post-processed: Unknown size, total: 73.75 MiB) to /Users/zhaofengw/.cache/huggingface/datasets/coqa/default/1.0.0/553ce70bfdcd15ff4b5f4abc4fc2f37137139cde1f58f4f60384a53a327716f0... Downloading: 100%|█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 222/222 [00:00<00:00, 1.38MB/s] Downloading: 100%|█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 222/222 [00:00<00:00, 1.32MB/s] 100%|█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 2/2 [00:01<00:00, 1.91it/s] 100%|███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 2/2 [00:00<00:00, 1117.44it/s] Traceback (most recent call last): File "<stdin>", line 1, in <module> File "/Users/zhaofengw/miniconda3/lib/python3.9/site-packages/datasets/load.py", line 1632, in load_dataset builder_instance.download_and_prepare( File "/Users/zhaofengw/miniconda3/lib/python3.9/site-packages/datasets/builder.py", line 607, in download_and_prepare self._download_and_prepare( File "/Users/zhaofengw/miniconda3/lib/python3.9/site-packages/datasets/builder.py", line 679, in _download_and_prepare verify_checksums( File "/Users/zhaofengw/miniconda3/lib/python3.9/site-packages/datasets/utils/info_utils.py", line 40, in verify_checksums raise NonMatchingChecksumError(error_msg + str(bad_urls)) datasets.utils.info_utils.NonMatchingChecksumError: Checksums didn't match for dataset source files: ['https://nlp.stanford.edu/data/coqa/coqa-train-v1.0.json', 'https://nlp.stanford.edu/data/coqa/coqa-dev-v1.0.json'] ``` Ok This is an issue with the server that hosts the data at `https://nlp.stanford.edu/nlp/data` that randomly returns 503 (by trying several times it also happens on my side), hopefully it can be fixed soon. I'll try to reach the people in charge of hosting the data
[ -0.2934424877166748, -0.16965605318546295, -0.23772868514060974, 0.1443958878517151, 0.17530269920825958, -0.03220370039343834, 0.10853204131126404, 0.34697225689888, 0.1612992137670517, 0.34507638216018677, -0.12422356754541397, 0.016303548589348793, 0.13270717859268188, 0.3179677724838257, -0.24001473188400269, 0.41088542342185974, -0.03730381280183792, 0.130801722407341, -0.13652393221855164, -0.08464013040065765, -0.16203461587429047, 0.16598115861415863, -0.01582520455121994, -0.21113817393779755, 0.02861746959388256, -0.10914026945829391, 0.10121777653694153, 0.14800600707530975, -0.2446722537279129, -0.28355634212493896, 0.09498230367898941, 0.13728395104408264, -0.2691483199596405, 0.30232828855514526, -0.00010783330799313262, -0.0027384981513023376, 0.3951041102409363, -0.039331186562776566, -0.3947451412677765, 0.14915716648101807, -0.5660779476165771, -0.3265206217765808, -0.04970679432153702, -0.17008115351200104, -0.0475759357213974, 0.23689433932304382, -0.06580795347690582, -0.08954586833715439, 0.2255401611328125, 0.3060496151447296, 0.33020082116127014, 0.5339956283569336, -0.10401947796344757, -0.16375169157981873, 0.07236073911190033, 0.031290773302316666, -0.12435615807771683, 0.2001531571149826, 0.21609294414520264, 0.1913791298866272, -0.27258944511413574, 0.3140356242656708, -0.0051485151052474976, 0.09484364092350006, -0.17975234985351562, -0.14494965970516205, 0.12952551245689392, -0.10418336093425751, 0.5087623596191406, 0.2842763364315033, 0.27493998408317566, -0.176284521818161, -0.2551177740097046, -0.07698702812194824, -0.20052854716777802, -0.3510757386684418, 0.24585279822349548, 0.14968642592430115, -0.340237557888031, -0.17369966208934784, -0.2658529281616211, 0.3822205364704132, 0.03578901290893555, -0.11176595091819763, -0.2776526212692261, -0.06412157416343689, -0.1459256261587143, -0.10768140107393265, 0.19801907241344452, -0.18681031465530396, 0.10265035182237625, -0.10998208820819855, -0.2069360315799713, 0.039076365530490875, -0.5156916379928589, -0.14970144629478455, 0.31265756487846375, 0.37973666191101074, 0.3413914740085602, 0.22981014847755432, 0.18982462584972382, 0.21446359157562256, 0.026291899383068085, -0.021310336887836456, -0.15561148524284363, 0.3892468512058258, 0.011136263608932495, -0.24692974984645844, 0.22724728286266327, 0.3603816330432892, -0.08430300652980804, 0.035563740879297256, 0.09798380732536316, -0.310355007648468, 0.16753895580768585, 0.25340837240219116, 0.06962268054485321, -0.4281231462955475, -0.4341353178024292, 0.149600550532341, 0.1567331850528717, 0.06822070479393005, 0.18170641362667084, 0.5912106037139893, -0.03076007217168808, -0.06389985978603363, -0.16616404056549072, 0.004891406744718552, -0.30665868520736694, -0.1340271681547165, -0.371019572019577, 0.031862448900938034, -0.14453153312206268, -0.007327264174818993, 0.1801055371761322, -0.11212418973445892, 0.23918317258358002, -0.1675238162279129, 0.33850133419036865, -0.021233825013041496, 0.02179025299847126, -0.2919423282146454, 0.0382426381111145, 0.4026385545730591, -0.01665576733648777, 0.04756862670183182, 0.28407829999923706, -0.0009175539016723633, -0.1435098946094513, -0.03872884809970856, -0.03240456432104111, -0.26845183968544006, 0.10987308621406555, 0.3479248583316803, -0.07606720924377441, -0.0021591894328594208, 0.2647094130516052, -0.20924822986125946, 0.3453936278820038, -0.06105532497167587, 0.13540741801261902, 0.01325797289609909, -0.16954652965068817, -0.2886042594909668, 0.16366930305957794, 0.4162479043006897, -0.07393622398376465, 0.032692380249500275, 0.038964398205280304, -0.12756450474262238, 0.17309290170669556, 0.149419367313385, 0.0685000866651535, 0.09921149909496307, -0.21407602727413177, -0.10196132957935333, 0.21608251333236694, -0.3309718668460846, -0.6776994466781616, 0.09962806105613708, 0.045031264424324036, 0.1138063296675682, 0.15592333674430847, 0.021511884406208992, 0.09797555953264236, -0.03561897203326225, 0.07381267100572586, -0.0027298852801322937, 0.031051501631736755, 0.11351162940263748, -0.39217624068260193, -0.31785261631011963, -0.009648721665143967, 0.10581538081169128, 0.16304001212120056, -0.05722411721944809, 0.29456934332847595, -0.45781758427619934, 0.20404884219169617, -0.09221106767654419, -0.011318291537463665, 0.12655538320541382, 0.18324358761310577, -0.20327387750148773, -0.04442282021045685, 0.004791315644979477, -0.2321658432483673, 0.2732808291912079, -0.44594860076904297, 0.06045011430978775, -0.18885435163974762, -0.26077142357826233, -0.3654577136039734, -0.0270660612732172, -0.21089313924312592, -0.14423216879367828, 0.30756711959838867, 0.273681640625, 0.27484431862831116, 0.07274362444877625, 0.11723446846008301, 0.40884360671043396, -0.1587977558374405, -0.04461226612329483, -0.31232354044914246, 0.043137192726135254, -0.09874071925878525, -0.07750507444143295, -0.03355168551206589, 0.3281101882457733, 0.15009266138076782, -0.022737614810466766, -0.07894660532474518, 0.30079612135887146, 0.17490367591381073, 0.1836465299129486, -0.08949295431375504, 0.127378910779953, -0.0025923699140548706, 0.049132224172353745, 0.0637911930680275, 0.16952727735042572, 0.07616879045963287, -0.014355748891830444, -0.21904432773590088, 0.49147361516952515, -0.1414717584848404, 0.17851026356220245, 0.1221497654914856, -0.14977209270000458, 0.24572929739952087, -0.15667659044265747, -0.11089283972978592, -0.11869918555021286, 0.23188894987106323, 0.17755544185638428, 0.04459628090262413, 0.10382231324911118, -0.11840202659368515, 0.113840252161026, 0.3319092392921448, -0.06497618556022644, 0.0596817247569561, 0.1184130534529686, 0.09951990842819214, -0.09228239208459854, 0.07496040314435959, 0.3611769676208496, 0.4361034631729126, 0.19483688473701477, 0.17049480974674225, -0.05781761556863785, -0.00705199409276247, -0.16996005177497864, 0.12952379882335663, 0.12153053283691406, -0.03822976350784302, 0.4889443516731262, 0.23847328126430511, -0.19473984837532043, -0.48423442244529724, -0.17633193731307983, -0.07251535356044769, 0.20507536828517914, -0.29004234075546265, 0.048694491386413574, -0.17661550641059875, -0.24514919519424438, 0.018816251307725906, -0.23127946257591248, 0.0636468231678009, -0.40280500054359436, 0.12155710905790329, 0.18837758898735046, -0.06813565641641617, 0.24740423262119293, -0.3666554391384125, 0.17079229652881622, 0.20224541425704956, -0.23210398852825165, -0.1817013919353485, 0.2013235241174698, -0.10452926903963089, 0.2084091603755951, 0.18242862820625305, 0.049002859741449356, 0.5008370280265808, -0.33716222643852234, 0.0265551395714283, -0.2955659031867981, -0.22314369678497314, -0.04286115616559982, -0.0206168070435524, 0.02589571662247181, 0.23955890536308289, 0.1678852140903473, -0.09732411056756973, -0.16121135652065277, 0.1723998636007309, -0.03255085274577141, -0.42428526282310486, 0.07566442340612411, -0.20237238705158234, 0.07886164635419846, -0.18486922979354858, -0.041290752589702606, -0.2166948914527893, -0.4261755645275116, 0.10516571998596191, 0.1664564609527588, 0.21152444183826447, 0.28348469734191895, 0.030940603464841843, 0.18370208144187927, 0.06931445002555847, 0.2948223650455475, -0.35511231422424316, -0.6185640692710876, 0.30382198095321655, -0.11850994825363159, -0.3948781490325928, -0.0802287831902504, -0.29940736293792725, 0.5251651406288147, -0.05346399173140526, -0.25605493783950806, -0.2709777355194092, -0.43960779905319214, 0.19161812961101532, 0.058311913162469864, -0.09370128065347672, 0.4126143455505371, -0.019693177193403244, -0.30627769231796265, -0.05406895652413368, -0.1069871336221695, 0.10140863060951233, -0.07748894393444061, 0.2577381432056427, -0.22634556889533997, 0.4307520091533661, 0.0870751142501831, 0.37161386013031006, 0.39679551124572754, -0.04324616864323616, 0.2767592668533325, -0.0012930259108543396, 0.366716593503952, -0.29272159934043884, -0.3451104760169983, 0.11048631370067596, -0.010120302438735962, -0.10813893377780914, 0.17037226259708405, -0.049006424844264984, 0.1882525533437729, -0.0010115094482898712, -0.04595613479614258, -0.3217918574810028, -0.2026652693748474, -0.029957303777337074, -0.011170759797096252, 0.20619788765907288, -0.0590057373046875, 0.1796014904975891, -0.07419231534004211, -0.05333031713962555, 0.07544931769371033, 0.23053954541683197, -0.1735401153564453, -0.22238445281982422, -0.17990374565124512, 0.02114269882440567, -0.5448867082595825, 0.3739597797393799, 0.14488767087459564, 0.19165657460689545, -0.18221527338027954, -0.21478384733200073, 0.2275918871164322, -0.27609628438949585, 0.5989823937416077, 0.019277457147836685, 0.06914625316858292, 0.061302151530981064, -0.0501546785235405, -0.10577737540006638, -0.055776819586753845, -0.03336707502603531, -0.0936836525797844, 0.20603084564208984, -0.0033683478832244873, -0.42974868416786194, 0.006628898903727531, 0.15482155978679657, 0.19221405684947968, -0.07304496318101883, -0.08640987426042557, -0.44292178750038147, -0.4385754466056824, -0.40330877900123596, 0.2203482687473297, -0.19638533890247345, 0.3476666510105133, -0.25391799211502075, -0.04840502142906189, 0.024263707920908928, -0.10065814852714539, 0.2695053815841675, 0.1647171527147293, 0.22914716601371765, 0.110596664249897, 0.22661995887756348, -0.24429190158843994, 0.13070419430732727, 0.1984192579984665, 0.5014007091522217, 0.049889978021383286, -0.03833119571208954, 0.04114202409982681, -0.09934808313846588, -0.08475775271654129, 0.1514367312192917, -0.07930830866098404, 0.06131284311413765, 0.08193901181221008, 0.17971403896808624, 0.007807188667356968, 0.06768348813056946, 0.191093310713768, 0.07904420047998428, -0.4913080930709839, 0.00012611597776412964, 0.18332332372665405, -0.1703171283006668, -0.12918595969676971, 0.22338254749774933, -0.07339797914028168, -0.06663050502538681, 0.10432832688093185, 0.15409207344055176, 0.9350462555885315, -0.014139235019683838, 0.058612577617168427, 0.29328739643096924, -0.079803965985775, 0.12429782748222351, -0.2610677480697632, 0.09160012751817703, -0.308572918176651, -0.4105004072189331, -0.08249296247959137, -0.13053175806999207, 0.2970247268676758, -0.14368225634098053, -0.1895328313112259, 0.23112767934799194, -0.0813201293349266, 0.11333084106445312, 0.008750002831220627, 0.03075598180294037, -0.40086105465888977, -0.04071492329239845, 0.01718025654554367, 0.2892783284187317, 0.13341988623142242, 0.20583026111125946, -0.12051525712013245, 0.05827419087290764, -0.10158440470695496, -0.24899086356163025, -0.13879992067813873, -0.039493925869464874, -0.19463592767715454, 0.03599635511636734, 0.16839082539081573, -0.1722528636455536, -0.23880907893180847, 0.038397498428821564, 0.21403709053993225, 0.18490250408649445, -0.15437829494476318, 0.15479524433612823, 0.31905168294906616, 0.2688971757888794, 0.10504724830389023, -0.12844356894493103, 0.07145668566226959, -0.12665459513664246, -0.2375257909297943, 0.17874372005462646, -0.03149297088384628, -0.19412989914417267, 0.08989214897155762, 0.20072123408317566, 0.13910531997680664, -0.39492350816726685, -0.05906708911061287, -0.19327202439308167, -0.06835195422172546, -0.2689076364040375, 0.2183004766702652, 0.12494394183158875, -0.1642821729183197, 0.3021155297756195, -0.2200939804315567, -0.381645143032074, -0.19553539156913757, 0.4039522707462311, 0.059818439185619354, -0.055473219603300095, 0.39847618341445923, -0.1549912393093109, -0.3118517994880676, -0.3498164415359497, -0.08506038784980774, -0.20270290970802307, -0.17557567358016968, 0.05849461257457733, -0.03073701076209545, -0.15075963735580444, -0.020298466086387634, 0.5994767546653748, 0.060186974704265594, 0.19920223951339722, 0.02526635304093361, -0.4625312387943268, -0.42742159962654114, -0.061734944581985474, 0.03706744685769081, 0.3987518548965454, -0.15916256606578827, 0.16445614397525787, 0.012947244569659233, -0.004292689263820648, -0.43596765398979187, 0.031307466328144073, -0.4266003370285034, -0.018036898225545883, -0.08434324711561203, 0.023849669843912125, 0.3092130124568939, 0.21308329701423645, 0.29234951734542847, 0.12799608707427979, -0.30219441652297974, -0.3937187194824219, 0.08653353154659271, 0.09008870273828506, -0.14846336841583252, -0.09343032538890839, 0.1611853688955307, 0.1144799292087555, -0.08965542912483215, -0.1671106219291687, 0.13754960894584656, 0.09744145721197128, -0.05776767432689667, -0.0011662635952234268, 0.03317973017692566, 0.11357127875089645, 0.06544121354818344, 0.03810965642333031, -0.12498892843723297, -0.06489604711532593, 0.08184729516506195, 0.06233051419258118, -0.31649965047836304, -0.06265197694301605, 0.21798862516880035, 0.2692120373249054, 0.1765723079442978, -0.25738468766212463, 0.18408872187137604, -0.08021324872970581, -0.28304219245910645, 0.12898407876491547, 0.2626402676105499, 0.10557858645915985, -0.10393302142620087, -0.05853545665740967, -0.00696902722120285, 0.3814464211463928, -0.24597476422786713, 0.062213074415922165, -0.19105800986289978, -0.11888439208269119, 0.3324759006500244, 0.20271265506744385, 0.03767793998122215, -0.49493420124053955, 0.7025297284126282, -0.0032799430191516876, 0.09852687269449234, -0.2750313878059387, 0.06997153162956238, 0.3853769600391388, -0.09488283097743988, 0.06583025306463242, 0.3065243363380432, -0.20568472146987915, 0.0029283538460731506, 0.1775141954421997, -0.12993362545967102, 0.3608565926551819, -0.3100311756134033, 0.22306671738624573, -0.21101057529449463, -0.5824345946311951, 0.43522578477859497, 0.19912779331207275, -0.1894797384738922, -0.1579817831516266, 0.21143674850463867, 0.006730489432811737, 0.12381017208099365, 0.1221541166305542, -0.5876337885856628, 0.054521504789590836, -0.18315264582633972, -0.2643299400806427, 0.04633136838674545, -0.25904372334480286, 0.06537827849388123, 0.08788329362869263, 0.17545495927333832, -0.03460018336772919, 0.14828503131866455, -0.06597074866294861, -0.07132065296173096, -0.2589384913444519, -0.050329938530921936, 0.05690690875053406, -0.019562505185604095, -0.226518452167511, 0.3146122694015503, 0.3966416120529175, 0.10995562374591827, 0.06532835960388184, 0.26924097537994385, 0.4736747443675995, 0.30895155668258667, 0.07838893681764603, 0.11792709678411484, -0.1571085900068283, -0.06981592625379562, -0.29738831520080566, 0.5326287746429443, 0.056090086698532104, 0.12402398884296417, 0.3892194330692291, 0.33868253231048584, -0.35118669271469116, -0.10180355608463287, -0.004990827292203903, -0.2602482736110687, -0.25271090865135193, 0.4092099964618683, 0.04140118509531021, 0.11650843173265457, -0.1890028864145279, 0.08631154149770737, -0.4327796995639801, -0.12798988819122314, -0.12977595627307892, -0.10070309042930603, 0.26383310556411743, -0.047427937388420105, 0.13595466315746307, -0.13304288685321808, 0.3954499065876007, 0.11508388072252274, 0.2237357795238495, -0.35402292013168335, -0.29979121685028076, -0.443930059671402, 0.2721990644931793, 0.11012555658817291, -0.08830752223730087, -0.28892645239830017, 0.4001695513725281, -0.13441091775894165, 0.005416510626673698, 0.3089107275009155, 0.20314213633537292, 0.21907810866832733, 0.012316066771745682, -0.15926919877529144, 0.17761847376823425, -0.16125626862049103, -0.17664110660552979, -0.0006082989275455475, -0.4943605661392212, 0.24998092651367188, 0.01212752889841795, 0.29278966784477234, 0.03693773224949837, -0.08022898435592651, -0.08585919439792633, 0.1793816238641739, 0.2793874442577362, 0.22420385479927063, 0.4025237262248993, -0.26060590147972107, -0.1163613572716713, -0.17698027193546295, 0.11177251487970352, 0.007236148230731487, 0.1602901816368103, 0.17387434840202332, 0.23797091841697693, 0.19372721016407013, -0.002248309552669525, -0.05700988322496414, 0.6293025016784668, 0.3451418876647949, -0.1713215857744217, 0.006119709461927414, 0.24794191122055054, -0.04957638308405876, 0.05936165153980255, -0.02183469757437706, 0.1271129846572876, 0.16174350678920746, 0.22889575362205505, -0.23515881597995758, -0.29199516773223877, 0.3922101855278015, -0.3292052447795868, -0.23996081948280334, -0.16823481023311615, 0.46806830167770386, -0.2205522656440735, -0.0836518332362175, -0.4472202956676483, 0.23536372184753418, 0.33403486013412476, 0.0017696619033813477, -0.10090698301792145, 0.39558759331703186, -0.2101522535085678, 0.04606184735894203, -0.14001600444316864, 0.25752827525138855, 0.15152159333229065, -0.052701279520988464, -0.09237298369407654, -0.29959636926651 ]
https://github.com/huggingface/datasets/issues/3269
coqa NonMatchingChecksumError
You're right. I just opened a PR that would show this error if it happens again: ```python ConnectionError: Couldn't reach https://nlp.stanford.edu/data/coqa/coqa-dev-v1.0.json (error 503) ```
``` >>> from datasets import load_dataset >>> dataset = load_dataset("coqa") Downloading: 3.82kB [00:00, 1.26MB/s] Downloading: 1.79kB [00:00, 733kB/s] Using custom data configuration default Downloading and preparing dataset coqa/default (download: 55.40 MiB, generated: 18.35 MiB, post-processed: Unknown size, total: 73.75 MiB) to /Users/zhaofengw/.cache/huggingface/datasets/coqa/default/1.0.0/553ce70bfdcd15ff4b5f4abc4fc2f37137139cde1f58f4f60384a53a327716f0... Downloading: 100%|█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 222/222 [00:00<00:00, 1.38MB/s] Downloading: 100%|█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 222/222 [00:00<00:00, 1.32MB/s] 100%|█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 2/2 [00:01<00:00, 1.91it/s] 100%|███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 2/2 [00:00<00:00, 1117.44it/s] Traceback (most recent call last): File "<stdin>", line 1, in <module> File "/Users/zhaofengw/miniconda3/lib/python3.9/site-packages/datasets/load.py", line 1632, in load_dataset builder_instance.download_and_prepare( File "/Users/zhaofengw/miniconda3/lib/python3.9/site-packages/datasets/builder.py", line 607, in download_and_prepare self._download_and_prepare( File "/Users/zhaofengw/miniconda3/lib/python3.9/site-packages/datasets/builder.py", line 679, in _download_and_prepare verify_checksums( File "/Users/zhaofengw/miniconda3/lib/python3.9/site-packages/datasets/utils/info_utils.py", line 40, in verify_checksums raise NonMatchingChecksumError(error_msg + str(bad_urls)) datasets.utils.info_utils.NonMatchingChecksumError: Checksums didn't match for dataset source files: ['https://nlp.stanford.edu/data/coqa/coqa-train-v1.0.json', 'https://nlp.stanford.edu/data/coqa/coqa-dev-v1.0.json'] ```
24
coqa NonMatchingChecksumError ``` >>> from datasets import load_dataset >>> dataset = load_dataset("coqa") Downloading: 3.82kB [00:00, 1.26MB/s] Downloading: 1.79kB [00:00, 733kB/s] Using custom data configuration default Downloading and preparing dataset coqa/default (download: 55.40 MiB, generated: 18.35 MiB, post-processed: Unknown size, total: 73.75 MiB) to /Users/zhaofengw/.cache/huggingface/datasets/coqa/default/1.0.0/553ce70bfdcd15ff4b5f4abc4fc2f37137139cde1f58f4f60384a53a327716f0... Downloading: 100%|█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 222/222 [00:00<00:00, 1.38MB/s] Downloading: 100%|█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 222/222 [00:00<00:00, 1.32MB/s] 100%|█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 2/2 [00:01<00:00, 1.91it/s] 100%|███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 2/2 [00:00<00:00, 1117.44it/s] Traceback (most recent call last): File "<stdin>", line 1, in <module> File "/Users/zhaofengw/miniconda3/lib/python3.9/site-packages/datasets/load.py", line 1632, in load_dataset builder_instance.download_and_prepare( File "/Users/zhaofengw/miniconda3/lib/python3.9/site-packages/datasets/builder.py", line 607, in download_and_prepare self._download_and_prepare( File "/Users/zhaofengw/miniconda3/lib/python3.9/site-packages/datasets/builder.py", line 679, in _download_and_prepare verify_checksums( File "/Users/zhaofengw/miniconda3/lib/python3.9/site-packages/datasets/utils/info_utils.py", line 40, in verify_checksums raise NonMatchingChecksumError(error_msg + str(bad_urls)) datasets.utils.info_utils.NonMatchingChecksumError: Checksums didn't match for dataset source files: ['https://nlp.stanford.edu/data/coqa/coqa-train-v1.0.json', 'https://nlp.stanford.edu/data/coqa/coqa-dev-v1.0.json'] ``` You're right. I just opened a PR that would show this error if it happens again: ```python ConnectionError: Couldn't reach https://nlp.stanford.edu/data/coqa/coqa-dev-v1.0.json (error 503) ```
[ -0.2934424877166748, -0.16965605318546295, -0.23772868514060974, 0.1443958878517151, 0.17530269920825958, -0.03220370039343834, 0.10853204131126404, 0.34697225689888, 0.1612992137670517, 0.34507638216018677, -0.12422356754541397, 0.016303548589348793, 0.13270717859268188, 0.3179677724838257, -0.24001473188400269, 0.41088542342185974, -0.03730381280183792, 0.130801722407341, -0.13652393221855164, -0.08464013040065765, -0.16203461587429047, 0.16598115861415863, -0.01582520455121994, -0.21113817393779755, 0.02861746959388256, -0.10914026945829391, 0.10121777653694153, 0.14800600707530975, -0.2446722537279129, -0.28355634212493896, 0.09498230367898941, 0.13728395104408264, -0.2691483199596405, 0.30232828855514526, -0.00010783330799313262, -0.0027384981513023376, 0.3951041102409363, -0.039331186562776566, -0.3947451412677765, 0.14915716648101807, -0.5660779476165771, -0.3265206217765808, -0.04970679432153702, -0.17008115351200104, -0.0475759357213974, 0.23689433932304382, -0.06580795347690582, -0.08954586833715439, 0.2255401611328125, 0.3060496151447296, 0.33020082116127014, 0.5339956283569336, -0.10401947796344757, -0.16375169157981873, 0.07236073911190033, 0.031290773302316666, -0.12435615807771683, 0.2001531571149826, 0.21609294414520264, 0.1913791298866272, -0.27258944511413574, 0.3140356242656708, -0.0051485151052474976, 0.09484364092350006, -0.17975234985351562, -0.14494965970516205, 0.12952551245689392, -0.10418336093425751, 0.5087623596191406, 0.2842763364315033, 0.27493998408317566, -0.176284521818161, -0.2551177740097046, -0.07698702812194824, -0.20052854716777802, -0.3510757386684418, 0.24585279822349548, 0.14968642592430115, -0.340237557888031, -0.17369966208934784, -0.2658529281616211, 0.3822205364704132, 0.03578901290893555, -0.11176595091819763, -0.2776526212692261, -0.06412157416343689, -0.1459256261587143, -0.10768140107393265, 0.19801907241344452, -0.18681031465530396, 0.10265035182237625, -0.10998208820819855, -0.2069360315799713, 0.039076365530490875, -0.5156916379928589, -0.14970144629478455, 0.31265756487846375, 0.37973666191101074, 0.3413914740085602, 0.22981014847755432, 0.18982462584972382, 0.21446359157562256, 0.026291899383068085, -0.021310336887836456, -0.15561148524284363, 0.3892468512058258, 0.011136263608932495, -0.24692974984645844, 0.22724728286266327, 0.3603816330432892, -0.08430300652980804, 0.035563740879297256, 0.09798380732536316, -0.310355007648468, 0.16753895580768585, 0.25340837240219116, 0.06962268054485321, -0.4281231462955475, -0.4341353178024292, 0.149600550532341, 0.1567331850528717, 0.06822070479393005, 0.18170641362667084, 0.5912106037139893, -0.03076007217168808, -0.06389985978603363, -0.16616404056549072, 0.004891406744718552, -0.30665868520736694, -0.1340271681547165, -0.371019572019577, 0.031862448900938034, -0.14453153312206268, -0.007327264174818993, 0.1801055371761322, -0.11212418973445892, 0.23918317258358002, -0.1675238162279129, 0.33850133419036865, -0.021233825013041496, 0.02179025299847126, -0.2919423282146454, 0.0382426381111145, 0.4026385545730591, -0.01665576733648777, 0.04756862670183182, 0.28407829999923706, -0.0009175539016723633, -0.1435098946094513, -0.03872884809970856, -0.03240456432104111, -0.26845183968544006, 0.10987308621406555, 0.3479248583316803, -0.07606720924377441, -0.0021591894328594208, 0.2647094130516052, -0.20924822986125946, 0.3453936278820038, -0.06105532497167587, 0.13540741801261902, 0.01325797289609909, -0.16954652965068817, -0.2886042594909668, 0.16366930305957794, 0.4162479043006897, -0.07393622398376465, 0.032692380249500275, 0.038964398205280304, -0.12756450474262238, 0.17309290170669556, 0.149419367313385, 0.0685000866651535, 0.09921149909496307, -0.21407602727413177, -0.10196132957935333, 0.21608251333236694, -0.3309718668460846, -0.6776994466781616, 0.09962806105613708, 0.045031264424324036, 0.1138063296675682, 0.15592333674430847, 0.021511884406208992, 0.09797555953264236, -0.03561897203326225, 0.07381267100572586, -0.0027298852801322937, 0.031051501631736755, 0.11351162940263748, -0.39217624068260193, -0.31785261631011963, -0.009648721665143967, 0.10581538081169128, 0.16304001212120056, -0.05722411721944809, 0.29456934332847595, -0.45781758427619934, 0.20404884219169617, -0.09221106767654419, -0.011318291537463665, 0.12655538320541382, 0.18324358761310577, -0.20327387750148773, -0.04442282021045685, 0.004791315644979477, -0.2321658432483673, 0.2732808291912079, -0.44594860076904297, 0.06045011430978775, -0.18885435163974762, -0.26077142357826233, -0.3654577136039734, -0.0270660612732172, -0.21089313924312592, -0.14423216879367828, 0.30756711959838867, 0.273681640625, 0.27484431862831116, 0.07274362444877625, 0.11723446846008301, 0.40884360671043396, -0.1587977558374405, -0.04461226612329483, -0.31232354044914246, 0.043137192726135254, -0.09874071925878525, -0.07750507444143295, -0.03355168551206589, 0.3281101882457733, 0.15009266138076782, -0.022737614810466766, -0.07894660532474518, 0.30079612135887146, 0.17490367591381073, 0.1836465299129486, -0.08949295431375504, 0.127378910779953, -0.0025923699140548706, 0.049132224172353745, 0.0637911930680275, 0.16952727735042572, 0.07616879045963287, -0.014355748891830444, -0.21904432773590088, 0.49147361516952515, -0.1414717584848404, 0.17851026356220245, 0.1221497654914856, -0.14977209270000458, 0.24572929739952087, -0.15667659044265747, -0.11089283972978592, -0.11869918555021286, 0.23188894987106323, 0.17755544185638428, 0.04459628090262413, 0.10382231324911118, -0.11840202659368515, 0.113840252161026, 0.3319092392921448, -0.06497618556022644, 0.0596817247569561, 0.1184130534529686, 0.09951990842819214, -0.09228239208459854, 0.07496040314435959, 0.3611769676208496, 0.4361034631729126, 0.19483688473701477, 0.17049480974674225, -0.05781761556863785, -0.00705199409276247, -0.16996005177497864, 0.12952379882335663, 0.12153053283691406, -0.03822976350784302, 0.4889443516731262, 0.23847328126430511, -0.19473984837532043, -0.48423442244529724, -0.17633193731307983, -0.07251535356044769, 0.20507536828517914, -0.29004234075546265, 0.048694491386413574, -0.17661550641059875, -0.24514919519424438, 0.018816251307725906, -0.23127946257591248, 0.0636468231678009, -0.40280500054359436, 0.12155710905790329, 0.18837758898735046, -0.06813565641641617, 0.24740423262119293, -0.3666554391384125, 0.17079229652881622, 0.20224541425704956, -0.23210398852825165, -0.1817013919353485, 0.2013235241174698, -0.10452926903963089, 0.2084091603755951, 0.18242862820625305, 0.049002859741449356, 0.5008370280265808, -0.33716222643852234, 0.0265551395714283, -0.2955659031867981, -0.22314369678497314, -0.04286115616559982, -0.0206168070435524, 0.02589571662247181, 0.23955890536308289, 0.1678852140903473, -0.09732411056756973, -0.16121135652065277, 0.1723998636007309, -0.03255085274577141, -0.42428526282310486, 0.07566442340612411, -0.20237238705158234, 0.07886164635419846, -0.18486922979354858, -0.041290752589702606, -0.2166948914527893, -0.4261755645275116, 0.10516571998596191, 0.1664564609527588, 0.21152444183826447, 0.28348469734191895, 0.030940603464841843, 0.18370208144187927, 0.06931445002555847, 0.2948223650455475, -0.35511231422424316, -0.6185640692710876, 0.30382198095321655, -0.11850994825363159, -0.3948781490325928, -0.0802287831902504, -0.29940736293792725, 0.5251651406288147, -0.05346399173140526, -0.25605493783950806, -0.2709777355194092, -0.43960779905319214, 0.19161812961101532, 0.058311913162469864, -0.09370128065347672, 0.4126143455505371, -0.019693177193403244, -0.30627769231796265, -0.05406895652413368, -0.1069871336221695, 0.10140863060951233, -0.07748894393444061, 0.2577381432056427, -0.22634556889533997, 0.4307520091533661, 0.0870751142501831, 0.37161386013031006, 0.39679551124572754, -0.04324616864323616, 0.2767592668533325, -0.0012930259108543396, 0.366716593503952, -0.29272159934043884, -0.3451104760169983, 0.11048631370067596, -0.010120302438735962, -0.10813893377780914, 0.17037226259708405, -0.049006424844264984, 0.1882525533437729, -0.0010115094482898712, -0.04595613479614258, -0.3217918574810028, -0.2026652693748474, -0.029957303777337074, -0.011170759797096252, 0.20619788765907288, -0.0590057373046875, 0.1796014904975891, -0.07419231534004211, -0.05333031713962555, 0.07544931769371033, 0.23053954541683197, -0.1735401153564453, -0.22238445281982422, -0.17990374565124512, 0.02114269882440567, -0.5448867082595825, 0.3739597797393799, 0.14488767087459564, 0.19165657460689545, -0.18221527338027954, -0.21478384733200073, 0.2275918871164322, -0.27609628438949585, 0.5989823937416077, 0.019277457147836685, 0.06914625316858292, 0.061302151530981064, -0.0501546785235405, -0.10577737540006638, -0.055776819586753845, -0.03336707502603531, -0.0936836525797844, 0.20603084564208984, -0.0033683478832244873, -0.42974868416786194, 0.006628898903727531, 0.15482155978679657, 0.19221405684947968, -0.07304496318101883, -0.08640987426042557, -0.44292178750038147, -0.4385754466056824, -0.40330877900123596, 0.2203482687473297, -0.19638533890247345, 0.3476666510105133, -0.25391799211502075, -0.04840502142906189, 0.024263707920908928, -0.10065814852714539, 0.2695053815841675, 0.1647171527147293, 0.22914716601371765, 0.110596664249897, 0.22661995887756348, -0.24429190158843994, 0.13070419430732727, 0.1984192579984665, 0.5014007091522217, 0.049889978021383286, -0.03833119571208954, 0.04114202409982681, -0.09934808313846588, -0.08475775271654129, 0.1514367312192917, -0.07930830866098404, 0.06131284311413765, 0.08193901181221008, 0.17971403896808624, 0.007807188667356968, 0.06768348813056946, 0.191093310713768, 0.07904420047998428, -0.4913080930709839, 0.00012611597776412964, 0.18332332372665405, -0.1703171283006668, -0.12918595969676971, 0.22338254749774933, -0.07339797914028168, -0.06663050502538681, 0.10432832688093185, 0.15409207344055176, 0.9350462555885315, -0.014139235019683838, 0.058612577617168427, 0.29328739643096924, -0.079803965985775, 0.12429782748222351, -0.2610677480697632, 0.09160012751817703, -0.308572918176651, -0.4105004072189331, -0.08249296247959137, -0.13053175806999207, 0.2970247268676758, -0.14368225634098053, -0.1895328313112259, 0.23112767934799194, -0.0813201293349266, 0.11333084106445312, 0.008750002831220627, 0.03075598180294037, -0.40086105465888977, -0.04071492329239845, 0.01718025654554367, 0.2892783284187317, 0.13341988623142242, 0.20583026111125946, -0.12051525712013245, 0.05827419087290764, -0.10158440470695496, -0.24899086356163025, -0.13879992067813873, -0.039493925869464874, -0.19463592767715454, 0.03599635511636734, 0.16839082539081573, -0.1722528636455536, -0.23880907893180847, 0.038397498428821564, 0.21403709053993225, 0.18490250408649445, -0.15437829494476318, 0.15479524433612823, 0.31905168294906616, 0.2688971757888794, 0.10504724830389023, -0.12844356894493103, 0.07145668566226959, -0.12665459513664246, -0.2375257909297943, 0.17874372005462646, -0.03149297088384628, -0.19412989914417267, 0.08989214897155762, 0.20072123408317566, 0.13910531997680664, -0.39492350816726685, -0.05906708911061287, -0.19327202439308167, -0.06835195422172546, -0.2689076364040375, 0.2183004766702652, 0.12494394183158875, -0.1642821729183197, 0.3021155297756195, -0.2200939804315567, -0.381645143032074, -0.19553539156913757, 0.4039522707462311, 0.059818439185619354, -0.055473219603300095, 0.39847618341445923, -0.1549912393093109, -0.3118517994880676, -0.3498164415359497, -0.08506038784980774, -0.20270290970802307, -0.17557567358016968, 0.05849461257457733, -0.03073701076209545, -0.15075963735580444, -0.020298466086387634, 0.5994767546653748, 0.060186974704265594, 0.19920223951339722, 0.02526635304093361, -0.4625312387943268, -0.42742159962654114, -0.061734944581985474, 0.03706744685769081, 0.3987518548965454, -0.15916256606578827, 0.16445614397525787, 0.012947244569659233, -0.004292689263820648, -0.43596765398979187, 0.031307466328144073, -0.4266003370285034, -0.018036898225545883, -0.08434324711561203, 0.023849669843912125, 0.3092130124568939, 0.21308329701423645, 0.29234951734542847, 0.12799608707427979, -0.30219441652297974, -0.3937187194824219, 0.08653353154659271, 0.09008870273828506, -0.14846336841583252, -0.09343032538890839, 0.1611853688955307, 0.1144799292087555, -0.08965542912483215, -0.1671106219291687, 0.13754960894584656, 0.09744145721197128, -0.05776767432689667, -0.0011662635952234268, 0.03317973017692566, 0.11357127875089645, 0.06544121354818344, 0.03810965642333031, -0.12498892843723297, -0.06489604711532593, 0.08184729516506195, 0.06233051419258118, -0.31649965047836304, -0.06265197694301605, 0.21798862516880035, 0.2692120373249054, 0.1765723079442978, -0.25738468766212463, 0.18408872187137604, -0.08021324872970581, -0.28304219245910645, 0.12898407876491547, 0.2626402676105499, 0.10557858645915985, -0.10393302142620087, -0.05853545665740967, -0.00696902722120285, 0.3814464211463928, -0.24597476422786713, 0.062213074415922165, -0.19105800986289978, -0.11888439208269119, 0.3324759006500244, 0.20271265506744385, 0.03767793998122215, -0.49493420124053955, 0.7025297284126282, -0.0032799430191516876, 0.09852687269449234, -0.2750313878059387, 0.06997153162956238, 0.3853769600391388, -0.09488283097743988, 0.06583025306463242, 0.3065243363380432, -0.20568472146987915, 0.0029283538460731506, 0.1775141954421997, -0.12993362545967102, 0.3608565926551819, -0.3100311756134033, 0.22306671738624573, -0.21101057529449463, -0.5824345946311951, 0.43522578477859497, 0.19912779331207275, -0.1894797384738922, -0.1579817831516266, 0.21143674850463867, 0.006730489432811737, 0.12381017208099365, 0.1221541166305542, -0.5876337885856628, 0.054521504789590836, -0.18315264582633972, -0.2643299400806427, 0.04633136838674545, -0.25904372334480286, 0.06537827849388123, 0.08788329362869263, 0.17545495927333832, -0.03460018336772919, 0.14828503131866455, -0.06597074866294861, -0.07132065296173096, -0.2589384913444519, -0.050329938530921936, 0.05690690875053406, -0.019562505185604095, -0.226518452167511, 0.3146122694015503, 0.3966416120529175, 0.10995562374591827, 0.06532835960388184, 0.26924097537994385, 0.4736747443675995, 0.30895155668258667, 0.07838893681764603, 0.11792709678411484, -0.1571085900068283, -0.06981592625379562, -0.29738831520080566, 0.5326287746429443, 0.056090086698532104, 0.12402398884296417, 0.3892194330692291, 0.33868253231048584, -0.35118669271469116, -0.10180355608463287, -0.004990827292203903, -0.2602482736110687, -0.25271090865135193, 0.4092099964618683, 0.04140118509531021, 0.11650843173265457, -0.1890028864145279, 0.08631154149770737, -0.4327796995639801, -0.12798988819122314, -0.12977595627307892, -0.10070309042930603, 0.26383310556411743, -0.047427937388420105, 0.13595466315746307, -0.13304288685321808, 0.3954499065876007, 0.11508388072252274, 0.2237357795238495, -0.35402292013168335, -0.29979121685028076, -0.443930059671402, 0.2721990644931793, 0.11012555658817291, -0.08830752223730087, -0.28892645239830017, 0.4001695513725281, -0.13441091775894165, 0.005416510626673698, 0.3089107275009155, 0.20314213633537292, 0.21907810866832733, 0.012316066771745682, -0.15926919877529144, 0.17761847376823425, -0.16125626862049103, -0.17664110660552979, -0.0006082989275455475, -0.4943605661392212, 0.24998092651367188, 0.01212752889841795, 0.29278966784477234, 0.03693773224949837, -0.08022898435592651, -0.08585919439792633, 0.1793816238641739, 0.2793874442577362, 0.22420385479927063, 0.4025237262248993, -0.26060590147972107, -0.1163613572716713, -0.17698027193546295, 0.11177251487970352, 0.007236148230731487, 0.1602901816368103, 0.17387434840202332, 0.23797091841697693, 0.19372721016407013, -0.002248309552669525, -0.05700988322496414, 0.6293025016784668, 0.3451418876647949, -0.1713215857744217, 0.006119709461927414, 0.24794191122055054, -0.04957638308405876, 0.05936165153980255, -0.02183469757437706, 0.1271129846572876, 0.16174350678920746, 0.22889575362205505, -0.23515881597995758, -0.29199516773223877, 0.3922101855278015, -0.3292052447795868, -0.23996081948280334, -0.16823481023311615, 0.46806830167770386, -0.2205522656440735, -0.0836518332362175, -0.4472202956676483, 0.23536372184753418, 0.33403486013412476, 0.0017696619033813477, -0.10090698301792145, 0.39558759331703186, -0.2101522535085678, 0.04606184735894203, -0.14001600444316864, 0.25752827525138855, 0.15152159333229065, -0.052701279520988464, -0.09237298369407654, -0.29959636926651 ]
https://github.com/huggingface/datasets/issues/3268
Dataset viewer issue for 'liweili/c4_200m'
Hi ! I think the issue comes from this [line](https://huggingface.co/datasets/liweili/c4_200m/blob/main/c4_200m.py#L87): ```python path = filepath + "/*.tsv*" ``` You can fix this by doing this instead: ```python path = os.path.join(filepath, "/*.tsv*") ``` Here is why: Locally you can append `"/*.tsv*"` to your local path, however it doesn't work in streaming mode, and the dataset viewer does use the streaming mode. In streaming mode, the download and extract part is done lazily. It means that instead of using local paths, it's still passing around URLs and [chained URLs](https://filesystem-spec.readthedocs.io/en/latest/features.html#url-chaining) Therefore in streaming mode, `filepath` is not a local path, but instead is equal to ```python zip://::https://huggingface.co/datasets/liweili/c4_200m/resolve/main/data.zip ``` The `zip://` part means that we navigate inside the remote ZIP file. You must use `os.path.join` to navigate inside it and get your TSV files: ```python >>> os.path.join(filepath, "/*.tsv*") zip://*.tsv*::https://huggingface.co/datasets/liweili/c4_200m/resolve/main/data.zip ``` `datasets` extends `os.path.join`, `glob.glob`, etc. in your dataset scripts to work with remote files.
## Dataset viewer issue for '*liweili/c4_200m*' **Link:** *[link to the dataset viewer page](https://huggingface.co/datasets/liweili/c4_200m)* *Server Error* ``` Status code: 404 Exception: Status404Error Message: Not found. Maybe the cache is missing, or maybe the ressource does not exist. ``` Am I the one who added this dataset ? Yes
149
Dataset viewer issue for 'liweili/c4_200m' ## Dataset viewer issue for '*liweili/c4_200m*' **Link:** *[link to the dataset viewer page](https://huggingface.co/datasets/liweili/c4_200m)* *Server Error* ``` Status code: 404 Exception: Status404Error Message: Not found. Maybe the cache is missing, or maybe the ressource does not exist. ``` Am I the one who added this dataset ? Yes Hi ! I think the issue comes from this [line](https://huggingface.co/datasets/liweili/c4_200m/blob/main/c4_200m.py#L87): ```python path = filepath + "/*.tsv*" ``` You can fix this by doing this instead: ```python path = os.path.join(filepath, "/*.tsv*") ``` Here is why: Locally you can append `"/*.tsv*"` to your local path, however it doesn't work in streaming mode, and the dataset viewer does use the streaming mode. In streaming mode, the download and extract part is done lazily. It means that instead of using local paths, it's still passing around URLs and [chained URLs](https://filesystem-spec.readthedocs.io/en/latest/features.html#url-chaining) Therefore in streaming mode, `filepath` is not a local path, but instead is equal to ```python zip://::https://huggingface.co/datasets/liweili/c4_200m/resolve/main/data.zip ``` The `zip://` part means that we navigate inside the remote ZIP file. You must use `os.path.join` to navigate inside it and get your TSV files: ```python >>> os.path.join(filepath, "/*.tsv*") zip://*.tsv*::https://huggingface.co/datasets/liweili/c4_200m/resolve/main/data.zip ``` `datasets` extends `os.path.join`, `glob.glob`, etc. in your dataset scripts to work with remote files.
[ -0.24548368155956268, 0.16124501824378967, -0.004789460450410843, 0.3759569525718689, 0.20064112544059753, 0.08352955430746078, 0.017746184021234512, 0.26145485043525696, -0.2173459380865097, 0.0912247747182846, -0.3134582042694092, 0.1573544591665268, 0.007984747178852558, 0.21522651612758636, 0.22052687406539917, 0.013388775289058685, -0.11732044070959091, 0.24335989356040955, -0.22290319204330444, 0.08752265572547913, -0.08198181539773941, 0.20396246016025543, 0.05718831717967987, -0.17223598062992096, -0.2705702781677246, 0.19078503549098969, -0.1488797664642334, 0.2882150709629059, -0.11111756414175034, -0.6126881837844849, 0.26648226380348206, -0.0049950554966926575, 0.2889629006385803, 0.6885043382644653, -0.00011054964852519333, 0.10753630101680756, 0.26535868644714355, -0.0911095067858696, -0.47460243105888367, -0.34670156240463257, -0.10722750425338745, -0.1676359623670578, 0.0859416052699089, -0.026030413806438446, -0.15114519000053406, -0.06614163517951965, 0.023484306409955025, -0.4599922299385071, 0.09904447197914124, 0.3113709092140198, 0.23596671223640442, 0.3971327841281891, 0.1139574646949768, 0.024068310856819153, 0.23446324467658997, -0.14926199615001678, -0.19204579293727875, 0.26058217883110046, 0.10343053191900253, 0.28806108236312866, 0.18496927618980408, 0.3973644971847534, 0.06603513658046722, 0.13450787961483002, 0.2715277373790741, 0.08734303712844849, -0.3370210528373718, -0.23802578449249268, 0.22648096084594727, 0.3325205147266388, 0.8139743804931641, -0.2377406358718872, -0.44802215695381165, 0.03921825438737869, -0.06141924113035202, -0.11358337104320526, 0.3953278362751007, 0.24664312601089478, 0.024391978979110718, 0.3263283371925354, -0.3484245538711548, -0.10971341282129288, -0.17980650067329407, 0.15155106782913208, -0.11134539544582367, -0.02975953370332718, -0.11030706763267517, 0.02693302556872368, 0.15273846685886383, 0.08885198831558228, 0.16093440353870392, -0.15752412378787994, 0.0598139613866806, 0.1952265501022339, -0.18267950415611267, 0.16052968800067902, 0.1444556713104248, 0.2999971807003021, -0.06958219408988953, 0.08583980798721313, 0.02765059284865856, -0.038189396262168884, -0.3342806100845337, 0.09057950973510742, 0.030644625425338745, 0.22441241145133972, -0.023512743413448334, -0.11094310879707336, 0.24215935170650482, 0.15714791417121887, 0.18142804503440857, -0.1500183343887329, 0.04125747084617615, -0.30923494696617126, -0.3614301383495331, -0.13720908761024475, 0.24569453299045563, -0.23730432987213135, -0.2536391317844391, -0.03081521764397621, -0.3394400477409363, -0.11634833365678787, 0.08038809895515442, 0.49672752618789673, -0.12584438920021057, 0.14909246563911438, 0.05184069275856018, 0.011799551546573639, -0.1121571883559227, -0.21602842211723328, -0.2339535802602768, -0.050733182579278946, 0.04159224405884743, 0.18518783152103424, 0.3104327321052551, -0.5659939646720886, 0.28816282749176025, -0.1249832808971405, 0.11157763749361038, 0.156185582280159, -0.004457234404981136, -0.04675895720720291, 0.055003441870212555, 0.2260516881942749, 0.15803062915802002, 0.1581006646156311, 0.1557207852602005, -0.23797431588172913, -0.025148238986730576, 0.20531907677650452, -0.11245221644639969, -0.4792702794075012, 0.026554545387625694, 0.16259326040744781, -0.30678707361221313, -0.05274238437414169, 0.04829395189881325, -0.18261408805847168, -0.05516204982995987, -0.15514108538627625, -0.0999036505818367, 0.009842265397310257, 0.04650794342160225, -0.21194535493850708, 0.42218664288520813, 0.6251418590545654, -0.7402744293212891, -0.10579995810985565, -0.15390059351921082, -0.2142886519432068, 0.03320387005805969, 0.21411524713039398, -0.13730277121067047, -0.03323321044445038, -0.3130742609500885, 0.17561115324497223, 0.23441848158836365, -0.26599299907684326, -0.6945868134498596, 0.3194243907928467, -0.14035534858703613, 0.23524613678455353, 0.09143129736185074, 0.15377019345760345, -0.061727702617645264, 0.06691543012857437, -0.23474201560020447, 0.02798604592680931, 0.07086057960987091, -0.07772407680749893, -0.3708673417568207, -0.4023873805999756, 0.2579993009567261, 0.13074199855327606, 0.005660142749547958, -0.12125997990369797, 0.28564056754112244, -0.29888013005256653, 0.4411120116710663, -0.14747753739356995, 0.2673710584640503, 0.21940873563289642, 0.4051007926464081, 0.42678433656692505, 0.15705743432044983, 0.08432962745428085, -0.4406697154045105, 0.32927829027175903, 0.02472342923283577, 0.12388764321804047, -0.19466157257556915, -0.11000083386898041, -0.24848860502243042, -0.11812327057123184, -0.5552069544792175, -0.282939612865448, 0.11900542676448822, 0.2603208124637604, 0.012108985334634781, 0.19733381271362305, -0.14591968059539795, 0.1805494725704193, 0.03353165090084076, 0.04630670323967934, -0.03832470625638962, 0.47926831245422363, -0.24523182213306427, -0.019853897392749786, -0.18405933678150177, -0.013194724917411804, 0.2596345841884613, -0.37700092792510986, -0.22633904218673706, 0.46255773305892944, -0.12514322996139526, 0.31283944845199585, 0.145419180393219, 0.055539123713970184, 0.35216429829597473, -0.3442876636981964, 0.12222685664892197, 0.34717434644699097, 0.13048097491264343, 0.061635859310626984, -0.18011513352394104, 0.0026025772094726562, -0.40725988149642944, 0.20524194836616516, 0.15624020993709564, 0.10273690521717072, 0.47249552607536316, 0.008107539266347885, 0.01137041486799717, -0.22051535546779633, 0.2582208216190338, -0.33600205183029175, 0.3408629596233368, -0.15467186272144318, -0.19991762936115265, 0.31994161009788513, 0.23697589337825775, 0.06309175491333008, -0.19686001539230347, 0.13693468272686005, -0.16546428203582764, -0.04010473191738129, 0.3162790834903717, 0.48215219378471375, 0.37321937084198, 0.2158772498369217, 0.13550731539726257, 0.18578337132930756, 0.2586973309516907, -0.25020116567611694, 0.24451541900634766, -0.1284419298171997, -0.10577450692653656, 0.15386028587818146, -0.035616185516119, 0.004318992607295513, -0.38579171895980835, -0.1517295241355896, -0.0047385068610310555, 0.15308761596679688, -0.23305094242095947, -0.11138179153203964, -0.6035796999931335, -0.4227341413497925, -0.18286605179309845, -0.2892681360244751, -0.32149064540863037, -0.23783458769321442, -0.012863606214523315, 0.10008251667022705, -0.18512794375419617, 0.16140535473823547, -0.21085938811302185, 0.02659793198108673, -0.048827894032001495, -0.16657128930091858, -0.1567876935005188, -0.07092426717281342, -0.26064354181289673, 0.06811922788619995, 0.34300240874290466, -0.19418050348758698, 0.26594865322113037, -0.419653981924057, 0.14704938232898712, -0.7221472859382629, -0.34140369296073914, 0.22029294073581696, 0.07487210631370544, 0.17481543123722076, 0.025228209793567657, 0.2790079116821289, 0.03123857080936432, -0.2026364654302597, 0.2610621750354767, -0.06384993344545364, -0.02381226234138012, -0.12455151230096817, 0.09950246661901474, -0.055037546902894974, -0.12685880064964294, -0.5566670298576355, -0.4597983658313751, -0.3991239368915558, 0.24984899163246155, 0.03609978035092354, 0.08451466262340546, 0.07406239956617355, 0.11946704983711243, 0.15576349198818207, 0.012308698147535324, -0.08856473863124847, -0.2019215077161789, -0.4414687156677246, 0.3702640235424042, -0.35612234473228455, -0.4673226773738861, 0.4157237112522125, 0.16846159100532532, 0.388169527053833, 0.07280119508504868, -0.6419950723648071, 0.05268563702702522, -0.15320035815238953, 0.33868932723999023, 0.03917701914906502, 0.041838087141513824, 0.34143149852752686, 0.08583827316761017, 0.023791557177901268, -0.14488673210144043, -0.07425418496131897, 0.08137057721614838, -0.08833136409521103, 0.5060955286026001, -0.007770325988531113, 0.4312686622142792, 0.28398919105529785, 0.7230979204177856, 0.2288047969341278, 0.10708451271057129, 0.5675196647644043, -0.009482128545641899, 0.5693780183792114, -0.1736675202846527, -0.3399900794029236, 0.20694440603256226, -0.1866169571876526, -0.018633129075169563, 0.3823508620262146, 0.30320456624031067, -0.08903960138559341, -0.2848816514015198, -0.10126790404319763, -0.3744972050189972, -0.18143704533576965, -0.06281419098377228, 0.03910360485315323, 0.2648049592971802, 0.21865738928318024, 0.019502103328704834, -0.10880990326404572, -0.28189343214035034, -0.013583068735897541, 0.523114025592804, 0.27016764879226685, 0.2094324380159378, -0.047762781381607056, -0.09968306869268417, -0.49601835012435913, 0.3334941864013672, 0.15647868812084198, 0.0044944328255951405, -0.14125002920627594, 0.040050484240055084, 0.1563711166381836, -0.1316232979297638, 0.5461865067481995, -0.11706996709108353, 0.05667940154671669, 0.11413733661174774, -0.04861951246857643, -0.2306213229894638, -0.049739908427000046, 0.1120985895395279, 0.12146025151014328, 0.25140076875686646, 0.08653078228235245, -0.1678769290447235, -0.03856506571173668, 0.027098149061203003, 0.24389629065990448, -0.12810012698173523, -0.23016692698001862, -0.050606828182935715, -0.20986470580101013, -0.24906620383262634, -0.2564649283885956, -0.28883206844329834, 0.04360676556825638, -0.04737429320812225, -0.07599486410617828, 0.21863514184951782, -0.01843283697962761, -0.053594812750816345, 0.11345210671424866, 0.418221116065979, 0.0640941634774208, 0.24130785465240479, 0.4030178189277649, 0.3016623258590698, 0.4529578387737274, 0.557310163974762, -0.26216915249824524, -0.14031769335269928, 0.033224452286958694, -0.08684749156236649, 0.008074566721916199, 0.30152541399002075, -0.07748454064130783, -0.00010972470045089722, 0.2603912353515625, 0.1266152411699295, -0.07706160843372345, 0.2330211102962494, 0.22733533382415771, -0.07806416600942612, -0.05261579900979996, -0.5054687857627869, 0.4379649758338928, -0.13178251683712006, 0.03239826112985611, 0.29486310482025146, 0.42234206199645996, -0.11096177250146866, -0.12237008661031723, -0.20538946986198425, 0.8755202889442444, 0.07999558001756668, 0.08153396844863892, 0.38890162110328674, -0.3008064925670624, 0.26815298199653625, -0.41177797317504883, 0.19872353971004486, -0.06209079176187515, -0.1168079674243927, -0.11461638659238815, -0.07961249351501465, 0.04614516347646713, 0.11464603245258331, -0.21143658459186554, 0.228083997964859, 0.004536621272563934, 0.19503439962863922, 0.06718456745147705, 0.2627461850643158, -0.23199784755706787, -0.0462174154818058, -0.17024558782577515, 0.2536070942878723, 0.06051497906446457, 0.2377002239227295, -0.19494643807411194, -0.2261713147163391, -0.1996273398399353, -0.09510041773319244, -0.11669185757637024, 0.13692402839660645, -0.41139909625053406, 0.2141544073820114, -0.22991058230400085, -0.4066406488418579, 0.054488230496644974, 0.18133984506130219, -0.0885642021894455, 0.009301219135522842, -0.3550710082054138, 0.3009902238845825, -0.08449024707078934, 0.011179309338331223, -0.042033154517412186, 0.04183842986822128, -0.07894738763570786, -0.15125997364521027, -0.18458420038223267, 0.026849452406167984, -0.19583047926425934, -0.3915221691131592, 0.18064787983894348, 0.021654102951288223, 0.06174192577600479, -0.007538881152868271, -0.006222775671631098, 0.10763783752918243, 0.03810508921742439, -0.15948604047298431, 0.1365119069814682, 0.02949105203151703, -0.1626266986131668, -0.13770487904548645, -0.022669758647680283, 0.018242932856082916, -0.194640651345253, 0.45577272772789, -0.1516561508178711, -0.014038879424333572, 0.5119035243988037, 0.20530752837657928, -0.2969798445701599, -0.049850545823574066, 0.06600064784288406, -0.08858752250671387, -0.34514275193214417, -0.13500289618968964, -0.06781840324401855, 0.1427019089460373, -0.11334269493818283, 0.12791447341442108, 0.2415681779384613, 0.04241253808140755, -0.3165281116962433, -0.3778788149356842, -0.2508814036846161, 0.09267136454582214, -0.05232469365000725, 0.33454322814941406, -0.04173881933093071, 0.2935629189014435, 0.1805320680141449, -0.023375315591692924, -0.31761878728866577, 0.05308827757835388, -0.019010012969374657, -0.026983465999364853, 0.28378233313560486, -0.006170898675918579, 0.3018496036529541, -0.1802712082862854, 0.05085071921348572, 0.05664399266242981, -0.31913697719573975, -0.13733232021331787, -0.05526363477110863, 0.14631523191928864, 0.11400184035301208, -0.37390074133872986, -0.14123815298080444, -0.06176506355404854, -0.08652044832706451, -0.05615857243537903, 0.04436804726719856, 0.06673317402601242, -0.06226508319377899, -0.2162056416273117, -0.049962956458330154, -0.3077643811702728, -0.2433762103319168, 0.1442563533782959, 0.09325408935546875, 0.39839816093444824, 0.037815243005752563, 0.13261844217777252, -0.13064247369766235, -0.012273937463760376, 0.15179820358753204, -0.048188768327236176, -0.09384316205978394, 0.05881775915622711, 0.3359795808792114, -0.4196593761444092, 0.15271857380867004, 0.09712520986795425, 0.5122681856155396, 0.14932994544506073, -0.0020619190763682127, 0.015216229483485222, 0.41442421078681946, 0.18406863510608673, -0.28552576899528503, -0.17835748195648193, 0.24836190044879913, 0.07291790097951889, 0.12755347788333893, -0.12316178530454636, 0.06267774105072021, -0.04063385725021362, 0.21009540557861328, 0.242746502161026, 0.5329883694648743, -0.0761462077498436, 0.2506953477859497, 0.24545279145240784, -0.12530766427516937, 0.24972517788410187, 0.07664059102535248, 0.022180138155817986, 0.05882743373513222, 0.3469719886779785, -0.4952671527862549, 0.023537827655673027, -0.1035778596997261, 0.1521076261997223, 0.09187190234661102, -0.4523671269416809, -0.2719518542289734, -0.15278542041778564, -0.1896131932735443, -0.03145035356283188, 0.005597330629825592, 0.5174598097801208, -0.2773379385471344, -0.16317415237426758, -0.2432803213596344, 0.3747972249984741, -0.05239304155111313, 0.1566113829612732, 0.14838233590126038, -0.30601322650909424, -0.09178265184164047, 0.14957116544246674, 0.018589351326227188, -0.11786158382892609, -0.04248209297657013, 0.0766926258802414, -0.0860336571931839, -0.3575821816921234, 0.021434063091874123, 0.08791476488113403, 0.0006227791309356689, -0.05945650488138199, 0.2622990310192108, 0.4097222089767456, -0.06751757860183716, -0.1543850302696228, 0.1776067167520523, 0.35303154587745667, 0.24890559911727905, 0.2885735034942627, 0.07239963114261627, 0.010806234553456306, -0.09198471158742905, -0.13216586410999298, 0.014522378332912922, 0.012697122991085052, -0.20707304775714874, 0.2857813537120819, 0.13765478134155273, -0.20824095606803894, 0.12944437563419342, -0.11283601820468903, 0.5006268620491028, -0.24540510773658752, 0.10040697455406189, -0.34721478819847107, -0.039652056992053986, -0.1990644335746765, -0.13558587431907654, -0.49169594049453735, 0.31413570046424866, 0.3138158917427063, -0.13386821746826172, 0.11691778153181076, -0.1819775253534317, 0.06352227181196213, 0.18018212914466858, 0.3871392607688904, 0.1848437339067459, 0.26812121272087097, -0.23270894587039948, -0.35516130924224854, -0.8897014856338501, 0.043949030339717865, -0.15221281349658966, 0.23301604390144348, -0.28073179721832275, 0.214445561170578, -0.13645413517951965, 0.04169892892241478, 0.5383715629577637, 0.2621883153915405, 0.24025779962539673, 0.0260001327842474, -0.16106365621089935, -0.17074963450431824, 0.08672422170639038, 0.04243338853120804, -0.024271082133054733, -0.2306753396987915, 0.15487244725227356, -0.0613381452858448, 0.040900781750679016, -0.0014283061027526855, -0.0353921502828598, -0.2065705507993698, -0.24625682830810547, 0.4118390679359436, 0.13994961977005005, 0.3093683123588562, -0.0024492256343364716, -0.0433325432240963, -0.3437124490737915, -0.30077680945396423, -0.08818333595991135, -0.06931526213884354, 0.04870457947254181, 0.42246147990226746, -0.2589186429977417, -0.2547081708908081, -0.4773995280265808, 0.40963247418403625, 0.08210378885269165, 0.1851917952299118, 0.0050786882638931274, 0.015417641028761864, -0.33500975370407104, 0.1524355113506317, 0.26452091336250305, 0.19720250368118286, -0.07595336437225342, -0.030475154519081116, -0.2711271643638611, -0.22049011290073395, 0.5597353577613831, -0.4937856197357178, 0.11563286185264587, -0.01898309588432312, 0.07462489604949951, 0.3552238941192627, -0.1251365840435028, -0.218625009059906, 0.07027208060026169, 0.33381032943725586, 0.11455612629652023, -0.1382758617401123, 0.04069007188081741, -0.1965130865573883, -0.06968589127063751, -0.015371045097708702, 0.2571989893913269, 0.3441186249256134, -0.31568023562431335, 0.1266838014125824, -0.2195519357919693 ]
https://github.com/huggingface/datasets/issues/3268
Dataset viewer issue for 'liweili/c4_200m'
hi @lhoestq ! thanks for the tip! i've updated the line of code but it's still not working. am i doing something else wrong? thank you!
## Dataset viewer issue for '*liweili/c4_200m*' **Link:** *[link to the dataset viewer page](https://huggingface.co/datasets/liweili/c4_200m)* *Server Error* ``` Status code: 404 Exception: Status404Error Message: Not found. Maybe the cache is missing, or maybe the ressource does not exist. ``` Am I the one who added this dataset ? Yes
26
Dataset viewer issue for 'liweili/c4_200m' ## Dataset viewer issue for '*liweili/c4_200m*' **Link:** *[link to the dataset viewer page](https://huggingface.co/datasets/liweili/c4_200m)* *Server Error* ``` Status code: 404 Exception: Status404Error Message: Not found. Maybe the cache is missing, or maybe the ressource does not exist. ``` Am I the one who added this dataset ? Yes hi @lhoestq ! thanks for the tip! i've updated the line of code but it's still not working. am i doing something else wrong? thank you!
[ -0.20487216114997864, 0.33977046608924866, -0.04397950693964958, 0.4539768099784851, -0.032356470823287964, 0.1852269470691681, 0.22573322057724, 0.13273653388023376, -0.15539652109146118, 0.131217360496521, -0.18719813227653503, 0.0623997338116169, -0.07240091264247894, 0.03934960812330246, 0.28636685013771057, 0.0551079623401165, 0.00018930435180664062, 0.3673498332500458, -0.08251737058162689, 0.040888167917728424, -0.13223646581172943, 0.12746620178222656, 0.1093331128358841, -0.11814866960048676, -0.3941235840320587, 0.14228582382202148, -0.24930298328399658, 0.1846635341644287, -0.1072235107421875, -0.5770609378814697, 0.4048387110233307, 0.0409667007625103, 0.1327851265668869, 0.5260576009750366, -0.00011291349801467732, 0.05509793758392334, 0.3158528208732605, -0.06286172568798065, -0.2738540768623352, -0.03226172924041748, -0.3334212303161621, -0.15774257481098175, 0.01990656368434429, -0.005885370075702667, -0.2317918837070465, -0.022355061024427414, 0.029537223279476166, -0.41090714931488037, -0.17736946046352386, 0.21095271408557892, 0.25520676374435425, 0.037418875843286514, 0.2777436077594757, -0.08809874951839447, 0.2361394166946411, -0.1593095064163208, -0.1366509050130844, 0.17178119719028473, 0.1250501424074173, 0.34046459197998047, 0.16576772928237915, 0.33632001280784607, 0.06856392323970795, 0.10156327486038208, 0.16137056052684784, 0.014744478277862072, -0.05672890692949295, -0.3110954761505127, 0.3234443962574005, 0.42590877413749695, 1.0086333751678467, -0.1596551239490509, -0.18219706416130066, 0.1577795445919037, 0.026452835649251938, -0.035667821764945984, 0.32502204179763794, 0.01740095019340515, 0.16406714916229248, 0.25434306263923645, -0.19359953701496124, -0.31476759910583496, -0.13413181900978088, 0.15711548924446106, -0.07771868258714676, 0.023390479385852814, -0.05913481116294861, 0.041553795337677, 0.14536228775978088, 0.005133079364895821, 0.10773623734712601, -0.10085941106081009, -0.17560914158821106, 0.188138946890831, -0.15035124123096466, 0.026202663779258728, 0.031647682189941406, 0.33587101101875305, 0.013089235872030258, 0.10989068448543549, -0.1315605640411377, -0.025051701813936234, -0.32553958892822266, -0.0005616322159767151, -0.08522795140743256, 0.2204769253730774, 0.01662798970937729, -0.19950251281261444, 0.27078747749328613, -0.11393747478723526, 0.24056142568588257, -0.04395569860935211, -0.053772952407598495, -0.2539818584918976, -0.2263048142194748, -0.1722317636013031, 0.22974883019924164, -0.2043185830116272, -0.33846697211265564, 0.06195812299847603, -0.4313417971134186, -0.31433922052383423, 0.14258483052253723, 0.4864595830440521, -0.023162078112363815, 0.034658148884773254, 0.06519763916730881, -0.057058438658714294, -0.14825068414211273, -0.4258016347885132, -0.23728452622890472, 0.10393740236759186, 0.046742845326662064, 0.15876179933547974, 0.2824324667453766, -0.4163476526737213, 0.19143566489219666, -0.12345630675554276, 0.080362968146801, 0.08837667107582092, 0.0003864746540784836, -0.038515135645866394, -0.1677873730659485, 0.10418987274169922, 0.019243057817220688, 0.09914316982030869, 0.06904922425746918, -0.27879559993743896, 0.08328761905431747, 0.3198290765285492, -0.050865188241004944, -0.36254727840423584, -0.24028445780277252, 0.16973383724689484, -0.23519966006278992, -0.15194731950759888, 0.05260682851076126, 0.07158678025007248, 0.08779965341091156, -0.18230843544006348, 0.010463841259479523, 0.19139698147773743, 0.19620224833488464, -0.24330955743789673, 0.27537932991981506, 0.6847068667411804, -0.8575750589370728, -0.0645468458533287, -0.3746861517429352, -0.29566067457199097, -0.11328881233930588, -0.026285450905561447, -0.0792921930551529, 0.16030478477478027, -0.2466028928756714, 0.0961676836013794, 0.3950936496257782, -0.16864114999771118, -0.7296182513237, -0.08966940641403198, -0.11797313392162323, 0.038209058344364166, 0.03884001076221466, 0.2587750554084778, -0.043900586664676666, -0.024599572643637657, -0.31389662623405457, -0.2207810878753662, 0.082102470099926, -0.2556655704975128, -0.24140474200248718, -0.402444452047348, 0.23271508514881134, 0.16654136776924133, 0.21351374685764313, -0.041693754494190216, 0.327043354511261, -0.16558672487735748, 0.31463488936424255, -0.148122638463974, 0.2848621904850006, 0.152806356549263, 0.4937235713005066, 0.415080189704895, 0.23849977552890778, 0.07268048077821732, -0.26173409819602966, 0.23462197184562683, 0.022772032767534256, 0.09395846724510193, 0.11599887162446976, -0.014998354017734528, -0.3226868808269501, -0.14628776907920837, -0.6239019632339478, -0.3042360246181488, 0.11951977014541626, 0.2918020486831665, -0.07826189696788788, 0.1995171457529068, -0.1679525226354599, 0.23678500950336456, -0.058073852211236954, 0.0001181739498861134, -0.008989933878183365, 0.33003538846969604, -0.21284963190555573, 0.026945602148771286, -0.28295934200286865, 0.12424219399690628, 0.32060229778289795, -0.2916024327278137, -0.0974700003862381, 0.36947527527809143, -0.21691977977752686, 0.08001583814620972, 0.23172977566719055, 0.013828575611114502, 0.30247530341148376, -0.5033228993415833, 0.2809160351753235, 0.10994626581668854, 0.1187463253736496, -0.15787944197654724, 0.09203650057315826, -0.10911013185977936, -0.09819890558719635, 0.000026047229766845703, -0.07877251505851746, 0.11555338650941849, 0.3489157557487488, 0.03606819733977318, 0.1823003739118576, -0.2661875784397125, 0.36034077405929565, -0.45979273319244385, 0.3849899470806122, -0.2043881118297577, -0.1554352045059204, 0.18761858344078064, 0.09770609438419342, -0.025698507204651833, 0.05538426339626312, 0.027038447558879852, -0.14420124888420105, 0.04660169780254364, 0.24253863096237183, 0.2145337015390396, 0.32743149995803833, 0.23378734290599823, -0.09861710667610168, 0.0172702856361866, 0.2810685932636261, -0.15371611714363098, 0.12139936536550522, -0.12424159049987793, 0.024914538487792015, -0.002461478114128113, 0.03300664946436882, -0.08487557619810104, -0.40588247776031494, -0.12505218386650085, 0.18649007380008698, 0.2319680154323578, -0.1977393478155136, -0.09247233718633652, -0.37717968225479126, -0.34165576100349426, -0.038167886435985565, -0.3886730968952179, -0.29312390089035034, -0.22511756420135498, 0.04092886671423912, 0.024274954572319984, 0.12857526540756226, 0.17469218373298645, -0.3331785202026367, 0.3201797902584076, -0.07517138123512268, 0.02466983161866665, -0.1758149266242981, 0.04766916483640671, -0.37950557470321655, 0.13386443257331848, 0.20051880180835724, -0.27325549721717834, 0.2606118619441986, -0.3598274290561676, 0.4085063934326172, -0.6811457276344299, -0.4405825138092041, 0.20742130279541016, 0.07577165961265564, 0.15752749145030975, -0.028491996228694916, 0.13456663489341736, 0.043119870126247406, -0.12809912860393524, 0.1332269310951233, 0.01376376487314701, -0.05140218138694763, -0.14741544425487518, -0.06253161281347275, 0.02020658366382122, 0.07686933875083923, -0.4956458508968353, -0.4501398205757141, -0.20823976397514343, 0.11859041452407837, 0.08416768908500671, 0.02039514109492302, -0.08508523553609848, 0.029573488980531693, 0.2879750728607178, 0.10915391892194748, -0.0643557533621788, -0.3191491365432739, -0.25057005882263184, 0.3353726863861084, -0.3928937017917633, -0.32379767298698425, 0.35019853711128235, 0.05875620245933533, 0.26830148696899414, -0.16484202444553375, -0.6797569394111633, -0.0057592857629060745, -0.03605422377586365, 0.17903859913349152, 0.05178694427013397, -0.1050386130809784, 0.36622366309165955, 0.035520076751708984, 0.06221789866685867, -0.18170315027236938, -0.24157360196113586, 0.08170397579669952, -0.14031550288200378, 0.6115557551383972, -0.12617042660713196, 0.47192081809043884, 0.05043845996260643, 0.7219995260238647, 0.12880302965641022, 0.03625971078872681, 0.5672438144683838, -0.039266303181648254, 0.5134875774383545, -0.16308915615081787, -0.3909629285335541, 0.2895596921443939, -0.02591077983379364, 0.09952559322118759, 0.1661323606967926, 0.23958474397659302, -0.2429133802652359, -0.25114840269088745, -0.11863169074058533, -0.3814891278743744, 0.009311407804489136, -0.23801498115062714, -0.14102742075920105, 0.12460161745548248, 0.12219506502151489, 0.09560474008321762, -0.06434659659862518, -0.352205365896225, -0.08505876362323761, 0.5368477702140808, 0.229692280292511, 0.1221345067024231, 0.001288037747144699, 0.0015727628488093615, -0.42586633563041687, 0.5277127027511597, -0.019621720537543297, 0.022106634452939034, -0.354861855506897, 0.15011706948280334, 0.1506624072790146, -0.08435332775115967, 0.6012242436408997, -0.2865396738052368, -0.1434844732284546, 0.13638187944889069, 0.10619936883449554, 0.014156358316540718, -0.00816744938492775, 0.1807977557182312, 0.25536859035491943, 0.2903602719306946, -0.06640897691249847, -0.15160231292247772, 0.15913261473178864, 0.35078129172325134, 0.025985071435570717, -0.27782103419303894, -0.3171444535255432, -0.12655101716518402, -0.2926403880119324, -0.15043967962265015, -0.17192915081977844, -0.42732083797454834, 0.17527490854263306, 0.14638780057430267, -0.025796838104724884, 0.13625448942184448, -0.1193334311246872, 0.10116378962993622, 0.13644462823867798, 0.27941834926605225, 0.21796928346157074, 0.11618977785110474, 0.45482930541038513, 0.11639147251844406, 0.5532748103141785, 0.2870537042617798, -0.2565663754940033, 0.04836415871977806, 0.23516476154327393, -0.16229957342147827, 0.16947638988494873, 0.21651330590248108, 0.01808641105890274, -0.0180232971906662, 0.2630314230918884, -0.1031637191772461, -0.004085424356162548, 0.08348844200372696, 0.22317880392074585, -0.08963891863822937, -0.5047668218612671, -0.6223267316818237, 0.4840914309024811, -0.08137881755828857, 0.01992621272802353, 0.3094952404499054, 0.5659363865852356, -0.06279350072145462, -0.1952163577079773, -0.10573344677686691, 0.9913251996040344, -0.01607954502105713, -0.19653497636318207, 0.23361241817474365, -0.26510918140411377, 0.36435630917549133, -0.6154965758323669, 0.17984434962272644, -0.1497526466846466, 0.10361543297767639, -0.1377863734960556, -0.11610764265060425, 0.19744983315467834, 0.08191995322704315, -0.24023349583148956, 0.23748022317886353, -0.14026296138763428, 0.008844379335641861, 0.09410086274147034, 0.2730471193790436, -0.145110622048378, 0.12864454090595245, 0.09512516856193542, 0.27757489681243896, 0.041549667716026306, 0.31401652097702026, -0.3654163181781769, -0.11717446148395538, -0.18411804735660553, -0.035412371158599854, -0.28163403272628784, 0.09470748901367188, -0.2186398059129715, 0.22578707337379456, -0.15985137224197388, -0.5868874788284302, 0.1419634073972702, 0.09361545741558075, 0.11241987347602844, -0.06433480978012085, -0.25433897972106934, 0.32414883375167847, -0.02640688419342041, -0.03107677772641182, -0.07090947777032852, -0.03291955590248108, -0.07828869670629501, -0.09055222570896149, -0.2867884635925293, 0.1418088674545288, -0.08404526859521866, -0.6618636846542358, -0.07193132489919662, 0.051804348826408386, 0.0364072322845459, -0.010413658805191517, 0.149627685546875, 0.2464258372783661, 0.13345980644226074, -0.1559007316827774, 0.12337115406990051, 0.270973265171051, -0.14327828586101532, -0.16663357615470886, 0.08229155093431473, 0.027304373681545258, -0.2617928981781006, 0.20229017734527588, -0.022588111460208893, -0.030554484575986862, 0.44203856587409973, 0.19901925325393677, -0.24788525700569153, -0.08800096809864044, 0.022683292627334595, 0.15727514028549194, -0.411248117685318, -0.36792346835136414, -0.05244770646095276, 0.13961796462535858, -0.016008855774998665, 0.09991472959518433, 0.08243653178215027, 0.19503536820411682, -0.19141200184822083, -0.3782986104488373, -0.25369584560394287, 0.009799912571907043, -0.160887211561203, 0.4084816873073578, 0.01937006413936615, 0.1435050666332245, 0.24254494905471802, 0.23241113126277924, -0.28179246187210083, -0.027138162404298782, -0.1400301456451416, -0.16454873979091644, 0.21781758964061737, 0.13730651140213013, 0.25441622734069824, -0.06083391606807709, 0.03157266229391098, 0.08802030235528946, -0.30175065994262695, -0.0904497355222702, 0.10380390286445618, 0.14452587068080902, 0.06172066554427147, -0.23219698667526245, -0.20867034792900085, -0.11127012968063354, -0.06282645463943481, 0.14332251250743866, -0.021284887567162514, -0.06652193516492844, -0.052788153290748596, -0.1744549423456192, 0.09363263100385666, -0.4461219012737274, -0.2536543011665344, 0.04505430907011032, 0.22638124227523804, 0.30156561732292175, 0.14608009159564972, 0.21484793722629547, 0.06532878428697586, -0.05169801414012909, 0.19139328598976135, 0.10047128796577454, 0.023975349962711334, -0.07557103782892227, 0.13822218775749207, -0.5198964476585388, 0.2907065153121948, 0.25232359766960144, 0.2842791676521301, 0.05991818383336067, -0.13638553023338318, 0.14432194828987122, 0.3365747928619385, 0.1660872846841812, -0.27524852752685547, -0.10513539612293243, 0.42130246758461, 0.19371913373470306, -0.007537905126810074, -0.0096651092171669, 0.09941621124744415, 0.033131033182144165, 0.18650740385055542, 0.31021517515182495, 0.5358121395111084, -0.21075403690338135, 0.24474065005779266, 0.08043906092643738, -0.33298149704933167, 0.3378942608833313, 0.5476822257041931, 0.06035100668668747, -0.11294815689325333, 0.49425822496414185, -0.38523679971694946, 0.12334614247083664, -0.0020899735391139984, 0.08248747140169144, 0.1934291124343872, -0.39538952708244324, -0.004480481147766113, 0.019943326711654663, -0.07073168456554413, -0.16966000199317932, 0.08937221765518188, 0.4243672788143158, -0.11363960057497025, -0.006635255645960569, -0.4290580153465271, 0.22416804730892181, -0.24446618556976318, 0.3082277178764343, 0.2995961010456085, -0.3940206468105316, 0.11847816407680511, -0.010640053078532219, 0.08607277274131775, -0.170389786362648, -0.08519892394542694, -0.09516102075576782, -0.32480335235595703, -0.3828372657299042, 0.129556342959404, 0.10207238048315048, -0.046856142580509186, -0.029646476730704308, 0.2299109548330307, 0.2619510293006897, -0.11586545407772064, 0.029826126992702484, 0.3530755043029785, 0.2068156898021698, 0.19645048677921295, 0.3272015452384949, 0.11102328449487686, -0.04140915349125862, -0.17085178196430206, -0.13247504830360413, 0.17468242347240448, 0.27183979749679565, -0.1673726588487625, 0.10653090476989746, 0.1378186196088791, -0.1679006665945053, 0.20942313969135284, 0.09569655358791351, 0.5909017324447632, -0.4388543963432312, 0.1073559895157814, -0.5247108936309814, -0.08777211606502533, -0.259042352437973, -0.11028914898633957, -0.3550221025943756, 0.43357181549072266, 0.42289048433303833, -0.07250204682350159, -0.07005557417869568, -0.17292520403862, 0.04761134833097458, 0.20433254539966583, 0.15159134566783905, 0.13587281107902527, 0.25030696392059326, -0.15758387744426727, -0.33400627970695496, -0.7697469592094421, 0.16480162739753723, -0.24276825785636902, 0.4092871844768524, -0.26480987668037415, 0.22257353365421295, 0.019868522882461548, 0.012047329917550087, 0.7389400005340576, 0.10853848606348038, 0.29838132858276367, 0.022934965789318085, -0.1844315528869629, -0.14657799899578094, 0.2127372920513153, 0.09207415580749512, -0.07560636103153229, -0.055383484810590744, 0.1704784482717514, 0.1376754641532898, 0.02663218230009079, -0.14361651241779327, -0.19439363479614258, -0.046757109463214874, -0.14708463847637177, 0.525126576423645, 0.1352972835302353, 0.5072580575942993, 0.09864334017038345, 0.06984366476535797, -0.2906361520290375, -0.35848262906074524, -0.0552237443625927, -0.07954560965299606, 0.04831668362021446, 0.274827778339386, -0.2677263021469116, -0.21312372386455536, -0.29923343658447266, 0.4326144754886627, -0.021329378709197044, 0.4781586229801178, -0.23030394315719604, -0.07533003389835358, -0.32811620831489563, -0.05134198069572449, 0.2934401333332062, 0.03272624313831329, 0.027314702048897743, -0.07696493715047836, -0.20740532875061035, 0.023787846788764, 0.35019540786743164, -0.5527090430259705, 0.03794649615883827, -0.2067852020263672, 0.11359508335590363, 0.24399662017822266, -0.2600235939025879, -0.18595843017101288, 0.0004768669605255127, 0.44194135069847107, 0.22543993592262268, -0.04113698750734329, 0.08720812201499939, -0.11914564669132233, -0.031592778861522675, -0.03779112175107002, 0.16944001615047455, 0.2602787911891937, -0.1257963627576828, 0.1477811485528946, -0.2468399852514267 ]
https://github.com/huggingface/datasets/issues/3268
Dataset viewer issue for 'liweili/c4_200m'
Hi ! Your dataset code is all good now :) ```python In [1]: from datasets import load_dataset In [2]: d = load_dataset("liweili/c4_200m", streaming=True) Downloading: 100%|█████████████████████████████████████████████| 2.79k/2.79k [00:00<00:00, 4.83MB/s] Using custom data configuration default In [3]: next(iter(d["train"])) Out[3]: {'input': 'Bitcoin is for $7,094 this morning, which CoinDesk says.', 'output': 'Bitcoin goes for $7,094 this morning, according to CoinDesk.'} ``` Though the viewer doesn't seem to be updated, I'll take a look at what's wrong
## Dataset viewer issue for '*liweili/c4_200m*' **Link:** *[link to the dataset viewer page](https://huggingface.co/datasets/liweili/c4_200m)* *Server Error* ``` Status code: 404 Exception: Status404Error Message: Not found. Maybe the cache is missing, or maybe the ressource does not exist. ``` Am I the one who added this dataset ? Yes
73
Dataset viewer issue for 'liweili/c4_200m' ## Dataset viewer issue for '*liweili/c4_200m*' **Link:** *[link to the dataset viewer page](https://huggingface.co/datasets/liweili/c4_200m)* *Server Error* ``` Status code: 404 Exception: Status404Error Message: Not found. Maybe the cache is missing, or maybe the ressource does not exist. ``` Am I the one who added this dataset ? Yes Hi ! Your dataset code is all good now :) ```python In [1]: from datasets import load_dataset In [2]: d = load_dataset("liweili/c4_200m", streaming=True) Downloading: 100%|█████████████████████████████████████████████| 2.79k/2.79k [00:00<00:00, 4.83MB/s] Using custom data configuration default In [3]: next(iter(d["train"])) Out[3]: {'input': 'Bitcoin is for $7,094 this morning, which CoinDesk says.', 'output': 'Bitcoin goes for $7,094 this morning, according to CoinDesk.'} ``` Though the viewer doesn't seem to be updated, I'll take a look at what's wrong
[ -0.4007692337036133, 0.5141005516052246, -0.08499705791473389, 0.39881330728530884, 0.09002937376499176, 0.13644325733184814, 0.17925509810447693, 0.30913397669792175, -0.21089127659797668, 0.032135993242263794, -0.11873441189527512, 0.0765218660235405, -0.15026794373989105, 0.14073222875595093, 0.05653057247400284, 0.047741975635290146, -0.053707756102085114, 0.2665192484855652, 0.003940418362617493, -0.00021172687411308289, -0.042450934648513794, -0.014669248834252357, -0.10563221573829651, -0.23302645981311798, -0.30870485305786133, 0.06468111276626587, -0.04962581396102905, 0.12284901738166809, -0.20144771039485931, -0.7416375279426575, 0.4144558608531952, 0.14762650430202484, 0.21298982203006744, 0.629940927028656, -0.00010870165715459734, -0.040106553584337234, 0.3618807792663574, -0.08462392538785934, -0.33334657549858093, -0.2459670752286911, -0.19241487979888916, -0.31089648604393005, 0.1801445186138153, -0.08522047102451324, -0.1757211685180664, -0.03825460374355316, 0.0203840434551239, -0.3884207010269165, -0.052673980593681335, 0.31996265053749084, 0.2671203315258026, -0.04940461367368698, 0.1281646341085434, 0.002555964281782508, 0.06410034745931625, -0.3388638496398926, -0.04876033961772919, 0.25937527418136597, -0.07292124629020691, 0.3572557866573334, 0.007752470672130585, 0.3772914409637451, -0.0870317593216896, 0.05855769291520119, 0.006595458835363388, -0.03639744594693184, -0.03993409872055054, -0.3320508301258087, 0.21270698308944702, 0.35261622071266174, 0.8941667079925537, -0.3157355785369873, -0.2543492913246155, 0.005300648510456085, 0.057292357087135315, -0.26025789976119995, 0.27287188172340393, 0.12141828238964081, 0.08475103974342346, 0.2360837608575821, -0.22562646865844727, -0.048989273607730865, -0.11513479799032211, 0.2003810554742813, -0.3122187554836273, 0.012278750538825989, -0.06549488008022308, -0.010191284120082855, 0.11548107862472534, 0.01447816751897335, 0.3160977065563202, -0.1034332811832428, -0.000766407698392868, 0.11078272014856339, -0.3483014404773712, 0.12372763454914093, 0.059902697801589966, 0.21455413103103638, -0.22268274426460266, 0.07131943106651306, -0.07959216833114624, 0.04933123290538788, -0.27251508831977844, 0.036345966160297394, -0.03397359699010849, 0.23297350108623505, -0.08097141236066818, -0.07588449120521545, 0.1555359810590744, 0.005721963010728359, 0.14355017244815826, -0.004411857575178146, -0.13034354150295258, -0.33051833510398865, -0.2120186984539032, -0.05072065442800522, 0.22559119760990143, -0.1655941754579544, -0.37012979388237, 0.1691509336233139, -0.5444761514663696, -0.2087191790342331, 0.10508174449205399, 0.42547667026519775, -0.11244677752256393, 0.3648325502872467, 0.06410367786884308, 0.0098190288990736, -0.07224379479885101, -0.36638471484184265, -0.24424508213996887, 0.021871769800782204, -0.02350752055644989, 0.03757641091942787, 0.31092581152915955, -0.417508602142334, 0.26653042435646057, -0.03175549581646919, 0.1457667350769043, -0.039666153490543365, -0.0007462576031684875, -0.12327343225479126, -0.08599942177534103, 0.1506650149822235, -0.032021213322877884, 0.18582646548748016, 0.11809474229812622, -0.26194095611572266, -0.0054860711097717285, 0.2602054476737976, -0.033869870007038116, -0.2370222508907318, -0.10457080602645874, 0.20649811625480652, -0.2634814977645874, -0.2337576448917389, 0.050081104040145874, 0.13197709619998932, 0.11921309679746628, -0.13459913432598114, -0.012352980673313141, -0.07379709184169769, 0.18005022406578064, -0.32325389981269836, 0.34803488850593567, 0.6132742762565613, -0.9262834787368774, -0.018764209002256393, -0.2667137086391449, -0.20940738916397095, 0.0923389196395874, -0.002452399581670761, -0.16846568882465363, 0.09849897772073746, -0.08330066502094269, 0.07795350253582001, 0.30397674441337585, -0.3614036440849304, -0.8733243346214294, 0.04541442170739174, -0.019843850284814835, 0.20309112966060638, 0.03727824240922928, 0.20592066645622253, 0.049311086535453796, 0.007966805249452591, -0.21718642115592957, -0.17170758545398712, -0.02934371493756771, -0.1829206496477127, -0.38700151443481445, -0.4867548644542694, 0.3363812565803528, 0.144297793507576, 0.2828355133533478, -0.20336297154426575, 0.0824626013636589, -0.08630049973726273, 0.45261573791503906, 0.004351828247308731, 0.16366852819919586, -0.03357381373643875, 0.4336581230163574, 0.3732982873916626, 0.10169891268014908, 0.08550913631916046, -0.22661703824996948, 0.23665949702262878, 0.16573724150657654, 0.14176517724990845, 0.12946093082427979, 0.050527818500995636, -0.37664592266082764, -0.1410568207502365, -0.5314281582832336, -0.25018373131752014, 0.1991771161556244, 0.2147829383611679, -0.22569769620895386, 0.28240472078323364, -0.22768358886241913, 0.31123867630958557, -0.13125495612621307, 0.05648012459278107, 0.11503235995769501, 0.31523066759109497, -0.18676935136318207, -0.020151857286691666, -0.18433217704296112, -0.00644318014383316, 0.37073659896850586, -0.10750006884336472, -0.2069384753704071, 0.4541057050228119, -0.09030702710151672, 0.16193890571594238, 0.03387302905321121, 0.16956917941570282, 0.3195778429508209, -0.2937661111354828, 0.24857470393180847, 0.31345728039741516, 0.11190144717693329, -0.09098172187805176, 0.06672602891921997, -0.010304182767868042, -0.04115881398320198, -0.012373432517051697, -0.11367809772491455, 0.07767846435308456, 0.4457224905490875, -0.035102855414152145, 0.07391040027141571, -0.2375182807445526, 0.25430259108543396, -0.6323582530021667, 0.49471479654312134, -0.20800895988941193, -0.18239155411720276, 0.19692210853099823, 0.12538579106330872, 0.005540132522583008, -0.02137710154056549, 0.06064966693520546, -0.22082418203353882, -0.005279719829559326, 0.22021624445915222, 0.34714946150779724, 0.15608032047748566, 0.14068603515625, -0.052900318056344986, 0.11079119145870209, 0.2280639410018921, -0.21046686172485352, 0.13997386395931244, 0.0020640119910240173, 0.009875396266579628, 0.08446082472801208, 0.0909620001912117, 0.04267337918281555, -0.22644412517547607, -0.17060412466526031, 0.10362598299980164, 0.22004170715808868, -0.1866649091243744, -0.15937159955501556, -0.5042420625686646, -0.2797979712486267, -0.07931239157915115, -0.42315375804901123, -0.08414433896541595, -0.3479713499546051, -0.10762088000774384, 0.07621899247169495, -0.012918293476104736, 0.23758739233016968, -0.41540253162384033, 0.08084699511528015, 0.07329681515693665, -0.023066675290465355, -0.18144476413726807, -0.041818827390670776, -0.2727788984775543, 0.13655918836593628, 0.24680818617343903, -0.22332675755023956, 0.24269476532936096, -0.30695050954818726, 0.1823766976594925, -0.39099475741386414, -0.4228445291519165, 0.1924048811197281, 0.06692828983068466, 0.09892792999744415, -0.06444807350635529, 0.029701583087444305, 0.07234985381364822, -0.1181466281414032, 0.06100127100944519, 0.04262038320302963, 0.16557927429676056, -0.09212049841880798, 0.026634756475687027, 0.043030641973018646, 0.15885809063911438, -0.5491917729377747, -0.5089230537414551, -0.3816438615322113, -0.02316628396511078, 0.09677635133266449, 0.026107676327228546, -0.001065845601260662, 0.1853344440460205, 0.22136524319648743, 0.22584432363510132, -0.09891252219676971, -0.20208734273910522, -0.2103346586227417, 0.2865546941757202, -0.22343723475933075, -0.2747688889503479, 0.28886857628822327, 0.02716701477766037, 0.14555028080940247, -0.0059722838923335075, -0.73114013671875, 0.23977388441562653, -0.08060978353023529, 0.25368252396583557, 0.06440182775259018, -0.2422814816236496, 0.19956564903259277, 0.1901160031557083, 0.028339480981230736, -0.1819545030593872, -0.14003944396972656, 0.011308714747428894, -0.08082807809114456, 0.45451033115386963, -0.11623077839612961, 0.5022859573364258, 0.20709890127182007, 0.627097487449646, 0.27004826068878174, -0.09234261512756348, 0.44508448243141174, 0.08062183111906052, 0.41897058486938477, -0.14225956797599792, -0.2870385944843292, 0.1567462980747223, 0.045788541436195374, -0.04277326911687851, 0.2128654271364212, 0.10510114580392838, -0.30609017610549927, -0.21557927131652832, -0.05744124576449394, -0.43689125776290894, -0.10315502434968948, -0.07754439860582352, -0.25122758746147156, 0.19262143969535828, 0.11519469320774078, 0.2911383807659149, -0.004961930215358734, -0.38118720054626465, -0.15004029870033264, 0.3774244785308838, 0.12395382672548294, -0.0009831245988607407, 0.1056327074766159, 0.12845443189144135, -0.48877614736557007, 0.3757806420326233, 0.020083945244550705, 0.10820858925580978, -0.06659597903490067, 0.13780447840690613, 0.10410674661397934, -0.04335183650255203, 0.40513771772384644, -0.1876375824213028, -0.07776347547769547, 0.231222003698349, 0.04459959268569946, -0.02108716033399105, -0.18401667475700378, -0.03981716185808182, 0.19494439661502838, 0.3307609558105469, -0.1231154352426529, -0.10366389900445938, 0.08094203472137451, 0.30183327198028564, 0.14727631211280823, -0.21357567608356476, -0.2964264154434204, 0.003721524029970169, -0.20599204301834106, -0.15567845106124878, -0.22304347157478333, -0.44768351316452026, 0.1071079894900322, -0.17069469392299652, -0.014987606555223465, 0.1244107335805893, -0.04918201267719269, 0.1252947449684143, 0.09651501476764679, 0.37411561608314514, 0.13229861855506897, 0.21296395361423492, 0.3048307001590729, -0.050940342247486115, 0.6935526728630066, 0.2880510985851288, -0.024303782731294632, 0.014447353780269623, 0.07345034182071686, -0.04499262943863869, -0.011363774538040161, 0.27573978900909424, -0.1295679360628128, -0.12062840908765793, 0.19261543452739716, 0.10949195176362991, -0.06334314495325089, 0.3135075569152832, 0.29659926891326904, -0.1292608678340912, -0.5085885524749756, -0.7286774516105652, 0.5894799828529358, -0.20028889179229736, -0.028221741318702698, 0.2893045246601105, 0.3461824059486389, -0.08371138572692871, 0.0019776057451963425, -0.05324336141347885, 0.8695740103721619, 0.06409718096256256, -0.19832850992679596, 0.4195345342159271, -0.3048585057258606, 0.28222423791885376, -0.6040363311767578, 0.2115071713924408, -0.2099774181842804, 0.08810845762491226, -0.09744001179933548, -0.04199141263961792, 0.11453932523727417, 0.16040626168251038, -0.3240549862384796, 0.22250206768512726, -0.24500064551830292, -0.011076454073190689, 0.1269180327653885, 0.2083703875541687, -0.19862064719200134, 0.11440663039684296, -0.043645769357681274, 0.29551881551742554, -0.03957810997962952, 0.1379755735397339, -0.30775222182273865, -0.131257101893425, -0.23478953540325165, 0.08076813071966171, -0.4409794211387634, 0.14413169026374817, -0.18734124302864075, 0.2906535267829895, -0.3447117507457733, -0.5678406953811646, 0.025509964674711227, 0.05752529948949814, 0.05510014668107033, 0.008038755506277084, -0.19988355040550232, 0.36491459608078003, 0.02482711896300316, -0.033427003771066666, 0.1895522028207779, 0.03230427950620651, 0.08658239990472794, -0.0614587739109993, -0.31814223527908325, 0.21489471197128296, -0.021279722452163696, -0.4861510992050171, 0.08353765308856964, 0.1234237402677536, 0.19969269633293152, -0.12278130650520325, 0.06825494766235352, 0.1794673502445221, 0.10199020802974701, -0.1585814654827118, 0.1777319312095642, 0.11804230511188507, -0.023417187854647636, -0.02400059998035431, 0.0027701519429683685, -0.06532079726457596, -0.2930859327316284, 0.23728618025779724, 0.031197650358080864, -0.06942842900753021, 0.514975905418396, 0.20450960099697113, -0.31384551525115967, -0.09166736900806427, 0.004902444779872894, 0.03113560378551483, -0.2439238429069519, -0.17318488657474518, -0.17284099757671356, 0.09559406340122223, 0.009044595994055271, 0.035161092877388, 0.13675716519355774, 0.1224244236946106, -0.26141253113746643, -0.3782849907875061, -0.1083068698644638, 0.015988759696483612, -0.02134319767355919, 0.28983473777770996, -0.07574053108692169, 0.18407456576824188, 0.11893761157989502, 0.06197401136159897, -0.33282580971717834, 0.030783874914050102, -0.20013239979743958, -0.02445201203227043, 0.10483919829130173, 0.17150428891181946, 0.1836501657962799, -0.058737076818943024, 0.10018186271190643, 0.015358733013272285, -0.2760670483112335, -0.188651442527771, -0.030093055218458176, 0.13306185603141785, 0.14713497459888458, -0.26729679107666016, -0.151984304189682, -0.05187785625457764, -0.13769391179084778, -0.02855836972594261, -0.12676185369491577, 0.13374614715576172, -0.01007264107465744, 0.09869467467069626, 0.07318489998579025, -0.10615064948797226, -0.07815705239772797, 0.09740583598613739, 0.09379343688488007, 0.4345570206642151, 0.1389659345149994, 0.2634284496307373, 0.10395122319459915, 0.07143451273441315, 0.13534484803676605, 0.0003623664379119873, -0.07651357352733612, 0.030738510191440582, 0.2975707948207855, -0.5424274206161499, 0.33012187480926514, 0.32958945631980896, 0.3709893226623535, 0.22048187255859375, -0.22870658338069916, -0.15932467579841614, 0.37290632724761963, 0.23050366342067719, -0.23879550397396088, 0.038321636617183685, 0.3261186182498932, 0.22761256992816925, 0.12499436736106873, -0.07887566834688187, 0.07107846438884735, -0.12353816628456116, 0.18529680371284485, 0.309603214263916, 0.6344682574272156, -0.18726347386837006, 0.4167385995388031, 0.18826106190681458, -0.25787824392318726, 0.21167083084583282, 0.2196151167154312, 0.02440841868519783, 0.06296710669994354, 0.4976762533187866, -0.25039273500442505, 0.06086113303899765, 0.04110032692551613, -0.018626023083925247, 0.07818157225847244, -0.387872576713562, -0.09678858518600464, 0.10743213444948196, -0.3216647207736969, 0.004483282566070557, 0.05904046446084976, 0.26609006524086, -0.04966035485267639, 0.013845952227711678, -0.34981465339660645, 0.1879587322473526, -0.1230766698718071, 0.31612420082092285, 0.23267123103141785, -0.24469634890556335, 0.012187555432319641, 0.03754444792866707, -0.00842646136879921, -0.10484375059604645, -0.02371557056903839, 0.10431955754756927, -0.4113991856575012, -0.4587665796279907, 0.09027789533138275, 0.06605996936559677, 0.07176290452480316, -0.1405310481786728, 0.11381297558546066, 0.5268629789352417, -0.09630715847015381, -0.0692724734544754, 0.3148777186870575, 0.2491445690393448, 0.4245713949203491, 0.09460306167602539, 0.0817941203713417, 0.19644485414028168, -0.10157538205385208, -0.04503098130226135, 0.04875257983803749, 0.24046039581298828, 0.01038394682109356, 0.18279416859149933, 0.1945764720439911, -0.2612311840057373, 0.0988263189792633, 0.0899309292435646, 0.503887951374054, -0.34461501240730286, 0.11984969675540924, -0.29391518235206604, 0.05838296562433243, -0.11407805979251862, -0.21078890562057495, -0.45305007696151733, 0.2818598449230194, 0.41979917883872986, -0.1277751326560974, 0.05656576156616211, -0.0535859540104866, 0.08982941508293152, 0.1683780401945114, 0.2780127227306366, 0.10475940257310867, 0.25401705503463745, -0.2565115690231323, -0.24232280254364014, -0.7238146066665649, 0.14032728970050812, -0.21956586837768555, 0.2744809091091156, -0.29514211416244507, 0.3091666102409363, -0.07497713714838028, 0.14902694523334503, 0.5499958395957947, 0.0843455046415329, 0.20368413627147675, 0.13212139904499054, -0.19140906631946564, -0.12568698823451996, 0.13381361961364746, 0.041370950639247894, -0.067573681473732, -0.214819073677063, 0.14517760276794434, -0.12406929582357407, 0.13160353899002075, -0.1046978086233139, -0.2968873679637909, 0.0415821336209774, -0.172785222530365, 0.5804511904716492, 0.18492332100868225, 0.452947735786438, 0.11541629582643509, -0.030743876472115517, -0.4064674377441406, -0.24512208998203278, -0.1469118595123291, -0.05205804109573364, -0.039604488760232925, 0.3578311502933502, -0.18818067014217377, -0.26003265380859375, -0.29509207606315613, 0.5019378662109375, 0.03466133028268814, 0.14912959933280945, -0.2242407351732254, -0.16973048448562622, -0.20419088006019592, 0.060959864407777786, 0.16973553597927094, 0.0687522143125534, 0.01205252856016159, 0.16322019696235657, -0.21948516368865967, -0.15201395750045776, 0.44865813851356506, -0.5803490281105042, -0.005771731957793236, -0.1908619999885559, 0.004694066941738129, 0.3160572946071625, 0.10153336822986603, -0.2718505263328552, 0.05878705531358719, 0.4106104373931885, 0.17374607920646667, -0.13689902424812317, 0.03252338990569115, -0.032829444855451584, -0.07023757696151733, 0.015938520431518555, 0.27466386556625366, 0.28465601801872253, -0.2792108654975891, -0.04630452021956444, -0.21908864378929138 ]
https://github.com/huggingface/datasets/issues/3265
Checksum error for kilt_task_wow
Using `dataset = load_dataset("kilt_tasks", "wow", ignore_verifications=True)` may fix it, but I do not think it is a elegant solution.
## Describe the bug Checksum failed when downloads kilt_tasks_wow. See error output for details. ## Steps to reproduce the bug ```python import datasets datasets.load_datasets('kilt_tasks','wow') ``` ## Expected results Download successful ## Actual results ``` Downloading and preparing dataset kilt_tasks/wow (download: 72.07 MiB, generated: 61.82 MiB, post-processed: Unknown size, total: 133.89 MiB) to /root/.cache/huggingface/datasets/kilt_tasks/wow/1.0.0/57dc8b2431e76637e0c6ef79689ca4af61ed3a330e2e0cd62c8971465a35db3a... 100%|████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 3/3 [00:00<00:00, 5121.25it/s] 100%|████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 3/3 [00:00<00:00, 1527.42it/s] Traceback (most recent call last): File "kilt_wow.py", line 30, in <module> main() File "kilt_wow.py", line 27, in main train, dev, test = dataset.generate_k_shot_data(k=32, seed=seed, path="../data/") File "/workspace/projects/CrossFit/tasks/fewshot_gym_dataset.py", line 79, in generate_k_shot_data dataset = self.load_dataset() File "kilt_wow.py", line 21, in load_dataset return datasets.load_dataset('kilt_tasks','wow') File "/opt/conda/lib/python3.8/site-packages/datasets/load.py", line 1632, in load_dataset builder_instance.download_and_prepare( File "/opt/conda/lib/python3.8/site-packages/datasets/builder.py", line 607, in download_and_prepare self._download_and_prepare( File "/opt/conda/lib/python3.8/site-packages/datasets/builder.py", line 679, in _download_and_prepare verify_checksums( File "/opt/conda/lib/python3.8/site-packages/datasets/utils/info_utils.py", line 40, in verify_checksums raise NonMatchingChecksumError(error_msg + str(bad_urls)) datasets.utils.info_utils.NonMatchingChecksumError: Checksums didn't match for dataset source files: ['http://dl.fbaipublicfiles.com/KILT/wow-train-kilt.jsonl', 'http://dl.fbaipublicfiles.com/KILT/wow-dev-kilt.jsonl'] ``` ## Environment info <!-- You can run the command `datasets-cli env` and copy-and-paste its output below. --> - `datasets` version: 1.15.1 - Platform: Linux-4.15.0-161-generic-x86_64-with-glibc2.10 - Python version: 3.8.3 - PyArrow version: 4.0.1
19
Checksum error for kilt_task_wow ## Describe the bug Checksum failed when downloads kilt_tasks_wow. See error output for details. ## Steps to reproduce the bug ```python import datasets datasets.load_datasets('kilt_tasks','wow') ``` ## Expected results Download successful ## Actual results ``` Downloading and preparing dataset kilt_tasks/wow (download: 72.07 MiB, generated: 61.82 MiB, post-processed: Unknown size, total: 133.89 MiB) to /root/.cache/huggingface/datasets/kilt_tasks/wow/1.0.0/57dc8b2431e76637e0c6ef79689ca4af61ed3a330e2e0cd62c8971465a35db3a... 100%|████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 3/3 [00:00<00:00, 5121.25it/s] 100%|████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 3/3 [00:00<00:00, 1527.42it/s] Traceback (most recent call last): File "kilt_wow.py", line 30, in <module> main() File "kilt_wow.py", line 27, in main train, dev, test = dataset.generate_k_shot_data(k=32, seed=seed, path="../data/") File "/workspace/projects/CrossFit/tasks/fewshot_gym_dataset.py", line 79, in generate_k_shot_data dataset = self.load_dataset() File "kilt_wow.py", line 21, in load_dataset return datasets.load_dataset('kilt_tasks','wow') File "/opt/conda/lib/python3.8/site-packages/datasets/load.py", line 1632, in load_dataset builder_instance.download_and_prepare( File "/opt/conda/lib/python3.8/site-packages/datasets/builder.py", line 607, in download_and_prepare self._download_and_prepare( File "/opt/conda/lib/python3.8/site-packages/datasets/builder.py", line 679, in _download_and_prepare verify_checksums( File "/opt/conda/lib/python3.8/site-packages/datasets/utils/info_utils.py", line 40, in verify_checksums raise NonMatchingChecksumError(error_msg + str(bad_urls)) datasets.utils.info_utils.NonMatchingChecksumError: Checksums didn't match for dataset source files: ['http://dl.fbaipublicfiles.com/KILT/wow-train-kilt.jsonl', 'http://dl.fbaipublicfiles.com/KILT/wow-dev-kilt.jsonl'] ``` ## Environment info <!-- You can run the command `datasets-cli env` and copy-and-paste its output below. --> - `datasets` version: 1.15.1 - Platform: Linux-4.15.0-161-generic-x86_64-with-glibc2.10 - Python version: 3.8.3 - PyArrow version: 4.0.1 Using `dataset = load_dataset("kilt_tasks", "wow", ignore_verifications=True)` may fix it, but I do not think it is a elegant solution.
[ -0.012825839221477509, -0.2781217694282532, -0.09309121966362, 0.2878214120864868, 0.39975959062576294, -0.08288058638572693, 0.23995210230350494, 0.5319927334785461, 0.364335834980011, 0.1832442730665207, 0.047630615532398224, 0.34542790055274963, 0.06783115118741989, 0.3870455026626587, -0.028222642838954926, 0.11160248517990112, 0.044130366295576096, -0.10360708832740784, -0.09448815882205963, 0.07594099640846252, -0.24356958270072937, 0.006693958304822445, -0.2141815572977066, -0.10754010081291199, -0.11000845581293106, -0.14665953814983368, 0.11409221589565277, 0.20896759629249573, -0.17225854098796844, -0.3939289152622223, 0.36109331250190735, -0.14680926501750946, -0.24705784022808075, 0.4836374819278717, -0.00011099078983534127, 0.08741390705108643, 0.49791234731674194, -0.09465853869915009, -0.32572636008262634, 0.21874433755874634, -0.22083386778831482, -0.3925756812095642, -0.17669528722763062, -0.5591238737106323, 0.10951986163854599, 0.32315385341644287, -0.15126927196979523, 0.01665341854095459, 0.07934455573558807, 0.19120784103870392, 0.2628454864025116, 0.5959455966949463, 0.22590018808841705, -0.1648675948381424, 0.3342747986316681, -0.2491687685251236, -0.2119433581829071, 0.4761384427547455, 0.07981560379266739, 0.08396980911493301, -0.08061974495649338, 0.26747357845306396, -0.08628801256418228, 0.07458596676588058, -0.06233140081167221, -0.23169901967048645, 0.2357165813446045, -0.12391012907028198, 0.2631690800189972, 0.21163851022720337, 0.013138532638549805, -0.3023892641067505, -0.3866114318370819, -0.1624424159526825, 0.16384722292423248, -0.024262061342597008, 0.29835978150367737, 0.27012938261032104, -0.2362079620361328, -0.264085590839386, -0.29421332478523254, 0.25153648853302, -0.014055449515581131, -0.013604365289211273, -0.04163606837391853, 0.19323837757110596, 0.05313282087445259, 0.09172870218753815, 0.12189897894859314, 0.1144481971859932, -0.015616306103765965, 0.050172023475170135, -0.19656957685947418, 0.08782029896974564, -0.6071636080741882, -0.2512291669845581, 0.03405626118183136, 0.14963006973266602, 0.3839889466762543, 0.10597709566354752, 0.04107872396707535, 0.03745635598897934, 0.15842211246490479, 0.056639060378074646, -0.01710325852036476, 0.290416419506073, 0.09402671456336975, -0.10827165096998215, 0.18960170447826385, 0.45229223370552063, -0.2431432008743286, 0.065186507999897, -0.21185269951820374, -0.24960459768772125, 0.10519413650035858, 0.13195395469665527, 0.03741727024316788, -0.06724100559949875, -0.34962767362594604, 0.2294098436832428, 0.1588984727859497, 0.2358558028936386, 0.28285467624664307, 0.29684221744537354, -0.38910308480262756, 0.09319278597831726, -0.0465097576379776, 0.30476295948028564, 0.040067389607429504, 0.03985410928726196, -0.2344687283039093, 0.14801624417304993, -0.2909494638442993, -0.19887566566467285, 0.2057027667760849, -0.4085448086261749, 0.49436429142951965, -0.0837448388338089, 0.25116991996765137, -0.3185092806816101, -0.027585472911596298, -0.1374465674161911, -0.15320804715156555, 0.40179309248924255, -0.05003141984343529, 0.07258415222167969, 0.21772058308124542, 0.3343736529350281, -0.05464204028248787, 0.08219744265079498, -0.44206327199935913, -0.0571909062564373, -0.13717684149742126, 0.21049948036670685, -0.2309621423482895, 0.012540463358163834, -0.26891210675239563, -0.41791048645973206, 0.41139185428619385, -0.27358123660087585, 0.18105670809745789, -0.09606370329856873, -0.20161134004592896, -0.43051618337631226, 0.2610640227794647, 0.0877293199300766, -0.1757514625787735, 0.0467115193605423, -0.2709534764289856, -0.294006884098053, 0.1010696217417717, 0.11939042806625366, -0.18707789480686188, 0.5738454461097717, -0.11303989589214325, -0.008110783994197845, 0.001402735710144043, -0.5044885277748108, -0.6426465511322021, -0.06585986167192459, -0.07562468945980072, 0.15157821774482727, -0.08994289487600327, 0.07066047936677933, 0.04405368119478226, -0.08374178409576416, 0.014466635882854462, 0.09358610957860947, -0.02986833266913891, 0.22594675421714783, -0.3437546193599701, -0.30173325538635254, 0.07722868025302887, 0.1929338425397873, 0.2797110676765442, -0.1758483350276947, 0.30256080627441406, 0.3612273335456848, 0.16999469697475433, 0.07903758436441422, 0.07871226221323013, 0.09941504150629044, 0.2066202461719513, -0.2813223600387573, 0.04323253035545349, -0.17224165797233582, -0.28461363911628723, 0.4127875864505768, -0.22769050300121307, 0.009458377957344055, -0.02721865475177765, -0.1355571448802948, -0.44887396693229675, 0.07076963782310486, -0.18776603043079376, -0.2652893364429474, 0.21930310130119324, -0.08642971515655518, 0.2091253399848938, -0.026270953938364983, -0.07709826529026031, 0.0785585567355156, -0.461982399225235, 0.010131990537047386, -0.010965248569846153, 0.21342845261096954, 0.014219095930457115, -0.17028005421161652, -0.1117764338850975, 0.25506967306137085, 0.03916874900460243, 0.02544725127518177, -0.19150078296661377, 0.45780086517333984, 0.0657748356461525, 0.08506979793310165, 0.3547762930393219, -0.23458309471607208, 0.07727105915546417, -0.07057502120733261, -0.05384678393602371, 0.2073998898267746, 0.14629341661930084, -0.07880066335201263, 0.011774294078350067, 0.44152283668518066, -0.09407347440719604, -0.008081123232841492, -0.1512877643108368, -0.06721121072769165, 0.007343517616391182, -0.20706406235694885, -0.07802145183086395, 0.18058054149150848, 0.18152476847171783, -0.11558572947978973, -0.07231676578521729, -0.14470717310905457, 0.06413303315639496, -0.13563743233680725, 0.45214948058128357, 0.07719606161117554, 0.11719183623790741, -0.010369628667831421, 0.13388685882091522, 0.05461786687374115, -0.09117165207862854, 0.3222332000732422, 0.44261783361434937, 0.05519410967826843, 0.1465136706829071, 0.025117557495832443, -0.1807839572429657, -0.06668247282505035, 0.04585576802492142, 0.17367315292358398, 0.25001072883605957, 0.48203083872795105, 0.19243894517421722, -0.023953799158334732, -0.11938519775867462, 0.16913747787475586, 0.21752449870109558, 0.21310707926750183, -0.01674015074968338, -0.23236316442489624, -0.07842815667390823, -0.16166958212852478, -0.08775860071182251, -0.04254179447889328, -0.15461260080337524, -0.25953686237335205, -0.006262402981519699, 0.17121803760528564, -0.10017788410186768, 0.267273873090744, -0.36962461471557617, 0.09062975645065308, 0.3246644139289856, -0.4286695718765259, 0.040819600224494934, -0.09769684076309204, 0.0449514240026474, 0.09470191597938538, 0.4179500639438629, -0.25722578167915344, 0.5363550782203674, -0.08607680350542068, -0.060641489923000336, -0.20476119220256805, -0.29047033190727234, -0.05982023477554321, -0.10436347126960754, 0.29212889075279236, 0.10089342296123505, 0.49689197540283203, -0.29578858613967896, -0.22123369574546814, 0.4083012342453003, -0.27896323800086975, -0.29483380913734436, 0.09461545944213867, 0.1188264712691307, 0.05580826476216316, -0.3278343677520752, -0.13495713472366333, -0.023636246100068092, -0.3361680507659912, -0.1312643140554428, -0.08239081501960754, 0.16313622891902924, 0.20600436627864838, 0.27329951524734497, 0.3915458023548126, 0.09976229816675186, 0.09260803461074829, -0.14462348818778992, -0.6678723692893982, 0.24336408078670502, -0.08730040490627289, -0.45217761397361755, 0.04863116517663002, -0.1096479669213295, 0.4888756275177002, 0.09110770374536514, -0.4867101311683655, -0.2733828127384186, -0.006613446399569511, 0.21535038948059082, 0.02149389497935772, -0.0024958793073892593, 0.09396308660507202, -0.2705867290496826, -0.14020511507987976, -0.2706994116306305, 0.10982239246368408, 0.1001070961356163, -0.04931933432817459, 0.5106632113456726, -0.0548376739025116, 0.08890305459499359, 0.18144001066684723, 0.5321940183639526, 0.36982908844947815, 0.17167457938194275, 0.35368844866752625, 0.010615183040499687, 0.1630488783121109, -0.08632103353738785, -0.3648349344730377, 0.29118263721466064, -0.19145259261131287, 0.058145128190517426, 0.13541248440742493, -0.056416310369968414, -0.0050191730260849, -0.0837477296590805, -0.13075391948223114, -0.4241699278354645, -0.2956397831439972, 0.032449766993522644, -0.07496192306280136, 0.10631158947944641, -0.18656381964683533, 0.05776136368513107, -0.124606654047966, -0.15436634421348572, 0.24534553289413452, 0.1521894782781601, -0.20795267820358276, -0.023382747545838356, -0.25346115231513977, -0.39506658911705017, -0.008484892547130585, 0.048804424703121185, 0.1407691389322281, 0.2005421221256256, 0.009210143238306046, 0.004869736731052399, 0.03327306732535362, -0.24464383721351624, 0.675302267074585, -0.08885043859481812, 0.2909526228904724, -0.21686376631259918, 0.0988602489233017, -0.21755865216255188, -0.2775552272796631, -0.08567012846469879, -0.32380059361457825, 0.5570377111434937, 0.4324871301651001, -0.4728827178478241, 0.23857787251472473, 0.18626481294631958, 0.33856743574142456, -0.0520416721701622, -0.13201168179512024, -0.3523634970188141, -0.4857132136821747, -0.6219677329063416, 0.3324495255947113, 0.10161768645048141, 0.596638023853302, -0.003400945570319891, -0.052498769015073776, -0.03777328133583069, 0.08883237093687057, -0.03989614546298981, 0.0720183402299881, 0.3407585620880127, 0.08532870560884476, 0.33580005168914795, -0.09021583199501038, -0.1750660091638565, 0.16507166624069214, 0.679714024066925, 0.10003741085529327, 0.21105259656906128, -0.09028621762990952, -0.09131146222352982, 0.07119865715503693, 0.34830912947654724, -0.26422637701034546, 0.06735048443078995, 0.031235024333000183, 0.0548940971493721, 0.017383748665452003, 0.20264922082424164, 0.24378055334091187, -0.18990954756736755, -0.23948989808559418, -0.20494207739830017, 0.1822311133146286, -0.1330813616514206, 0.1744258850812912, 0.3062017560005188, -0.1403934508562088, -0.07299621403217316, -0.19660493731498718, 0.3140939772129059, 0.9127658605575562, -0.014890901744365692, -0.040500108152627945, 0.3089277446269989, -0.0072763413190841675, 0.04424634575843811, 0.013988502323627472, 0.04875179007649422, -0.4894201159477234, -0.267677903175354, 0.11241649091243744, -0.16451354324817657, 0.09943453967571259, -0.12103690207004547, -0.010552193969488144, 0.05621771141886711, 0.01880645751953125, 0.162478968501091, -0.09445299953222275, 0.1397336721420288, -0.2828187346458435, -0.11657600104808807, -0.1173800677061081, 0.20482856035232544, -0.12632489204406738, 0.23411254584789276, -0.10916457325220108, -0.1045217290520668, -0.20762193202972412, -0.2671163082122803, -0.2936418652534485, 0.14386332035064697, -0.17715226113796234, 0.04703771322965622, 0.3640769124031067, -0.16284550726413727, -0.22822724282741547, 0.18036679923534393, -0.07225526869297028, 0.4440910816192627, -0.13630500435829163, 0.13509632647037506, 0.08459855616092682, 0.05122591555118561, 0.0691731721162796, 0.055661849677562714, 0.34903663396835327, -0.29202800989151, -0.24855247139930725, 0.0792517438530922, -0.23989266157150269, -0.20721910893917084, 0.269249826669693, 0.07923118770122528, -0.03777815401554108, -0.20344623923301697, -0.22233723104000092, -0.29572129249572754, -0.010494766756892204, -0.2804279923439026, 0.1702609658241272, 0.22443552315235138, -0.2182360738515854, 0.2552293837070465, -0.021529044955968857, -0.185402512550354, -0.17443044483661652, 0.38201582431793213, -0.07147355377674103, -0.13186900317668915, 0.43330439925193787, -0.041866499930620193, -0.17854897677898407, -0.22473827004432678, 0.13011005520820618, -0.1613604873418808, -0.2732701003551483, -0.01280940230935812, -0.01420214120298624, -0.06661038100719452, -0.1600300669670105, 0.3254968523979187, 0.3013855218887329, 0.09652123600244522, 0.16357651352882385, -0.746066153049469, -0.3938940167427063, 0.3170654773712158, 0.21739931404590607, 0.42836591601371765, -0.25779736042022705, 0.2833601236343384, 0.09066762030124664, -0.06153543293476105, -0.32784658670425415, 0.06800885498523712, -0.3784818947315216, 0.15183541178703308, -0.21687057614326477, 0.13449059426784515, 0.4032262861728668, 0.029262833297252655, 0.14791972935199738, 0.22600606083869934, -0.11746467649936676, -0.25479698181152344, -0.27484309673309326, 0.11130981892347336, 0.11272671073675156, 0.07240452617406845, 0.363585501909256, -0.21599224209785461, -0.12768258154392242, -0.05604672431945801, 0.08539551496505737, -0.09893124550580978, -0.05256742984056473, 0.04709417372941971, 0.38422805070877075, 0.38781124353408813, 0.06557852029800415, 0.06305187940597534, -0.12099727988243103, -0.05379396677017212, -0.054393038153648376, 0.021221373230218887, 0.09544868767261505, 0.025080926716327667, 0.15543964505195618, -0.05371830612421036, -0.08553560078144073, 0.08454565703868866, 0.25560539960861206, -0.15844444930553436, -0.1879192441701889, 0.31482046842575073, 0.2792294919490814, 0.3297683894634247, -0.3652879595756531, -0.07197874784469604, 0.19914469122886658, 0.22928468883037567, -0.35391122102737427, 0.0860583484172821, -0.09049582481384277, -0.04171234369277954, 0.008492957800626755, 0.17276744544506073, -0.13532769680023193, -0.2922621965408325, 0.20958127081394196, 0.021204818040132523, 0.2108549028635025, -0.3285641670227051, 0.08520163595676422, 0.33098897337913513, -0.06871538609266281, 0.00017490610480308533, 0.18740054965019226, -0.3161802887916565, -0.07681716233491898, 0.28713494539260864, 0.06856939196586609, 0.2438863217830658, -0.09305553883314133, -0.09347422420978546, -0.121118925511837, -0.19697992503643036, 0.1558849960565567, 0.28372427821159363, -0.2733985185623169, 0.06054289638996124, 0.01299663633108139, 0.46717914938926697, -0.25827109813690186, -0.07956895977258682, -0.4062427878379822, 0.20135921239852905, -0.171108216047287, 0.08563318848609924, -0.30966511368751526, -0.2636018991470337, 0.0938565731048584, 0.13969743251800537, 0.17299847304821014, 0.1102161705493927, 0.3649650514125824, 0.17150256037712097, -0.23765920102596283, -0.2350212186574936, -0.23758602142333984, 0.28482815623283386, 0.05194598436355591, -0.3388267159461975, 0.09299838542938232, 0.3620932698249817, 0.09036435931921005, -0.06202463433146477, 0.33031901717185974, 0.26979362964630127, 0.3318764567375183, 0.15409964323043823, -0.1488150805234909, 0.22525614500045776, 0.09146319329738617, -0.15045680105686188, 0.4668410122394562, 0.36928635835647583, 0.17744283378124237, 0.45983976125717163, 0.1724112331867218, -0.25360357761383057, -0.2277558296918869, -0.11146126687526703, -0.32476553320884705, -0.04984099790453911, 0.7239425778388977, -0.1353023201227188, -0.013040322810411453, -0.19655367732048035, 0.0588853694498539, -0.31457018852233887, 0.020049618557095528, -0.07902984321117401, 0.21275797486305237, 0.23883798718452454, -0.1687495857477188, 0.09275029599666595, -0.12932954728603363, 0.5125467777252197, 0.14890258014202118, 0.00757184624671936, -0.3973800241947174, -0.09622287005186081, -0.6778885722160339, 0.271164208650589, -0.05482480302453041, 0.054744869470596313, 0.04784292355179787, -0.013869740068912506, -0.3356514573097229, 0.18085244297981262, 0.36441540718078613, -0.48050227761268616, 0.23033465445041656, 0.1335688829421997, -0.22208169102668762, -0.08917766809463501, -0.043840497732162476, -0.33233487606048584, 0.14247910678386688, -0.4114670753479004, 0.23313020169734955, -0.26576802134513855, 0.1332431137561798, 0.12956105172634125, -0.3359620273113251, 0.036713022738695145, -0.19428394734859467, 0.15093837678432465, -0.1440361887216568, 0.6362594366073608, -0.2161979079246521, -0.13549919426441193, -0.26127108931541443, -0.02088308148086071, -0.11219368875026703, 0.2381795048713684, -0.015558287501335144, 0.5562108755111694, 0.23075127601623535, -0.08770975470542908, -0.14632540941238403, 0.41637536883354187, 0.19294267892837524, -0.18392857909202576, 0.04304119199514389, -0.022539202123880386, 0.023096628487110138, -0.13799713551998138, 0.1602531224489212, 0.1347419172525406, -0.03904138505458832, 0.32686910033226013, -0.3576345443725586, -0.3692803978919983, 0.43468916416168213, -0.2992688715457916, -0.385525643825531, 0.0007674605585634708, 0.2614843249320984, -0.34481242299079895, -0.09613759070634842, -0.7570760846138, 0.10638145357370377, 0.2049054056406021, 0.07261670380830765, -0.11943121254444122, 0.22228451073169708, -0.22492747008800507, 0.13552320003509521, 0.17561587691307068, 0.13416333496570587, -0.1550637185573578, -0.18112556636333466, 0.14797066152095795, -0.16701342165470123 ]
https://github.com/huggingface/datasets/issues/3265
Checksum error for kilt_task_wow
Hi @slyviacassell, thanks for reporting. Yes, there is an issue with the checksum verification. I'm fixing it. And as you pointed out, in the meantime, you can circumvent the problem by passing `ignore_verifications=True`.
## Describe the bug Checksum failed when downloads kilt_tasks_wow. See error output for details. ## Steps to reproduce the bug ```python import datasets datasets.load_datasets('kilt_tasks','wow') ``` ## Expected results Download successful ## Actual results ``` Downloading and preparing dataset kilt_tasks/wow (download: 72.07 MiB, generated: 61.82 MiB, post-processed: Unknown size, total: 133.89 MiB) to /root/.cache/huggingface/datasets/kilt_tasks/wow/1.0.0/57dc8b2431e76637e0c6ef79689ca4af61ed3a330e2e0cd62c8971465a35db3a... 100%|████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 3/3 [00:00<00:00, 5121.25it/s] 100%|████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 3/3 [00:00<00:00, 1527.42it/s] Traceback (most recent call last): File "kilt_wow.py", line 30, in <module> main() File "kilt_wow.py", line 27, in main train, dev, test = dataset.generate_k_shot_data(k=32, seed=seed, path="../data/") File "/workspace/projects/CrossFit/tasks/fewshot_gym_dataset.py", line 79, in generate_k_shot_data dataset = self.load_dataset() File "kilt_wow.py", line 21, in load_dataset return datasets.load_dataset('kilt_tasks','wow') File "/opt/conda/lib/python3.8/site-packages/datasets/load.py", line 1632, in load_dataset builder_instance.download_and_prepare( File "/opt/conda/lib/python3.8/site-packages/datasets/builder.py", line 607, in download_and_prepare self._download_and_prepare( File "/opt/conda/lib/python3.8/site-packages/datasets/builder.py", line 679, in _download_and_prepare verify_checksums( File "/opt/conda/lib/python3.8/site-packages/datasets/utils/info_utils.py", line 40, in verify_checksums raise NonMatchingChecksumError(error_msg + str(bad_urls)) datasets.utils.info_utils.NonMatchingChecksumError: Checksums didn't match for dataset source files: ['http://dl.fbaipublicfiles.com/KILT/wow-train-kilt.jsonl', 'http://dl.fbaipublicfiles.com/KILT/wow-dev-kilt.jsonl'] ``` ## Environment info <!-- You can run the command `datasets-cli env` and copy-and-paste its output below. --> - `datasets` version: 1.15.1 - Platform: Linux-4.15.0-161-generic-x86_64-with-glibc2.10 - Python version: 3.8.3 - PyArrow version: 4.0.1
33
Checksum error for kilt_task_wow ## Describe the bug Checksum failed when downloads kilt_tasks_wow. See error output for details. ## Steps to reproduce the bug ```python import datasets datasets.load_datasets('kilt_tasks','wow') ``` ## Expected results Download successful ## Actual results ``` Downloading and preparing dataset kilt_tasks/wow (download: 72.07 MiB, generated: 61.82 MiB, post-processed: Unknown size, total: 133.89 MiB) to /root/.cache/huggingface/datasets/kilt_tasks/wow/1.0.0/57dc8b2431e76637e0c6ef79689ca4af61ed3a330e2e0cd62c8971465a35db3a... 100%|████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 3/3 [00:00<00:00, 5121.25it/s] 100%|████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 3/3 [00:00<00:00, 1527.42it/s] Traceback (most recent call last): File "kilt_wow.py", line 30, in <module> main() File "kilt_wow.py", line 27, in main train, dev, test = dataset.generate_k_shot_data(k=32, seed=seed, path="../data/") File "/workspace/projects/CrossFit/tasks/fewshot_gym_dataset.py", line 79, in generate_k_shot_data dataset = self.load_dataset() File "kilt_wow.py", line 21, in load_dataset return datasets.load_dataset('kilt_tasks','wow') File "/opt/conda/lib/python3.8/site-packages/datasets/load.py", line 1632, in load_dataset builder_instance.download_and_prepare( File "/opt/conda/lib/python3.8/site-packages/datasets/builder.py", line 607, in download_and_prepare self._download_and_prepare( File "/opt/conda/lib/python3.8/site-packages/datasets/builder.py", line 679, in _download_and_prepare verify_checksums( File "/opt/conda/lib/python3.8/site-packages/datasets/utils/info_utils.py", line 40, in verify_checksums raise NonMatchingChecksumError(error_msg + str(bad_urls)) datasets.utils.info_utils.NonMatchingChecksumError: Checksums didn't match for dataset source files: ['http://dl.fbaipublicfiles.com/KILT/wow-train-kilt.jsonl', 'http://dl.fbaipublicfiles.com/KILT/wow-dev-kilt.jsonl'] ``` ## Environment info <!-- You can run the command `datasets-cli env` and copy-and-paste its output below. --> - `datasets` version: 1.15.1 - Platform: Linux-4.15.0-161-generic-x86_64-with-glibc2.10 - Python version: 3.8.3 - PyArrow version: 4.0.1 Hi @slyviacassell, thanks for reporting. Yes, there is an issue with the checksum verification. I'm fixing it. And as you pointed out, in the meantime, you can circumvent the problem by passing `ignore_verifications=True`.
[ -0.012825839221477509, -0.2781217694282532, -0.09309121966362, 0.2878214120864868, 0.39975959062576294, -0.08288058638572693, 0.23995210230350494, 0.5319927334785461, 0.364335834980011, 0.1832442730665207, 0.047630615532398224, 0.34542790055274963, 0.06783115118741989, 0.3870455026626587, -0.028222642838954926, 0.11160248517990112, 0.044130366295576096, -0.10360708832740784, -0.09448815882205963, 0.07594099640846252, -0.24356958270072937, 0.006693958304822445, -0.2141815572977066, -0.10754010081291199, -0.11000845581293106, -0.14665953814983368, 0.11409221589565277, 0.20896759629249573, -0.17225854098796844, -0.3939289152622223, 0.36109331250190735, -0.14680926501750946, -0.24705784022808075, 0.4836374819278717, -0.00011099078983534127, 0.08741390705108643, 0.49791234731674194, -0.09465853869915009, -0.32572636008262634, 0.21874433755874634, -0.22083386778831482, -0.3925756812095642, -0.17669528722763062, -0.5591238737106323, 0.10951986163854599, 0.32315385341644287, -0.15126927196979523, 0.01665341854095459, 0.07934455573558807, 0.19120784103870392, 0.2628454864025116, 0.5959455966949463, 0.22590018808841705, -0.1648675948381424, 0.3342747986316681, -0.2491687685251236, -0.2119433581829071, 0.4761384427547455, 0.07981560379266739, 0.08396980911493301, -0.08061974495649338, 0.26747357845306396, -0.08628801256418228, 0.07458596676588058, -0.06233140081167221, -0.23169901967048645, 0.2357165813446045, -0.12391012907028198, 0.2631690800189972, 0.21163851022720337, 0.013138532638549805, -0.3023892641067505, -0.3866114318370819, -0.1624424159526825, 0.16384722292423248, -0.024262061342597008, 0.29835978150367737, 0.27012938261032104, -0.2362079620361328, -0.264085590839386, -0.29421332478523254, 0.25153648853302, -0.014055449515581131, -0.013604365289211273, -0.04163606837391853, 0.19323837757110596, 0.05313282087445259, 0.09172870218753815, 0.12189897894859314, 0.1144481971859932, -0.015616306103765965, 0.050172023475170135, -0.19656957685947418, 0.08782029896974564, -0.6071636080741882, -0.2512291669845581, 0.03405626118183136, 0.14963006973266602, 0.3839889466762543, 0.10597709566354752, 0.04107872396707535, 0.03745635598897934, 0.15842211246490479, 0.056639060378074646, -0.01710325852036476, 0.290416419506073, 0.09402671456336975, -0.10827165096998215, 0.18960170447826385, 0.45229223370552063, -0.2431432008743286, 0.065186507999897, -0.21185269951820374, -0.24960459768772125, 0.10519413650035858, 0.13195395469665527, 0.03741727024316788, -0.06724100559949875, -0.34962767362594604, 0.2294098436832428, 0.1588984727859497, 0.2358558028936386, 0.28285467624664307, 0.29684221744537354, -0.38910308480262756, 0.09319278597831726, -0.0465097576379776, 0.30476295948028564, 0.040067389607429504, 0.03985410928726196, -0.2344687283039093, 0.14801624417304993, -0.2909494638442993, -0.19887566566467285, 0.2057027667760849, -0.4085448086261749, 0.49436429142951965, -0.0837448388338089, 0.25116991996765137, -0.3185092806816101, -0.027585472911596298, -0.1374465674161911, -0.15320804715156555, 0.40179309248924255, -0.05003141984343529, 0.07258415222167969, 0.21772058308124542, 0.3343736529350281, -0.05464204028248787, 0.08219744265079498, -0.44206327199935913, -0.0571909062564373, -0.13717684149742126, 0.21049948036670685, -0.2309621423482895, 0.012540463358163834, -0.26891210675239563, -0.41791048645973206, 0.41139185428619385, -0.27358123660087585, 0.18105670809745789, -0.09606370329856873, -0.20161134004592896, -0.43051618337631226, 0.2610640227794647, 0.0877293199300766, -0.1757514625787735, 0.0467115193605423, -0.2709534764289856, -0.294006884098053, 0.1010696217417717, 0.11939042806625366, -0.18707789480686188, 0.5738454461097717, -0.11303989589214325, -0.008110783994197845, 0.001402735710144043, -0.5044885277748108, -0.6426465511322021, -0.06585986167192459, -0.07562468945980072, 0.15157821774482727, -0.08994289487600327, 0.07066047936677933, 0.04405368119478226, -0.08374178409576416, 0.014466635882854462, 0.09358610957860947, -0.02986833266913891, 0.22594675421714783, -0.3437546193599701, -0.30173325538635254, 0.07722868025302887, 0.1929338425397873, 0.2797110676765442, -0.1758483350276947, 0.30256080627441406, 0.3612273335456848, 0.16999469697475433, 0.07903758436441422, 0.07871226221323013, 0.09941504150629044, 0.2066202461719513, -0.2813223600387573, 0.04323253035545349, -0.17224165797233582, -0.28461363911628723, 0.4127875864505768, -0.22769050300121307, 0.009458377957344055, -0.02721865475177765, -0.1355571448802948, -0.44887396693229675, 0.07076963782310486, -0.18776603043079376, -0.2652893364429474, 0.21930310130119324, -0.08642971515655518, 0.2091253399848938, -0.026270953938364983, -0.07709826529026031, 0.0785585567355156, -0.461982399225235, 0.010131990537047386, -0.010965248569846153, 0.21342845261096954, 0.014219095930457115, -0.17028005421161652, -0.1117764338850975, 0.25506967306137085, 0.03916874900460243, 0.02544725127518177, -0.19150078296661377, 0.45780086517333984, 0.0657748356461525, 0.08506979793310165, 0.3547762930393219, -0.23458309471607208, 0.07727105915546417, -0.07057502120733261, -0.05384678393602371, 0.2073998898267746, 0.14629341661930084, -0.07880066335201263, 0.011774294078350067, 0.44152283668518066, -0.09407347440719604, -0.008081123232841492, -0.1512877643108368, -0.06721121072769165, 0.007343517616391182, -0.20706406235694885, -0.07802145183086395, 0.18058054149150848, 0.18152476847171783, -0.11558572947978973, -0.07231676578521729, -0.14470717310905457, 0.06413303315639496, -0.13563743233680725, 0.45214948058128357, 0.07719606161117554, 0.11719183623790741, -0.010369628667831421, 0.13388685882091522, 0.05461786687374115, -0.09117165207862854, 0.3222332000732422, 0.44261783361434937, 0.05519410967826843, 0.1465136706829071, 0.025117557495832443, -0.1807839572429657, -0.06668247282505035, 0.04585576802492142, 0.17367315292358398, 0.25001072883605957, 0.48203083872795105, 0.19243894517421722, -0.023953799158334732, -0.11938519775867462, 0.16913747787475586, 0.21752449870109558, 0.21310707926750183, -0.01674015074968338, -0.23236316442489624, -0.07842815667390823, -0.16166958212852478, -0.08775860071182251, -0.04254179447889328, -0.15461260080337524, -0.25953686237335205, -0.006262402981519699, 0.17121803760528564, -0.10017788410186768, 0.267273873090744, -0.36962461471557617, 0.09062975645065308, 0.3246644139289856, -0.4286695718765259, 0.040819600224494934, -0.09769684076309204, 0.0449514240026474, 0.09470191597938538, 0.4179500639438629, -0.25722578167915344, 0.5363550782203674, -0.08607680350542068, -0.060641489923000336, -0.20476119220256805, -0.29047033190727234, -0.05982023477554321, -0.10436347126960754, 0.29212889075279236, 0.10089342296123505, 0.49689197540283203, -0.29578858613967896, -0.22123369574546814, 0.4083012342453003, -0.27896323800086975, -0.29483380913734436, 0.09461545944213867, 0.1188264712691307, 0.05580826476216316, -0.3278343677520752, -0.13495713472366333, -0.023636246100068092, -0.3361680507659912, -0.1312643140554428, -0.08239081501960754, 0.16313622891902924, 0.20600436627864838, 0.27329951524734497, 0.3915458023548126, 0.09976229816675186, 0.09260803461074829, -0.14462348818778992, -0.6678723692893982, 0.24336408078670502, -0.08730040490627289, -0.45217761397361755, 0.04863116517663002, -0.1096479669213295, 0.4888756275177002, 0.09110770374536514, -0.4867101311683655, -0.2733828127384186, -0.006613446399569511, 0.21535038948059082, 0.02149389497935772, -0.0024958793073892593, 0.09396308660507202, -0.2705867290496826, -0.14020511507987976, -0.2706994116306305, 0.10982239246368408, 0.1001070961356163, -0.04931933432817459, 0.5106632113456726, -0.0548376739025116, 0.08890305459499359, 0.18144001066684723, 0.5321940183639526, 0.36982908844947815, 0.17167457938194275, 0.35368844866752625, 0.010615183040499687, 0.1630488783121109, -0.08632103353738785, -0.3648349344730377, 0.29118263721466064, -0.19145259261131287, 0.058145128190517426, 0.13541248440742493, -0.056416310369968414, -0.0050191730260849, -0.0837477296590805, -0.13075391948223114, -0.4241699278354645, -0.2956397831439972, 0.032449766993522644, -0.07496192306280136, 0.10631158947944641, -0.18656381964683533, 0.05776136368513107, -0.124606654047966, -0.15436634421348572, 0.24534553289413452, 0.1521894782781601, -0.20795267820358276, -0.023382747545838356, -0.25346115231513977, -0.39506658911705017, -0.008484892547130585, 0.048804424703121185, 0.1407691389322281, 0.2005421221256256, 0.009210143238306046, 0.004869736731052399, 0.03327306732535362, -0.24464383721351624, 0.675302267074585, -0.08885043859481812, 0.2909526228904724, -0.21686376631259918, 0.0988602489233017, -0.21755865216255188, -0.2775552272796631, -0.08567012846469879, -0.32380059361457825, 0.5570377111434937, 0.4324871301651001, -0.4728827178478241, 0.23857787251472473, 0.18626481294631958, 0.33856743574142456, -0.0520416721701622, -0.13201168179512024, -0.3523634970188141, -0.4857132136821747, -0.6219677329063416, 0.3324495255947113, 0.10161768645048141, 0.596638023853302, -0.003400945570319891, -0.052498769015073776, -0.03777328133583069, 0.08883237093687057, -0.03989614546298981, 0.0720183402299881, 0.3407585620880127, 0.08532870560884476, 0.33580005168914795, -0.09021583199501038, -0.1750660091638565, 0.16507166624069214, 0.679714024066925, 0.10003741085529327, 0.21105259656906128, -0.09028621762990952, -0.09131146222352982, 0.07119865715503693, 0.34830912947654724, -0.26422637701034546, 0.06735048443078995, 0.031235024333000183, 0.0548940971493721, 0.017383748665452003, 0.20264922082424164, 0.24378055334091187, -0.18990954756736755, -0.23948989808559418, -0.20494207739830017, 0.1822311133146286, -0.1330813616514206, 0.1744258850812912, 0.3062017560005188, -0.1403934508562088, -0.07299621403217316, -0.19660493731498718, 0.3140939772129059, 0.9127658605575562, -0.014890901744365692, -0.040500108152627945, 0.3089277446269989, -0.0072763413190841675, 0.04424634575843811, 0.013988502323627472, 0.04875179007649422, -0.4894201159477234, -0.267677903175354, 0.11241649091243744, -0.16451354324817657, 0.09943453967571259, -0.12103690207004547, -0.010552193969488144, 0.05621771141886711, 0.01880645751953125, 0.162478968501091, -0.09445299953222275, 0.1397336721420288, -0.2828187346458435, -0.11657600104808807, -0.1173800677061081, 0.20482856035232544, -0.12632489204406738, 0.23411254584789276, -0.10916457325220108, -0.1045217290520668, -0.20762193202972412, -0.2671163082122803, -0.2936418652534485, 0.14386332035064697, -0.17715226113796234, 0.04703771322965622, 0.3640769124031067, -0.16284550726413727, -0.22822724282741547, 0.18036679923534393, -0.07225526869297028, 0.4440910816192627, -0.13630500435829163, 0.13509632647037506, 0.08459855616092682, 0.05122591555118561, 0.0691731721162796, 0.055661849677562714, 0.34903663396835327, -0.29202800989151, -0.24855247139930725, 0.0792517438530922, -0.23989266157150269, -0.20721910893917084, 0.269249826669693, 0.07923118770122528, -0.03777815401554108, -0.20344623923301697, -0.22233723104000092, -0.29572129249572754, -0.010494766756892204, -0.2804279923439026, 0.1702609658241272, 0.22443552315235138, -0.2182360738515854, 0.2552293837070465, -0.021529044955968857, -0.185402512550354, -0.17443044483661652, 0.38201582431793213, -0.07147355377674103, -0.13186900317668915, 0.43330439925193787, -0.041866499930620193, -0.17854897677898407, -0.22473827004432678, 0.13011005520820618, -0.1613604873418808, -0.2732701003551483, -0.01280940230935812, -0.01420214120298624, -0.06661038100719452, -0.1600300669670105, 0.3254968523979187, 0.3013855218887329, 0.09652123600244522, 0.16357651352882385, -0.746066153049469, -0.3938940167427063, 0.3170654773712158, 0.21739931404590607, 0.42836591601371765, -0.25779736042022705, 0.2833601236343384, 0.09066762030124664, -0.06153543293476105, -0.32784658670425415, 0.06800885498523712, -0.3784818947315216, 0.15183541178703308, -0.21687057614326477, 0.13449059426784515, 0.4032262861728668, 0.029262833297252655, 0.14791972935199738, 0.22600606083869934, -0.11746467649936676, -0.25479698181152344, -0.27484309673309326, 0.11130981892347336, 0.11272671073675156, 0.07240452617406845, 0.363585501909256, -0.21599224209785461, -0.12768258154392242, -0.05604672431945801, 0.08539551496505737, -0.09893124550580978, -0.05256742984056473, 0.04709417372941971, 0.38422805070877075, 0.38781124353408813, 0.06557852029800415, 0.06305187940597534, -0.12099727988243103, -0.05379396677017212, -0.054393038153648376, 0.021221373230218887, 0.09544868767261505, 0.025080926716327667, 0.15543964505195618, -0.05371830612421036, -0.08553560078144073, 0.08454565703868866, 0.25560539960861206, -0.15844444930553436, -0.1879192441701889, 0.31482046842575073, 0.2792294919490814, 0.3297683894634247, -0.3652879595756531, -0.07197874784469604, 0.19914469122886658, 0.22928468883037567, -0.35391122102737427, 0.0860583484172821, -0.09049582481384277, -0.04171234369277954, 0.008492957800626755, 0.17276744544506073, -0.13532769680023193, -0.2922621965408325, 0.20958127081394196, 0.021204818040132523, 0.2108549028635025, -0.3285641670227051, 0.08520163595676422, 0.33098897337913513, -0.06871538609266281, 0.00017490610480308533, 0.18740054965019226, -0.3161802887916565, -0.07681716233491898, 0.28713494539260864, 0.06856939196586609, 0.2438863217830658, -0.09305553883314133, -0.09347422420978546, -0.121118925511837, -0.19697992503643036, 0.1558849960565567, 0.28372427821159363, -0.2733985185623169, 0.06054289638996124, 0.01299663633108139, 0.46717914938926697, -0.25827109813690186, -0.07956895977258682, -0.4062427878379822, 0.20135921239852905, -0.171108216047287, 0.08563318848609924, -0.30966511368751526, -0.2636018991470337, 0.0938565731048584, 0.13969743251800537, 0.17299847304821014, 0.1102161705493927, 0.3649650514125824, 0.17150256037712097, -0.23765920102596283, -0.2350212186574936, -0.23758602142333984, 0.28482815623283386, 0.05194598436355591, -0.3388267159461975, 0.09299838542938232, 0.3620932698249817, 0.09036435931921005, -0.06202463433146477, 0.33031901717185974, 0.26979362964630127, 0.3318764567375183, 0.15409964323043823, -0.1488150805234909, 0.22525614500045776, 0.09146319329738617, -0.15045680105686188, 0.4668410122394562, 0.36928635835647583, 0.17744283378124237, 0.45983976125717163, 0.1724112331867218, -0.25360357761383057, -0.2277558296918869, -0.11146126687526703, -0.32476553320884705, -0.04984099790453911, 0.7239425778388977, -0.1353023201227188, -0.013040322810411453, -0.19655367732048035, 0.0588853694498539, -0.31457018852233887, 0.020049618557095528, -0.07902984321117401, 0.21275797486305237, 0.23883798718452454, -0.1687495857477188, 0.09275029599666595, -0.12932954728603363, 0.5125467777252197, 0.14890258014202118, 0.00757184624671936, -0.3973800241947174, -0.09622287005186081, -0.6778885722160339, 0.271164208650589, -0.05482480302453041, 0.054744869470596313, 0.04784292355179787, -0.013869740068912506, -0.3356514573097229, 0.18085244297981262, 0.36441540718078613, -0.48050227761268616, 0.23033465445041656, 0.1335688829421997, -0.22208169102668762, -0.08917766809463501, -0.043840497732162476, -0.33233487606048584, 0.14247910678386688, -0.4114670753479004, 0.23313020169734955, -0.26576802134513855, 0.1332431137561798, 0.12956105172634125, -0.3359620273113251, 0.036713022738695145, -0.19428394734859467, 0.15093837678432465, -0.1440361887216568, 0.6362594366073608, -0.2161979079246521, -0.13549919426441193, -0.26127108931541443, -0.02088308148086071, -0.11219368875026703, 0.2381795048713684, -0.015558287501335144, 0.5562108755111694, 0.23075127601623535, -0.08770975470542908, -0.14632540941238403, 0.41637536883354187, 0.19294267892837524, -0.18392857909202576, 0.04304119199514389, -0.022539202123880386, 0.023096628487110138, -0.13799713551998138, 0.1602531224489212, 0.1347419172525406, -0.03904138505458832, 0.32686910033226013, -0.3576345443725586, -0.3692803978919983, 0.43468916416168213, -0.2992688715457916, -0.385525643825531, 0.0007674605585634708, 0.2614843249320984, -0.34481242299079895, -0.09613759070634842, -0.7570760846138, 0.10638145357370377, 0.2049054056406021, 0.07261670380830765, -0.11943121254444122, 0.22228451073169708, -0.22492747008800507, 0.13552320003509521, 0.17561587691307068, 0.13416333496570587, -0.1550637185573578, -0.18112556636333466, 0.14797066152095795, -0.16701342165470123 ]
https://github.com/huggingface/datasets/issues/3264
Downloading URL change for WikiAuto Manual, jeopardy and definite_pronoun_resolution
#take I am willing to fix this. Links can be replaced for WikiAuto Manual and jeopardy with new ones provided by authors. As for the definite_pronoun_resolution URL, a certificate error seems to be preventing a download. I have the files on my local machine. I can include them in the dataset folder as the files are <1MB in size total.
## Describe the bug - WikiAuto Manual The original manual datasets with the following downloading URL in this [repository](https://github.com/chaojiang06/wiki-auto) was [deleted](https://github.com/chaojiang06/wiki-auto/commit/0af9b066f2b4e02726fb8a9be49283c0ad25367f) by the author. ``` https://github.com/chaojiang06/wiki-auto/raw/master/wiki-manual/train.tsv ``` - jeopardy The downloading URL for jeopardy may move from ``` http://skeeto.s3.amazonaws.com/share/JEOPARDY_QUESTIONS1.json.gz ``` to ``` https://drive.google.com/file/d/0BwT5wj_P7BKXb2hfM3d2RHU1ckE/view?resourcekey=0-1abK4cJq-mqxFoSg86ieIg ``` - definite_pronoun_resolution The following downloading URL for definite_pronoun_resolution cannot be reached for some reasons. ``` http://www.hlt.utdallas.edu/~vince/data/emnlp12/train.c.txt ``` ## Steps to reproduce the bug ```python import datasets datasets.load_datasets('wiki_auto','manual') datasets.load_datasets('jeopardy') datasets.load_datasets('definite_pronoun_resolution') ``` ## Expected results Download successfully ## Actual results - WikiAuto Manual ``` Downloading and preparing dataset wiki_auto/manual (download: 151.65 MiB, generated: 155.97 MiB, post-processed: Unknown size, total: 307.61 MiB) to /root/.cache/huggingface/datasets/wiki_auto/manual/1.0.0/5ffdd9fc62422d29bd02675fb9606f77c1251ee17169ac10b143ce07ef2f4db8... 0%| | 0/3 [00:00<?, ?it/s]Traceback (most recent call last): File "wiki_auto.py", line 43, in <module> main() File "wiki_auto.py", line 40, in main train, dev, test = dataset.generate_k_shot_data(k=16, seed=seed, path="../data/") File "/workspace/projects/CrossFit/tasks/fewshot_gym_dataset.py", line 24, in generate_k_shot_data dataset = self.load_dataset() File "wiki_auto.py", line 34, in load_dataset return datasets.load_dataset('wiki_auto', 'manual') File "/opt/conda/lib/python3.8/site-packages/datasets/load.py", line 1632, in load_dataset builder_instance.download_and_prepare( File "/opt/conda/lib/python3.8/site-packages/datasets/builder.py", line 607, in download_and_prepare self._download_and_prepare( File "/opt/conda/lib/python3.8/site-packages/datasets/builder.py", line 675, in _download_and_prepare split_generators = self._split_generators(dl_manager, **split_generators_kwargs) File "/root/.cache/huggingface/modules/datasets_modules/datasets/wiki_auto/5ffdd9fc62422d29bd02675fb9606f77c1251ee17169ac10b143ce07ef2f4db8/wiki_auto.py", line 193, in _split_generators data_dir = dl_manager.download_and_extract(my_urls) File "/opt/conda/lib/python3.8/site-packages/datasets/utils/download_manager.py", line 284, in download_and_extract return self.extract(self.download(url_or_urls)) File "/opt/conda/lib/python3.8/site-packages/datasets/utils/download_manager.py", line 196, in download downloaded_path_or_paths = map_nested( File "/opt/conda/lib/python3.8/site-packages/datasets/utils/py_utils.py", line 216, in map_nested mapped = [ File "/opt/conda/lib/python3.8/site-packages/datasets/utils/py_utils.py", line 217, in <listcomp> _single_map_nested((function, obj, types, None, True)) File "/opt/conda/lib/python3.8/site-packages/datasets/utils/py_utils.py", line 152, in _single_map_nested return function(data_struct) File "/opt/conda/lib/python3.8/site-packages/datasets/utils/download_manager.py", line 217, in _download return cached_path(url_or_filename, download_config=download_config) File "/opt/conda/lib/python3.8/site-packages/datasets/utils/file_utils.py", line 295, in cached_path output_path = get_from_cache( File "/opt/conda/lib/python3.8/site-packages/datasets/utils/file_utils.py", line 592, in get_from_cache raise FileNotFoundError("Couldn't find file at {}".format(url)) FileNotFoundError: Couldn't find file at https://github.com/chaojiang06/wiki-auto/raw/master/wiki-manual/train.tsv ``` - jeopardy ``` Using custom data configuration default Downloading and preparing dataset jeopardy/default (download: 12.13 MiB, generated: 34.46 MiB, post-processed: Unknown size, total: 46.59 MiB) to /root/.cache/huggingface/datasets/jeopardy/default/0.1.0/25ee3e4a73755e637b8810f6493fd36e4523dea3ca8a540529d0a6e24c7f9810... Traceback (most recent call last): File "jeopardy.py", line 45, in <module> main() File "jeopardy.py", line 42, in main train, dev, test = dataset.generate_k_shot_data(k=32, seed=seed, path="../data/") File "/workspace/projects/CrossFit/tasks/fewshot_gym_dataset.py", line 79, in generate_k_shot_data dataset = self.load_dataset() File "jeopardy.py", line 36, in load_dataset return datasets.load_dataset("jeopardy") File "/opt/conda/lib/python3.8/site-packages/datasets/load.py", line 1632, in load_dataset builder_instance.download_and_prepare( File "/opt/conda/lib/python3.8/site-packages/datasets/builder.py", line 607, in download_and_prepare self._download_and_prepare( File "/opt/conda/lib/python3.8/site-packages/datasets/builder.py", line 675, in _download_and_prepare split_generators = self._split_generators(dl_manager, **split_generators_kwargs) File "/root/.cache/huggingface/modules/datasets_modules/datasets/jeopardy/25ee3e4a73755e637b8810f6493fd36e4523dea3ca8a540529d0a6e24c7f9810/jeopardy.py", line 72, in _split_generators filepath = dl_manager.download_and_extract(_DATA_URL) File "/opt/conda/lib/python3.8/site-packages/datasets/utils/download_manager.py", line 284, in download_and_extract return self.extract(self.download(url_or_urls)) File "/opt/conda/lib/python3.8/site-packages/datasets/utils/download_manager.py", line 196, in download downloaded_path_or_paths = map_nested( File "/opt/conda/lib/python3.8/site-packages/datasets/utils/py_utils.py", line 206, in map_nested return function(data_struct) File "/opt/conda/lib/python3.8/site-packages/datasets/utils/download_manager.py", line 217, in _download return cached_path(url_or_filename, download_config=download_config) File "/opt/conda/lib/python3.8/site-packages/datasets/utils/file_utils.py", line 295, in cached_path output_path = get_from_cache( File "/opt/conda/lib/python3.8/site-packages/datasets/utils/file_utils.py", line 594, in get_from_cache raise ConnectionError("Couldn't reach {}".format(url)) ConnectionError: Couldn't reach http://skeeto.s3.amazonaws.com/share/JEOPARDY_QUESTIONS1.json.gz ``` - definite_pronoun_resolution ``` Downloading and preparing dataset definite_pronoun_resolution/plain_text (download: 222.12 KiB, generated: 239.12 KiB, post-processed: Unknown size, total: 461.24 KiB) to /root/.cache/huggingface/datasets/definite_pronoun_resolution/plain_text/1.0.0/35a1dfd4fba4afb8ba226cbbb65ac7cef0dd3cf9302d8f803740f05d2f16ceff... 0%| | 0/2 [00:00<?, ?it/s]Traceback (most recent call last): File "definite_pronoun_resolution.py", line 37, in <module> main() File "definite_pronoun_resolution.py", line 34, in main train, dev, test = dataset.generate_k_shot_data(k=32, seed=seed, path="../data/") File "/workspace/projects/CrossFit/tasks/fewshot_gym_dataset.py", line 79, in generate_k_shot_data dataset = self.load_dataset() File "definite_pronoun_resolution.py", line 28, in load_dataset return datasets.load_dataset('definite_pronoun_resolution') File "/opt/conda/lib/python3.8/site-packages/datasets/load.py", line 1632, in load_dataset builder_instance.download_and_prepare( File "/opt/conda/lib/python3.8/site-packages/datasets/builder.py", line 607, in download_and_prepare self._download_and_prepare( File "/opt/conda/lib/python3.8/site-packages/datasets/builder.py", line 675, in _download_and_prepare split_generators = self._split_generators(dl_manager, **split_generators_kwargs) File "/root/.cache/huggingface/modules/datasets_modules/datasets/definite_pronoun_resolution/35a1dfd4fba4afb8ba226cbbb65ac7cef0dd3cf9302d8f803740f05d2f16ceff/definite_pronoun_resolution.py", line 76, in _split_generators files = dl_manager.download_and_extract( File "/opt/conda/lib/python3.8/site-packages/datasets/utils/download_manager.py", line 284, in download_and_extract return self.extract(self.download(url_or_urls)) File "/opt/conda/lib/python3.8/site-packages/datasets/utils/download_manager.py", line 196, in download downloaded_path_or_paths = map_nested( File "/opt/conda/lib/python3.8/site-packages/datasets/utils/py_utils.py", line 216, in map_nested mapped = [ File "/opt/conda/lib/python3.8/site-packages/datasets/utils/py_utils.py", line 217, in <listcomp> _single_map_nested((function, obj, types, None, True)) File "/opt/conda/lib/python3.8/site-packages/datasets/utils/py_utils.py", line 152, in _single_map_nested return function(data_struct) File "/opt/conda/lib/python3.8/site-packages/datasets/utils/download_manager.py", line 217, in _download return cached_path(url_or_filename, download_config=download_config) File "/opt/conda/lib/python3.8/site-packages/datasets/utils/file_utils.py", line 295, in cached_path output_path = get_from_cache( File "/opt/conda/lib/python3.8/site-packages/datasets/utils/file_utils.py", line 594, in get_from_cache raise ConnectionError("Couldn't reach {}".format(url)) ConnectionError: Couldn't reach http://www.hlt.utdallas.edu/~vince/data/emnlp12/train.c.txt ``` ## Environment info <!-- You can run the command `datasets-cli env` and copy-and-paste its output below. --> - `datasets` version: 1.15.1 - Platform: Linux-4.15.0-161-generic-x86_64-with-glibc2.10 - Python version: 3.8.3 - PyArrow version: 4.0.1
60
Downloading URL change for WikiAuto Manual, jeopardy and definite_pronoun_resolution ## Describe the bug - WikiAuto Manual The original manual datasets with the following downloading URL in this [repository](https://github.com/chaojiang06/wiki-auto) was [deleted](https://github.com/chaojiang06/wiki-auto/commit/0af9b066f2b4e02726fb8a9be49283c0ad25367f) by the author. ``` https://github.com/chaojiang06/wiki-auto/raw/master/wiki-manual/train.tsv ``` - jeopardy The downloading URL for jeopardy may move from ``` http://skeeto.s3.amazonaws.com/share/JEOPARDY_QUESTIONS1.json.gz ``` to ``` https://drive.google.com/file/d/0BwT5wj_P7BKXb2hfM3d2RHU1ckE/view?resourcekey=0-1abK4cJq-mqxFoSg86ieIg ``` - definite_pronoun_resolution The following downloading URL for definite_pronoun_resolution cannot be reached for some reasons. ``` http://www.hlt.utdallas.edu/~vince/data/emnlp12/train.c.txt ``` ## Steps to reproduce the bug ```python import datasets datasets.load_datasets('wiki_auto','manual') datasets.load_datasets('jeopardy') datasets.load_datasets('definite_pronoun_resolution') ``` ## Expected results Download successfully ## Actual results - WikiAuto Manual ``` Downloading and preparing dataset wiki_auto/manual (download: 151.65 MiB, generated: 155.97 MiB, post-processed: Unknown size, total: 307.61 MiB) to /root/.cache/huggingface/datasets/wiki_auto/manual/1.0.0/5ffdd9fc62422d29bd02675fb9606f77c1251ee17169ac10b143ce07ef2f4db8... 0%| | 0/3 [00:00<?, ?it/s]Traceback (most recent call last): File "wiki_auto.py", line 43, in <module> main() File "wiki_auto.py", line 40, in main train, dev, test = dataset.generate_k_shot_data(k=16, seed=seed, path="../data/") File "/workspace/projects/CrossFit/tasks/fewshot_gym_dataset.py", line 24, in generate_k_shot_data dataset = self.load_dataset() File "wiki_auto.py", line 34, in load_dataset return datasets.load_dataset('wiki_auto', 'manual') File "/opt/conda/lib/python3.8/site-packages/datasets/load.py", line 1632, in load_dataset builder_instance.download_and_prepare( File "/opt/conda/lib/python3.8/site-packages/datasets/builder.py", line 607, in download_and_prepare self._download_and_prepare( File "/opt/conda/lib/python3.8/site-packages/datasets/builder.py", line 675, in _download_and_prepare split_generators = self._split_generators(dl_manager, **split_generators_kwargs) File "/root/.cache/huggingface/modules/datasets_modules/datasets/wiki_auto/5ffdd9fc62422d29bd02675fb9606f77c1251ee17169ac10b143ce07ef2f4db8/wiki_auto.py", line 193, in _split_generators data_dir = dl_manager.download_and_extract(my_urls) File "/opt/conda/lib/python3.8/site-packages/datasets/utils/download_manager.py", line 284, in download_and_extract return self.extract(self.download(url_or_urls)) File "/opt/conda/lib/python3.8/site-packages/datasets/utils/download_manager.py", line 196, in download downloaded_path_or_paths = map_nested( File "/opt/conda/lib/python3.8/site-packages/datasets/utils/py_utils.py", line 216, in map_nested mapped = [ File "/opt/conda/lib/python3.8/site-packages/datasets/utils/py_utils.py", line 217, in <listcomp> _single_map_nested((function, obj, types, None, True)) File "/opt/conda/lib/python3.8/site-packages/datasets/utils/py_utils.py", line 152, in _single_map_nested return function(data_struct) File "/opt/conda/lib/python3.8/site-packages/datasets/utils/download_manager.py", line 217, in _download return cached_path(url_or_filename, download_config=download_config) File "/opt/conda/lib/python3.8/site-packages/datasets/utils/file_utils.py", line 295, in cached_path output_path = get_from_cache( File "/opt/conda/lib/python3.8/site-packages/datasets/utils/file_utils.py", line 592, in get_from_cache raise FileNotFoundError("Couldn't find file at {}".format(url)) FileNotFoundError: Couldn't find file at https://github.com/chaojiang06/wiki-auto/raw/master/wiki-manual/train.tsv ``` - jeopardy ``` Using custom data configuration default Downloading and preparing dataset jeopardy/default (download: 12.13 MiB, generated: 34.46 MiB, post-processed: Unknown size, total: 46.59 MiB) to /root/.cache/huggingface/datasets/jeopardy/default/0.1.0/25ee3e4a73755e637b8810f6493fd36e4523dea3ca8a540529d0a6e24c7f9810... Traceback (most recent call last): File "jeopardy.py", line 45, in <module> main() File "jeopardy.py", line 42, in main train, dev, test = dataset.generate_k_shot_data(k=32, seed=seed, path="../data/") File "/workspace/projects/CrossFit/tasks/fewshot_gym_dataset.py", line 79, in generate_k_shot_data dataset = self.load_dataset() File "jeopardy.py", line 36, in load_dataset return datasets.load_dataset("jeopardy") File "/opt/conda/lib/python3.8/site-packages/datasets/load.py", line 1632, in load_dataset builder_instance.download_and_prepare( File "/opt/conda/lib/python3.8/site-packages/datasets/builder.py", line 607, in download_and_prepare self._download_and_prepare( File "/opt/conda/lib/python3.8/site-packages/datasets/builder.py", line 675, in _download_and_prepare split_generators = self._split_generators(dl_manager, **split_generators_kwargs) File "/root/.cache/huggingface/modules/datasets_modules/datasets/jeopardy/25ee3e4a73755e637b8810f6493fd36e4523dea3ca8a540529d0a6e24c7f9810/jeopardy.py", line 72, in _split_generators filepath = dl_manager.download_and_extract(_DATA_URL) File "/opt/conda/lib/python3.8/site-packages/datasets/utils/download_manager.py", line 284, in download_and_extract return self.extract(self.download(url_or_urls)) File "/opt/conda/lib/python3.8/site-packages/datasets/utils/download_manager.py", line 196, in download downloaded_path_or_paths = map_nested( File "/opt/conda/lib/python3.8/site-packages/datasets/utils/py_utils.py", line 206, in map_nested return function(data_struct) File "/opt/conda/lib/python3.8/site-packages/datasets/utils/download_manager.py", line 217, in _download return cached_path(url_or_filename, download_config=download_config) File "/opt/conda/lib/python3.8/site-packages/datasets/utils/file_utils.py", line 295, in cached_path output_path = get_from_cache( File "/opt/conda/lib/python3.8/site-packages/datasets/utils/file_utils.py", line 594, in get_from_cache raise ConnectionError("Couldn't reach {}".format(url)) ConnectionError: Couldn't reach http://skeeto.s3.amazonaws.com/share/JEOPARDY_QUESTIONS1.json.gz ``` - definite_pronoun_resolution ``` Downloading and preparing dataset definite_pronoun_resolution/plain_text (download: 222.12 KiB, generated: 239.12 KiB, post-processed: Unknown size, total: 461.24 KiB) to /root/.cache/huggingface/datasets/definite_pronoun_resolution/plain_text/1.0.0/35a1dfd4fba4afb8ba226cbbb65ac7cef0dd3cf9302d8f803740f05d2f16ceff... 0%| | 0/2 [00:00<?, ?it/s]Traceback (most recent call last): File "definite_pronoun_resolution.py", line 37, in <module> main() File "definite_pronoun_resolution.py", line 34, in main train, dev, test = dataset.generate_k_shot_data(k=32, seed=seed, path="../data/") File "/workspace/projects/CrossFit/tasks/fewshot_gym_dataset.py", line 79, in generate_k_shot_data dataset = self.load_dataset() File "definite_pronoun_resolution.py", line 28, in load_dataset return datasets.load_dataset('definite_pronoun_resolution') File "/opt/conda/lib/python3.8/site-packages/datasets/load.py", line 1632, in load_dataset builder_instance.download_and_prepare( File "/opt/conda/lib/python3.8/site-packages/datasets/builder.py", line 607, in download_and_prepare self._download_and_prepare( File "/opt/conda/lib/python3.8/site-packages/datasets/builder.py", line 675, in _download_and_prepare split_generators = self._split_generators(dl_manager, **split_generators_kwargs) File "/root/.cache/huggingface/modules/datasets_modules/datasets/definite_pronoun_resolution/35a1dfd4fba4afb8ba226cbbb65ac7cef0dd3cf9302d8f803740f05d2f16ceff/definite_pronoun_resolution.py", line 76, in _split_generators files = dl_manager.download_and_extract( File "/opt/conda/lib/python3.8/site-packages/datasets/utils/download_manager.py", line 284, in download_and_extract return self.extract(self.download(url_or_urls)) File "/opt/conda/lib/python3.8/site-packages/datasets/utils/download_manager.py", line 196, in download downloaded_path_or_paths = map_nested( File "/opt/conda/lib/python3.8/site-packages/datasets/utils/py_utils.py", line 216, in map_nested mapped = [ File "/opt/conda/lib/python3.8/site-packages/datasets/utils/py_utils.py", line 217, in <listcomp> _single_map_nested((function, obj, types, None, True)) File "/opt/conda/lib/python3.8/site-packages/datasets/utils/py_utils.py", line 152, in _single_map_nested return function(data_struct) File "/opt/conda/lib/python3.8/site-packages/datasets/utils/download_manager.py", line 217, in _download return cached_path(url_or_filename, download_config=download_config) File "/opt/conda/lib/python3.8/site-packages/datasets/utils/file_utils.py", line 295, in cached_path output_path = get_from_cache( File "/opt/conda/lib/python3.8/site-packages/datasets/utils/file_utils.py", line 594, in get_from_cache raise ConnectionError("Couldn't reach {}".format(url)) ConnectionError: Couldn't reach http://www.hlt.utdallas.edu/~vince/data/emnlp12/train.c.txt ``` ## Environment info <!-- You can run the command `datasets-cli env` and copy-and-paste its output below. --> - `datasets` version: 1.15.1 - Platform: Linux-4.15.0-161-generic-x86_64-with-glibc2.10 - Python version: 3.8.3 - PyArrow version: 4.0.1 #take I am willing to fix this. Links can be replaced for WikiAuto Manual and jeopardy with new ones provided by authors. As for the definite_pronoun_resolution URL, a certificate error seems to be preventing a download. I have the files on my local machine. I can include them in the dataset folder as the files are <1MB in size total.
[ 0.12740908563137054, -0.12858407199382782, 0.0336008295416832, 0.09519986063241959, 0.16930730640888214, 0.060107938945293427, 0.2048468291759491, 0.21171626448631287, -0.2019653022289276, 0.3956472873687744, -0.04657672345638275, 0.06932301819324493, 0.16392916440963745, -0.13248711824417114, 0.08007388561964035, -0.3333907127380371, -0.043945617973804474, -0.1293077915906906, 0.1895740032196045, -0.09112568199634552, -0.3678211569786072, 0.08707066625356674, -0.3614553213119507, -0.026468083262443542, -0.04382782801985741, 0.10511224716901779, -0.050089508295059204, 0.015313826501369476, -0.10084958374500275, -0.43231716752052307, 0.14488327503204346, 0.11434279382228851, 0.1059085875749588, 0.33855539560317993, -0.00011153783998452127, -0.009413540363311768, 0.2700733542442322, -0.08198655396699905, -0.536557674407959, -0.12448613345623016, -0.5981212854385376, 0.014476554468274117, -0.047380268573760986, -0.3203181326389313, -0.0003077201545238495, 0.4028951823711395, 0.09338750690221786, -0.13223233819007874, 0.19474345445632935, 0.6222034692764282, 0.2032655030488968, 0.04472137242555618, 0.09139123558998108, -0.01787339337170124, 0.18933163583278656, -0.16464464366436005, -0.19729505479335785, 0.2965211272239685, -0.14002463221549988, 0.11771091818809509, 0.05339528247714043, 0.4021208882331848, 0.1708795577287674, -0.0917855054140091, -0.05647757649421692, 0.09540636837482452, 0.1515655219554901, -0.16968977451324463, 0.40462639927864075, 0.32691678404808044, 0.5513573884963989, -0.09635812789201736, -0.31869184970855713, -0.06789088249206543, 0.3135261535644531, -0.14096170663833618, 0.45681434869766235, 0.2807404696941376, -0.08990924060344696, 0.002186637371778488, -0.1422174870967865, -0.2625916302204132, -0.25915664434432983, 0.1594662219285965, -0.11038177460432053, 0.6913449764251709, 0.03930119797587395, 0.025860868394374847, -0.2234935313463211, -0.1198863834142685, 0.07943937182426453, -0.12489691376686096, 0.1670907884836197, 0.0989004597067833, -0.1130940169095993, -0.017710894346237183, -0.0376865491271019, 0.04735860601067543, 0.10109903663396835, -0.30976003408432007, 0.49627697467803955, -0.06119191646575928, -0.21925437450408936, -0.13277557492256165, 0.02983376383781433, 0.5464052557945251, 0.048720285296440125, 0.0949229970574379, 0.156198650598526, 0.7578021883964539, 0.09206923842430115, 0.12275944650173187, -0.02664964273571968, -0.20394711196422577, -0.1632312536239624, 0.1810673475265503, 0.22673870623111725, -0.1090892106294632, -0.21195687353610992, 0.10169683396816254, -0.30920881032943726, 0.11551147699356079, -0.29003211855888367, 0.17395178973674774, -0.46811676025390625, 0.3308089077472687, 0.03650716692209244, 0.1312979906797409, -0.32299378514289856, 0.1867275834083557, -0.10601522028446198, 0.1031571626663208, -0.08248566091060638, 0.19012443721294403, 0.10866567492485046, 0.12926465272903442, 0.3938516676425934, 0.11196630448102951, 0.030550777912139893, -0.1637236624956131, -0.3638501465320587, 0.05989794805645943, -0.17809128761291504, 0.008105345070362091, -0.0594826266169548, 0.019316984340548515, -0.11018285155296326, -0.4052196741104126, 0.0673992857336998, 0.24591416120529175, -0.1449955701828003, -0.15653350949287415, 0.07822766900062561, 0.22179141640663147, 0.14919935166835785, -0.31990259885787964, -0.21529516577720642, 0.10933217406272888, -0.060317300260066986, -0.12550538778305054, 0.15062999725341797, -0.11829414963722229, -0.22599563002586365, -0.17915230989456177, 0.265206903219223, 0.20222270488739014, -0.2052331417798996, -0.08489751815795898, 0.05252848193049431, 0.19638383388519287, 0.2605561316013336, 0.2015848010778427, -0.04506896436214447, -0.039294056594371796, -0.0994715765118599, 0.32009899616241455, -0.035621874034404755, -0.6613449454307556, -0.29446548223495483, -0.08100394159555435, -0.20470118522644043, 0.29352498054504395, 0.04679632559418678, -0.346406489610672, -0.191043421626091, 0.0992492139339447, 0.20763848721981049, 0.2389191836118698, 0.19938860833644867, 0.07398021221160889, -0.49871477484703064, -0.34893885254859924, -0.20770233869552612, -0.1053580790758133, 0.1842181533575058, -0.04050011187791824, -0.05006363242864609, 0.030793555080890656, 0.6682900190353394, -0.02280888333916664, 0.1097547858953476, 0.1725935935974121, 0.2791414260864258, 0.06606922298669815, 0.0038900021463632584, 0.03368598222732544, -0.3063521981239319, 0.16148748993873596, -0.2444600611925125, 0.3172655999660492, -0.2633829712867737, -0.28841662406921387, -0.4617548882961273, -0.14673224091529846, -0.35771453380584717, -0.33609098196029663, 0.17742878198623657, 0.3326927125453949, 0.23309534788131714, 0.1839561015367508, 0.16798412799835205, -0.15683850646018982, -0.23056384921073914, 0.01604958064854145, -0.25502273440361023, 0.025391152128577232, -0.2314937263727188, 0.19496400654315948, -0.09843198210000992, 0.11172257363796234, 0.20323002338409424, 0.0645613819360733, -0.34324970841407776, 0.44824233651161194, -0.04001661017537117, 0.42581117153167725, 0.2569478750228882, 0.00948004424571991, 0.31219884753227234, -0.15557031333446503, 0.02536638081073761, 0.20175229012966156, 0.20931722223758698, 0.21552687883377075, -0.32126784324645996, 0.32011544704437256, -0.2278439849615097, 0.2955271005630493, 0.212463840842247, 0.00614132359623909, 0.40606868267059326, -0.13402624428272247, -0.027041232213377953, -0.16012033820152283, -0.1623493880033493, 0.5956910252571106, -0.3482039272785187, -0.16246390342712402, -0.4324272871017456, -0.016655422747135162, 0.18074241280555725, -0.0621190220117569, 0.2663133442401886, 0.28782859444618225, -0.22695046663284302, -0.3052479326725006, 0.1471707671880722, 0.32811951637268066, 0.171214759349823, 0.1615498661994934, 0.2940358817577362, 0.2110920250415802, -0.05480549484491348, -0.3781978189945221, 0.47566694021224976, 0.20274680852890015, -0.06306367367506027, 0.3314950466156006, 0.2529733180999756, 0.07538224756717682, -0.17329144477844238, 0.10419197380542755, -0.14662957191467285, 0.0015546903014183044, -0.2683822214603424, -0.04351770132780075, -0.3165046274662018, 0.14062055945396423, -0.33996838331222534, -0.0564708448946476, -0.09537172317504883, -0.4581070840358734, 0.3413337469100952, 0.0953320786356926, -0.29636698961257935, 0.1810440719127655, -0.11881604790687561, 0.04065258800983429, -0.14528745412826538, -0.021125400438904762, -0.2247062772512436, -0.4174305200576782, -0.4545573592185974, 0.15919868648052216, -0.07939128577709198, -0.1410234123468399, -0.04168795049190521, -0.3193746507167816, -0.03907643258571625, -0.39102697372436523, -0.3622365891933441, -0.23527583479881287, 0.002266332507133484, 0.08391209691762924, 0.02995455265045166, 0.3136542737483978, -0.2385759800672531, -0.3720276951789856, 0.12078209966421127, 0.02436230145394802, -0.032170236110687256, -0.14608675241470337, 0.005619012750685215, 0.34551137685775757, 0.11823432147502899, -0.6243348121643066, -0.15726305544376373, -0.2604810297489166, 0.2051135152578354, 0.23150129616260529, 0.008273914456367493, 0.501930296421051, 0.11657524108886719, 0.0651930421590805, 0.06387653201818466, 0.3580878674983978, -0.20123890042304993, -0.2027280032634735, 0.16088692843914032, -0.2689361870288849, -0.3275575041770935, -0.1447928547859192, -0.114200659096241, 0.5140975117683411, 0.2077137976884842, -0.4951125383377075, 0.032105401158332825, -0.1570851355791092, 0.2840752899646759, 0.03441641852259636, 0.03874007612466812, 0.24893131852149963, 0.26955968141555786, -0.19041138887405396, -0.08448158949613571, 0.05669419839978218, -0.0853249654173851, 0.22353315353393555, 0.24951651692390442, -0.03620681166648865, 0.1373954713344574, 0.27068397402763367, 0.9664543867111206, -0.11567951738834381, 0.30776533484458923, 0.3761494755744934, -0.07392800599336624, 0.001960471272468567, -0.13399097323417664, -0.008233007974922657, 0.18622754514217377, -0.1524355709552765, 0.048951052129268646, 0.5215193629264832, 0.010603861883282661, -0.11526892334222794, -0.22323542833328247, -0.08329696953296661, -0.5791997909545898, -0.6617065668106079, -0.03672493249177933, 0.17287108302116394, 0.185907244682312, 0.29076874256134033, 0.0911872610449791, -0.2571699619293213, -0.2154918909072876, 0.26617631316185, 0.24434199929237366, -0.15371286869049072, -0.13468047976493835, -0.13541969656944275, -0.0790071189403534, -0.30231624841690063, 0.19614343345165253, 0.24170152842998505, 0.4538920521736145, 0.04899157956242561, -0.18976804614067078, 0.04559021443128586, 0.012130564078688622, 0.16793866455554962, -0.24142606556415558, 0.24999400973320007, -0.05448096990585327, -0.015409007668495178, -0.409069299697876, -0.14166446030139923, -0.22232341766357422, -0.11043468117713928, 0.2702297866344452, 0.19348499178886414, -0.24082818627357483, 0.07655712217092514, 0.2549525499343872, 0.02404768578708172, -0.046622637659311295, 0.0200640968978405, -0.22269569337368011, -0.19771996140480042, -0.30525779724121094, 0.060065314173698425, -0.07185870409011841, 0.5199750065803528, -0.31519195437431335, 0.000008609145879745483, -0.0021518468856811523, -0.09605538100004196, -0.2257719486951828, -0.05673867464065552, -0.011191926896572113, 0.4150172770023346, -0.17789790034294128, 0.16025608777999878, 0.2152215838432312, -0.02396739087998867, 0.1760236769914627, -0.09836895763874054, -0.34499841928482056, -0.3201703727245331, 0.1639990657567978, 0.023359067738056183, 0.5003490447998047, 0.067307248711586, -0.11016752570867538, 0.19817879796028137, 0.10236415266990662, -0.11963669210672379, 0.38365647196769714, 0.25945407152175903, 0.10619869828224182, -0.17626270651817322, -0.3233324885368347, 0.6220648884773254, 0.06721840798854828, -0.18631020188331604, 0.2987988591194153, 0.32872146368026733, -0.6315211653709412, 0.03248453512787819, 0.22588717937469482, 1.1548787355422974, 0.2015390694141388, 0.22038450837135315, 0.36511534452438354, -0.05981424078345299, 0.06276111304759979, -0.19722041487693787, 0.3283078074455261, -0.09388527274131775, 0.01110887061804533, 0.021426180377602577, 0.17323856055736542, 0.08556870371103287, -0.21395759284496307, -0.36251145601272583, 0.3910606801509857, -0.2234109342098236, 0.046112339943647385, 0.11999328434467316, 0.09271398186683655, -0.21271100640296936, 0.04358698055148125, -0.2854975461959839, 0.06541510671377182, 0.1592780351638794, 0.2712334096431732, -0.04058104008436203, -0.01887015998363495, -0.17210780084133148, -0.02880747616291046, -0.1778150200843811, 0.1614278256893158, -0.6074109077453613, 0.23911216855049133, -0.5020620226860046, -0.2115969955921173, -0.20500652492046356, 0.694541871547699, 0.126048743724823, 0.3090692460536957, -0.4552484154701233, 0.42035022377967834, -0.05999504774808884, -0.052336495369672775, 0.10489261150360107, 0.18401852250099182, 0.007183613255620003, -0.30336201190948486, -0.2587827444076538, 0.04663969576358795, -0.09415162354707718, 0.11299523711204529, -0.13883157074451447, -0.23326130211353302, 0.1927650272846222, -0.13525059819221497, -0.1536799967288971, -0.1895304024219513, -0.21765676140785217, -0.38678374886512756, 0.14020058512687683, -0.2809528112411499, -0.08218368887901306, -0.07141033560037613, 0.31509140133857727, -0.3939551115036011, -0.13677573204040527, 0.6774898171424866, 0.09614662081003189, 0.16545890271663666, 0.5063605904579163, 0.014576148241758347, -0.1935417205095291, -0.17024150490760803, -0.06755588203668594, -0.23571838438510895, -0.3545146882534027, -0.023944050073623657, 0.07299094647169113, 0.005625665187835693, -0.21441887319087982, 0.3801521062850952, 0.14680616557598114, -0.08413607627153397, -0.05854848772287369, -0.17445825040340424, -0.010676898062229156, 0.1476253718137741, 0.00253203883767128, 0.21680301427841187, 0.11354450136423111, -0.08452259004116058, 0.22106708586215973, 0.05812160670757294, -0.3318822979927063, 0.1064310297369957, -0.3553634583950043, 0.11069948226213455, -0.06756019592285156, 0.07389036566019058, 0.22656483948230743, 0.29955974221229553, 0.22570288181304932, -0.023749668151140213, 0.06710362434387207, -0.21445709466934204, -0.34872081875801086, 0.11239691823720932, 0.14982548356056213, -0.10247556865215302, 0.006011711433529854, 0.017274219542741776, 0.05315372720360756, -0.12256184220314026, -0.02073112316429615, 0.020404107868671417, 0.051124826073646545, 0.3066369593143463, 0.1817648559808731, 0.13259492814540863, 0.08983077108860016, 0.19693776965141296, -0.11384239792823792, 0.23447394371032715, 0.017929837107658386, 0.17384272813796997, 0.006910176947712898, -0.22238032519817352, -0.1870962679386139, -0.0471370592713356, -0.006612770259380341, 0.17328080534934998, -0.027450285851955414, -0.15524132549762726, -0.09375697374343872, 0.04009918123483658, -0.16740863025188446, 0.284189373254776, -0.04937649518251419, -0.23180758953094482, 0.09243182092905045, 0.28283393383026123, -0.2781328558921814, 0.02113710716366768, -0.06348255276679993, -0.15638487040996552, 0.16626866161823273, -0.11388453096151352, 0.0021822936832904816, -0.2530674338340759, -0.12932944297790527, 0.2048795521259308, -0.2892477810382843, -0.3238629102706909, 0.2740727663040161, 0.3919837176799774, -0.034500785171985626, 0.09387721866369247, -0.15565292537212372, -0.12903952598571777, 0.07251524925231934, 0.21947453916072845, -0.16525471210479736, 0.284908652305603, -0.11859352141618729, 0.11797616630792618, 0.2299998700618744, -0.1182863861322403, 0.02188321016728878, 0.17419278621673584, -0.5195321440696716, 0.1806119829416275, 0.25133413076400757, 0.05839564651250839, 0.04764125868678093, 0.20686806738376617, -0.20222389698028564, 0.02667197212576866, -0.12136439234018326, -0.5013464689254761, -0.36977773904800415, -0.320926308631897, -0.012007750570774078, 0.0854002982378006, -0.09056909382343292, 0.07393999397754669, 0.10050079971551895, 0.014724154025316238, -0.19497625529766083, -0.4649893045425415, 0.1441381722688675, 0.07002396881580353, 0.42224380373954773, -0.18446901440620422, 0.009311255067586899, 0.36296844482421875, 0.08589762449264526, 0.05723622441291809, 0.18223528563976288, 0.3926504850387573, 0.09059835970401764, -0.23404690623283386, 0.010107512585818768, 0.12652984261512756, -0.012165755033493042, 0.03143421933054924, 0.17429722845554352, 0.43234190344810486, 0.1120818555355072, 0.29603317379951477, 0.2616358995437622, -0.23190689086914062, 0.08850066363811493, 0.07833340018987656, -0.043293535709381104, -0.19752243161201477, 0.28768566250801086, 0.037052422761917114, -0.08986150473356247, -0.1380823701620102, 0.11607629060745239, -0.28593674302101135, 0.4122084379196167, 0.007756034843623638, 0.10550844669342041, 0.0883227065205574, -0.24525964260101318, 0.07587745040655136, 0.31262144446372986, 0.5698586702346802, 0.3061131238937378, -0.12166515737771988, -0.24554049968719482, -0.021730758249759674, -0.2760876715183258, 0.04480372369289398, 0.26359209418296814, 0.03864502161741257, 0.04794757440686226, 0.2240023910999298, -0.2557332515716553, 0.17438378930091858, -0.08417584002017975, 0.1110982820391655, 0.24941325187683105, 0.30663037300109863, -0.291522353887558, 0.075020432472229, 0.2262117564678192, 0.04168007895350456, 0.08643495291471481, -0.2950240969657898, 0.1276063174009323, -0.30218496918678284, -0.0049782246351242065, -0.04584316164255142, 0.1758832186460495, 0.1679835319519043, 0.1451665461063385, 0.36812257766723633, 0.054569944739341736, 0.2655351161956787, -0.22869157791137695, -0.32979816198349, -0.2506529986858368, -0.08213382959365845, -0.19198814034461975, -0.026179790496826172, -0.08055831491947174, 0.2559632360935211, 0.15149827301502228, -0.05417251959443092, 0.012568732723593712, 0.3862360119819641, 0.11944128572940826, 0.233488067984581, -0.12246232479810715, -0.21893632411956787, 0.29969891905784607, -0.13633623719215393, 0.15148034691810608, 0.2575664520263672, -0.13741886615753174, 0.17044329643249512, -0.277227520942688, -0.7717125415802002, 0.5231634378433228, -0.2375454157590866, -0.19851917028427124, -0.1515466868877411, 0.24376463890075684, -0.14963799715042114, -0.0033860057592391968, -0.7100700736045837, 0.24911129474639893, 0.37631112337112427, 0.1635764241218567, -0.1430077701807022, 0.12470802664756775, 0.07307270169258118, 0.12903712689876556, -0.1290818154811859, 0.28701674938201904, 0.10776056349277496, -0.16141018271446228, -0.10573433339595795, -0.32560718059539795 ]
https://github.com/huggingface/datasets/issues/3264
Downloading URL change for WikiAuto Manual, jeopardy and definite_pronoun_resolution
> #take I am willing to fix this. Links can be replaced for WikiAuto Manual and jeopardy. > > As for the definite_pronoun_resolution URL, a certificate error seems to be preventing a download. I have the files on my local machine. Anyone has opinions on whether it is preferable for me to host them somewhere (e.g. personal GDrive account) or upload them to the dataset folder directly and use github raw URLs? The files are <1MB in size. I am planning to fix it next few days. But my to-do list is full and I do not have the cache of definite_pronoun_resolution. I am glad that you can take this. Thanks a lot!
## Describe the bug - WikiAuto Manual The original manual datasets with the following downloading URL in this [repository](https://github.com/chaojiang06/wiki-auto) was [deleted](https://github.com/chaojiang06/wiki-auto/commit/0af9b066f2b4e02726fb8a9be49283c0ad25367f) by the author. ``` https://github.com/chaojiang06/wiki-auto/raw/master/wiki-manual/train.tsv ``` - jeopardy The downloading URL for jeopardy may move from ``` http://skeeto.s3.amazonaws.com/share/JEOPARDY_QUESTIONS1.json.gz ``` to ``` https://drive.google.com/file/d/0BwT5wj_P7BKXb2hfM3d2RHU1ckE/view?resourcekey=0-1abK4cJq-mqxFoSg86ieIg ``` - definite_pronoun_resolution The following downloading URL for definite_pronoun_resolution cannot be reached for some reasons. ``` http://www.hlt.utdallas.edu/~vince/data/emnlp12/train.c.txt ``` ## Steps to reproduce the bug ```python import datasets datasets.load_datasets('wiki_auto','manual') datasets.load_datasets('jeopardy') datasets.load_datasets('definite_pronoun_resolution') ``` ## Expected results Download successfully ## Actual results - WikiAuto Manual ``` Downloading and preparing dataset wiki_auto/manual (download: 151.65 MiB, generated: 155.97 MiB, post-processed: Unknown size, total: 307.61 MiB) to /root/.cache/huggingface/datasets/wiki_auto/manual/1.0.0/5ffdd9fc62422d29bd02675fb9606f77c1251ee17169ac10b143ce07ef2f4db8... 0%| | 0/3 [00:00<?, ?it/s]Traceback (most recent call last): File "wiki_auto.py", line 43, in <module> main() File "wiki_auto.py", line 40, in main train, dev, test = dataset.generate_k_shot_data(k=16, seed=seed, path="../data/") File "/workspace/projects/CrossFit/tasks/fewshot_gym_dataset.py", line 24, in generate_k_shot_data dataset = self.load_dataset() File "wiki_auto.py", line 34, in load_dataset return datasets.load_dataset('wiki_auto', 'manual') File "/opt/conda/lib/python3.8/site-packages/datasets/load.py", line 1632, in load_dataset builder_instance.download_and_prepare( File "/opt/conda/lib/python3.8/site-packages/datasets/builder.py", line 607, in download_and_prepare self._download_and_prepare( File "/opt/conda/lib/python3.8/site-packages/datasets/builder.py", line 675, in _download_and_prepare split_generators = self._split_generators(dl_manager, **split_generators_kwargs) File "/root/.cache/huggingface/modules/datasets_modules/datasets/wiki_auto/5ffdd9fc62422d29bd02675fb9606f77c1251ee17169ac10b143ce07ef2f4db8/wiki_auto.py", line 193, in _split_generators data_dir = dl_manager.download_and_extract(my_urls) File "/opt/conda/lib/python3.8/site-packages/datasets/utils/download_manager.py", line 284, in download_and_extract return self.extract(self.download(url_or_urls)) File "/opt/conda/lib/python3.8/site-packages/datasets/utils/download_manager.py", line 196, in download downloaded_path_or_paths = map_nested( File "/opt/conda/lib/python3.8/site-packages/datasets/utils/py_utils.py", line 216, in map_nested mapped = [ File "/opt/conda/lib/python3.8/site-packages/datasets/utils/py_utils.py", line 217, in <listcomp> _single_map_nested((function, obj, types, None, True)) File "/opt/conda/lib/python3.8/site-packages/datasets/utils/py_utils.py", line 152, in _single_map_nested return function(data_struct) File "/opt/conda/lib/python3.8/site-packages/datasets/utils/download_manager.py", line 217, in _download return cached_path(url_or_filename, download_config=download_config) File "/opt/conda/lib/python3.8/site-packages/datasets/utils/file_utils.py", line 295, in cached_path output_path = get_from_cache( File "/opt/conda/lib/python3.8/site-packages/datasets/utils/file_utils.py", line 592, in get_from_cache raise FileNotFoundError("Couldn't find file at {}".format(url)) FileNotFoundError: Couldn't find file at https://github.com/chaojiang06/wiki-auto/raw/master/wiki-manual/train.tsv ``` - jeopardy ``` Using custom data configuration default Downloading and preparing dataset jeopardy/default (download: 12.13 MiB, generated: 34.46 MiB, post-processed: Unknown size, total: 46.59 MiB) to /root/.cache/huggingface/datasets/jeopardy/default/0.1.0/25ee3e4a73755e637b8810f6493fd36e4523dea3ca8a540529d0a6e24c7f9810... Traceback (most recent call last): File "jeopardy.py", line 45, in <module> main() File "jeopardy.py", line 42, in main train, dev, test = dataset.generate_k_shot_data(k=32, seed=seed, path="../data/") File "/workspace/projects/CrossFit/tasks/fewshot_gym_dataset.py", line 79, in generate_k_shot_data dataset = self.load_dataset() File "jeopardy.py", line 36, in load_dataset return datasets.load_dataset("jeopardy") File "/opt/conda/lib/python3.8/site-packages/datasets/load.py", line 1632, in load_dataset builder_instance.download_and_prepare( File "/opt/conda/lib/python3.8/site-packages/datasets/builder.py", line 607, in download_and_prepare self._download_and_prepare( File "/opt/conda/lib/python3.8/site-packages/datasets/builder.py", line 675, in _download_and_prepare split_generators = self._split_generators(dl_manager, **split_generators_kwargs) File "/root/.cache/huggingface/modules/datasets_modules/datasets/jeopardy/25ee3e4a73755e637b8810f6493fd36e4523dea3ca8a540529d0a6e24c7f9810/jeopardy.py", line 72, in _split_generators filepath = dl_manager.download_and_extract(_DATA_URL) File "/opt/conda/lib/python3.8/site-packages/datasets/utils/download_manager.py", line 284, in download_and_extract return self.extract(self.download(url_or_urls)) File "/opt/conda/lib/python3.8/site-packages/datasets/utils/download_manager.py", line 196, in download downloaded_path_or_paths = map_nested( File "/opt/conda/lib/python3.8/site-packages/datasets/utils/py_utils.py", line 206, in map_nested return function(data_struct) File "/opt/conda/lib/python3.8/site-packages/datasets/utils/download_manager.py", line 217, in _download return cached_path(url_or_filename, download_config=download_config) File "/opt/conda/lib/python3.8/site-packages/datasets/utils/file_utils.py", line 295, in cached_path output_path = get_from_cache( File "/opt/conda/lib/python3.8/site-packages/datasets/utils/file_utils.py", line 594, in get_from_cache raise ConnectionError("Couldn't reach {}".format(url)) ConnectionError: Couldn't reach http://skeeto.s3.amazonaws.com/share/JEOPARDY_QUESTIONS1.json.gz ``` - definite_pronoun_resolution ``` Downloading and preparing dataset definite_pronoun_resolution/plain_text (download: 222.12 KiB, generated: 239.12 KiB, post-processed: Unknown size, total: 461.24 KiB) to /root/.cache/huggingface/datasets/definite_pronoun_resolution/plain_text/1.0.0/35a1dfd4fba4afb8ba226cbbb65ac7cef0dd3cf9302d8f803740f05d2f16ceff... 0%| | 0/2 [00:00<?, ?it/s]Traceback (most recent call last): File "definite_pronoun_resolution.py", line 37, in <module> main() File "definite_pronoun_resolution.py", line 34, in main train, dev, test = dataset.generate_k_shot_data(k=32, seed=seed, path="../data/") File "/workspace/projects/CrossFit/tasks/fewshot_gym_dataset.py", line 79, in generate_k_shot_data dataset = self.load_dataset() File "definite_pronoun_resolution.py", line 28, in load_dataset return datasets.load_dataset('definite_pronoun_resolution') File "/opt/conda/lib/python3.8/site-packages/datasets/load.py", line 1632, in load_dataset builder_instance.download_and_prepare( File "/opt/conda/lib/python3.8/site-packages/datasets/builder.py", line 607, in download_and_prepare self._download_and_prepare( File "/opt/conda/lib/python3.8/site-packages/datasets/builder.py", line 675, in _download_and_prepare split_generators = self._split_generators(dl_manager, **split_generators_kwargs) File "/root/.cache/huggingface/modules/datasets_modules/datasets/definite_pronoun_resolution/35a1dfd4fba4afb8ba226cbbb65ac7cef0dd3cf9302d8f803740f05d2f16ceff/definite_pronoun_resolution.py", line 76, in _split_generators files = dl_manager.download_and_extract( File "/opt/conda/lib/python3.8/site-packages/datasets/utils/download_manager.py", line 284, in download_and_extract return self.extract(self.download(url_or_urls)) File "/opt/conda/lib/python3.8/site-packages/datasets/utils/download_manager.py", line 196, in download downloaded_path_or_paths = map_nested( File "/opt/conda/lib/python3.8/site-packages/datasets/utils/py_utils.py", line 216, in map_nested mapped = [ File "/opt/conda/lib/python3.8/site-packages/datasets/utils/py_utils.py", line 217, in <listcomp> _single_map_nested((function, obj, types, None, True)) File "/opt/conda/lib/python3.8/site-packages/datasets/utils/py_utils.py", line 152, in _single_map_nested return function(data_struct) File "/opt/conda/lib/python3.8/site-packages/datasets/utils/download_manager.py", line 217, in _download return cached_path(url_or_filename, download_config=download_config) File "/opt/conda/lib/python3.8/site-packages/datasets/utils/file_utils.py", line 295, in cached_path output_path = get_from_cache( File "/opt/conda/lib/python3.8/site-packages/datasets/utils/file_utils.py", line 594, in get_from_cache raise ConnectionError("Couldn't reach {}".format(url)) ConnectionError: Couldn't reach http://www.hlt.utdallas.edu/~vince/data/emnlp12/train.c.txt ``` ## Environment info <!-- You can run the command `datasets-cli env` and copy-and-paste its output below. --> - `datasets` version: 1.15.1 - Platform: Linux-4.15.0-161-generic-x86_64-with-glibc2.10 - Python version: 3.8.3 - PyArrow version: 4.0.1
113
Downloading URL change for WikiAuto Manual, jeopardy and definite_pronoun_resolution ## Describe the bug - WikiAuto Manual The original manual datasets with the following downloading URL in this [repository](https://github.com/chaojiang06/wiki-auto) was [deleted](https://github.com/chaojiang06/wiki-auto/commit/0af9b066f2b4e02726fb8a9be49283c0ad25367f) by the author. ``` https://github.com/chaojiang06/wiki-auto/raw/master/wiki-manual/train.tsv ``` - jeopardy The downloading URL for jeopardy may move from ``` http://skeeto.s3.amazonaws.com/share/JEOPARDY_QUESTIONS1.json.gz ``` to ``` https://drive.google.com/file/d/0BwT5wj_P7BKXb2hfM3d2RHU1ckE/view?resourcekey=0-1abK4cJq-mqxFoSg86ieIg ``` - definite_pronoun_resolution The following downloading URL for definite_pronoun_resolution cannot be reached for some reasons. ``` http://www.hlt.utdallas.edu/~vince/data/emnlp12/train.c.txt ``` ## Steps to reproduce the bug ```python import datasets datasets.load_datasets('wiki_auto','manual') datasets.load_datasets('jeopardy') datasets.load_datasets('definite_pronoun_resolution') ``` ## Expected results Download successfully ## Actual results - WikiAuto Manual ``` Downloading and preparing dataset wiki_auto/manual (download: 151.65 MiB, generated: 155.97 MiB, post-processed: Unknown size, total: 307.61 MiB) to /root/.cache/huggingface/datasets/wiki_auto/manual/1.0.0/5ffdd9fc62422d29bd02675fb9606f77c1251ee17169ac10b143ce07ef2f4db8... 0%| | 0/3 [00:00<?, ?it/s]Traceback (most recent call last): File "wiki_auto.py", line 43, in <module> main() File "wiki_auto.py", line 40, in main train, dev, test = dataset.generate_k_shot_data(k=16, seed=seed, path="../data/") File "/workspace/projects/CrossFit/tasks/fewshot_gym_dataset.py", line 24, in generate_k_shot_data dataset = self.load_dataset() File "wiki_auto.py", line 34, in load_dataset return datasets.load_dataset('wiki_auto', 'manual') File "/opt/conda/lib/python3.8/site-packages/datasets/load.py", line 1632, in load_dataset builder_instance.download_and_prepare( File "/opt/conda/lib/python3.8/site-packages/datasets/builder.py", line 607, in download_and_prepare self._download_and_prepare( File "/opt/conda/lib/python3.8/site-packages/datasets/builder.py", line 675, in _download_and_prepare split_generators = self._split_generators(dl_manager, **split_generators_kwargs) File "/root/.cache/huggingface/modules/datasets_modules/datasets/wiki_auto/5ffdd9fc62422d29bd02675fb9606f77c1251ee17169ac10b143ce07ef2f4db8/wiki_auto.py", line 193, in _split_generators data_dir = dl_manager.download_and_extract(my_urls) File "/opt/conda/lib/python3.8/site-packages/datasets/utils/download_manager.py", line 284, in download_and_extract return self.extract(self.download(url_or_urls)) File "/opt/conda/lib/python3.8/site-packages/datasets/utils/download_manager.py", line 196, in download downloaded_path_or_paths = map_nested( File "/opt/conda/lib/python3.8/site-packages/datasets/utils/py_utils.py", line 216, in map_nested mapped = [ File "/opt/conda/lib/python3.8/site-packages/datasets/utils/py_utils.py", line 217, in <listcomp> _single_map_nested((function, obj, types, None, True)) File "/opt/conda/lib/python3.8/site-packages/datasets/utils/py_utils.py", line 152, in _single_map_nested return function(data_struct) File "/opt/conda/lib/python3.8/site-packages/datasets/utils/download_manager.py", line 217, in _download return cached_path(url_or_filename, download_config=download_config) File "/opt/conda/lib/python3.8/site-packages/datasets/utils/file_utils.py", line 295, in cached_path output_path = get_from_cache( File "/opt/conda/lib/python3.8/site-packages/datasets/utils/file_utils.py", line 592, in get_from_cache raise FileNotFoundError("Couldn't find file at {}".format(url)) FileNotFoundError: Couldn't find file at https://github.com/chaojiang06/wiki-auto/raw/master/wiki-manual/train.tsv ``` - jeopardy ``` Using custom data configuration default Downloading and preparing dataset jeopardy/default (download: 12.13 MiB, generated: 34.46 MiB, post-processed: Unknown size, total: 46.59 MiB) to /root/.cache/huggingface/datasets/jeopardy/default/0.1.0/25ee3e4a73755e637b8810f6493fd36e4523dea3ca8a540529d0a6e24c7f9810... Traceback (most recent call last): File "jeopardy.py", line 45, in <module> main() File "jeopardy.py", line 42, in main train, dev, test = dataset.generate_k_shot_data(k=32, seed=seed, path="../data/") File "/workspace/projects/CrossFit/tasks/fewshot_gym_dataset.py", line 79, in generate_k_shot_data dataset = self.load_dataset() File "jeopardy.py", line 36, in load_dataset return datasets.load_dataset("jeopardy") File "/opt/conda/lib/python3.8/site-packages/datasets/load.py", line 1632, in load_dataset builder_instance.download_and_prepare( File "/opt/conda/lib/python3.8/site-packages/datasets/builder.py", line 607, in download_and_prepare self._download_and_prepare( File "/opt/conda/lib/python3.8/site-packages/datasets/builder.py", line 675, in _download_and_prepare split_generators = self._split_generators(dl_manager, **split_generators_kwargs) File "/root/.cache/huggingface/modules/datasets_modules/datasets/jeopardy/25ee3e4a73755e637b8810f6493fd36e4523dea3ca8a540529d0a6e24c7f9810/jeopardy.py", line 72, in _split_generators filepath = dl_manager.download_and_extract(_DATA_URL) File "/opt/conda/lib/python3.8/site-packages/datasets/utils/download_manager.py", line 284, in download_and_extract return self.extract(self.download(url_or_urls)) File "/opt/conda/lib/python3.8/site-packages/datasets/utils/download_manager.py", line 196, in download downloaded_path_or_paths = map_nested( File "/opt/conda/lib/python3.8/site-packages/datasets/utils/py_utils.py", line 206, in map_nested return function(data_struct) File "/opt/conda/lib/python3.8/site-packages/datasets/utils/download_manager.py", line 217, in _download return cached_path(url_or_filename, download_config=download_config) File "/opt/conda/lib/python3.8/site-packages/datasets/utils/file_utils.py", line 295, in cached_path output_path = get_from_cache( File "/opt/conda/lib/python3.8/site-packages/datasets/utils/file_utils.py", line 594, in get_from_cache raise ConnectionError("Couldn't reach {}".format(url)) ConnectionError: Couldn't reach http://skeeto.s3.amazonaws.com/share/JEOPARDY_QUESTIONS1.json.gz ``` - definite_pronoun_resolution ``` Downloading and preparing dataset definite_pronoun_resolution/plain_text (download: 222.12 KiB, generated: 239.12 KiB, post-processed: Unknown size, total: 461.24 KiB) to /root/.cache/huggingface/datasets/definite_pronoun_resolution/plain_text/1.0.0/35a1dfd4fba4afb8ba226cbbb65ac7cef0dd3cf9302d8f803740f05d2f16ceff... 0%| | 0/2 [00:00<?, ?it/s]Traceback (most recent call last): File "definite_pronoun_resolution.py", line 37, in <module> main() File "definite_pronoun_resolution.py", line 34, in main train, dev, test = dataset.generate_k_shot_data(k=32, seed=seed, path="../data/") File "/workspace/projects/CrossFit/tasks/fewshot_gym_dataset.py", line 79, in generate_k_shot_data dataset = self.load_dataset() File "definite_pronoun_resolution.py", line 28, in load_dataset return datasets.load_dataset('definite_pronoun_resolution') File "/opt/conda/lib/python3.8/site-packages/datasets/load.py", line 1632, in load_dataset builder_instance.download_and_prepare( File "/opt/conda/lib/python3.8/site-packages/datasets/builder.py", line 607, in download_and_prepare self._download_and_prepare( File "/opt/conda/lib/python3.8/site-packages/datasets/builder.py", line 675, in _download_and_prepare split_generators = self._split_generators(dl_manager, **split_generators_kwargs) File "/root/.cache/huggingface/modules/datasets_modules/datasets/definite_pronoun_resolution/35a1dfd4fba4afb8ba226cbbb65ac7cef0dd3cf9302d8f803740f05d2f16ceff/definite_pronoun_resolution.py", line 76, in _split_generators files = dl_manager.download_and_extract( File "/opt/conda/lib/python3.8/site-packages/datasets/utils/download_manager.py", line 284, in download_and_extract return self.extract(self.download(url_or_urls)) File "/opt/conda/lib/python3.8/site-packages/datasets/utils/download_manager.py", line 196, in download downloaded_path_or_paths = map_nested( File "/opt/conda/lib/python3.8/site-packages/datasets/utils/py_utils.py", line 216, in map_nested mapped = [ File "/opt/conda/lib/python3.8/site-packages/datasets/utils/py_utils.py", line 217, in <listcomp> _single_map_nested((function, obj, types, None, True)) File "/opt/conda/lib/python3.8/site-packages/datasets/utils/py_utils.py", line 152, in _single_map_nested return function(data_struct) File "/opt/conda/lib/python3.8/site-packages/datasets/utils/download_manager.py", line 217, in _download return cached_path(url_or_filename, download_config=download_config) File "/opt/conda/lib/python3.8/site-packages/datasets/utils/file_utils.py", line 295, in cached_path output_path = get_from_cache( File "/opt/conda/lib/python3.8/site-packages/datasets/utils/file_utils.py", line 594, in get_from_cache raise ConnectionError("Couldn't reach {}".format(url)) ConnectionError: Couldn't reach http://www.hlt.utdallas.edu/~vince/data/emnlp12/train.c.txt ``` ## Environment info <!-- You can run the command `datasets-cli env` and copy-and-paste its output below. --> - `datasets` version: 1.15.1 - Platform: Linux-4.15.0-161-generic-x86_64-with-glibc2.10 - Python version: 3.8.3 - PyArrow version: 4.0.1 > #take I am willing to fix this. Links can be replaced for WikiAuto Manual and jeopardy. > > As for the definite_pronoun_resolution URL, a certificate error seems to be preventing a download. I have the files on my local machine. Anyone has opinions on whether it is preferable for me to host them somewhere (e.g. personal GDrive account) or upload them to the dataset folder directly and use github raw URLs? The files are <1MB in size. I am planning to fix it next few days. But my to-do list is full and I do not have the cache of definite_pronoun_resolution. I am glad that you can take this. Thanks a lot!
[ 0.12740908563137054, -0.12858407199382782, 0.0336008295416832, 0.09519986063241959, 0.16930730640888214, 0.060107938945293427, 0.2048468291759491, 0.21171626448631287, -0.2019653022289276, 0.3956472873687744, -0.04657672345638275, 0.06932301819324493, 0.16392916440963745, -0.13248711824417114, 0.08007388561964035, -0.3333907127380371, -0.043945617973804474, -0.1293077915906906, 0.1895740032196045, -0.09112568199634552, -0.3678211569786072, 0.08707066625356674, -0.3614553213119507, -0.026468083262443542, -0.04382782801985741, 0.10511224716901779, -0.050089508295059204, 0.015313826501369476, -0.10084958374500275, -0.43231716752052307, 0.14488327503204346, 0.11434279382228851, 0.1059085875749588, 0.33855539560317993, -0.00011153783998452127, -0.009413540363311768, 0.2700733542442322, -0.08198655396699905, -0.536557674407959, -0.12448613345623016, -0.5981212854385376, 0.014476554468274117, -0.047380268573760986, -0.3203181326389313, -0.0003077201545238495, 0.4028951823711395, 0.09338750690221786, -0.13223233819007874, 0.19474345445632935, 0.6222034692764282, 0.2032655030488968, 0.04472137242555618, 0.09139123558998108, -0.01787339337170124, 0.18933163583278656, -0.16464464366436005, -0.19729505479335785, 0.2965211272239685, -0.14002463221549988, 0.11771091818809509, 0.05339528247714043, 0.4021208882331848, 0.1708795577287674, -0.0917855054140091, -0.05647757649421692, 0.09540636837482452, 0.1515655219554901, -0.16968977451324463, 0.40462639927864075, 0.32691678404808044, 0.5513573884963989, -0.09635812789201736, -0.31869184970855713, -0.06789088249206543, 0.3135261535644531, -0.14096170663833618, 0.45681434869766235, 0.2807404696941376, -0.08990924060344696, 0.002186637371778488, -0.1422174870967865, -0.2625916302204132, -0.25915664434432983, 0.1594662219285965, -0.11038177460432053, 0.6913449764251709, 0.03930119797587395, 0.025860868394374847, -0.2234935313463211, -0.1198863834142685, 0.07943937182426453, -0.12489691376686096, 0.1670907884836197, 0.0989004597067833, -0.1130940169095993, -0.017710894346237183, -0.0376865491271019, 0.04735860601067543, 0.10109903663396835, -0.30976003408432007, 0.49627697467803955, -0.06119191646575928, -0.21925437450408936, -0.13277557492256165, 0.02983376383781433, 0.5464052557945251, 0.048720285296440125, 0.0949229970574379, 0.156198650598526, 0.7578021883964539, 0.09206923842430115, 0.12275944650173187, -0.02664964273571968, -0.20394711196422577, -0.1632312536239624, 0.1810673475265503, 0.22673870623111725, -0.1090892106294632, -0.21195687353610992, 0.10169683396816254, -0.30920881032943726, 0.11551147699356079, -0.29003211855888367, 0.17395178973674774, -0.46811676025390625, 0.3308089077472687, 0.03650716692209244, 0.1312979906797409, -0.32299378514289856, 0.1867275834083557, -0.10601522028446198, 0.1031571626663208, -0.08248566091060638, 0.19012443721294403, 0.10866567492485046, 0.12926465272903442, 0.3938516676425934, 0.11196630448102951, 0.030550777912139893, -0.1637236624956131, -0.3638501465320587, 0.05989794805645943, -0.17809128761291504, 0.008105345070362091, -0.0594826266169548, 0.019316984340548515, -0.11018285155296326, -0.4052196741104126, 0.0673992857336998, 0.24591416120529175, -0.1449955701828003, -0.15653350949287415, 0.07822766900062561, 0.22179141640663147, 0.14919935166835785, -0.31990259885787964, -0.21529516577720642, 0.10933217406272888, -0.060317300260066986, -0.12550538778305054, 0.15062999725341797, -0.11829414963722229, -0.22599563002586365, -0.17915230989456177, 0.265206903219223, 0.20222270488739014, -0.2052331417798996, -0.08489751815795898, 0.05252848193049431, 0.19638383388519287, 0.2605561316013336, 0.2015848010778427, -0.04506896436214447, -0.039294056594371796, -0.0994715765118599, 0.32009899616241455, -0.035621874034404755, -0.6613449454307556, -0.29446548223495483, -0.08100394159555435, -0.20470118522644043, 0.29352498054504395, 0.04679632559418678, -0.346406489610672, -0.191043421626091, 0.0992492139339447, 0.20763848721981049, 0.2389191836118698, 0.19938860833644867, 0.07398021221160889, -0.49871477484703064, -0.34893885254859924, -0.20770233869552612, -0.1053580790758133, 0.1842181533575058, -0.04050011187791824, -0.05006363242864609, 0.030793555080890656, 0.6682900190353394, -0.02280888333916664, 0.1097547858953476, 0.1725935935974121, 0.2791414260864258, 0.06606922298669815, 0.0038900021463632584, 0.03368598222732544, -0.3063521981239319, 0.16148748993873596, -0.2444600611925125, 0.3172655999660492, -0.2633829712867737, -0.28841662406921387, -0.4617548882961273, -0.14673224091529846, -0.35771453380584717, -0.33609098196029663, 0.17742878198623657, 0.3326927125453949, 0.23309534788131714, 0.1839561015367508, 0.16798412799835205, -0.15683850646018982, -0.23056384921073914, 0.01604958064854145, -0.25502273440361023, 0.025391152128577232, -0.2314937263727188, 0.19496400654315948, -0.09843198210000992, 0.11172257363796234, 0.20323002338409424, 0.0645613819360733, -0.34324970841407776, 0.44824233651161194, -0.04001661017537117, 0.42581117153167725, 0.2569478750228882, 0.00948004424571991, 0.31219884753227234, -0.15557031333446503, 0.02536638081073761, 0.20175229012966156, 0.20931722223758698, 0.21552687883377075, -0.32126784324645996, 0.32011544704437256, -0.2278439849615097, 0.2955271005630493, 0.212463840842247, 0.00614132359623909, 0.40606868267059326, -0.13402624428272247, -0.027041232213377953, -0.16012033820152283, -0.1623493880033493, 0.5956910252571106, -0.3482039272785187, -0.16246390342712402, -0.4324272871017456, -0.016655422747135162, 0.18074241280555725, -0.0621190220117569, 0.2663133442401886, 0.28782859444618225, -0.22695046663284302, -0.3052479326725006, 0.1471707671880722, 0.32811951637268066, 0.171214759349823, 0.1615498661994934, 0.2940358817577362, 0.2110920250415802, -0.05480549484491348, -0.3781978189945221, 0.47566694021224976, 0.20274680852890015, -0.06306367367506027, 0.3314950466156006, 0.2529733180999756, 0.07538224756717682, -0.17329144477844238, 0.10419197380542755, -0.14662957191467285, 0.0015546903014183044, -0.2683822214603424, -0.04351770132780075, -0.3165046274662018, 0.14062055945396423, -0.33996838331222534, -0.0564708448946476, -0.09537172317504883, -0.4581070840358734, 0.3413337469100952, 0.0953320786356926, -0.29636698961257935, 0.1810440719127655, -0.11881604790687561, 0.04065258800983429, -0.14528745412826538, -0.021125400438904762, -0.2247062772512436, -0.4174305200576782, -0.4545573592185974, 0.15919868648052216, -0.07939128577709198, -0.1410234123468399, -0.04168795049190521, -0.3193746507167816, -0.03907643258571625, -0.39102697372436523, -0.3622365891933441, -0.23527583479881287, 0.002266332507133484, 0.08391209691762924, 0.02995455265045166, 0.3136542737483978, -0.2385759800672531, -0.3720276951789856, 0.12078209966421127, 0.02436230145394802, -0.032170236110687256, -0.14608675241470337, 0.005619012750685215, 0.34551137685775757, 0.11823432147502899, -0.6243348121643066, -0.15726305544376373, -0.2604810297489166, 0.2051135152578354, 0.23150129616260529, 0.008273914456367493, 0.501930296421051, 0.11657524108886719, 0.0651930421590805, 0.06387653201818466, 0.3580878674983978, -0.20123890042304993, -0.2027280032634735, 0.16088692843914032, -0.2689361870288849, -0.3275575041770935, -0.1447928547859192, -0.114200659096241, 0.5140975117683411, 0.2077137976884842, -0.4951125383377075, 0.032105401158332825, -0.1570851355791092, 0.2840752899646759, 0.03441641852259636, 0.03874007612466812, 0.24893131852149963, 0.26955968141555786, -0.19041138887405396, -0.08448158949613571, 0.05669419839978218, -0.0853249654173851, 0.22353315353393555, 0.24951651692390442, -0.03620681166648865, 0.1373954713344574, 0.27068397402763367, 0.9664543867111206, -0.11567951738834381, 0.30776533484458923, 0.3761494755744934, -0.07392800599336624, 0.001960471272468567, -0.13399097323417664, -0.008233007974922657, 0.18622754514217377, -0.1524355709552765, 0.048951052129268646, 0.5215193629264832, 0.010603861883282661, -0.11526892334222794, -0.22323542833328247, -0.08329696953296661, -0.5791997909545898, -0.6617065668106079, -0.03672493249177933, 0.17287108302116394, 0.185907244682312, 0.29076874256134033, 0.0911872610449791, -0.2571699619293213, -0.2154918909072876, 0.26617631316185, 0.24434199929237366, -0.15371286869049072, -0.13468047976493835, -0.13541969656944275, -0.0790071189403534, -0.30231624841690063, 0.19614343345165253, 0.24170152842998505, 0.4538920521736145, 0.04899157956242561, -0.18976804614067078, 0.04559021443128586, 0.012130564078688622, 0.16793866455554962, -0.24142606556415558, 0.24999400973320007, -0.05448096990585327, -0.015409007668495178, -0.409069299697876, -0.14166446030139923, -0.22232341766357422, -0.11043468117713928, 0.2702297866344452, 0.19348499178886414, -0.24082818627357483, 0.07655712217092514, 0.2549525499343872, 0.02404768578708172, -0.046622637659311295, 0.0200640968978405, -0.22269569337368011, -0.19771996140480042, -0.30525779724121094, 0.060065314173698425, -0.07185870409011841, 0.5199750065803528, -0.31519195437431335, 0.000008609145879745483, -0.0021518468856811523, -0.09605538100004196, -0.2257719486951828, -0.05673867464065552, -0.011191926896572113, 0.4150172770023346, -0.17789790034294128, 0.16025608777999878, 0.2152215838432312, -0.02396739087998867, 0.1760236769914627, -0.09836895763874054, -0.34499841928482056, -0.3201703727245331, 0.1639990657567978, 0.023359067738056183, 0.5003490447998047, 0.067307248711586, -0.11016752570867538, 0.19817879796028137, 0.10236415266990662, -0.11963669210672379, 0.38365647196769714, 0.25945407152175903, 0.10619869828224182, -0.17626270651817322, -0.3233324885368347, 0.6220648884773254, 0.06721840798854828, -0.18631020188331604, 0.2987988591194153, 0.32872146368026733, -0.6315211653709412, 0.03248453512787819, 0.22588717937469482, 1.1548787355422974, 0.2015390694141388, 0.22038450837135315, 0.36511534452438354, -0.05981424078345299, 0.06276111304759979, -0.19722041487693787, 0.3283078074455261, -0.09388527274131775, 0.01110887061804533, 0.021426180377602577, 0.17323856055736542, 0.08556870371103287, -0.21395759284496307, -0.36251145601272583, 0.3910606801509857, -0.2234109342098236, 0.046112339943647385, 0.11999328434467316, 0.09271398186683655, -0.21271100640296936, 0.04358698055148125, -0.2854975461959839, 0.06541510671377182, 0.1592780351638794, 0.2712334096431732, -0.04058104008436203, -0.01887015998363495, -0.17210780084133148, -0.02880747616291046, -0.1778150200843811, 0.1614278256893158, -0.6074109077453613, 0.23911216855049133, -0.5020620226860046, -0.2115969955921173, -0.20500652492046356, 0.694541871547699, 0.126048743724823, 0.3090692460536957, -0.4552484154701233, 0.42035022377967834, -0.05999504774808884, -0.052336495369672775, 0.10489261150360107, 0.18401852250099182, 0.007183613255620003, -0.30336201190948486, -0.2587827444076538, 0.04663969576358795, -0.09415162354707718, 0.11299523711204529, -0.13883157074451447, -0.23326130211353302, 0.1927650272846222, -0.13525059819221497, -0.1536799967288971, -0.1895304024219513, -0.21765676140785217, -0.38678374886512756, 0.14020058512687683, -0.2809528112411499, -0.08218368887901306, -0.07141033560037613, 0.31509140133857727, -0.3939551115036011, -0.13677573204040527, 0.6774898171424866, 0.09614662081003189, 0.16545890271663666, 0.5063605904579163, 0.014576148241758347, -0.1935417205095291, -0.17024150490760803, -0.06755588203668594, -0.23571838438510895, -0.3545146882534027, -0.023944050073623657, 0.07299094647169113, 0.005625665187835693, -0.21441887319087982, 0.3801521062850952, 0.14680616557598114, -0.08413607627153397, -0.05854848772287369, -0.17445825040340424, -0.010676898062229156, 0.1476253718137741, 0.00253203883767128, 0.21680301427841187, 0.11354450136423111, -0.08452259004116058, 0.22106708586215973, 0.05812160670757294, -0.3318822979927063, 0.1064310297369957, -0.3553634583950043, 0.11069948226213455, -0.06756019592285156, 0.07389036566019058, 0.22656483948230743, 0.29955974221229553, 0.22570288181304932, -0.023749668151140213, 0.06710362434387207, -0.21445709466934204, -0.34872081875801086, 0.11239691823720932, 0.14982548356056213, -0.10247556865215302, 0.006011711433529854, 0.017274219542741776, 0.05315372720360756, -0.12256184220314026, -0.02073112316429615, 0.020404107868671417, 0.051124826073646545, 0.3066369593143463, 0.1817648559808731, 0.13259492814540863, 0.08983077108860016, 0.19693776965141296, -0.11384239792823792, 0.23447394371032715, 0.017929837107658386, 0.17384272813796997, 0.006910176947712898, -0.22238032519817352, -0.1870962679386139, -0.0471370592713356, -0.006612770259380341, 0.17328080534934998, -0.027450285851955414, -0.15524132549762726, -0.09375697374343872, 0.04009918123483658, -0.16740863025188446, 0.284189373254776, -0.04937649518251419, -0.23180758953094482, 0.09243182092905045, 0.28283393383026123, -0.2781328558921814, 0.02113710716366768, -0.06348255276679993, -0.15638487040996552, 0.16626866161823273, -0.11388453096151352, 0.0021822936832904816, -0.2530674338340759, -0.12932944297790527, 0.2048795521259308, -0.2892477810382843, -0.3238629102706909, 0.2740727663040161, 0.3919837176799774, -0.034500785171985626, 0.09387721866369247, -0.15565292537212372, -0.12903952598571777, 0.07251524925231934, 0.21947453916072845, -0.16525471210479736, 0.284908652305603, -0.11859352141618729, 0.11797616630792618, 0.2299998700618744, -0.1182863861322403, 0.02188321016728878, 0.17419278621673584, -0.5195321440696716, 0.1806119829416275, 0.25133413076400757, 0.05839564651250839, 0.04764125868678093, 0.20686806738376617, -0.20222389698028564, 0.02667197212576866, -0.12136439234018326, -0.5013464689254761, -0.36977773904800415, -0.320926308631897, -0.012007750570774078, 0.0854002982378006, -0.09056909382343292, 0.07393999397754669, 0.10050079971551895, 0.014724154025316238, -0.19497625529766083, -0.4649893045425415, 0.1441381722688675, 0.07002396881580353, 0.42224380373954773, -0.18446901440620422, 0.009311255067586899, 0.36296844482421875, 0.08589762449264526, 0.05723622441291809, 0.18223528563976288, 0.3926504850387573, 0.09059835970401764, -0.23404690623283386, 0.010107512585818768, 0.12652984261512756, -0.012165755033493042, 0.03143421933054924, 0.17429722845554352, 0.43234190344810486, 0.1120818555355072, 0.29603317379951477, 0.2616358995437622, -0.23190689086914062, 0.08850066363811493, 0.07833340018987656, -0.043293535709381104, -0.19752243161201477, 0.28768566250801086, 0.037052422761917114, -0.08986150473356247, -0.1380823701620102, 0.11607629060745239, -0.28593674302101135, 0.4122084379196167, 0.007756034843623638, 0.10550844669342041, 0.0883227065205574, -0.24525964260101318, 0.07587745040655136, 0.31262144446372986, 0.5698586702346802, 0.3061131238937378, -0.12166515737771988, -0.24554049968719482, -0.021730758249759674, -0.2760876715183258, 0.04480372369289398, 0.26359209418296814, 0.03864502161741257, 0.04794757440686226, 0.2240023910999298, -0.2557332515716553, 0.17438378930091858, -0.08417584002017975, 0.1110982820391655, 0.24941325187683105, 0.30663037300109863, -0.291522353887558, 0.075020432472229, 0.2262117564678192, 0.04168007895350456, 0.08643495291471481, -0.2950240969657898, 0.1276063174009323, -0.30218496918678284, -0.0049782246351242065, -0.04584316164255142, 0.1758832186460495, 0.1679835319519043, 0.1451665461063385, 0.36812257766723633, 0.054569944739341736, 0.2655351161956787, -0.22869157791137695, -0.32979816198349, -0.2506529986858368, -0.08213382959365845, -0.19198814034461975, -0.026179790496826172, -0.08055831491947174, 0.2559632360935211, 0.15149827301502228, -0.05417251959443092, 0.012568732723593712, 0.3862360119819641, 0.11944128572940826, 0.233488067984581, -0.12246232479810715, -0.21893632411956787, 0.29969891905784607, -0.13633623719215393, 0.15148034691810608, 0.2575664520263672, -0.13741886615753174, 0.17044329643249512, -0.277227520942688, -0.7717125415802002, 0.5231634378433228, -0.2375454157590866, -0.19851917028427124, -0.1515466868877411, 0.24376463890075684, -0.14963799715042114, -0.0033860057592391968, -0.7100700736045837, 0.24911129474639893, 0.37631112337112427, 0.1635764241218567, -0.1430077701807022, 0.12470802664756775, 0.07307270169258118, 0.12903712689876556, -0.1290818154811859, 0.28701674938201904, 0.10776056349277496, -0.16141018271446228, -0.10573433339595795, -0.32560718059539795 ]
https://github.com/huggingface/datasets/issues/3261
Scifi_TV_Shows: Having trouble getting viewer to find appropriate files
Hi ! I think this is because `iter_archive` doesn't support ZIP files yet. See https://github.com/huggingface/datasets/issues/3272 You can navigate into the archive this way instead: ```python # in split_generators data_dir = dl_manager.download_and_extract(url) train_filepath = os.path.join(data_dir, "all-sci-fi-data-train.txt") return [ datasets.SplitGenerator( name=datasets.Split.TRAIN, gen_kwargs={ "filepath": train_filepath, }, ), ... ]) # in generate_examples with open(filepath, encoding="utf-8") as f: ... ```
## Dataset viewer issue for '*Science Fiction TV Show Plots Corpus (Scifi_TV_Shows)*' **Link:** [link](https://huggingface.co/datasets/lara-martin/Scifi_TV_Shows) I tried adding both a script (https://huggingface.co/datasets/lara-martin/Scifi_TV_Shows/blob/main/Scifi_TV_Shows.py) and some dummy examples (https://huggingface.co/datasets/lara-martin/Scifi_TV_Shows/tree/main/dummy), but the viewer still has a 404 error ("Not found. Maybe the cache is missing, or maybe the ressource does not exist."). I'm not sure what to try next. Thanks in advance! Am I the one who added this dataset? Yes
56
Scifi_TV_Shows: Having trouble getting viewer to find appropriate files ## Dataset viewer issue for '*Science Fiction TV Show Plots Corpus (Scifi_TV_Shows)*' **Link:** [link](https://huggingface.co/datasets/lara-martin/Scifi_TV_Shows) I tried adding both a script (https://huggingface.co/datasets/lara-martin/Scifi_TV_Shows/blob/main/Scifi_TV_Shows.py) and some dummy examples (https://huggingface.co/datasets/lara-martin/Scifi_TV_Shows/tree/main/dummy), but the viewer still has a 404 error ("Not found. Maybe the cache is missing, or maybe the ressource does not exist."). I'm not sure what to try next. Thanks in advance! Am I the one who added this dataset? Yes Hi ! I think this is because `iter_archive` doesn't support ZIP files yet. See https://github.com/huggingface/datasets/issues/3272 You can navigate into the archive this way instead: ```python # in split_generators data_dir = dl_manager.download_and_extract(url) train_filepath = os.path.join(data_dir, "all-sci-fi-data-train.txt") return [ datasets.SplitGenerator( name=datasets.Split.TRAIN, gen_kwargs={ "filepath": train_filepath, }, ), ... ]) # in generate_examples with open(filepath, encoding="utf-8") as f: ... ```
[ -0.25789570808410645, 0.10723671317100525, 0.024664532393217087, 0.3973904848098755, 0.009912572801113129, 0.17148584127426147, -0.09496067464351654, 0.4377739429473877, 0.19724249839782715, -0.037698522210121155, -0.24375003576278687, 0.06375502049922943, -0.37112319469451904, 0.24521012604236603, -0.040026698261499405, -0.0794995129108429, 0.05215538665652275, 0.20732708275318146, 0.07816185057163239, 0.2033524364233017, -0.2079741656780243, 0.39112362265586853, -0.03133357688784599, -0.23735679686069489, -0.18768592178821564, -0.028049500659108162, 0.01554000936448574, 0.22623085975646973, 0.023883655667304993, -0.391322523355484, 0.23533914983272552, 0.04277750477194786, 0.4197861850261688, 0.7335674166679382, -0.00012763791892211884, 0.08095592260360718, 0.31951892375946045, -0.0181424617767334, -0.4663245975971222, -0.18889965116977692, 0.1702178418636322, 0.04877832531929016, 0.04257877916097641, -0.05387229844927788, -0.10282348841428757, 0.05249980837106705, 0.2677488625049591, -0.1538628190755844, 0.006122291088104248, 0.319288969039917, 0.08281323313713074, 0.2735294699668884, 0.010464075952768326, -0.22873476147651672, 0.4890914261341095, 0.37311750650405884, -0.20773658156394958, 0.08710351586341858, 0.156684011220932, 0.1850285679101944, -0.01600385457277298, 0.44634175300598145, -0.017069056630134583, -0.10177864134311676, 0.3687836825847626, -0.06729010492563248, -0.39321500062942505, -0.4466491937637329, 0.025565210729837418, 0.3387860059738159, 0.5310295224189758, -0.1485632359981537, -0.422660231590271, -0.22555840015411377, -0.20954181253910065, -0.10065272450447083, 0.21753662824630737, 0.08909083157777786, -0.366466760635376, 0.226003497838974, 0.0676976889371872, -0.34861186146736145, -0.28348714113235474, 0.2729133069515228, 0.03704782575368881, 0.3228656053543091, 0.05485318601131439, 0.0028790459036827087, 0.21060585975646973, 0.022681204602122307, 0.2822704017162323, -0.007230168208479881, 0.17588670551776886, -0.009787351824343204, -0.1510290652513504, -0.09456281363964081, -0.1204453632235527, 0.20643150806427002, -0.12565770745277405, 0.22213296592235565, -0.03320271149277687, 0.04946869611740112, 0.07761380821466446, 0.10841543227434158, 0.22824692726135254, 0.14606496691703796, -0.1346297264099121, 0.16887719929218292, 0.2716708779335022, 0.4088217318058014, 0.0020296089351177216, -0.11037112027406693, -0.31728410720825195, -0.24965792894363403, -0.3006451427936554, -0.3927915096282959, 0.02075337991118431, -0.10359713435173035, -0.12572604417800903, -0.059845246374607086, -0.23034581542015076, -0.22927694022655487, 0.24901501834392548, 0.4678496718406677, -0.10484768450260162, 0.418684184551239, 0.005777325481176376, 0.11845110356807709, -0.14035440981388092, -0.1456431895494461, -0.08564364165067673, 0.1607934683561325, -0.03090851940214634, 0.2858816683292389, 0.39261701703071594, -0.505676805973053, 0.17856425046920776, -0.33726251125335693, 0.07515542209148407, 0.030409373342990875, 0.24406331777572632, 0.006096318364143372, 0.016249388456344604, 0.3095267713069916, 0.18465133011341095, 0.38292619585990906, 0.2068050503730774, -0.20237746834754944, -0.3182448148727417, 0.24051067233085632, -0.12156707793474197, -0.41257530450820923, -0.05231710523366928, -0.004141198471188545, -0.4686555862426758, -0.05104830861091614, -0.055297158658504486, -0.12548229098320007, -0.08279334753751755, -0.4818355441093445, -0.11657518893480301, 0.03829155117273331, 0.10493621230125427, -0.1364404410123825, 0.32490789890289307, 0.7214389443397522, -0.44472771883010864, 0.14294910430908203, -0.4849505126476288, 0.05000264197587967, 0.08860189467668533, 0.13710683584213257, 0.08013220876455307, 0.08363867551088333, -0.5120590329170227, 0.2723551392555237, 0.5785637497901917, -0.3217736482620239, -0.281659871339798, 0.36297714710235596, -0.07687211036682129, 0.4380815029144287, 0.5256969928741455, 0.37331411242485046, 0.06341176480054855, -0.3842643201351166, -0.29400116205215454, -0.13266503810882568, 0.13118569552898407, -0.19415774941444397, -0.22036483883857727, -0.05852809548377991, 0.0960332602262497, 0.1801026612520218, 0.3626595139503479, 0.030279356986284256, 0.12645573914051056, -0.2705586552619934, 0.32098689675331116, 0.03563328832387924, 0.21687696874141693, 0.23085923492908478, 0.26466140151023865, 0.5334528684616089, 0.09311892837285995, -0.1208278089761734, -0.17469626665115356, 0.19550451636314392, 0.01058371365070343, -0.05579167604446411, 0.03752324357628822, -0.08637017011642456, -0.308382511138916, -0.041756950318813324, -0.22236107289791107, -0.22657597064971924, -0.07743920385837555, 0.21923767030239105, -0.04811067879199982, -0.06535318493843079, -0.246328666806221, -0.09463592618703842, 0.2513391077518463, 0.4335050880908966, -0.6260384321212769, 0.5654382705688477, -0.14022447168827057, -0.14959901571273804, 0.10002928972244263, 0.09485413879156113, 0.01693188026547432, -0.15908421576023102, 0.06007660925388336, 0.33983439207077026, 0.033599261194467545, 0.09857239574193954, 0.25739428400993347, 0.30390310287475586, 0.14399303495883942, -0.39344334602355957, 0.06882903724908829, 0.16762422025203705, 0.05415781959891319, 0.08274669200181961, -0.2595923840999603, -0.0725032389163971, -0.051638249307870865, 0.22879689931869507, 0.17471733689308167, 0.22064074873924255, 0.13039903342723846, 0.06336335837841034, -0.06299233436584473, -0.21466974914073944, 0.3059152066707611, 0.09338252246379852, 0.04899552837014198, 0.055285777896642685, -0.4045543670654297, 0.22087988257408142, 0.1372687816619873, -0.15437215566635132, 0.005791977047920227, 0.433984637260437, -0.46392667293548584, 0.017767298966646194, 0.2727709114551544, 0.3250293731689453, 0.2613106369972229, 0.12791098654270172, -0.006009843200445175, -0.00018840841948986053, 0.08133202791213989, -0.4494260549545288, 0.13209185004234314, 0.05150746926665306, 0.02247362583875656, 0.16128739714622498, -0.1756952702999115, 0.07506345957517624, -0.16463389992713928, -0.22433894872665405, -0.16723693907260895, 0.020478587597608566, -0.31658467650413513, -0.07610367983579636, -0.18027189373970032, -0.34128516912460327, -0.3080725073814392, -0.08246096223592758, -0.11792652308940887, -0.38867488503456116, 0.13235241174697876, 0.3958556652069092, -0.11338405311107635, 0.14944197237491608, -0.07317458838224411, 0.059228330850601196, -0.06288816779851913, -0.08909755200147629, -0.19624517858028412, -0.20406706631183624, -0.20203253626823425, -0.034462880343198776, 0.3442501127719879, -0.02521713450551033, 0.10987105965614319, -0.3777253329753876, 0.24306531250476837, -0.5242529511451721, -0.3552803695201874, 0.14259758591651917, -0.0017209313809871674, 0.3345697820186615, 0.1826108992099762, 0.3637595772743225, -0.14382144808769226, -0.35095807909965515, 0.1178058534860611, 0.0961272269487381, 0.23607906699180603, 0.03840336948633194, -0.06964102387428284, -0.18482999503612518, 0.09810902178287506, -0.3498828411102295, -0.190424382686615, -0.5078611969947815, 0.22897987067699432, 0.192032590508461, 0.14174866676330566, -0.05921304225921631, 0.26628783345222473, -0.11355947703123093, -0.06014341488480568, -0.07959834486246109, 0.03311311453580856, -0.4984273910522461, 0.9225258827209473, -0.4772050380706787, -0.39550167322158813, 0.3990316390991211, -0.0850762352347374, 0.22322054207324982, 0.03294071555137634, -0.6755884885787964, -0.06174517422914505, -0.08904660493135452, -0.12405163049697876, 0.1886921525001526, -0.012687476351857185, 0.22877731919288635, 0.0191512294113636, 0.10042420029640198, 0.02505355328321457, -0.17330403625965118, 0.06184103712439537, -0.37823811173439026, 0.1799629032611847, 0.11800307035446167, 0.10257402062416077, 0.16698770225048065, 0.5997534394264221, 0.37691259384155273, 0.21493683755397797, 0.4265277683734894, -0.06676540523767471, 0.4888865351676941, 0.10626701265573502, -0.21403273940086365, 0.39205214381217957, -0.147190660238266, -0.09157811105251312, 0.39764249324798584, 0.3115195333957672, 0.06301302462816238, -0.26563966274261475, 0.04765349254012108, -0.3787527084350586, -0.275190144777298, 0.12319110333919525, -0.10984630882740021, 0.12853209674358368, -0.14042703807353973, 0.06954484432935715, -0.1769123375415802, -0.40955740213394165, 0.09312348067760468, 0.6218012571334839, 0.43060076236724854, 0.163323774933815, -0.17010225355625153, -0.14170069992542267, -0.23500028252601624, 0.2891920804977417, -0.03418075293302536, -0.08067978173494339, -0.1350642591714859, -0.08625655621290207, 0.22727487981319427, 0.2269199639558792, 0.9540437459945679, -0.06457511335611343, -0.018726475536823273, -0.2875203788280487, -0.016116298735141754, -0.4420793950557709, 0.014509856700897217, 0.07973362505435944, -0.1521083414554596, 0.11353045701980591, 0.3921191692352295, -0.2639669179916382, 0.17653058469295502, 0.042909905314445496, 0.17022722959518433, -0.12014131247997284, -0.33706602454185486, 0.15689381957054138, -0.17013868689537048, -0.4543900489807129, -0.5232816338539124, 0.08720314502716064, -0.04851710796356201, -0.011409617960453033, -0.14349691569805145, 0.03322049230337143, -0.18782472610473633, 0.32085320353507996, 0.029004529118537903, 0.3230122923851013, -0.024159472435712814, 0.06530137360095978, 0.5728346109390259, 0.28105854988098145, 0.175301194190979, 0.5070971250534058, -0.342668741941452, -0.5103123784065247, 0.21208298206329346, 0.16971811652183533, 0.16847467422485352, 0.36035364866256714, -0.14173316955566406, -0.21840816736221313, 0.1302584409713745, 0.16825956106185913, -0.14447827637195587, 0.25609323382377625, 0.24026355147361755, -0.1730162799358368, -0.40795329213142395, -0.5461956858634949, 0.2481415867805481, 0.23520351946353912, 0.00817824900150299, 0.21576586365699768, 0.2032507359981537, 0.02056661620736122, 0.2073967456817627, -0.1899051070213318, 1.1590874195098877, -0.20515058934688568, 0.10495299100875854, 0.3685400187969208, 0.00008780136704444885, 0.48988381028175354, -0.5621071457862854, 0.12303455919027328, -0.24734792113304138, -0.4460538625717163, -0.08039283752441406, -0.012269105762243271, 0.12413661181926727, 0.2231268286705017, -0.4264652132987976, 0.4465719759464264, 0.08065935969352722, 0.13590164482593536, 0.0973147302865982, 0.2674753665924072, -0.26589253544807434, -0.17107385396957397, -0.018900655210018158, 0.023846056312322617, -0.015268780291080475, 0.39417368173599243, -0.0650787204504013, -0.07159344106912613, -0.17769241333007812, -0.255099356174469, -0.2853032648563385, 0.06924495100975037, -0.35306456685066223, -0.21974775195121765, 0.2646273374557495, -0.49738264083862305, -0.019237244501709938, 0.6790012121200562, -0.006210729479789734, 0.12087424099445343, -0.25120168924331665, 0.17616568505764008, 0.05602471902966499, -0.45991051197052, 0.18340463936328888, 0.04151109233498573, 0.2908085584640503, -0.10838178545236588, 0.001880064606666565, 0.1790197193622589, 0.015887189656496048, -0.16220302879810333, 0.05412311851978302, -0.260378360748291, -0.005906268954277039, -0.13101042807102203, -0.06562362611293793, -0.3139170706272125, -0.303448885679245, -0.18387937545776367, 0.0217202790081501, -0.007905177772045135, -0.06273601949214935, -0.15705779194831848, -0.1389872431755066, 0.09304755926132202, -0.103102907538414, 0.3302918076515198, -0.25291651487350464, -0.10591917484998703, 0.43193233013153076, 0.506209135055542, -0.33661991357803345, -0.04778800904750824, -0.15942327678203583, -0.026744920760393143, -0.6364167332649231, -0.082649827003479, 0.09952881932258606, -0.06634701043367386, -0.045021362602710724, -0.005893487483263016, 0.25097543001174927, -0.28475049138069153, -0.18938829004764557, -0.34072145819664, 0.08860354870557785, 0.263762891292572, 0.11231270432472229, 0.3407938480377197, -0.21291854977607727, -0.06919173896312714, 0.10111542791128159, -0.02586330659687519, -0.16300709545612335, 0.06463873386383057, 0.07432927936315536, -0.11551477015018463, 0.26949936151504517, 0.19217100739479065, 0.15147827565670013, -0.09467482566833496, -0.04349393770098686, -0.05622406303882599, -0.19909508526325226, 0.034487754106521606, 0.006751567125320435, 0.16280657052993774, 0.025473447516560555, -0.40361279249191284, -0.06703130900859833, 0.047375403344631195, 0.07169229537248611, -0.37711814045906067, -0.2658543288707733, 0.15070050954818726, -0.12894853949546814, -0.05761557072401047, -0.0476452000439167, -0.29009658098220825, -0.1380678415298462, 0.4070131778717041, 0.03084874153137207, 0.5485038161277771, 0.1567310392856598, 0.06993389874696732, -0.12410200387239456, -0.15796932578086853, 0.05292600393295288, 0.2559562623500824, 0.08362873643636703, 0.14002270996570587, 0.5828832983970642, -0.19689930975437164, 0.06387254595756531, 0.373433917760849, 0.2050081044435501, 0.046635523438453674, -0.04068230837583542, 0.04722128063440323, 0.29111745953559875, -0.007030857726931572, -0.2175208330154419, 0.05527259036898613, 0.18563567101955414, 0.21175719797611237, 0.0329887755215168, 0.27384692430496216, 0.05306596681475639, -0.19108372926712036, 0.18838587403297424, 0.19871199131011963, 0.46707209944725037, 0.19739371538162231, 0.5422307848930359, 0.40066784620285034, 0.07221096754074097, 0.05596251040697098, -0.18841293454170227, 0.22376148402690887, 0.06649497896432877, -0.06988701224327087, -0.27979737520217896, 0.2328457087278366, -0.17684262990951538, 0.07556158304214478, 0.02323422208428383, -0.43628552556037903, -0.12773478031158447, 0.22649960219860077, 0.09528864920139313, 0.05622787028551102, -0.1834181249141693, 0.4394943416118622, -0.07571704685688019, 0.20194636285305023, -0.20414118468761444, 0.17392532527446747, 0.27369457483291626, 0.25405195355415344, -0.12445086240768433, -0.15506160259246826, -0.3396255373954773, -0.22879944741725922, 0.2662855386734009, -0.28767186403274536, -0.06430372595787048, 0.19068801403045654, 0.13303779065608978, 0.0313938669860363, 0.14892327785491943, -0.1990310549736023, 0.1812472939491272, -0.03803161531686783, 0.4384075999259949, 0.22481542825698853, -0.027838721871376038, 0.40724071860313416, 0.02305719442665577, 0.3788064420223236, 0.23390032351016998, 0.013344249688088894, 0.16133840382099152, -0.12023180723190308, -0.22981113195419312, 0.01624138653278351, 0.008177300915122032, -0.18187600374221802, -0.050999853760004044, 0.11294324696063995, -0.0016164742410182953, -0.21583648025989532, 0.23238879442214966, -0.12610305845737457, 0.4512304961681366, -0.20160417258739471, 0.17204613983631134, -0.2920410931110382, -0.2863094210624695, -0.0837373435497284, -0.621354877948761, -0.654937744140625, 0.030713990330696106, 0.20620550215244293, -0.4301394820213318, 0.04817543178796768, -0.2101670801639557, -0.0022180769592523575, 0.2260824590921402, 0.25784575939178467, 0.3558717370033264, 0.08295472711324692, -0.24666264653205872, -0.3829975724220276, -0.7103981375694275, 0.17024555802345276, -0.005792349576950073, -0.10408944636583328, 0.02015819028019905, -0.17052088677883148, -0.11324267834424973, 0.12353743612766266, 0.11664307117462158, -0.20890629291534424, -0.09785626828670502, 0.1893579363822937, 0.014251932501792908, -0.21704627573490143, 0.16779974102973938, 0.1797771155834198, 0.03646479547023773, 0.09444109350442886, 0.034092023968696594, -0.165033757686615, -0.0712234377861023, 0.0360640324652195, -0.01532304659485817, -0.16970159113407135, -0.4381464123725891, 0.2227582335472107, -0.06755788624286652, 0.25140368938446045, -0.021290361881256104, -0.06376611441373825, -0.17529191076755524, -0.1998073160648346, -0.0797467976808548, -0.008012063801288605, 0.043070025742053986, 0.5551005601882935, -0.4413224160671234, -0.13750749826431274, -0.2791350483894348, -0.037102241069078445, -0.006063550710678101, 0.24209041893482208, -0.2723395526409149, 0.19130465388298035, -0.4297560453414917, 0.20168307423591614, 0.45665842294692993, 0.2606055438518524, 0.09036265313625336, 0.16078604757785797, -0.148635596036911, -0.34473729133605957, 0.37935125827789307, -0.4298011362552643, 0.028189178556203842, 0.13482406735420227, -0.10582628846168518, 0.02229415625333786, 0.1407727152109146, -0.3440101444721222, 0.11162925511598587, 0.17763139307498932, 0.19031786918640137, 0.19331002235412598, -0.09109042584896088, -0.030607927590608597, -0.1569274216890335, 0.006913475692272186, 0.3568556308746338, 0.17138653993606567, -0.19364190101623535, 0.05231041833758354, -0.01958656869828701 ]
https://github.com/huggingface/datasets/issues/3257
Use f-strings for string formatting
Hi, I would be glad to help with this. Is there anyone else working on it?
f-strings offer better readability/performance than `str.format` and `%`, so we should use them in all places in our codebase unless there is good reason to keep the older syntax. > **NOTE FOR CONTRIBUTORS**: To avoid large PRs and possible merge conflicts, do 1-3 modules per PR. Also, feel free to ignore the files located under `datasets/*`.
16
Use f-strings for string formatting f-strings offer better readability/performance than `str.format` and `%`, so we should use them in all places in our codebase unless there is good reason to keep the older syntax. > **NOTE FOR CONTRIBUTORS**: To avoid large PRs and possible merge conflicts, do 1-3 modules per PR. Also, feel free to ignore the files located under `datasets/*`. Hi, I would be glad to help with this. Is there anyone else working on it?
[ -0.2523801326751709, -0.0726950466632843, -0.272931307554245, -0.19373805820941925, 0.31808918714523315, -0.23307475447654724, -0.07743102312088013, 0.4338001310825348, -0.040199100971221924, 0.174147367477417, -0.07385482639074326, 0.2662826478481293, -0.15483738481998444, 0.32646939158439636, -0.11826100945472717, 0.08680586516857147, 0.1632619947195053, 0.3807905614376068, -0.21614792943000793, 0.16930532455444336, -0.11037108302116394, 0.07799667119979858, 0.05199210345745087, 0.13489724695682526, -0.2487015575170517, 0.08587664365768433, 0.11921320855617523, 0.1374291479587555, -0.13958367705345154, -0.4347902834415436, -0.1817260980606079, 0.306997686624527, 0.07030260562896729, 0.22222042083740234, -0.00009498283907305449, 0.027160800993442535, 0.23117946088314056, 0.0436980202794075, -0.33143505454063416, 0.12324575334787369, -0.21090954542160034, -0.03448888659477234, 0.14561742544174194, -0.08893189579248428, 0.014295965433120728, -0.13923469185829163, 0.05693846940994263, -0.509932279586792, 0.17873457074165344, 0.23118337988853455, 0.40035393834114075, 0.039069753140211105, -0.041149623692035675, -0.008534388616681099, 0.34253057837486267, 0.4041215181350708, 0.03237234801054001, -0.008592261001467705, 0.32037657499313354, 0.1296604573726654, -0.15894171595573425, 0.41380688548088074, -0.10063687711954117, -0.15519018471240997, 0.314790278673172, 0.05594668537378311, -0.08410599082708359, -0.07898512482643127, 0.11091922968626022, -0.05250728130340576, 0.36676615476608276, -0.356048583984375, -0.25230857729911804, 0.007793992757797241, -0.3357442021369934, -0.40716829895973206, 0.11725915223360062, 0.12123164534568787, -0.04163474589586258, 0.3417411744594574, -0.06526438891887665, -0.23934337496757507, -0.2610689401626587, -0.057288408279418945, 0.20172598958015442, 0.2606605291366577, -0.14842309057712555, -0.19532155990600586, 0.03155970573425293, -0.10533404350280762, -0.14112988114356995, -0.10187628865242004, -0.06611110270023346, -0.20710329711437225, 0.21208778023719788, -0.13007155060768127, -0.27756527066230774, -0.04846767336130142, 0.2807564437389374, 0.087969571352005, -0.08323122560977936, 0.31636714935302734, 0.02174711599946022, -0.07786659151315689, -0.11535987257957458, -0.051789864897727966, 0.4173862338066101, -0.014995189383625984, 0.6906057596206665, -0.2916191816329956, -0.037015561014413834, -0.10142268985509872, -0.034451186656951904, -0.08197468519210815, -0.13064195215702057, 0.04816741868853569, -0.19552282989025116, -0.32508912682533264, 0.12986014783382416, -0.0903259664773941, 0.28855955600738525, -0.15528112649917603, 0.08002274483442307, 0.28535374999046326, 0.17005808651447296, 0.23771968483924866, -0.1029120534658432, 0.001869475468993187, 0.07895839214324951, -0.2446170300245285, -0.14125752449035645, 0.16357199847698212, -0.3244718611240387, -0.21567820012569427, 0.09953905642032623, -0.19332148134708405, -0.0725330114364624, 0.027877774089574814, 0.015213094651699066, 0.13146647810935974, 0.23438361287117004, 0.006651435047388077, 0.16302448511123657, 0.22413448989391327, -0.2724481225013733, -0.05389537662267685, -0.22282452881336212, -0.030241360887885094, -0.12308667600154877, 0.15483367443084717, -0.09355569630861282, -0.16044847667217255, -0.3816613256931305, 0.33974143862724304, 0.036737825721502304, -0.10878787934780121, -0.04196806997060776, 0.18090300261974335, -0.004174858331680298, -0.26147449016571045, -0.020242296159267426, 0.16840805113315582, 0.029189813882112503, -0.23043054342269897, 0.07955140620470047, 0.12488095462322235, -0.2709440290927887, 0.06247052550315857, 0.3029821217060089, -0.21596474945545197, 0.32107293605804443, 0.23603881895542145, -0.05074901133775711, 0.008134201169013977, -0.04075445979833603, 0.08450901508331299, 0.48702988028526306, -0.25523170828819275, 0.11378839612007141, 0.4544896185398102, 0.07858096063137054, -0.5273438692092896, 0.24746689200401306, -0.11185062676668167, -0.00558105856180191, -0.12276466935873032, 0.008314110338687897, 0.2160332202911377, 0.01630091294646263, 0.24101459980010986, -0.3616274297237396, -0.2695990204811096, -0.03482457250356674, 0.2020907998085022, 0.02826819382607937, -0.26910534501075745, 0.24282416701316833, 0.007291712798178196, 0.2419557273387909, -0.39779171347618103, 0.04672379791736603, -0.006011787801980972, 0.27699536085128784, 0.20320068299770355, -0.1717052012681961, -0.4671596586704254, -0.25831887125968933, -0.3357979357242584, -0.03829224407672882, -0.19964081048965454, -0.034207433462142944, -0.1837272047996521, 0.08092246949672699, -0.16005250811576843, 0.12849117815494537, 0.22448837757110596, 0.2927679717540741, 0.2583976686000824, 0.051510971039533615, 0.04823185130953789, -0.4219653308391571, 0.25214794278144836, -0.03304099664092064, 0.10547541081905365, 0.10875849425792694, 0.059438928961753845, -0.10890816897153854, -0.18276257812976837, 0.03227674216032028, 0.2674095034599304, -0.0017354078590869904, -0.04967857152223587, 0.03147737309336662, 0.4911629259586334, 0.14319868385791779, -0.04899536073207855, 0.23787656426429749, 0.33709457516670227, 0.19427922368049622, 0.03291676566004753, 0.19320280849933624, 0.014954875223338604, -0.02704456076025963, 0.20250695943832397, -0.4407249987125397, 0.3134257197380066, 0.05667969584465027, -0.014499105513095856, 0.22872482240200043, -0.08621647208929062, 0.01656133122742176, 0.000564921647310257, -0.14438779652118683, -0.36336490511894226, 0.2022377997636795, -0.016570236533880234, 0.005434185266494751, 0.3159424364566803, -0.5020892024040222, -0.012633606791496277, 0.44825607538223267, -0.06080738827586174, 0.3093242049217224, 0.24474814534187317, -0.010968685150146484, -0.19580277800559998, 0.020822711288928986, -0.06785903126001358, -0.01405353844165802, 0.3974093794822693, -0.07303109765052795, -0.1436098963022232, 0.10303224623203278, -0.16786570847034454, 0.4159822463989258, 0.1735009253025055, -0.1123429387807846, 0.07963395118713379, 0.004300152417272329, 0.1630784422159195, -0.24590831995010376, -0.36740925908088684, -0.37130266427993774, -0.05328989773988724, -0.27289441227912903, -0.0523957759141922, -0.3514193296432495, -0.18327227234840393, -0.08924195915460587, -0.0387912318110466, -0.00843321904540062, -0.17864155769348145, 0.09539864212274551, -0.2165447175502777, -0.3625357747077942, 0.27657759189605713, -0.19836647808551788, 0.38563448190689087, -0.1718422919511795, 0.13745272159576416, -0.2796774208545685, -0.011812925338745117, -0.1352493166923523, 0.21848611533641815, 0.48061221837997437, 0.1296229511499405, 0.3343780040740967, -0.14908096194267273, 0.17923837900161743, -0.14808323979377747, -0.49840879440307617, 0.1922452598810196, -0.015318751335144043, -0.008346159011125565, 0.34168222546577454, -0.0738728940486908, -0.009598799049854279, -0.3237278461456299, 0.013180146925151348, -0.21749113500118256, -0.13684611022472382, 0.06996329128742218, -0.09183727204799652, 0.003671252401545644, -0.4460923373699188, -0.1731780469417572, -0.26207616925239563, -0.3655596971511841, 0.13586506247520447, -0.08398786187171936, 0.2033451646566391, 0.21905577182769775, -0.2323930710554123, 0.03620088845491409, -0.23260769248008728, 0.19773223996162415, -0.021363552659749985, -0.37894368171691895, 0.3082566559314728, -0.2724909484386444, -0.22593925893306732, -0.0975695326924324, 0.062075644731521606, -0.4477419853210449, 0.07700573652982712, 0.03254149854183197, -0.22865216434001923, -0.3055327832698822, 0.009422894567251205, 0.031317904591560364, 0.15100570023059845, -0.07381229102611542, 0.2571246922016144, -0.32827356457710266, 0.042460739612579346, 0.06893110275268555, 0.09795380383729935, -0.24588701128959656, -0.12372492998838425, 0.1354771852493286, 0.007751036435365677, 0.12258781492710114, 0.030929915606975555, 0.009610049426555634, 0.07222308963537216, -0.09397642314434052, -0.03205757588148117, 0.3903195858001709, -0.1885407567024231, -0.0032373592257499695, 0.3276161253452301, 0.04336382448673248, 0.02905704826116562, 0.4676074981689453, 0.04042758792638779, 0.1984710544347763, -0.004253186285495758, 0.012601908296346664, -0.14846061170101166, -0.1003246009349823, 0.2925686836242676, -0.10070359706878662, 0.208690345287323, -0.1701100617647171, -0.047810912132263184, 0.08505912125110626, 0.05338509753346443, 0.22701339423656464, 0.27750033140182495, -0.0621606782078743, -0.16866476833820343, -0.42078784108161926, 0.0064994534477591515, -0.24386513233184814, 0.34611380100250244, 0.12866878509521484, 0.0691726803779602, -0.07498009502887726, -0.1569840908050537, -0.04249802231788635, -0.09653398394584656, 0.27212780714035034, -0.11138775199651718, -0.26861244440078735, -0.19814930856227875, -0.034833475947380066, 0.05403111129999161, 0.14630700647830963, -0.3157159686088562, 0.014278009533882141, -0.04803505912423134, 0.3288193345069885, -0.25059375166893005, -0.4201368987560272, 0.22620467841625214, 0.006144429091364145, 0.022776734083890915, 0.04388877749443054, -0.06234651803970337, -0.20050480961799622, -0.23707853257656097, 0.004415988922119141, 0.046602703630924225, -0.06441540271043777, 0.15493632853031158, -0.005381878465414047, 0.09527886658906937, -0.21830636262893677, 0.38516348600387573, 0.06136396899819374, 0.21517020463943481, -0.0373103953897953, -0.17813554406166077, 0.16673296689987183, 0.06825165450572968, 0.37805938720703125, -0.040504179894924164, -0.4289466142654419, 0.04408913850784302, 0.028045833110809326, -0.48616108298301697, 0.6652911901473999, 0.2382800579071045, -0.051521673798561096, 0.12173610925674438, -0.10014256834983826, 0.07751386612653732, -0.22764813899993896, 0.026648348197340965, -0.11746527254581451, 0.08959458023309708, -0.3025549054145813, -0.4479767978191376, 0.11193851381540298, 0.14118234813213348, -0.12806008756160736, 0.11293372511863708, 0.11781676113605499, -0.29799336194992065, 0.3864697813987732, 0.28576651215553284, 0.8768877983093262, -0.0017800405621528625, 0.1908533126115799, -0.06021639704704285, -0.5522875189781189, 0.3023543953895569, -0.34669309854507446, -0.05044497549533844, -0.26739346981048584, -0.16520141065120697, 0.008073588833212852, 0.024536002427339554, 0.2898576855659485, 0.0486178956925869, -0.29723992943763733, 0.10570497810840607, -0.07612613588571548, 0.03965386003255844, 0.04381948709487915, 0.43486469984054565, 0.11540334671735764, -0.38863298296928406, -0.2246868759393692, 0.25857970118522644, -0.28435516357421875, -0.4214140474796295, -0.0009982846677303314, -0.15711325407028198, 0.06477230787277222, -0.13629001379013062, 0.05083540081977844, -0.26654252409935, -0.11344702541828156, 0.12418632954359055, -0.03325871750712395, -0.15179303288459778, 0.025438521057367325, 0.06496629118919373, 0.5133603811264038, 0.32305288314819336, 0.11420967429876328, -0.054446231573820114, 0.07804296165704727, 0.4979194104671478, -0.20317737758159637, -0.006481857039034367, 0.21129150688648224, -0.18954050540924072, 0.1327446699142456, -0.1303114891052246, 0.040570080280303955, -0.1567406803369522, -0.052800752222537994, -0.11568741500377655, 0.08798815310001373, -0.15700902044773102, 0.08100831508636475, -0.014485150575637817, -0.2276710569858551, -0.09143360704183578, 0.27578601241111755, 0.12789835035800934, -0.05841713771224022, 0.33112525939941406, 0.29519686102867126, -0.14126630127429962, -0.2239813357591629, -0.19058579206466675, -0.12256710976362228, -0.14904050529003143, 0.08304961025714874, 0.008743874728679657, -0.5282691717147827, -0.4426709711551666, 0.24533063173294067, 0.13681843876838684, -0.041354455053806305, 0.2504982650279999, -0.042338158935308456, -0.2946300506591797, -0.06597784161567688, 0.41749992966651917, 0.2018391638994217, -0.048056699335575104, 0.03348786011338234, 0.0207291841506958, -0.484107106924057, 0.21336516737937927, -0.21990330517292023, 0.3061167597770691, 0.028187289834022522, 0.14757812023162842, -0.1309395283460617, -0.04848763346672058, -0.5514650344848633, -0.014723110944032669, 0.07993639260530472, 0.029032662510871887, -0.15475653111934662, -0.19899562001228333, 0.09968703985214233, -0.030152812600135803, 0.27720996737480164, 0.2709277272224426, -0.162763774394989, -0.33728817105293274, -0.1440689116716385, 0.07633310556411743, -0.19837895035743713, 0.03126141428947449, 0.15321289002895355, 0.22869287431240082, -0.06996870040893555, -0.020075339823961258, -0.014880544506013393, 0.13642939925193787, -0.006302855908870697, 0.42411893606185913, 0.09421657025814056, -0.21677592396736145, 0.12194685637950897, 0.024945825338363647, 0.14621973037719727, 0.19428959488868713, 0.10063475370407104, 0.19135576486587524, -0.28841882944107056, -0.24352335929870605, 0.44634881615638733, 0.31736528873443604, 0.14583492279052734, 0.1603001356124878, 0.0036113597452640533, -0.09364183247089386, -0.02451733686029911, 0.3722590208053589, 0.15783874690532684, 0.26075851917266846, -0.1609460711479187, -0.10529430210590363, 0.12253068387508392, 0.4104195833206177, -0.04528530687093735, 0.07039264589548111, 0.05318647250533104, -0.15898142755031586, 0.04516438767313957, 0.3025209605693817, 0.3525939881801605, 0.022015981376171112, 0.20583829283714294, 0.1290321946144104, 0.17448173463344574, -0.012840460985898972, -0.11890648305416107, 0.22771593928337097, 0.1451888382434845, -0.14194215834140778, 0.24375906586647034, 0.29148003458976746, -0.06004839390516281, 0.5283065438270569, -0.005088455975055695, 0.21207411587238312, 0.26400622725486755, 0.07231221348047256, -0.05872390419244766, -0.1700301319360733, 0.30561771988868713, 0.16684600710868835, 0.02472873032093048, 0.02848069742321968, 0.30703434348106384, 0.2158949077129364, 0.04275897145271301, -0.3175692558288574, 0.29513269662857056, 0.05382557585835457, -0.11550644785165787, -0.20048944652080536, -0.25004318356513977, 0.01995479315519333, -0.22840432822704315, -0.045051176100969315, -0.15919074416160583, 0.05952642858028412, 0.28786641359329224, 0.27134835720062256, 0.39964771270751953, -0.06061122566461563, 0.13230861723423004, -0.244642436504364, 0.41186246275901794, -0.283964067697525, 0.13199163973331451, 0.1503565013408661, 0.059190668165683746, 0.3682965040206909, -0.016833005473017693, 0.34725314378738403, 0.19251959025859833, -0.19519177079200745, -0.10940869152545929, -0.4035622775554657, -0.0448385551571846, -0.09169123321771622, 0.19266004860401154, 0.3673122823238373, 0.32430243492126465, 0.2689303457736969, 0.31610503792762756, -0.25213363766670227, 0.1052321344614029, 0.05555243417620659, -0.3921228051185608, -0.042546018958091736, -0.05065629631280899, 0.6449179649353027, -0.27333393692970276, 0.00877249427139759, -0.2236594557762146, -0.30840569734573364, -0.2158232033252716, 0.2503668963909149, -0.0687502920627594, -0.07487764954566956, -0.03793902322649956, 0.1769079864025116, 0.5599713921546936, 0.4471057951450348, 0.22789520025253296, 0.084810271859169, -0.09782523661851883, -0.3583950996398926, -0.2564658224582672, -0.1911742389202118, 0.13717728853225708, 0.2685962915420532, 0.12122011184692383, -0.012537072412669659, 0.23033174872398376, 0.03660769760608673, 0.09518715739250183, 0.011005159467458725, -0.24739842116832733, -0.15442068874835968, -0.31193432211875916, 0.28941646218299866, 0.2628743052482605, 0.1414256989955902, 0.022466354072093964, -0.12279759347438812, 0.24227569997310638, 0.006204006262123585, 0.2835977375507355, -0.22730529308319092, 0.06952941417694092, 0.16164767742156982, -0.0832974761724472, 0.13512691855430603, 0.0924420952796936, 0.23350027203559875, -0.24835053086280823, -0.3387182354927063, 0.1500358134508133, 0.08904776722192764, -0.27001461386680603, 0.19212624430656433, 0.12752461433410645, 0.2844805419445038, -0.10853268206119537, -0.2846516966819763, -0.21841639280319214, 0.22560615837574005, -0.11242633312940598, 0.2588980495929718, -0.27547088265419006, 0.18313392996788025, 0.17500659823417664, -0.2392033487558365, -0.024791939184069633, 0.255522221326828, -0.014953114092350006, 0.025005580857396126, -0.4105733633041382, -0.3365457057952881, 0.20086002349853516, -0.029111217707395554, -0.4095866084098816, -0.08232811093330383, 0.13760946691036224, 0.42776843905448914, 0.1499587744474411, -0.47393864393234253, 0.059134624898433685, 0.14806710183620453, 0.03616409748792648, -0.2803323268890381, 0.19692173600196838, -0.008871044963598251, -0.054093122482299805, -0.09650803357362747, 0.18166300654411316, 0.002737564966082573, -0.23701970279216766, -0.3313075304031372, -0.39582133293151855 ]
https://github.com/huggingface/datasets/issues/3257
Use f-strings for string formatting
Hi @Carlosbogo, would you be interested in replacing the `.format` and `%` syntax with f-strings in the modules in the `datasets` directory since @Mehdi2402 has opened a PR that does that for all the other directories?
f-strings offer better readability/performance than `str.format` and `%`, so we should use them in all places in our codebase unless there is good reason to keep the older syntax. > **NOTE FOR CONTRIBUTORS**: To avoid large PRs and possible merge conflicts, do 1-3 modules per PR. Also, feel free to ignore the files located under `datasets/*`.
36
Use f-strings for string formatting f-strings offer better readability/performance than `str.format` and `%`, so we should use them in all places in our codebase unless there is good reason to keep the older syntax. > **NOTE FOR CONTRIBUTORS**: To avoid large PRs and possible merge conflicts, do 1-3 modules per PR. Also, feel free to ignore the files located under `datasets/*`. Hi @Carlosbogo, would you be interested in replacing the `.format` and `%` syntax with f-strings in the modules in the `datasets` directory since @Mehdi2402 has opened a PR that does that for all the other directories?
[ -0.2773169279098511, -0.00625251978635788, -0.26387202739715576, -0.20125265419483185, 0.35260170698165894, -0.23385140299797058, -0.0026533566415309906, 0.338083952665329, -0.13981498777866364, 0.1589687168598175, -0.00928164180368185, 0.31414493918418884, -0.1093440055847168, 0.28441986441612244, -0.1453711837530136, 0.06455910205841064, 0.09625667333602905, 0.3454550802707672, -0.22864913940429688, 0.16217873990535736, -0.06475645303726196, 0.02164834551513195, 0.016489297151565552, 0.13442575931549072, -0.3462027609348297, 0.11202389746904373, 0.1308506429195404, 0.19239798188209534, -0.09332401305437088, -0.4705902934074402, -0.14092952013015747, 0.27270081639289856, 0.15891674160957336, 0.225507915019989, -0.0000964029532042332, 0.04310547560453415, 0.22302788496017456, 0.006499884650111198, -0.3922266960144043, 0.16542719304561615, -0.21787220239639282, -0.111805260181427, 0.15371328592300415, -0.11070069670677185, -0.01608894020318985, -0.16013745963573456, 0.02218944951891899, -0.5188575983047485, 0.05984701216220856, 0.19561272859573364, 0.3933539390563965, 0.13596205413341522, -0.03902905434370041, 0.03196534514427185, 0.26283347606658936, 0.4316641688346863, 0.003472408279776573, 0.1714203655719757, 0.3038399815559387, 0.25009068846702576, -0.007521629333496094, 0.3953908085823059, -0.15698093175888062, -0.08250407874584198, 0.4277825951576233, 0.071380615234375, -0.03431544452905655, -0.082300566136837, 0.11975055932998657, -0.10357309132814407, 0.43594229221343994, -0.3023335635662079, -0.26187393069267273, -0.10826170444488525, -0.3387669026851654, -0.3906792402267456, 0.125923290848732, 0.09854496270418167, 0.02737979218363762, 0.3594382703304291, -0.0776868611574173, -0.26957279443740845, -0.15766939520835876, -0.03894997388124466, 0.10481792688369751, 0.2621433436870575, -0.17811830341815948, -0.11849316209554672, -0.11070157587528229, -0.19680243730545044, -0.10039407014846802, -0.15621541440486908, -0.11927741765975952, -0.248400017619133, 0.2824900150299072, -0.07016945630311966, -0.2967848777770996, -0.017871282994747162, 0.17152667045593262, 0.07813844084739685, -0.1455414891242981, 0.3011860251426697, 0.02505939081311226, -0.07286449521780014, -0.09170578420162201, -0.03749950975179672, 0.4903726875782013, 0.14008356630802155, 0.6557160019874573, -0.2786906957626343, -0.07409291714429855, -0.08481590449810028, -0.01066593173891306, -0.13186028599739075, -0.1168137788772583, 0.08205074816942215, -0.15126879513263702, -0.28808581829071045, 0.06523283571004868, -0.06307318061590195, 0.2093474268913269, -0.2144213616847992, 0.03928342089056969, 0.28636160492897034, 0.22917966544628143, 0.3211299180984497, -0.06820867210626602, -0.082576222717762, 0.099607452750206, -0.21907921135425568, -0.13534891605377197, 0.1241702139377594, -0.358517587184906, -0.21259693801403046, 0.0490642748773098, -0.3000224232673645, -0.08860748261213303, 0.026701074093580246, 0.0519629642367363, 0.11817879974842072, 0.19380512833595276, -0.002818271517753601, 0.15276721119880676, 0.26644882559776306, -0.31396472454071045, 0.04434571415185928, -0.2262585610151291, 0.02007073163986206, -0.02691662311553955, 0.2498440444469452, -0.20546457171440125, -0.10357779264450073, -0.25374308228492737, 0.3349479138851166, -0.05981583148241043, -0.11217260360717773, -0.06245241314172745, 0.0766741931438446, 0.02920714020729065, -0.24346724152565002, 0.07390526682138443, 0.085538849234581, 0.1538299173116684, -0.27293863892555237, 0.034898415207862854, 0.22005262970924377, -0.3064560294151306, 0.06006036698818207, 0.31173357367515564, -0.2062148004770279, 0.3134835958480835, 0.26184433698654175, -0.038505591452121735, 0.06608220934867859, -0.0431491881608963, 0.016702711582183838, 0.5649345517158508, -0.2786109447479248, 0.1335185319185257, 0.5079832673072815, 0.10055071115493774, -0.4982824921607971, 0.18409398198127747, -0.1650189608335495, -0.002629452385008335, -0.10931207239627838, 0.09989003092050552, 0.15637381374835968, 0.10607187449932098, 0.27279895544052124, -0.3800601065158844, -0.2395651638507843, -0.014701172709465027, 0.20187291502952576, -0.018517669290304184, -0.18835768103599548, 0.16220970451831818, 0.03415307775139809, 0.26650702953338623, -0.3893023729324341, 0.0523175448179245, -0.007797118276357651, 0.26149237155914307, 0.2361307442188263, -0.200963094830513, -0.5001111626625061, -0.25506648421287537, -0.2584884762763977, -0.05688375234603882, -0.2633844316005707, 0.0005154386162757874, -0.13821738958358765, 0.12112031131982803, -0.2116449773311615, 0.11959831416606903, 0.16875669360160828, 0.264173299074173, 0.22717607021331787, 0.02096734195947647, 0.07685847580432892, -0.44215157628059387, 0.22644564509391785, 0.015563936904072762, 0.13436776399612427, 0.15109089016914368, 0.11452502012252808, -0.10767792910337448, -0.21519668400287628, -0.08883513510227203, 0.26267141103744507, 0.044928889721632004, -0.10228615254163742, -0.01542649231851101, 0.5806488990783691, 0.12569785118103027, -0.03018990159034729, 0.16269269585609436, 0.2532297372817993, 0.1305970400571823, 0.12877163290977478, 0.16981558501720428, -0.04487241432070732, -0.012976120226085186, 0.24022981524467468, -0.3975749909877777, 0.2945052981376648, 0.08739994466304779, -0.01909962296485901, 0.1848153918981552, -0.08611006289720535, -0.04632222652435303, 0.0485287569463253, -0.07933305203914642, -0.4739489257335663, 0.13228626549243927, 0.0805753767490387, 0.023335900157690048, 0.33248192071914673, -0.4395855665206909, -0.05240326374769211, 0.4432687759399414, -0.06898999214172363, 0.2728596031665802, 0.16604620218276978, -0.05296420305967331, -0.13046011328697205, 0.06761261075735092, -0.029305636882781982, 0.10374995321035385, 0.3986208736896515, -0.035622771829366684, -0.10423506051301956, 0.17330634593963623, -0.18190328776836395, 0.4123673439025879, 0.20725448429584503, -0.19299235939979553, 0.08444647490978241, 0.0582435317337513, 0.15018145740032196, -0.14835591614246368, -0.3337898850440979, -0.3622508645057678, -0.06411635130643845, -0.32061704993247986, -0.019705625250935555, -0.36205217242240906, -0.13676759600639343, -0.14121697843074799, -0.0819028690457344, -0.059347476810216904, -0.21009857952594757, 0.04448778182268143, -0.32241877913475037, -0.32960259914398193, 0.23543547093868256, -0.13527467846870422, 0.2653684914112091, -0.2315729260444641, 0.09195556491613388, -0.3378698527812958, 0.06299667805433273, -0.17516541481018066, 0.19653235375881195, 0.4411492943763733, 0.18798941373825073, 0.33590638637542725, -0.12028805911540985, 0.11200571060180664, -0.24917471408843994, -0.35455521941185, 0.21509943902492523, -0.04583775997161865, -0.02198888547718525, 0.42101794481277466, -0.05986766517162323, 0.12416133284568787, -0.24485714733600616, 0.14312824606895447, -0.15056079626083374, -0.01864730753004551, 0.0030733589082956314, -0.07775088399648666, -0.014284653589129448, -0.45949241518974304, -0.15225854516029358, -0.2369547337293625, -0.3785194158554077, 0.09219121187925339, -0.06015007942914963, 0.10505945980548859, 0.17523233592510223, -0.21975070238113403, -0.01803172379732132, -0.24312642216682434, 0.12356595695018768, -0.04688195139169693, -0.3524090051651001, 0.29018688201904297, -0.23940126597881317, -0.11913995444774628, -0.07139622420072556, 0.1501867026090622, -0.4855620265007019, 0.10783516615629196, 0.06819683313369751, -0.2905307710170746, -0.2971719205379486, -0.06009722128510475, 0.05179350823163986, 0.23844866454601288, -0.1359245479106903, 0.25131887197494507, -0.3263927698135376, 0.0726667046546936, 0.016783978790044785, 0.039526745676994324, -0.14222106337547302, -0.12811678647994995, 0.13918112218379974, -0.03369050472974777, 0.04300140216946602, 0.049973487854003906, 0.09267804026603699, -0.08521585166454315, -0.08536437153816223, -0.039473652839660645, 0.4183880388736725, -0.16707968711853027, -0.0077998824417591095, 0.3025261163711548, 0.0544692724943161, 0.026188924908638, 0.3566533327102661, -0.007961416617035866, 0.2686130106449127, -0.006973393261432648, -0.01819620281457901, -0.073758065700531, -0.1445908546447754, 0.32974645495414734, -0.14149120450019836, 0.3233841061592102, -0.15170982480049133, 0.05650879442691803, 0.016397785395383835, 0.1031431034207344, 0.19555096328258514, 0.298096626996994, -0.035378314554691315, -0.10841672867536545, -0.4205397069454193, -0.050801414996385574, -0.1765192449092865, 0.416373074054718, 0.1428687572479248, 0.18510554730892181, -0.09631089121103287, -0.1172788217663765, 0.007598452270030975, -0.09353554993867874, 0.23095935583114624, -0.28087368607521057, -0.30682623386383057, -0.1836954653263092, 0.0701650008559227, 0.017735885456204414, 0.03498375788331032, -0.29373690485954285, 0.08273739367723465, -0.06184918060898781, 0.25720053911209106, -0.23608732223510742, -0.48823708295822144, 0.19648349285125732, 0.030869293957948685, -0.05396502837538719, 0.03199107199907303, -0.1508381962776184, -0.17679926753044128, -0.20822207629680634, -0.03211484104394913, 0.012449903413653374, -0.10464339703321457, 0.16996361315250397, 0.07324376702308655, 0.12674900889396667, -0.12175974994897842, 0.3400370478630066, 0.043007705360651016, 0.2580915689468384, -0.028309307992458344, -0.2384079098701477, 0.2507737874984741, 0.11800942569971085, 0.45595410466194153, -0.0036933794617652893, -0.4924720823764801, 0.14971855282783508, 0.04092731699347496, -0.5246248245239258, 0.6474840044975281, 0.35087668895721436, -0.06220988929271698, 0.11845266819000244, -0.10548515617847443, 0.14139270782470703, -0.17821666598320007, -0.01546085812151432, -0.043360233306884766, 0.05098486691713333, -0.3237247169017792, -0.5745084881782532, 0.06763271242380142, 0.13980336487293243, -0.06280305236577988, -0.006953217089176178, 0.11334040760993958, -0.2688907980918884, 0.41056710481643677, 0.25400373339653015, 0.8523503541946411, 0.02921050786972046, 0.1980983465909958, -0.12209596484899521, -0.4593201279640198, 0.36594855785369873, -0.3245646357536316, -0.11854568123817444, -0.2989279627799988, -0.07654856890439987, -0.0042326729744672775, -0.046165235340595245, 0.3074059784412384, -0.0007511302828788757, -0.24455274641513824, 0.17841175198554993, -0.17047064006328583, 0.050598833709955215, 0.0977872982621193, 0.3971288502216339, 0.05296818166971207, -0.2970474362373352, -0.29473769664764404, 0.23821568489074707, -0.2806643843650818, -0.3752514123916626, -0.03890323266386986, -0.17235766351222992, -0.010151568800210953, -0.18277372419834137, -0.02482321858406067, -0.3181139826774597, -0.08783652633428574, 0.11018561571836472, 0.0005060695111751556, -0.14209836721420288, 0.1036679744720459, 0.133192777633667, 0.5213006734848022, 0.32688966393470764, 0.1475372314453125, -0.04264695569872856, 0.0019158720970153809, 0.5297321081161499, -0.18715351819992065, 0.020851336419582367, 0.13844214379787445, -0.15077698230743408, 0.09048935025930405, -0.08735481649637222, -0.052993495017290115, -0.13627934455871582, -0.15002356469631195, 0.016562901437282562, 0.11196712404489517, -0.2617969512939453, 0.031654082238674164, 0.004811011254787445, -0.16393470764160156, -0.019456518813967705, 0.2620088756084442, 0.09304670989513397, 0.04165181517601013, 0.36907699704170227, 0.22957319021224976, -0.1471521258354187, -0.19887761771678925, -0.16779908537864685, -0.18625196814537048, -0.1793811172246933, 0.026548590511083603, -0.02517128922045231, -0.49549543857574463, -0.39135316014289856, 0.34924259781837463, 0.051493942737579346, -0.06980698555707932, 0.2359689623117447, 0.03320010378956795, -0.21621382236480713, -0.056531455367803574, 0.38468900322914124, 0.14817428588867188, -0.07563643902540207, -0.11326688528060913, 0.05525127053260803, -0.4046129882335663, 0.1588870733976364, -0.17907960712909698, 0.24949809908866882, -0.0034326277673244476, 0.25226807594299316, -0.18829788267612457, -0.21081224083900452, -0.5396789312362671, 0.04123494774103165, 0.1074860617518425, 0.08981776237487793, -0.13024941086769104, -0.16855603456497192, 0.08470924198627472, -0.06952767819166183, 0.2572598159313202, 0.21107381582260132, -0.17473262548446655, -0.3372732698917389, -0.1363426297903061, 0.0771205723285675, -0.21571913361549377, 0.019527580589056015, 0.15604650974273682, 0.21654056012630463, 0.006072862073779106, -0.0639481395483017, 0.06258291006088257, 0.12530916929244995, 0.0010958611965179443, 0.4410027861595154, 0.09857542812824249, -0.21692174673080444, 0.07649575918912888, 0.05234704539179802, 0.06149689108133316, 0.14033986628055573, 0.10796037316322327, 0.2189079076051712, -0.3559093475341797, -0.21668170392513275, 0.3945860266685486, 0.2529784142971039, 0.09731759130954742, 0.3142726421356201, -0.04214736819267273, -0.12726937234401703, 0.007177285850048065, 0.2810887098312378, 0.16625456511974335, 0.4122023582458496, -0.18566299974918365, -0.0993928387761116, 0.06738480925559998, 0.40606755018234253, 0.0767621174454689, 0.03093387931585312, 0.035468194633722305, -0.11349842697381973, 0.079816073179245, 0.35269516706466675, 0.349089115858078, 0.008001342415809631, 0.14265522360801697, 0.128953218460083, 0.24877099692821503, -0.01716400310397148, -0.16557137668132782, 0.2775214612483978, 0.21057556569576263, -0.03025425598025322, 0.27730482816696167, 0.21362850069999695, -0.06502681225538254, 0.5815942287445068, 0.12567642331123352, 0.26349249482154846, 0.3493135869503021, -0.03836044296622276, -0.06787090748548508, -0.2430010586977005, 0.2708839774131775, 0.14134491980075836, 0.11509769409894943, 0.022071395069360733, 0.3209574222564697, 0.18567678332328796, -0.061641108244657516, -0.3498682975769043, 0.39008766412734985, -0.011654812842607498, -0.12558740377426147, -0.19855563342571259, -0.1835215985774994, 0.019335970282554626, -0.2084122598171234, -0.06466013193130493, -0.22592276334762573, 0.07813878357410431, 0.30330395698547363, 0.24140751361846924, 0.31923916935920715, -0.12048470973968506, 0.06846973299980164, -0.23754507303237915, 0.3540511727333069, -0.29750627279281616, 0.12001559138298035, 0.16419091820716858, 0.061476703733205795, 0.34080904722213745, -0.05032230168581009, 0.45567771792411804, 0.26787444949150085, -0.11056376993656158, -0.12641970813274384, -0.394978404045105, 0.004177117720246315, -0.08781362324953079, 0.16933828592300415, 0.22856628894805908, 0.27081167697906494, 0.27873918414115906, 0.36642956733703613, -0.24112708866596222, 0.03247921168804169, -0.03248852118849754, -0.29907798767089844, -0.04565439745783806, 0.041754100471735, 0.5782220363616943, -0.2087976634502411, 0.028642095625400543, -0.23922964930534363, -0.3867054879665375, -0.13224999606609344, 0.25000494718551636, -0.02357630990445614, -0.06219830736517906, -0.032091982662677765, 0.17067939043045044, 0.530339777469635, 0.4683903753757477, 0.2221418023109436, 0.1677534580230713, -0.1087687760591507, -0.2799251079559326, -0.309822678565979, -0.2228897511959076, 0.07968065142631531, 0.21077963709831238, 0.06973143666982651, -0.0312892347574234, 0.2318204641342163, 0.00004700198769569397, 0.16196514666080475, 0.14921604096889496, -0.2778662145137787, -0.09965947270393372, -0.29204314947128296, 0.20756061375141144, 0.21914008259773254, 0.1128506287932396, 0.0029035285115242004, -0.15454350411891937, 0.23259438574314117, 0.006917349062860012, 0.26430627703666687, -0.2637900710105896, 0.030737005174160004, 0.2244684398174286, -0.08476115763187408, 0.23902948200702667, 0.06950988620519638, 0.2878043055534363, -0.13429169356822968, -0.38322070240974426, 0.040728822350502014, 0.13609737157821655, -0.2138046771287918, 0.14500218629837036, 0.07126913964748383, 0.2977675497531891, -0.12641876935958862, -0.27801764011383057, -0.3151758909225464, 0.24945223331451416, -0.07803367078304291, 0.35059621930122375, -0.2580041289329529, 0.20283788442611694, 0.21667304635047913, -0.23713412880897522, -0.13026604056358337, 0.23004308342933655, 0.015210527926683426, 0.006988411769270897, -0.5228836536407471, -0.25867557525634766, 0.23890236020088196, -0.05688375607132912, -0.44148504734039307, -0.06501881778240204, 0.12925399839878082, 0.4313698709011078, 0.07804186642169952, -0.44213658571243286, 0.013729944825172424, 0.2145690619945526, -0.01617114245891571, -0.4667532444000244, 0.1544850766658783, -0.02771095559000969, -0.05092122405767441, -0.09822332859039307, 0.18455645442008972, -0.09733181446790695, -0.3066052794456482, -0.3300441801548004, -0.3174588084220886 ]
https://github.com/huggingface/datasets/issues/3253
`GeneratorBasedBuilder` does not support `None` values
Hi, thanks for reporting and providing a minimal reproducible example. This line of the PR I've linked in our discussion on the Forum will add support for `None` values: https://github.com/huggingface/datasets/blob/a53de01842aac65c66a49b2439e18fa93ff73ceb/src/datasets/features/features.py#L835 I expect that PR to be merged soon.
## Describe the bug `GeneratorBasedBuilder` does not support `None` values. ## Steps to reproduce the bug See [this repository](https://github.com/pavel-lexyr/huggingface-datasets-bug-reproduction) for minimal reproduction. ## Expected results Dataset is initialized with a `None` value in the `value` column. ## Actual results ``` Traceback (most recent call last): File "main.py", line 3, in <module> datasets.load_dataset("./bad-data") File ".../datasets/load.py", line 1632, in load_dataset builder_instance.download_and_prepare( File ".../datasets/builder.py", line 607, in download_and_prepare self._download_and_prepare( File ".../datasets/builder.py", line 697, in _download_and_prepare self._prepare_split(split_generator, **prepare_split_kwargs) File ".../datasets/builder.py", line 1103, in _prepare_split example = self.info.features.encode_example(record) File ".../datasets/features/features.py", line 1033, in encode_example return encode_nested_example(self, example) File ".../datasets/features/features.py", line 808, in encode_nested_example return { File ".../datasets/features/features.py", line 809, in <dictcomp> k: encode_nested_example(sub_schema, sub_obj) for k, (sub_schema, sub_obj) in utils.zip_dict(schema, obj) File ".../datasets/features/features.py", line 855, in encode_nested_example return schema.encode_example(obj) File ".../datasets/features/features.py", line 299, in encode_example return float(value) TypeError: float() argument must be a string or a number, not 'NoneType' ``` ## Environment info <!-- You can run the command `datasets-cli env` and copy-and-paste its output below. --> - `datasets` version: 1.15.1 - Platform: Linux-5.4.0-81-generic-x86_64-with-glibc2.29 - Python version: 3.8.10 - PyArrow version: 6.0.0
38
`GeneratorBasedBuilder` does not support `None` values ## Describe the bug `GeneratorBasedBuilder` does not support `None` values. ## Steps to reproduce the bug See [this repository](https://github.com/pavel-lexyr/huggingface-datasets-bug-reproduction) for minimal reproduction. ## Expected results Dataset is initialized with a `None` value in the `value` column. ## Actual results ``` Traceback (most recent call last): File "main.py", line 3, in <module> datasets.load_dataset("./bad-data") File ".../datasets/load.py", line 1632, in load_dataset builder_instance.download_and_prepare( File ".../datasets/builder.py", line 607, in download_and_prepare self._download_and_prepare( File ".../datasets/builder.py", line 697, in _download_and_prepare self._prepare_split(split_generator, **prepare_split_kwargs) File ".../datasets/builder.py", line 1103, in _prepare_split example = self.info.features.encode_example(record) File ".../datasets/features/features.py", line 1033, in encode_example return encode_nested_example(self, example) File ".../datasets/features/features.py", line 808, in encode_nested_example return { File ".../datasets/features/features.py", line 809, in <dictcomp> k: encode_nested_example(sub_schema, sub_obj) for k, (sub_schema, sub_obj) in utils.zip_dict(schema, obj) File ".../datasets/features/features.py", line 855, in encode_nested_example return schema.encode_example(obj) File ".../datasets/features/features.py", line 299, in encode_example return float(value) TypeError: float() argument must be a string or a number, not 'NoneType' ``` ## Environment info <!-- You can run the command `datasets-cli env` and copy-and-paste its output below. --> - `datasets` version: 1.15.1 - Platform: Linux-5.4.0-81-generic-x86_64-with-glibc2.29 - Python version: 3.8.10 - PyArrow version: 6.0.0 Hi, thanks for reporting and providing a minimal reproducible example. This line of the PR I've linked in our discussion on the Forum will add support for `None` values: https://github.com/huggingface/datasets/blob/a53de01842aac65c66a49b2439e18fa93ff73ceb/src/datasets/features/features.py#L835 I expect that PR to be merged soon.
[ -0.37554749846458435, -0.05566031485795975, 0.017514530569314957, 0.3620697259902954, 0.2084512859582901, -0.04672858864068985, 0.28786444664001465, 0.31968584656715393, -0.055129826068878174, 0.41145211458206177, -0.09194928407669067, 0.20938700437545776, -0.030359793454408646, 0.15895110368728638, -0.08812347054481506, -0.10586604475975037, -0.009390532970428467, 0.4736216366291046, -0.15996530652046204, -0.14818811416625977, -0.2816654145717621, 0.38527584075927734, -0.15259291231632233, 0.01629044860601425, -0.36569085717201233, -0.00742766447365284, -0.020998280495405197, 0.27038493752479553, -0.16038469970226288, -0.4201867878437042, 0.17744667828083038, 0.16561934351921082, -0.3027566373348236, 0.30902960896492004, -0.00011197993444511667, 0.15570417046546936, 0.40875768661499023, 0.04560093581676483, -0.353646457195282, -0.24575386941432953, 0.07218892127275467, -0.175773024559021, -0.2164088487625122, -0.20130816102027893, -0.3425667881965637, -0.2993762791156769, -0.20327883958816528, -0.06393478810787201, 0.35088562965393066, 0.03547391667962074, 0.2294410914182663, 0.36463427543640137, 0.08704178035259247, -0.15916702151298523, 0.3845460116863251, 0.32676225900650024, -0.19772686064243317, -0.03965025022625923, -0.08243606984615326, 0.010616162791848183, 0.07369449734687805, 0.35340720415115356, -0.2314937710762024, -0.10127389430999756, 0.3139733374118805, 0.21914832293987274, 0.13956314325332642, -0.28535977005958557, 0.3522200286388397, 0.30000609159469604, 0.04222346842288971, -0.10637068003416061, -0.4223478138446808, -0.29275280237197876, 0.018792979419231415, -0.43100640177726746, 0.16015872359275818, 0.06399931758642197, -0.3690938949584961, 0.1437055468559265, -0.16865691542625427, -0.11832690984010696, -0.09708654880523682, -0.09581804275512695, -0.22807791829109192, 0.12795907258987427, -0.15917398035526276, -0.03427818417549133, 0.24923667311668396, 0.052424512803554535, -0.14444898068904877, -0.2468263804912567, -0.20797520875930786, 0.11331046372652054, -0.18607273697853088, -0.16474750638008118, 0.23462599515914917, 0.24746009707450867, 0.3685053884983063, 0.027349170297384262, -0.06174223870038986, -0.09319469332695007, -0.016858654096722603, 0.1942133903503418, 0.04641643539071083, -0.10527773201465607, 0.31987255811691284, -0.12732148170471191, 0.33733630180358887, 0.284159779548645, 0.24520021677017212, -0.01628296449780464, 0.11214517056941986, -0.14768864214420319, 0.04715055599808693, 0.09603418409824371, 0.43499886989593506, -0.05426289141178131, -0.22832687199115753, 0.10499455034732819, 0.14292290806770325, 0.14308753609657288, 0.09552493691444397, 0.42434680461883545, -0.056337323039770126, -0.11073992401361465, -0.02710794284939766, 0.19918091595172882, -0.11708910763263702, -0.5678464770317078, -0.408466100692749, -0.12030094861984253, -0.041541822254657745, -0.071308933198452, 0.15084615349769592, -0.44246795773506165, 0.3402926027774811, 0.3902484178543091, -0.046872787177562714, 0.07525274902582169, 0.05556413531303406, -0.2253485769033432, 0.1543741375207901, 0.3932979106903076, -0.12480826675891876, 0.09061304479837418, 0.17145034670829773, -0.24684807658195496, 0.0950004830956459, 0.29420092701911926, -0.0158192440867424, -0.2071360945701599, -0.1477658748626709, 0.198685884475708, -0.22232842445373535, 0.39903566241264343, -0.29863518476486206, 0.27516263723373413, 0.07057234644889832, -0.09315669536590576, -0.11806603521108627, 0.05056016892194748, -0.3167054355144501, -0.26229092478752136, 0.629316508769989, 0.7424446940422058, -0.2216493934392929, -0.22769857943058014, -0.0847896859049797, -0.2480287253856659, 0.13081654906272888, -0.077338308095932, 0.00040186778642237186, 0.08014758676290512, -0.288394957780838, 0.08049125969409943, 0.25009503960609436, 0.05891002342104912, -0.3071286380290985, 0.28370431065559387, -0.10255222022533417, 0.04658104479312897, 0.19056609272956848, -0.10800164192914963, -0.09244278818368912, -0.0004114184412173927, 0.08718487620353699, 0.09753447026014328, -0.02933104895055294, 0.10383101552724838, -0.3773464262485504, -0.2787608802318573, 0.08722428977489471, 0.026291508227586746, 0.05240350216627121, 0.09650930762290955, -0.13436472415924072, -0.10277187079191208, 0.18114563822746277, -0.23044326901435852, 0.06016397476196289, 0.20594796538352966, 0.1822025179862976, -0.11626417934894562, 0.05751816928386688, -0.1648099422454834, -0.6513999700546265, 0.3667994439601898, -0.40752309560775757, 0.047634247690439224, -0.20094795525074005, -0.2698301672935486, -0.09748121351003647, 0.10235849022865295, -0.22580410540103912, -0.29629626870155334, 0.16967836022377014, 0.08790476620197296, 0.037481535226106644, -0.09751957654953003, -0.32387545704841614, 0.056214265525341034, 0.11038658022880554, 0.26625022292137146, -0.47666457295417786, 0.31196728348731995, -0.0222588200122118, -0.06365702301263809, -0.07406626641750336, 0.4305322766304016, 0.23778840899467468, -0.01954040117561817, 0.14817437529563904, 0.38206738233566284, -0.010470446199178696, 0.08233519643545151, -0.30493125319480896, -0.3026285171508789, 0.19023823738098145, 0.09200584888458252, 0.14440342783927917, 0.0003467090427875519, 0.15747450292110443, 0.039560750126838684, 0.18961304426193237, 0.3644081950187683, -0.024438437074422836, 0.14362700283527374, 0.004916619509458542, -0.10790179669857025, 0.07715881615877151, -0.024709803983569145, 0.03196707367897034, -0.36173325777053833, 0.08088348805904388, 0.21782450377941132, 0.28258952498435974, 0.21077211201190948, -0.2946118116378784, 0.19651980698108673, 0.2486255168914795, -0.146468847990036, 0.07224816828966141, -0.06557667255401611, -0.2734435200691223, -0.1348511129617691, 0.11622932553291321, 0.19534729421138763, 0.3297395706176758, 0.21992306411266327, -0.05647961422801018, 0.11541721969842911, 0.058795709162950516, -0.10676863044500351, 0.31835681200027466, -0.09837692975997925, 0.0008357060141861439, 0.43701064586639404, 0.04072871059179306, -0.09544960409402847, -0.436879426240921, 0.006737280637025833, 0.013979112729430199, 0.2513408958911896, -0.2729535698890686, -0.03291528299450874, -0.1499965339899063, 0.027141116559505463, 0.09861292690038681, -0.015970267355442047, -0.4622296094894409, -0.2922782897949219, 0.09873396158218384, 0.17642925679683685, -0.2557472586631775, 0.158558651804924, 0.0666983425617218, 0.1675744503736496, -0.0395483635365963, 0.11313539743423462, -0.4298529624938965, 0.013198694214224815, -0.2794486880302429, 0.046592529863119125, -0.007064002566039562, 0.02126380428671837, 0.17548789083957672, -0.17278574407100677, -0.3081015944480896, -0.16178853809833527, -0.14776912331581116, 0.2050217241048813, -0.24308066070079803, 0.37187057733535767, 0.5029807686805725, 0.19063326716423035, 0.14930224418640137, -0.07951865345239639, 0.36902540922164917, -0.22310307621955872, -0.28485387563705444, 0.18574471771717072, 0.054542895406484604, 0.20754526555538177, -0.4394904673099518, -0.09510061889886856, -0.004194032400846481, -0.33384987711906433, 0.1456010341644287, 0.10172086954116821, 0.27503329515457153, 0.40471094846725464, 0.20437990128993988, 0.12450084090232849, -0.22443434596061707, 0.08045095950365067, -0.14071132242679596, -0.3035985231399536, 0.3421366214752197, -0.1803029179573059, -0.22389675676822662, 0.029307108372449875, -0.30168771743774414, 0.22443220019340515, -0.11957228183746338, -0.1867700219154358, -0.0532182902097702, -0.06499604135751724, 0.2919776439666748, -0.05167554318904877, 0.2561924457550049, 0.05210145190358162, 0.34332236647605896, -0.14224572479724884, -0.08620308339595795, 0.019436083734035492, 0.18267595767974854, -0.3563956916332245, -0.009668208658695221, 0.19344201683998108, 0.30185753107070923, -0.1547960340976715, 0.46213197708129883, 0.32354187965393066, 0.1011500358581543, 0.29833123087882996, -0.13170428574085236, 0.4643149673938751, -0.2260095179080963, -0.37107613682746887, -0.13708236813545227, 0.4127303659915924, -0.09467153251171112, 0.16860970854759216, -0.052327752113342285, 0.32916679978370667, -0.14268936216831207, -0.23255306482315063, -0.080259308218956, -0.33058133721351624, -0.052164629101753235, -0.062307342886924744, 0.06312622129917145, -0.17070628702640533, 0.2170429527759552, -0.21574586629867554, 0.10449597984552383, 0.04930688068270683, -0.1174134612083435, 0.2543881833553314, -0.1544589251279831, -0.060244277119636536, 0.15738321840763092, -0.7502718567848206, 0.2768676280975342, -0.09914137423038483, -0.29372212290763855, 0.010347593575716019, -0.05788886547088623, 0.022336333990097046, -0.027819324284791946, 0.7188824415206909, -0.13862544298171997, 0.2775687277317047, 0.10541367530822754, -0.20679831504821777, -0.09802000224590302, -0.08655239641666412, -0.13543041050434113, 0.06435650587081909, 0.03825932368636131, 0.39957693219184875, -0.5299597978591919, -0.3162817358970642, 0.41922712326049805, 0.09631212800741196, -0.007408812642097473, 0.006618852727115154, -0.37287968397140503, -0.3196874260902405, -0.07058136910200119, -0.17956224083900452, -0.057133354246616364, 0.4005845785140991, -0.21321453154087067, -0.1375768482685089, -0.21454831957817078, 0.03358636051416397, 0.04444742202758789, 0.21334706246852875, 0.5387598276138306, -0.26979073882102966, 0.025935519486665726, 0.2882085144519806, -0.088355153799057, 0.17002087831497192, 0.5357180833816528, 0.009001171216368675, -0.2898904085159302, -0.03042485937476158, -0.15788614749908447, 0.12977910041809082, 0.3173113763332367, -0.36514386534690857, 0.11653877794742584, 0.06126094609498978, 0.4283697009086609, -0.09189669042825699, -0.1744351089000702, 0.5550497770309448, -0.12895841896533966, -0.11970993876457214, -0.3594287931919098, 0.46114593744277954, -0.01695328764617443, 0.07273750007152557, 0.03946001082658768, 0.42411184310913086, -0.12975966930389404, 0.4143434762954712, 0.036966029554605484, 0.7066830396652222, 0.39604806900024414, 0.08543720096349716, 0.4826757311820984, 0.12679068744182587, 0.6904569268226624, -0.09199541807174683, 0.1924569308757782, -0.5881826281547546, -0.3698313236236572, -0.06145505607128143, 0.06028519198298454, 0.25883761048316956, 0.23001141846179962, -0.07014080137014389, 0.2161949872970581, -0.12392306327819824, 0.266021728515625, -0.09060116112232208, -0.18748626112937927, -0.24846690893173218, -0.03242367506027222, -0.29246437549591064, 0.06673813611268997, -0.012796059250831604, 0.18010281026363373, 0.0672304555773735, -0.19017769396305084, -0.03757848963141441, -0.28213775157928467, -0.13003697991371155, 0.10276905447244644, -0.32695862650871277, -0.12357348203659058, 0.4235096275806427, -0.1838996857404709, -0.01955578289926052, 0.3333489000797272, 0.34414488077163696, 0.3253098428249359, -0.15715135633945465, -0.05485145375132561, -0.10465503484010696, 0.26155292987823486, -0.1564866453409195, 0.06920800358057022, 0.2895711660385132, -0.01720997504889965, -0.32638850808143616, 0.05727693438529968, -0.19015415012836456, 0.2113092690706253, 0.26615583896636963, -0.1867794543504715, -0.22665630280971527, -0.20160776376724243, -0.0912596732378006, -0.15402312576770782, 0.3836880326271057, -0.24393151700496674, 0.15023863315582275, 0.19441720843315125, -0.4217923879623413, -0.2908531427383423, -0.1744990348815918, -0.22324681282043457, -0.07741379737854004, 0.4684913456439972, 0.07149630784988403, 0.17320634424686432, 0.5340842008590698, 0.010088834911584854, -0.07873255759477615, -0.2098316252231598, -0.03130060061812401, 0.5287864804267883, -0.7309106588363647, 0.369990736246109, 0.4297933876514435, -0.08610941469669342, -0.007585421204566956, 0.4857405126094818, -0.1285226047039032, 0.15746845304965973, -0.12457054853439331, -0.0617443323135376, -0.0899122878909111, 0.10940394550561905, -0.11119501292705536, 0.2934347093105316, 0.44885942339897156, -0.1387885957956314, 0.017725707963109016, 0.06071566045284271, -0.3639402389526367, -0.14125478267669678, -0.20513267815113068, -0.041462987661361694, -0.018813587725162506, -0.1550064980983734, 0.1555328667163849, 0.03795181214809418, 0.2481083869934082, -0.017702974379062653, -0.32959550619125366, -0.23933666944503784, -0.22619470953941345, 0.13447155058383942, -0.059089116752147675, -0.06962993741035461, 0.18548299372196198, 0.06529181450605392, -0.25094595551490784, -0.14360012114048004, 0.5973537564277649, -0.03819737210869789, 0.06171232461929321, 0.2687290906906128, 0.16135257482528687, 0.3694498836994171, -0.28533196449279785, -0.003151215612888336, -0.0017667636275291443, -0.039481401443481445, 0.028676968067884445, 0.09915859252214432, -0.28630900382995605, -0.1422019749879837, 0.12593454122543335, 0.19336730241775513, -0.293266236782074, -0.02175261825323105, 0.5164861083030701, -0.30413395166397095, -0.1888163983821869, 0.1525486558675766, 0.332096666097641, 0.09311796724796295, 0.009076766669750214, -0.060278572142124176, -0.11114249378442764, 0.23611323535442352, -0.4211196303367615, -0.2864966094493866, 0.11984162032604218, 0.013107569888234138, 0.3367478847503662, 0.28314587473869324, 0.05281518027186394, -0.03656197339296341, 0.054934412240982056, -0.040510520339012146, 0.20948906242847443, -0.2819782495498657, 0.22380170226097107, 0.7196066975593567, -0.03421607241034508, 0.21552705764770508, 0.31357645988464355, 0.18601970374584198, 0.1779782474040985, 0.35563838481903076, -0.09749151021242142, 0.1766984611749649, -0.29722627997398376, -0.1959242820739746, -0.03807666897773743, -0.6658617854118347, 0.21520113945007324, 0.2066679447889328, 0.002164699137210846, -0.06330540031194687, -0.14095167815685272, 0.24327704310417175, -0.2602161467075348, -0.07972212135791779, -0.2487318515777588, 0.4084252119064331, -0.2606950104236603, -0.19663332402706146, -0.29392915964126587, -0.21152612566947937, -0.38233208656311035, -0.0803699865937233, -0.09962707757949829, -0.20006002485752106, 0.1699242889881134, -0.00403875857591629, -0.06900879740715027, -0.18773850798606873, 0.21011078357696533, 0.14346712827682495, 0.04810372740030289, -0.06824477761983871, 0.3703877925872803, 0.33765995502471924, 0.07782649993896484, 0.011465264484286308, 0.5842632055282593, 0.4919276237487793, 0.18890108168125153, 0.1499481201171875, -0.05291018262505531, -0.0539153553545475, -0.21170175075531006, -0.20604413747787476, 0.06764121353626251, -0.2576850950717926, 0.25737494230270386, 0.29440900683403015, 0.1593291014432907, -0.1884414106607437, -0.2261493057012558, 0.10403898358345032, 0.248086079955101, -0.20637358725070953, 0.5950447916984558, -0.06131022423505783, -0.18665511906147003, -0.1887064129114151, -0.15325984358787537, -0.4571033716201782, -0.30583617091178894, 0.18704074621200562, 0.1295013427734375, 0.07916963845491409, -0.262666791677475, 0.10859334468841553, -0.06965631246566772, 0.2943906784057617, 0.2400183230638504, -0.011816225945949554, -0.4260421395301819, 0.03620707988739014, -0.48123449087142944, 0.0857626348733902, 0.08622954785823822, 0.11897137761116028, 0.10890379548072815, 0.06027769297361374, -0.04958679527044296, -0.07046763598918915, 0.03108552098274231, 0.11332279443740845, 0.2190476357936859, 0.1508105993270874, -0.12695367634296417, -0.056864071637392044, -0.07221934199333191, -0.2527860403060913, -0.1659357100725174, -0.29884275794029236, 0.15769632160663605, -0.05121127888560295, 0.039747729897499084, 0.1304900050163269, 0.075569286942482, 0.02261730283498764, -0.2187202274799347, 0.0671486034989357, 0.1750953495502472, -0.12508584558963776, -0.057263217866420746, -0.21776147186756134, -0.15103167295455933, 0.19983935356140137, -0.2858734428882599, 0.08867309987545013, 0.20821842551231384, 0.4128178060054779, 0.1582145243883133, -0.25262752175331116, -0.3065582811832428, 0.22253188490867615, 0.250704824924469, 0.302103191614151, -0.35864171385765076, 0.4038516581058502, -0.21004539728164673, -0.03692645579576492, 0.2311050444841385, -0.14191877841949463, 0.007174089550971985, 0.11779074370861053, -0.5138913989067078, -0.4277822971343994, 0.39719951152801514, -0.25447893142700195, -0.138082817196846, -0.25344040989875793, 0.4060928523540497, 0.4022115468978882, -0.36015740036964417, -0.40257856249809265, 0.09369083493947983, 0.24490484595298767, -0.21599248051643372, -0.18233616650104523, 0.21669155359268188, -0.09373022615909576, 0.11211727559566498, -0.12959253787994385, 0.34494879841804504, 0.15516585111618042, -0.11882634460926056, 0.11421333253383636, -0.25791966915130615 ]
https://github.com/huggingface/datasets/issues/3247
Loading big json dataset raises pyarrow.lib.ArrowNotImplementedError
Hi, this issue is similar to https://github.com/huggingface/datasets/issues/3093, so you can either use the solution provided there or try to load the data in one chunk (you can control the chunk size by specifying the `chunksize` parameter (`int`) in `load_dataset`). @lhoestq Is this worth opening an issue on Jira? Basically, PyArrow doesn't allow casts that change the order of the struct fields because they treat `pa.struct` as an ordered sequence. Reordering fields manually in Python is probably too slow, so I think this needs to be fixed by them to be usable on our side.
## Describe the bug When trying to create a dataset from a json file with around 25MB, the following error is raised `pyarrow.lib.ArrowNotImplementedError: Unsupported cast from struct<b: int64, c: int64> to struct using function cast_struct` Splitting the big file into smaller ones and then loading it with the `load_dataset` method did also not work. Creating a pandas dataframe from it and then loading it with `Dataset.from_pandas` works ## Steps to reproduce the bug ```python load_dataset("json", data_files="test.json") ``` test.json ~25MB ```json {"a": {"c": 8, "b": 5}} {"a": {"b": 7, "c": 6}} {"a": {"c": 8, "b": 5}} {"a": {"b": 7, "c": 6}} {"a": {"c": 8, "b": 5}} ... ``` working.json ~160bytes ```json {"a": {"c": 8, "b": 5}} {"a": {"b": 7, "c": 6}} {"a": {"c": 8, "b": 5}} {"a": {"b": 7, "c": 6}} {"a": {"c": 8, "b": 5}} ``` ## Expected results It should load the dataset from the json file without error. ## Actual results It raises Exception `pyarrow.lib.ArrowNotImplementedError: Unsupported cast from struct<b: int64, c: int64> to struct using function cast_struct` ``` Traceback (most recent call last): File "/Users/m/workspace/xxx/project/main.py", line 60, in <module> dataset = load_dataset("json", data_files="result.json") File "/opt/homebrew/Caskroom/miniforge/base/envs/xxx/lib/python3.9/site-packages/datasets/load.py", line 1627, in load_dataset builder_instance.download_and_prepare( File "/opt/homebrew/Caskroom/miniforge/base/envs/xxx/lib/python3.9/site-packages/datasets/builder.py", line 607, in download_and_prepare self._download_and_prepare( File "/opt/homebrew/Caskroom/miniforge/base/envs/xxx/lib/python3.9/site-packages/datasets/builder.py", line 697, in _download_and_prepare self._prepare_split(split_generator, **prepare_split_kwargs) File "/opt/homebrew/Caskroom/miniforge/base/envs/xxx/lib/python3.9/site-packages/datasets/builder.py", line 1159, in _prepare_split writer.write_table(table) File "/opt/homebrew/Caskroom/miniforge/base/envs/xxx/lib/python3.9/site-packages/datasets/arrow_writer.py", line 428, in write_table pa_table = pa.Table.from_arrays([pa_table[name] for name in self._schema.names], schema=self._schema) File "pyarrow/table.pxi", line 1685, in pyarrow.lib.Table.from_arrays File "pyarrow/table.pxi", line 630, in pyarrow.lib._sanitize_arrays File "pyarrow/array.pxi", line 338, in pyarrow.lib.asarray File "pyarrow/table.pxi", line 304, in pyarrow.lib.ChunkedArray.cast File "/opt/homebrew/Caskroom/miniforge/base/envs/xxx/lib/python3.9/site-packages/pyarrow/compute.py", line 309, in cast return call_function("cast", [arr], options) File "pyarrow/_compute.pyx", line 528, in pyarrow._compute.call_function File "pyarrow/_compute.pyx", line 327, in pyarrow._compute.Function.call File "pyarrow/error.pxi", line 143, in pyarrow.lib.pyarrow_internal_check_status File "pyarrow/error.pxi", line 120, in pyarrow.lib.check_status pyarrow.lib.ArrowNotImplementedError: Unsupported cast from struct<b: int64, c: int64> to struct using function cast_struct ``` ## Environment info - `datasets` version: 1.14.0 - Platform: macOS-12.0.1-arm64-arm-64bit - Python version: 3.9.7 - PyArrow version: 6.0.0
94
Loading big json dataset raises pyarrow.lib.ArrowNotImplementedError ## Describe the bug When trying to create a dataset from a json file with around 25MB, the following error is raised `pyarrow.lib.ArrowNotImplementedError: Unsupported cast from struct<b: int64, c: int64> to struct using function cast_struct` Splitting the big file into smaller ones and then loading it with the `load_dataset` method did also not work. Creating a pandas dataframe from it and then loading it with `Dataset.from_pandas` works ## Steps to reproduce the bug ```python load_dataset("json", data_files="test.json") ``` test.json ~25MB ```json {"a": {"c": 8, "b": 5}} {"a": {"b": 7, "c": 6}} {"a": {"c": 8, "b": 5}} {"a": {"b": 7, "c": 6}} {"a": {"c": 8, "b": 5}} ... ``` working.json ~160bytes ```json {"a": {"c": 8, "b": 5}} {"a": {"b": 7, "c": 6}} {"a": {"c": 8, "b": 5}} {"a": {"b": 7, "c": 6}} {"a": {"c": 8, "b": 5}} ``` ## Expected results It should load the dataset from the json file without error. ## Actual results It raises Exception `pyarrow.lib.ArrowNotImplementedError: Unsupported cast from struct<b: int64, c: int64> to struct using function cast_struct` ``` Traceback (most recent call last): File "/Users/m/workspace/xxx/project/main.py", line 60, in <module> dataset = load_dataset("json", data_files="result.json") File "/opt/homebrew/Caskroom/miniforge/base/envs/xxx/lib/python3.9/site-packages/datasets/load.py", line 1627, in load_dataset builder_instance.download_and_prepare( File "/opt/homebrew/Caskroom/miniforge/base/envs/xxx/lib/python3.9/site-packages/datasets/builder.py", line 607, in download_and_prepare self._download_and_prepare( File "/opt/homebrew/Caskroom/miniforge/base/envs/xxx/lib/python3.9/site-packages/datasets/builder.py", line 697, in _download_and_prepare self._prepare_split(split_generator, **prepare_split_kwargs) File "/opt/homebrew/Caskroom/miniforge/base/envs/xxx/lib/python3.9/site-packages/datasets/builder.py", line 1159, in _prepare_split writer.write_table(table) File "/opt/homebrew/Caskroom/miniforge/base/envs/xxx/lib/python3.9/site-packages/datasets/arrow_writer.py", line 428, in write_table pa_table = pa.Table.from_arrays([pa_table[name] for name in self._schema.names], schema=self._schema) File "pyarrow/table.pxi", line 1685, in pyarrow.lib.Table.from_arrays File "pyarrow/table.pxi", line 630, in pyarrow.lib._sanitize_arrays File "pyarrow/array.pxi", line 338, in pyarrow.lib.asarray File "pyarrow/table.pxi", line 304, in pyarrow.lib.ChunkedArray.cast File "/opt/homebrew/Caskroom/miniforge/base/envs/xxx/lib/python3.9/site-packages/pyarrow/compute.py", line 309, in cast return call_function("cast", [arr], options) File "pyarrow/_compute.pyx", line 528, in pyarrow._compute.call_function File "pyarrow/_compute.pyx", line 327, in pyarrow._compute.Function.call File "pyarrow/error.pxi", line 143, in pyarrow.lib.pyarrow_internal_check_status File "pyarrow/error.pxi", line 120, in pyarrow.lib.check_status pyarrow.lib.ArrowNotImplementedError: Unsupported cast from struct<b: int64, c: int64> to struct using function cast_struct ``` ## Environment info - `datasets` version: 1.14.0 - Platform: macOS-12.0.1-arm64-arm-64bit - Python version: 3.9.7 - PyArrow version: 6.0.0 Hi, this issue is similar to https://github.com/huggingface/datasets/issues/3093, so you can either use the solution provided there or try to load the data in one chunk (you can control the chunk size by specifying the `chunksize` parameter (`int`) in `load_dataset`). @lhoestq Is this worth opening an issue on Jira? Basically, PyArrow doesn't allow casts that change the order of the struct fields because they treat `pa.struct` as an ordered sequence. Reordering fields manually in Python is probably too slow, so I think this needs to be fixed by them to be usable on our side.
[ -0.26852139830589294, 0.2580777108669281, 0.020511385053396225, 0.42285293340682983, 0.4146389365196228, -0.06554235517978668, 0.10114482790231705, 0.48126429319381714, -0.18037472665309906, 0.008807390928268433, 0.004147940780967474, 0.5188927054405212, -0.09242759644985199, -0.1117405965924263, -0.14355503022670746, -0.20287945866584778, 0.08698747307062149, 0.263174831867218, 0.06999049335718155, 0.12929406762123108, -0.23681709170341492, 0.046087853610515594, -0.0061393603682518005, 0.07198768109083176, 0.043265823274850845, -0.029361432418227196, 0.08365144580602646, 0.25321608781814575, -0.3475852310657501, -0.3850037753582001, 0.08300182968378067, -0.42419537901878357, 0.15095767378807068, 0.5695893168449402, -0.00011929647735087201, 0.14217960834503174, 0.5012944936752319, 0.03936890512704849, -0.08309629559516907, -0.14837689697742462, -0.06365437805652618, -0.47363466024398804, 0.3391488194465637, -0.12886060774326324, 0.03566606342792511, -0.5867009162902832, -0.189146488904953, 0.13559171557426453, 0.24643759429454803, 0.23950159549713135, 0.13461297750473022, 0.11015328764915466, 0.2780793607234955, 0.16490955650806427, 0.3936542868614197, 0.15579143166542053, -0.1783217191696167, 0.3058736026287079, 0.14803719520568848, 0.23754900693893433, -0.3036317229270935, -0.25579261779785156, -0.09305074065923691, 0.06959716975688934, 0.09031620621681213, -0.1165802851319313, -0.1900126039981842, -0.19014456868171692, 0.00985749438405037, 0.31901687383651733, 0.4243135154247284, -0.33918052911758423, -0.3169640600681305, -0.18631315231323242, 0.003461668733507395, -0.05958002060651779, 0.10949666053056717, 0.44794103503227234, -0.1134481281042099, -0.03769999369978905, -0.1303185522556305, 0.09876187145709991, -0.272264301776886, 0.22143584489822388, -0.05505244806408882, -0.2019575834274292, -0.05116777494549751, 0.12713339924812317, 0.25772824883461, -0.2757378816604614, -0.18839983642101288, -0.15015701949596405, -0.2618076801300049, 0.02233777567744255, -0.13132162392139435, 0.011366397142410278, 0.03614649921655655, -0.223624587059021, 0.3101901710033417, 0.09139309823513031, 0.07244998216629028, 0.09328813850879669, 0.1582740992307663, 0.09471510350704193, 0.30632689595222473, 0.08858750760555267, -0.5824142098426819, -0.2200244516134262, 0.20579420030117035, 0.06974120438098907, -0.10051581263542175, 0.03947540000081062, -0.06481356173753738, -0.2751743197441101, 0.00006865337491035461, -0.22564378380775452, 0.24995295703411102, -0.26756179332733154, -0.18921154737472534, 0.08995386213064194, -0.5890737175941467, -0.033556774258613586, 0.00885743461549282, 0.37207311391830444, -0.0945332795381546, 0.3057662546634674, -0.13829916715621948, 0.30544936656951904, -0.1420545130968094, -0.0197705440223217, -0.12856529653072357, 0.10156644880771637, -0.08926573395729065, -0.1492343246936798, 0.22701363265514374, -0.01503283903002739, 0.02133363112807274, 0.033289335668087006, 0.1203242838382721, -0.2610333561897278, 0.09206880629062653, -0.23142831027507782, -0.05817431956529617, 0.3493136167526245, -0.0013038739562034607, 0.10331238061189651, -0.07344399392604828, -0.09102495014667511, -0.2422918677330017, 0.42899253964424133, -0.23337790369987488, -0.29515933990478516, -0.2863195240497589, 0.08552515506744385, -0.5299462676048279, 0.23764662444591522, -0.47917649149894714, 0.004255823791027069, 0.061900585889816284, -0.0818743035197258, 0.07631153613328934, -0.28062111139297485, 0.17740210890769958, -0.4298686683177948, 0.1278257817029953, 0.11328266561031342, -0.4788977801799774, 0.09268234670162201, -0.15639208257198334, -0.16992785036563873, 0.1558208465576172, 0.3822101056575775, -0.31997042894363403, 0.25934454798698425, -0.1228204071521759, 0.3051096200942993, 0.42674317955970764, 0.04236109182238579, -0.6494880318641663, 0.4930002689361572, -0.189493328332901, 0.22842682898044586, 0.1868213713169098, 0.0262259803712368, -0.06442610174417496, 0.04386672005057335, -0.15376605093479156, 0.43413788080215454, -0.11610263586044312, 0.2806209921836853, -0.1995604783296585, -0.49872690439224243, 0.1391734778881073, 0.26967093348503113, 0.038024161010980606, -0.030161060392856598, 0.2997678518295288, -0.08395922929048538, 0.23862990736961365, -0.3696407675743103, 0.1763293296098709, 0.26263535022735596, 0.2047848105430603, -0.42254161834716797, 0.05462910979986191, 0.03382817655801773, -0.5099058747291565, 0.10654174536466599, 0.03701598942279816, 0.06886108964681625, -0.45200949907302856, 0.10358738899230957, -0.005970599129796028, 0.06436575949192047, 0.0028594061732292175, 0.31989941000938416, -0.02244029939174652, 0.12891149520874023, 0.1393740326166153, -0.042187925428152084, -0.0068832747638225555, -0.19583827257156372, -0.08772893249988556, 0.1557198166847229, -0.1760002076625824, 0.40715092420578003, 0.19763250648975372, -0.4245958924293518, 0.039993882179260254, 0.053963325917720795, -0.08065103739500046, -0.22850030660629272, -0.1663183867931366, 0.007416360080242157, 0.04120558872818947, 0.0505228154361248, -0.6076709032058716, 0.0562126561999321, -0.04174353927373886, -0.21691155433654785, 0.07043163478374481, 0.17553970217704773, 0.1755523532629013, -0.17021405696868896, 0.24369940161705017, 0.5796763300895691, -0.08151295781135559, 0.2617235779762268, 0.14554181694984436, -0.2649807631969452, 0.2262677550315857, -0.06667426973581314, 0.1393548846244812, -0.07009821385145187, 0.09265944361686707, 0.2939116954803467, 0.19747795164585114, 0.22542965412139893, -0.36715543270111084, -0.131916344165802, 0.4628176987171173, -0.23055101931095123, 0.023851722478866577, 0.3291139006614685, -0.2515145242214203, -0.06975571811199188, 0.08250834047794342, -0.006266862154006958, 0.358376681804657, 0.1827450543642044, -0.1263877898454666, -0.06650872528553009, 0.2242855578660965, -0.08810029178857803, -0.000928930938243866, 0.2303709089756012, 0.4838813841342926, 0.29769396781921387, 0.40897098183631897, -0.08948910981416702, -0.22156137228012085, -0.2169477939605713, 0.12384404987096786, 0.3499280512332916, -0.37547609210014343, 0.13018500804901123, -0.15771260857582092, 0.04713770002126694, -0.1864224672317505, -0.3461136221885681, 0.027302060276269913, -0.12498725205659866, -0.19275367259979248, 0.33716318011283875, -0.1664116233587265, 0.0543794259428978, -0.301980197429657, -0.1199355274438858, -0.0022657904773950577, -0.5406532287597656, -0.022687524557113647, -0.045886389911174774, -0.13910484313964844, 0.03801235184073448, 0.4958106279373169, 0.04642508924007416, -0.1688033640384674, 0.10206521302461624, 0.15022030472755432, 0.03581976145505905, -0.2770983874797821, 0.11786655336618423, -0.13634175062179565, 0.25864946842193604, -0.08196890354156494, -0.0651821494102478, -0.12627679109573364, -0.3243672251701355, 0.1793096959590912, 0.06363920122385025, -0.41085830330848694, 0.5533520579338074, -0.3100537061691284, 0.08838096261024475, 0.0823095291852951, -0.11883775144815445, 0.0022027436643838882, -0.3583166301250458, 0.5482567548751831, 0.2384309619665146, 0.11145836114883423, -0.22108551859855652, 0.4352264404296875, 0.29015877842903137, 0.17650006711483002, 0.14554715156555176, 0.16613183915615082, 0.028731610625982285, 0.4048546254634857, -0.007211766205728054, -0.3473062217235565, -0.01116238534450531, -0.24085228145122528, -0.01480112224817276, 0.15769867599010468, -0.5960513949394226, 0.18689396977424622, -0.2525783181190491, 0.30052703619003296, -0.1920441836118698, -0.24909226596355438, 0.11819212138652802, 0.07055777311325073, 0.05703050643205643, 0.05948854982852936, -0.055149633437395096, -0.133201003074646, 0.10771214216947556, 0.05734040215611458, -0.10792794078588486, 0.6231412887573242, -0.07202532142400742, 0.4573732614517212, 0.13893064856529236, -0.2987987995147705, 0.30687758326530457, 0.02906305529177189, 0.05924612283706665, -0.19961783289909363, -0.06900977343320847, 0.13455690443515778, -0.023668602108955383, 0.02252785861492157, 0.1288737952709198, -0.05508716404438019, -0.35612598061561584, 0.11576421558856964, -0.3237038850784302, -0.15997274219989777, -0.1860859990119934, 0.37041035294532776, -0.058470219373703, -0.2679120898246765, -0.24864444136619568, -0.016505371779203415, 0.030679263174533844, -0.2874135375022888, -0.01416801381856203, -0.017969422042369843, 0.022182054817676544, -0.005926754791289568, -0.17438051104545593, -0.19851523637771606, -0.14939764142036438, 0.161043182015419, 0.1855039745569229, 0.2674935460090637, 0.2703182101249695, -0.28359881043434143, 0.15699435770511627, -0.42022979259490967, 0.5183312296867371, 0.14331117272377014, 0.0024784691631793976, 0.20127242803573608, 0.06926604360342026, -0.5328445434570312, 0.0698220431804657, -0.052326854318380356, 0.36927202343940735, 0.35013121366500854, 0.1549122929573059, -0.39591100811958313, -0.03893798217177391, 0.1814173460006714, 0.6997189521789551, -0.056600771844387054, -0.18361668288707733, -0.40488022565841675, -0.49058789014816284, -0.29144513607025146, 0.11126749217510223, -0.07687060534954071, 0.3997337520122528, -0.028131619095802307, 0.059449296444654465, -0.26622462272644043, -0.22880643606185913, -0.060928523540496826, 0.19095540046691895, 0.30654671788215637, -0.2724769711494446, 0.4031531810760498, -0.36621853709220886, 0.07691341638565063, 0.5814668536186218, 0.718903124332428, 0.4540398120880127, -0.37513598799705505, 0.11901327222585678, 0.1802288293838501, 0.23697662353515625, -0.0026732981204986572, -0.009031716734170914, 0.08268052339553833, 0.006445678882300854, 0.13891348242759705, -0.059400301426649094, -0.12054622918367386, 0.22657720744609833, -0.2391131967306137, -0.35425999760627747, 0.041846320033073425, 0.4192458987236023, 0.11575661599636078, 0.07908378541469574, 0.19787806272506714, 0.20516464114189148, -0.07605814933776855, 0.530288815498352, 0.06596370041370392, 0.8859299421310425, -0.10565504431724548, 0.06642652302980423, 0.4594253599643707, -0.04636216163635254, 0.40989547967910767, -0.1774948239326477, 0.07301110029220581, -0.489732563495636, 0.14457635581493378, 0.11068043112754822, -0.3465612530708313, 0.056702613830566406, 0.15043863654136658, -0.1278710961341858, 0.011788514442741871, -0.15554730594158173, 0.3719794750213623, 0.050834737718105316, 0.45300620794296265, -0.024182846769690514, -0.19673852622509003, -0.2791593372821808, 0.00014135055243968964, -0.14143499732017517, -0.20882247388362885, 0.1387622058391571, -0.17820993065834045, -0.21221810579299927, -0.14240410923957825, -0.23965254426002502, 0.3395579755306244, 0.04013967886567116, 0.09622848778963089, 0.2045838087797165, -0.4202941656112671, 0.26571759581565857, 0.09902207553386688, -0.22613625228405, -0.0365215502679348, -0.12958304584026337, 0.1764204055070877, 0.06600990891456604, 0.00280772359110415, 0.22996048629283905, -0.15297521650791168, 0.3401191532611847, 0.00204453244805336, -0.2298492193222046, 0.12968584895133972, -0.061798639595508575, -0.1958320140838623, 0.23718363046646118, 0.19706270098686218, -0.3386361002922058, -0.37920674681663513, -0.29481327533721924, -0.07951405644416809, 0.0571429617702961, -0.1824837028980255, 0.0818515419960022, 0.14393770694732666, -0.024188900366425514, 0.2633374333381653, 0.06044240668416023, -0.40994566679000854, -0.21755529940128326, 0.30920618772506714, 0.33315733075141907, 0.06041215360164642, 0.5279707908630371, 0.3783797025680542, -0.1301308572292328, -0.15713998675346375, 0.06734355539083481, 0.37993425130844116, -0.6480808258056641, 0.16210144758224487, -0.11024383455514908, 0.1306239515542984, 0.09187708795070648, 0.13483451306819916, -0.006859291344881058, 0.11704016476869583, -0.02117779478430748, -0.3381136655807495, -0.4775926470756531, 0.47238636016845703, 0.2119942307472229, -0.02986031398177147, -0.02136308327317238, 0.11502163112163544, -0.09507578611373901, 0.05744275450706482, -0.1649051159620285, 0.28531357645988464, -0.06125319004058838, 0.047884926199913025, -0.21722087264060974, 0.10378129780292511, 0.18705208599567413, 0.02491651475429535, 0.06377039104700089, 0.17468665540218353, -0.029822837561368942, -0.11646700650453568, -0.14020311832427979, 0.1493338942527771, 0.24949723482131958, -0.1668885201215744, -0.06615450233221054, -0.2624722123146057, 0.0654233992099762, -0.14284473657608032, 0.19087912142276764, -0.015715396031737328, -0.1521163433790207, -0.16868214309215546, 0.25072339177131653, -0.26907429099082947, -0.1662301868200302, 0.19699415564537048, -0.3167073130607605, 0.5652083158493042, 0.10151565074920654, 0.34074872732162476, 0.24154509603977203, 0.13732367753982544, -0.1996004432439804, 0.1334419846534729, 0.11564914137125015, 0.07499822974205017, 0.24704524874687195, -0.36726558208465576, -0.1350400149822235, -0.3647795617580414, 0.3119337856769562, 0.47784116864204407, -0.18154148757457733, -0.05021982640028, 0.2567844092845917, 0.09774656593799591, -0.1289897859096527, -0.2381281703710556, 0.25850656628608704, -0.19293364882469177, -0.07476427406072617, 0.3284262716770172, -0.06310339272022247, -0.21828186511993408, -0.18903334438800812, 0.055340126156806946, 0.33520662784576416, 0.398894727230072, -0.19449156522750854, 0.4730495512485504, -0.18206819891929626, -0.18915386497974396, 0.3644472658634186, 0.13684633374214172, 0.49473562836647034, 0.18111060559749603, -0.16951081156730652, 0.1317637711763382, -0.05236034095287323, -0.02651248499751091, -0.166885107755661, -0.40912720561027527, 0.17797337472438812, 0.3772818446159363, 0.12706544995307922, -0.09050940722227097, 0.19990015029907227, 0.44260549545288086, 0.43426117300987244, 0.03295379504561424, -0.2512913942337036, 0.12571106851100922, -0.1543750762939453, -0.12138369679450989, -0.265242338180542, -0.2745140790939331, -0.015856385231018066, 0.32739782333374023, -0.2525952458381653, -0.13537533581256866, 0.22965344786643982, 0.20600107312202454, -0.09918436408042908, -0.2617724537849426, 0.37641531229019165, 0.1190800741314888, -0.09956660121679306, -0.29300665855407715, 0.25620922446250916, 0.28983813524246216, -0.15068113803863525, 0.06722310185432434, -0.13323302567005157, 0.4848885238170624, 0.2877316176891327, -0.2140851616859436, -0.16092243790626526, 0.03481777757406235, -0.17700178921222687, -0.10407198965549469, 0.3921208381652832, 0.18691156804561615, 0.20051637291908264, 0.2648577094078064, 0.08922862261533737, -0.1917438805103302, -0.039455052465200424, 0.23144446313381195, 0.09495662152767181, -0.11412277817726135, 0.2561666965484619, -0.13025954365730286, -0.3716928958892822, -0.12444475293159485, -0.16214361786842346, -0.11139111965894699, -0.15989156067371368, 0.22884757816791534, -0.18524982035160065, -0.06564576923847198, -0.09964362531900406, 0.02804858610033989, -0.16419899463653564, 0.493484228849411, 0.1920718103647232, 0.2258991003036499, -0.1874026507139206, 0.014119386672973633, -0.3436737358570099, 0.3701600432395935, -0.5172213315963745, 0.0496605783700943, -0.00218881294131279, 0.3380778133869171, -0.017016306519508362, 0.18009310960769653, -0.022195085883140564, 0.5129309296607971, -0.0026825545355677605, 0.17507794499397278, -0.24379923939704895, -0.24222727119922638, 0.21773022413253784, 0.06900306046009064, -0.21579360961914062, -0.39115217328071594, 0.19244106113910675, -0.22046400606632233, 0.07521191984415054, -0.17296122014522552, -0.29857420921325684, -0.0754244402050972, -0.04514070600271225, 0.6414815783500671, 0.05838713049888611, 0.35392192006111145, -0.021773332729935646, -0.25475892424583435, -0.09743000566959381, -0.29437679052352905, -0.10349811613559723, 0.36609920859336853, -0.1306571364402771, 0.4478863775730133, -0.008735790848731995, 0.399773508310318, -0.26258963346481323, -0.27581587433815, -0.40839099884033203, 0.1774117797613144, -0.06817604601383209, 0.3243943750858307, -0.36988285183906555, 0.29900914430618286, -0.16857069730758667, 0.059279851615428925, 0.1004168763756752, 0.22008325159549713, -0.32117682695388794, -0.29336071014404297, 0.31256991624832153, -0.5614189505577087, -0.23523132503032684, 0.27639085054397583, 0.0467398539185524, -0.07833113521337509, -0.29081928730010986, -0.32146406173706055, 0.24529197812080383, 0.29592904448509216, 0.2006671130657196, -0.21095789968967438, -0.02220664545893669, -0.2514030933380127, -0.06795002520084381, -0.1359182596206665, 0.2792748808860779, 0.029059676453471184, -0.3098990321159363, -0.18739435076713562, -0.14764763414859772 ]
https://github.com/huggingface/datasets/issues/3247
Loading big json dataset raises pyarrow.lib.ArrowNotImplementedError
I agree I would expect PyArrow to be able to handle this, do you want to open the issue @mariosasko ? Although maybe it's possible to fix struct casting on our side without hurting performance too much, if it's simply a matter of reordering the arrays in the StructArray
## Describe the bug When trying to create a dataset from a json file with around 25MB, the following error is raised `pyarrow.lib.ArrowNotImplementedError: Unsupported cast from struct<b: int64, c: int64> to struct using function cast_struct` Splitting the big file into smaller ones and then loading it with the `load_dataset` method did also not work. Creating a pandas dataframe from it and then loading it with `Dataset.from_pandas` works ## Steps to reproduce the bug ```python load_dataset("json", data_files="test.json") ``` test.json ~25MB ```json {"a": {"c": 8, "b": 5}} {"a": {"b": 7, "c": 6}} {"a": {"c": 8, "b": 5}} {"a": {"b": 7, "c": 6}} {"a": {"c": 8, "b": 5}} ... ``` working.json ~160bytes ```json {"a": {"c": 8, "b": 5}} {"a": {"b": 7, "c": 6}} {"a": {"c": 8, "b": 5}} {"a": {"b": 7, "c": 6}} {"a": {"c": 8, "b": 5}} ``` ## Expected results It should load the dataset from the json file without error. ## Actual results It raises Exception `pyarrow.lib.ArrowNotImplementedError: Unsupported cast from struct<b: int64, c: int64> to struct using function cast_struct` ``` Traceback (most recent call last): File "/Users/m/workspace/xxx/project/main.py", line 60, in <module> dataset = load_dataset("json", data_files="result.json") File "/opt/homebrew/Caskroom/miniforge/base/envs/xxx/lib/python3.9/site-packages/datasets/load.py", line 1627, in load_dataset builder_instance.download_and_prepare( File "/opt/homebrew/Caskroom/miniforge/base/envs/xxx/lib/python3.9/site-packages/datasets/builder.py", line 607, in download_and_prepare self._download_and_prepare( File "/opt/homebrew/Caskroom/miniforge/base/envs/xxx/lib/python3.9/site-packages/datasets/builder.py", line 697, in _download_and_prepare self._prepare_split(split_generator, **prepare_split_kwargs) File "/opt/homebrew/Caskroom/miniforge/base/envs/xxx/lib/python3.9/site-packages/datasets/builder.py", line 1159, in _prepare_split writer.write_table(table) File "/opt/homebrew/Caskroom/miniforge/base/envs/xxx/lib/python3.9/site-packages/datasets/arrow_writer.py", line 428, in write_table pa_table = pa.Table.from_arrays([pa_table[name] for name in self._schema.names], schema=self._schema) File "pyarrow/table.pxi", line 1685, in pyarrow.lib.Table.from_arrays File "pyarrow/table.pxi", line 630, in pyarrow.lib._sanitize_arrays File "pyarrow/array.pxi", line 338, in pyarrow.lib.asarray File "pyarrow/table.pxi", line 304, in pyarrow.lib.ChunkedArray.cast File "/opt/homebrew/Caskroom/miniforge/base/envs/xxx/lib/python3.9/site-packages/pyarrow/compute.py", line 309, in cast return call_function("cast", [arr], options) File "pyarrow/_compute.pyx", line 528, in pyarrow._compute.call_function File "pyarrow/_compute.pyx", line 327, in pyarrow._compute.Function.call File "pyarrow/error.pxi", line 143, in pyarrow.lib.pyarrow_internal_check_status File "pyarrow/error.pxi", line 120, in pyarrow.lib.check_status pyarrow.lib.ArrowNotImplementedError: Unsupported cast from struct<b: int64, c: int64> to struct using function cast_struct ``` ## Environment info - `datasets` version: 1.14.0 - Platform: macOS-12.0.1-arm64-arm-64bit - Python version: 3.9.7 - PyArrow version: 6.0.0
49
Loading big json dataset raises pyarrow.lib.ArrowNotImplementedError ## Describe the bug When trying to create a dataset from a json file with around 25MB, the following error is raised `pyarrow.lib.ArrowNotImplementedError: Unsupported cast from struct<b: int64, c: int64> to struct using function cast_struct` Splitting the big file into smaller ones and then loading it with the `load_dataset` method did also not work. Creating a pandas dataframe from it and then loading it with `Dataset.from_pandas` works ## Steps to reproduce the bug ```python load_dataset("json", data_files="test.json") ``` test.json ~25MB ```json {"a": {"c": 8, "b": 5}} {"a": {"b": 7, "c": 6}} {"a": {"c": 8, "b": 5}} {"a": {"b": 7, "c": 6}} {"a": {"c": 8, "b": 5}} ... ``` working.json ~160bytes ```json {"a": {"c": 8, "b": 5}} {"a": {"b": 7, "c": 6}} {"a": {"c": 8, "b": 5}} {"a": {"b": 7, "c": 6}} {"a": {"c": 8, "b": 5}} ``` ## Expected results It should load the dataset from the json file without error. ## Actual results It raises Exception `pyarrow.lib.ArrowNotImplementedError: Unsupported cast from struct<b: int64, c: int64> to struct using function cast_struct` ``` Traceback (most recent call last): File "/Users/m/workspace/xxx/project/main.py", line 60, in <module> dataset = load_dataset("json", data_files="result.json") File "/opt/homebrew/Caskroom/miniforge/base/envs/xxx/lib/python3.9/site-packages/datasets/load.py", line 1627, in load_dataset builder_instance.download_and_prepare( File "/opt/homebrew/Caskroom/miniforge/base/envs/xxx/lib/python3.9/site-packages/datasets/builder.py", line 607, in download_and_prepare self._download_and_prepare( File "/opt/homebrew/Caskroom/miniforge/base/envs/xxx/lib/python3.9/site-packages/datasets/builder.py", line 697, in _download_and_prepare self._prepare_split(split_generator, **prepare_split_kwargs) File "/opt/homebrew/Caskroom/miniforge/base/envs/xxx/lib/python3.9/site-packages/datasets/builder.py", line 1159, in _prepare_split writer.write_table(table) File "/opt/homebrew/Caskroom/miniforge/base/envs/xxx/lib/python3.9/site-packages/datasets/arrow_writer.py", line 428, in write_table pa_table = pa.Table.from_arrays([pa_table[name] for name in self._schema.names], schema=self._schema) File "pyarrow/table.pxi", line 1685, in pyarrow.lib.Table.from_arrays File "pyarrow/table.pxi", line 630, in pyarrow.lib._sanitize_arrays File "pyarrow/array.pxi", line 338, in pyarrow.lib.asarray File "pyarrow/table.pxi", line 304, in pyarrow.lib.ChunkedArray.cast File "/opt/homebrew/Caskroom/miniforge/base/envs/xxx/lib/python3.9/site-packages/pyarrow/compute.py", line 309, in cast return call_function("cast", [arr], options) File "pyarrow/_compute.pyx", line 528, in pyarrow._compute.call_function File "pyarrow/_compute.pyx", line 327, in pyarrow._compute.Function.call File "pyarrow/error.pxi", line 143, in pyarrow.lib.pyarrow_internal_check_status File "pyarrow/error.pxi", line 120, in pyarrow.lib.check_status pyarrow.lib.ArrowNotImplementedError: Unsupported cast from struct<b: int64, c: int64> to struct using function cast_struct ``` ## Environment info - `datasets` version: 1.14.0 - Platform: macOS-12.0.1-arm64-arm-64bit - Python version: 3.9.7 - PyArrow version: 6.0.0 I agree I would expect PyArrow to be able to handle this, do you want to open the issue @mariosasko ? Although maybe it's possible to fix struct casting on our side without hurting performance too much, if it's simply a matter of reordering the arrays in the StructArray
[ -0.26852139830589294, 0.2580777108669281, 0.020511385053396225, 0.42285293340682983, 0.4146389365196228, -0.06554235517978668, 0.10114482790231705, 0.48126429319381714, -0.18037472665309906, 0.008807390928268433, 0.004147940780967474, 0.5188927054405212, -0.09242759644985199, -0.1117405965924263, -0.14355503022670746, -0.20287945866584778, 0.08698747307062149, 0.263174831867218, 0.06999049335718155, 0.12929406762123108, -0.23681709170341492, 0.046087853610515594, -0.0061393603682518005, 0.07198768109083176, 0.043265823274850845, -0.029361432418227196, 0.08365144580602646, 0.25321608781814575, -0.3475852310657501, -0.3850037753582001, 0.08300182968378067, -0.42419537901878357, 0.15095767378807068, 0.5695893168449402, -0.00011929647735087201, 0.14217960834503174, 0.5012944936752319, 0.03936890512704849, -0.08309629559516907, -0.14837689697742462, -0.06365437805652618, -0.47363466024398804, 0.3391488194465637, -0.12886060774326324, 0.03566606342792511, -0.5867009162902832, -0.189146488904953, 0.13559171557426453, 0.24643759429454803, 0.23950159549713135, 0.13461297750473022, 0.11015328764915466, 0.2780793607234955, 0.16490955650806427, 0.3936542868614197, 0.15579143166542053, -0.1783217191696167, 0.3058736026287079, 0.14803719520568848, 0.23754900693893433, -0.3036317229270935, -0.25579261779785156, -0.09305074065923691, 0.06959716975688934, 0.09031620621681213, -0.1165802851319313, -0.1900126039981842, -0.19014456868171692, 0.00985749438405037, 0.31901687383651733, 0.4243135154247284, -0.33918052911758423, -0.3169640600681305, -0.18631315231323242, 0.003461668733507395, -0.05958002060651779, 0.10949666053056717, 0.44794103503227234, -0.1134481281042099, -0.03769999369978905, -0.1303185522556305, 0.09876187145709991, -0.272264301776886, 0.22143584489822388, -0.05505244806408882, -0.2019575834274292, -0.05116777494549751, 0.12713339924812317, 0.25772824883461, -0.2757378816604614, -0.18839983642101288, -0.15015701949596405, -0.2618076801300049, 0.02233777567744255, -0.13132162392139435, 0.011366397142410278, 0.03614649921655655, -0.223624587059021, 0.3101901710033417, 0.09139309823513031, 0.07244998216629028, 0.09328813850879669, 0.1582740992307663, 0.09471510350704193, 0.30632689595222473, 0.08858750760555267, -0.5824142098426819, -0.2200244516134262, 0.20579420030117035, 0.06974120438098907, -0.10051581263542175, 0.03947540000081062, -0.06481356173753738, -0.2751743197441101, 0.00006865337491035461, -0.22564378380775452, 0.24995295703411102, -0.26756179332733154, -0.18921154737472534, 0.08995386213064194, -0.5890737175941467, -0.033556774258613586, 0.00885743461549282, 0.37207311391830444, -0.0945332795381546, 0.3057662546634674, -0.13829916715621948, 0.30544936656951904, -0.1420545130968094, -0.0197705440223217, -0.12856529653072357, 0.10156644880771637, -0.08926573395729065, -0.1492343246936798, 0.22701363265514374, -0.01503283903002739, 0.02133363112807274, 0.033289335668087006, 0.1203242838382721, -0.2610333561897278, 0.09206880629062653, -0.23142831027507782, -0.05817431956529617, 0.3493136167526245, -0.0013038739562034607, 0.10331238061189651, -0.07344399392604828, -0.09102495014667511, -0.2422918677330017, 0.42899253964424133, -0.23337790369987488, -0.29515933990478516, -0.2863195240497589, 0.08552515506744385, -0.5299462676048279, 0.23764662444591522, -0.47917649149894714, 0.004255823791027069, 0.061900585889816284, -0.0818743035197258, 0.07631153613328934, -0.28062111139297485, 0.17740210890769958, -0.4298686683177948, 0.1278257817029953, 0.11328266561031342, -0.4788977801799774, 0.09268234670162201, -0.15639208257198334, -0.16992785036563873, 0.1558208465576172, 0.3822101056575775, -0.31997042894363403, 0.25934454798698425, -0.1228204071521759, 0.3051096200942993, 0.42674317955970764, 0.04236109182238579, -0.6494880318641663, 0.4930002689361572, -0.189493328332901, 0.22842682898044586, 0.1868213713169098, 0.0262259803712368, -0.06442610174417496, 0.04386672005057335, -0.15376605093479156, 0.43413788080215454, -0.11610263586044312, 0.2806209921836853, -0.1995604783296585, -0.49872690439224243, 0.1391734778881073, 0.26967093348503113, 0.038024161010980606, -0.030161060392856598, 0.2997678518295288, -0.08395922929048538, 0.23862990736961365, -0.3696407675743103, 0.1763293296098709, 0.26263535022735596, 0.2047848105430603, -0.42254161834716797, 0.05462910979986191, 0.03382817655801773, -0.5099058747291565, 0.10654174536466599, 0.03701598942279816, 0.06886108964681625, -0.45200949907302856, 0.10358738899230957, -0.005970599129796028, 0.06436575949192047, 0.0028594061732292175, 0.31989941000938416, -0.02244029939174652, 0.12891149520874023, 0.1393740326166153, -0.042187925428152084, -0.0068832747638225555, -0.19583827257156372, -0.08772893249988556, 0.1557198166847229, -0.1760002076625824, 0.40715092420578003, 0.19763250648975372, -0.4245958924293518, 0.039993882179260254, 0.053963325917720795, -0.08065103739500046, -0.22850030660629272, -0.1663183867931366, 0.007416360080242157, 0.04120558872818947, 0.0505228154361248, -0.6076709032058716, 0.0562126561999321, -0.04174353927373886, -0.21691155433654785, 0.07043163478374481, 0.17553970217704773, 0.1755523532629013, -0.17021405696868896, 0.24369940161705017, 0.5796763300895691, -0.08151295781135559, 0.2617235779762268, 0.14554181694984436, -0.2649807631969452, 0.2262677550315857, -0.06667426973581314, 0.1393548846244812, -0.07009821385145187, 0.09265944361686707, 0.2939116954803467, 0.19747795164585114, 0.22542965412139893, -0.36715543270111084, -0.131916344165802, 0.4628176987171173, -0.23055101931095123, 0.023851722478866577, 0.3291139006614685, -0.2515145242214203, -0.06975571811199188, 0.08250834047794342, -0.006266862154006958, 0.358376681804657, 0.1827450543642044, -0.1263877898454666, -0.06650872528553009, 0.2242855578660965, -0.08810029178857803, -0.000928930938243866, 0.2303709089756012, 0.4838813841342926, 0.29769396781921387, 0.40897098183631897, -0.08948910981416702, -0.22156137228012085, -0.2169477939605713, 0.12384404987096786, 0.3499280512332916, -0.37547609210014343, 0.13018500804901123, -0.15771260857582092, 0.04713770002126694, -0.1864224672317505, -0.3461136221885681, 0.027302060276269913, -0.12498725205659866, -0.19275367259979248, 0.33716318011283875, -0.1664116233587265, 0.0543794259428978, -0.301980197429657, -0.1199355274438858, -0.0022657904773950577, -0.5406532287597656, -0.022687524557113647, -0.045886389911174774, -0.13910484313964844, 0.03801235184073448, 0.4958106279373169, 0.04642508924007416, -0.1688033640384674, 0.10206521302461624, 0.15022030472755432, 0.03581976145505905, -0.2770983874797821, 0.11786655336618423, -0.13634175062179565, 0.25864946842193604, -0.08196890354156494, -0.0651821494102478, -0.12627679109573364, -0.3243672251701355, 0.1793096959590912, 0.06363920122385025, -0.41085830330848694, 0.5533520579338074, -0.3100537061691284, 0.08838096261024475, 0.0823095291852951, -0.11883775144815445, 0.0022027436643838882, -0.3583166301250458, 0.5482567548751831, 0.2384309619665146, 0.11145836114883423, -0.22108551859855652, 0.4352264404296875, 0.29015877842903137, 0.17650006711483002, 0.14554715156555176, 0.16613183915615082, 0.028731610625982285, 0.4048546254634857, -0.007211766205728054, -0.3473062217235565, -0.01116238534450531, -0.24085228145122528, -0.01480112224817276, 0.15769867599010468, -0.5960513949394226, 0.18689396977424622, -0.2525783181190491, 0.30052703619003296, -0.1920441836118698, -0.24909226596355438, 0.11819212138652802, 0.07055777311325073, 0.05703050643205643, 0.05948854982852936, -0.055149633437395096, -0.133201003074646, 0.10771214216947556, 0.05734040215611458, -0.10792794078588486, 0.6231412887573242, -0.07202532142400742, 0.4573732614517212, 0.13893064856529236, -0.2987987995147705, 0.30687758326530457, 0.02906305529177189, 0.05924612283706665, -0.19961783289909363, -0.06900977343320847, 0.13455690443515778, -0.023668602108955383, 0.02252785861492157, 0.1288737952709198, -0.05508716404438019, -0.35612598061561584, 0.11576421558856964, -0.3237038850784302, -0.15997274219989777, -0.1860859990119934, 0.37041035294532776, -0.058470219373703, -0.2679120898246765, -0.24864444136619568, -0.016505371779203415, 0.030679263174533844, -0.2874135375022888, -0.01416801381856203, -0.017969422042369843, 0.022182054817676544, -0.005926754791289568, -0.17438051104545593, -0.19851523637771606, -0.14939764142036438, 0.161043182015419, 0.1855039745569229, 0.2674935460090637, 0.2703182101249695, -0.28359881043434143, 0.15699435770511627, -0.42022979259490967, 0.5183312296867371, 0.14331117272377014, 0.0024784691631793976, 0.20127242803573608, 0.06926604360342026, -0.5328445434570312, 0.0698220431804657, -0.052326854318380356, 0.36927202343940735, 0.35013121366500854, 0.1549122929573059, -0.39591100811958313, -0.03893798217177391, 0.1814173460006714, 0.6997189521789551, -0.056600771844387054, -0.18361668288707733, -0.40488022565841675, -0.49058789014816284, -0.29144513607025146, 0.11126749217510223, -0.07687060534954071, 0.3997337520122528, -0.028131619095802307, 0.059449296444654465, -0.26622462272644043, -0.22880643606185913, -0.060928523540496826, 0.19095540046691895, 0.30654671788215637, -0.2724769711494446, 0.4031531810760498, -0.36621853709220886, 0.07691341638565063, 0.5814668536186218, 0.718903124332428, 0.4540398120880127, -0.37513598799705505, 0.11901327222585678, 0.1802288293838501, 0.23697662353515625, -0.0026732981204986572, -0.009031716734170914, 0.08268052339553833, 0.006445678882300854, 0.13891348242759705, -0.059400301426649094, -0.12054622918367386, 0.22657720744609833, -0.2391131967306137, -0.35425999760627747, 0.041846320033073425, 0.4192458987236023, 0.11575661599636078, 0.07908378541469574, 0.19787806272506714, 0.20516464114189148, -0.07605814933776855, 0.530288815498352, 0.06596370041370392, 0.8859299421310425, -0.10565504431724548, 0.06642652302980423, 0.4594253599643707, -0.04636216163635254, 0.40989547967910767, -0.1774948239326477, 0.07301110029220581, -0.489732563495636, 0.14457635581493378, 0.11068043112754822, -0.3465612530708313, 0.056702613830566406, 0.15043863654136658, -0.1278710961341858, 0.011788514442741871, -0.15554730594158173, 0.3719794750213623, 0.050834737718105316, 0.45300620794296265, -0.024182846769690514, -0.19673852622509003, -0.2791593372821808, 0.00014135055243968964, -0.14143499732017517, -0.20882247388362885, 0.1387622058391571, -0.17820993065834045, -0.21221810579299927, -0.14240410923957825, -0.23965254426002502, 0.3395579755306244, 0.04013967886567116, 0.09622848778963089, 0.2045838087797165, -0.4202941656112671, 0.26571759581565857, 0.09902207553386688, -0.22613625228405, -0.0365215502679348, -0.12958304584026337, 0.1764204055070877, 0.06600990891456604, 0.00280772359110415, 0.22996048629283905, -0.15297521650791168, 0.3401191532611847, 0.00204453244805336, -0.2298492193222046, 0.12968584895133972, -0.061798639595508575, -0.1958320140838623, 0.23718363046646118, 0.19706270098686218, -0.3386361002922058, -0.37920674681663513, -0.29481327533721924, -0.07951405644416809, 0.0571429617702961, -0.1824837028980255, 0.0818515419960022, 0.14393770694732666, -0.024188900366425514, 0.2633374333381653, 0.06044240668416023, -0.40994566679000854, -0.21755529940128326, 0.30920618772506714, 0.33315733075141907, 0.06041215360164642, 0.5279707908630371, 0.3783797025680542, -0.1301308572292328, -0.15713998675346375, 0.06734355539083481, 0.37993425130844116, -0.6480808258056641, 0.16210144758224487, -0.11024383455514908, 0.1306239515542984, 0.09187708795070648, 0.13483451306819916, -0.006859291344881058, 0.11704016476869583, -0.02117779478430748, -0.3381136655807495, -0.4775926470756531, 0.47238636016845703, 0.2119942307472229, -0.02986031398177147, -0.02136308327317238, 0.11502163112163544, -0.09507578611373901, 0.05744275450706482, -0.1649051159620285, 0.28531357645988464, -0.06125319004058838, 0.047884926199913025, -0.21722087264060974, 0.10378129780292511, 0.18705208599567413, 0.02491651475429535, 0.06377039104700089, 0.17468665540218353, -0.029822837561368942, -0.11646700650453568, -0.14020311832427979, 0.1493338942527771, 0.24949723482131958, -0.1668885201215744, -0.06615450233221054, -0.2624722123146057, 0.0654233992099762, -0.14284473657608032, 0.19087912142276764, -0.015715396031737328, -0.1521163433790207, -0.16868214309215546, 0.25072339177131653, -0.26907429099082947, -0.1662301868200302, 0.19699415564537048, -0.3167073130607605, 0.5652083158493042, 0.10151565074920654, 0.34074872732162476, 0.24154509603977203, 0.13732367753982544, -0.1996004432439804, 0.1334419846534729, 0.11564914137125015, 0.07499822974205017, 0.24704524874687195, -0.36726558208465576, -0.1350400149822235, -0.3647795617580414, 0.3119337856769562, 0.47784116864204407, -0.18154148757457733, -0.05021982640028, 0.2567844092845917, 0.09774656593799591, -0.1289897859096527, -0.2381281703710556, 0.25850656628608704, -0.19293364882469177, -0.07476427406072617, 0.3284262716770172, -0.06310339272022247, -0.21828186511993408, -0.18903334438800812, 0.055340126156806946, 0.33520662784576416, 0.398894727230072, -0.19449156522750854, 0.4730495512485504, -0.18206819891929626, -0.18915386497974396, 0.3644472658634186, 0.13684633374214172, 0.49473562836647034, 0.18111060559749603, -0.16951081156730652, 0.1317637711763382, -0.05236034095287323, -0.02651248499751091, -0.166885107755661, -0.40912720561027527, 0.17797337472438812, 0.3772818446159363, 0.12706544995307922, -0.09050940722227097, 0.19990015029907227, 0.44260549545288086, 0.43426117300987244, 0.03295379504561424, -0.2512913942337036, 0.12571106851100922, -0.1543750762939453, -0.12138369679450989, -0.265242338180542, -0.2745140790939331, -0.015856385231018066, 0.32739782333374023, -0.2525952458381653, -0.13537533581256866, 0.22965344786643982, 0.20600107312202454, -0.09918436408042908, -0.2617724537849426, 0.37641531229019165, 0.1190800741314888, -0.09956660121679306, -0.29300665855407715, 0.25620922446250916, 0.28983813524246216, -0.15068113803863525, 0.06722310185432434, -0.13323302567005157, 0.4848885238170624, 0.2877316176891327, -0.2140851616859436, -0.16092243790626526, 0.03481777757406235, -0.17700178921222687, -0.10407198965549469, 0.3921208381652832, 0.18691156804561615, 0.20051637291908264, 0.2648577094078064, 0.08922862261533737, -0.1917438805103302, -0.039455052465200424, 0.23144446313381195, 0.09495662152767181, -0.11412277817726135, 0.2561666965484619, -0.13025954365730286, -0.3716928958892822, -0.12444475293159485, -0.16214361786842346, -0.11139111965894699, -0.15989156067371368, 0.22884757816791534, -0.18524982035160065, -0.06564576923847198, -0.09964362531900406, 0.02804858610033989, -0.16419899463653564, 0.493484228849411, 0.1920718103647232, 0.2258991003036499, -0.1874026507139206, 0.014119386672973633, -0.3436737358570099, 0.3701600432395935, -0.5172213315963745, 0.0496605783700943, -0.00218881294131279, 0.3380778133869171, -0.017016306519508362, 0.18009310960769653, -0.022195085883140564, 0.5129309296607971, -0.0026825545355677605, 0.17507794499397278, -0.24379923939704895, -0.24222727119922638, 0.21773022413253784, 0.06900306046009064, -0.21579360961914062, -0.39115217328071594, 0.19244106113910675, -0.22046400606632233, 0.07521191984415054, -0.17296122014522552, -0.29857420921325684, -0.0754244402050972, -0.04514070600271225, 0.6414815783500671, 0.05838713049888611, 0.35392192006111145, -0.021773332729935646, -0.25475892424583435, -0.09743000566959381, -0.29437679052352905, -0.10349811613559723, 0.36609920859336853, -0.1306571364402771, 0.4478863775730133, -0.008735790848731995, 0.399773508310318, -0.26258963346481323, -0.27581587433815, -0.40839099884033203, 0.1774117797613144, -0.06817604601383209, 0.3243943750858307, -0.36988285183906555, 0.29900914430618286, -0.16857069730758667, 0.059279851615428925, 0.1004168763756752, 0.22008325159549713, -0.32117682695388794, -0.29336071014404297, 0.31256991624832153, -0.5614189505577087, -0.23523132503032684, 0.27639085054397583, 0.0467398539185524, -0.07833113521337509, -0.29081928730010986, -0.32146406173706055, 0.24529197812080383, 0.29592904448509216, 0.2006671130657196, -0.21095789968967438, -0.02220664545893669, -0.2514030933380127, -0.06795002520084381, -0.1359182596206665, 0.2792748808860779, 0.029059676453471184, -0.3098990321159363, -0.18739435076713562, -0.14764763414859772 ]
https://github.com/huggingface/datasets/issues/3242
Adding ANERcorp-CAMeLLab dataset
Adding ANERcorp dataset ## Adding a Dataset - **Name:** *ANERcorp-CAMeLLab* - **Description:** *Since its creation in 2008, the ANERcorp dataset (Benajiba & Rosso, 2008) has been a standard reference used by Arabic named entity recognition researchers around the world. However, over time, this dataset was copied over from user to user, modified slightly here and there, and split in many different configurations that made it hard to compare fairly across papers and systems. In 2020, a group of researchers from CAMeL Lab (Habash, Alhafni and Oudah), and Mind Lab (Antoun and Baly) met with the creator of the corpus, Yassine Benajiba, to consult with him and collectively agree on an exact split, and accepted minor corrections from the original dataset. Bashar Alhafni from CAMeL Lab working with Nizar Habash implemented the decisions provided in this release.* - **Paper:** *(a) Benajiba, Yassine, Paolo Rosso, and José Miguel Benedí Ruiz. "Anersys: An Arabic named entity recognition system based on maximum entropy." In International Conference on Intelligent Text Processing and Computational Linguistics, pp. 143-153. Springer, Berlin, Heidelberg, 2007. (b)Ossama Obeid, Nasser Zalmout, Salam Khalifa, Dima Taji, Mai Oudah, Bashar Alhafni, Go Inoue, Fadhl Eryani, Alexander Erdmann, and Nizar Habash. "CAMeL Tools: An Open Source Python Toolkit, for Arabic Natural Language Processing." In Proceedings of the Conference on Language Resources and Evaluation (LREC 2020), Marseille, 2020.* - **Data:** *https://camel.abudhabi.nyu.edu/anercorp/* - **Motivation:** This is the standard dataset for evaluating NER performance in Arabic* Instructions to add a new dataset can be found [here](https://github.com/huggingface/datasets/blob/master/ADD_NEW_DATASET.md).
null
248
Adding ANERcorp-CAMeLLab dataset Adding ANERcorp dataset ## Adding a Dataset - **Name:** *ANERcorp-CAMeLLab* - **Description:** *Since its creation in 2008, the ANERcorp dataset (Benajiba & Rosso, 2008) has been a standard reference used by Arabic named entity recognition researchers around the world. However, over time, this dataset was copied over from user to user, modified slightly here and there, and split in many different configurations that made it hard to compare fairly across papers and systems. In 2020, a group of researchers from CAMeL Lab (Habash, Alhafni and Oudah), and Mind Lab (Antoun and Baly) met with the creator of the corpus, Yassine Benajiba, to consult with him and collectively agree on an exact split, and accepted minor corrections from the original dataset. Bashar Alhafni from CAMeL Lab working with Nizar Habash implemented the decisions provided in this release.* - **Paper:** *(a) Benajiba, Yassine, Paolo Rosso, and José Miguel Benedí Ruiz. "Anersys: An Arabic named entity recognition system based on maximum entropy." In International Conference on Intelligent Text Processing and Computational Linguistics, pp. 143-153. Springer, Berlin, Heidelberg, 2007. (b)Ossama Obeid, Nasser Zalmout, Salam Khalifa, Dima Taji, Mai Oudah, Bashar Alhafni, Go Inoue, Fadhl Eryani, Alexander Erdmann, and Nizar Habash. "CAMeL Tools: An Open Source Python Toolkit, for Arabic Natural Language Processing." In Proceedings of the Conference on Language Resources and Evaluation (LREC 2020), Marseille, 2020.* - **Data:** *https://camel.abudhabi.nyu.edu/anercorp/* - **Motivation:** This is the standard dataset for evaluating NER performance in Arabic* Instructions to add a new dataset can be found [here](https://github.com/huggingface/datasets/blob/master/ADD_NEW_DATASET.md).
[ -0.09762804955244064, 0.16745823621749878, -0.17793123424053192, 0.14660009741783142, -0.09909462928771973, -0.16376656293869019, 0.4309608042240143, 0.2683171033859253, -0.06867653131484985, 0.372430682182312, -0.08821073174476624, 0.02073429711163044, 0.06547381728887558, 0.10011417418718338, 0.2216459959745407, -0.06879822909832001, -0.10007519274950027, 0.008284501731395721, 0.04198712110519409, 0.00015838071703910828, -0.26784947514533997, 0.26538506150245667, -0.02365903928875923, -0.07499825954437256, 0.062454890459775925, -0.012693757191300392, -0.2231779843568802, -0.1198328360915184, -0.22278687357902527, -0.4789862632751465, -0.06279287487268448, 0.12126579880714417, -0.1595311015844345, 0.22846677899360657, -0.00010490421118447557, -0.19947385787963867, 0.14323213696479797, -0.09347227215766907, -0.3036690354347229, 0.0001625269651412964, -0.03670642524957657, -0.15326035022735596, -0.23073089122772217, -0.3867257535457611, -0.08985234797000885, -0.005268880166113377, 0.1249823123216629, -0.29697784781455994, -0.024904847145080566, 0.05957827344536781, 0.26702171564102173, 0.1272582709789276, -0.3235075771808624, -0.0433492548763752, 0.010086648166179657, 0.10861466825008392, -0.27481234073638916, -0.049122828990221024, 0.2196798324584961, -0.06746403872966766, -0.4643101692199707, 0.4479689598083496, 0.13958100974559784, -0.19239048659801483, 0.012475021183490753, -0.025919310748577118, 0.007155291736125946, -0.11627385020256042, 0.22819167375564575, 0.26063206791877747, -0.07553637772798538, -0.05292090028524399, -0.34165695309638977, -0.3012511730194092, 0.054729532450437546, -0.2387986034154892, 0.20482751727104187, 0.15181510150432587, -0.2944497764110565, -0.046765562146902084, 0.14385190606117249, -0.016881247982382774, -0.17062678933143616, -0.09686830639839172, -0.3452072739601135, 0.3605063259601593, -0.0865822583436966, -0.27901074290275574, 0.2153291404247284, 0.09552350640296936, 0.11394306272268295, -0.0777251124382019, 0.12493996322154999, -0.09513863921165466, -0.3567621111869812, -0.22738145291805267, 0.26015132665634155, 0.26312023401260376, 0.12097708135843277, -0.1845969557762146, 0.42044776678085327, 0.05249350890517235, 0.1064065620303154, 0.07740146666765213, -0.3696487843990326, 0.0478697195649147, 0.3428933024406433, 0.13792070746421814, 0.04613503813743591, 0.2771972715854645, -0.022893797606229782, -0.004454825073480606, -0.03651940077543259, 0.1693079024553299, -0.32577309012413025, 0.01456214115023613, -0.35118597745895386, -0.23616646230220795, -0.2678167521953583, 0.07549280673265457, 0.025897085666656494, -0.20284952223300934, -0.02404976263642311, 0.1850663125514984, -0.12778373062610626, -0.08683261275291443, -0.11353462934494019, 0.005587603896856308, -0.13988220691680908, -0.3941362500190735, -0.11798210442066193, -0.012103624641895294, -0.24830396473407745, 0.18493980169296265, 0.1914009302854538, -0.08058309555053711, 0.17672690749168396, -0.5476824641227722, -0.226119264960289, 0.6404743790626526, 0.3201487958431244, -0.29844409227371216, 0.34177932143211365, 0.09633582830429077, 0.07556754350662231, -0.08454842865467072, -0.15146854519844055, -0.19065441191196442, -0.22380420565605164, -0.005136109888553619, 0.4221968948841095, -0.006881605833768845, -0.34169241786003113, 0.2981855869293213, -0.13436666131019592, -0.12920168042182922, 0.34456667304039, 0.4368108808994293, 0.1201806589961052, -0.26463621854782104, -0.023898683488368988, 0.002883724868297577, -0.22174082696437836, -0.1298329085111618, -0.0037772133946418762, 0.31642216444015503, -0.39801424741744995, -0.3364029824733734, -0.4096203148365021, 0.28789442777633667, 0.15471486747264862, 0.2888862192630768, -0.16977155208587646, 0.1529494673013687, 0.04911383241415024, 0.178585484623909, 0.037985771894454956, -0.10886867344379425, -0.3988645076751709, -0.01991674117743969, 0.09982956945896149, -0.11719923466444016, 0.4359002411365509, 0.31689363718032837, 0.5457473993301392, -0.10814632475376129, 0.1501510888338089, 0.5490451455116272, 0.0071077365428209305, -0.30007204413414, -0.3481164872646332, -0.1577005833387375, -0.043038077652454376, 0.28220558166503906, 0.050851792097091675, -0.18533271551132202, -0.041536591947078705, -0.1131349429488182, -0.015937305986881256, -0.30846884846687317, 0.19716592133045197, 0.16273322701454163, 0.12995482981204987, -0.01379307359457016, 0.05570302531123161, -0.13786065578460693, 0.0384732261300087, 0.06463606655597687, -0.5372589826583862, 0.7299746870994568, -0.10229228436946869, -0.1366157829761505, -0.07434481382369995, 0.026130767539143562, -0.0697258859872818, -0.24835342168807983, 0.29737141728401184, 0.3144087493419647, -0.04450765997171402, 0.11462219059467316, 0.09692713618278503, 0.40410521626472473, 0.05283726006746292, -0.010813926346600056, -0.5280012488365173, 0.38558897376060486, -0.23188011348247528, 0.04674294963479042, 0.16641990840435028, 0.2414042055606842, -0.08353672176599503, 0.2664870619773865, 0.10723455995321274, -0.0027076974511146545, -0.33822372555732727, -0.005924776196479797, 0.28166812658309937, 0.37598201632499695, -0.10429360717535019, 0.0644797533750534, 0.40279045701026917, 0.021228836849331856, 0.11373121291399002, -0.05459793657064438, -0.007896281778812408, 0.4382486939430237, 0.49900421500205994, 0.12664538621902466, 0.16690519452095032, -0.0684899091720581, 0.22211000323295593, -0.18868404626846313, -0.22355405986309052, -0.21504245698451996, 0.4137437343597412, -0.004850272089242935, 0.09994630515575409, 0.2073538601398468, -0.23690353333950043, 0.05469398573040962, 0.6478626728057861, -0.009563956409692764, 0.07874558120965958, 0.22969675064086914, -0.3768913745880127, -0.15857931971549988, 0.004030879586935043, 0.43639078736305237, 0.1648683249950409, 0.35670724511146545, 0.14721526205539703, -0.2150116264820099, 0.008212631568312645, -0.18906110525131226, 0.41663435101509094, 0.09761814028024673, -0.08953499794006348, 0.08204184472560883, 0.19709555804729462, 0.13296684622764587, -0.4703814387321472, -0.5898879170417786, -0.2100898176431656, 0.036570463329553604, -0.1636342704296112, 0.2520120441913605, 0.15673400461673737, -0.40710729360580444, -0.17439976334571838, -0.10252349823713303, -0.35782453417778015, -0.6010374426841736, 0.2924375534057617, 0.08210664987564087, 0.015111982822418213, 0.16499552130699158, -0.24656270444393158, 0.4078143239021301, 0.041611477732658386, 0.021160544827580452, -0.16794200241565704, -0.1695970594882965, -0.15961459279060364, 0.29337552189826965, 0.20693083107471466, -0.03402953967452049, 0.3995896279811859, -0.2816721200942993, 0.2335658222436905, -0.15978366136550903, -0.5361048579216003, 0.1841079443693161, -0.2278120070695877, 0.1953531950712204, 0.2126331776380539, -0.07439397275447845, -0.18199631571769714, -0.3371042311191559, 0.09434430301189423, -0.11131487786769867, -0.09742970764636993, 0.004219522699713707, -0.18221570551395416, -0.03910048305988312, -0.12557154893875122, -0.19402626156806946, -0.03591602295637131, -0.26748955249786377, -0.011037491261959076, 0.08959333598613739, 0.20558863878250122, 0.2853735089302063, -0.36643850803375244, 0.09628964960575104, -0.06115179881453514, -0.031324006617069244, -0.11403293162584305, -0.3368069529533386, 0.5879760980606079, -0.22359144687652588, -0.24236293137073517, -0.3201277256011963, -0.2818028926849365, 0.5380956530570984, -0.2402372658252716, -0.2410571426153183, 0.2149953544139862, -0.16819120943546295, -0.14717574417591095, 0.16366422176361084, 0.16339311003684998, 0.20535418391227722, 0.1416832059621811, -0.22864606976509094, -0.006300028413534164, -0.40431681275367737, 0.09194046258926392, 0.21753540635108948, 0.22022269666194916, -0.11911911517381668, -0.028307296335697174, 0.34504714608192444, 0.23818235099315643, -0.24867138266563416, -0.3982613682746887, 0.14699138700962067, 0.03552570194005966, 0.0036611370742321014, 0.13012805581092834, -0.42462044954299927, -0.06440268456935883, 0.15821179747581482, -0.017145104706287384, 0.4149688482284546, 0.08154896646738052, -0.22485432028770447, 0.034903720021247864, -0.017312992364168167, -0.28147488832473755, -0.16509461402893066, 0.2951687276363373, -0.11453616619110107, 0.3920764923095703, 0.11135783791542053, 0.06769194453954697, -0.32396721839904785, -0.3631025552749634, 0.09488414227962494, -0.1253526210784912, -0.06326746195554733, -0.41512051224708557, -0.21263647079467773, 0.21468901634216309, -0.6452850103378296, 0.33823949098587036, 0.018533162772655487, -0.09230542182922363, -0.20001660287380219, -0.08410392701625824, 0.04921106994152069, 0.05800831690430641, 0.4036545753479004, -0.19829973578453064, -0.24744801223278046, 0.21487681567668915, 0.036553919315338135, -0.30792713165283203, 0.40227606892585754, -0.3446637690067291, -0.04292156547307968, 0.10758467018604279, -0.117216557264328, -0.267855703830719, 0.10328635573387146, 0.32397207617759705, 0.17390325665473938, -0.21452368795871735, -0.15019451081752777, -0.29558756947517395, -0.3215530812740326, -0.15368708968162537, 0.0010412558913230896, -0.36352449655532837, 0.12325345724821091, 0.07578552514314651, -0.05269569531083107, -0.09185421466827393, 0.016839515417814255, 0.5439972281455994, 0.3074394464492798, -0.1526346206665039, -0.05481346324086189, 0.21534086763858795, -0.1551421582698822, 0.06095121428370476, 0.1510668247938156, 0.061992596834897995, -0.029084686189889908, 0.14379355311393738, 0.15245920419692993, -0.22392676770687103, 0.15507477521896362, 0.3152686357498169, 0.1762305647134781, 0.19720648229122162, 0.36344704031944275, 0.059739500284194946, 0.06192744895815849, -0.21800172328948975, 0.22202278673648834, 0.19361227750778198, -0.39107686281204224, -0.3105422854423523, 0.21874144673347473, 0.18457487225532532, -0.18472400307655334, 0.08788477629423141, 0.31738048791885376, -0.08008420467376709, 0.5683186650276184, 0.1026860922574997, 1.1368931531906128, -0.17027647793293, 0.19753453135490417, 0.25270625948905945, -0.04647625982761383, 0.3141149878501892, 0.13400933146476746, 0.22137103974819183, -0.32549726963043213, -0.21423274278640747, -0.02117997407913208, -0.04425562173128128, 0.3171013295650482, -0.0011050142347812653, -0.2288036048412323, 0.2471417635679245, 0.30016255378723145, -0.19376088678836823, -0.04834689944982529, 0.2590266466140747, -0.30424538254737854, -0.4547319710254669, -0.39837491512298584, 0.17493604123592377, 0.0311809740960598, 0.1074848473072052, 0.1397780478000641, -0.15264661610126495, -0.1387214958667755, -0.06758595257997513, 0.026324592530727386, 0.009317900985479355, -0.13410049676895142, -0.06295890361070633, 0.0152952391654253, -0.03321458399295807, 0.3139724135398865, 0.07227037847042084, 0.24668438732624054, 0.011586908251047134, 0.05131912603974342, -0.001923833042383194, -0.18962150812149048, 0.08351556211709976, 0.4373719394207001, -0.28354746103286743, 0.23467320203781128, -0.18874120712280273, -0.2134624719619751, 0.14310306310653687, 0.36729195713996887, -0.2176375836133957, 0.12315240502357483, 0.11177179217338562, 0.4240848422050476, -0.321994423866272, 0.043180882930755615, 0.01090029627084732, -0.26371631026268005, -0.22943289577960968, 0.21784299612045288, 0.12674441933631897, -0.006221460178494453, 0.0902799591422081, 0.1185547262430191, -0.10520211607217789, -0.21316133439540863, 0.22126668691635132, 0.3337833881378174, 0.0537395179271698, 0.14603587985038757, -0.009148530662059784, -0.2860206365585327, -0.22099506855010986, -0.2080833911895752, 0.03744674101471901, -0.6054660677909851, -0.1986483931541443, -0.1349378228187561, -0.19490914046764374, -0.07050721347332001, 0.14413730800151825, 0.24870839715003967, 0.015831392258405685, -0.22620992362499237, -0.08440260589122772, -0.023911498486995697, 0.3097311854362488, -0.3013792932033539, 0.13884834945201874, 0.20813772082328796, 0.08285950124263763, -0.19901826977729797, 0.14758241176605225, -0.483303040266037, 0.1936243623495102, -0.13872237503528595, 0.19248554110527039, -0.013849016278982162, -0.1753956377506256, 0.1831417828798294, 0.029174182564020157, 0.31731563806533813, 0.0171772800385952, -0.31476160883903503, -0.2923358082771301, -0.019578952342271805, 0.08052923530340195, -0.04100498557090759, 0.1013549193739891, -0.12344509363174438, -0.011209359392523766, -0.10915091633796692, -0.2137136310338974, 0.008615577593445778, 0.027537435293197632, 0.03090515360236168, 0.2948176860809326, -0.027015943080186844, 0.15146401524543762, 0.0727032795548439, 0.08666853606700897, -0.015794172883033752, 0.14803078770637512, 0.24289822578430176, 0.3372478485107422, -0.1283496618270874, -0.08372724056243896, -0.14936871826648712, 0.431799978017807, 0.04952816292643547, 0.15504145622253418, 0.2671917974948883, 0.08522245287895203, -0.19575397670269012, 0.35842570662498474, 0.26961997151374817, -0.045106008648872375, -0.051214613020420074, -0.33589860796928406, 0.16155922412872314, 0.3056056797504425, -0.27612048387527466, 0.011000718921422958, 0.008276877924799919, -0.37247875332832336, 0.3423873484134674, 0.4256382882595062, 0.45120248198509216, -0.05383291095495224, 0.015536502003669739, -0.06533849239349365, 0.10262563824653625, 0.16245602071285248, -0.011099105700850487, 0.30914047360420227, 0.03206263855099678, 0.17278635501861572, 0.4167182743549347, -0.10590986907482147, 0.19962093234062195, 0.39956700801849365, 0.26158079504966736, 0.4637831449508667, 0.22872021794319153, 0.16307158768177032, 0.11120545119047165, -0.06333912163972855, 0.4315744936466217, 0.16566695272922516, 0.04518929496407509, 0.23488849401474, 0.3570890426635742, 0.07878308743238449, 0.09640421718358994, 0.1765538901090622, -0.2581937909126282, 0.1926148235797882, -0.03127181529998779, -0.0043512494303286076, -0.21536098420619965, -0.17048129439353943, -0.12435697019100189, -0.22299125790596008, 0.06924524158239365, -0.14749611914157867, 0.23979465663433075, -0.09636838734149933, -0.019144214689731598, -0.09473783522844315, 0.08917848765850067, 0.1316094994544983, 0.2809196710586548, -0.3247554302215576, -0.03302361071109772, 0.2430078387260437, 0.04267798736691475, 0.012014547362923622, 0.4009733498096466, 0.40424835681915283, -0.3516809642314911, -0.09988822042942047, 0.03507152944803238, -0.302185595035553, -0.21087689697742462, -0.14609123766422272, -0.04788032919168472, 0.0007086917757987976, 0.14696137607097626, 0.28666046261787415, 0.23149201273918152, -0.2372944951057434, -0.3218943178653717, 0.3424387574195862, 0.0013114111497998238, -0.09610983729362488, 0.26948082447052, 0.06980767846107483, -0.052552059292793274, -0.07139149308204651, -0.0760866329073906, -0.5513870716094971, -0.21861138939857483, 0.1584799438714981, -0.30416783690452576, 0.09171294420957565, -0.2302621454000473, 0.12489153444766998, -0.13642343878746033, 0.3314935564994812, 0.3782273530960083, -0.014928124845027924, -0.14294971525669098, -0.24925850331783295, -0.30542826652526855, 0.1160217896103859, 0.013223126530647278, -0.010885171592235565, -0.2920773923397064, 0.18031610548496246, 0.3139227628707886, 0.0862816572189331, -0.1378292292356491, -0.08102820813655853, -0.02525096945464611, 0.04779064282774925, -0.41077470779418945, 0.04948919266462326, 0.03980220854282379, 0.10717058926820755, -0.21951639652252197, -0.18634384870529175, -0.07339124381542206, -0.31653445959091187, 0.23260658979415894, -0.23269633948802948, -0.08479619026184082, 0.032783668488264084, 0.32607942819595337, 0.3047824800014496, 0.2209339290857315, 0.30671006441116333, -0.19639289379119873, -0.4265645742416382, 0.12883266806602478, 0.22826822102069855, 0.15689216554164886, 0.2633233368396759, 0.38147157430648804, 0.41371333599090576, 0.16510409116744995, -0.2880512475967407, 0.11582119762897491, 0.5364382266998291, 0.0014754906296730042, 0.2799181640148163, -0.2390308827161789, 0.2803771197795868, 0.03778236359357834, 0.12286322563886642, -0.14105597138404846, 0.30222761631011963, 0.09855517745018005, 0.05110017955303192, -0.11543791741132736, -0.35925132036209106, 0.3537853956222534, -0.3028070628643036, -0.09677311778068542, -0.12241504341363907, 0.16728715598583221, 0.070466548204422, 0.22938135266304016, -0.391085147857666, 0.14761829376220703, 0.2905544936656952, 0.0364314503967762, -0.015358325093984604, 0.3073611259460449, 0.10254733264446259, 0.08695507049560547, -0.10936617851257324, -0.032331205904483795, -0.060741081833839417, -0.30444803833961487, -0.19664105772972107, -0.24412128329277039 ]
https://github.com/huggingface/datasets/issues/3240
Couldn't reach data file for disaster_response_messages
It looks like the dataset isn't available anymore on appen.com The CSV files appear to still be available at https://www.kaggle.com/landlord/multilingual-disaster-response-messages though. It says that the data are under the CC0 license so I guess we can host the dataset elsewhere instead ?
## Describe the bug Following command gives an ConnectionError. ## Steps to reproduce the bug ```python disaster = load_dataset('disaster_response_messages') ``` ## Error ``` ConnectionError: Couldn't reach https://datasets.appen.com/appen_datasets/disaster_response_data/disaster_response_messages_training.csv ``` ## Expected results It should load dataset without an error ## Actual results Specify the actual results or traceback. ## Environment info <!-- You can run the command `datasets-cli env` and copy-and-paste its output below. --> - `datasets` version: - Platform: Google Colab - Python version: 3.7 - PyArrow version:
42
Couldn't reach data file for disaster_response_messages ## Describe the bug Following command gives an ConnectionError. ## Steps to reproduce the bug ```python disaster = load_dataset('disaster_response_messages') ``` ## Error ``` ConnectionError: Couldn't reach https://datasets.appen.com/appen_datasets/disaster_response_data/disaster_response_messages_training.csv ``` ## Expected results It should load dataset without an error ## Actual results Specify the actual results or traceback. ## Environment info <!-- You can run the command `datasets-cli env` and copy-and-paste its output below. --> - `datasets` version: - Platform: Google Colab - Python version: 3.7 - PyArrow version: It looks like the dataset isn't available anymore on appen.com The CSV files appear to still be available at https://www.kaggle.com/landlord/multilingual-disaster-response-messages though. It says that the data are under the CC0 license so I guess we can host the dataset elsewhere instead ?
[ -0.396984338760376, 0.08556622266769409, -0.16140279173851013, 0.24810542166233063, 0.24575954675674438, -0.036262571811676025, 0.31503725051879883, 0.03197712451219559, -0.1832847148180008, 0.10359326750040054, -0.003242645412683487, 0.10297912359237671, -0.0037675974890589714, 0.07434704899787903, 0.04953108727931976, 0.1760583519935608, -0.023667655885219574, 0.05510947108268738, -0.10056471824645996, 0.20734740793704987, -0.031128287315368652, 0.14352603256702423, -0.2613773047924042, 0.10491859912872314, -0.4657372832298279, -0.08971960842609406, -0.26575973629951477, 0.14600324630737305, -0.20906437933444977, -0.27357548475265503, 0.4770916700363159, -0.029144633561372757, 0.44014760851860046, 0.3828820288181305, -0.00011363428347976878, 0.08643500506877899, 0.29131680727005005, -0.1843007355928421, -0.5066481232643127, -0.43668437004089355, -0.1350797712802887, -0.5417951345443726, -0.06927797943353653, -0.19852501153945923, -0.16172891855239868, 0.16122981905937195, 0.1290532499551773, -0.28014039993286133, 0.36762815713882446, 0.6152134537696838, 0.16034792363643646, -0.07463236153125763, 0.344693660736084, 0.025772010907530785, -0.03693313151597977, -0.12628450989723206, 0.0556783452630043, 0.6446584463119507, 0.3505103290081024, -0.16989773511886597, 0.1162228211760521, 0.2092895209789276, 0.08212431520223618, -0.042147647589445114, -0.040028803050518036, 0.15409210324287415, -0.10053587704896927, -0.2874975800514221, 0.2255031168460846, 0.1140587106347084, 0.7865208387374878, -0.09201278537511826, -0.39181533455848694, -0.12226062268018723, 0.20955562591552734, -0.1445355862379074, 0.45980435609817505, 0.2943410873413086, -0.22722497582435608, 0.29461103677749634, -0.17993982136249542, -0.4011436998844147, -0.3395637273788452, 0.1426122486591339, -0.28292176127433777, 0.41657117009162903, -0.2716354429721832, 0.019864849746227264, -0.09877963364124298, 0.025231018662452698, 0.0796056017279625, 0.27911943197250366, 0.1296120584011078, 0.15302757918834686, -0.29268333315849304, -0.04584866762161255, -0.2898762822151184, -0.1960432529449463, 0.011071689426898956, -0.22318725287914276, 0.10800951719284058, -0.12946712970733643, -0.2137911021709442, 0.1712617576122284, 0.30478498339653015, -0.013761262409389019, -0.017326846718788147, 0.13512645661830902, 0.4712277054786682, 0.28995153307914734, -0.1058378666639328, -0.07551158219575882, -0.2736606299877167, -0.13526935875415802, -0.17748193442821503, 0.2709311246871948, 0.19131658971309662, -0.12797988951206207, -0.3298487961292267, 0.15456229448318481, -0.34563955664634705, 0.0073893568478524685, -0.05314408615231514, 0.3513730466365814, -0.3044223189353943, 0.1348913013935089, 0.10394267737865448, 0.031818751245737076, 0.02097294293344021, -0.23272979259490967, 0.020370876416563988, -0.016959015280008316, -0.20971249043941498, -0.06102669984102249, 0.12556466460227966, -0.050411421805620193, 0.3136101961135864, -0.06134876236319542, 0.16934671998023987, -0.021806707605719566, 0.04983832687139511, -0.09929431974887848, -0.2048037350177765, 0.21594776213169098, -0.012520013377070427, 0.10114962607622147, 0.12827926874160767, -0.29556360840797424, 0.05376908928155899, 0.030489038676023483, -0.6815571784973145, -0.43458181619644165, -0.18596890568733215, 0.16119033098220825, -0.08620575070381165, 0.07718385756015778, -0.21623992919921875, 0.03669443726539612, 0.0581783689558506, -0.24467039108276367, 0.12090763449668884, -0.08540711551904678, -0.0060461461544036865, -0.30395445227622986, 0.3129097819328308, 0.49969857931137085, -0.6247627139091492, 0.12706401944160461, -0.08226633816957474, 0.09408822655677795, 0.06222522631287575, 0.06890843063592911, -0.2570066452026367, -0.004562608897686005, -0.44275209307670593, -0.1511281579732895, 0.1291123926639557, -0.2053651511669159, -0.6268681883811951, 0.1775321066379547, -0.3933197259902954, -0.1377158761024475, -0.06373875588178635, -0.11854484677314758, -0.029906760901212692, 0.0616244375705719, 0.5025729537010193, 0.08457458019256592, 0.07245331257581711, -0.09138531237840652, -0.11514812707901001, -0.15632787346839905, 0.010013652965426445, 0.00040721893310546875, 0.007859572768211365, -0.19129648804664612, 0.1803659200668335, -0.1869179606437683, 0.32925745844841003, -0.1000998318195343, 0.18066726624965668, 0.25126078724861145, 0.17269347608089447, 0.11224068701267242, -0.002488576341420412, -0.09183067828416824, -0.19365301728248596, 0.24810320138931274, -0.002301407977938652, 0.1520296186208725, -0.4120643734931946, -0.04483869671821594, -0.13226062059402466, 0.10815797001123428, -0.16542752087116241, -0.13881586492061615, 0.14742106199264526, 0.059927381575107574, -0.02713022008538246, 0.3393191695213318, -0.21794545650482178, 0.6206421852111816, -0.22241371870040894, 0.04542302340269089, 0.03391004353761673, 0.3739578127861023, -0.18825453519821167, 0.0009403405711054802, 0.06648504734039307, 0.09601788222789764, 0.05777397006750107, -0.05432563275098801, -0.05247657373547554, 0.1427242010831833, -0.14776603877544403, 0.39358729124069214, 0.24238282442092896, -0.040085822343826294, 0.39261749386787415, -0.2006506621837616, 0.20658832788467407, 0.05229020491242409, 0.11024635285139084, 0.18425896763801575, 0.24610042572021484, 0.41604071855545044, 0.2379680871963501, 0.14105989038944244, 0.18342728912830353, 0.3020607531070709, 0.27085065841674805, 0.19531595706939697, -0.03024105355143547, -0.042021363973617554, 0.3442125916481018, -0.13607561588287354, 0.2595062851905823, -0.17027878761291504, -0.2516418695449829, 0.2048105001449585, 0.27264851331710815, -0.13450200855731964, 0.14787112176418304, 0.1649140566587448, -0.18113815784454346, -0.21991941332817078, 0.331487774848938, 0.1230207234621048, 0.5469084978103638, -0.0323457345366478, 0.04658098146319389, 0.14077278971672058, 0.02836718037724495, -0.16544823348522186, 0.30977579951286316, -0.011371970176696777, 0.3063213527202606, 0.13168485462665558, 0.2388043850660324, 0.12824632227420807, -0.20266500115394592, -0.4531945288181305, -0.06965279579162598, 0.1392037570476532, -0.24847003817558289, 0.4003359377384186, -0.3243653178215027, -0.20860540866851807, -0.09485381096601486, -0.20285041630268097, -0.32120203971862793, -0.2442270666360855, -0.03909043222665787, -0.04170837625861168, 0.09297558665275574, -0.11122336983680725, -0.08761554956436157, 0.11241507530212402, 0.015219492837786674, 0.03438945859670639, -0.13302630186080933, -0.22466392815113068, -0.29344412684440613, 0.09752801060676575, 0.09110186994075775, -0.33010587096214294, 0.21610571444034576, -0.2374526411294937, -0.07979367673397064, -0.218164324760437, -0.2905413806438446, 0.20486460626125336, -0.057563550770282745, 0.23402440547943115, 0.16964082419872284, 0.3792232871055603, -0.5597906708717346, -0.03987612575292587, 0.2884007692337036, -0.1847720891237259, -0.13656868040561676, -0.0560724101960659, -0.19522447884082794, 0.09481942653656006, 0.21036532521247864, -0.48176172375679016, -0.8588474988937378, -0.28925979137420654, 0.03592526540160179, -0.2112615406513214, 0.1312989592552185, 0.08538134396076202, 0.0323059968650341, 0.29352670907974243, 0.026344219222664833, 0.037600163370370865, -0.14226025342941284, -0.4129859507083893, 0.1830308437347412, -0.30798524618148804, -0.25458839535713196, 0.20750018954277039, 0.11533160507678986, 0.24881373345851898, 0.08006705343723297, -0.3850054144859314, -0.2653522193431854, 0.1503930389881134, 0.0396990142762661, 0.10276607424020767, -0.08780843764543533, 0.15323489904403687, -0.15155074000358582, 0.029178427532315254, 0.09765210002660751, -0.07636627554893494, -0.17032968997955322, 0.39058718085289, 0.3727980852127075, 0.15783607959747314, 0.20198166370391846, 0.059267882257699966, 0.8012973070144653, 0.278227299451828, 0.07917588204145432, 0.33859190344810486, -0.0428924486041069, 0.31077465415000916, 0.049734603613615036, -0.3727559745311737, 0.20351892709732056, -0.1720290184020996, -0.3119316101074219, -0.010174281895160675, 0.1933041512966156, -0.20897243916988373, -0.4810192883014679, -0.22300398349761963, -0.42262089252471924, -0.3376040458679199, 0.02027348428964615, -0.07737985998392105, 0.20496559143066406, -0.04671872407197952, -0.1842229664325714, -0.043556004762649536, -0.2094210684299469, -0.19094403088092804, 0.521066427230835, -0.011914126574993134, 0.1306164413690567, -0.24162165820598602, -0.6516551971435547, -0.4817395806312561, 0.42722952365875244, 0.10794977843761444, 0.3860960006713867, -0.11320962011814117, 0.2503984570503235, 0.07806365936994553, -0.1847084015607834, 0.6226152181625366, -0.45159924030303955, -0.1356942057609558, -0.14304451644420624, 0.3619309067726135, -0.23110425472259521, -0.08864948153495789, 0.08275613188743591, 0.4362933337688446, 0.5220264792442322, 0.09147283434867859, -0.03890801966190338, 0.142297625541687, -0.06372286379337311, 0.19675655663013458, -0.12097680568695068, 0.13429754972457886, -0.20498549938201904, -0.49880775809288025, -0.20301595330238342, 0.17447125911712646, -0.11985224485397339, 0.10397919267416, 0.031817905604839325, -0.19253626465797424, 0.18557824194431305, 0.1410730481147766, -0.062386080622673035, 0.0357610285282135, 0.03934100642800331, -0.09154511243104935, 0.01727069914340973, 0.2048373520374298, 0.294855535030365, 0.44212013483047485, 0.7211831212043762, -0.09414143860340118, -0.4395548701286316, 0.1185370683670044, -0.0621560700237751, 0.4387466013431549, 0.4276220202445984, -0.15188291668891907, -0.0878874883055687, 0.32762962579727173, 0.084062360227108, -0.016329515725374222, 0.0176874790340662, 0.14055325090885162, 0.27161073684692383, -0.5706239938735962, -0.3748261630535126, 0.2106226086616516, 0.02179182693362236, 0.008888117969036102, 0.029547307640314102, -0.08556486666202545, -0.1529066115617752, 0.28220027685165405, -0.05404681712388992, 1.040992021560669, -0.022446341812610626, 0.12928012013435364, 0.13267235457897186, 0.2215297669172287, 0.6745801568031311, -0.41362810134887695, 0.2915470600128174, -0.13305896520614624, -0.18451587855815887, -0.21234001219272614, -0.08990535140037537, 0.13762232661247253, 0.0899537056684494, -0.09505623579025269, 0.42470112442970276, 0.03939202427864075, 0.34321796894073486, 0.004234553314745426, 0.014963537454605103, -0.3670530915260315, 0.04453989863395691, -0.5556017756462097, 0.11768749356269836, 0.03591154143214226, 0.3604162335395813, -0.12901028990745544, -0.11216554790735245, -0.36113241314888, -0.3149850368499756, -0.4891163110733032, 0.04700910300016403, -0.44443386793136597, 0.039385464042425156, -0.2156190574169159, -0.35276830196380615, -0.07574440538883209, 0.5982552170753479, 0.23791392147541046, 0.21973374485969543, -0.2586992084980011, 0.076694056391716, -0.16038063168525696, -0.28932201862335205, 0.10958961397409439, -0.10942044109106064, 0.1668359935283661, -0.17054742574691772, -0.39228564500808716, 0.38320398330688477, 0.07398304343223572, -0.2648201584815979, 0.30600273609161377, 0.16305994987487793, 0.13178721070289612, 0.14280854165554047, 0.1733502596616745, -0.10317583382129669, 0.04434598609805107, -0.10036466270685196, 0.06899438798427582, 0.16570119559764862, 0.10874497890472412, -0.02008255571126938, 0.058386050164699554, -0.05867709964513779, -0.10299703478813171, 0.5097295641899109, 0.11341403424739838, 0.057173483073711395, 0.15769422054290771, 0.2839536666870117, -0.21187563240528107, -0.16659165918827057, 0.02200523018836975, -0.30678388476371765, -0.2613438665866852, -0.09751654416322708, 0.32269421219825745, 0.291668176651001, -0.20832329988479614, 0.05687787011265755, 0.1771794706583023, -0.055092908442020416, -0.2221388816833496, -0.7540889978408813, -0.4068022668361664, 0.19817480444908142, -0.0004772394895553589, 0.0565725676715374, 0.3591630160808563, -0.3432614207267761, 0.11128027737140656, -0.14459073543548584, -0.256966769695282, 0.0648704543709755, -0.23406927287578583, -0.10496482253074646, 0.026603268459439278, -0.029515400528907776, 0.4203743040561676, -0.028830336406826973, 0.07341369241476059, 0.04733738303184509, -0.020024333149194717, -0.13121619820594788, 0.11062011122703552, 0.16889840364456177, 0.201026052236557, -0.08814118057489395, -0.041251473128795624, -0.3965951204299927, -0.019979823380708694, -0.03457888960838318, 0.10028065741062164, 0.11062905937433243, 0.09826024621725082, -0.13530966639518738, -0.31619274616241455, 0.0224703848361969, -0.21778082847595215, 0.3253798484802246, 0.07721146941184998, 0.3269047737121582, 0.1508720964193344, 0.31805726885795593, 0.2000051885843277, -0.017250224947929382, -0.1523062139749527, 0.1527702510356903, -0.42823654413223267, 0.17855852842330933, 0.49887287616729736, -0.26130568981170654, -0.04136655107140541, -0.023007091134786606, 0.10063345730304718, 0.31666383147239685, -0.30832281708717346, 0.2235528975725174, 0.45384347438812256, 0.138894721865654, -0.3656766414642334, -0.09222734719514847, 0.2330024689435959, 0.026924755424261093, -0.04496687278151512, 0.05144047737121582, 0.34677228331565857, -0.2590325176715851, -0.05139322578907013, 0.09839834272861481, 0.46602925658226013, 0.05019079148769379, 0.13478609919548035, 0.30789944529533386, 0.1772606074810028, 0.33071038126945496, 0.13770057260990143, 0.12469550967216492, 0.20407328009605408, 0.10976807028055191, -0.2202606499195099, 0.18099620938301086, 0.05650917440652847, 0.06776653230190277, 0.05461931228637695, -0.4621719419956207, 0.2628989815711975, 0.2275751233100891, -0.3875960111618042, -0.020276010036468506, -0.042816802859306335, 0.6732048988342285, -0.4109528660774231, 0.10593748092651367, -0.4075266420841217, 0.15860672295093536, -0.2656112015247345, 0.1664578765630722, -0.12385813891887665, -0.3106438219547272, 0.09585054218769073, 0.06662458181381226, 0.010312680155038834, -0.1186530739068985, 0.21634036302566528, 0.0744982361793518, -0.13896749913692474, -0.4885362386703491, 0.163056880235672, 0.18444156646728516, 0.03328882157802582, -0.0855245441198349, 0.27424758672714233, -0.014296464622020721, 0.0015789270401000977, 0.08971674740314484, 0.22331602871418, 0.5020910501480103, 0.29420799016952515, -0.0769307017326355, 0.28759050369262695, 0.03244250267744064, -0.17347590625286102, -0.1419629603624344, 0.1859118789434433, 0.24003267288208008, -0.282664954662323, 0.29552432894706726, 0.1769203543663025, -0.045662764459848404, 0.3597593605518341, 0.2055131196975708, 0.3277999758720398, 0.04626721888780594, -0.07511331886053085, -0.1557120382785797, 0.02825012058019638, -0.13765151798725128, -0.11024024337530136, -0.5398246049880981, -0.03936672583222389, 0.2620682418346405, -0.14151537418365479, 0.2069557011127472, -0.18973712623119354, 0.06228754669427872, -0.17819790542125702, 0.22263436019420624, 0.47025322914123535, 0.3991047143936157, -0.04832300916314125, -0.13078051805496216, -0.48510846495628357, 0.18875406682491302, -0.11263874173164368, 0.10840499401092529, -0.24082590639591217, -0.23402109742164612, 0.07839251309633255, 0.22891569137573242, 0.30320167541503906, 0.14374779164791107, -0.14077869057655334, 0.22208431363105774, -0.34160926938056946, -0.3118329346179962, 0.30712080001831055, 0.3641045093536377, -0.13014432787895203, -0.2299288511276245, 0.16289958357810974, -0.1736433357000351, -0.08571038395166397, -0.13187989592552185, 0.010660164058208466, -0.03281757980585098, -0.36499565839767456, 0.6757561564445496, 0.06945665925741196, 0.49524420499801636, -0.10238870978355408, -0.17446449398994446, -0.24341586232185364, -0.0441322959959507, -0.016476014629006386, 0.11996778845787048, 0.31526559591293335, 0.2233087122440338, -0.2156074494123459, -0.021449323743581772, -0.1464717984199524, 0.018648553639650345, 0.06905519962310791, 0.24985253810882568, -0.008079824037849903, -0.19816656410694122, -0.09356153011322021, 0.011925014667212963, -0.12589560449123383, 0.0009176395833492279, -0.042924024164676666, -0.1045900359749794, 0.0037908032536506653, -0.2210768461227417, 0.35416513681411743, -0.15931564569473267, 0.07112613320350647, -0.24390077590942383, 0.24115775525569916, -0.1695692241191864, 0.29511481523513794, -0.3391878008842468, 0.085760198533535, 0.46404024958610535, 0.098182313144207, -0.3404058516025543, 0.07305791974067688, -0.0546671561896801, -0.00964423269033432, -0.1780484914779663, 0.6957086324691772, -0.2088639736175537, -0.23701491951942444, 0.07666781544685364, -0.18991239368915558 ]
https://github.com/huggingface/datasets/issues/3236
Loading of datasets changed in #3110 returns no examples
Hi @eladsegal, thanks for reporting. I am sorry, but I can't reproduce the bug: ``` In [1]: from datasets import load_dataset In [2]: ds = load_dataset("qasper") Downloading: 5.11kB [00:00, ?B/s] Downloading and preparing dataset qasper/qasper (download: 9.88 MiB, generated: 35.11 MiB, post-processed: Unknown size, total: 44.99 MiB) to .cache\qasper\qasper\0.1.0\b99154d2a15aa54bfc669f82b2eda715a2e342e81023d39613b0e2920fdb3ad8... Dataset qasper downloaded and prepared to .cache\qasper\qasper\0.1.0\b99154d2a15aa54bfc669f82b2eda715a2e342e81023d39613b0e2920fdb3ad8. Subsequent calls will reuse this data. 100%|████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 2/2 [00:00<?, ?it/s] In [3]: ds Out[3]: DatasetDict({ train: Dataset({ features: ['id', 'title', 'abstract', 'full_text', 'qas'], num_rows: 888 }) validation: Dataset({ features: ['id', 'title', 'abstract', 'full_text', 'qas'], num_rows: 281 }) }) ``` This makes me suspect that the origin of the problem might be the cache: I didn't have this dataset in my cache, although I guess you already had it, before the code change introduced by #3110. @lhoestq might it be possible that the code change introduced by #3110 makes "inaccessible" all previously cached TAR-based datasets? - Before the caching system downloaded and extracted the tar dataset - Now it only downloads the tar dataset (no extraction is done)
## Describe the bug Loading of datasets changed in https://github.com/huggingface/datasets/pull/3110 returns no examples: ```python DatasetDict({ train: Dataset({ features: ['id', 'title', 'abstract', 'full_text', 'qas'], num_rows: 0 }) validation: Dataset({ features: ['id', 'title', 'abstract', 'full_text', 'qas'], num_rows: 0 }) }) ``` ## Steps to reproduce the bug Load any of the datasets that were changed in https://github.com/huggingface/datasets/pull/3110: ```python from datasets import load_dataset load_dataset("qasper") # The problem only started with the commit of #3110 load_dataset("qasper", revision="b6469baa22c174b3906c631802a7016fedea6780") ``` ## Expected results ```python DatasetDict({ train: Dataset({ features: ['id', 'title', 'abstract', 'full_text', 'qas'], num_rows: 888 }) validation: Dataset({ features: ['id', 'title', 'abstract', 'full_text', 'qas'], num_rows: 281 }) }) ``` Which can be received when specifying revision of the commit before https://github.com/huggingface/datasets/pull/3110: ```python from datasets import load_dataset load_dataset("qasper", revision="acfe2abda1ca79f0ce5c1896aa83b4b78af76b7d") ``` ## Environment info <!-- You can run the command `datasets-cli env` and copy-and-paste its output below. --> - `datasets` version: 1.15.2.dev0 (master) - Python version: 3.8.10 - PyArrow version: 3.0.0
173
Loading of datasets changed in #3110 returns no examples ## Describe the bug Loading of datasets changed in https://github.com/huggingface/datasets/pull/3110 returns no examples: ```python DatasetDict({ train: Dataset({ features: ['id', 'title', 'abstract', 'full_text', 'qas'], num_rows: 0 }) validation: Dataset({ features: ['id', 'title', 'abstract', 'full_text', 'qas'], num_rows: 0 }) }) ``` ## Steps to reproduce the bug Load any of the datasets that were changed in https://github.com/huggingface/datasets/pull/3110: ```python from datasets import load_dataset load_dataset("qasper") # The problem only started with the commit of #3110 load_dataset("qasper", revision="b6469baa22c174b3906c631802a7016fedea6780") ``` ## Expected results ```python DatasetDict({ train: Dataset({ features: ['id', 'title', 'abstract', 'full_text', 'qas'], num_rows: 888 }) validation: Dataset({ features: ['id', 'title', 'abstract', 'full_text', 'qas'], num_rows: 281 }) }) ``` Which can be received when specifying revision of the commit before https://github.com/huggingface/datasets/pull/3110: ```python from datasets import load_dataset load_dataset("qasper", revision="acfe2abda1ca79f0ce5c1896aa83b4b78af76b7d") ``` ## Environment info <!-- You can run the command `datasets-cli env` and copy-and-paste its output below. --> - `datasets` version: 1.15.2.dev0 (master) - Python version: 3.8.10 - PyArrow version: 3.0.0 Hi @eladsegal, thanks for reporting. I am sorry, but I can't reproduce the bug: ``` In [1]: from datasets import load_dataset In [2]: ds = load_dataset("qasper") Downloading: 5.11kB [00:00, ?B/s] Downloading and preparing dataset qasper/qasper (download: 9.88 MiB, generated: 35.11 MiB, post-processed: Unknown size, total: 44.99 MiB) to .cache\qasper\qasper\0.1.0\b99154d2a15aa54bfc669f82b2eda715a2e342e81023d39613b0e2920fdb3ad8... Dataset qasper downloaded and prepared to .cache\qasper\qasper\0.1.0\b99154d2a15aa54bfc669f82b2eda715a2e342e81023d39613b0e2920fdb3ad8. Subsequent calls will reuse this data. 100%|████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 2/2 [00:00<?, ?it/s] In [3]: ds Out[3]: DatasetDict({ train: Dataset({ features: ['id', 'title', 'abstract', 'full_text', 'qas'], num_rows: 888 }) validation: Dataset({ features: ['id', 'title', 'abstract', 'full_text', 'qas'], num_rows: 281 }) }) ``` This makes me suspect that the origin of the problem might be the cache: I didn't have this dataset in my cache, although I guess you already had it, before the code change introduced by #3110. @lhoestq might it be possible that the code change introduced by #3110 makes "inaccessible" all previously cached TAR-based datasets? - Before the caching system downloaded and extracted the tar dataset - Now it only downloads the tar dataset (no extraction is done)
[ 0.04819932207465172, -0.08699776232242584, -0.024228841066360474, 0.28186553716659546, 0.32402777671813965, -0.027351204305887222, 0.27424147725105286, 0.23747539520263672, 0.17098529636859894, 0.20155426859855652, -0.07156755775213242, 0.3162328004837036, -0.04232828691601753, 0.17204652726650238, 0.107111357152462, -0.2534901201725006, 0.11015110462903976, 0.13586513698101044, -0.309677392244339, -0.017404083162546158, -0.031213687732815742, 0.3098748028278351, -0.297730952501297, -0.09264826774597168, -0.2869769334793091, 0.21200546622276306, -0.31421834230422974, 0.1809692680835724, -0.14634495973587036, -0.37781956791877747, 0.3804137110710144, 0.08570219576358795, 0.14202189445495605, 0.6262404918670654, -0.00011086848098784685, 0.17101524770259857, 0.16437768936157227, -0.10097566246986389, -0.2533082067966461, -0.4094514846801758, -0.07174703478813171, -0.4076807200908661, 0.13796843588352203, -0.0840170755982399, -0.3382483124732971, -0.325094610452652, -0.20672233402729034, -0.10293164104223251, 0.4555371403694153, 0.3552957773208618, 0.24130231142044067, 0.4862981140613556, 0.044114384800195694, -0.35154426097869873, 0.013459376990795135, -0.10099044442176819, -0.010846484452486038, 0.017969142645597458, 0.16588625311851501, 0.12143594026565552, 0.09179157763719559, 0.1937301754951477, 0.1166708916425705, -0.14387883245944977, 0.14370054006576538, -0.10310282558202744, -0.164552241563797, -0.16116975247859955, 0.03257369250059128, 0.3317509889602661, 0.417381227016449, -0.20560932159423828, -0.5523958802223206, -0.3343690037727356, -0.0657658576965332, -0.3471265435218811, 0.10690668225288391, 0.10823667049407959, 0.07652750611305237, 0.25804224610328674, -0.19722382724285126, 0.10335201770067215, -0.0616275928914547, 0.0491025447845459, -0.25575700402259827, 0.07303221523761749, -0.11914847791194916, -0.12834733724594116, -0.0014370977878570557, -0.04176092892885208, -0.10489194840192795, 0.015495802275836468, -0.0036514438688755035, 0.15013693273067474, -0.43189680576324463, 0.055430471897125244, 0.23755553364753723, 0.012555178254842758, -0.01468556746840477, 0.238398015499115, 0.2823122441768646, 0.2580578625202179, -0.101495660841465, 0.042657386511564255, 0.055312979966402054, 0.430795282125473, 0.0989549458026886, -0.011281326413154602, 0.3555489778518677, 0.39031654596328735, -0.0860641822218895, -0.09213025122880936, -0.034975677728652954, -0.18792256712913513, 0.11010754108428955, 0.050720661878585815, 0.27344071865081787, -0.20166705548763275, -0.23222322762012482, 0.23009532690048218, -0.23713913559913635, -0.07564546167850494, 0.028555121272802353, 0.507034182548523, -0.07799119502305984, 0.08678800612688065, 0.034564755856990814, 0.17597919702529907, -0.15026918053627014, -0.30060917139053345, -0.4464168846607208, -0.03168972581624985, -0.32549819350242615, -0.09989909827709198, 0.27234306931495667, -0.19603247940540314, 0.4132772386074066, 0.0805029571056366, -0.14482328295707703, -0.06514804065227509, 0.06244232505559921, 0.19924063980579376, 0.1993405520915985, 0.2849487066268921, -0.059513673186302185, -0.010659764520823956, 0.29171374440193176, -0.05834390968084335, 0.00712200254201889, 0.04807943105697632, -0.24291002750396729, -0.27833810448646545, -0.11201447248458862, 0.26651403307914734, -0.46140241622924805, -0.02281210571527481, -0.022466696798801422, 0.18836045265197754, 0.0015458166599273682, -0.05246733874082565, 0.03706619143486023, -0.12953422963619232, -0.036048345267772675, -0.03669415041804314, 0.4575088918209076, 0.45337212085723877, -0.1228640228509903, -0.3646812438964844, 0.21558019518852234, -0.09418803453445435, 0.008019790053367615, 0.021370533853769302, -0.006280258763581514, 0.08745904266834259, -0.2322482168674469, -0.12200461328029633, 0.28580552339553833, -0.24658988416194916, -0.4048400819301605, -0.07660423219203949, -0.021187473088502884, 0.4242132902145386, 0.20833081007003784, -0.25259312987327576, 0.024639546871185303, 0.0277145653963089, 0.12717202305793762, -0.0023789089173078537, 0.26059725880622864, 0.08644933998584747, -0.1792174130678177, -0.14967632293701172, 0.03138149902224541, -0.008717609569430351, 0.04632348567247391, 0.23638185858726501, -0.046051107347011566, -0.14256948232650757, 0.31980839371681213, -0.26297900080680847, -0.11147453635931015, 0.2994381785392761, 0.3906705677509308, 0.03349389135837555, 0.20754513144493103, -0.21019983291625977, -0.5983008742332458, 0.42618972063064575, 0.008391197770833969, 0.17369630932807922, 0.10646668821573257, -0.1905423104763031, -0.3390613794326782, -0.03199400007724762, -0.21738387644290924, -0.4623183012008667, 0.14434200525283813, 0.17128422856330872, 0.31135863065719604, 0.11330968141555786, -0.2209651619195938, 0.47827064990997314, -0.13914573192596436, 0.24661238491535187, -0.42443346977233887, 0.3553304672241211, 0.04948589205741882, -0.15859392285346985, 0.0004652850329875946, 0.37904930114746094, 0.08950452506542206, -0.2791752219200134, -0.03193485364317894, 0.4426726698875427, 0.08483044058084488, 0.12699134647846222, -0.16657087206840515, 0.034146830439567566, 0.3217850923538208, 0.10635881125926971, -0.05022376775741577, 0.1898234486579895, -0.06287483870983124, 0.14352038502693176, -0.3038610517978668, 0.4575382471084595, 0.008514754474163055, 0.1595538854598999, 0.25687915086746216, -0.043040044605731964, 0.16834452748298645, -0.11688163876533508, -0.3479304611682892, -0.247915580868721, 0.21994620561599731, -0.29615283012390137, 0.2113559991121292, 0.12425582110881805, -0.40705716609954834, 0.05415874347090721, 0.37906327843666077, 0.01974606141448021, 0.046270471066236496, -0.023337766528129578, -0.21029365062713623, 0.03643663972616196, 0.3277457058429718, 0.13162840902805328, 0.25617462396621704, 0.2758215665817261, -0.05191678926348686, 0.12118363380432129, -0.054418206214904785, -0.20136658847332, 0.1555202156305313, -0.026405416429042816, -0.12247040867805481, 0.23154878616333008, 0.16160352528095245, 0.09366403520107269, -0.4347332715988159, 0.09159111976623535, -0.06647130846977234, 0.16182918846607208, -0.4015600085258484, -0.009128939360380173, -0.3828182816505432, -0.05571325868368149, -0.17768391966819763, -0.25739380717277527, 0.013449354097247124, -0.3274969160556793, 0.029093753546476364, 0.14186041057109833, -0.16217871010303497, 0.27849626541137695, -0.06688542664051056, 0.09949010610580444, -0.025930840522050858, 0.13420110940933228, -0.2214835286140442, -0.041421327739953995, -0.2053791880607605, 0.08151504397392273, -0.07849583774805069, -0.019277215003967285, 0.18022587895393372, -0.32125672698020935, -0.04080677777528763, -0.2744917869567871, -0.5607582330703735, 0.03277153521776199, -0.059664152562618256, 0.3699053227901459, 0.18612179160118103, 0.037841420620679855, -0.07876139879226685, -0.028003521263599396, 0.31175240874290466, -0.09955242276191711, -0.3088870346546173, 0.1620040237903595, 0.04371451213955879, 0.050608325749635696, -0.32228243350982666, -0.6019359827041626, -0.051994822919368744, -0.3921588957309723, 0.21886929869651794, -0.015108708292245865, -0.012924917042255402, 0.330697625875473, 0.17657038569450378, 0.24071446061134338, -0.03588895499706268, 0.18847765028476715, -0.18563935160636902, -0.23668095469474792, 0.2083817720413208, -0.32246536016464233, -0.5175804495811462, -0.09954972565174103, -0.06821341812610626, 0.17494867742061615, -0.07062383741140366, -0.401883065700531, -0.4492528438568115, -0.2838638424873352, 0.2869093716144562, 0.08836487680673599, 0.1963796615600586, 0.31953465938568115, -0.017048122361302376, -0.08276253938674927, -0.236519455909729, -0.24414998292922974, 0.0866851881146431, -0.039627112448215485, -0.01303333044052124, -0.13889124989509583, 0.30853214859962463, -0.040893491357564926, 0.5791707634925842, 0.24966475367546082, -0.016872849315404892, 0.5041948556900024, -0.11280722171068192, 0.47349265217781067, -0.25173795223236084, -0.35429689288139343, 0.01754491589963436, -0.07911281287670135, 0.16679063439369202, 0.11219349503517151, 0.025382738560438156, 0.2566159665584564, -0.21264639496803284, 0.04066220298409462, -0.23563724756240845, -0.2202085554599762, -0.20331060886383057, -0.12542006373405457, 0.18550758063793182, 0.13362780213356018, 0.22324061393737793, -0.1398864984512329, 0.15172448754310608, 0.15621186792850494, 0.25254255533218384, 0.28199121356010437, -0.03822114318609238, -0.5950143337249756, 0.07676655054092407, -0.3939020037651062, 0.13976383209228516, -0.11325568705797195, 0.18279321491718292, 0.09986481070518494, -0.3451109230518341, 0.025728724896907806, -0.03513849899172783, 0.7139859199523926, 0.04234505444765091, -0.03256269544363022, 0.18725241720676422, -0.3037378489971161, -0.4642009437084198, -0.2971777617931366, -0.2848602533340454, 0.03551904484629631, 0.1110168993473053, 0.5587166547775269, -0.24621540307998657, -0.20491760969161987, 0.10058758407831192, 0.15352901816368103, -0.11860549449920654, -0.07743172347545624, -0.39904123544692993, -0.14160801470279694, -0.29913607239723206, 0.02442850172519684, -0.11268764734268188, 0.3314484655857086, -0.3967136740684509, -0.04429757967591286, -0.09741523861885071, -0.08794474601745605, 0.27554982900619507, 0.3371760845184326, 0.46420490741729736, -0.004177931696176529, 0.18418076634407043, 0.14600184559822083, 0.23035483062267303, -0.04926387220621109, 0.5531159043312073, -0.21302558481693268, -0.4674658179283142, 0.0244179405272007, 0.09859851747751236, 0.19192375242710114, 0.2839534878730774, -0.024009060114622116, -0.010320737957954407, 0.0334598682820797, 0.16606059670448303, -0.22199565172195435, 0.11534994840621948, 0.25224533677101135, 0.21178266406059265, -0.19726991653442383, -0.360076904296875, 0.4063868820667267, 0.20452849566936493, -0.08241276443004608, 0.16174271702766418, 0.36265647411346436, -0.272465318441391, 0.1963346302509308, -0.07353576272726059, 0.5536627173423767, 0.14967846870422363, 0.11127494275569916, 0.4936063885688782, -0.15410394966602325, 0.43076828122138977, 0.02828650176525116, 0.07832717895507812, -0.3261825740337372, -0.4324312210083008, 0.07431752234697342, -0.14201965928077698, 0.25430911779403687, -0.09361864626407623, -0.2937712073326111, 0.24257774651050568, -0.06144334375858307, 0.42283928394317627, 0.08242659270763397, -0.03392539545893669, -0.13023243844509125, 0.03504740446805954, -0.44566574692726135, 0.16467051208019257, 0.15672263503074646, 0.29324913024902344, -0.09375259280204773, -0.003961327485740185, -0.1935095489025116, -0.21966786682605743, -0.08303134143352509, 0.014485135674476624, -0.07737172394990921, -0.08036984503269196, 0.5203553438186646, -0.4018173813819885, -0.012779876589775085, 0.3775321841239929, 0.44431960582733154, 0.23157605528831482, -0.1559000164270401, 0.12349160015583038, -0.1541391909122467, 0.14671051502227783, 0.06881020218133926, 0.058822594583034515, 0.42658811807632446, 0.008839249610900879, -0.3543609380722046, 0.19976547360420227, -0.07857167720794678, 0.04148302227258682, -0.11064271628856659, 0.10325846821069717, -0.19899968802928925, -0.3686421513557434, -0.2561350166797638, -0.024101346731185913, 0.3485713005065918, -0.39511924982070923, 0.1987585872411728, 0.037383269518613815, -0.25355783104896545, -0.026776231825351715, 0.08633898943662643, -0.18822315335273743, -0.16517262160778046, 0.5311196446418762, -0.019365228712558746, 0.03937944769859314, 0.5470422506332397, 0.24787147343158722, 0.12774819135665894, -0.1604364812374115, -0.20614942908287048, 0.5066661834716797, -0.40097320079803467, 0.22655513882637024, 0.04523513466119766, -0.08921395242214203, 0.10410686582326889, 0.4483320415019989, 0.08922410011291504, -0.07385719567537308, 0.002520166337490082, -0.3323081135749817, -0.16682235896587372, 0.326921671628952, 0.10181136429309845, 0.20012401044368744, 0.023056939244270325, -0.04473813995718956, -0.1990039199590683, -0.08219009637832642, -0.3838166296482086, 0.23171038925647736, -0.0946815237402916, 0.008004967123270035, 0.2120738923549652, -0.18009400367736816, -0.008277981542050838, -0.24396304786205292, 0.17692413926124573, 0.01152428425848484, -0.23372845351696014, -0.2896282970905304, -0.34162795543670654, 0.06599590927362442, -0.08737434446811676, 0.04097258299589157, 0.0703095942735672, 0.25014686584472656, -0.04651765152812004, -0.23410940170288086, 0.40988489985466003, 0.11188837140798569, 0.03518114238977432, 0.3403918445110321, 0.067662313580513, 0.21684306859970093, 0.017723049968481064, 0.018365399911999702, 0.03464333340525627, -0.24479304254055023, 0.025343548506498337, 0.00019106268882751465, -0.17007876932621002, 0.09217217564582825, -0.009177683852612972, 0.07851435244083405, -0.03326493501663208, 0.17042654752731323, 0.3056047260761261, -0.2575224041938782, 0.17696690559387207, 0.1408841758966446, 0.3525610566139221, 0.16565221548080444, -0.1598721593618393, 0.08831305801868439, 0.12809939682483673, 0.3033124506473541, -0.4272119402885437, -0.06392752379179001, 0.2238364815711975, 0.09884534031152725, 0.19890612363815308, 0.1681097149848938, 0.2588568925857544, -0.155389666557312, 0.18387144804000854, 0.2872067987918854, 0.2977759540081024, 0.058825742453336716, 0.47266268730163574, 0.433197557926178, -0.07073521614074707, 0.07084297388792038, 0.048820436000823975, -0.13458576798439026, -0.06284084171056747, 0.155861496925354, 0.004835784435272217, 0.24992011487483978, -0.006211675703525543, 0.2208317369222641, 0.09636343270540237, -0.3939109146595001, 0.09066884219646454, 0.023897074162960052, -0.17298835515975952, 0.06621160358190536, -0.21233749389648438, 0.4334923028945923, -0.3614331781864166, -0.12069717049598694, -0.3567313849925995, 0.10533149540424347, -0.20421263575553894, -0.3059578537940979, 0.00302678719162941, -0.33227628469467163, 0.004414618015289307, 0.004775185137987137, -0.06254032254219055, -0.12047615647315979, 0.07043881714344025, -0.2905169725418091, -0.24385876953601837, -0.4311002790927887, -0.13740584254264832, 0.04251784458756447, 0.3430764675140381, 0.028575707226991653, 0.3047434389591217, 0.2961229681968689, -0.24666786193847656, 0.073885977268219, 0.2899470925331116, 0.3838070333003998, 0.16483935713768005, 0.23145277798175812, 0.18327228724956512, -0.043359626084566116, -0.05053812265396118, -0.027036549523472786, 0.44763901829719543, 0.048403482884168625, -0.10195551812648773, 0.1409861147403717, 0.1902390867471695, -0.2589709758758545, 0.10880012810230255, -0.10609506070613861, 0.372257798910141, -0.592790424823761, 0.4981983006000519, -0.280374139547348, -0.11388908326625824, -0.09993717074394226, 0.003034524619579315, -0.267267644405365, -0.049525488168001175, 0.10879760980606079, 0.21012917160987854, 0.10175812989473343, -0.26897192001342773, 0.11865909397602081, -0.13922332227230072, 0.3404167890548706, 0.2487785965204239, -0.04290679097175598, -0.13082897663116455, -0.152842715382576, -0.7432312965393066, 0.15355414152145386, 0.06117609143257141, 0.1751803159713745, -0.03144509345293045, -0.09709636867046356, -0.08537683635950089, -0.1342231184244156, -0.021711140871047974, -0.08175951987504959, 0.09103967994451523, 0.05662022531032562, -0.5897560715675354, -0.12165375053882599, -0.10236696898937225, 0.06243697553873062, 0.08346553146839142, -0.1358577013015747, 0.08098407089710236, -0.17615830898284912, 0.015328742563724518, 0.07993992418050766, 0.08507272601127625, -0.025912145152688026, -0.12296693027019501, 0.29484325647354126, 0.15327058732509613, 0.12718799710273743, 0.04002838581800461, -0.15190733969211578, -0.3101467490196228, -0.238750621676445, -0.16566099226474762, 0.27015820145606995, -0.18247032165527344, 0.39684680104255676, 0.08098843693733215, -0.22069098055362701, -0.03469017520546913, 0.2709835171699524, 0.400836706161499, -0.17684271931648254, -0.31223928928375244, 0.18394169211387634, 0.00962153822183609, -0.13617976009845734, 0.3327706754207611, 0.3300030529499054, -0.02098105102777481, 0.18152140080928802, -0.25807517766952515, -0.426164835691452, 0.5998722314834595, -0.43961331248283386, -0.020970499143004417, -0.3280789852142334, 0.15578310191631317, 0.14129889011383057, -0.3467084765434265, -0.660648763179779, 0.047875307500362396, 0.39672425389289856, -0.24282711744308472, -0.16242779791355133, 0.3853435516357422, -0.0664641410112381, 0.09020920097827911, -0.056406550109386444, 0.3422391712665558, 0.15257097780704498, -0.2761003077030182, 0.22250649333000183, -0.11524675041437149 ]
https://github.com/huggingface/datasets/issues/3236
Loading of datasets changed in #3110 returns no examples
I can't reproduce either in my environment (macos, python 3.7). In your case it generates zero examples. This can only happen if the extraction of the TAR archive doesn't output the right filenames. Indeed if the `qasper` script can't find the right file to load, it's currently ignored and it returns zero examples. This case was not even considered when #3110 was developed since we considered the file names to be deterministic - and not depend on your environment. Therefore here is my hypothesis: - either the cache is corrupted somehow with an empty TAR archive - OR I suspect that the issue comes from python 3.8
## Describe the bug Loading of datasets changed in https://github.com/huggingface/datasets/pull/3110 returns no examples: ```python DatasetDict({ train: Dataset({ features: ['id', 'title', 'abstract', 'full_text', 'qas'], num_rows: 0 }) validation: Dataset({ features: ['id', 'title', 'abstract', 'full_text', 'qas'], num_rows: 0 }) }) ``` ## Steps to reproduce the bug Load any of the datasets that were changed in https://github.com/huggingface/datasets/pull/3110: ```python from datasets import load_dataset load_dataset("qasper") # The problem only started with the commit of #3110 load_dataset("qasper", revision="b6469baa22c174b3906c631802a7016fedea6780") ``` ## Expected results ```python DatasetDict({ train: Dataset({ features: ['id', 'title', 'abstract', 'full_text', 'qas'], num_rows: 888 }) validation: Dataset({ features: ['id', 'title', 'abstract', 'full_text', 'qas'], num_rows: 281 }) }) ``` Which can be received when specifying revision of the commit before https://github.com/huggingface/datasets/pull/3110: ```python from datasets import load_dataset load_dataset("qasper", revision="acfe2abda1ca79f0ce5c1896aa83b4b78af76b7d") ``` ## Environment info <!-- You can run the command `datasets-cli env` and copy-and-paste its output below. --> - `datasets` version: 1.15.2.dev0 (master) - Python version: 3.8.10 - PyArrow version: 3.0.0
107
Loading of datasets changed in #3110 returns no examples ## Describe the bug Loading of datasets changed in https://github.com/huggingface/datasets/pull/3110 returns no examples: ```python DatasetDict({ train: Dataset({ features: ['id', 'title', 'abstract', 'full_text', 'qas'], num_rows: 0 }) validation: Dataset({ features: ['id', 'title', 'abstract', 'full_text', 'qas'], num_rows: 0 }) }) ``` ## Steps to reproduce the bug Load any of the datasets that were changed in https://github.com/huggingface/datasets/pull/3110: ```python from datasets import load_dataset load_dataset("qasper") # The problem only started with the commit of #3110 load_dataset("qasper", revision="b6469baa22c174b3906c631802a7016fedea6780") ``` ## Expected results ```python DatasetDict({ train: Dataset({ features: ['id', 'title', 'abstract', 'full_text', 'qas'], num_rows: 888 }) validation: Dataset({ features: ['id', 'title', 'abstract', 'full_text', 'qas'], num_rows: 281 }) }) ``` Which can be received when specifying revision of the commit before https://github.com/huggingface/datasets/pull/3110: ```python from datasets import load_dataset load_dataset("qasper", revision="acfe2abda1ca79f0ce5c1896aa83b4b78af76b7d") ``` ## Environment info <!-- You can run the command `datasets-cli env` and copy-and-paste its output below. --> - `datasets` version: 1.15.2.dev0 (master) - Python version: 3.8.10 - PyArrow version: 3.0.0 I can't reproduce either in my environment (macos, python 3.7). In your case it generates zero examples. This can only happen if the extraction of the TAR archive doesn't output the right filenames. Indeed if the `qasper` script can't find the right file to load, it's currently ignored and it returns zero examples. This case was not even considered when #3110 was developed since we considered the file names to be deterministic - and not depend on your environment. Therefore here is my hypothesis: - either the cache is corrupted somehow with an empty TAR archive - OR I suspect that the issue comes from python 3.8
[ 0.04819932207465172, -0.08699776232242584, -0.024228841066360474, 0.28186553716659546, 0.32402777671813965, -0.027351204305887222, 0.27424147725105286, 0.23747539520263672, 0.17098529636859894, 0.20155426859855652, -0.07156755775213242, 0.3162328004837036, -0.04232828691601753, 0.17204652726650238, 0.107111357152462, -0.2534901201725006, 0.11015110462903976, 0.13586513698101044, -0.309677392244339, -0.017404083162546158, -0.031213687732815742, 0.3098748028278351, -0.297730952501297, -0.09264826774597168, -0.2869769334793091, 0.21200546622276306, -0.31421834230422974, 0.1809692680835724, -0.14634495973587036, -0.37781956791877747, 0.3804137110710144, 0.08570219576358795, 0.14202189445495605, 0.6262404918670654, -0.00011086848098784685, 0.17101524770259857, 0.16437768936157227, -0.10097566246986389, -0.2533082067966461, -0.4094514846801758, -0.07174703478813171, -0.4076807200908661, 0.13796843588352203, -0.0840170755982399, -0.3382483124732971, -0.325094610452652, -0.20672233402729034, -0.10293164104223251, 0.4555371403694153, 0.3552957773208618, 0.24130231142044067, 0.4862981140613556, 0.044114384800195694, -0.35154426097869873, 0.013459376990795135, -0.10099044442176819, -0.010846484452486038, 0.017969142645597458, 0.16588625311851501, 0.12143594026565552, 0.09179157763719559, 0.1937301754951477, 0.1166708916425705, -0.14387883245944977, 0.14370054006576538, -0.10310282558202744, -0.164552241563797, -0.16116975247859955, 0.03257369250059128, 0.3317509889602661, 0.417381227016449, -0.20560932159423828, -0.5523958802223206, -0.3343690037727356, -0.0657658576965332, -0.3471265435218811, 0.10690668225288391, 0.10823667049407959, 0.07652750611305237, 0.25804224610328674, -0.19722382724285126, 0.10335201770067215, -0.0616275928914547, 0.0491025447845459, -0.25575700402259827, 0.07303221523761749, -0.11914847791194916, -0.12834733724594116, -0.0014370977878570557, -0.04176092892885208, -0.10489194840192795, 0.015495802275836468, -0.0036514438688755035, 0.15013693273067474, -0.43189680576324463, 0.055430471897125244, 0.23755553364753723, 0.012555178254842758, -0.01468556746840477, 0.238398015499115, 0.2823122441768646, 0.2580578625202179, -0.101495660841465, 0.042657386511564255, 0.055312979966402054, 0.430795282125473, 0.0989549458026886, -0.011281326413154602, 0.3555489778518677, 0.39031654596328735, -0.0860641822218895, -0.09213025122880936, -0.034975677728652954, -0.18792256712913513, 0.11010754108428955, 0.050720661878585815, 0.27344071865081787, -0.20166705548763275, -0.23222322762012482, 0.23009532690048218, -0.23713913559913635, -0.07564546167850494, 0.028555121272802353, 0.507034182548523, -0.07799119502305984, 0.08678800612688065, 0.034564755856990814, 0.17597919702529907, -0.15026918053627014, -0.30060917139053345, -0.4464168846607208, -0.03168972581624985, -0.32549819350242615, -0.09989909827709198, 0.27234306931495667, -0.19603247940540314, 0.4132772386074066, 0.0805029571056366, -0.14482328295707703, -0.06514804065227509, 0.06244232505559921, 0.19924063980579376, 0.1993405520915985, 0.2849487066268921, -0.059513673186302185, -0.010659764520823956, 0.29171374440193176, -0.05834390968084335, 0.00712200254201889, 0.04807943105697632, -0.24291002750396729, -0.27833810448646545, -0.11201447248458862, 0.26651403307914734, -0.46140241622924805, -0.02281210571527481, -0.022466696798801422, 0.18836045265197754, 0.0015458166599273682, -0.05246733874082565, 0.03706619143486023, -0.12953422963619232, -0.036048345267772675, -0.03669415041804314, 0.4575088918209076, 0.45337212085723877, -0.1228640228509903, -0.3646812438964844, 0.21558019518852234, -0.09418803453445435, 0.008019790053367615, 0.021370533853769302, -0.006280258763581514, 0.08745904266834259, -0.2322482168674469, -0.12200461328029633, 0.28580552339553833, -0.24658988416194916, -0.4048400819301605, -0.07660423219203949, -0.021187473088502884, 0.4242132902145386, 0.20833081007003784, -0.25259312987327576, 0.024639546871185303, 0.0277145653963089, 0.12717202305793762, -0.0023789089173078537, 0.26059725880622864, 0.08644933998584747, -0.1792174130678177, -0.14967632293701172, 0.03138149902224541, -0.008717609569430351, 0.04632348567247391, 0.23638185858726501, -0.046051107347011566, -0.14256948232650757, 0.31980839371681213, -0.26297900080680847, -0.11147453635931015, 0.2994381785392761, 0.3906705677509308, 0.03349389135837555, 0.20754513144493103, -0.21019983291625977, -0.5983008742332458, 0.42618972063064575, 0.008391197770833969, 0.17369630932807922, 0.10646668821573257, -0.1905423104763031, -0.3390613794326782, -0.03199400007724762, -0.21738387644290924, -0.4623183012008667, 0.14434200525283813, 0.17128422856330872, 0.31135863065719604, 0.11330968141555786, -0.2209651619195938, 0.47827064990997314, -0.13914573192596436, 0.24661238491535187, -0.42443346977233887, 0.3553304672241211, 0.04948589205741882, -0.15859392285346985, 0.0004652850329875946, 0.37904930114746094, 0.08950452506542206, -0.2791752219200134, -0.03193485364317894, 0.4426726698875427, 0.08483044058084488, 0.12699134647846222, -0.16657087206840515, 0.034146830439567566, 0.3217850923538208, 0.10635881125926971, -0.05022376775741577, 0.1898234486579895, -0.06287483870983124, 0.14352038502693176, -0.3038610517978668, 0.4575382471084595, 0.008514754474163055, 0.1595538854598999, 0.25687915086746216, -0.043040044605731964, 0.16834452748298645, -0.11688163876533508, -0.3479304611682892, -0.247915580868721, 0.21994620561599731, -0.29615283012390137, 0.2113559991121292, 0.12425582110881805, -0.40705716609954834, 0.05415874347090721, 0.37906327843666077, 0.01974606141448021, 0.046270471066236496, -0.023337766528129578, -0.21029365062713623, 0.03643663972616196, 0.3277457058429718, 0.13162840902805328, 0.25617462396621704, 0.2758215665817261, -0.05191678926348686, 0.12118363380432129, -0.054418206214904785, -0.20136658847332, 0.1555202156305313, -0.026405416429042816, -0.12247040867805481, 0.23154878616333008, 0.16160352528095245, 0.09366403520107269, -0.4347332715988159, 0.09159111976623535, -0.06647130846977234, 0.16182918846607208, -0.4015600085258484, -0.009128939360380173, -0.3828182816505432, -0.05571325868368149, -0.17768391966819763, -0.25739380717277527, 0.013449354097247124, -0.3274969160556793, 0.029093753546476364, 0.14186041057109833, -0.16217871010303497, 0.27849626541137695, -0.06688542664051056, 0.09949010610580444, -0.025930840522050858, 0.13420110940933228, -0.2214835286140442, -0.041421327739953995, -0.2053791880607605, 0.08151504397392273, -0.07849583774805069, -0.019277215003967285, 0.18022587895393372, -0.32125672698020935, -0.04080677777528763, -0.2744917869567871, -0.5607582330703735, 0.03277153521776199, -0.059664152562618256, 0.3699053227901459, 0.18612179160118103, 0.037841420620679855, -0.07876139879226685, -0.028003521263599396, 0.31175240874290466, -0.09955242276191711, -0.3088870346546173, 0.1620040237903595, 0.04371451213955879, 0.050608325749635696, -0.32228243350982666, -0.6019359827041626, -0.051994822919368744, -0.3921588957309723, 0.21886929869651794, -0.015108708292245865, -0.012924917042255402, 0.330697625875473, 0.17657038569450378, 0.24071446061134338, -0.03588895499706268, 0.18847765028476715, -0.18563935160636902, -0.23668095469474792, 0.2083817720413208, -0.32246536016464233, -0.5175804495811462, -0.09954972565174103, -0.06821341812610626, 0.17494867742061615, -0.07062383741140366, -0.401883065700531, -0.4492528438568115, -0.2838638424873352, 0.2869093716144562, 0.08836487680673599, 0.1963796615600586, 0.31953465938568115, -0.017048122361302376, -0.08276253938674927, -0.236519455909729, -0.24414998292922974, 0.0866851881146431, -0.039627112448215485, -0.01303333044052124, -0.13889124989509583, 0.30853214859962463, -0.040893491357564926, 0.5791707634925842, 0.24966475367546082, -0.016872849315404892, 0.5041948556900024, -0.11280722171068192, 0.47349265217781067, -0.25173795223236084, -0.35429689288139343, 0.01754491589963436, -0.07911281287670135, 0.16679063439369202, 0.11219349503517151, 0.025382738560438156, 0.2566159665584564, -0.21264639496803284, 0.04066220298409462, -0.23563724756240845, -0.2202085554599762, -0.20331060886383057, -0.12542006373405457, 0.18550758063793182, 0.13362780213356018, 0.22324061393737793, -0.1398864984512329, 0.15172448754310608, 0.15621186792850494, 0.25254255533218384, 0.28199121356010437, -0.03822114318609238, -0.5950143337249756, 0.07676655054092407, -0.3939020037651062, 0.13976383209228516, -0.11325568705797195, 0.18279321491718292, 0.09986481070518494, -0.3451109230518341, 0.025728724896907806, -0.03513849899172783, 0.7139859199523926, 0.04234505444765091, -0.03256269544363022, 0.18725241720676422, -0.3037378489971161, -0.4642009437084198, -0.2971777617931366, -0.2848602533340454, 0.03551904484629631, 0.1110168993473053, 0.5587166547775269, -0.24621540307998657, -0.20491760969161987, 0.10058758407831192, 0.15352901816368103, -0.11860549449920654, -0.07743172347545624, -0.39904123544692993, -0.14160801470279694, -0.29913607239723206, 0.02442850172519684, -0.11268764734268188, 0.3314484655857086, -0.3967136740684509, -0.04429757967591286, -0.09741523861885071, -0.08794474601745605, 0.27554982900619507, 0.3371760845184326, 0.46420490741729736, -0.004177931696176529, 0.18418076634407043, 0.14600184559822083, 0.23035483062267303, -0.04926387220621109, 0.5531159043312073, -0.21302558481693268, -0.4674658179283142, 0.0244179405272007, 0.09859851747751236, 0.19192375242710114, 0.2839534878730774, -0.024009060114622116, -0.010320737957954407, 0.0334598682820797, 0.16606059670448303, -0.22199565172195435, 0.11534994840621948, 0.25224533677101135, 0.21178266406059265, -0.19726991653442383, -0.360076904296875, 0.4063868820667267, 0.20452849566936493, -0.08241276443004608, 0.16174271702766418, 0.36265647411346436, -0.272465318441391, 0.1963346302509308, -0.07353576272726059, 0.5536627173423767, 0.14967846870422363, 0.11127494275569916, 0.4936063885688782, -0.15410394966602325, 0.43076828122138977, 0.02828650176525116, 0.07832717895507812, -0.3261825740337372, -0.4324312210083008, 0.07431752234697342, -0.14201965928077698, 0.25430911779403687, -0.09361864626407623, -0.2937712073326111, 0.24257774651050568, -0.06144334375858307, 0.42283928394317627, 0.08242659270763397, -0.03392539545893669, -0.13023243844509125, 0.03504740446805954, -0.44566574692726135, 0.16467051208019257, 0.15672263503074646, 0.29324913024902344, -0.09375259280204773, -0.003961327485740185, -0.1935095489025116, -0.21966786682605743, -0.08303134143352509, 0.014485135674476624, -0.07737172394990921, -0.08036984503269196, 0.5203553438186646, -0.4018173813819885, -0.012779876589775085, 0.3775321841239929, 0.44431960582733154, 0.23157605528831482, -0.1559000164270401, 0.12349160015583038, -0.1541391909122467, 0.14671051502227783, 0.06881020218133926, 0.058822594583034515, 0.42658811807632446, 0.008839249610900879, -0.3543609380722046, 0.19976547360420227, -0.07857167720794678, 0.04148302227258682, -0.11064271628856659, 0.10325846821069717, -0.19899968802928925, -0.3686421513557434, -0.2561350166797638, -0.024101346731185913, 0.3485713005065918, -0.39511924982070923, 0.1987585872411728, 0.037383269518613815, -0.25355783104896545, -0.026776231825351715, 0.08633898943662643, -0.18822315335273743, -0.16517262160778046, 0.5311196446418762, -0.019365228712558746, 0.03937944769859314, 0.5470422506332397, 0.24787147343158722, 0.12774819135665894, -0.1604364812374115, -0.20614942908287048, 0.5066661834716797, -0.40097320079803467, 0.22655513882637024, 0.04523513466119766, -0.08921395242214203, 0.10410686582326889, 0.4483320415019989, 0.08922410011291504, -0.07385719567537308, 0.002520166337490082, -0.3323081135749817, -0.16682235896587372, 0.326921671628952, 0.10181136429309845, 0.20012401044368744, 0.023056939244270325, -0.04473813995718956, -0.1990039199590683, -0.08219009637832642, -0.3838166296482086, 0.23171038925647736, -0.0946815237402916, 0.008004967123270035, 0.2120738923549652, -0.18009400367736816, -0.008277981542050838, -0.24396304786205292, 0.17692413926124573, 0.01152428425848484, -0.23372845351696014, -0.2896282970905304, -0.34162795543670654, 0.06599590927362442, -0.08737434446811676, 0.04097258299589157, 0.0703095942735672, 0.25014686584472656, -0.04651765152812004, -0.23410940170288086, 0.40988489985466003, 0.11188837140798569, 0.03518114238977432, 0.3403918445110321, 0.067662313580513, 0.21684306859970093, 0.017723049968481064, 0.018365399911999702, 0.03464333340525627, -0.24479304254055023, 0.025343548506498337, 0.00019106268882751465, -0.17007876932621002, 0.09217217564582825, -0.009177683852612972, 0.07851435244083405, -0.03326493501663208, 0.17042654752731323, 0.3056047260761261, -0.2575224041938782, 0.17696690559387207, 0.1408841758966446, 0.3525610566139221, 0.16565221548080444, -0.1598721593618393, 0.08831305801868439, 0.12809939682483673, 0.3033124506473541, -0.4272119402885437, -0.06392752379179001, 0.2238364815711975, 0.09884534031152725, 0.19890612363815308, 0.1681097149848938, 0.2588568925857544, -0.155389666557312, 0.18387144804000854, 0.2872067987918854, 0.2977759540081024, 0.058825742453336716, 0.47266268730163574, 0.433197557926178, -0.07073521614074707, 0.07084297388792038, 0.048820436000823975, -0.13458576798439026, -0.06284084171056747, 0.155861496925354, 0.004835784435272217, 0.24992011487483978, -0.006211675703525543, 0.2208317369222641, 0.09636343270540237, -0.3939109146595001, 0.09066884219646454, 0.023897074162960052, -0.17298835515975952, 0.06621160358190536, -0.21233749389648438, 0.4334923028945923, -0.3614331781864166, -0.12069717049598694, -0.3567313849925995, 0.10533149540424347, -0.20421263575553894, -0.3059578537940979, 0.00302678719162941, -0.33227628469467163, 0.004414618015289307, 0.004775185137987137, -0.06254032254219055, -0.12047615647315979, 0.07043881714344025, -0.2905169725418091, -0.24385876953601837, -0.4311002790927887, -0.13740584254264832, 0.04251784458756447, 0.3430764675140381, 0.028575707226991653, 0.3047434389591217, 0.2961229681968689, -0.24666786193847656, 0.073885977268219, 0.2899470925331116, 0.3838070333003998, 0.16483935713768005, 0.23145277798175812, 0.18327228724956512, -0.043359626084566116, -0.05053812265396118, -0.027036549523472786, 0.44763901829719543, 0.048403482884168625, -0.10195551812648773, 0.1409861147403717, 0.1902390867471695, -0.2589709758758545, 0.10880012810230255, -0.10609506070613861, 0.372257798910141, -0.592790424823761, 0.4981983006000519, -0.280374139547348, -0.11388908326625824, -0.09993717074394226, 0.003034524619579315, -0.267267644405365, -0.049525488168001175, 0.10879760980606079, 0.21012917160987854, 0.10175812989473343, -0.26897192001342773, 0.11865909397602081, -0.13922332227230072, 0.3404167890548706, 0.2487785965204239, -0.04290679097175598, -0.13082897663116455, -0.152842715382576, -0.7432312965393066, 0.15355414152145386, 0.06117609143257141, 0.1751803159713745, -0.03144509345293045, -0.09709636867046356, -0.08537683635950089, -0.1342231184244156, -0.021711140871047974, -0.08175951987504959, 0.09103967994451523, 0.05662022531032562, -0.5897560715675354, -0.12165375053882599, -0.10236696898937225, 0.06243697553873062, 0.08346553146839142, -0.1358577013015747, 0.08098407089710236, -0.17615830898284912, 0.015328742563724518, 0.07993992418050766, 0.08507272601127625, -0.025912145152688026, -0.12296693027019501, 0.29484325647354126, 0.15327058732509613, 0.12718799710273743, 0.04002838581800461, -0.15190733969211578, -0.3101467490196228, -0.238750621676445, -0.16566099226474762, 0.27015820145606995, -0.18247032165527344, 0.39684680104255676, 0.08098843693733215, -0.22069098055362701, -0.03469017520546913, 0.2709835171699524, 0.400836706161499, -0.17684271931648254, -0.31223928928375244, 0.18394169211387634, 0.00962153822183609, -0.13617976009845734, 0.3327706754207611, 0.3300030529499054, -0.02098105102777481, 0.18152140080928802, -0.25807517766952515, -0.426164835691452, 0.5998722314834595, -0.43961331248283386, -0.020970499143004417, -0.3280789852142334, 0.15578310191631317, 0.14129889011383057, -0.3467084765434265, -0.660648763179779, 0.047875307500362396, 0.39672425389289856, -0.24282711744308472, -0.16242779791355133, 0.3853435516357422, -0.0664641410112381, 0.09020920097827911, -0.056406550109386444, 0.3422391712665558, 0.15257097780704498, -0.2761003077030182, 0.22250649333000183, -0.11524675041437149 ]
https://github.com/huggingface/datasets/issues/3236
Loading of datasets changed in #3110 returns no examples
I just tried again on python 3.8 and I was able to reproduce the issue. Let me work on a fix
## Describe the bug Loading of datasets changed in https://github.com/huggingface/datasets/pull/3110 returns no examples: ```python DatasetDict({ train: Dataset({ features: ['id', 'title', 'abstract', 'full_text', 'qas'], num_rows: 0 }) validation: Dataset({ features: ['id', 'title', 'abstract', 'full_text', 'qas'], num_rows: 0 }) }) ``` ## Steps to reproduce the bug Load any of the datasets that were changed in https://github.com/huggingface/datasets/pull/3110: ```python from datasets import load_dataset load_dataset("qasper") # The problem only started with the commit of #3110 load_dataset("qasper", revision="b6469baa22c174b3906c631802a7016fedea6780") ``` ## Expected results ```python DatasetDict({ train: Dataset({ features: ['id', 'title', 'abstract', 'full_text', 'qas'], num_rows: 888 }) validation: Dataset({ features: ['id', 'title', 'abstract', 'full_text', 'qas'], num_rows: 281 }) }) ``` Which can be received when specifying revision of the commit before https://github.com/huggingface/datasets/pull/3110: ```python from datasets import load_dataset load_dataset("qasper", revision="acfe2abda1ca79f0ce5c1896aa83b4b78af76b7d") ``` ## Environment info <!-- You can run the command `datasets-cli env` and copy-and-paste its output below. --> - `datasets` version: 1.15.2.dev0 (master) - Python version: 3.8.10 - PyArrow version: 3.0.0
21
Loading of datasets changed in #3110 returns no examples ## Describe the bug Loading of datasets changed in https://github.com/huggingface/datasets/pull/3110 returns no examples: ```python DatasetDict({ train: Dataset({ features: ['id', 'title', 'abstract', 'full_text', 'qas'], num_rows: 0 }) validation: Dataset({ features: ['id', 'title', 'abstract', 'full_text', 'qas'], num_rows: 0 }) }) ``` ## Steps to reproduce the bug Load any of the datasets that were changed in https://github.com/huggingface/datasets/pull/3110: ```python from datasets import load_dataset load_dataset("qasper") # The problem only started with the commit of #3110 load_dataset("qasper", revision="b6469baa22c174b3906c631802a7016fedea6780") ``` ## Expected results ```python DatasetDict({ train: Dataset({ features: ['id', 'title', 'abstract', 'full_text', 'qas'], num_rows: 888 }) validation: Dataset({ features: ['id', 'title', 'abstract', 'full_text', 'qas'], num_rows: 281 }) }) ``` Which can be received when specifying revision of the commit before https://github.com/huggingface/datasets/pull/3110: ```python from datasets import load_dataset load_dataset("qasper", revision="acfe2abda1ca79f0ce5c1896aa83b4b78af76b7d") ``` ## Environment info <!-- You can run the command `datasets-cli env` and copy-and-paste its output below. --> - `datasets` version: 1.15.2.dev0 (master) - Python version: 3.8.10 - PyArrow version: 3.0.0 I just tried again on python 3.8 and I was able to reproduce the issue. Let me work on a fix
[ 0.04819932207465172, -0.08699776232242584, -0.024228841066360474, 0.28186553716659546, 0.32402777671813965, -0.027351204305887222, 0.27424147725105286, 0.23747539520263672, 0.17098529636859894, 0.20155426859855652, -0.07156755775213242, 0.3162328004837036, -0.04232828691601753, 0.17204652726650238, 0.107111357152462, -0.2534901201725006, 0.11015110462903976, 0.13586513698101044, -0.309677392244339, -0.017404083162546158, -0.031213687732815742, 0.3098748028278351, -0.297730952501297, -0.09264826774597168, -0.2869769334793091, 0.21200546622276306, -0.31421834230422974, 0.1809692680835724, -0.14634495973587036, -0.37781956791877747, 0.3804137110710144, 0.08570219576358795, 0.14202189445495605, 0.6262404918670654, -0.00011086848098784685, 0.17101524770259857, 0.16437768936157227, -0.10097566246986389, -0.2533082067966461, -0.4094514846801758, -0.07174703478813171, -0.4076807200908661, 0.13796843588352203, -0.0840170755982399, -0.3382483124732971, -0.325094610452652, -0.20672233402729034, -0.10293164104223251, 0.4555371403694153, 0.3552957773208618, 0.24130231142044067, 0.4862981140613556, 0.044114384800195694, -0.35154426097869873, 0.013459376990795135, -0.10099044442176819, -0.010846484452486038, 0.017969142645597458, 0.16588625311851501, 0.12143594026565552, 0.09179157763719559, 0.1937301754951477, 0.1166708916425705, -0.14387883245944977, 0.14370054006576538, -0.10310282558202744, -0.164552241563797, -0.16116975247859955, 0.03257369250059128, 0.3317509889602661, 0.417381227016449, -0.20560932159423828, -0.5523958802223206, -0.3343690037727356, -0.0657658576965332, -0.3471265435218811, 0.10690668225288391, 0.10823667049407959, 0.07652750611305237, 0.25804224610328674, -0.19722382724285126, 0.10335201770067215, -0.0616275928914547, 0.0491025447845459, -0.25575700402259827, 0.07303221523761749, -0.11914847791194916, -0.12834733724594116, -0.0014370977878570557, -0.04176092892885208, -0.10489194840192795, 0.015495802275836468, -0.0036514438688755035, 0.15013693273067474, -0.43189680576324463, 0.055430471897125244, 0.23755553364753723, 0.012555178254842758, -0.01468556746840477, 0.238398015499115, 0.2823122441768646, 0.2580578625202179, -0.101495660841465, 0.042657386511564255, 0.055312979966402054, 0.430795282125473, 0.0989549458026886, -0.011281326413154602, 0.3555489778518677, 0.39031654596328735, -0.0860641822218895, -0.09213025122880936, -0.034975677728652954, -0.18792256712913513, 0.11010754108428955, 0.050720661878585815, 0.27344071865081787, -0.20166705548763275, -0.23222322762012482, 0.23009532690048218, -0.23713913559913635, -0.07564546167850494, 0.028555121272802353, 0.507034182548523, -0.07799119502305984, 0.08678800612688065, 0.034564755856990814, 0.17597919702529907, -0.15026918053627014, -0.30060917139053345, -0.4464168846607208, -0.03168972581624985, -0.32549819350242615, -0.09989909827709198, 0.27234306931495667, -0.19603247940540314, 0.4132772386074066, 0.0805029571056366, -0.14482328295707703, -0.06514804065227509, 0.06244232505559921, 0.19924063980579376, 0.1993405520915985, 0.2849487066268921, -0.059513673186302185, -0.010659764520823956, 0.29171374440193176, -0.05834390968084335, 0.00712200254201889, 0.04807943105697632, -0.24291002750396729, -0.27833810448646545, -0.11201447248458862, 0.26651403307914734, -0.46140241622924805, -0.02281210571527481, -0.022466696798801422, 0.18836045265197754, 0.0015458166599273682, -0.05246733874082565, 0.03706619143486023, -0.12953422963619232, -0.036048345267772675, -0.03669415041804314, 0.4575088918209076, 0.45337212085723877, -0.1228640228509903, -0.3646812438964844, 0.21558019518852234, -0.09418803453445435, 0.008019790053367615, 0.021370533853769302, -0.006280258763581514, 0.08745904266834259, -0.2322482168674469, -0.12200461328029633, 0.28580552339553833, -0.24658988416194916, -0.4048400819301605, -0.07660423219203949, -0.021187473088502884, 0.4242132902145386, 0.20833081007003784, -0.25259312987327576, 0.024639546871185303, 0.0277145653963089, 0.12717202305793762, -0.0023789089173078537, 0.26059725880622864, 0.08644933998584747, -0.1792174130678177, -0.14967632293701172, 0.03138149902224541, -0.008717609569430351, 0.04632348567247391, 0.23638185858726501, -0.046051107347011566, -0.14256948232650757, 0.31980839371681213, -0.26297900080680847, -0.11147453635931015, 0.2994381785392761, 0.3906705677509308, 0.03349389135837555, 0.20754513144493103, -0.21019983291625977, -0.5983008742332458, 0.42618972063064575, 0.008391197770833969, 0.17369630932807922, 0.10646668821573257, -0.1905423104763031, -0.3390613794326782, -0.03199400007724762, -0.21738387644290924, -0.4623183012008667, 0.14434200525283813, 0.17128422856330872, 0.31135863065719604, 0.11330968141555786, -0.2209651619195938, 0.47827064990997314, -0.13914573192596436, 0.24661238491535187, -0.42443346977233887, 0.3553304672241211, 0.04948589205741882, -0.15859392285346985, 0.0004652850329875946, 0.37904930114746094, 0.08950452506542206, -0.2791752219200134, -0.03193485364317894, 0.4426726698875427, 0.08483044058084488, 0.12699134647846222, -0.16657087206840515, 0.034146830439567566, 0.3217850923538208, 0.10635881125926971, -0.05022376775741577, 0.1898234486579895, -0.06287483870983124, 0.14352038502693176, -0.3038610517978668, 0.4575382471084595, 0.008514754474163055, 0.1595538854598999, 0.25687915086746216, -0.043040044605731964, 0.16834452748298645, -0.11688163876533508, -0.3479304611682892, -0.247915580868721, 0.21994620561599731, -0.29615283012390137, 0.2113559991121292, 0.12425582110881805, -0.40705716609954834, 0.05415874347090721, 0.37906327843666077, 0.01974606141448021, 0.046270471066236496, -0.023337766528129578, -0.21029365062713623, 0.03643663972616196, 0.3277457058429718, 0.13162840902805328, 0.25617462396621704, 0.2758215665817261, -0.05191678926348686, 0.12118363380432129, -0.054418206214904785, -0.20136658847332, 0.1555202156305313, -0.026405416429042816, -0.12247040867805481, 0.23154878616333008, 0.16160352528095245, 0.09366403520107269, -0.4347332715988159, 0.09159111976623535, -0.06647130846977234, 0.16182918846607208, -0.4015600085258484, -0.009128939360380173, -0.3828182816505432, -0.05571325868368149, -0.17768391966819763, -0.25739380717277527, 0.013449354097247124, -0.3274969160556793, 0.029093753546476364, 0.14186041057109833, -0.16217871010303497, 0.27849626541137695, -0.06688542664051056, 0.09949010610580444, -0.025930840522050858, 0.13420110940933228, -0.2214835286140442, -0.041421327739953995, -0.2053791880607605, 0.08151504397392273, -0.07849583774805069, -0.019277215003967285, 0.18022587895393372, -0.32125672698020935, -0.04080677777528763, -0.2744917869567871, -0.5607582330703735, 0.03277153521776199, -0.059664152562618256, 0.3699053227901459, 0.18612179160118103, 0.037841420620679855, -0.07876139879226685, -0.028003521263599396, 0.31175240874290466, -0.09955242276191711, -0.3088870346546173, 0.1620040237903595, 0.04371451213955879, 0.050608325749635696, -0.32228243350982666, -0.6019359827041626, -0.051994822919368744, -0.3921588957309723, 0.21886929869651794, -0.015108708292245865, -0.012924917042255402, 0.330697625875473, 0.17657038569450378, 0.24071446061134338, -0.03588895499706268, 0.18847765028476715, -0.18563935160636902, -0.23668095469474792, 0.2083817720413208, -0.32246536016464233, -0.5175804495811462, -0.09954972565174103, -0.06821341812610626, 0.17494867742061615, -0.07062383741140366, -0.401883065700531, -0.4492528438568115, -0.2838638424873352, 0.2869093716144562, 0.08836487680673599, 0.1963796615600586, 0.31953465938568115, -0.017048122361302376, -0.08276253938674927, -0.236519455909729, -0.24414998292922974, 0.0866851881146431, -0.039627112448215485, -0.01303333044052124, -0.13889124989509583, 0.30853214859962463, -0.040893491357564926, 0.5791707634925842, 0.24966475367546082, -0.016872849315404892, 0.5041948556900024, -0.11280722171068192, 0.47349265217781067, -0.25173795223236084, -0.35429689288139343, 0.01754491589963436, -0.07911281287670135, 0.16679063439369202, 0.11219349503517151, 0.025382738560438156, 0.2566159665584564, -0.21264639496803284, 0.04066220298409462, -0.23563724756240845, -0.2202085554599762, -0.20331060886383057, -0.12542006373405457, 0.18550758063793182, 0.13362780213356018, 0.22324061393737793, -0.1398864984512329, 0.15172448754310608, 0.15621186792850494, 0.25254255533218384, 0.28199121356010437, -0.03822114318609238, -0.5950143337249756, 0.07676655054092407, -0.3939020037651062, 0.13976383209228516, -0.11325568705797195, 0.18279321491718292, 0.09986481070518494, -0.3451109230518341, 0.025728724896907806, -0.03513849899172783, 0.7139859199523926, 0.04234505444765091, -0.03256269544363022, 0.18725241720676422, -0.3037378489971161, -0.4642009437084198, -0.2971777617931366, -0.2848602533340454, 0.03551904484629631, 0.1110168993473053, 0.5587166547775269, -0.24621540307998657, -0.20491760969161987, 0.10058758407831192, 0.15352901816368103, -0.11860549449920654, -0.07743172347545624, -0.39904123544692993, -0.14160801470279694, -0.29913607239723206, 0.02442850172519684, -0.11268764734268188, 0.3314484655857086, -0.3967136740684509, -0.04429757967591286, -0.09741523861885071, -0.08794474601745605, 0.27554982900619507, 0.3371760845184326, 0.46420490741729736, -0.004177931696176529, 0.18418076634407043, 0.14600184559822083, 0.23035483062267303, -0.04926387220621109, 0.5531159043312073, -0.21302558481693268, -0.4674658179283142, 0.0244179405272007, 0.09859851747751236, 0.19192375242710114, 0.2839534878730774, -0.024009060114622116, -0.010320737957954407, 0.0334598682820797, 0.16606059670448303, -0.22199565172195435, 0.11534994840621948, 0.25224533677101135, 0.21178266406059265, -0.19726991653442383, -0.360076904296875, 0.4063868820667267, 0.20452849566936493, -0.08241276443004608, 0.16174271702766418, 0.36265647411346436, -0.272465318441391, 0.1963346302509308, -0.07353576272726059, 0.5536627173423767, 0.14967846870422363, 0.11127494275569916, 0.4936063885688782, -0.15410394966602325, 0.43076828122138977, 0.02828650176525116, 0.07832717895507812, -0.3261825740337372, -0.4324312210083008, 0.07431752234697342, -0.14201965928077698, 0.25430911779403687, -0.09361864626407623, -0.2937712073326111, 0.24257774651050568, -0.06144334375858307, 0.42283928394317627, 0.08242659270763397, -0.03392539545893669, -0.13023243844509125, 0.03504740446805954, -0.44566574692726135, 0.16467051208019257, 0.15672263503074646, 0.29324913024902344, -0.09375259280204773, -0.003961327485740185, -0.1935095489025116, -0.21966786682605743, -0.08303134143352509, 0.014485135674476624, -0.07737172394990921, -0.08036984503269196, 0.5203553438186646, -0.4018173813819885, -0.012779876589775085, 0.3775321841239929, 0.44431960582733154, 0.23157605528831482, -0.1559000164270401, 0.12349160015583038, -0.1541391909122467, 0.14671051502227783, 0.06881020218133926, 0.058822594583034515, 0.42658811807632446, 0.008839249610900879, -0.3543609380722046, 0.19976547360420227, -0.07857167720794678, 0.04148302227258682, -0.11064271628856659, 0.10325846821069717, -0.19899968802928925, -0.3686421513557434, -0.2561350166797638, -0.024101346731185913, 0.3485713005065918, -0.39511924982070923, 0.1987585872411728, 0.037383269518613815, -0.25355783104896545, -0.026776231825351715, 0.08633898943662643, -0.18822315335273743, -0.16517262160778046, 0.5311196446418762, -0.019365228712558746, 0.03937944769859314, 0.5470422506332397, 0.24787147343158722, 0.12774819135665894, -0.1604364812374115, -0.20614942908287048, 0.5066661834716797, -0.40097320079803467, 0.22655513882637024, 0.04523513466119766, -0.08921395242214203, 0.10410686582326889, 0.4483320415019989, 0.08922410011291504, -0.07385719567537308, 0.002520166337490082, -0.3323081135749817, -0.16682235896587372, 0.326921671628952, 0.10181136429309845, 0.20012401044368744, 0.023056939244270325, -0.04473813995718956, -0.1990039199590683, -0.08219009637832642, -0.3838166296482086, 0.23171038925647736, -0.0946815237402916, 0.008004967123270035, 0.2120738923549652, -0.18009400367736816, -0.008277981542050838, -0.24396304786205292, 0.17692413926124573, 0.01152428425848484, -0.23372845351696014, -0.2896282970905304, -0.34162795543670654, 0.06599590927362442, -0.08737434446811676, 0.04097258299589157, 0.0703095942735672, 0.25014686584472656, -0.04651765152812004, -0.23410940170288086, 0.40988489985466003, 0.11188837140798569, 0.03518114238977432, 0.3403918445110321, 0.067662313580513, 0.21684306859970093, 0.017723049968481064, 0.018365399911999702, 0.03464333340525627, -0.24479304254055023, 0.025343548506498337, 0.00019106268882751465, -0.17007876932621002, 0.09217217564582825, -0.009177683852612972, 0.07851435244083405, -0.03326493501663208, 0.17042654752731323, 0.3056047260761261, -0.2575224041938782, 0.17696690559387207, 0.1408841758966446, 0.3525610566139221, 0.16565221548080444, -0.1598721593618393, 0.08831305801868439, 0.12809939682483673, 0.3033124506473541, -0.4272119402885437, -0.06392752379179001, 0.2238364815711975, 0.09884534031152725, 0.19890612363815308, 0.1681097149848938, 0.2588568925857544, -0.155389666557312, 0.18387144804000854, 0.2872067987918854, 0.2977759540081024, 0.058825742453336716, 0.47266268730163574, 0.433197557926178, -0.07073521614074707, 0.07084297388792038, 0.048820436000823975, -0.13458576798439026, -0.06284084171056747, 0.155861496925354, 0.004835784435272217, 0.24992011487483978, -0.006211675703525543, 0.2208317369222641, 0.09636343270540237, -0.3939109146595001, 0.09066884219646454, 0.023897074162960052, -0.17298835515975952, 0.06621160358190536, -0.21233749389648438, 0.4334923028945923, -0.3614331781864166, -0.12069717049598694, -0.3567313849925995, 0.10533149540424347, -0.20421263575553894, -0.3059578537940979, 0.00302678719162941, -0.33227628469467163, 0.004414618015289307, 0.004775185137987137, -0.06254032254219055, -0.12047615647315979, 0.07043881714344025, -0.2905169725418091, -0.24385876953601837, -0.4311002790927887, -0.13740584254264832, 0.04251784458756447, 0.3430764675140381, 0.028575707226991653, 0.3047434389591217, 0.2961229681968689, -0.24666786193847656, 0.073885977268219, 0.2899470925331116, 0.3838070333003998, 0.16483935713768005, 0.23145277798175812, 0.18327228724956512, -0.043359626084566116, -0.05053812265396118, -0.027036549523472786, 0.44763901829719543, 0.048403482884168625, -0.10195551812648773, 0.1409861147403717, 0.1902390867471695, -0.2589709758758545, 0.10880012810230255, -0.10609506070613861, 0.372257798910141, -0.592790424823761, 0.4981983006000519, -0.280374139547348, -0.11388908326625824, -0.09993717074394226, 0.003034524619579315, -0.267267644405365, -0.049525488168001175, 0.10879760980606079, 0.21012917160987854, 0.10175812989473343, -0.26897192001342773, 0.11865909397602081, -0.13922332227230072, 0.3404167890548706, 0.2487785965204239, -0.04290679097175598, -0.13082897663116455, -0.152842715382576, -0.7432312965393066, 0.15355414152145386, 0.06117609143257141, 0.1751803159713745, -0.03144509345293045, -0.09709636867046356, -0.08537683635950089, -0.1342231184244156, -0.021711140871047974, -0.08175951987504959, 0.09103967994451523, 0.05662022531032562, -0.5897560715675354, -0.12165375053882599, -0.10236696898937225, 0.06243697553873062, 0.08346553146839142, -0.1358577013015747, 0.08098407089710236, -0.17615830898284912, 0.015328742563724518, 0.07993992418050766, 0.08507272601127625, -0.025912145152688026, -0.12296693027019501, 0.29484325647354126, 0.15327058732509613, 0.12718799710273743, 0.04002838581800461, -0.15190733969211578, -0.3101467490196228, -0.238750621676445, -0.16566099226474762, 0.27015820145606995, -0.18247032165527344, 0.39684680104255676, 0.08098843693733215, -0.22069098055362701, -0.03469017520546913, 0.2709835171699524, 0.400836706161499, -0.17684271931648254, -0.31223928928375244, 0.18394169211387634, 0.00962153822183609, -0.13617976009845734, 0.3327706754207611, 0.3300030529499054, -0.02098105102777481, 0.18152140080928802, -0.25807517766952515, -0.426164835691452, 0.5998722314834595, -0.43961331248283386, -0.020970499143004417, -0.3280789852142334, 0.15578310191631317, 0.14129889011383057, -0.3467084765434265, -0.660648763179779, 0.047875307500362396, 0.39672425389289856, -0.24282711744308472, -0.16242779791355133, 0.3853435516357422, -0.0664641410112381, 0.09020920097827911, -0.056406550109386444, 0.3422391712665558, 0.15257097780704498, -0.2761003077030182, 0.22250649333000183, -0.11524675041437149 ]
https://github.com/huggingface/datasets/issues/3236
Loading of datasets changed in #3110 returns no examples
Ok I found the issue. It's not related to python 3.8 in itself though. This issue happens because your local installation of `datasets` is outdated compared to the changes to datasets in #3110 To fix this you just have to pull the latest changes from `master` :) Let me know if that helps ! -------------- Here are more details about my investigation: It's possible to reproduce this issue if you use `datasets<=1.15.1` or before b6469baa22c174b3906c631802a7016fedea6780 and if you load the dataset after revision b6469baa22c174b3906c631802a7016fedea6780. This is because `dl_manager.iter_archive` had issues at that time (and it was not used anywhere anyway). In particular it was returning the absolute path to extracted files instead of the relative path of the file inside the archive. This was an issue because `dl_manager.iter_archive` isn't supposed to extract the TAR archive. Instead, it iterates over all the files inside the archive, without creating a directory with the extracted content. Therefore if you want to use the datasets on `master`, make sure that you have an up-to-date local installation of `datasets` as well, or you may face incompatibilities like this.
## Describe the bug Loading of datasets changed in https://github.com/huggingface/datasets/pull/3110 returns no examples: ```python DatasetDict({ train: Dataset({ features: ['id', 'title', 'abstract', 'full_text', 'qas'], num_rows: 0 }) validation: Dataset({ features: ['id', 'title', 'abstract', 'full_text', 'qas'], num_rows: 0 }) }) ``` ## Steps to reproduce the bug Load any of the datasets that were changed in https://github.com/huggingface/datasets/pull/3110: ```python from datasets import load_dataset load_dataset("qasper") # The problem only started with the commit of #3110 load_dataset("qasper", revision="b6469baa22c174b3906c631802a7016fedea6780") ``` ## Expected results ```python DatasetDict({ train: Dataset({ features: ['id', 'title', 'abstract', 'full_text', 'qas'], num_rows: 888 }) validation: Dataset({ features: ['id', 'title', 'abstract', 'full_text', 'qas'], num_rows: 281 }) }) ``` Which can be received when specifying revision of the commit before https://github.com/huggingface/datasets/pull/3110: ```python from datasets import load_dataset load_dataset("qasper", revision="acfe2abda1ca79f0ce5c1896aa83b4b78af76b7d") ``` ## Environment info <!-- You can run the command `datasets-cli env` and copy-and-paste its output below. --> - `datasets` version: 1.15.2.dev0 (master) - Python version: 3.8.10 - PyArrow version: 3.0.0
183
Loading of datasets changed in #3110 returns no examples ## Describe the bug Loading of datasets changed in https://github.com/huggingface/datasets/pull/3110 returns no examples: ```python DatasetDict({ train: Dataset({ features: ['id', 'title', 'abstract', 'full_text', 'qas'], num_rows: 0 }) validation: Dataset({ features: ['id', 'title', 'abstract', 'full_text', 'qas'], num_rows: 0 }) }) ``` ## Steps to reproduce the bug Load any of the datasets that were changed in https://github.com/huggingface/datasets/pull/3110: ```python from datasets import load_dataset load_dataset("qasper") # The problem only started with the commit of #3110 load_dataset("qasper", revision="b6469baa22c174b3906c631802a7016fedea6780") ``` ## Expected results ```python DatasetDict({ train: Dataset({ features: ['id', 'title', 'abstract', 'full_text', 'qas'], num_rows: 888 }) validation: Dataset({ features: ['id', 'title', 'abstract', 'full_text', 'qas'], num_rows: 281 }) }) ``` Which can be received when specifying revision of the commit before https://github.com/huggingface/datasets/pull/3110: ```python from datasets import load_dataset load_dataset("qasper", revision="acfe2abda1ca79f0ce5c1896aa83b4b78af76b7d") ``` ## Environment info <!-- You can run the command `datasets-cli env` and copy-and-paste its output below. --> - `datasets` version: 1.15.2.dev0 (master) - Python version: 3.8.10 - PyArrow version: 3.0.0 Ok I found the issue. It's not related to python 3.8 in itself though. This issue happens because your local installation of `datasets` is outdated compared to the changes to datasets in #3110 To fix this you just have to pull the latest changes from `master` :) Let me know if that helps ! -------------- Here are more details about my investigation: It's possible to reproduce this issue if you use `datasets<=1.15.1` or before b6469baa22c174b3906c631802a7016fedea6780 and if you load the dataset after revision b6469baa22c174b3906c631802a7016fedea6780. This is because `dl_manager.iter_archive` had issues at that time (and it was not used anywhere anyway). In particular it was returning the absolute path to extracted files instead of the relative path of the file inside the archive. This was an issue because `dl_manager.iter_archive` isn't supposed to extract the TAR archive. Instead, it iterates over all the files inside the archive, without creating a directory with the extracted content. Therefore if you want to use the datasets on `master`, make sure that you have an up-to-date local installation of `datasets` as well, or you may face incompatibilities like this.
[ 0.04819932207465172, -0.08699776232242584, -0.024228841066360474, 0.28186553716659546, 0.32402777671813965, -0.027351204305887222, 0.27424147725105286, 0.23747539520263672, 0.17098529636859894, 0.20155426859855652, -0.07156755775213242, 0.3162328004837036, -0.04232828691601753, 0.17204652726650238, 0.107111357152462, -0.2534901201725006, 0.11015110462903976, 0.13586513698101044, -0.309677392244339, -0.017404083162546158, -0.031213687732815742, 0.3098748028278351, -0.297730952501297, -0.09264826774597168, -0.2869769334793091, 0.21200546622276306, -0.31421834230422974, 0.1809692680835724, -0.14634495973587036, -0.37781956791877747, 0.3804137110710144, 0.08570219576358795, 0.14202189445495605, 0.6262404918670654, -0.00011086848098784685, 0.17101524770259857, 0.16437768936157227, -0.10097566246986389, -0.2533082067966461, -0.4094514846801758, -0.07174703478813171, -0.4076807200908661, 0.13796843588352203, -0.0840170755982399, -0.3382483124732971, -0.325094610452652, -0.20672233402729034, -0.10293164104223251, 0.4555371403694153, 0.3552957773208618, 0.24130231142044067, 0.4862981140613556, 0.044114384800195694, -0.35154426097869873, 0.013459376990795135, -0.10099044442176819, -0.010846484452486038, 0.017969142645597458, 0.16588625311851501, 0.12143594026565552, 0.09179157763719559, 0.1937301754951477, 0.1166708916425705, -0.14387883245944977, 0.14370054006576538, -0.10310282558202744, -0.164552241563797, -0.16116975247859955, 0.03257369250059128, 0.3317509889602661, 0.417381227016449, -0.20560932159423828, -0.5523958802223206, -0.3343690037727356, -0.0657658576965332, -0.3471265435218811, 0.10690668225288391, 0.10823667049407959, 0.07652750611305237, 0.25804224610328674, -0.19722382724285126, 0.10335201770067215, -0.0616275928914547, 0.0491025447845459, -0.25575700402259827, 0.07303221523761749, -0.11914847791194916, -0.12834733724594116, -0.0014370977878570557, -0.04176092892885208, -0.10489194840192795, 0.015495802275836468, -0.0036514438688755035, 0.15013693273067474, -0.43189680576324463, 0.055430471897125244, 0.23755553364753723, 0.012555178254842758, -0.01468556746840477, 0.238398015499115, 0.2823122441768646, 0.2580578625202179, -0.101495660841465, 0.042657386511564255, 0.055312979966402054, 0.430795282125473, 0.0989549458026886, -0.011281326413154602, 0.3555489778518677, 0.39031654596328735, -0.0860641822218895, -0.09213025122880936, -0.034975677728652954, -0.18792256712913513, 0.11010754108428955, 0.050720661878585815, 0.27344071865081787, -0.20166705548763275, -0.23222322762012482, 0.23009532690048218, -0.23713913559913635, -0.07564546167850494, 0.028555121272802353, 0.507034182548523, -0.07799119502305984, 0.08678800612688065, 0.034564755856990814, 0.17597919702529907, -0.15026918053627014, -0.30060917139053345, -0.4464168846607208, -0.03168972581624985, -0.32549819350242615, -0.09989909827709198, 0.27234306931495667, -0.19603247940540314, 0.4132772386074066, 0.0805029571056366, -0.14482328295707703, -0.06514804065227509, 0.06244232505559921, 0.19924063980579376, 0.1993405520915985, 0.2849487066268921, -0.059513673186302185, -0.010659764520823956, 0.29171374440193176, -0.05834390968084335, 0.00712200254201889, 0.04807943105697632, -0.24291002750396729, -0.27833810448646545, -0.11201447248458862, 0.26651403307914734, -0.46140241622924805, -0.02281210571527481, -0.022466696798801422, 0.18836045265197754, 0.0015458166599273682, -0.05246733874082565, 0.03706619143486023, -0.12953422963619232, -0.036048345267772675, -0.03669415041804314, 0.4575088918209076, 0.45337212085723877, -0.1228640228509903, -0.3646812438964844, 0.21558019518852234, -0.09418803453445435, 0.008019790053367615, 0.021370533853769302, -0.006280258763581514, 0.08745904266834259, -0.2322482168674469, -0.12200461328029633, 0.28580552339553833, -0.24658988416194916, -0.4048400819301605, -0.07660423219203949, -0.021187473088502884, 0.4242132902145386, 0.20833081007003784, -0.25259312987327576, 0.024639546871185303, 0.0277145653963089, 0.12717202305793762, -0.0023789089173078537, 0.26059725880622864, 0.08644933998584747, -0.1792174130678177, -0.14967632293701172, 0.03138149902224541, -0.008717609569430351, 0.04632348567247391, 0.23638185858726501, -0.046051107347011566, -0.14256948232650757, 0.31980839371681213, -0.26297900080680847, -0.11147453635931015, 0.2994381785392761, 0.3906705677509308, 0.03349389135837555, 0.20754513144493103, -0.21019983291625977, -0.5983008742332458, 0.42618972063064575, 0.008391197770833969, 0.17369630932807922, 0.10646668821573257, -0.1905423104763031, -0.3390613794326782, -0.03199400007724762, -0.21738387644290924, -0.4623183012008667, 0.14434200525283813, 0.17128422856330872, 0.31135863065719604, 0.11330968141555786, -0.2209651619195938, 0.47827064990997314, -0.13914573192596436, 0.24661238491535187, -0.42443346977233887, 0.3553304672241211, 0.04948589205741882, -0.15859392285346985, 0.0004652850329875946, 0.37904930114746094, 0.08950452506542206, -0.2791752219200134, -0.03193485364317894, 0.4426726698875427, 0.08483044058084488, 0.12699134647846222, -0.16657087206840515, 0.034146830439567566, 0.3217850923538208, 0.10635881125926971, -0.05022376775741577, 0.1898234486579895, -0.06287483870983124, 0.14352038502693176, -0.3038610517978668, 0.4575382471084595, 0.008514754474163055, 0.1595538854598999, 0.25687915086746216, -0.043040044605731964, 0.16834452748298645, -0.11688163876533508, -0.3479304611682892, -0.247915580868721, 0.21994620561599731, -0.29615283012390137, 0.2113559991121292, 0.12425582110881805, -0.40705716609954834, 0.05415874347090721, 0.37906327843666077, 0.01974606141448021, 0.046270471066236496, -0.023337766528129578, -0.21029365062713623, 0.03643663972616196, 0.3277457058429718, 0.13162840902805328, 0.25617462396621704, 0.2758215665817261, -0.05191678926348686, 0.12118363380432129, -0.054418206214904785, -0.20136658847332, 0.1555202156305313, -0.026405416429042816, -0.12247040867805481, 0.23154878616333008, 0.16160352528095245, 0.09366403520107269, -0.4347332715988159, 0.09159111976623535, -0.06647130846977234, 0.16182918846607208, -0.4015600085258484, -0.009128939360380173, -0.3828182816505432, -0.05571325868368149, -0.17768391966819763, -0.25739380717277527, 0.013449354097247124, -0.3274969160556793, 0.029093753546476364, 0.14186041057109833, -0.16217871010303497, 0.27849626541137695, -0.06688542664051056, 0.09949010610580444, -0.025930840522050858, 0.13420110940933228, -0.2214835286140442, -0.041421327739953995, -0.2053791880607605, 0.08151504397392273, -0.07849583774805069, -0.019277215003967285, 0.18022587895393372, -0.32125672698020935, -0.04080677777528763, -0.2744917869567871, -0.5607582330703735, 0.03277153521776199, -0.059664152562618256, 0.3699053227901459, 0.18612179160118103, 0.037841420620679855, -0.07876139879226685, -0.028003521263599396, 0.31175240874290466, -0.09955242276191711, -0.3088870346546173, 0.1620040237903595, 0.04371451213955879, 0.050608325749635696, -0.32228243350982666, -0.6019359827041626, -0.051994822919368744, -0.3921588957309723, 0.21886929869651794, -0.015108708292245865, -0.012924917042255402, 0.330697625875473, 0.17657038569450378, 0.24071446061134338, -0.03588895499706268, 0.18847765028476715, -0.18563935160636902, -0.23668095469474792, 0.2083817720413208, -0.32246536016464233, -0.5175804495811462, -0.09954972565174103, -0.06821341812610626, 0.17494867742061615, -0.07062383741140366, -0.401883065700531, -0.4492528438568115, -0.2838638424873352, 0.2869093716144562, 0.08836487680673599, 0.1963796615600586, 0.31953465938568115, -0.017048122361302376, -0.08276253938674927, -0.236519455909729, -0.24414998292922974, 0.0866851881146431, -0.039627112448215485, -0.01303333044052124, -0.13889124989509583, 0.30853214859962463, -0.040893491357564926, 0.5791707634925842, 0.24966475367546082, -0.016872849315404892, 0.5041948556900024, -0.11280722171068192, 0.47349265217781067, -0.25173795223236084, -0.35429689288139343, 0.01754491589963436, -0.07911281287670135, 0.16679063439369202, 0.11219349503517151, 0.025382738560438156, 0.2566159665584564, -0.21264639496803284, 0.04066220298409462, -0.23563724756240845, -0.2202085554599762, -0.20331060886383057, -0.12542006373405457, 0.18550758063793182, 0.13362780213356018, 0.22324061393737793, -0.1398864984512329, 0.15172448754310608, 0.15621186792850494, 0.25254255533218384, 0.28199121356010437, -0.03822114318609238, -0.5950143337249756, 0.07676655054092407, -0.3939020037651062, 0.13976383209228516, -0.11325568705797195, 0.18279321491718292, 0.09986481070518494, -0.3451109230518341, 0.025728724896907806, -0.03513849899172783, 0.7139859199523926, 0.04234505444765091, -0.03256269544363022, 0.18725241720676422, -0.3037378489971161, -0.4642009437084198, -0.2971777617931366, -0.2848602533340454, 0.03551904484629631, 0.1110168993473053, 0.5587166547775269, -0.24621540307998657, -0.20491760969161987, 0.10058758407831192, 0.15352901816368103, -0.11860549449920654, -0.07743172347545624, -0.39904123544692993, -0.14160801470279694, -0.29913607239723206, 0.02442850172519684, -0.11268764734268188, 0.3314484655857086, -0.3967136740684509, -0.04429757967591286, -0.09741523861885071, -0.08794474601745605, 0.27554982900619507, 0.3371760845184326, 0.46420490741729736, -0.004177931696176529, 0.18418076634407043, 0.14600184559822083, 0.23035483062267303, -0.04926387220621109, 0.5531159043312073, -0.21302558481693268, -0.4674658179283142, 0.0244179405272007, 0.09859851747751236, 0.19192375242710114, 0.2839534878730774, -0.024009060114622116, -0.010320737957954407, 0.0334598682820797, 0.16606059670448303, -0.22199565172195435, 0.11534994840621948, 0.25224533677101135, 0.21178266406059265, -0.19726991653442383, -0.360076904296875, 0.4063868820667267, 0.20452849566936493, -0.08241276443004608, 0.16174271702766418, 0.36265647411346436, -0.272465318441391, 0.1963346302509308, -0.07353576272726059, 0.5536627173423767, 0.14967846870422363, 0.11127494275569916, 0.4936063885688782, -0.15410394966602325, 0.43076828122138977, 0.02828650176525116, 0.07832717895507812, -0.3261825740337372, -0.4324312210083008, 0.07431752234697342, -0.14201965928077698, 0.25430911779403687, -0.09361864626407623, -0.2937712073326111, 0.24257774651050568, -0.06144334375858307, 0.42283928394317627, 0.08242659270763397, -0.03392539545893669, -0.13023243844509125, 0.03504740446805954, -0.44566574692726135, 0.16467051208019257, 0.15672263503074646, 0.29324913024902344, -0.09375259280204773, -0.003961327485740185, -0.1935095489025116, -0.21966786682605743, -0.08303134143352509, 0.014485135674476624, -0.07737172394990921, -0.08036984503269196, 0.5203553438186646, -0.4018173813819885, -0.012779876589775085, 0.3775321841239929, 0.44431960582733154, 0.23157605528831482, -0.1559000164270401, 0.12349160015583038, -0.1541391909122467, 0.14671051502227783, 0.06881020218133926, 0.058822594583034515, 0.42658811807632446, 0.008839249610900879, -0.3543609380722046, 0.19976547360420227, -0.07857167720794678, 0.04148302227258682, -0.11064271628856659, 0.10325846821069717, -0.19899968802928925, -0.3686421513557434, -0.2561350166797638, -0.024101346731185913, 0.3485713005065918, -0.39511924982070923, 0.1987585872411728, 0.037383269518613815, -0.25355783104896545, -0.026776231825351715, 0.08633898943662643, -0.18822315335273743, -0.16517262160778046, 0.5311196446418762, -0.019365228712558746, 0.03937944769859314, 0.5470422506332397, 0.24787147343158722, 0.12774819135665894, -0.1604364812374115, -0.20614942908287048, 0.5066661834716797, -0.40097320079803467, 0.22655513882637024, 0.04523513466119766, -0.08921395242214203, 0.10410686582326889, 0.4483320415019989, 0.08922410011291504, -0.07385719567537308, 0.002520166337490082, -0.3323081135749817, -0.16682235896587372, 0.326921671628952, 0.10181136429309845, 0.20012401044368744, 0.023056939244270325, -0.04473813995718956, -0.1990039199590683, -0.08219009637832642, -0.3838166296482086, 0.23171038925647736, -0.0946815237402916, 0.008004967123270035, 0.2120738923549652, -0.18009400367736816, -0.008277981542050838, -0.24396304786205292, 0.17692413926124573, 0.01152428425848484, -0.23372845351696014, -0.2896282970905304, -0.34162795543670654, 0.06599590927362442, -0.08737434446811676, 0.04097258299589157, 0.0703095942735672, 0.25014686584472656, -0.04651765152812004, -0.23410940170288086, 0.40988489985466003, 0.11188837140798569, 0.03518114238977432, 0.3403918445110321, 0.067662313580513, 0.21684306859970093, 0.017723049968481064, 0.018365399911999702, 0.03464333340525627, -0.24479304254055023, 0.025343548506498337, 0.00019106268882751465, -0.17007876932621002, 0.09217217564582825, -0.009177683852612972, 0.07851435244083405, -0.03326493501663208, 0.17042654752731323, 0.3056047260761261, -0.2575224041938782, 0.17696690559387207, 0.1408841758966446, 0.3525610566139221, 0.16565221548080444, -0.1598721593618393, 0.08831305801868439, 0.12809939682483673, 0.3033124506473541, -0.4272119402885437, -0.06392752379179001, 0.2238364815711975, 0.09884534031152725, 0.19890612363815308, 0.1681097149848938, 0.2588568925857544, -0.155389666557312, 0.18387144804000854, 0.2872067987918854, 0.2977759540081024, 0.058825742453336716, 0.47266268730163574, 0.433197557926178, -0.07073521614074707, 0.07084297388792038, 0.048820436000823975, -0.13458576798439026, -0.06284084171056747, 0.155861496925354, 0.004835784435272217, 0.24992011487483978, -0.006211675703525543, 0.2208317369222641, 0.09636343270540237, -0.3939109146595001, 0.09066884219646454, 0.023897074162960052, -0.17298835515975952, 0.06621160358190536, -0.21233749389648438, 0.4334923028945923, -0.3614331781864166, -0.12069717049598694, -0.3567313849925995, 0.10533149540424347, -0.20421263575553894, -0.3059578537940979, 0.00302678719162941, -0.33227628469467163, 0.004414618015289307, 0.004775185137987137, -0.06254032254219055, -0.12047615647315979, 0.07043881714344025, -0.2905169725418091, -0.24385876953601837, -0.4311002790927887, -0.13740584254264832, 0.04251784458756447, 0.3430764675140381, 0.028575707226991653, 0.3047434389591217, 0.2961229681968689, -0.24666786193847656, 0.073885977268219, 0.2899470925331116, 0.3838070333003998, 0.16483935713768005, 0.23145277798175812, 0.18327228724956512, -0.043359626084566116, -0.05053812265396118, -0.027036549523472786, 0.44763901829719543, 0.048403482884168625, -0.10195551812648773, 0.1409861147403717, 0.1902390867471695, -0.2589709758758545, 0.10880012810230255, -0.10609506070613861, 0.372257798910141, -0.592790424823761, 0.4981983006000519, -0.280374139547348, -0.11388908326625824, -0.09993717074394226, 0.003034524619579315, -0.267267644405365, -0.049525488168001175, 0.10879760980606079, 0.21012917160987854, 0.10175812989473343, -0.26897192001342773, 0.11865909397602081, -0.13922332227230072, 0.3404167890548706, 0.2487785965204239, -0.04290679097175598, -0.13082897663116455, -0.152842715382576, -0.7432312965393066, 0.15355414152145386, 0.06117609143257141, 0.1751803159713745, -0.03144509345293045, -0.09709636867046356, -0.08537683635950089, -0.1342231184244156, -0.021711140871047974, -0.08175951987504959, 0.09103967994451523, 0.05662022531032562, -0.5897560715675354, -0.12165375053882599, -0.10236696898937225, 0.06243697553873062, 0.08346553146839142, -0.1358577013015747, 0.08098407089710236, -0.17615830898284912, 0.015328742563724518, 0.07993992418050766, 0.08507272601127625, -0.025912145152688026, -0.12296693027019501, 0.29484325647354126, 0.15327058732509613, 0.12718799710273743, 0.04002838581800461, -0.15190733969211578, -0.3101467490196228, -0.238750621676445, -0.16566099226474762, 0.27015820145606995, -0.18247032165527344, 0.39684680104255676, 0.08098843693733215, -0.22069098055362701, -0.03469017520546913, 0.2709835171699524, 0.400836706161499, -0.17684271931648254, -0.31223928928375244, 0.18394169211387634, 0.00962153822183609, -0.13617976009845734, 0.3327706754207611, 0.3300030529499054, -0.02098105102777481, 0.18152140080928802, -0.25807517766952515, -0.426164835691452, 0.5998722314834595, -0.43961331248283386, -0.020970499143004417, -0.3280789852142334, 0.15578310191631317, 0.14129889011383057, -0.3467084765434265, -0.660648763179779, 0.047875307500362396, 0.39672425389289856, -0.24282711744308472, -0.16242779791355133, 0.3853435516357422, -0.0664641410112381, 0.09020920097827911, -0.056406550109386444, 0.3422391712665558, 0.15257097780704498, -0.2761003077030182, 0.22250649333000183, -0.11524675041437149 ]
https://github.com/huggingface/datasets/issues/3236
Loading of datasets changed in #3110 returns no examples
Thanks! But what about code that is already using older version of datasets? The reason I encountered this issue was that suddenly one of my repos with version 1.12.1 started getting 0 examples. I handled it by adding `revision` to `load_dataset`, but I guess it would still be an issue for other users who doesn't know this.
## Describe the bug Loading of datasets changed in https://github.com/huggingface/datasets/pull/3110 returns no examples: ```python DatasetDict({ train: Dataset({ features: ['id', 'title', 'abstract', 'full_text', 'qas'], num_rows: 0 }) validation: Dataset({ features: ['id', 'title', 'abstract', 'full_text', 'qas'], num_rows: 0 }) }) ``` ## Steps to reproduce the bug Load any of the datasets that were changed in https://github.com/huggingface/datasets/pull/3110: ```python from datasets import load_dataset load_dataset("qasper") # The problem only started with the commit of #3110 load_dataset("qasper", revision="b6469baa22c174b3906c631802a7016fedea6780") ``` ## Expected results ```python DatasetDict({ train: Dataset({ features: ['id', 'title', 'abstract', 'full_text', 'qas'], num_rows: 888 }) validation: Dataset({ features: ['id', 'title', 'abstract', 'full_text', 'qas'], num_rows: 281 }) }) ``` Which can be received when specifying revision of the commit before https://github.com/huggingface/datasets/pull/3110: ```python from datasets import load_dataset load_dataset("qasper", revision="acfe2abda1ca79f0ce5c1896aa83b4b78af76b7d") ``` ## Environment info <!-- You can run the command `datasets-cli env` and copy-and-paste its output below. --> - `datasets` version: 1.15.2.dev0 (master) - Python version: 3.8.10 - PyArrow version: 3.0.0
57
Loading of datasets changed in #3110 returns no examples ## Describe the bug Loading of datasets changed in https://github.com/huggingface/datasets/pull/3110 returns no examples: ```python DatasetDict({ train: Dataset({ features: ['id', 'title', 'abstract', 'full_text', 'qas'], num_rows: 0 }) validation: Dataset({ features: ['id', 'title', 'abstract', 'full_text', 'qas'], num_rows: 0 }) }) ``` ## Steps to reproduce the bug Load any of the datasets that were changed in https://github.com/huggingface/datasets/pull/3110: ```python from datasets import load_dataset load_dataset("qasper") # The problem only started with the commit of #3110 load_dataset("qasper", revision="b6469baa22c174b3906c631802a7016fedea6780") ``` ## Expected results ```python DatasetDict({ train: Dataset({ features: ['id', 'title', 'abstract', 'full_text', 'qas'], num_rows: 888 }) validation: Dataset({ features: ['id', 'title', 'abstract', 'full_text', 'qas'], num_rows: 281 }) }) ``` Which can be received when specifying revision of the commit before https://github.com/huggingface/datasets/pull/3110: ```python from datasets import load_dataset load_dataset("qasper", revision="acfe2abda1ca79f0ce5c1896aa83b4b78af76b7d") ``` ## Environment info <!-- You can run the command `datasets-cli env` and copy-and-paste its output below. --> - `datasets` version: 1.15.2.dev0 (master) - Python version: 3.8.10 - PyArrow version: 3.0.0 Thanks! But what about code that is already using older version of datasets? The reason I encountered this issue was that suddenly one of my repos with version 1.12.1 started getting 0 examples. I handled it by adding `revision` to `load_dataset`, but I guess it would still be an issue for other users who doesn't know this.
[ 0.04819932207465172, -0.08699776232242584, -0.024228841066360474, 0.28186553716659546, 0.32402777671813965, -0.027351204305887222, 0.27424147725105286, 0.23747539520263672, 0.17098529636859894, 0.20155426859855652, -0.07156755775213242, 0.3162328004837036, -0.04232828691601753, 0.17204652726650238, 0.107111357152462, -0.2534901201725006, 0.11015110462903976, 0.13586513698101044, -0.309677392244339, -0.017404083162546158, -0.031213687732815742, 0.3098748028278351, -0.297730952501297, -0.09264826774597168, -0.2869769334793091, 0.21200546622276306, -0.31421834230422974, 0.1809692680835724, -0.14634495973587036, -0.37781956791877747, 0.3804137110710144, 0.08570219576358795, 0.14202189445495605, 0.6262404918670654, -0.00011086848098784685, 0.17101524770259857, 0.16437768936157227, -0.10097566246986389, -0.2533082067966461, -0.4094514846801758, -0.07174703478813171, -0.4076807200908661, 0.13796843588352203, -0.0840170755982399, -0.3382483124732971, -0.325094610452652, -0.20672233402729034, -0.10293164104223251, 0.4555371403694153, 0.3552957773208618, 0.24130231142044067, 0.4862981140613556, 0.044114384800195694, -0.35154426097869873, 0.013459376990795135, -0.10099044442176819, -0.010846484452486038, 0.017969142645597458, 0.16588625311851501, 0.12143594026565552, 0.09179157763719559, 0.1937301754951477, 0.1166708916425705, -0.14387883245944977, 0.14370054006576538, -0.10310282558202744, -0.164552241563797, -0.16116975247859955, 0.03257369250059128, 0.3317509889602661, 0.417381227016449, -0.20560932159423828, -0.5523958802223206, -0.3343690037727356, -0.0657658576965332, -0.3471265435218811, 0.10690668225288391, 0.10823667049407959, 0.07652750611305237, 0.25804224610328674, -0.19722382724285126, 0.10335201770067215, -0.0616275928914547, 0.0491025447845459, -0.25575700402259827, 0.07303221523761749, -0.11914847791194916, -0.12834733724594116, -0.0014370977878570557, -0.04176092892885208, -0.10489194840192795, 0.015495802275836468, -0.0036514438688755035, 0.15013693273067474, -0.43189680576324463, 0.055430471897125244, 0.23755553364753723, 0.012555178254842758, -0.01468556746840477, 0.238398015499115, 0.2823122441768646, 0.2580578625202179, -0.101495660841465, 0.042657386511564255, 0.055312979966402054, 0.430795282125473, 0.0989549458026886, -0.011281326413154602, 0.3555489778518677, 0.39031654596328735, -0.0860641822218895, -0.09213025122880936, -0.034975677728652954, -0.18792256712913513, 0.11010754108428955, 0.050720661878585815, 0.27344071865081787, -0.20166705548763275, -0.23222322762012482, 0.23009532690048218, -0.23713913559913635, -0.07564546167850494, 0.028555121272802353, 0.507034182548523, -0.07799119502305984, 0.08678800612688065, 0.034564755856990814, 0.17597919702529907, -0.15026918053627014, -0.30060917139053345, -0.4464168846607208, -0.03168972581624985, -0.32549819350242615, -0.09989909827709198, 0.27234306931495667, -0.19603247940540314, 0.4132772386074066, 0.0805029571056366, -0.14482328295707703, -0.06514804065227509, 0.06244232505559921, 0.19924063980579376, 0.1993405520915985, 0.2849487066268921, -0.059513673186302185, -0.010659764520823956, 0.29171374440193176, -0.05834390968084335, 0.00712200254201889, 0.04807943105697632, -0.24291002750396729, -0.27833810448646545, -0.11201447248458862, 0.26651403307914734, -0.46140241622924805, -0.02281210571527481, -0.022466696798801422, 0.18836045265197754, 0.0015458166599273682, -0.05246733874082565, 0.03706619143486023, -0.12953422963619232, -0.036048345267772675, -0.03669415041804314, 0.4575088918209076, 0.45337212085723877, -0.1228640228509903, -0.3646812438964844, 0.21558019518852234, -0.09418803453445435, 0.008019790053367615, 0.021370533853769302, -0.006280258763581514, 0.08745904266834259, -0.2322482168674469, -0.12200461328029633, 0.28580552339553833, -0.24658988416194916, -0.4048400819301605, -0.07660423219203949, -0.021187473088502884, 0.4242132902145386, 0.20833081007003784, -0.25259312987327576, 0.024639546871185303, 0.0277145653963089, 0.12717202305793762, -0.0023789089173078537, 0.26059725880622864, 0.08644933998584747, -0.1792174130678177, -0.14967632293701172, 0.03138149902224541, -0.008717609569430351, 0.04632348567247391, 0.23638185858726501, -0.046051107347011566, -0.14256948232650757, 0.31980839371681213, -0.26297900080680847, -0.11147453635931015, 0.2994381785392761, 0.3906705677509308, 0.03349389135837555, 0.20754513144493103, -0.21019983291625977, -0.5983008742332458, 0.42618972063064575, 0.008391197770833969, 0.17369630932807922, 0.10646668821573257, -0.1905423104763031, -0.3390613794326782, -0.03199400007724762, -0.21738387644290924, -0.4623183012008667, 0.14434200525283813, 0.17128422856330872, 0.31135863065719604, 0.11330968141555786, -0.2209651619195938, 0.47827064990997314, -0.13914573192596436, 0.24661238491535187, -0.42443346977233887, 0.3553304672241211, 0.04948589205741882, -0.15859392285346985, 0.0004652850329875946, 0.37904930114746094, 0.08950452506542206, -0.2791752219200134, -0.03193485364317894, 0.4426726698875427, 0.08483044058084488, 0.12699134647846222, -0.16657087206840515, 0.034146830439567566, 0.3217850923538208, 0.10635881125926971, -0.05022376775741577, 0.1898234486579895, -0.06287483870983124, 0.14352038502693176, -0.3038610517978668, 0.4575382471084595, 0.008514754474163055, 0.1595538854598999, 0.25687915086746216, -0.043040044605731964, 0.16834452748298645, -0.11688163876533508, -0.3479304611682892, -0.247915580868721, 0.21994620561599731, -0.29615283012390137, 0.2113559991121292, 0.12425582110881805, -0.40705716609954834, 0.05415874347090721, 0.37906327843666077, 0.01974606141448021, 0.046270471066236496, -0.023337766528129578, -0.21029365062713623, 0.03643663972616196, 0.3277457058429718, 0.13162840902805328, 0.25617462396621704, 0.2758215665817261, -0.05191678926348686, 0.12118363380432129, -0.054418206214904785, -0.20136658847332, 0.1555202156305313, -0.026405416429042816, -0.12247040867805481, 0.23154878616333008, 0.16160352528095245, 0.09366403520107269, -0.4347332715988159, 0.09159111976623535, -0.06647130846977234, 0.16182918846607208, -0.4015600085258484, -0.009128939360380173, -0.3828182816505432, -0.05571325868368149, -0.17768391966819763, -0.25739380717277527, 0.013449354097247124, -0.3274969160556793, 0.029093753546476364, 0.14186041057109833, -0.16217871010303497, 0.27849626541137695, -0.06688542664051056, 0.09949010610580444, -0.025930840522050858, 0.13420110940933228, -0.2214835286140442, -0.041421327739953995, -0.2053791880607605, 0.08151504397392273, -0.07849583774805069, -0.019277215003967285, 0.18022587895393372, -0.32125672698020935, -0.04080677777528763, -0.2744917869567871, -0.5607582330703735, 0.03277153521776199, -0.059664152562618256, 0.3699053227901459, 0.18612179160118103, 0.037841420620679855, -0.07876139879226685, -0.028003521263599396, 0.31175240874290466, -0.09955242276191711, -0.3088870346546173, 0.1620040237903595, 0.04371451213955879, 0.050608325749635696, -0.32228243350982666, -0.6019359827041626, -0.051994822919368744, -0.3921588957309723, 0.21886929869651794, -0.015108708292245865, -0.012924917042255402, 0.330697625875473, 0.17657038569450378, 0.24071446061134338, -0.03588895499706268, 0.18847765028476715, -0.18563935160636902, -0.23668095469474792, 0.2083817720413208, -0.32246536016464233, -0.5175804495811462, -0.09954972565174103, -0.06821341812610626, 0.17494867742061615, -0.07062383741140366, -0.401883065700531, -0.4492528438568115, -0.2838638424873352, 0.2869093716144562, 0.08836487680673599, 0.1963796615600586, 0.31953465938568115, -0.017048122361302376, -0.08276253938674927, -0.236519455909729, -0.24414998292922974, 0.0866851881146431, -0.039627112448215485, -0.01303333044052124, -0.13889124989509583, 0.30853214859962463, -0.040893491357564926, 0.5791707634925842, 0.24966475367546082, -0.016872849315404892, 0.5041948556900024, -0.11280722171068192, 0.47349265217781067, -0.25173795223236084, -0.35429689288139343, 0.01754491589963436, -0.07911281287670135, 0.16679063439369202, 0.11219349503517151, 0.025382738560438156, 0.2566159665584564, -0.21264639496803284, 0.04066220298409462, -0.23563724756240845, -0.2202085554599762, -0.20331060886383057, -0.12542006373405457, 0.18550758063793182, 0.13362780213356018, 0.22324061393737793, -0.1398864984512329, 0.15172448754310608, 0.15621186792850494, 0.25254255533218384, 0.28199121356010437, -0.03822114318609238, -0.5950143337249756, 0.07676655054092407, -0.3939020037651062, 0.13976383209228516, -0.11325568705797195, 0.18279321491718292, 0.09986481070518494, -0.3451109230518341, 0.025728724896907806, -0.03513849899172783, 0.7139859199523926, 0.04234505444765091, -0.03256269544363022, 0.18725241720676422, -0.3037378489971161, -0.4642009437084198, -0.2971777617931366, -0.2848602533340454, 0.03551904484629631, 0.1110168993473053, 0.5587166547775269, -0.24621540307998657, -0.20491760969161987, 0.10058758407831192, 0.15352901816368103, -0.11860549449920654, -0.07743172347545624, -0.39904123544692993, -0.14160801470279694, -0.29913607239723206, 0.02442850172519684, -0.11268764734268188, 0.3314484655857086, -0.3967136740684509, -0.04429757967591286, -0.09741523861885071, -0.08794474601745605, 0.27554982900619507, 0.3371760845184326, 0.46420490741729736, -0.004177931696176529, 0.18418076634407043, 0.14600184559822083, 0.23035483062267303, -0.04926387220621109, 0.5531159043312073, -0.21302558481693268, -0.4674658179283142, 0.0244179405272007, 0.09859851747751236, 0.19192375242710114, 0.2839534878730774, -0.024009060114622116, -0.010320737957954407, 0.0334598682820797, 0.16606059670448303, -0.22199565172195435, 0.11534994840621948, 0.25224533677101135, 0.21178266406059265, -0.19726991653442383, -0.360076904296875, 0.4063868820667267, 0.20452849566936493, -0.08241276443004608, 0.16174271702766418, 0.36265647411346436, -0.272465318441391, 0.1963346302509308, -0.07353576272726059, 0.5536627173423767, 0.14967846870422363, 0.11127494275569916, 0.4936063885688782, -0.15410394966602325, 0.43076828122138977, 0.02828650176525116, 0.07832717895507812, -0.3261825740337372, -0.4324312210083008, 0.07431752234697342, -0.14201965928077698, 0.25430911779403687, -0.09361864626407623, -0.2937712073326111, 0.24257774651050568, -0.06144334375858307, 0.42283928394317627, 0.08242659270763397, -0.03392539545893669, -0.13023243844509125, 0.03504740446805954, -0.44566574692726135, 0.16467051208019257, 0.15672263503074646, 0.29324913024902344, -0.09375259280204773, -0.003961327485740185, -0.1935095489025116, -0.21966786682605743, -0.08303134143352509, 0.014485135674476624, -0.07737172394990921, -0.08036984503269196, 0.5203553438186646, -0.4018173813819885, -0.012779876589775085, 0.3775321841239929, 0.44431960582733154, 0.23157605528831482, -0.1559000164270401, 0.12349160015583038, -0.1541391909122467, 0.14671051502227783, 0.06881020218133926, 0.058822594583034515, 0.42658811807632446, 0.008839249610900879, -0.3543609380722046, 0.19976547360420227, -0.07857167720794678, 0.04148302227258682, -0.11064271628856659, 0.10325846821069717, -0.19899968802928925, -0.3686421513557434, -0.2561350166797638, -0.024101346731185913, 0.3485713005065918, -0.39511924982070923, 0.1987585872411728, 0.037383269518613815, -0.25355783104896545, -0.026776231825351715, 0.08633898943662643, -0.18822315335273743, -0.16517262160778046, 0.5311196446418762, -0.019365228712558746, 0.03937944769859314, 0.5470422506332397, 0.24787147343158722, 0.12774819135665894, -0.1604364812374115, -0.20614942908287048, 0.5066661834716797, -0.40097320079803467, 0.22655513882637024, 0.04523513466119766, -0.08921395242214203, 0.10410686582326889, 0.4483320415019989, 0.08922410011291504, -0.07385719567537308, 0.002520166337490082, -0.3323081135749817, -0.16682235896587372, 0.326921671628952, 0.10181136429309845, 0.20012401044368744, 0.023056939244270325, -0.04473813995718956, -0.1990039199590683, -0.08219009637832642, -0.3838166296482086, 0.23171038925647736, -0.0946815237402916, 0.008004967123270035, 0.2120738923549652, -0.18009400367736816, -0.008277981542050838, -0.24396304786205292, 0.17692413926124573, 0.01152428425848484, -0.23372845351696014, -0.2896282970905304, -0.34162795543670654, 0.06599590927362442, -0.08737434446811676, 0.04097258299589157, 0.0703095942735672, 0.25014686584472656, -0.04651765152812004, -0.23410940170288086, 0.40988489985466003, 0.11188837140798569, 0.03518114238977432, 0.3403918445110321, 0.067662313580513, 0.21684306859970093, 0.017723049968481064, 0.018365399911999702, 0.03464333340525627, -0.24479304254055023, 0.025343548506498337, 0.00019106268882751465, -0.17007876932621002, 0.09217217564582825, -0.009177683852612972, 0.07851435244083405, -0.03326493501663208, 0.17042654752731323, 0.3056047260761261, -0.2575224041938782, 0.17696690559387207, 0.1408841758966446, 0.3525610566139221, 0.16565221548080444, -0.1598721593618393, 0.08831305801868439, 0.12809939682483673, 0.3033124506473541, -0.4272119402885437, -0.06392752379179001, 0.2238364815711975, 0.09884534031152725, 0.19890612363815308, 0.1681097149848938, 0.2588568925857544, -0.155389666557312, 0.18387144804000854, 0.2872067987918854, 0.2977759540081024, 0.058825742453336716, 0.47266268730163574, 0.433197557926178, -0.07073521614074707, 0.07084297388792038, 0.048820436000823975, -0.13458576798439026, -0.06284084171056747, 0.155861496925354, 0.004835784435272217, 0.24992011487483978, -0.006211675703525543, 0.2208317369222641, 0.09636343270540237, -0.3939109146595001, 0.09066884219646454, 0.023897074162960052, -0.17298835515975952, 0.06621160358190536, -0.21233749389648438, 0.4334923028945923, -0.3614331781864166, -0.12069717049598694, -0.3567313849925995, 0.10533149540424347, -0.20421263575553894, -0.3059578537940979, 0.00302678719162941, -0.33227628469467163, 0.004414618015289307, 0.004775185137987137, -0.06254032254219055, -0.12047615647315979, 0.07043881714344025, -0.2905169725418091, -0.24385876953601837, -0.4311002790927887, -0.13740584254264832, 0.04251784458756447, 0.3430764675140381, 0.028575707226991653, 0.3047434389591217, 0.2961229681968689, -0.24666786193847656, 0.073885977268219, 0.2899470925331116, 0.3838070333003998, 0.16483935713768005, 0.23145277798175812, 0.18327228724956512, -0.043359626084566116, -0.05053812265396118, -0.027036549523472786, 0.44763901829719543, 0.048403482884168625, -0.10195551812648773, 0.1409861147403717, 0.1902390867471695, -0.2589709758758545, 0.10880012810230255, -0.10609506070613861, 0.372257798910141, -0.592790424823761, 0.4981983006000519, -0.280374139547348, -0.11388908326625824, -0.09993717074394226, 0.003034524619579315, -0.267267644405365, -0.049525488168001175, 0.10879760980606079, 0.21012917160987854, 0.10175812989473343, -0.26897192001342773, 0.11865909397602081, -0.13922332227230072, 0.3404167890548706, 0.2487785965204239, -0.04290679097175598, -0.13082897663116455, -0.152842715382576, -0.7432312965393066, 0.15355414152145386, 0.06117609143257141, 0.1751803159713745, -0.03144509345293045, -0.09709636867046356, -0.08537683635950089, -0.1342231184244156, -0.021711140871047974, -0.08175951987504959, 0.09103967994451523, 0.05662022531032562, -0.5897560715675354, -0.12165375053882599, -0.10236696898937225, 0.06243697553873062, 0.08346553146839142, -0.1358577013015747, 0.08098407089710236, -0.17615830898284912, 0.015328742563724518, 0.07993992418050766, 0.08507272601127625, -0.025912145152688026, -0.12296693027019501, 0.29484325647354126, 0.15327058732509613, 0.12718799710273743, 0.04002838581800461, -0.15190733969211578, -0.3101467490196228, -0.238750621676445, -0.16566099226474762, 0.27015820145606995, -0.18247032165527344, 0.39684680104255676, 0.08098843693733215, -0.22069098055362701, -0.03469017520546913, 0.2709835171699524, 0.400836706161499, -0.17684271931648254, -0.31223928928375244, 0.18394169211387634, 0.00962153822183609, -0.13617976009845734, 0.3327706754207611, 0.3300030529499054, -0.02098105102777481, 0.18152140080928802, -0.25807517766952515, -0.426164835691452, 0.5998722314834595, -0.43961331248283386, -0.020970499143004417, -0.3280789852142334, 0.15578310191631317, 0.14129889011383057, -0.3467084765434265, -0.660648763179779, 0.047875307500362396, 0.39672425389289856, -0.24282711744308472, -0.16242779791355133, 0.3853435516357422, -0.0664641410112381, 0.09020920097827911, -0.056406550109386444, 0.3422391712665558, 0.15257097780704498, -0.2761003077030182, 0.22250649333000183, -0.11524675041437149 ]
https://github.com/huggingface/datasets/issues/3236
Loading of datasets changed in #3110 returns no examples
Hi, in 1.12.1 it uses the dataset scripts from that time, not the one on master. It only uses the datasets from master if you installed `datasets` from source, or if the dataset isn't available in your local version (in this case it shows a warning and it loads from master).
## Describe the bug Loading of datasets changed in https://github.com/huggingface/datasets/pull/3110 returns no examples: ```python DatasetDict({ train: Dataset({ features: ['id', 'title', 'abstract', 'full_text', 'qas'], num_rows: 0 }) validation: Dataset({ features: ['id', 'title', 'abstract', 'full_text', 'qas'], num_rows: 0 }) }) ``` ## Steps to reproduce the bug Load any of the datasets that were changed in https://github.com/huggingface/datasets/pull/3110: ```python from datasets import load_dataset load_dataset("qasper") # The problem only started with the commit of #3110 load_dataset("qasper", revision="b6469baa22c174b3906c631802a7016fedea6780") ``` ## Expected results ```python DatasetDict({ train: Dataset({ features: ['id', 'title', 'abstract', 'full_text', 'qas'], num_rows: 888 }) validation: Dataset({ features: ['id', 'title', 'abstract', 'full_text', 'qas'], num_rows: 281 }) }) ``` Which can be received when specifying revision of the commit before https://github.com/huggingface/datasets/pull/3110: ```python from datasets import load_dataset load_dataset("qasper", revision="acfe2abda1ca79f0ce5c1896aa83b4b78af76b7d") ``` ## Environment info <!-- You can run the command `datasets-cli env` and copy-and-paste its output below. --> - `datasets` version: 1.15.2.dev0 (master) - Python version: 3.8.10 - PyArrow version: 3.0.0
51
Loading of datasets changed in #3110 returns no examples ## Describe the bug Loading of datasets changed in https://github.com/huggingface/datasets/pull/3110 returns no examples: ```python DatasetDict({ train: Dataset({ features: ['id', 'title', 'abstract', 'full_text', 'qas'], num_rows: 0 }) validation: Dataset({ features: ['id', 'title', 'abstract', 'full_text', 'qas'], num_rows: 0 }) }) ``` ## Steps to reproduce the bug Load any of the datasets that were changed in https://github.com/huggingface/datasets/pull/3110: ```python from datasets import load_dataset load_dataset("qasper") # The problem only started with the commit of #3110 load_dataset("qasper", revision="b6469baa22c174b3906c631802a7016fedea6780") ``` ## Expected results ```python DatasetDict({ train: Dataset({ features: ['id', 'title', 'abstract', 'full_text', 'qas'], num_rows: 888 }) validation: Dataset({ features: ['id', 'title', 'abstract', 'full_text', 'qas'], num_rows: 281 }) }) ``` Which can be received when specifying revision of the commit before https://github.com/huggingface/datasets/pull/3110: ```python from datasets import load_dataset load_dataset("qasper", revision="acfe2abda1ca79f0ce5c1896aa83b4b78af76b7d") ``` ## Environment info <!-- You can run the command `datasets-cli env` and copy-and-paste its output below. --> - `datasets` version: 1.15.2.dev0 (master) - Python version: 3.8.10 - PyArrow version: 3.0.0 Hi, in 1.12.1 it uses the dataset scripts from that time, not the one on master. It only uses the datasets from master if you installed `datasets` from source, or if the dataset isn't available in your local version (in this case it shows a warning and it loads from master).
[ 0.04819932207465172, -0.08699776232242584, -0.024228841066360474, 0.28186553716659546, 0.32402777671813965, -0.027351204305887222, 0.27424147725105286, 0.23747539520263672, 0.17098529636859894, 0.20155426859855652, -0.07156755775213242, 0.3162328004837036, -0.04232828691601753, 0.17204652726650238, 0.107111357152462, -0.2534901201725006, 0.11015110462903976, 0.13586513698101044, -0.309677392244339, -0.017404083162546158, -0.031213687732815742, 0.3098748028278351, -0.297730952501297, -0.09264826774597168, -0.2869769334793091, 0.21200546622276306, -0.31421834230422974, 0.1809692680835724, -0.14634495973587036, -0.37781956791877747, 0.3804137110710144, 0.08570219576358795, 0.14202189445495605, 0.6262404918670654, -0.00011086848098784685, 0.17101524770259857, 0.16437768936157227, -0.10097566246986389, -0.2533082067966461, -0.4094514846801758, -0.07174703478813171, -0.4076807200908661, 0.13796843588352203, -0.0840170755982399, -0.3382483124732971, -0.325094610452652, -0.20672233402729034, -0.10293164104223251, 0.4555371403694153, 0.3552957773208618, 0.24130231142044067, 0.4862981140613556, 0.044114384800195694, -0.35154426097869873, 0.013459376990795135, -0.10099044442176819, -0.010846484452486038, 0.017969142645597458, 0.16588625311851501, 0.12143594026565552, 0.09179157763719559, 0.1937301754951477, 0.1166708916425705, -0.14387883245944977, 0.14370054006576538, -0.10310282558202744, -0.164552241563797, -0.16116975247859955, 0.03257369250059128, 0.3317509889602661, 0.417381227016449, -0.20560932159423828, -0.5523958802223206, -0.3343690037727356, -0.0657658576965332, -0.3471265435218811, 0.10690668225288391, 0.10823667049407959, 0.07652750611305237, 0.25804224610328674, -0.19722382724285126, 0.10335201770067215, -0.0616275928914547, 0.0491025447845459, -0.25575700402259827, 0.07303221523761749, -0.11914847791194916, -0.12834733724594116, -0.0014370977878570557, -0.04176092892885208, -0.10489194840192795, 0.015495802275836468, -0.0036514438688755035, 0.15013693273067474, -0.43189680576324463, 0.055430471897125244, 0.23755553364753723, 0.012555178254842758, -0.01468556746840477, 0.238398015499115, 0.2823122441768646, 0.2580578625202179, -0.101495660841465, 0.042657386511564255, 0.055312979966402054, 0.430795282125473, 0.0989549458026886, -0.011281326413154602, 0.3555489778518677, 0.39031654596328735, -0.0860641822218895, -0.09213025122880936, -0.034975677728652954, -0.18792256712913513, 0.11010754108428955, 0.050720661878585815, 0.27344071865081787, -0.20166705548763275, -0.23222322762012482, 0.23009532690048218, -0.23713913559913635, -0.07564546167850494, 0.028555121272802353, 0.507034182548523, -0.07799119502305984, 0.08678800612688065, 0.034564755856990814, 0.17597919702529907, -0.15026918053627014, -0.30060917139053345, -0.4464168846607208, -0.03168972581624985, -0.32549819350242615, -0.09989909827709198, 0.27234306931495667, -0.19603247940540314, 0.4132772386074066, 0.0805029571056366, -0.14482328295707703, -0.06514804065227509, 0.06244232505559921, 0.19924063980579376, 0.1993405520915985, 0.2849487066268921, -0.059513673186302185, -0.010659764520823956, 0.29171374440193176, -0.05834390968084335, 0.00712200254201889, 0.04807943105697632, -0.24291002750396729, -0.27833810448646545, -0.11201447248458862, 0.26651403307914734, -0.46140241622924805, -0.02281210571527481, -0.022466696798801422, 0.18836045265197754, 0.0015458166599273682, -0.05246733874082565, 0.03706619143486023, -0.12953422963619232, -0.036048345267772675, -0.03669415041804314, 0.4575088918209076, 0.45337212085723877, -0.1228640228509903, -0.3646812438964844, 0.21558019518852234, -0.09418803453445435, 0.008019790053367615, 0.021370533853769302, -0.006280258763581514, 0.08745904266834259, -0.2322482168674469, -0.12200461328029633, 0.28580552339553833, -0.24658988416194916, -0.4048400819301605, -0.07660423219203949, -0.021187473088502884, 0.4242132902145386, 0.20833081007003784, -0.25259312987327576, 0.024639546871185303, 0.0277145653963089, 0.12717202305793762, -0.0023789089173078537, 0.26059725880622864, 0.08644933998584747, -0.1792174130678177, -0.14967632293701172, 0.03138149902224541, -0.008717609569430351, 0.04632348567247391, 0.23638185858726501, -0.046051107347011566, -0.14256948232650757, 0.31980839371681213, -0.26297900080680847, -0.11147453635931015, 0.2994381785392761, 0.3906705677509308, 0.03349389135837555, 0.20754513144493103, -0.21019983291625977, -0.5983008742332458, 0.42618972063064575, 0.008391197770833969, 0.17369630932807922, 0.10646668821573257, -0.1905423104763031, -0.3390613794326782, -0.03199400007724762, -0.21738387644290924, -0.4623183012008667, 0.14434200525283813, 0.17128422856330872, 0.31135863065719604, 0.11330968141555786, -0.2209651619195938, 0.47827064990997314, -0.13914573192596436, 0.24661238491535187, -0.42443346977233887, 0.3553304672241211, 0.04948589205741882, -0.15859392285346985, 0.0004652850329875946, 0.37904930114746094, 0.08950452506542206, -0.2791752219200134, -0.03193485364317894, 0.4426726698875427, 0.08483044058084488, 0.12699134647846222, -0.16657087206840515, 0.034146830439567566, 0.3217850923538208, 0.10635881125926971, -0.05022376775741577, 0.1898234486579895, -0.06287483870983124, 0.14352038502693176, -0.3038610517978668, 0.4575382471084595, 0.008514754474163055, 0.1595538854598999, 0.25687915086746216, -0.043040044605731964, 0.16834452748298645, -0.11688163876533508, -0.3479304611682892, -0.247915580868721, 0.21994620561599731, -0.29615283012390137, 0.2113559991121292, 0.12425582110881805, -0.40705716609954834, 0.05415874347090721, 0.37906327843666077, 0.01974606141448021, 0.046270471066236496, -0.023337766528129578, -0.21029365062713623, 0.03643663972616196, 0.3277457058429718, 0.13162840902805328, 0.25617462396621704, 0.2758215665817261, -0.05191678926348686, 0.12118363380432129, -0.054418206214904785, -0.20136658847332, 0.1555202156305313, -0.026405416429042816, -0.12247040867805481, 0.23154878616333008, 0.16160352528095245, 0.09366403520107269, -0.4347332715988159, 0.09159111976623535, -0.06647130846977234, 0.16182918846607208, -0.4015600085258484, -0.009128939360380173, -0.3828182816505432, -0.05571325868368149, -0.17768391966819763, -0.25739380717277527, 0.013449354097247124, -0.3274969160556793, 0.029093753546476364, 0.14186041057109833, -0.16217871010303497, 0.27849626541137695, -0.06688542664051056, 0.09949010610580444, -0.025930840522050858, 0.13420110940933228, -0.2214835286140442, -0.041421327739953995, -0.2053791880607605, 0.08151504397392273, -0.07849583774805069, -0.019277215003967285, 0.18022587895393372, -0.32125672698020935, -0.04080677777528763, -0.2744917869567871, -0.5607582330703735, 0.03277153521776199, -0.059664152562618256, 0.3699053227901459, 0.18612179160118103, 0.037841420620679855, -0.07876139879226685, -0.028003521263599396, 0.31175240874290466, -0.09955242276191711, -0.3088870346546173, 0.1620040237903595, 0.04371451213955879, 0.050608325749635696, -0.32228243350982666, -0.6019359827041626, -0.051994822919368744, -0.3921588957309723, 0.21886929869651794, -0.015108708292245865, -0.012924917042255402, 0.330697625875473, 0.17657038569450378, 0.24071446061134338, -0.03588895499706268, 0.18847765028476715, -0.18563935160636902, -0.23668095469474792, 0.2083817720413208, -0.32246536016464233, -0.5175804495811462, -0.09954972565174103, -0.06821341812610626, 0.17494867742061615, -0.07062383741140366, -0.401883065700531, -0.4492528438568115, -0.2838638424873352, 0.2869093716144562, 0.08836487680673599, 0.1963796615600586, 0.31953465938568115, -0.017048122361302376, -0.08276253938674927, -0.236519455909729, -0.24414998292922974, 0.0866851881146431, -0.039627112448215485, -0.01303333044052124, -0.13889124989509583, 0.30853214859962463, -0.040893491357564926, 0.5791707634925842, 0.24966475367546082, -0.016872849315404892, 0.5041948556900024, -0.11280722171068192, 0.47349265217781067, -0.25173795223236084, -0.35429689288139343, 0.01754491589963436, -0.07911281287670135, 0.16679063439369202, 0.11219349503517151, 0.025382738560438156, 0.2566159665584564, -0.21264639496803284, 0.04066220298409462, -0.23563724756240845, -0.2202085554599762, -0.20331060886383057, -0.12542006373405457, 0.18550758063793182, 0.13362780213356018, 0.22324061393737793, -0.1398864984512329, 0.15172448754310608, 0.15621186792850494, 0.25254255533218384, 0.28199121356010437, -0.03822114318609238, -0.5950143337249756, 0.07676655054092407, -0.3939020037651062, 0.13976383209228516, -0.11325568705797195, 0.18279321491718292, 0.09986481070518494, -0.3451109230518341, 0.025728724896907806, -0.03513849899172783, 0.7139859199523926, 0.04234505444765091, -0.03256269544363022, 0.18725241720676422, -0.3037378489971161, -0.4642009437084198, -0.2971777617931366, -0.2848602533340454, 0.03551904484629631, 0.1110168993473053, 0.5587166547775269, -0.24621540307998657, -0.20491760969161987, 0.10058758407831192, 0.15352901816368103, -0.11860549449920654, -0.07743172347545624, -0.39904123544692993, -0.14160801470279694, -0.29913607239723206, 0.02442850172519684, -0.11268764734268188, 0.3314484655857086, -0.3967136740684509, -0.04429757967591286, -0.09741523861885071, -0.08794474601745605, 0.27554982900619507, 0.3371760845184326, 0.46420490741729736, -0.004177931696176529, 0.18418076634407043, 0.14600184559822083, 0.23035483062267303, -0.04926387220621109, 0.5531159043312073, -0.21302558481693268, -0.4674658179283142, 0.0244179405272007, 0.09859851747751236, 0.19192375242710114, 0.2839534878730774, -0.024009060114622116, -0.010320737957954407, 0.0334598682820797, 0.16606059670448303, -0.22199565172195435, 0.11534994840621948, 0.25224533677101135, 0.21178266406059265, -0.19726991653442383, -0.360076904296875, 0.4063868820667267, 0.20452849566936493, -0.08241276443004608, 0.16174271702766418, 0.36265647411346436, -0.272465318441391, 0.1963346302509308, -0.07353576272726059, 0.5536627173423767, 0.14967846870422363, 0.11127494275569916, 0.4936063885688782, -0.15410394966602325, 0.43076828122138977, 0.02828650176525116, 0.07832717895507812, -0.3261825740337372, -0.4324312210083008, 0.07431752234697342, -0.14201965928077698, 0.25430911779403687, -0.09361864626407623, -0.2937712073326111, 0.24257774651050568, -0.06144334375858307, 0.42283928394317627, 0.08242659270763397, -0.03392539545893669, -0.13023243844509125, 0.03504740446805954, -0.44566574692726135, 0.16467051208019257, 0.15672263503074646, 0.29324913024902344, -0.09375259280204773, -0.003961327485740185, -0.1935095489025116, -0.21966786682605743, -0.08303134143352509, 0.014485135674476624, -0.07737172394990921, -0.08036984503269196, 0.5203553438186646, -0.4018173813819885, -0.012779876589775085, 0.3775321841239929, 0.44431960582733154, 0.23157605528831482, -0.1559000164270401, 0.12349160015583038, -0.1541391909122467, 0.14671051502227783, 0.06881020218133926, 0.058822594583034515, 0.42658811807632446, 0.008839249610900879, -0.3543609380722046, 0.19976547360420227, -0.07857167720794678, 0.04148302227258682, -0.11064271628856659, 0.10325846821069717, -0.19899968802928925, -0.3686421513557434, -0.2561350166797638, -0.024101346731185913, 0.3485713005065918, -0.39511924982070923, 0.1987585872411728, 0.037383269518613815, -0.25355783104896545, -0.026776231825351715, 0.08633898943662643, -0.18822315335273743, -0.16517262160778046, 0.5311196446418762, -0.019365228712558746, 0.03937944769859314, 0.5470422506332397, 0.24787147343158722, 0.12774819135665894, -0.1604364812374115, -0.20614942908287048, 0.5066661834716797, -0.40097320079803467, 0.22655513882637024, 0.04523513466119766, -0.08921395242214203, 0.10410686582326889, 0.4483320415019989, 0.08922410011291504, -0.07385719567537308, 0.002520166337490082, -0.3323081135749817, -0.16682235896587372, 0.326921671628952, 0.10181136429309845, 0.20012401044368744, 0.023056939244270325, -0.04473813995718956, -0.1990039199590683, -0.08219009637832642, -0.3838166296482086, 0.23171038925647736, -0.0946815237402916, 0.008004967123270035, 0.2120738923549652, -0.18009400367736816, -0.008277981542050838, -0.24396304786205292, 0.17692413926124573, 0.01152428425848484, -0.23372845351696014, -0.2896282970905304, -0.34162795543670654, 0.06599590927362442, -0.08737434446811676, 0.04097258299589157, 0.0703095942735672, 0.25014686584472656, -0.04651765152812004, -0.23410940170288086, 0.40988489985466003, 0.11188837140798569, 0.03518114238977432, 0.3403918445110321, 0.067662313580513, 0.21684306859970093, 0.017723049968481064, 0.018365399911999702, 0.03464333340525627, -0.24479304254055023, 0.025343548506498337, 0.00019106268882751465, -0.17007876932621002, 0.09217217564582825, -0.009177683852612972, 0.07851435244083405, -0.03326493501663208, 0.17042654752731323, 0.3056047260761261, -0.2575224041938782, 0.17696690559387207, 0.1408841758966446, 0.3525610566139221, 0.16565221548080444, -0.1598721593618393, 0.08831305801868439, 0.12809939682483673, 0.3033124506473541, -0.4272119402885437, -0.06392752379179001, 0.2238364815711975, 0.09884534031152725, 0.19890612363815308, 0.1681097149848938, 0.2588568925857544, -0.155389666557312, 0.18387144804000854, 0.2872067987918854, 0.2977759540081024, 0.058825742453336716, 0.47266268730163574, 0.433197557926178, -0.07073521614074707, 0.07084297388792038, 0.048820436000823975, -0.13458576798439026, -0.06284084171056747, 0.155861496925354, 0.004835784435272217, 0.24992011487483978, -0.006211675703525543, 0.2208317369222641, 0.09636343270540237, -0.3939109146595001, 0.09066884219646454, 0.023897074162960052, -0.17298835515975952, 0.06621160358190536, -0.21233749389648438, 0.4334923028945923, -0.3614331781864166, -0.12069717049598694, -0.3567313849925995, 0.10533149540424347, -0.20421263575553894, -0.3059578537940979, 0.00302678719162941, -0.33227628469467163, 0.004414618015289307, 0.004775185137987137, -0.06254032254219055, -0.12047615647315979, 0.07043881714344025, -0.2905169725418091, -0.24385876953601837, -0.4311002790927887, -0.13740584254264832, 0.04251784458756447, 0.3430764675140381, 0.028575707226991653, 0.3047434389591217, 0.2961229681968689, -0.24666786193847656, 0.073885977268219, 0.2899470925331116, 0.3838070333003998, 0.16483935713768005, 0.23145277798175812, 0.18327228724956512, -0.043359626084566116, -0.05053812265396118, -0.027036549523472786, 0.44763901829719543, 0.048403482884168625, -0.10195551812648773, 0.1409861147403717, 0.1902390867471695, -0.2589709758758545, 0.10880012810230255, -0.10609506070613861, 0.372257798910141, -0.592790424823761, 0.4981983006000519, -0.280374139547348, -0.11388908326625824, -0.09993717074394226, 0.003034524619579315, -0.267267644405365, -0.049525488168001175, 0.10879760980606079, 0.21012917160987854, 0.10175812989473343, -0.26897192001342773, 0.11865909397602081, -0.13922332227230072, 0.3404167890548706, 0.2487785965204239, -0.04290679097175598, -0.13082897663116455, -0.152842715382576, -0.7432312965393066, 0.15355414152145386, 0.06117609143257141, 0.1751803159713745, -0.03144509345293045, -0.09709636867046356, -0.08537683635950089, -0.1342231184244156, -0.021711140871047974, -0.08175951987504959, 0.09103967994451523, 0.05662022531032562, -0.5897560715675354, -0.12165375053882599, -0.10236696898937225, 0.06243697553873062, 0.08346553146839142, -0.1358577013015747, 0.08098407089710236, -0.17615830898284912, 0.015328742563724518, 0.07993992418050766, 0.08507272601127625, -0.025912145152688026, -0.12296693027019501, 0.29484325647354126, 0.15327058732509613, 0.12718799710273743, 0.04002838581800461, -0.15190733969211578, -0.3101467490196228, -0.238750621676445, -0.16566099226474762, 0.27015820145606995, -0.18247032165527344, 0.39684680104255676, 0.08098843693733215, -0.22069098055362701, -0.03469017520546913, 0.2709835171699524, 0.400836706161499, -0.17684271931648254, -0.31223928928375244, 0.18394169211387634, 0.00962153822183609, -0.13617976009845734, 0.3327706754207611, 0.3300030529499054, -0.02098105102777481, 0.18152140080928802, -0.25807517766952515, -0.426164835691452, 0.5998722314834595, -0.43961331248283386, -0.020970499143004417, -0.3280789852142334, 0.15578310191631317, 0.14129889011383057, -0.3467084765434265, -0.660648763179779, 0.047875307500362396, 0.39672425389289856, -0.24282711744308472, -0.16242779791355133, 0.3853435516357422, -0.0664641410112381, 0.09020920097827911, -0.056406550109386444, 0.3422391712665558, 0.15257097780704498, -0.2761003077030182, 0.22250649333000183, -0.11524675041437149 ]
https://github.com/huggingface/datasets/issues/3236
Loading of datasets changed in #3110 returns no examples
OK, I understand the issue a bit better now. I see I wasn't on 1.12.1, but on 1.12.1.dev0 and since it is a dev version it uses master. So users that use an old dev version must specify revision or else they'll encounter this problem. BTW, when I opened the issue I installed the latest master version with ``` pip install git+git://github.com/huggingface/datasets@master#egg=datasets ``` and also used `download_mode="force_redownload"`, and it still returned 0 examples. Now I deleted all of the cache and ran the code again, and it worked. I'm not sure what exactly happened here, but looks like it was due to a mix of an unofficial version and its cache. Thanks again!
## Describe the bug Loading of datasets changed in https://github.com/huggingface/datasets/pull/3110 returns no examples: ```python DatasetDict({ train: Dataset({ features: ['id', 'title', 'abstract', 'full_text', 'qas'], num_rows: 0 }) validation: Dataset({ features: ['id', 'title', 'abstract', 'full_text', 'qas'], num_rows: 0 }) }) ``` ## Steps to reproduce the bug Load any of the datasets that were changed in https://github.com/huggingface/datasets/pull/3110: ```python from datasets import load_dataset load_dataset("qasper") # The problem only started with the commit of #3110 load_dataset("qasper", revision="b6469baa22c174b3906c631802a7016fedea6780") ``` ## Expected results ```python DatasetDict({ train: Dataset({ features: ['id', 'title', 'abstract', 'full_text', 'qas'], num_rows: 888 }) validation: Dataset({ features: ['id', 'title', 'abstract', 'full_text', 'qas'], num_rows: 281 }) }) ``` Which can be received when specifying revision of the commit before https://github.com/huggingface/datasets/pull/3110: ```python from datasets import load_dataset load_dataset("qasper", revision="acfe2abda1ca79f0ce5c1896aa83b4b78af76b7d") ``` ## Environment info <!-- You can run the command `datasets-cli env` and copy-and-paste its output below. --> - `datasets` version: 1.15.2.dev0 (master) - Python version: 3.8.10 - PyArrow version: 3.0.0
113
Loading of datasets changed in #3110 returns no examples ## Describe the bug Loading of datasets changed in https://github.com/huggingface/datasets/pull/3110 returns no examples: ```python DatasetDict({ train: Dataset({ features: ['id', 'title', 'abstract', 'full_text', 'qas'], num_rows: 0 }) validation: Dataset({ features: ['id', 'title', 'abstract', 'full_text', 'qas'], num_rows: 0 }) }) ``` ## Steps to reproduce the bug Load any of the datasets that were changed in https://github.com/huggingface/datasets/pull/3110: ```python from datasets import load_dataset load_dataset("qasper") # The problem only started with the commit of #3110 load_dataset("qasper", revision="b6469baa22c174b3906c631802a7016fedea6780") ``` ## Expected results ```python DatasetDict({ train: Dataset({ features: ['id', 'title', 'abstract', 'full_text', 'qas'], num_rows: 888 }) validation: Dataset({ features: ['id', 'title', 'abstract', 'full_text', 'qas'], num_rows: 281 }) }) ``` Which can be received when specifying revision of the commit before https://github.com/huggingface/datasets/pull/3110: ```python from datasets import load_dataset load_dataset("qasper", revision="acfe2abda1ca79f0ce5c1896aa83b4b78af76b7d") ``` ## Environment info <!-- You can run the command `datasets-cli env` and copy-and-paste its output below. --> - `datasets` version: 1.15.2.dev0 (master) - Python version: 3.8.10 - PyArrow version: 3.0.0 OK, I understand the issue a bit better now. I see I wasn't on 1.12.1, but on 1.12.1.dev0 and since it is a dev version it uses master. So users that use an old dev version must specify revision or else they'll encounter this problem. BTW, when I opened the issue I installed the latest master version with ``` pip install git+git://github.com/huggingface/datasets@master#egg=datasets ``` and also used `download_mode="force_redownload"`, and it still returned 0 examples. Now I deleted all of the cache and ran the code again, and it worked. I'm not sure what exactly happened here, but looks like it was due to a mix of an unofficial version and its cache. Thanks again!
[ 0.04819932207465172, -0.08699776232242584, -0.024228841066360474, 0.28186553716659546, 0.32402777671813965, -0.027351204305887222, 0.27424147725105286, 0.23747539520263672, 0.17098529636859894, 0.20155426859855652, -0.07156755775213242, 0.3162328004837036, -0.04232828691601753, 0.17204652726650238, 0.107111357152462, -0.2534901201725006, 0.11015110462903976, 0.13586513698101044, -0.309677392244339, -0.017404083162546158, -0.031213687732815742, 0.3098748028278351, -0.297730952501297, -0.09264826774597168, -0.2869769334793091, 0.21200546622276306, -0.31421834230422974, 0.1809692680835724, -0.14634495973587036, -0.37781956791877747, 0.3804137110710144, 0.08570219576358795, 0.14202189445495605, 0.6262404918670654, -0.00011086848098784685, 0.17101524770259857, 0.16437768936157227, -0.10097566246986389, -0.2533082067966461, -0.4094514846801758, -0.07174703478813171, -0.4076807200908661, 0.13796843588352203, -0.0840170755982399, -0.3382483124732971, -0.325094610452652, -0.20672233402729034, -0.10293164104223251, 0.4555371403694153, 0.3552957773208618, 0.24130231142044067, 0.4862981140613556, 0.044114384800195694, -0.35154426097869873, 0.013459376990795135, -0.10099044442176819, -0.010846484452486038, 0.017969142645597458, 0.16588625311851501, 0.12143594026565552, 0.09179157763719559, 0.1937301754951477, 0.1166708916425705, -0.14387883245944977, 0.14370054006576538, -0.10310282558202744, -0.164552241563797, -0.16116975247859955, 0.03257369250059128, 0.3317509889602661, 0.417381227016449, -0.20560932159423828, -0.5523958802223206, -0.3343690037727356, -0.0657658576965332, -0.3471265435218811, 0.10690668225288391, 0.10823667049407959, 0.07652750611305237, 0.25804224610328674, -0.19722382724285126, 0.10335201770067215, -0.0616275928914547, 0.0491025447845459, -0.25575700402259827, 0.07303221523761749, -0.11914847791194916, -0.12834733724594116, -0.0014370977878570557, -0.04176092892885208, -0.10489194840192795, 0.015495802275836468, -0.0036514438688755035, 0.15013693273067474, -0.43189680576324463, 0.055430471897125244, 0.23755553364753723, 0.012555178254842758, -0.01468556746840477, 0.238398015499115, 0.2823122441768646, 0.2580578625202179, -0.101495660841465, 0.042657386511564255, 0.055312979966402054, 0.430795282125473, 0.0989549458026886, -0.011281326413154602, 0.3555489778518677, 0.39031654596328735, -0.0860641822218895, -0.09213025122880936, -0.034975677728652954, -0.18792256712913513, 0.11010754108428955, 0.050720661878585815, 0.27344071865081787, -0.20166705548763275, -0.23222322762012482, 0.23009532690048218, -0.23713913559913635, -0.07564546167850494, 0.028555121272802353, 0.507034182548523, -0.07799119502305984, 0.08678800612688065, 0.034564755856990814, 0.17597919702529907, -0.15026918053627014, -0.30060917139053345, -0.4464168846607208, -0.03168972581624985, -0.32549819350242615, -0.09989909827709198, 0.27234306931495667, -0.19603247940540314, 0.4132772386074066, 0.0805029571056366, -0.14482328295707703, -0.06514804065227509, 0.06244232505559921, 0.19924063980579376, 0.1993405520915985, 0.2849487066268921, -0.059513673186302185, -0.010659764520823956, 0.29171374440193176, -0.05834390968084335, 0.00712200254201889, 0.04807943105697632, -0.24291002750396729, -0.27833810448646545, -0.11201447248458862, 0.26651403307914734, -0.46140241622924805, -0.02281210571527481, -0.022466696798801422, 0.18836045265197754, 0.0015458166599273682, -0.05246733874082565, 0.03706619143486023, -0.12953422963619232, -0.036048345267772675, -0.03669415041804314, 0.4575088918209076, 0.45337212085723877, -0.1228640228509903, -0.3646812438964844, 0.21558019518852234, -0.09418803453445435, 0.008019790053367615, 0.021370533853769302, -0.006280258763581514, 0.08745904266834259, -0.2322482168674469, -0.12200461328029633, 0.28580552339553833, -0.24658988416194916, -0.4048400819301605, -0.07660423219203949, -0.021187473088502884, 0.4242132902145386, 0.20833081007003784, -0.25259312987327576, 0.024639546871185303, 0.0277145653963089, 0.12717202305793762, -0.0023789089173078537, 0.26059725880622864, 0.08644933998584747, -0.1792174130678177, -0.14967632293701172, 0.03138149902224541, -0.008717609569430351, 0.04632348567247391, 0.23638185858726501, -0.046051107347011566, -0.14256948232650757, 0.31980839371681213, -0.26297900080680847, -0.11147453635931015, 0.2994381785392761, 0.3906705677509308, 0.03349389135837555, 0.20754513144493103, -0.21019983291625977, -0.5983008742332458, 0.42618972063064575, 0.008391197770833969, 0.17369630932807922, 0.10646668821573257, -0.1905423104763031, -0.3390613794326782, -0.03199400007724762, -0.21738387644290924, -0.4623183012008667, 0.14434200525283813, 0.17128422856330872, 0.31135863065719604, 0.11330968141555786, -0.2209651619195938, 0.47827064990997314, -0.13914573192596436, 0.24661238491535187, -0.42443346977233887, 0.3553304672241211, 0.04948589205741882, -0.15859392285346985, 0.0004652850329875946, 0.37904930114746094, 0.08950452506542206, -0.2791752219200134, -0.03193485364317894, 0.4426726698875427, 0.08483044058084488, 0.12699134647846222, -0.16657087206840515, 0.034146830439567566, 0.3217850923538208, 0.10635881125926971, -0.05022376775741577, 0.1898234486579895, -0.06287483870983124, 0.14352038502693176, -0.3038610517978668, 0.4575382471084595, 0.008514754474163055, 0.1595538854598999, 0.25687915086746216, -0.043040044605731964, 0.16834452748298645, -0.11688163876533508, -0.3479304611682892, -0.247915580868721, 0.21994620561599731, -0.29615283012390137, 0.2113559991121292, 0.12425582110881805, -0.40705716609954834, 0.05415874347090721, 0.37906327843666077, 0.01974606141448021, 0.046270471066236496, -0.023337766528129578, -0.21029365062713623, 0.03643663972616196, 0.3277457058429718, 0.13162840902805328, 0.25617462396621704, 0.2758215665817261, -0.05191678926348686, 0.12118363380432129, -0.054418206214904785, -0.20136658847332, 0.1555202156305313, -0.026405416429042816, -0.12247040867805481, 0.23154878616333008, 0.16160352528095245, 0.09366403520107269, -0.4347332715988159, 0.09159111976623535, -0.06647130846977234, 0.16182918846607208, -0.4015600085258484, -0.009128939360380173, -0.3828182816505432, -0.05571325868368149, -0.17768391966819763, -0.25739380717277527, 0.013449354097247124, -0.3274969160556793, 0.029093753546476364, 0.14186041057109833, -0.16217871010303497, 0.27849626541137695, -0.06688542664051056, 0.09949010610580444, -0.025930840522050858, 0.13420110940933228, -0.2214835286140442, -0.041421327739953995, -0.2053791880607605, 0.08151504397392273, -0.07849583774805069, -0.019277215003967285, 0.18022587895393372, -0.32125672698020935, -0.04080677777528763, -0.2744917869567871, -0.5607582330703735, 0.03277153521776199, -0.059664152562618256, 0.3699053227901459, 0.18612179160118103, 0.037841420620679855, -0.07876139879226685, -0.028003521263599396, 0.31175240874290466, -0.09955242276191711, -0.3088870346546173, 0.1620040237903595, 0.04371451213955879, 0.050608325749635696, -0.32228243350982666, -0.6019359827041626, -0.051994822919368744, -0.3921588957309723, 0.21886929869651794, -0.015108708292245865, -0.012924917042255402, 0.330697625875473, 0.17657038569450378, 0.24071446061134338, -0.03588895499706268, 0.18847765028476715, -0.18563935160636902, -0.23668095469474792, 0.2083817720413208, -0.32246536016464233, -0.5175804495811462, -0.09954972565174103, -0.06821341812610626, 0.17494867742061615, -0.07062383741140366, -0.401883065700531, -0.4492528438568115, -0.2838638424873352, 0.2869093716144562, 0.08836487680673599, 0.1963796615600586, 0.31953465938568115, -0.017048122361302376, -0.08276253938674927, -0.236519455909729, -0.24414998292922974, 0.0866851881146431, -0.039627112448215485, -0.01303333044052124, -0.13889124989509583, 0.30853214859962463, -0.040893491357564926, 0.5791707634925842, 0.24966475367546082, -0.016872849315404892, 0.5041948556900024, -0.11280722171068192, 0.47349265217781067, -0.25173795223236084, -0.35429689288139343, 0.01754491589963436, -0.07911281287670135, 0.16679063439369202, 0.11219349503517151, 0.025382738560438156, 0.2566159665584564, -0.21264639496803284, 0.04066220298409462, -0.23563724756240845, -0.2202085554599762, -0.20331060886383057, -0.12542006373405457, 0.18550758063793182, 0.13362780213356018, 0.22324061393737793, -0.1398864984512329, 0.15172448754310608, 0.15621186792850494, 0.25254255533218384, 0.28199121356010437, -0.03822114318609238, -0.5950143337249756, 0.07676655054092407, -0.3939020037651062, 0.13976383209228516, -0.11325568705797195, 0.18279321491718292, 0.09986481070518494, -0.3451109230518341, 0.025728724896907806, -0.03513849899172783, 0.7139859199523926, 0.04234505444765091, -0.03256269544363022, 0.18725241720676422, -0.3037378489971161, -0.4642009437084198, -0.2971777617931366, -0.2848602533340454, 0.03551904484629631, 0.1110168993473053, 0.5587166547775269, -0.24621540307998657, -0.20491760969161987, 0.10058758407831192, 0.15352901816368103, -0.11860549449920654, -0.07743172347545624, -0.39904123544692993, -0.14160801470279694, -0.29913607239723206, 0.02442850172519684, -0.11268764734268188, 0.3314484655857086, -0.3967136740684509, -0.04429757967591286, -0.09741523861885071, -0.08794474601745605, 0.27554982900619507, 0.3371760845184326, 0.46420490741729736, -0.004177931696176529, 0.18418076634407043, 0.14600184559822083, 0.23035483062267303, -0.04926387220621109, 0.5531159043312073, -0.21302558481693268, -0.4674658179283142, 0.0244179405272007, 0.09859851747751236, 0.19192375242710114, 0.2839534878730774, -0.024009060114622116, -0.010320737957954407, 0.0334598682820797, 0.16606059670448303, -0.22199565172195435, 0.11534994840621948, 0.25224533677101135, 0.21178266406059265, -0.19726991653442383, -0.360076904296875, 0.4063868820667267, 0.20452849566936493, -0.08241276443004608, 0.16174271702766418, 0.36265647411346436, -0.272465318441391, 0.1963346302509308, -0.07353576272726059, 0.5536627173423767, 0.14967846870422363, 0.11127494275569916, 0.4936063885688782, -0.15410394966602325, 0.43076828122138977, 0.02828650176525116, 0.07832717895507812, -0.3261825740337372, -0.4324312210083008, 0.07431752234697342, -0.14201965928077698, 0.25430911779403687, -0.09361864626407623, -0.2937712073326111, 0.24257774651050568, -0.06144334375858307, 0.42283928394317627, 0.08242659270763397, -0.03392539545893669, -0.13023243844509125, 0.03504740446805954, -0.44566574692726135, 0.16467051208019257, 0.15672263503074646, 0.29324913024902344, -0.09375259280204773, -0.003961327485740185, -0.1935095489025116, -0.21966786682605743, -0.08303134143352509, 0.014485135674476624, -0.07737172394990921, -0.08036984503269196, 0.5203553438186646, -0.4018173813819885, -0.012779876589775085, 0.3775321841239929, 0.44431960582733154, 0.23157605528831482, -0.1559000164270401, 0.12349160015583038, -0.1541391909122467, 0.14671051502227783, 0.06881020218133926, 0.058822594583034515, 0.42658811807632446, 0.008839249610900879, -0.3543609380722046, 0.19976547360420227, -0.07857167720794678, 0.04148302227258682, -0.11064271628856659, 0.10325846821069717, -0.19899968802928925, -0.3686421513557434, -0.2561350166797638, -0.024101346731185913, 0.3485713005065918, -0.39511924982070923, 0.1987585872411728, 0.037383269518613815, -0.25355783104896545, -0.026776231825351715, 0.08633898943662643, -0.18822315335273743, -0.16517262160778046, 0.5311196446418762, -0.019365228712558746, 0.03937944769859314, 0.5470422506332397, 0.24787147343158722, 0.12774819135665894, -0.1604364812374115, -0.20614942908287048, 0.5066661834716797, -0.40097320079803467, 0.22655513882637024, 0.04523513466119766, -0.08921395242214203, 0.10410686582326889, 0.4483320415019989, 0.08922410011291504, -0.07385719567537308, 0.002520166337490082, -0.3323081135749817, -0.16682235896587372, 0.326921671628952, 0.10181136429309845, 0.20012401044368744, 0.023056939244270325, -0.04473813995718956, -0.1990039199590683, -0.08219009637832642, -0.3838166296482086, 0.23171038925647736, -0.0946815237402916, 0.008004967123270035, 0.2120738923549652, -0.18009400367736816, -0.008277981542050838, -0.24396304786205292, 0.17692413926124573, 0.01152428425848484, -0.23372845351696014, -0.2896282970905304, -0.34162795543670654, 0.06599590927362442, -0.08737434446811676, 0.04097258299589157, 0.0703095942735672, 0.25014686584472656, -0.04651765152812004, -0.23410940170288086, 0.40988489985466003, 0.11188837140798569, 0.03518114238977432, 0.3403918445110321, 0.067662313580513, 0.21684306859970093, 0.017723049968481064, 0.018365399911999702, 0.03464333340525627, -0.24479304254055023, 0.025343548506498337, 0.00019106268882751465, -0.17007876932621002, 0.09217217564582825, -0.009177683852612972, 0.07851435244083405, -0.03326493501663208, 0.17042654752731323, 0.3056047260761261, -0.2575224041938782, 0.17696690559387207, 0.1408841758966446, 0.3525610566139221, 0.16565221548080444, -0.1598721593618393, 0.08831305801868439, 0.12809939682483673, 0.3033124506473541, -0.4272119402885437, -0.06392752379179001, 0.2238364815711975, 0.09884534031152725, 0.19890612363815308, 0.1681097149848938, 0.2588568925857544, -0.155389666557312, 0.18387144804000854, 0.2872067987918854, 0.2977759540081024, 0.058825742453336716, 0.47266268730163574, 0.433197557926178, -0.07073521614074707, 0.07084297388792038, 0.048820436000823975, -0.13458576798439026, -0.06284084171056747, 0.155861496925354, 0.004835784435272217, 0.24992011487483978, -0.006211675703525543, 0.2208317369222641, 0.09636343270540237, -0.3939109146595001, 0.09066884219646454, 0.023897074162960052, -0.17298835515975952, 0.06621160358190536, -0.21233749389648438, 0.4334923028945923, -0.3614331781864166, -0.12069717049598694, -0.3567313849925995, 0.10533149540424347, -0.20421263575553894, -0.3059578537940979, 0.00302678719162941, -0.33227628469467163, 0.004414618015289307, 0.004775185137987137, -0.06254032254219055, -0.12047615647315979, 0.07043881714344025, -0.2905169725418091, -0.24385876953601837, -0.4311002790927887, -0.13740584254264832, 0.04251784458756447, 0.3430764675140381, 0.028575707226991653, 0.3047434389591217, 0.2961229681968689, -0.24666786193847656, 0.073885977268219, 0.2899470925331116, 0.3838070333003998, 0.16483935713768005, 0.23145277798175812, 0.18327228724956512, -0.043359626084566116, -0.05053812265396118, -0.027036549523472786, 0.44763901829719543, 0.048403482884168625, -0.10195551812648773, 0.1409861147403717, 0.1902390867471695, -0.2589709758758545, 0.10880012810230255, -0.10609506070613861, 0.372257798910141, -0.592790424823761, 0.4981983006000519, -0.280374139547348, -0.11388908326625824, -0.09993717074394226, 0.003034524619579315, -0.267267644405365, -0.049525488168001175, 0.10879760980606079, 0.21012917160987854, 0.10175812989473343, -0.26897192001342773, 0.11865909397602081, -0.13922332227230072, 0.3404167890548706, 0.2487785965204239, -0.04290679097175598, -0.13082897663116455, -0.152842715382576, -0.7432312965393066, 0.15355414152145386, 0.06117609143257141, 0.1751803159713745, -0.03144509345293045, -0.09709636867046356, -0.08537683635950089, -0.1342231184244156, -0.021711140871047974, -0.08175951987504959, 0.09103967994451523, 0.05662022531032562, -0.5897560715675354, -0.12165375053882599, -0.10236696898937225, 0.06243697553873062, 0.08346553146839142, -0.1358577013015747, 0.08098407089710236, -0.17615830898284912, 0.015328742563724518, 0.07993992418050766, 0.08507272601127625, -0.025912145152688026, -0.12296693027019501, 0.29484325647354126, 0.15327058732509613, 0.12718799710273743, 0.04002838581800461, -0.15190733969211578, -0.3101467490196228, -0.238750621676445, -0.16566099226474762, 0.27015820145606995, -0.18247032165527344, 0.39684680104255676, 0.08098843693733215, -0.22069098055362701, -0.03469017520546913, 0.2709835171699524, 0.400836706161499, -0.17684271931648254, -0.31223928928375244, 0.18394169211387634, 0.00962153822183609, -0.13617976009845734, 0.3327706754207611, 0.3300030529499054, -0.02098105102777481, 0.18152140080928802, -0.25807517766952515, -0.426164835691452, 0.5998722314834595, -0.43961331248283386, -0.020970499143004417, -0.3280789852142334, 0.15578310191631317, 0.14129889011383057, -0.3467084765434265, -0.660648763179779, 0.047875307500362396, 0.39672425389289856, -0.24282711744308472, -0.16242779791355133, 0.3853435516357422, -0.0664641410112381, 0.09020920097827911, -0.056406550109386444, 0.3422391712665558, 0.15257097780704498, -0.2761003077030182, 0.22250649333000183, -0.11524675041437149 ]
https://github.com/huggingface/datasets/issues/3232
The Xsum datasets seems not able to download.
> Hi ! On my side the URL is working fine, could you try again ? I try it again and cannot download the file (might because of my location). Could you please provide another download link(such as google drive)? :>
## Describe the bug The download Link of the Xsum dataset provided in the repository is [Link](http://bollin.inf.ed.ac.uk/public/direct/XSUM-EMNLP18-Summary-Data-Original.tar.gz). It seems not able to download. ## Steps to reproduce the bug ```python load_dataset('xsum') ``` ## Actual results ``` python raise ConnectionError("Couldn't reach {}".format(url)) ConnectionError: Couldn't reach http://bollin.inf.ed.ac.uk/public/direct/XSUM-EMNLP18-Summary-Data-Original.tar.gz ```
41
The Xsum datasets seems not able to download. ## Describe the bug The download Link of the Xsum dataset provided in the repository is [Link](http://bollin.inf.ed.ac.uk/public/direct/XSUM-EMNLP18-Summary-Data-Original.tar.gz). It seems not able to download. ## Steps to reproduce the bug ```python load_dataset('xsum') ``` ## Actual results ``` python raise ConnectionError("Couldn't reach {}".format(url)) ConnectionError: Couldn't reach http://bollin.inf.ed.ac.uk/public/direct/XSUM-EMNLP18-Summary-Data-Original.tar.gz ``` > Hi ! On my side the URL is working fine, could you try again ? I try it again and cannot download the file (might because of my location). Could you please provide another download link(such as google drive)? :>
[ -0.29666396975517273, -0.2934879660606384, -0.018269721418619156, 0.379783034324646, 0.3340882658958435, 0.04879307001829147, -0.1388901174068451, 0.16074959933757782, 0.38030505180358887, 0.3084602952003479, -0.25734180212020874, 0.09360718727111816, 0.24726533889770508, 0.16552689671516418, 0.21948479115962982, -0.20167073607444763, -0.06533370167016983, -0.1392725259065628, -0.19258514046669006, -0.20772935450077057, -0.15198370814323425, 0.16491404175758362, -0.15661582350730896, -0.14378862082958221, -0.0894734337925911, 0.15882688760757446, -0.04537082090973854, 0.14658407866954803, -0.08487670123577118, -0.2599928677082062, 0.4373801350593567, -0.03133787587285042, 0.05207207798957825, 0.33433783054351807, -0.00011894913041032851, -0.015267513692378998, 0.24707242846488953, -0.06415820121765137, -0.1906348168849945, -0.37182170152664185, -0.25125420093536377, -0.15498439967632294, 0.0060056038200855255, -0.23087367415428162, 0.0955771878361702, 0.23231375217437744, 0.08690696954727173, -0.22517089545726776, 0.21618911623954773, 0.26285895705223083, 0.13909299671649933, 0.2850368916988373, 0.44227364659309387, -0.06653987616300583, 0.1692819595336914, -0.48547589778900146, -0.08550054579973221, 0.6672198176383972, 0.5320830345153809, 0.3800353705883026, 0.2686355412006378, 0.06698577105998993, 0.06693519651889801, 0.11522121727466583, 0.07419868558645248, 0.06226624175906181, 0.4462068974971771, -0.3660629987716675, -0.10237153619527817, 0.1740134358406067, 0.8649671077728271, -0.17166325449943542, -0.5348429679870605, 0.21434083580970764, 0.10896558314561844, 0.024224525317549706, 0.4601994454860687, 0.2526051104068756, -0.06906561553478241, 0.06604337692260742, -0.12202291935682297, -0.11819205433130264, -0.30931952595710754, 0.38163721561431885, 0.0021863803267478943, 0.11642517149448395, -0.061288610100746155, 0.08454225957393646, -0.042127933353185654, 0.09464719891548157, 0.22312450408935547, -0.07883145660161972, 0.18726474046707153, 0.12509065866470337, -0.34402182698249817, 0.06752625852823257, -0.2720395028591156, 0.07632868736982346, 0.33571338653564453, 0.12499219924211502, 0.24447345733642578, 0.013534046709537506, -0.4765831232070923, 0.23211345076560974, 0.18684199452400208, 0.08232949674129486, -0.018403857946395874, -0.39469799399375916, 0.33148932456970215, 0.1307835876941681, 0.13431040942668915, 0.0008027330040931702, -0.21656307578086853, -0.13325217366218567, -0.08131441473960876, 0.11587736010551453, 0.1332540065050125, -0.3024159073829651, -0.4885838031768799, 0.2964630424976349, -0.053238414227962494, 0.023614343255758286, -0.07972799986600876, -0.02331322431564331, -0.3168783187866211, 0.25596585869789124, 0.17432686686515808, 0.22371090948581696, -0.2284170389175415, -0.2293231189250946, -0.0868711844086647, 0.18119432032108307, -0.15826579928398132, -0.08332643657922745, 0.2609482705593109, -0.3106341063976288, 0.27955108880996704, -0.03191313520073891, 0.15535174310207367, -0.2922919988632202, -0.05277291685342789, -0.005366757046431303, -0.4661963880062103, 0.27585887908935547, 0.30710741877555847, 0.20994780957698822, -0.08022335171699524, 0.0409671887755394, -0.12196314334869385, 0.22344151139259338, -0.523328959941864, -0.03021058440208435, 0.001032896339893341, 0.1391543745994568, -0.16702838242053986, -0.2619684934616089, -0.33541133999824524, -0.2863454520702362, -0.1781860589981079, -0.0064562223851680756, -0.20046409964561462, -0.027863606810569763, 0.07535448670387268, -0.25357282161712646, 0.41193193197250366, 0.12431984394788742, -0.3606141209602356, 0.019977107644081116, 0.031918466091156006, -0.21759900450706482, 0.1915520429611206, 0.13679832220077515, 0.0528232678771019, 0.150931715965271, -0.193320631980896, 0.09045134484767914, 0.16477453708648682, -0.7280174493789673, -0.8107175230979919, 0.13072627782821655, -0.334766685962677, -0.18493369221687317, 0.13845641911029816, 0.20138117671012878, -0.036254655569791794, 0.06852000951766968, 0.2215077131986618, 0.41545015573501587, 0.15321210026741028, -0.052069880068302155, -0.2116686850786209, -0.25018396973609924, -0.08197731524705887, 0.1286364048719406, -0.017707649618387222, 0.11842845380306244, 0.0658043622970581, 0.28665241599082947, 0.36481165885925293, 0.2229340374469757, 0.025060094892978668, 0.25687289237976074, 0.2532878816127777, -0.23739008605480194, 0.07420619577169418, -0.3455876410007477, -0.13535872101783752, 0.1967521607875824, -0.03371945768594742, -0.06164288520812988, 0.07269486784934998, 0.015246197581291199, -0.7013503909111023, -0.014516552910208702, -0.028620567172765732, 0.11323696374893188, -0.002712409943342209, -0.08075694739818573, 0.17002132534980774, 0.24670861661434174, -0.15064188838005066, 0.1834106594324112, -0.1779385507106781, 0.08263079822063446, -0.26621323823928833, 0.5761640071868896, -0.11394614726305008, -0.013152354396879673, 0.22594988346099854, -0.012732110917568207, 0.10432875901460648, -0.28132501244544983, -0.2468048632144928, 0.48257166147232056, -0.07163994759321213, 0.20033083856105804, 0.24638760089874268, -0.11815516650676727, 0.35328906774520874, -0.4619981646537781, 0.04604651778936386, 0.39113226532936096, 0.08048749715089798, 0.08107239753007889, -0.056168876588344574, -0.1066959798336029, -0.03503011539578438, 0.003987573087215424, 0.02770577371120453, 0.28751957416534424, 0.263471394777298, -0.15427614748477936, 0.06996472924947739, 0.02649267017841339, 0.47180238366127014, 0.20213167369365692, 0.039047721773386, -0.32391172647476196, -0.15178513526916504, 0.12118801474571228, 0.01688029244542122, -0.11644774675369263, 0.049956660717725754, 0.10848179459571838, -0.2730657160282135, -0.010098176077008247, -0.09153503179550171, 0.1740468591451645, 0.3176204562187195, -0.02888265997171402, 0.04643666744232178, 0.14694693684577942, -0.000919366255402565, -0.22430799901485443, 0.0771973729133606, 0.16184742748737335, -0.30906954407691956, 0.23704519867897034, -0.20955495536327362, 0.09524759650230408, -0.11093509942293167, -0.13913995027542114, 0.1393069624900818, 0.21367402374744415, -0.39550793170928955, -0.18995808064937592, -0.2001480609178543, -0.2043249011039734, -0.04352499172091484, 0.0016834852285683155, -0.012136869132518768, -0.3801867961883545, -0.11416618525981903, 0.3690674304962158, 0.10144129395484924, 0.0482020378112793, -0.4758370816707611, 0.18930447101593018, 0.21948297321796417, -0.15686306357383728, -0.05985163524746895, 0.08820840716362, -0.009518273174762726, 0.03826262429356575, 0.10884372144937515, 0.09051933884620667, 0.251836895942688, -0.4331505000591278, 0.11784891784191132, -0.45416656136512756, -0.007278852164745331, 0.013708531856536865, 0.12942209839820862, 0.35529839992523193, -0.03853675723075867, 0.3139445185661316, 0.10732938349246979, -0.10347061604261398, 0.34146225452423096, -0.0746619924902916, 0.005492128431797028, 0.10330439358949661, 0.08525354415178299, -0.15625213086605072, 0.05508197471499443, -0.4792209565639496, -0.26809561252593994, -0.20065252482891083, -0.052925147116184235, -0.022272810339927673, 0.1986183375120163, -0.17971524596214294, -0.14300352334976196, 0.10385187715291977, 0.1398497074842453, -0.06778641045093536, -0.12886744737625122, -0.6448282599449158, 0.40801239013671875, -0.10222069174051285, -0.6995735168457031, 0.20009228587150574, 0.16938737034797668, 0.11747078597545624, 0.3403329849243164, -0.47415685653686523, -0.10184898972511292, -0.10659265518188477, -0.03826433792710304, 0.16477009654045105, 0.19414272904396057, -0.08009088039398193, -0.22568972408771515, -0.020217642188072205, -0.09770795702934265, 0.0553467832505703, -0.10356355458498001, 0.027442121878266335, 0.5004566311836243, 0.08526945114135742, 0.059750914573669434, 0.13006366789340973, -0.13678857684135437, 0.14058232307434082, 0.20350180566310883, 0.3563553988933563, -0.07272220402956009, -0.02807992324233055, 0.10869985073804855, -0.2844637632369995, 0.2065252661705017, -0.12821969389915466, 0.04311753064393997, 0.02587263286113739, 0.10919250547885895, 0.34201210737228394, -0.263474702835083, -0.16700586676597595, -0.20926740765571594, -0.29988157749176025, -0.33218100666999817, 0.013693682849407196, 0.12311966717243195, 0.09165143966674805, -0.01442122831940651, 0.0727161318063736, -0.1403055191040039, 0.1778555065393448, 0.4080624580383301, 0.16132889688014984, 0.21441103518009186, -0.45964789390563965, 0.011531025171279907, -0.3043408691883087, 0.44672054052352905, -0.05842110142111778, 0.5438737273216248, -0.19322985410690308, 0.28414803743362427, 0.21477541327476501, -0.03288095444440842, 0.24895934760570526, -0.3598501682281494, 0.37683606147766113, 0.1246810108423233, 0.09713074564933777, -0.3480626046657562, 0.009954091161489487, -0.06748979538679123, 0.2866686284542084, 0.5210673213005066, 0.1260613352060318, -0.24661961197853088, 0.13467226922512054, 0.19793996214866638, 0.3341927230358124, -0.25160858035087585, -0.20064789056777954, -0.08716835081577301, -0.29133591055870056, -0.15716154873371124, -0.179923415184021, -0.15689146518707275, 0.43383553624153137, 0.17144706845283508, -0.2508412003517151, -0.07196303457021713, -0.1809176504611969, 0.1944194734096527, -0.22117316722869873, 0.25092971324920654, -0.009219348430633545, 0.3734094202518463, 0.1981893628835678, -0.1126040667295456, 0.08393000811338425, 0.44681674242019653, -0.05688459798693657, -0.276804655790329, 0.07434242963790894, -0.289981484413147, 0.018014565110206604, -0.0002625584602355957, -0.20705567300319672, -0.13218873739242554, 0.01438697800040245, -0.09264902770519257, -0.040041107684373856, 0.19880877435207367, 0.1677756905555725, 0.06573310494422913, -0.41782766580581665, -0.4702492952346802, 0.5596203804016113, 0.025567349046468735, -0.007190801203250885, 0.5236520767211914, 0.09950056672096252, 0.000614597462117672, -0.2386469841003418, -0.028530143201351166, 0.8740732073783875, -0.07265713810920715, -0.16654139757156372, 0.03294331580400467, 0.23692594468593597, 0.43494370579719543, -0.2619737982749939, 0.15304024517536163, -0.2040698081254959, -0.20991374552249908, -0.22702862322330475, -0.26384082436561584, 0.0880037248134613, -0.08191300928592682, -0.17422273755073547, 0.28478798270225525, -0.3028033375740051, -0.1083177775144577, 0.24523058533668518, 0.18994684517383575, -0.3991161584854126, -0.0356074720621109, -0.08774520456790924, 0.08395151793956757, 0.006034154444932938, 0.525259792804718, 0.012361325323581696, -0.09081368893384933, -0.3170991837978363, -0.17369820177555084, -0.36570340394973755, 0.35744041204452515, -0.0414663702249527, 0.14369337260723114, -0.38465574383735657, -0.5436280965805054, 0.08534392714500427, 0.2659735679626465, 0.14050251245498657, 0.33377546072006226, -0.42734673619270325, 0.18069083988666534, -0.6988148093223572, -0.24399839341640472, 0.40243515372276306, 0.15463881194591522, -0.05112878978252411, -0.16518419981002808, -0.40041226148605347, 0.15715932846069336, 0.16377398371696472, -0.2029014527797699, 0.1664414405822754, -0.07241609692573547, -0.03823079168796539, -0.10379073023796082, -0.28588956594467163, -0.16321676969528198, -0.03201790526509285, -0.21691298484802246, 0.08804132044315338, 0.2978186309337616, 0.12647800147533417, 0.18424952030181885, 0.0025437213480472565, -0.16750529408454895, -0.07956014573574066, 0.5577698945999146, 0.057207148522138596, -0.2523523271083832, 0.2572154998779297, 0.06760066747665405, -0.07247011363506317, -0.13523554801940918, 0.018542245030403137, -0.10255489498376846, -0.4634745121002197, 0.01798013225197792, -0.3365726172924042, 0.45715636014938354, -0.35763874650001526, 0.2944450080394745, 0.3125198483467102, -0.1380850076675415, 0.15028277039527893, -0.7973452806472778, -0.11362727731466293, 0.08774620294570923, 0.14754202961921692, 0.04773547127842903, -0.04832233116030693, 0.02958092838525772, 0.3102286458015442, -0.28272825479507446, -0.20456640422344208, 0.1208869144320488, -0.3044481575489044, -0.2683624029159546, 0.3134589195251465, 0.25262030959129333, 0.38857200741767883, -0.08545228838920593, 0.06732723116874695, -0.10006719827651978, -0.03451646491885185, -0.05322612076997757, -0.29391562938690186, 0.1637459546327591, 0.2089611291885376, -0.08576970547437668, 0.05299001559615135, -0.4375954270362854, -0.10678650438785553, 0.1872212439775467, -0.06099673733115196, 0.06210235506296158, 0.014364451169967651, 0.050183285027742386, -0.015986908227205276, 0.1406450718641281, -0.3315204977989197, 0.3733978867530823, 0.006546780467033386, 0.5278825759887695, 0.04366721957921982, 0.11213354766368866, 0.056359607726335526, -0.036906786262989044, -0.6979104280471802, -0.291899174451828, 0.06601927429437637, 0.04481411725282669, 0.5153235197067261, -0.1474616378545761, 0.2566504180431366, 0.06167669594287872, 0.41304150223731995, 0.4723835289478302, -0.34433647990226746, 0.14195063710212708, 0.13655632734298706, 0.155076265335083, -0.21024170517921448, -0.18262271583080292, 0.06865060329437256, 0.25058290362358093, -0.24761977791786194, -0.09275955706834793, 0.28192952275276184, -0.11041070520877838, 0.14028914272785187, -0.06511758267879486, 0.7016212344169617, 0.16875238716602325, 0.15568895637989044, 0.42321300506591797, 0.20106257498264313, 0.3039729595184326, -0.011965988203883171, 0.09445573389530182, -0.038055725395679474, 0.20477017760276794, -0.158100426197052, -0.05066818743944168, 0.1375504732131958, 0.13225418329238892, -0.35038334131240845, -0.17957797646522522, -0.09536349773406982, 0.1437670737504959, 0.005545280873775482, -0.03630908578634262, 0.0910537987947464, 0.3985470235347748, -0.22592175006866455, 0.2503092586994171, -0.3638145327568054, 0.18801341950893402, 0.13575950264930725, -0.05491090193390846, 0.0057463496923446655, -0.16905668377876282, 0.09210602939128876, 0.04103795066475868, -0.06737886369228363, -0.16041012108325958, 0.1741190254688263, 0.19868652522563934, -0.12005108594894409, -0.7790775299072266, -0.17917868494987488, 0.29893848299980164, 0.01470155268907547, -0.24546602368354797, 0.0003911629319190979, 0.26148825883865356, 0.16367791593074799, -0.0214487686753273, 0.4171622693538666, 0.24113094806671143, 0.3474881649017334, 0.1208525151014328, 0.11211802810430527, 0.11631736159324646, 0.06667856127023697, 0.0780707374215126, 0.2088804692029953, 0.20546117424964905, -0.02014276012778282, 0.4465981125831604, 0.12862113118171692, -0.11999955028295517, 0.08954286575317383, 0.0861559510231018, 0.3553345501422882, -0.061040449887514114, 0.31209245324134827, -0.2622798681259155, 0.01927289366722107, -0.25097084045410156, -0.23778852820396423, -0.4081691801548004, 0.12243318557739258, 0.006048014387488365, 0.11338234692811966, 0.06088236719369888, -0.21882015466690063, 0.017797481268644333, -0.09753300249576569, 0.34309491515159607, 0.4244071841239929, 0.5027849078178406, -0.37798964977264404, -0.2708582282066345, -0.7465456128120422, 0.26073959469795227, -0.009599156677722931, -0.5254998207092285, 0.17449872195720673, 0.06468884646892548, -0.29442617297172546, 0.2509923577308655, 0.2216431200504303, 0.042339030653238297, -0.04870494827628136, 0.37283724546432495, -0.280930757522583, -0.23395277559757233, 0.026030283421278, 0.1565234214067459, -0.19474032521247864, -0.22833198308944702, 0.351956307888031, -0.020354580134153366, -0.05885469168424606, -0.17641542851924896, 0.037801824510097504, -0.051811542361974716, 0.021870972588658333, 0.6302071809768677, 0.06547775119543076, 0.670644998550415, -0.02572639286518097, 0.01072629727423191, -0.4027320146560669, -0.3781179189682007, 0.019130393862724304, -0.014951258897781372, 0.11696049571037292, -0.0762878805398941, -0.2100256234407425, -0.06587959825992584, -0.22336699068546295, 0.4678158164024353, -0.2327505648136139, -0.03068099357187748, -0.24913892149925232, -0.05253166705369949, -0.11340007185935974, 0.0021354309283196926, 0.25435587763786316, 0.02652910351753235, -0.12273856997489929, 0.148067444562912, -0.22214733064174652, -0.22158758342266083, 0.18668389320373535, 0.0385635569691658, -0.052872903645038605, -0.007857498712837696, 0.4008479416370392, 0.1267259418964386, 0.024141516536474228, -0.25523027777671814, 0.1538081169128418, 0.4878586530685425, 0.036872293800115585, -0.295099675655365, 0.24312403798103333, -0.01935088261961937, 0.1052851527929306, 0.1506929099559784, 0.2919820547103882, 0.0031252726912498474, -0.3064177334308624, 0.1521165668964386, -0.12553063035011292 ]
https://github.com/huggingface/datasets/issues/3232
The Xsum datasets seems not able to download.
I don't know other download links - this is the one provided by the authors of the dataset. Maybe you can try downloading from another location ? There are several solutions: a VPN, a remote VM or Google Colab for example.
## Describe the bug The download Link of the Xsum dataset provided in the repository is [Link](http://bollin.inf.ed.ac.uk/public/direct/XSUM-EMNLP18-Summary-Data-Original.tar.gz). It seems not able to download. ## Steps to reproduce the bug ```python load_dataset('xsum') ``` ## Actual results ``` python raise ConnectionError("Couldn't reach {}".format(url)) ConnectionError: Couldn't reach http://bollin.inf.ed.ac.uk/public/direct/XSUM-EMNLP18-Summary-Data-Original.tar.gz ```
41
The Xsum datasets seems not able to download. ## Describe the bug The download Link of the Xsum dataset provided in the repository is [Link](http://bollin.inf.ed.ac.uk/public/direct/XSUM-EMNLP18-Summary-Data-Original.tar.gz). It seems not able to download. ## Steps to reproduce the bug ```python load_dataset('xsum') ``` ## Actual results ``` python raise ConnectionError("Couldn't reach {}".format(url)) ConnectionError: Couldn't reach http://bollin.inf.ed.ac.uk/public/direct/XSUM-EMNLP18-Summary-Data-Original.tar.gz ``` I don't know other download links - this is the one provided by the authors of the dataset. Maybe you can try downloading from another location ? There are several solutions: a VPN, a remote VM or Google Colab for example.
[ -0.33142346143722534, -0.36743319034576416, -0.0869150310754776, 0.24541467428207397, 0.26388251781463623, -0.027214277535676956, -0.18186920881271362, 0.248202383518219, 0.4178062975406647, 0.44261491298675537, -0.2948059141635895, 0.25204697251319885, 0.20527012646198273, 0.22940371930599213, 0.2333921194076538, -0.09910540282726288, -0.041862256824970245, -0.04638947546482086, -0.2623509168624878, -0.24121981859207153, 0.01647864654660225, 0.09692750126123428, -0.11072853207588196, -0.20378057658672333, -0.06854225695133209, 0.19275066256523132, -0.04896218329668045, 0.13610951602458954, -0.0732005387544632, -0.2233382910490036, 0.3807659447193146, 0.011630570515990257, -0.020944666117429733, 0.2757841646671295, -0.00010234124783892184, 0.066619873046875, 0.09974047541618347, -0.030028175562620163, -0.1159864217042923, -0.1261523813009262, -0.05425180494785309, -0.13408347964286804, -0.008921538479626179, -0.23226863145828247, -0.02143394947052002, 0.09288472682237625, 0.12850557267665863, -0.2837918996810913, 0.2894505560398102, 0.18359719216823578, 0.2622745633125305, 0.35452139377593994, 0.25212526321411133, -0.23546256124973297, 0.04210245609283447, -0.611172080039978, -0.06509846448898315, 0.4002915322780609, 0.5349780321121216, 0.36043232679367065, 0.26984864473342896, 0.13874255120754242, -0.01843099668622017, 0.11596877872943878, 0.09946541488170624, -0.008807106874883175, 0.42517074942588806, -0.45809781551361084, -0.03770163655281067, 0.24588721990585327, 0.6778416633605957, -0.053433388471603394, -0.30442583560943604, 0.1442493200302124, 0.13815966248512268, -0.03782433643937111, 0.2553844451904297, 0.15855708718299866, -0.06257522106170654, 0.03694429621100426, -0.03246510401368141, 0.04123913124203682, -0.3176601529121399, 0.32861328125, -0.022529523819684982, 0.1661616563796997, -0.11884802579879761, -0.004179514944553375, -0.12719008326530457, -0.014906935393810272, 0.05869220197200775, 0.09652869403362274, 0.17696866393089294, 0.1558576375246048, -0.2846117913722992, 0.1427178680896759, -0.2149125039577484, 0.03133917227387428, 0.26185956597328186, 0.05833347141742706, 0.17384767532348633, 0.1864020824432373, -0.327487051486969, 0.21072545647621155, 0.08068253099918365, -0.06604383140802383, 0.0477897971868515, -0.42254573106765747, 0.2691684663295746, 0.007710658013820648, 0.20946910977363586, 0.04791662096977234, -0.2559860348701477, -0.03371160104870796, -0.1369730681180954, 0.07872726023197174, -0.07007969915866852, -0.4541299641132355, -0.42206713557243347, 0.1466764658689499, 0.11195818334817886, 0.17904508113861084, -0.10285323113203049, 0.07527535408735275, -0.3004729449748993, 0.344578355550766, 0.10791675746440887, 0.17840290069580078, -0.32360148429870605, -0.19276362657546997, -0.22835171222686768, 0.12982015311717987, -0.0567769818007946, -0.17832545936107635, 0.32638075947761536, -0.23380035161972046, 0.3752082884311676, -0.11288626492023468, 0.19372884929180145, -0.06824811547994614, 0.08584948629140854, 0.16708824038505554, -0.3433817923069, 0.40533074736595154, 0.3277972638607025, 0.06027927249670029, -0.19376125931739807, 0.10553483664989471, -0.09336768090724945, -0.015805289149284363, -0.35191404819488525, -0.1391732096672058, 0.019688084721565247, 0.3134671449661255, -0.09885111451148987, -0.3062340021133423, -0.13844159245491028, -0.18691954016685486, -0.14147496223449707, -0.013378877192735672, -0.3595935106277466, -0.004831038415431976, 0.009455431252717972, -0.1606387495994568, 0.4395248591899872, -0.0008218735456466675, -0.47428205609321594, -0.033412687480449677, -0.06870081275701523, -0.21872052550315857, 0.06610513478517532, 0.14904330670833588, 0.06945841014385223, -0.0002576187252998352, -0.046017326414585114, 0.20852766931056976, -0.054259009659290314, -0.6585506200790405, -0.720348596572876, -0.11480560153722763, -0.20714712142944336, -0.3095388114452362, 0.22893568873405457, 0.23695217072963715, 0.06061236187815666, 0.09449324011802673, 0.2532229423522949, 0.400232195854187, 0.21226316690444946, -0.04138990864157677, -0.24629348516464233, -0.21527425944805145, -0.10557228326797485, 0.20104846358299255, 0.07824983447790146, -0.10779324918985367, 0.02029239386320114, 0.2904140055179596, 0.2692917585372925, 0.08535002917051315, -0.024252014234662056, 0.22443793714046478, 0.21333123743534088, -0.14927463233470917, -0.009885966777801514, -0.35260552167892456, -0.04544145613908768, 0.2160344123840332, -0.08785870671272278, 0.06973307579755783, 0.11705554276704788, -0.10543635487556458, -0.5075929164886475, -0.16142898797988892, 0.05199352651834488, 0.08629829436540604, 0.1952320784330368, -0.006801106035709381, 0.20404201745986938, 0.11110401153564453, -0.11165951192378998, 0.2036055475473404, -0.21619290113449097, -0.008146774023771286, -0.3005206286907196, 0.3975134491920471, -0.15893511474132538, 0.045334238559007645, 0.2281157672405243, -0.004980586469173431, 0.03890407085418701, -0.3009449541568756, -0.09683046489953995, 0.45786917209625244, -0.1779160052537918, 0.1804453730583191, 0.21074655652046204, -0.11172474920749664, 0.3272363543510437, -0.4625793993473053, 0.1479899138212204, 0.2682753801345825, 0.019395682960748672, 0.14609450101852417, -0.2089170217514038, 0.04530726373195648, 0.1333441287279129, -0.0372370108962059, 0.1365722119808197, 0.3394097685813904, 0.3295831084251404, -0.1203344464302063, 0.07246297597885132, -0.1513466238975525, 0.332815557718277, 0.27857762575149536, -0.07221448421478271, -0.23406146466732025, -0.21411791443824768, 0.27605119347572327, 0.06741025298833847, -0.04647430032491684, 0.09741318970918655, -0.10038784891366959, -0.2719399631023407, -0.007592238485813141, 0.021475814282894135, 0.04231153801083565, 0.2178724706172943, 0.13968198001384735, 0.105153888463974, 0.20429179072380066, -0.06850536912679672, -0.23121799528598785, 0.008840106427669525, 0.11986717581748962, -0.19660288095474243, 0.20683184266090393, -0.27079856395721436, 0.028545120730996132, -0.2991273105144501, -0.06545223295688629, 0.06764309108257294, 0.13429979979991913, -0.211897075176239, -0.2524081766605377, -0.3269946575164795, -0.1748662292957306, 0.15539853274822235, 0.06711765378713608, 0.05267524719238281, -0.41800883412361145, 0.061068348586559296, 0.2545206546783447, -0.16210919618606567, 0.01889977604150772, -0.4152398705482483, 0.19807648658752441, 0.14414241909980774, 0.01692269556224346, -0.10834956169128418, -0.07982536405324936, -0.12201680988073349, 0.17881205677986145, -0.011446550488471985, 0.2766011953353882, 0.42908331751823425, -0.4553026854991913, 0.02342875674366951, -0.3072315752506256, -0.18829980492591858, 0.06273774802684784, -0.03475946933031082, 0.20304696261882782, -0.13306103646755219, 0.2127380669116974, 0.1495727300643921, -0.05231546610593796, 0.19538995623588562, -0.30005699396133423, 0.023213541135191917, 0.12183862924575806, -0.041561026126146317, -0.287566214799881, -0.08810091018676758, -0.6652795076370239, -0.44082167744636536, -0.22599674761295319, -0.062225550413131714, 0.15651844441890717, 0.164894238114357, -0.08251722902059555, -0.08675408363342285, 0.16185949742794037, 0.12164878845214844, 0.060967378318309784, -0.20267607271671295, -0.5381007790565491, 0.4709046483039856, -0.1571444272994995, -0.7359145879745483, 0.3345751464366913, 0.24246253073215485, 0.15417829155921936, 0.224795401096344, -0.4123838543891907, -0.16490525007247925, -0.13630762696266174, 0.00842662900686264, 0.2673921585083008, 0.22375430166721344, 0.005931936204433441, -0.25157514214515686, -0.21845248341560364, -0.07484094053506851, 0.10526338219642639, -0.05274982005357742, -0.06187620759010315, 0.3117338716983795, -0.15752968192100525, -0.04367440938949585, 0.2190057933330536, -0.2400137037038803, 0.05707472935318947, 0.08512794226408005, 0.223813995718956, -0.009417267516255379, 0.12605255842208862, -0.030349627137184143, -0.17302829027175903, 0.3252556025981903, -0.09576691687107086, 0.11060792207717896, 0.04891551658511162, 0.10019990801811218, 0.21659092605113983, -0.260834276676178, -0.07501570135354996, -0.13963603973388672, -0.1986325979232788, -0.35326552391052246, 0.10217224061489105, 0.08261586725711823, 0.20384114980697632, 0.12363659590482712, -0.08730731904506683, -0.17938822507858276, 0.12156212329864502, 0.2582165002822876, 0.0018701255321502686, 0.17055104672908783, -0.4606482684612274, 0.1600758135318756, -0.3792288899421692, 0.503849983215332, -0.10868515819311142, 0.30547136068344116, -0.2520165741443634, 0.12842273712158203, 0.3089126944541931, -0.058326356112957, -0.025542765855789185, -0.31248345971107483, 0.32295918464660645, 0.21913136541843414, 0.08073872327804565, -0.35710546374320984, -0.0031861327588558197, -0.32370197772979736, 0.16948474943637848, 0.6185861825942993, 0.0063831135630607605, -0.3254413306713104, 0.027028365060687065, 0.167462557554245, 0.3870014548301697, -0.3064768314361572, 0.04777314141392708, -0.1029774397611618, -0.26206812262535095, -0.20116306841373444, -0.1444093883037567, -0.13475599884986877, 0.3491436243057251, 0.0898147001862526, -0.1693667620420456, -0.04921099543571472, -0.17132508754730225, 0.21918867528438568, 0.026562314480543137, 0.2924334704875946, 0.0587412491440773, 0.3033953011035919, 0.12555721402168274, -0.019975468516349792, -0.004082838073372841, 0.4710126519203186, -0.019686732441186905, -0.13007141649723053, 0.09514040499925613, -0.4362035095691681, 0.062471263110637665, 0.08750702440738678, -0.1921834498643875, -0.272623747587204, 0.00452195480465889, 0.06806500256061554, 0.026047026738524437, 0.24093127250671387, 0.23653452098369598, 0.03811388462781906, -0.23729071021080017, -0.32725515961647034, 0.4491289556026459, 0.05251701548695564, 0.015569739043712616, 0.396260529756546, 0.038312528282403946, 0.08589785546064377, -0.08908869326114655, 0.1242988333106041, 0.7229534983634949, -0.026475034654140472, -0.09359759092330933, 0.03578983619809151, 0.3761513829231262, 0.3426451086997986, -0.3010122776031494, 0.21522432565689087, -0.004063863307237625, -0.1988697201013565, -0.08677355200052261, -0.007565729320049286, -0.0658707246184349, -0.042572952806949615, -0.1353333294391632, 0.25515666604042053, -0.07038542628288269, -0.14020849764347076, 0.1327194720506668, 0.24109503626823425, -0.33770322799682617, -0.12228293716907501, -0.09940440207719803, 0.2275245189666748, 0.0808478444814682, 0.40686482191085815, 0.02565149962902069, -0.06210070848464966, -0.1877572387456894, -0.12574003636837006, -0.22915485501289368, 0.4233473241329193, 0.21302051842212677, 0.2643768787384033, -0.4006463289260864, -0.31953030824661255, -0.09991604089736938, 0.14103707671165466, 0.16231921315193176, 0.3421447277069092, -0.381970077753067, 0.17161716520786285, -0.570916473865509, -0.31530994176864624, 0.4148569703102112, 0.14717307686805725, 0.0992254763841629, -0.2696255147457123, -0.30592459440231323, 0.16445139050483704, 0.17355601489543915, -0.1779198795557022, 0.08677743375301361, -0.07882094383239746, 0.017632607370615005, 0.04554520547389984, -0.07830241322517395, 0.02570663020014763, -0.10931919515132904, -0.244121715426445, 0.23330630362033844, 0.2037580907344818, -0.016551760956645012, 0.25178107619285583, 0.03808924928307533, -0.25138595700263977, -0.12334942817687988, 0.49550291895866394, 0.12248963862657547, -0.08735471963882446, 0.3090548813343048, 0.13043200969696045, -0.1016501933336258, -0.2839200794696808, -0.2328464388847351, -0.01746840961277485, -0.3589038550853729, 0.0418807677924633, -0.2789492607116699, 0.20560424029827118, -0.1519552320241928, 0.3421098291873932, 0.20846231281757355, -0.342560350894928, -0.05394672229886055, -0.6521323323249817, -0.2452821284532547, 0.12293487042188644, 0.23235607147216797, 0.17996926605701447, -0.04698623716831207, 0.14582036435604095, 0.23789623379707336, -0.2760312557220459, -0.4064091444015503, 0.0717904269695282, -0.2867463231086731, -0.2326967716217041, 0.16916735470294952, 0.07039910554885864, 0.34837308526039124, -0.01303783804178238, 0.20449182391166687, -0.07709603756666183, -0.13729940354824066, -0.217160165309906, -0.20092575252056122, 0.08612262457609177, 0.13734781742095947, -0.0574093833565712, 0.1034461185336113, -0.42910122871398926, -0.214975044131279, 0.1222555860877037, 0.08868919312953949, 0.03032068908214569, 0.07249550521373749, 0.13650086522102356, -0.05826795473694801, 0.28854674100875854, 0.0013641193509101868, 0.2742423713207245, 0.03685741499066353, 0.44905751943588257, -0.08281999826431274, 0.08577187359333038, -0.02722795307636261, -0.12618061900138855, -0.4640004336833954, -0.3442685306072235, -0.030588112771511078, 0.027338525280356407, 0.4412345290184021, -0.05036361515522003, 0.26392069458961487, 0.012019762769341469, 0.3478565216064453, 0.48714423179626465, -0.1906338483095169, 0.16870740056037903, 0.032104410231113434, 0.30091148614883423, -0.321283221244812, -0.164649099111557, 0.030898723751306534, 0.29930925369262695, -0.13458339869976044, -0.1654631495475769, 0.4095568060874939, -0.021173249930143356, 0.36206620931625366, 0.010354029014706612, 0.43144574761390686, 0.06784972548484802, 0.08492527902126312, 0.3530268669128418, 0.17556354403495789, 0.21272225677967072, -0.1170087531208992, 0.09301938116550446, -0.06103365868330002, 0.28695839643478394, -0.20008474588394165, 0.12830661237239838, -0.07528557628393173, 0.1254286766052246, -0.2764183282852173, -0.1698986291885376, 0.018329810351133347, 0.10232090204954147, 0.10905779898166656, 0.08174435049295425, 0.07303924113512039, 0.4263460636138916, -0.3149746358394623, 0.1602240651845932, -0.544518232345581, 0.2916008234024048, 0.08509337902069092, -0.06484857946634293, -0.11326166242361069, -0.08563541620969772, 0.04606299847364426, 0.17498156428337097, 0.09267992526292801, -0.15415960550308228, 0.08483543992042542, 0.20775997638702393, -0.16097129881381989, -0.7186638712882996, -0.2439989447593689, 0.12365312874317169, 0.09264083206653595, -0.1157342791557312, 0.07605741173028946, 0.29027873277664185, 0.11108477413654327, -0.044813815504312515, 0.47188514471054077, 0.22410768270492554, 0.19520483911037445, -0.060303669422864914, 0.19047679007053375, 0.2560665011405945, -0.033894218504428864, -0.10785061120986938, 0.22815468907356262, 0.12223897874355316, 0.06078018993139267, 0.36882394552230835, 0.23062936961650848, -0.25606322288513184, -0.03577078506350517, -0.020089734345674515, 0.3096988797187805, 0.13054147362709045, 0.09977743029594421, 0.03234491124749184, 0.02524636685848236, -0.22758471965789795, -0.27401259541511536, -0.5904369354248047, 0.1214059591293335, -0.1174265593290329, 0.12360129505395889, 0.08850114047527313, -0.3194502294063568, 0.11990731954574585, -0.1632309854030609, 0.5202543139457703, 0.24301230907440186, 0.3614233732223511, -0.2201383411884308, -0.23419912159442902, -0.8040485978126526, 0.2815491259098053, -0.08236373960971832, -0.5408525466918945, 0.05280411243438721, 0.2002478837966919, -0.10620325058698654, 0.23814207315444946, 0.19999976456165314, -0.05645018443465233, -0.08244800567626953, 0.23297767341136932, -0.342696875333786, 0.017827259376645088, 0.20882585644721985, 0.1160183697938919, -0.05308235064148903, -0.20250609517097473, 0.2547183036804199, -0.012164076790213585, 0.10619006305932999, -0.06006031483411789, 0.0019695907831192017, -0.059309717267751694, 0.10209871828556061, 0.5750188827514648, 0.040953729301691055, 0.5529907941818237, -0.11473866552114487, -0.12831330299377441, -0.3989207148551941, -0.23995144665241241, -0.09204192459583282, 0.012040909379720688, 0.24417956173419952, -0.09981971979141235, -0.049739085137844086, -0.03362163528800011, -0.08632281422615051, 0.4100388288497925, -0.13834017515182495, -0.14405496418476105, -0.26586711406707764, 0.046095624566078186, -0.12061450630426407, 0.05182139575481415, 0.20701472461223602, 0.072276271879673, -0.13112996518611908, -0.06624264270067215, -0.2533491849899292, -0.31829938292503357, 0.17438314855098724, -0.0500064492225647, 0.02267317846417427, -0.12672916054725647, 0.2843562364578247, 0.2881582975387573, -0.038209907710552216, -0.20458436012268066, 0.2756446301937103, 0.2529919445514679, -0.09741460531949997, -0.26071134209632874, 0.23555363714694977, -0.02937004715204239, -0.07185423374176025, -0.09459248930215836, 0.2715425491333008, 0.030841082334518433, -0.2629645764827728, 0.0003337189555168152, -0.19662877917289734 ]
https://github.com/huggingface/datasets/issues/3232
The Xsum datasets seems not able to download.
> I don't know other download links - this is the one provided by the authors of the dataset. Maybe you can try downloading from another location ? There are several solutions: a VPN, a remote VM or Google Colab for example. :> ok. Thanks for your reply.
## Describe the bug The download Link of the Xsum dataset provided in the repository is [Link](http://bollin.inf.ed.ac.uk/public/direct/XSUM-EMNLP18-Summary-Data-Original.tar.gz). It seems not able to download. ## Steps to reproduce the bug ```python load_dataset('xsum') ``` ## Actual results ``` python raise ConnectionError("Couldn't reach {}".format(url)) ConnectionError: Couldn't reach http://bollin.inf.ed.ac.uk/public/direct/XSUM-EMNLP18-Summary-Data-Original.tar.gz ```
48
The Xsum datasets seems not able to download. ## Describe the bug The download Link of the Xsum dataset provided in the repository is [Link](http://bollin.inf.ed.ac.uk/public/direct/XSUM-EMNLP18-Summary-Data-Original.tar.gz). It seems not able to download. ## Steps to reproduce the bug ```python load_dataset('xsum') ``` ## Actual results ``` python raise ConnectionError("Couldn't reach {}".format(url)) ConnectionError: Couldn't reach http://bollin.inf.ed.ac.uk/public/direct/XSUM-EMNLP18-Summary-Data-Original.tar.gz ``` > I don't know other download links - this is the one provided by the authors of the dataset. Maybe you can try downloading from another location ? There are several solutions: a VPN, a remote VM or Google Colab for example. :> ok. Thanks for your reply.
[ -0.33318662643432617, -0.39438194036483765, -0.09605585038661957, 0.26030829548835754, 0.2701829671859741, -0.03084995597600937, -0.18646986782550812, 0.226612389087677, 0.4172309637069702, 0.43436622619628906, -0.2952316701412201, 0.269223153591156, 0.18903334438800812, 0.26287582516670227, 0.2242889106273651, -0.10810066759586334, -0.0503326877951622, -0.03381936252117157, -0.26989585161209106, -0.2509646713733673, 0.022020727396011353, 0.11422242224216461, -0.11530651897192001, -0.2087220400571823, -0.07386715710163116, 0.1842098832130432, -0.06248123198747635, 0.14410237967967987, -0.08631202578544617, -0.22419562935829163, 0.3790408968925476, 0.011186603456735611, -0.002508210949599743, 0.270903080701828, -0.00010254156950395554, 0.05001259595155716, 0.0930592492222786, -0.03146234527230263, -0.08937104046344757, -0.09619837999343872, -0.060220737010240555, -0.13641777634620667, -0.007180424407124519, -0.24562129378318787, -0.023109987378120422, 0.0989544466137886, 0.11648636311292648, -0.29104340076446533, 0.2828277349472046, 0.1932455450296402, 0.2635887861251831, 0.3580073416233063, 0.2694309949874878, -0.21097135543823242, 0.05509506165981293, -0.605984628200531, -0.06456686556339264, 0.3859768509864807, 0.5517977476119995, 0.3631400167942047, 0.2569544315338135, 0.14407619833946228, -0.01563011296093464, 0.10868009924888611, 0.10414811968803406, -0.01814064010977745, 0.4408895969390869, -0.4836002290248871, -0.06495558470487595, 0.24809956550598145, 0.6997226476669312, -0.07777469605207443, -0.2917541265487671, 0.14967668056488037, 0.1368192881345749, -0.05879507586359978, 0.24671807885169983, 0.15667739510536194, -0.04697147011756897, 0.03053586557507515, -0.030700067058205605, 0.05508327856659889, -0.3251153230667114, 0.31864726543426514, -0.0180719792842865, 0.17017191648483276, -0.1344882994890213, -0.009096994996070862, -0.1335238814353943, -0.03153499960899353, 0.06916330754756927, 0.0903751328587532, 0.16198809444904327, 0.15640921890735626, -0.3004860281944275, 0.11943347752094269, -0.21362879872322083, 0.04226398095488548, 0.2669880986213684, 0.07108911871910095, 0.18244418501853943, 0.18687745928764343, -0.33749982714653015, 0.2084648609161377, 0.07907506823539734, -0.05360601842403412, 0.0885348841547966, -0.41922926902770996, 0.26477497816085815, -0.007243205327540636, 0.21870362758636475, 0.054056569933891296, -0.2547842562198639, -0.027220100164413452, -0.12099230289459229, 0.07277281582355499, -0.07551562786102295, -0.4470125436782837, -0.4298926591873169, 0.15246142446994781, 0.11827395111322403, 0.1659664511680603, -0.09207524359226227, 0.08226557821035385, -0.3017961382865906, 0.35407912731170654, 0.09292353689670563, 0.17716756463050842, -0.32622233033180237, -0.18311774730682373, -0.22861430048942566, 0.1500980705022812, -0.05807558819651604, -0.17549005150794983, 0.3294421136379242, -0.22230730950832367, 0.36470848321914673, -0.10872878134250641, 0.20776093006134033, -0.06371726095676422, 0.0953834280371666, 0.14646029472351074, -0.3404741585254669, 0.4049583971500397, 0.3226245939731598, 0.0609438419342041, -0.2005067765712738, 0.11127953231334686, -0.08740642666816711, 0.01188511773943901, -0.35422876477241516, -0.14067572355270386, 0.008400490507483482, 0.32033592462539673, -0.09112395346164703, -0.30504679679870605, -0.15047124028205872, -0.17235274612903595, -0.11861791461706161, 0.001249510794878006, -0.33441755175590515, -0.024063002318143845, 0.009365264326334, -0.16944602131843567, 0.42296263575553894, -0.03139480948448181, -0.4814024269580841, -0.030776098370552063, -0.05794383957982063, -0.2459222674369812, 0.08067308366298676, 0.1470632553100586, 0.08177769184112549, 0.0028052255511283875, -0.061233602464199066, 0.2216239720582962, -0.05773276835680008, -0.6693438291549683, -0.7009027004241943, -0.1264820545911789, -0.18495070934295654, -0.3061266541481018, 0.2229800522327423, 0.24291068315505981, 0.056156259030103683, 0.10743212699890137, 0.2482326775789261, 0.38939017057418823, 0.20022311806678772, -0.022889519110322, -0.24080424010753632, -0.20665651559829712, -0.09034048020839691, 0.20366166532039642, 0.08169777691364288, -0.1064249649643898, 0.007340952754020691, 0.2834557294845581, 0.2793327271938324, 0.07300811260938644, -0.0252431258559227, 0.2351289540529251, 0.23370596766471863, -0.16779333353042603, 0.00902123935520649, -0.37012779712677, -0.05047210305929184, 0.21224266290664673, -0.0963127389550209, 0.07344353199005127, 0.13023661077022552, -0.10649606585502625, -0.5121941566467285, -0.17563630640506744, 0.05037232115864754, 0.07093740999698639, 0.19822195172309875, -0.01775696873664856, 0.18177178502082825, 0.09577424824237823, -0.1306692659854889, 0.2211688756942749, -0.22785687446594238, -0.018343808129429817, -0.307325154542923, 0.3943323493003845, -0.16943223774433136, 0.037100084125995636, 0.2341395616531372, -0.002596348524093628, 0.0335053876042366, -0.31173935532569885, -0.09167816489934921, 0.446325421333313, -0.17436835169792175, 0.17299652099609375, 0.20962879061698914, -0.11846481263637543, 0.3361446261405945, -0.4633333086967468, 0.14524051547050476, 0.24895347654819489, 0.01818666234612465, 0.12211696058511734, -0.19477099180221558, 0.048361726105213165, 0.12124799191951752, -0.06098056584596634, 0.12588712573051453, 0.31052735447883606, 0.33026570081710815, -0.1301492303609848, 0.06048348546028137, -0.16185389459133148, 0.32658079266548157, 0.28368425369262695, -0.0802445113658905, -0.24433721601963043, -0.1977044641971588, 0.27650558948516846, 0.0629318356513977, -0.04720081388950348, 0.10692732036113739, -0.09224530309438705, -0.27462875843048096, -0.004871169105172157, 0.03352346643805504, 0.045443084090948105, 0.24055209755897522, 0.15094681084156036, 0.09571975469589233, 0.19864630699157715, -0.05431974679231644, -0.22716931998729706, 0.01955144852399826, 0.11664995551109314, -0.18482057750225067, 0.22628027200698853, -0.269471138715744, 0.024214312434196472, -0.3155527114868164, -0.062330640852451324, 0.07717817276716232, 0.1465240716934204, -0.2164068967103958, -0.27118971943855286, -0.3040672838687897, -0.17968565225601196, 0.17096026241779327, 0.052543748170137405, 0.05236174911260605, -0.4137834906578064, 0.06483862549066544, 0.24297627806663513, -0.14890241622924805, 0.008624974638223648, -0.40724870562553406, 0.20580069720745087, 0.16251657903194427, 0.03132753074169159, -0.1041899174451828, -0.07416752725839615, -0.09681025892496109, 0.18585985898971558, -0.026072561740875244, 0.2868196666240692, 0.44297632575035095, -0.45773375034332275, 0.0306832417845726, -0.2998046875, -0.19617916643619537, 0.07688013464212418, -0.045811258256435394, 0.20876885950565338, -0.13567489385604858, 0.21349529922008514, 0.16363133490085602, -0.05898062884807587, 0.18897096812725067, -0.28257840871810913, 0.008050629869103432, 0.11494632065296173, -0.046807970851659775, -0.2762989401817322, -0.09773549437522888, -0.6756280064582825, -0.45220598578453064, -0.20924536883831024, -0.056640662252902985, 0.1673419326543808, 0.17652922868728638, -0.07686510682106018, -0.11218622326850891, 0.17096193134784698, 0.12063197791576385, 0.0600413978099823, -0.22254367172718048, -0.5547968149185181, 0.4554392397403717, -0.1665535569190979, -0.7234406471252441, 0.3154022991657257, 0.23303590714931488, 0.1606276035308838, 0.21403735876083374, -0.39800745248794556, -0.17414817214012146, -0.13496722280979156, 0.0005803517997264862, 0.25838837027549744, 0.2056427001953125, 0.010144956409931183, -0.24897587299346924, -0.2149875909090042, -0.08693370223045349, 0.10633963346481323, -0.05125317722558975, -0.04664616286754608, 0.3067919909954071, -0.151177316904068, -0.043198443949222565, 0.19920159876346588, -0.249655082821846, 0.053377922624349594, 0.08496691286563873, 0.22792573273181915, -0.027667393907904625, 0.11307480931282043, -0.02851056307554245, -0.19139401614665985, 0.3319619596004486, -0.10807263851165771, 0.12364864349365234, 0.04437806084752083, 0.10288184881210327, 0.2231605350971222, -0.25879979133605957, -0.07068388164043427, -0.13781669735908508, -0.19087712466716766, -0.36027786135673523, 0.10622538626194, 0.07175996154546738, 0.18251605331897736, 0.08908454328775406, -0.0839562714099884, -0.17462271451950073, 0.11416053771972656, 0.26214176416397095, -0.000013850629329681396, 0.1589594930410385, -0.4843957722187042, 0.17201533913612366, -0.3638402223587036, 0.49136728048324585, -0.09999465197324753, 0.2990444004535675, -0.24735215306282043, 0.1386929452419281, 0.2961474657058716, -0.06936873495578766, -0.011568799614906311, -0.31168678402900696, 0.3127521276473999, 0.22775627672672272, 0.07730873674154282, -0.34908822178840637, 0.00642646849155426, -0.34121817350387573, 0.1826520562171936, 0.6227025389671326, 0.014374218881130219, -0.32509899139404297, 0.029748987406492233, 0.16308684647083282, 0.38960975408554077, -0.30231934785842896, 0.026508178561925888, -0.10248348116874695, -0.23591548204421997, -0.2095864862203598, -0.13489601016044617, -0.13225089013576508, 0.3642019033432007, 0.07523301988840103, -0.18452005088329315, -0.04265541583299637, -0.17760661244392395, 0.22932620346546173, 0.022740144282579422, 0.2998332381248474, 0.05624876916408539, 0.313824325799942, 0.09889281541109085, -0.03398112207651138, -0.0027804113924503326, 0.45465898513793945, -0.0293622724711895, -0.12527891993522644, 0.0935259684920311, -0.46636027097702026, 0.06877976655960083, 0.06811165809631348, -0.20206189155578613, -0.2644546627998352, -0.019188467413187027, 0.07071997970342636, 0.018058855086565018, 0.23496809601783752, 0.24164949357509613, 0.05252648517489433, -0.2382831573486328, -0.3186344802379608, 0.4482691287994385, 0.05874839797616005, 0.009795159101486206, 0.38548415899276733, 0.03961138054728508, 0.07630416005849838, -0.10140711069107056, 0.1384240835905075, 0.7176886200904846, -0.021585889160633087, -0.10493770241737366, 0.03621569275856018, 0.3847418427467346, 0.34547334909439087, -0.2987020015716553, 0.21788136661052704, -0.033916227519512177, -0.202503502368927, -0.08487410843372345, -0.018322717398405075, -0.04668988287448883, -0.046821750700473785, -0.13914650678634644, 0.24642625451087952, -0.07134135812520981, -0.15606391429901123, 0.10819459706544876, 0.24427038431167603, -0.34580302238464355, -0.11686338484287262, -0.09980785101652145, 0.22377800941467285, 0.08087971061468124, 0.3956344723701477, 0.017962392419576645, -0.05797808617353439, -0.1756560504436493, -0.13295648992061615, -0.21796075999736786, 0.4013836085796356, 0.2022799700498581, 0.2509945034980774, -0.41458821296691895, -0.3133639693260193, -0.09463806450366974, 0.1623925417661667, 0.18766258656978607, 0.32042357325553894, -0.38361841440200806, 0.16613000631332397, -0.5624518394470215, -0.30032628774642944, 0.404860258102417, 0.15391820669174194, 0.12330453097820282, -0.27716687321662903, -0.32235634326934814, 0.15481162071228027, 0.16558590531349182, -0.15452934801578522, 0.0820227563381195, -0.06515859067440033, 0.0290127694606781, 0.025813672691583633, -0.08854469656944275, 0.0440451018512249, -0.10618868470191956, -0.22515377402305603, 0.23240916430950165, 0.2182871550321579, -0.025769345462322235, 0.2951813340187073, 0.03295792639255524, -0.25641071796417236, -0.1244468241930008, 0.49371573328971863, 0.14277178049087524, -0.08716979622840881, 0.3028952479362488, 0.13330037891864777, -0.11456631869077682, -0.2889709770679474, -0.22389939427375793, -0.022269759327173233, -0.3525865375995636, 0.03544933721423149, -0.2528892457485199, 0.20275332033634186, -0.14599590003490448, 0.34212052822113037, 0.20995549857616425, -0.3303171396255493, -0.0399174802005291, -0.6581875085830688, -0.2728695869445801, 0.1105148196220398, 0.21991673111915588, 0.1960132122039795, -0.04269867390394211, 0.14652985334396362, 0.24919351935386658, -0.2781335413455963, -0.4104873538017273, 0.08423411101102829, -0.2868376672267914, -0.22583255171775818, 0.1782798171043396, 0.06446011364459991, 0.3473430275917053, -0.01571476459503174, 0.20221513509750366, -0.06722036004066467, -0.15135742723941803, -0.21819394826889038, -0.19517433643341064, 0.08202476799488068, 0.14547143876552582, -0.06719459593296051, 0.1167847216129303, -0.42517638206481934, -0.22051259875297546, 0.13672968745231628, 0.10247661173343658, 0.03066759556531906, 0.07035137712955475, 0.1629662960767746, -0.041954319924116135, 0.2764522135257721, 0.006588466465473175, 0.2732303738594055, 0.05700910836458206, 0.4353037476539612, -0.08480169624090195, 0.08973683416843414, -0.042068347334861755, -0.13149170577526093, -0.44690144062042236, -0.33501237630844116, -0.020274274051189423, 0.029729675501585007, 0.4241231083869934, -0.04713545739650726, 0.26124295592308044, 0.0047442237846553326, 0.3585338592529297, 0.47907599806785583, -0.20193202793598175, 0.1719888299703598, 0.023026838898658752, 0.3057931959629059, -0.33074191212654114, -0.16212354600429535, 0.02577323466539383, 0.29886236786842346, -0.134593203663826, -0.1624756157398224, 0.3965953588485718, -0.024116627871990204, 0.36962348222732544, 0.009584257379174232, 0.4443897604942322, 0.05631766468286514, 0.055039506405591965, 0.3314827084541321, 0.1466689556837082, 0.21555481851100922, -0.09106750786304474, 0.08998799324035645, -0.0708334818482399, 0.3039225935935974, -0.19687730073928833, 0.13821810483932495, -0.06559484452009201, 0.11703696101903915, -0.2702932357788086, -0.16663317382335663, 0.01901797577738762, 0.11894406378269196, 0.10639571398496628, 0.08285430073738098, 0.09163297712802887, 0.4362027943134308, -0.29226168990135193, 0.15469761192798615, -0.5318653583526611, 0.2957751452922821, 0.08066020160913467, -0.0634058490395546, -0.09804905205965042, -0.09354542940855026, 0.045760929584503174, 0.15108725428581238, 0.07157030701637268, -0.1285567432641983, 0.08270015567541122, 0.2049286961555481, -0.17154575884342194, -0.7250717878341675, -0.24645057320594788, 0.12730693817138672, 0.09051750600337982, -0.12304364144802094, 0.0847734585404396, 0.3069151043891907, 0.13034474849700928, -0.0585879348218441, 0.4835756719112396, 0.22353044152259827, 0.197898730635643, -0.05605057254433632, 0.2059185802936554, 0.2619803547859192, -0.017124582082033157, -0.09074745327234268, 0.22136732935905457, 0.1236085295677185, 0.04377925023436546, 0.3742477595806122, 0.231785848736763, -0.25107812881469727, -0.029643315821886063, 0.008304495364427567, 0.2955988645553589, 0.12080858647823334, 0.09006491303443909, 0.04844516143202782, 0.02154877781867981, -0.24199140071868896, -0.2729566693305969, -0.5800817608833313, 0.12929680943489075, -0.11848439276218414, 0.12629260122776031, 0.09337814897298813, -0.31814441084861755, 0.12406416237354279, -0.1662474125623703, 0.5195279717445374, 0.22517545521259308, 0.3552328050136566, -0.22805826365947723, -0.2223503291606903, -0.8105401396751404, 0.27638569474220276, -0.05490778759121895, -0.5391690135002136, 0.06189093738794327, 0.19108255207538605, -0.08799461275339127, 0.23153962194919586, 0.20297005772590637, -0.05748072266578674, -0.07500581443309784, 0.21999090909957886, -0.37190431356430054, 0.03019009344279766, 0.2081289291381836, 0.11717149615287781, -0.048303332179784775, -0.20211350917816162, 0.25163108110427856, 0.003693440929055214, 0.10513133555650711, -0.06912489235401154, 0.004285596311092377, -0.0599336139857769, 0.10203337669372559, 0.565131664276123, 0.032211508601903915, 0.5706570744514465, -0.13855189085006714, -0.0994238555431366, -0.35860544443130493, -0.23927146196365356, -0.08459389209747314, 0.021049153059720993, 0.27389436960220337, -0.09778156876564026, -0.05755408853292465, -0.033033307641744614, -0.08488449454307556, 0.4214339852333069, -0.14213517308235168, -0.14336347579956055, -0.28044551610946655, 0.06910054385662079, -0.09074573963880539, 0.04184216260910034, 0.16993311047554016, 0.07182347029447556, -0.12797103822231293, -0.04735682159662247, -0.2501646876335144, -0.3313194215297699, 0.19246575236320496, -0.042938802391290665, 0.03193865343928337, -0.12638694047927856, 0.2892626225948334, 0.2994459569454193, -0.06351764500141144, -0.22063839435577393, 0.27101221680641174, 0.2630387842655182, -0.10088817030191422, -0.2577262222766876, 0.22530649602413177, -0.021770235151052475, -0.06444216519594193, -0.10211614519357681, 0.2631695866584778, 0.0474926233291626, -0.25396454334259033, -0.004643864929676056, -0.19413888454437256 ]
https://github.com/huggingface/datasets/issues/3227
Error in `Json(datasets.ArrowBasedBuilder)` class
I have additionally identified the source of the error, being that [this condition](https://github.com/huggingface/datasets/blob/fc46bba66ba4f432cc10501c16a677112e13984c/src/datasets/packaged_modules/json/json.py#L124-L126) in the file `python3.8/site-packages/datasets/packaged_modules/json/json.py` is not being entered correctly: ```python if ( isinstance(e, pa.ArrowInvalid) and "straddling" not in str(e) or block_size > len(batch) ): ``` From what I can tell, in my case the block_size simply needs to be increased, but the error message does not contain "straddling" so the condition does trigger correctly and we fail to reach [the line to increase block_size](https://github.com/huggingface/datasets/blob/fc46bba66ba4f432cc10501c16a677112e13984c/src/datasets/packaged_modules/json/json.py#L135). Changing the condition above to simply ```python if ( block_size > len(batch) ): ``` Fixes the error for me. I'm happy to create a PR containing this fix if the developers deem the other conditions unnecessary.
## Describe the bug When a json file contains a `text` field that is larger than the block_size, the JSON dataset builder fails. ## Steps to reproduce the bug Create a folder that contains the following: ``` . ├── testdata │   └── mydata.json └── test.py ``` Please download [this file](https://github.com/huggingface/datasets/files/7491797/mydata.txt) as `mydata.json`. (The error does not occur in JSON files with shorter text, but it is reproducible when the text is long as in the file I provide) :exclamation: :exclamation: GitHub doesn't allow me to upload JSON so this file is a TXT, and you should rename it to `.json`! `test.py` simply contains: ```python from datasets import load_dataset my_dataset = load_dataset("testdata") ``` To reproduce the error, simply run ``` python test.py ``` ## Expected results The data should load correctly without error. ## Actual results The dataset builder fails with: ``` Using custom data configuration testdata-d490389b8ab4fd82 Downloading and preparing dataset json/testdata to /home/junshern.chan/.cache/huggingface/datasets/json/testdata-d490389b8ab4fd82/0.0.0/3333a8af0db9764dfcff43a42ff26228f0f2e267f0d8a0a294452d188beadb34... 100%|████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 1/1 [00:00<00:00, 2264.74it/s] 100%|█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 1/1 [00:00<00:00, 447.01it/s] Failed to read file '/home/junshern.chan/hf-json-bug/testdata/mydata.json' with error <class 'pyarrow.lib.ArrowInvalid'>: JSON parse error: Missing a name for object member. in row 0 Traceback (most recent call last): File "test.py", line 28, in <module> my_dataset = load_dataset("testdata") File "/home/junshern.chan/.casio/miniconda/envs/hf-json-bug/lib/python3.8/site-packages/datasets/load.py", line 1632, in load_dataset builder_instance.download_and_prepare( File "/home/junshern.chan/.casio/miniconda/envs/hf-json-bug/lib/python3.8/site-packages/datasets/builder.py", line 607, in download_and_prepare self._download_and_prepare( File "/home/junshern.chan/.casio/miniconda/envs/hf-json-bug/lib/python3.8/site-packages/datasets/builder.py", line 697, in _download_and_prepare self._prepare_split(split_generator, **prepare_split_kwargs) File "/home/junshern.chan/.casio/miniconda/envs/hf-json-bug/lib/python3.8/site-packages/datasets/builder.py", line 1156, in _prepare_split for key, table in utils.tqdm( File "/home/junshern.chan/.casio/miniconda/envs/hf-json-bug/lib/python3.8/site-packages/tqdm/std.py", line 1168, in __iter__ for obj in iterable: File "/home/junshern.chan/.casio/miniconda/envs/hf-json-bug/lib/python3.8/site-packages/datasets/packaged_modules/json/json.py", line 146, in _generate_tables raise ValueError( ValueError: Not able to read records in the JSON file at /home/junshern.chan/hf-json-bug/testdata/mydata.json. You should probably indicate the field of the JSON file containing your records. This JSON file contain the following fields: ['text']. Select the correct one and provide it as `field='XXX'` to the dataset loading method. ``` ## Environment info <!-- You can run the command `datasets-cli env` and copy-and-paste its output below. --> - `datasets` version: 1.15.1 - Platform: Linux-5.8.0-63-generic-x86_64-with-glibc2.17 - Python version: 3.8.12 - PyArrow version: 6.0.0
113
Error in `Json(datasets.ArrowBasedBuilder)` class ## Describe the bug When a json file contains a `text` field that is larger than the block_size, the JSON dataset builder fails. ## Steps to reproduce the bug Create a folder that contains the following: ``` . ├── testdata │   └── mydata.json └── test.py ``` Please download [this file](https://github.com/huggingface/datasets/files/7491797/mydata.txt) as `mydata.json`. (The error does not occur in JSON files with shorter text, but it is reproducible when the text is long as in the file I provide) :exclamation: :exclamation: GitHub doesn't allow me to upload JSON so this file is a TXT, and you should rename it to `.json`! `test.py` simply contains: ```python from datasets import load_dataset my_dataset = load_dataset("testdata") ``` To reproduce the error, simply run ``` python test.py ``` ## Expected results The data should load correctly without error. ## Actual results The dataset builder fails with: ``` Using custom data configuration testdata-d490389b8ab4fd82 Downloading and preparing dataset json/testdata to /home/junshern.chan/.cache/huggingface/datasets/json/testdata-d490389b8ab4fd82/0.0.0/3333a8af0db9764dfcff43a42ff26228f0f2e267f0d8a0a294452d188beadb34... 100%|████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 1/1 [00:00<00:00, 2264.74it/s] 100%|█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 1/1 [00:00<00:00, 447.01it/s] Failed to read file '/home/junshern.chan/hf-json-bug/testdata/mydata.json' with error <class 'pyarrow.lib.ArrowInvalid'>: JSON parse error: Missing a name for object member. in row 0 Traceback (most recent call last): File "test.py", line 28, in <module> my_dataset = load_dataset("testdata") File "/home/junshern.chan/.casio/miniconda/envs/hf-json-bug/lib/python3.8/site-packages/datasets/load.py", line 1632, in load_dataset builder_instance.download_and_prepare( File "/home/junshern.chan/.casio/miniconda/envs/hf-json-bug/lib/python3.8/site-packages/datasets/builder.py", line 607, in download_and_prepare self._download_and_prepare( File "/home/junshern.chan/.casio/miniconda/envs/hf-json-bug/lib/python3.8/site-packages/datasets/builder.py", line 697, in _download_and_prepare self._prepare_split(split_generator, **prepare_split_kwargs) File "/home/junshern.chan/.casio/miniconda/envs/hf-json-bug/lib/python3.8/site-packages/datasets/builder.py", line 1156, in _prepare_split for key, table in utils.tqdm( File "/home/junshern.chan/.casio/miniconda/envs/hf-json-bug/lib/python3.8/site-packages/tqdm/std.py", line 1168, in __iter__ for obj in iterable: File "/home/junshern.chan/.casio/miniconda/envs/hf-json-bug/lib/python3.8/site-packages/datasets/packaged_modules/json/json.py", line 146, in _generate_tables raise ValueError( ValueError: Not able to read records in the JSON file at /home/junshern.chan/hf-json-bug/testdata/mydata.json. You should probably indicate the field of the JSON file containing your records. This JSON file contain the following fields: ['text']. Select the correct one and provide it as `field='XXX'` to the dataset loading method. ``` ## Environment info <!-- You can run the command `datasets-cli env` and copy-and-paste its output below. --> - `datasets` version: 1.15.1 - Platform: Linux-5.8.0-63-generic-x86_64-with-glibc2.17 - Python version: 3.8.12 - PyArrow version: 6.0.0 I have additionally identified the source of the error, being that [this condition](https://github.com/huggingface/datasets/blob/fc46bba66ba4f432cc10501c16a677112e13984c/src/datasets/packaged_modules/json/json.py#L124-L126) in the file `python3.8/site-packages/datasets/packaged_modules/json/json.py` is not being entered correctly: ```python if ( isinstance(e, pa.ArrowInvalid) and "straddling" not in str(e) or block_size > len(batch) ): ``` From what I can tell, in my case the block_size simply needs to be increased, but the error message does not contain "straddling" so the condition does trigger correctly and we fail to reach [the line to increase block_size](https://github.com/huggingface/datasets/blob/fc46bba66ba4f432cc10501c16a677112e13984c/src/datasets/packaged_modules/json/json.py#L135). Changing the condition above to simply ```python if ( block_size > len(batch) ): ``` Fixes the error for me. I'm happy to create a PR containing this fix if the developers deem the other conditions unnecessary.
[ -0.24031203985214233, 0.16509908437728882, -0.11469827592372894, 0.48228055238723755, 0.09547748416662216, 0.15490984916687012, 0.161164790391922, 0.4468059539794922, 0.16290047764778137, 0.05443159490823746, 0.24025823175907135, 0.21363972127437592, -0.06419919431209564, 0.09869693964719772, -0.08870305120944977, -0.06323554366827011, -0.0958854928612709, 0.21965321898460388, 0.0554811954498291, 0.23881332576274872, -0.13754403591156006, 0.23957012593746185, -0.021647460758686066, 0.044167011976242065, -0.16832491755485535, -0.08801188319921494, 0.22611474990844727, 0.19811484217643738, -0.39995598793029785, -0.6317939162254333, 0.2991533577442169, -0.2521601915359497, -0.0838637501001358, 0.4933878183364868, -0.000110503715404775, 0.13157828152179718, 0.5007124543190002, 0.0465630367398262, -0.4148835241794586, -0.22326840460300446, -0.13641121983528137, -0.409589558839798, 0.1372782438993454, -0.12023534625768661, 0.07721498608589172, -0.5005875825881958, -0.1944185197353363, -0.2052551954984665, 0.6144829392433167, 0.3781803250312805, 0.24445362389087677, -0.01723676547408104, 0.439291775226593, -0.012450315058231354, 0.2353532910346985, 0.214999258518219, -0.1381492018699646, 0.31872010231018066, 0.18728524446487427, 0.4234307110309601, -0.19168996810913086, 0.02324860170483589, 0.13273105025291443, 0.12546125054359436, 0.27291008830070496, -0.07672586292028427, 0.016716770827770233, -0.021237757056951523, 0.23200419545173645, 0.07308158278465271, 0.595189094543457, -0.3755442202091217, -0.4317634701728821, -0.2903711199760437, 0.04427644610404968, -0.06782089918851852, 0.3881252110004425, 0.15918685495853424, -0.19120121002197266, 0.12765590846538544, -0.12182414531707764, -0.10665839165449142, -0.19959740340709686, 0.05459875240921974, 0.005570270121097565, 0.014256440103054047, -0.2931365370750427, 0.04276839643716812, -0.016828451305627823, -0.3169679641723633, 0.08286561071872711, -0.14540207386016846, -0.34695103764533997, 0.22734567523002625, -0.14184093475341797, -0.15314018726348877, -0.10342506319284439, -0.33676889538764954, 0.33131274580955505, 0.1526702344417572, 0.10267100483179092, -0.01815994456410408, -0.13121528923511505, 0.1427517533302307, 0.3137507438659668, 0.149308979511261, 0.12757444381713867, 0.03068782016634941, 0.09815318137407303, 0.35431283712387085, -0.10370217263698578, -0.09011448174715042, -0.05268870294094086, -0.36603543162345886, 0.028083041310310364, -0.321125328540802, 0.26212626695632935, -0.21864914894104004, -0.11303121596574783, 0.32439708709716797, -0.27216893434524536, -0.016754524782299995, 0.03703939914703369, 0.2277621626853943, 0.0052967555820941925, -0.17879948019981384, 0.08410169929265976, 0.2368544638156891, 0.19737397134304047, -0.12568029761314392, -0.13943186402320862, -0.0941009521484375, -0.014053430408239365, -0.05331607908010483, 0.19908149540424347, -0.1054166704416275, 0.44388771057128906, 0.1304035186767578, 0.13678321242332458, -0.2728516757488251, 0.01696053333580494, -0.0018023131415247917, -0.14207449555397034, 0.33865252137184143, -0.026053063571453094, 0.07505904883146286, 0.08696615695953369, -0.3207399845123291, -0.14337977766990662, 0.12364976108074188, -0.11572117358446121, -0.1883135735988617, -0.29073816537857056, 0.22570928931236267, -0.036796875298023224, 0.06589951366186142, -0.5976703763008118, -0.0011097826063632965, 0.06385582685470581, -0.18558287620544434, 0.231644868850708, -0.14943429827690125, 0.193837970495224, -0.15213902294635773, 0.10295739769935608, 0.14641189575195312, -0.49500179290771484, 0.022177591919898987, -0.1589580774307251, -0.01769373193383217, -0.04240802675485611, 0.18982984125614166, -0.3118869662284851, 0.22828420996665955, -0.2827686369419098, 0.19948576390743256, 0.3716089725494385, -0.1947317123413086, -0.5814803838729858, 0.4290315508842468, -0.06037522107362747, 0.1802995800971985, 0.06171440705657005, -0.19034253060817719, -0.021689096465706825, 0.05426328629255295, 0.17788487672805786, 0.17867682874202728, -0.09231849759817123, 0.046742282807826996, -0.17716296017169952, -0.23703999817371368, -0.11451153457164764, 0.18151476979255676, -0.11822421848773956, -0.17427867650985718, 0.12728866934776306, 0.050455156713724136, 0.06626103818416595, -0.0625445544719696, 0.12444644421339035, 0.3878651261329651, 0.035494450479745865, -0.19431419670581818, 0.08406610041856766, -0.1906256377696991, -0.5504318475723267, 0.18950533866882324, -0.12319059669971466, -0.06530662626028061, -0.34396684169769287, 0.005185406655073166, -0.3859594762325287, 0.15468977391719818, -0.2247074991464615, -0.08498577773571014, 0.14556443691253662, -0.06329722702503204, 0.16666993498802185, -0.08861909806728363, -0.13921235501766205, 0.07856179028749466, -0.3218710422515869, 0.2977219820022583, -0.2379864901304245, 0.018707042559981346, -0.05981641262769699, -0.18723443150520325, 0.03091256320476532, -0.03535831719636917, -0.09655454009771347, -0.016878275200724602, -0.39402732253074646, 0.24591735005378723, 0.1489119976758957, -0.0034366026520729065, 0.016731519252061844, -0.012704029679298401, 0.020289815962314606, -0.1318185180425644, 0.20864270627498627, 0.30516907572746277, 0.00848776288330555, -0.0966418981552124, -0.043968409299850464, 0.3174683451652527, -0.08487233519554138, 0.27530571818351746, 0.03087703138589859, -0.21575476229190826, 0.3587177097797394, 0.17662730813026428, -0.13788995146751404, -0.0662185475230217, 0.055262260138988495, 0.034162648022174835, 0.3627394735813141, 0.0012815818190574646, -0.23448871076107025, -0.1374019980430603, 0.5148672461509705, 0.005571052432060242, 0.035318903625011444, 0.32343271374702454, -0.32887759804725647, -0.05507021024823189, 0.016662968322634697, 0.34299150109291077, 0.38573598861694336, 0.1958514302968979, -0.14327387511730194, 0.14362239837646484, 0.11420268565416336, -0.16192547976970673, 0.2949936091899872, -0.0753326565027237, 0.33334532380104065, 0.3271283209323883, 0.34475943446159363, -0.06549956649541855, -0.3512383997440338, -0.3344878852367401, -0.1525236815214157, 0.15807288885116577, -0.23483750224113464, 0.06271094083786011, -0.1558990776538849, -0.03916722163558006, -0.22043712437152863, -0.16450530290603638, -0.21744714677333832, -0.14414159953594208, -0.019337087869644165, 0.03348436951637268, -0.16742193698883057, -0.04441732168197632, -0.03909560665488243, 0.27958619594573975, 0.13924363255500793, -0.24369026720523834, -0.28236210346221924, 0.060738030821084976, -0.3482094705104828, 0.06746664643287659, 0.4192628264427185, -0.0003481428138911724, 0.06949147582054138, -0.07118441164493561, -0.0388314463198185, -0.18162576854228973, -0.19929945468902588, 0.09691514819860458, -0.09673112630844116, 0.4307473599910736, 0.2579064667224884, 0.28203344345092773, -0.11040707677602768, -0.15975363552570343, 0.21592868864536285, 0.0003318861126899719, -0.47798994183540344, 0.07169375568628311, 0.05926838144659996, 0.1459031105041504, -0.04274175316095352, -0.18658897280693054, 0.09895975887775421, -0.5119396448135376, 0.6149400472640991, 0.2794419825077057, 0.08523698896169662, 0.1733129322528839, 0.18010763823986053, 0.37407973408699036, 0.062370121479034424, 0.2490323781967163, -0.07623183727264404, -0.3669801354408264, 0.23879265785217285, -0.2684374153614044, -0.22403480112552643, 0.06224634125828743, 0.048993177711963654, 0.32588720321655273, -0.2646791934967041, -0.6064220070838928, 0.22544516623020172, -0.21192121505737305, 0.177179753780365, -0.28651589155197144, -0.005646241828799248, 0.057944223284721375, 0.040015507489442825, -0.08088842034339905, -0.1169591099023819, -0.2159639447927475, -0.032197557389736176, -0.02891658991575241, 0.2511916160583496, -0.09608294814825058, 0.5281838774681091, -0.14735442399978638, 0.42710214853286743, 0.39511680603027344, -0.057306576520204544, 0.25525176525115967, -0.03466981649398804, 0.1327648162841797, -0.44225379824638367, -0.13224685192108154, -0.049886610358953476, 0.005479499697685242, -0.15439662337303162, 0.025274574756622314, 0.04557520151138306, 0.22975793480873108, 0.09394475817680359, -0.13966239988803864, -0.21961718797683716, -0.16167351603507996, 0.16842252016067505, -0.24537286162376404, -0.11970888823270798, -0.1609194129705429, -0.0893908441066742, -0.06035548076033592, 0.08350180089473724, -0.07065252959728241, 0.03671867772936821, -0.06365392357110977, 0.06727440655231476, -0.2444150745868683, -0.16433870792388916, -0.28057408332824707, 0.34869879484176636, -0.009531736373901367, 0.1679990142583847, 0.04360419884324074, 0.1896980106830597, 0.017768584191799164, -0.183613583445549, 0.47285139560699463, -0.09165927767753601, 0.06381344795227051, 0.10687373578548431, 0.1219167709350586, -0.4793364703655243, 0.02556246891617775, -0.04503834992647171, 0.41919663548469543, 0.2557521462440491, 0.4631061255931854, -0.3397456407546997, -0.07280506193637848, 0.1691516637802124, 0.187713161110878, 0.09430064260959625, -0.2506452798843384, -0.1335563063621521, -0.2604061961174011, -0.43976137042045593, 0.021196700632572174, 0.3730715215206146, 0.40048784017562866, 0.2366953343153, -0.19072626531124115, -0.01136264018714428, -0.10530425608158112, -0.1902850717306137, 0.13612166047096252, 0.24083346128463745, -0.16689246892929077, 0.17772804200649261, -0.11519128084182739, 0.07949314266443253, 0.4494354724884033, 0.832930326461792, 0.4346234202384949, -0.23976457118988037, 0.02070908062160015, 0.0217549130320549, 0.13429993391036987, 0.22701631486415863, -0.034630756825208664, 0.06320726871490479, 0.07358642667531967, 0.17668098211288452, 0.032579995691776276, -0.23459656536579132, 0.3547554910182953, -0.07412254065275192, -0.1323772519826889, -0.18743053078651428, 0.6975248456001282, -0.05368053540587425, 0.3071478605270386, 0.41826608777046204, 0.4633302092552185, -0.2641758620738983, 0.4075036644935608, 0.0009866803884506226, 0.7449684739112854, 0.1586240828037262, -0.053088728338479996, 0.19942617416381836, -0.4170677661895752, 0.40905168652534485, -0.379746675491333, -0.04116927087306976, -0.3387753665447235, 0.17077860236167908, 0.10750071704387665, -0.2361162006855011, 0.3297266364097595, 0.27360859513282776, -0.10181743651628494, -0.034638114273548126, -0.16072674095630646, 0.04229753836989403, -0.14413805305957794, 0.3305632770061493, -0.5538545846939087, -0.1765962839126587, -0.5864976048469543, 0.188703253865242, -0.1233237236738205, -0.10371683537960052, -0.036997102200984955, -0.13859893381595612, -0.22901973128318787, -0.3214173913002014, -0.6038650870323181, 0.12558627128601074, -0.12497550249099731, 0.011168082244694233, 0.4965744912624359, -0.0978550836443901, 0.46344268321990967, -0.07452042400836945, 0.16441753506660461, 0.15126056969165802, -0.2165832370519638, 0.15769653022289276, -0.2625900208950043, 0.009706160053610802, 0.11081119626760483, 0.09981118142604828, 0.38346222043037415, -0.1327393800020218, -0.08721047639846802, 0.011358704417943954, -0.2562512755393982, -0.25425398349761963, 0.30137085914611816, -0.028546661138534546, -0.3071892261505127, -0.5664199590682983, -0.4167686998844147, -0.25500911474227905, -0.04598106071352959, -0.3050530254840851, 0.17241956293582916, 0.035810574889183044, -0.14211341738700867, -0.06677436083555222, 0.2506850063800812, -0.272849977016449, -0.08613298833370209, 0.15439185500144958, -0.050691597163677216, 0.11332559585571289, 0.6504628658294678, 0.21107931435108185, -0.009836234152317047, -0.2115166187286377, 0.24977093935012817, 0.6434354186058044, -0.4741377532482147, 0.31917858123779297, -0.17196843028068542, -0.0721544399857521, 0.04165024682879448, 0.31407833099365234, 0.3150460124015808, 0.15217821300029755, 0.04700397327542305, -0.4215180575847626, -0.3167913854122162, 0.35618990659713745, -0.0315125398337841, 0.12572531402111053, -0.033231377601623535, 0.09254251420497894, -0.1206742376089096, 0.0893872007727623, -0.3080744743347168, 0.1434115767478943, -0.2932378351688385, -0.04011610895395279, -0.08937907218933105, 0.10831630229949951, 0.2066635936498642, 0.0730912983417511, 0.11798857152462006, 0.310022234916687, -0.20842422544956207, -0.2655383348464966, -0.10147646069526672, 0.08501208573579788, 0.2604758143424988, -0.05446482449769974, -0.08819746226072311, -0.22357992827892303, -0.21333181858062744, -0.07463590055704117, 0.05177628621459007, -0.23398169875144958, 0.0710364580154419, 0.03500593081116676, 0.05994759500026703, -0.004832766950130463, -0.16801778972148895, -0.04479663819074631, -0.010308422148227692, 0.37145864963531494, 0.03528238460421562, 0.19586333632469177, 0.00037054286804050207, 0.09577590227127075, -0.30278536677360535, 0.19541433453559875, -0.09949836134910583, 0.19422107934951782, 0.36407455801963806, -0.5464217066764832, -0.021324703469872475, 0.08585431426763535, 0.34619519114494324, 0.4805017113685608, -0.29680711030960083, 0.03868580609560013, -0.0536298006772995, 0.2073533684015274, -0.22646696865558624, -0.194320410490036, 0.24065732955932617, -0.19246119260787964, -0.0894591361284256, 0.08328628540039062, 0.07564853131771088, -0.053303077816963196, -0.2036394327878952, 0.16550356149673462, 0.24880185723304749, -0.08032577484846115, 0.039804644882678986, 0.48748502135276794, -0.15183329582214355, -0.07171699404716492, 0.47739213705062866, 0.28788962960243225, 0.5036130547523499, 0.5236490964889526, -0.1052018329501152, 0.03550165891647339, 0.08590337634086609, 0.07041552662849426, 0.013954587280750275, -0.27977848052978516, 0.25865209102630615, 0.271207332611084, 0.05237961187958717, -0.07964401692152023, 0.16101185977458954, 0.2441636025905609, -0.08611518889665604, 0.03427494689822197, -0.1549244523048401, -0.09697259962558746, -0.20475584268569946, 0.047950923442840576, -0.1920507848262787, -0.24449381232261658, -0.16154861450195312, -0.01925339177250862, -0.29878735542297363, -0.07809767127037048, -0.04081380367279053, -0.07759155333042145, -0.1409359872341156, -0.4831467270851135, 0.20653918385505676, 0.006195172667503357, 0.06755325198173523, -0.35286056995391846, 0.36932045221328735, 0.19059400260448456, -0.1580050140619278, 0.007868345826864243, 0.4461718201637268, 0.5568509101867676, 0.21947456896305084, -0.044000450521707535, 0.002976218704134226, -0.18311971426010132, -0.23554755747318268, -0.0977475717663765, 0.25838690996170044, 0.2915651798248291, -0.17110779881477356, 0.23503609001636505, 0.22756272554397583, -0.1818312406539917, -0.04026606306433678, 0.1774912029504776, 0.07661126554012299, -0.22396446764469147, 0.18182119727134705, -0.2643308639526367, -0.16370078921318054, -0.10227996110916138, -0.06233041733503342, -0.306783527135849, -0.31097739934921265, 0.28679147362709045, -0.05043264478445053, 0.06604748964309692, -0.16729316115379333, 0.12843583524227142, -0.10609246790409088, 0.5356914401054382, 0.494814395904541, 0.004409324377775192, 0.018198229372501373, -0.1390881985425949, -0.2834146022796631, 0.12496205419301987, -0.14581753313541412, 0.019470741972327232, 0.3128263056278229, 0.2943846881389618, 0.009950041770935059, 0.034559428691864014, 0.29988235235214233, 0.14406614005565643, -0.220464825630188, 0.09091217815876007, -0.17772367596626282, -0.3251909613609314, 0.24602508544921875, 0.0679401159286499, -0.012939861044287682, -0.15530629456043243, 0.21917958557605743, -0.00870669074356556, 0.06717852503061295, -0.03539907932281494, 0.02025081217288971, 0.15502884984016418, -0.3802585005760193, 0.4906144440174103, 0.006938680075109005, 0.04973500967025757, -0.11186622083187103, -0.28970029950141907, -0.15098711848258972, -0.28472834825515747, -0.26966598629951477, 0.4918876886367798, 0.0018115639686584473, 0.6861052513122559, -0.0862945169210434, -0.0013214312493801117, -0.2265896201133728, -0.10063496977090836, -0.24709391593933105, -0.04722749441862106, -0.27291008830070496, 0.11523308604955673, -0.22745853662490845, 0.17460767924785614, 0.06021808460354805, 0.12611791491508484, -0.059638865292072296, 0.1846531331539154, -0.31844571232795715, -0.32551512122154236, 0.37977564334869385, -0.16823114454746246, -0.3426622152328491, 0.4232117533683777, 0.13897602260112762, 0.21474510431289673, -0.3961002826690674, -0.5195673704147339, 0.16585135459899902, 0.341997891664505, -0.024547431617975235, -0.18355609476566315, 0.08797834813594818, -0.08383211493492126, 0.12455300986766815, -0.08060409128665924, 0.3642965257167816, -0.04083584249019623, -0.040042683482170105, -0.02218322642147541, -0.21188241243362427 ]
https://github.com/huggingface/datasets/issues/3227
Error in `Json(datasets.ArrowBasedBuilder)` class
Hi ! I think the issue comes from the fact that your JSON file is not a valid JSON Lines file. Each example should be on one single line. Can you try fixing the format to have one line per example and try again ?
## Describe the bug When a json file contains a `text` field that is larger than the block_size, the JSON dataset builder fails. ## Steps to reproduce the bug Create a folder that contains the following: ``` . ├── testdata │   └── mydata.json └── test.py ``` Please download [this file](https://github.com/huggingface/datasets/files/7491797/mydata.txt) as `mydata.json`. (The error does not occur in JSON files with shorter text, but it is reproducible when the text is long as in the file I provide) :exclamation: :exclamation: GitHub doesn't allow me to upload JSON so this file is a TXT, and you should rename it to `.json`! `test.py` simply contains: ```python from datasets import load_dataset my_dataset = load_dataset("testdata") ``` To reproduce the error, simply run ``` python test.py ``` ## Expected results The data should load correctly without error. ## Actual results The dataset builder fails with: ``` Using custom data configuration testdata-d490389b8ab4fd82 Downloading and preparing dataset json/testdata to /home/junshern.chan/.cache/huggingface/datasets/json/testdata-d490389b8ab4fd82/0.0.0/3333a8af0db9764dfcff43a42ff26228f0f2e267f0d8a0a294452d188beadb34... 100%|████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 1/1 [00:00<00:00, 2264.74it/s] 100%|█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 1/1 [00:00<00:00, 447.01it/s] Failed to read file '/home/junshern.chan/hf-json-bug/testdata/mydata.json' with error <class 'pyarrow.lib.ArrowInvalid'>: JSON parse error: Missing a name for object member. in row 0 Traceback (most recent call last): File "test.py", line 28, in <module> my_dataset = load_dataset("testdata") File "/home/junshern.chan/.casio/miniconda/envs/hf-json-bug/lib/python3.8/site-packages/datasets/load.py", line 1632, in load_dataset builder_instance.download_and_prepare( File "/home/junshern.chan/.casio/miniconda/envs/hf-json-bug/lib/python3.8/site-packages/datasets/builder.py", line 607, in download_and_prepare self._download_and_prepare( File "/home/junshern.chan/.casio/miniconda/envs/hf-json-bug/lib/python3.8/site-packages/datasets/builder.py", line 697, in _download_and_prepare self._prepare_split(split_generator, **prepare_split_kwargs) File "/home/junshern.chan/.casio/miniconda/envs/hf-json-bug/lib/python3.8/site-packages/datasets/builder.py", line 1156, in _prepare_split for key, table in utils.tqdm( File "/home/junshern.chan/.casio/miniconda/envs/hf-json-bug/lib/python3.8/site-packages/tqdm/std.py", line 1168, in __iter__ for obj in iterable: File "/home/junshern.chan/.casio/miniconda/envs/hf-json-bug/lib/python3.8/site-packages/datasets/packaged_modules/json/json.py", line 146, in _generate_tables raise ValueError( ValueError: Not able to read records in the JSON file at /home/junshern.chan/hf-json-bug/testdata/mydata.json. You should probably indicate the field of the JSON file containing your records. This JSON file contain the following fields: ['text']. Select the correct one and provide it as `field='XXX'` to the dataset loading method. ``` ## Environment info <!-- You can run the command `datasets-cli env` and copy-and-paste its output below. --> - `datasets` version: 1.15.1 - Platform: Linux-5.8.0-63-generic-x86_64-with-glibc2.17 - Python version: 3.8.12 - PyArrow version: 6.0.0
45
Error in `Json(datasets.ArrowBasedBuilder)` class ## Describe the bug When a json file contains a `text` field that is larger than the block_size, the JSON dataset builder fails. ## Steps to reproduce the bug Create a folder that contains the following: ``` . ├── testdata │   └── mydata.json └── test.py ``` Please download [this file](https://github.com/huggingface/datasets/files/7491797/mydata.txt) as `mydata.json`. (The error does not occur in JSON files with shorter text, but it is reproducible when the text is long as in the file I provide) :exclamation: :exclamation: GitHub doesn't allow me to upload JSON so this file is a TXT, and you should rename it to `.json`! `test.py` simply contains: ```python from datasets import load_dataset my_dataset = load_dataset("testdata") ``` To reproduce the error, simply run ``` python test.py ``` ## Expected results The data should load correctly without error. ## Actual results The dataset builder fails with: ``` Using custom data configuration testdata-d490389b8ab4fd82 Downloading and preparing dataset json/testdata to /home/junshern.chan/.cache/huggingface/datasets/json/testdata-d490389b8ab4fd82/0.0.0/3333a8af0db9764dfcff43a42ff26228f0f2e267f0d8a0a294452d188beadb34... 100%|████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 1/1 [00:00<00:00, 2264.74it/s] 100%|█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 1/1 [00:00<00:00, 447.01it/s] Failed to read file '/home/junshern.chan/hf-json-bug/testdata/mydata.json' with error <class 'pyarrow.lib.ArrowInvalid'>: JSON parse error: Missing a name for object member. in row 0 Traceback (most recent call last): File "test.py", line 28, in <module> my_dataset = load_dataset("testdata") File "/home/junshern.chan/.casio/miniconda/envs/hf-json-bug/lib/python3.8/site-packages/datasets/load.py", line 1632, in load_dataset builder_instance.download_and_prepare( File "/home/junshern.chan/.casio/miniconda/envs/hf-json-bug/lib/python3.8/site-packages/datasets/builder.py", line 607, in download_and_prepare self._download_and_prepare( File "/home/junshern.chan/.casio/miniconda/envs/hf-json-bug/lib/python3.8/site-packages/datasets/builder.py", line 697, in _download_and_prepare self._prepare_split(split_generator, **prepare_split_kwargs) File "/home/junshern.chan/.casio/miniconda/envs/hf-json-bug/lib/python3.8/site-packages/datasets/builder.py", line 1156, in _prepare_split for key, table in utils.tqdm( File "/home/junshern.chan/.casio/miniconda/envs/hf-json-bug/lib/python3.8/site-packages/tqdm/std.py", line 1168, in __iter__ for obj in iterable: File "/home/junshern.chan/.casio/miniconda/envs/hf-json-bug/lib/python3.8/site-packages/datasets/packaged_modules/json/json.py", line 146, in _generate_tables raise ValueError( ValueError: Not able to read records in the JSON file at /home/junshern.chan/hf-json-bug/testdata/mydata.json. You should probably indicate the field of the JSON file containing your records. This JSON file contain the following fields: ['text']. Select the correct one and provide it as `field='XXX'` to the dataset loading method. ``` ## Environment info <!-- You can run the command `datasets-cli env` and copy-and-paste its output below. --> - `datasets` version: 1.15.1 - Platform: Linux-5.8.0-63-generic-x86_64-with-glibc2.17 - Python version: 3.8.12 - PyArrow version: 6.0.0 Hi ! I think the issue comes from the fact that your JSON file is not a valid JSON Lines file. Each example should be on one single line. Can you try fixing the format to have one line per example and try again ?
[ -0.24031203985214233, 0.16509908437728882, -0.11469827592372894, 0.48228055238723755, 0.09547748416662216, 0.15490984916687012, 0.161164790391922, 0.4468059539794922, 0.16290047764778137, 0.05443159490823746, 0.24025823175907135, 0.21363972127437592, -0.06419919431209564, 0.09869693964719772, -0.08870305120944977, -0.06323554366827011, -0.0958854928612709, 0.21965321898460388, 0.0554811954498291, 0.23881332576274872, -0.13754403591156006, 0.23957012593746185, -0.021647460758686066, 0.044167011976242065, -0.16832491755485535, -0.08801188319921494, 0.22611474990844727, 0.19811484217643738, -0.39995598793029785, -0.6317939162254333, 0.2991533577442169, -0.2521601915359497, -0.0838637501001358, 0.4933878183364868, -0.000110503715404775, 0.13157828152179718, 0.5007124543190002, 0.0465630367398262, -0.4148835241794586, -0.22326840460300446, -0.13641121983528137, -0.409589558839798, 0.1372782438993454, -0.12023534625768661, 0.07721498608589172, -0.5005875825881958, -0.1944185197353363, -0.2052551954984665, 0.6144829392433167, 0.3781803250312805, 0.24445362389087677, -0.01723676547408104, 0.439291775226593, -0.012450315058231354, 0.2353532910346985, 0.214999258518219, -0.1381492018699646, 0.31872010231018066, 0.18728524446487427, 0.4234307110309601, -0.19168996810913086, 0.02324860170483589, 0.13273105025291443, 0.12546125054359436, 0.27291008830070496, -0.07672586292028427, 0.016716770827770233, -0.021237757056951523, 0.23200419545173645, 0.07308158278465271, 0.595189094543457, -0.3755442202091217, -0.4317634701728821, -0.2903711199760437, 0.04427644610404968, -0.06782089918851852, 0.3881252110004425, 0.15918685495853424, -0.19120121002197266, 0.12765590846538544, -0.12182414531707764, -0.10665839165449142, -0.19959740340709686, 0.05459875240921974, 0.005570270121097565, 0.014256440103054047, -0.2931365370750427, 0.04276839643716812, -0.016828451305627823, -0.3169679641723633, 0.08286561071872711, -0.14540207386016846, -0.34695103764533997, 0.22734567523002625, -0.14184093475341797, -0.15314018726348877, -0.10342506319284439, -0.33676889538764954, 0.33131274580955505, 0.1526702344417572, 0.10267100483179092, -0.01815994456410408, -0.13121528923511505, 0.1427517533302307, 0.3137507438659668, 0.149308979511261, 0.12757444381713867, 0.03068782016634941, 0.09815318137407303, 0.35431283712387085, -0.10370217263698578, -0.09011448174715042, -0.05268870294094086, -0.36603543162345886, 0.028083041310310364, -0.321125328540802, 0.26212626695632935, -0.21864914894104004, -0.11303121596574783, 0.32439708709716797, -0.27216893434524536, -0.016754524782299995, 0.03703939914703369, 0.2277621626853943, 0.0052967555820941925, -0.17879948019981384, 0.08410169929265976, 0.2368544638156891, 0.19737397134304047, -0.12568029761314392, -0.13943186402320862, -0.0941009521484375, -0.014053430408239365, -0.05331607908010483, 0.19908149540424347, -0.1054166704416275, 0.44388771057128906, 0.1304035186767578, 0.13678321242332458, -0.2728516757488251, 0.01696053333580494, -0.0018023131415247917, -0.14207449555397034, 0.33865252137184143, -0.026053063571453094, 0.07505904883146286, 0.08696615695953369, -0.3207399845123291, -0.14337977766990662, 0.12364976108074188, -0.11572117358446121, -0.1883135735988617, -0.29073816537857056, 0.22570928931236267, -0.036796875298023224, 0.06589951366186142, -0.5976703763008118, -0.0011097826063632965, 0.06385582685470581, -0.18558287620544434, 0.231644868850708, -0.14943429827690125, 0.193837970495224, -0.15213902294635773, 0.10295739769935608, 0.14641189575195312, -0.49500179290771484, 0.022177591919898987, -0.1589580774307251, -0.01769373193383217, -0.04240802675485611, 0.18982984125614166, -0.3118869662284851, 0.22828420996665955, -0.2827686369419098, 0.19948576390743256, 0.3716089725494385, -0.1947317123413086, -0.5814803838729858, 0.4290315508842468, -0.06037522107362747, 0.1802995800971985, 0.06171440705657005, -0.19034253060817719, -0.021689096465706825, 0.05426328629255295, 0.17788487672805786, 0.17867682874202728, -0.09231849759817123, 0.046742282807826996, -0.17716296017169952, -0.23703999817371368, -0.11451153457164764, 0.18151476979255676, -0.11822421848773956, -0.17427867650985718, 0.12728866934776306, 0.050455156713724136, 0.06626103818416595, -0.0625445544719696, 0.12444644421339035, 0.3878651261329651, 0.035494450479745865, -0.19431419670581818, 0.08406610041856766, -0.1906256377696991, -0.5504318475723267, 0.18950533866882324, -0.12319059669971466, -0.06530662626028061, -0.34396684169769287, 0.005185406655073166, -0.3859594762325287, 0.15468977391719818, -0.2247074991464615, -0.08498577773571014, 0.14556443691253662, -0.06329722702503204, 0.16666993498802185, -0.08861909806728363, -0.13921235501766205, 0.07856179028749466, -0.3218710422515869, 0.2977219820022583, -0.2379864901304245, 0.018707042559981346, -0.05981641262769699, -0.18723443150520325, 0.03091256320476532, -0.03535831719636917, -0.09655454009771347, -0.016878275200724602, -0.39402732253074646, 0.24591735005378723, 0.1489119976758957, -0.0034366026520729065, 0.016731519252061844, -0.012704029679298401, 0.020289815962314606, -0.1318185180425644, 0.20864270627498627, 0.30516907572746277, 0.00848776288330555, -0.0966418981552124, -0.043968409299850464, 0.3174683451652527, -0.08487233519554138, 0.27530571818351746, 0.03087703138589859, -0.21575476229190826, 0.3587177097797394, 0.17662730813026428, -0.13788995146751404, -0.0662185475230217, 0.055262260138988495, 0.034162648022174835, 0.3627394735813141, 0.0012815818190574646, -0.23448871076107025, -0.1374019980430603, 0.5148672461509705, 0.005571052432060242, 0.035318903625011444, 0.32343271374702454, -0.32887759804725647, -0.05507021024823189, 0.016662968322634697, 0.34299150109291077, 0.38573598861694336, 0.1958514302968979, -0.14327387511730194, 0.14362239837646484, 0.11420268565416336, -0.16192547976970673, 0.2949936091899872, -0.0753326565027237, 0.33334532380104065, 0.3271283209323883, 0.34475943446159363, -0.06549956649541855, -0.3512383997440338, -0.3344878852367401, -0.1525236815214157, 0.15807288885116577, -0.23483750224113464, 0.06271094083786011, -0.1558990776538849, -0.03916722163558006, -0.22043712437152863, -0.16450530290603638, -0.21744714677333832, -0.14414159953594208, -0.019337087869644165, 0.03348436951637268, -0.16742193698883057, -0.04441732168197632, -0.03909560665488243, 0.27958619594573975, 0.13924363255500793, -0.24369026720523834, -0.28236210346221924, 0.060738030821084976, -0.3482094705104828, 0.06746664643287659, 0.4192628264427185, -0.0003481428138911724, 0.06949147582054138, -0.07118441164493561, -0.0388314463198185, -0.18162576854228973, -0.19929945468902588, 0.09691514819860458, -0.09673112630844116, 0.4307473599910736, 0.2579064667224884, 0.28203344345092773, -0.11040707677602768, -0.15975363552570343, 0.21592868864536285, 0.0003318861126899719, -0.47798994183540344, 0.07169375568628311, 0.05926838144659996, 0.1459031105041504, -0.04274175316095352, -0.18658897280693054, 0.09895975887775421, -0.5119396448135376, 0.6149400472640991, 0.2794419825077057, 0.08523698896169662, 0.1733129322528839, 0.18010763823986053, 0.37407973408699036, 0.062370121479034424, 0.2490323781967163, -0.07623183727264404, -0.3669801354408264, 0.23879265785217285, -0.2684374153614044, -0.22403480112552643, 0.06224634125828743, 0.048993177711963654, 0.32588720321655273, -0.2646791934967041, -0.6064220070838928, 0.22544516623020172, -0.21192121505737305, 0.177179753780365, -0.28651589155197144, -0.005646241828799248, 0.057944223284721375, 0.040015507489442825, -0.08088842034339905, -0.1169591099023819, -0.2159639447927475, -0.032197557389736176, -0.02891658991575241, 0.2511916160583496, -0.09608294814825058, 0.5281838774681091, -0.14735442399978638, 0.42710214853286743, 0.39511680603027344, -0.057306576520204544, 0.25525176525115967, -0.03466981649398804, 0.1327648162841797, -0.44225379824638367, -0.13224685192108154, -0.049886610358953476, 0.005479499697685242, -0.15439662337303162, 0.025274574756622314, 0.04557520151138306, 0.22975793480873108, 0.09394475817680359, -0.13966239988803864, -0.21961718797683716, -0.16167351603507996, 0.16842252016067505, -0.24537286162376404, -0.11970888823270798, -0.1609194129705429, -0.0893908441066742, -0.06035548076033592, 0.08350180089473724, -0.07065252959728241, 0.03671867772936821, -0.06365392357110977, 0.06727440655231476, -0.2444150745868683, -0.16433870792388916, -0.28057408332824707, 0.34869879484176636, -0.009531736373901367, 0.1679990142583847, 0.04360419884324074, 0.1896980106830597, 0.017768584191799164, -0.183613583445549, 0.47285139560699463, -0.09165927767753601, 0.06381344795227051, 0.10687373578548431, 0.1219167709350586, -0.4793364703655243, 0.02556246891617775, -0.04503834992647171, 0.41919663548469543, 0.2557521462440491, 0.4631061255931854, -0.3397456407546997, -0.07280506193637848, 0.1691516637802124, 0.187713161110878, 0.09430064260959625, -0.2506452798843384, -0.1335563063621521, -0.2604061961174011, -0.43976137042045593, 0.021196700632572174, 0.3730715215206146, 0.40048784017562866, 0.2366953343153, -0.19072626531124115, -0.01136264018714428, -0.10530425608158112, -0.1902850717306137, 0.13612166047096252, 0.24083346128463745, -0.16689246892929077, 0.17772804200649261, -0.11519128084182739, 0.07949314266443253, 0.4494354724884033, 0.832930326461792, 0.4346234202384949, -0.23976457118988037, 0.02070908062160015, 0.0217549130320549, 0.13429993391036987, 0.22701631486415863, -0.034630756825208664, 0.06320726871490479, 0.07358642667531967, 0.17668098211288452, 0.032579995691776276, -0.23459656536579132, 0.3547554910182953, -0.07412254065275192, -0.1323772519826889, -0.18743053078651428, 0.6975248456001282, -0.05368053540587425, 0.3071478605270386, 0.41826608777046204, 0.4633302092552185, -0.2641758620738983, 0.4075036644935608, 0.0009866803884506226, 0.7449684739112854, 0.1586240828037262, -0.053088728338479996, 0.19942617416381836, -0.4170677661895752, 0.40905168652534485, -0.379746675491333, -0.04116927087306976, -0.3387753665447235, 0.17077860236167908, 0.10750071704387665, -0.2361162006855011, 0.3297266364097595, 0.27360859513282776, -0.10181743651628494, -0.034638114273548126, -0.16072674095630646, 0.04229753836989403, -0.14413805305957794, 0.3305632770061493, -0.5538545846939087, -0.1765962839126587, -0.5864976048469543, 0.188703253865242, -0.1233237236738205, -0.10371683537960052, -0.036997102200984955, -0.13859893381595612, -0.22901973128318787, -0.3214173913002014, -0.6038650870323181, 0.12558627128601074, -0.12497550249099731, 0.011168082244694233, 0.4965744912624359, -0.0978550836443901, 0.46344268321990967, -0.07452042400836945, 0.16441753506660461, 0.15126056969165802, -0.2165832370519638, 0.15769653022289276, -0.2625900208950043, 0.009706160053610802, 0.11081119626760483, 0.09981118142604828, 0.38346222043037415, -0.1327393800020218, -0.08721047639846802, 0.011358704417943954, -0.2562512755393982, -0.25425398349761963, 0.30137085914611816, -0.028546661138534546, -0.3071892261505127, -0.5664199590682983, -0.4167686998844147, -0.25500911474227905, -0.04598106071352959, -0.3050530254840851, 0.17241956293582916, 0.035810574889183044, -0.14211341738700867, -0.06677436083555222, 0.2506850063800812, -0.272849977016449, -0.08613298833370209, 0.15439185500144958, -0.050691597163677216, 0.11332559585571289, 0.6504628658294678, 0.21107931435108185, -0.009836234152317047, -0.2115166187286377, 0.24977093935012817, 0.6434354186058044, -0.4741377532482147, 0.31917858123779297, -0.17196843028068542, -0.0721544399857521, 0.04165024682879448, 0.31407833099365234, 0.3150460124015808, 0.15217821300029755, 0.04700397327542305, -0.4215180575847626, -0.3167913854122162, 0.35618990659713745, -0.0315125398337841, 0.12572531402111053, -0.033231377601623535, 0.09254251420497894, -0.1206742376089096, 0.0893872007727623, -0.3080744743347168, 0.1434115767478943, -0.2932378351688385, -0.04011610895395279, -0.08937907218933105, 0.10831630229949951, 0.2066635936498642, 0.0730912983417511, 0.11798857152462006, 0.310022234916687, -0.20842422544956207, -0.2655383348464966, -0.10147646069526672, 0.08501208573579788, 0.2604758143424988, -0.05446482449769974, -0.08819746226072311, -0.22357992827892303, -0.21333181858062744, -0.07463590055704117, 0.05177628621459007, -0.23398169875144958, 0.0710364580154419, 0.03500593081116676, 0.05994759500026703, -0.004832766950130463, -0.16801778972148895, -0.04479663819074631, -0.010308422148227692, 0.37145864963531494, 0.03528238460421562, 0.19586333632469177, 0.00037054286804050207, 0.09577590227127075, -0.30278536677360535, 0.19541433453559875, -0.09949836134910583, 0.19422107934951782, 0.36407455801963806, -0.5464217066764832, -0.021324703469872475, 0.08585431426763535, 0.34619519114494324, 0.4805017113685608, -0.29680711030960083, 0.03868580609560013, -0.0536298006772995, 0.2073533684015274, -0.22646696865558624, -0.194320410490036, 0.24065732955932617, -0.19246119260787964, -0.0894591361284256, 0.08328628540039062, 0.07564853131771088, -0.053303077816963196, -0.2036394327878952, 0.16550356149673462, 0.24880185723304749, -0.08032577484846115, 0.039804644882678986, 0.48748502135276794, -0.15183329582214355, -0.07171699404716492, 0.47739213705062866, 0.28788962960243225, 0.5036130547523499, 0.5236490964889526, -0.1052018329501152, 0.03550165891647339, 0.08590337634086609, 0.07041552662849426, 0.013954587280750275, -0.27977848052978516, 0.25865209102630615, 0.271207332611084, 0.05237961187958717, -0.07964401692152023, 0.16101185977458954, 0.2441636025905609, -0.08611518889665604, 0.03427494689822197, -0.1549244523048401, -0.09697259962558746, -0.20475584268569946, 0.047950923442840576, -0.1920507848262787, -0.24449381232261658, -0.16154861450195312, -0.01925339177250862, -0.29878735542297363, -0.07809767127037048, -0.04081380367279053, -0.07759155333042145, -0.1409359872341156, -0.4831467270851135, 0.20653918385505676, 0.006195172667503357, 0.06755325198173523, -0.35286056995391846, 0.36932045221328735, 0.19059400260448456, -0.1580050140619278, 0.007868345826864243, 0.4461718201637268, 0.5568509101867676, 0.21947456896305084, -0.044000450521707535, 0.002976218704134226, -0.18311971426010132, -0.23554755747318268, -0.0977475717663765, 0.25838690996170044, 0.2915651798248291, -0.17110779881477356, 0.23503609001636505, 0.22756272554397583, -0.1818312406539917, -0.04026606306433678, 0.1774912029504776, 0.07661126554012299, -0.22396446764469147, 0.18182119727134705, -0.2643308639526367, -0.16370078921318054, -0.10227996110916138, -0.06233041733503342, -0.306783527135849, -0.31097739934921265, 0.28679147362709045, -0.05043264478445053, 0.06604748964309692, -0.16729316115379333, 0.12843583524227142, -0.10609246790409088, 0.5356914401054382, 0.494814395904541, 0.004409324377775192, 0.018198229372501373, -0.1390881985425949, -0.2834146022796631, 0.12496205419301987, -0.14581753313541412, 0.019470741972327232, 0.3128263056278229, 0.2943846881389618, 0.009950041770935059, 0.034559428691864014, 0.29988235235214233, 0.14406614005565643, -0.220464825630188, 0.09091217815876007, -0.17772367596626282, -0.3251909613609314, 0.24602508544921875, 0.0679401159286499, -0.012939861044287682, -0.15530629456043243, 0.21917958557605743, -0.00870669074356556, 0.06717852503061295, -0.03539907932281494, 0.02025081217288971, 0.15502884984016418, -0.3802585005760193, 0.4906144440174103, 0.006938680075109005, 0.04973500967025757, -0.11186622083187103, -0.28970029950141907, -0.15098711848258972, -0.28472834825515747, -0.26966598629951477, 0.4918876886367798, 0.0018115639686584473, 0.6861052513122559, -0.0862945169210434, -0.0013214312493801117, -0.2265896201133728, -0.10063496977090836, -0.24709391593933105, -0.04722749441862106, -0.27291008830070496, 0.11523308604955673, -0.22745853662490845, 0.17460767924785614, 0.06021808460354805, 0.12611791491508484, -0.059638865292072296, 0.1846531331539154, -0.31844571232795715, -0.32551512122154236, 0.37977564334869385, -0.16823114454746246, -0.3426622152328491, 0.4232117533683777, 0.13897602260112762, 0.21474510431289673, -0.3961002826690674, -0.5195673704147339, 0.16585135459899902, 0.341997891664505, -0.024547431617975235, -0.18355609476566315, 0.08797834813594818, -0.08383211493492126, 0.12455300986766815, -0.08060409128665924, 0.3642965257167816, -0.04083584249019623, -0.040042683482170105, -0.02218322642147541, -0.21188241243362427 ]
https://github.com/huggingface/datasets/issues/3227
Error in `Json(datasets.ArrowBasedBuilder)` class
:open_mouth: you're right, that did it! I just put everything on a single line (my file only has a single example) and that fixed the error. Thank you so much!
## Describe the bug When a json file contains a `text` field that is larger than the block_size, the JSON dataset builder fails. ## Steps to reproduce the bug Create a folder that contains the following: ``` . ├── testdata │   └── mydata.json └── test.py ``` Please download [this file](https://github.com/huggingface/datasets/files/7491797/mydata.txt) as `mydata.json`. (The error does not occur in JSON files with shorter text, but it is reproducible when the text is long as in the file I provide) :exclamation: :exclamation: GitHub doesn't allow me to upload JSON so this file is a TXT, and you should rename it to `.json`! `test.py` simply contains: ```python from datasets import load_dataset my_dataset = load_dataset("testdata") ``` To reproduce the error, simply run ``` python test.py ``` ## Expected results The data should load correctly without error. ## Actual results The dataset builder fails with: ``` Using custom data configuration testdata-d490389b8ab4fd82 Downloading and preparing dataset json/testdata to /home/junshern.chan/.cache/huggingface/datasets/json/testdata-d490389b8ab4fd82/0.0.0/3333a8af0db9764dfcff43a42ff26228f0f2e267f0d8a0a294452d188beadb34... 100%|████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 1/1 [00:00<00:00, 2264.74it/s] 100%|█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 1/1 [00:00<00:00, 447.01it/s] Failed to read file '/home/junshern.chan/hf-json-bug/testdata/mydata.json' with error <class 'pyarrow.lib.ArrowInvalid'>: JSON parse error: Missing a name for object member. in row 0 Traceback (most recent call last): File "test.py", line 28, in <module> my_dataset = load_dataset("testdata") File "/home/junshern.chan/.casio/miniconda/envs/hf-json-bug/lib/python3.8/site-packages/datasets/load.py", line 1632, in load_dataset builder_instance.download_and_prepare( File "/home/junshern.chan/.casio/miniconda/envs/hf-json-bug/lib/python3.8/site-packages/datasets/builder.py", line 607, in download_and_prepare self._download_and_prepare( File "/home/junshern.chan/.casio/miniconda/envs/hf-json-bug/lib/python3.8/site-packages/datasets/builder.py", line 697, in _download_and_prepare self._prepare_split(split_generator, **prepare_split_kwargs) File "/home/junshern.chan/.casio/miniconda/envs/hf-json-bug/lib/python3.8/site-packages/datasets/builder.py", line 1156, in _prepare_split for key, table in utils.tqdm( File "/home/junshern.chan/.casio/miniconda/envs/hf-json-bug/lib/python3.8/site-packages/tqdm/std.py", line 1168, in __iter__ for obj in iterable: File "/home/junshern.chan/.casio/miniconda/envs/hf-json-bug/lib/python3.8/site-packages/datasets/packaged_modules/json/json.py", line 146, in _generate_tables raise ValueError( ValueError: Not able to read records in the JSON file at /home/junshern.chan/hf-json-bug/testdata/mydata.json. You should probably indicate the field of the JSON file containing your records. This JSON file contain the following fields: ['text']. Select the correct one and provide it as `field='XXX'` to the dataset loading method. ``` ## Environment info <!-- You can run the command `datasets-cli env` and copy-and-paste its output below. --> - `datasets` version: 1.15.1 - Platform: Linux-5.8.0-63-generic-x86_64-with-glibc2.17 - Python version: 3.8.12 - PyArrow version: 6.0.0
30
Error in `Json(datasets.ArrowBasedBuilder)` class ## Describe the bug When a json file contains a `text` field that is larger than the block_size, the JSON dataset builder fails. ## Steps to reproduce the bug Create a folder that contains the following: ``` . ├── testdata │   └── mydata.json └── test.py ``` Please download [this file](https://github.com/huggingface/datasets/files/7491797/mydata.txt) as `mydata.json`. (The error does not occur in JSON files with shorter text, but it is reproducible when the text is long as in the file I provide) :exclamation: :exclamation: GitHub doesn't allow me to upload JSON so this file is a TXT, and you should rename it to `.json`! `test.py` simply contains: ```python from datasets import load_dataset my_dataset = load_dataset("testdata") ``` To reproduce the error, simply run ``` python test.py ``` ## Expected results The data should load correctly without error. ## Actual results The dataset builder fails with: ``` Using custom data configuration testdata-d490389b8ab4fd82 Downloading and preparing dataset json/testdata to /home/junshern.chan/.cache/huggingface/datasets/json/testdata-d490389b8ab4fd82/0.0.0/3333a8af0db9764dfcff43a42ff26228f0f2e267f0d8a0a294452d188beadb34... 100%|████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 1/1 [00:00<00:00, 2264.74it/s] 100%|█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 1/1 [00:00<00:00, 447.01it/s] Failed to read file '/home/junshern.chan/hf-json-bug/testdata/mydata.json' with error <class 'pyarrow.lib.ArrowInvalid'>: JSON parse error: Missing a name for object member. in row 0 Traceback (most recent call last): File "test.py", line 28, in <module> my_dataset = load_dataset("testdata") File "/home/junshern.chan/.casio/miniconda/envs/hf-json-bug/lib/python3.8/site-packages/datasets/load.py", line 1632, in load_dataset builder_instance.download_and_prepare( File "/home/junshern.chan/.casio/miniconda/envs/hf-json-bug/lib/python3.8/site-packages/datasets/builder.py", line 607, in download_and_prepare self._download_and_prepare( File "/home/junshern.chan/.casio/miniconda/envs/hf-json-bug/lib/python3.8/site-packages/datasets/builder.py", line 697, in _download_and_prepare self._prepare_split(split_generator, **prepare_split_kwargs) File "/home/junshern.chan/.casio/miniconda/envs/hf-json-bug/lib/python3.8/site-packages/datasets/builder.py", line 1156, in _prepare_split for key, table in utils.tqdm( File "/home/junshern.chan/.casio/miniconda/envs/hf-json-bug/lib/python3.8/site-packages/tqdm/std.py", line 1168, in __iter__ for obj in iterable: File "/home/junshern.chan/.casio/miniconda/envs/hf-json-bug/lib/python3.8/site-packages/datasets/packaged_modules/json/json.py", line 146, in _generate_tables raise ValueError( ValueError: Not able to read records in the JSON file at /home/junshern.chan/hf-json-bug/testdata/mydata.json. You should probably indicate the field of the JSON file containing your records. This JSON file contain the following fields: ['text']. Select the correct one and provide it as `field='XXX'` to the dataset loading method. ``` ## Environment info <!-- You can run the command `datasets-cli env` and copy-and-paste its output below. --> - `datasets` version: 1.15.1 - Platform: Linux-5.8.0-63-generic-x86_64-with-glibc2.17 - Python version: 3.8.12 - PyArrow version: 6.0.0 :open_mouth: you're right, that did it! I just put everything on a single line (my file only has a single example) and that fixed the error. Thank you so much!
[ -0.24031203985214233, 0.16509908437728882, -0.11469827592372894, 0.48228055238723755, 0.09547748416662216, 0.15490984916687012, 0.161164790391922, 0.4468059539794922, 0.16290047764778137, 0.05443159490823746, 0.24025823175907135, 0.21363972127437592, -0.06419919431209564, 0.09869693964719772, -0.08870305120944977, -0.06323554366827011, -0.0958854928612709, 0.21965321898460388, 0.0554811954498291, 0.23881332576274872, -0.13754403591156006, 0.23957012593746185, -0.021647460758686066, 0.044167011976242065, -0.16832491755485535, -0.08801188319921494, 0.22611474990844727, 0.19811484217643738, -0.39995598793029785, -0.6317939162254333, 0.2991533577442169, -0.2521601915359497, -0.0838637501001358, 0.4933878183364868, -0.000110503715404775, 0.13157828152179718, 0.5007124543190002, 0.0465630367398262, -0.4148835241794586, -0.22326840460300446, -0.13641121983528137, -0.409589558839798, 0.1372782438993454, -0.12023534625768661, 0.07721498608589172, -0.5005875825881958, -0.1944185197353363, -0.2052551954984665, 0.6144829392433167, 0.3781803250312805, 0.24445362389087677, -0.01723676547408104, 0.439291775226593, -0.012450315058231354, 0.2353532910346985, 0.214999258518219, -0.1381492018699646, 0.31872010231018066, 0.18728524446487427, 0.4234307110309601, -0.19168996810913086, 0.02324860170483589, 0.13273105025291443, 0.12546125054359436, 0.27291008830070496, -0.07672586292028427, 0.016716770827770233, -0.021237757056951523, 0.23200419545173645, 0.07308158278465271, 0.595189094543457, -0.3755442202091217, -0.4317634701728821, -0.2903711199760437, 0.04427644610404968, -0.06782089918851852, 0.3881252110004425, 0.15918685495853424, -0.19120121002197266, 0.12765590846538544, -0.12182414531707764, -0.10665839165449142, -0.19959740340709686, 0.05459875240921974, 0.005570270121097565, 0.014256440103054047, -0.2931365370750427, 0.04276839643716812, -0.016828451305627823, -0.3169679641723633, 0.08286561071872711, -0.14540207386016846, -0.34695103764533997, 0.22734567523002625, -0.14184093475341797, -0.15314018726348877, -0.10342506319284439, -0.33676889538764954, 0.33131274580955505, 0.1526702344417572, 0.10267100483179092, -0.01815994456410408, -0.13121528923511505, 0.1427517533302307, 0.3137507438659668, 0.149308979511261, 0.12757444381713867, 0.03068782016634941, 0.09815318137407303, 0.35431283712387085, -0.10370217263698578, -0.09011448174715042, -0.05268870294094086, -0.36603543162345886, 0.028083041310310364, -0.321125328540802, 0.26212626695632935, -0.21864914894104004, -0.11303121596574783, 0.32439708709716797, -0.27216893434524536, -0.016754524782299995, 0.03703939914703369, 0.2277621626853943, 0.0052967555820941925, -0.17879948019981384, 0.08410169929265976, 0.2368544638156891, 0.19737397134304047, -0.12568029761314392, -0.13943186402320862, -0.0941009521484375, -0.014053430408239365, -0.05331607908010483, 0.19908149540424347, -0.1054166704416275, 0.44388771057128906, 0.1304035186767578, 0.13678321242332458, -0.2728516757488251, 0.01696053333580494, -0.0018023131415247917, -0.14207449555397034, 0.33865252137184143, -0.026053063571453094, 0.07505904883146286, 0.08696615695953369, -0.3207399845123291, -0.14337977766990662, 0.12364976108074188, -0.11572117358446121, -0.1883135735988617, -0.29073816537857056, 0.22570928931236267, -0.036796875298023224, 0.06589951366186142, -0.5976703763008118, -0.0011097826063632965, 0.06385582685470581, -0.18558287620544434, 0.231644868850708, -0.14943429827690125, 0.193837970495224, -0.15213902294635773, 0.10295739769935608, 0.14641189575195312, -0.49500179290771484, 0.022177591919898987, -0.1589580774307251, -0.01769373193383217, -0.04240802675485611, 0.18982984125614166, -0.3118869662284851, 0.22828420996665955, -0.2827686369419098, 0.19948576390743256, 0.3716089725494385, -0.1947317123413086, -0.5814803838729858, 0.4290315508842468, -0.06037522107362747, 0.1802995800971985, 0.06171440705657005, -0.19034253060817719, -0.021689096465706825, 0.05426328629255295, 0.17788487672805786, 0.17867682874202728, -0.09231849759817123, 0.046742282807826996, -0.17716296017169952, -0.23703999817371368, -0.11451153457164764, 0.18151476979255676, -0.11822421848773956, -0.17427867650985718, 0.12728866934776306, 0.050455156713724136, 0.06626103818416595, -0.0625445544719696, 0.12444644421339035, 0.3878651261329651, 0.035494450479745865, -0.19431419670581818, 0.08406610041856766, -0.1906256377696991, -0.5504318475723267, 0.18950533866882324, -0.12319059669971466, -0.06530662626028061, -0.34396684169769287, 0.005185406655073166, -0.3859594762325287, 0.15468977391719818, -0.2247074991464615, -0.08498577773571014, 0.14556443691253662, -0.06329722702503204, 0.16666993498802185, -0.08861909806728363, -0.13921235501766205, 0.07856179028749466, -0.3218710422515869, 0.2977219820022583, -0.2379864901304245, 0.018707042559981346, -0.05981641262769699, -0.18723443150520325, 0.03091256320476532, -0.03535831719636917, -0.09655454009771347, -0.016878275200724602, -0.39402732253074646, 0.24591735005378723, 0.1489119976758957, -0.0034366026520729065, 0.016731519252061844, -0.012704029679298401, 0.020289815962314606, -0.1318185180425644, 0.20864270627498627, 0.30516907572746277, 0.00848776288330555, -0.0966418981552124, -0.043968409299850464, 0.3174683451652527, -0.08487233519554138, 0.27530571818351746, 0.03087703138589859, -0.21575476229190826, 0.3587177097797394, 0.17662730813026428, -0.13788995146751404, -0.0662185475230217, 0.055262260138988495, 0.034162648022174835, 0.3627394735813141, 0.0012815818190574646, -0.23448871076107025, -0.1374019980430603, 0.5148672461509705, 0.005571052432060242, 0.035318903625011444, 0.32343271374702454, -0.32887759804725647, -0.05507021024823189, 0.016662968322634697, 0.34299150109291077, 0.38573598861694336, 0.1958514302968979, -0.14327387511730194, 0.14362239837646484, 0.11420268565416336, -0.16192547976970673, 0.2949936091899872, -0.0753326565027237, 0.33334532380104065, 0.3271283209323883, 0.34475943446159363, -0.06549956649541855, -0.3512383997440338, -0.3344878852367401, -0.1525236815214157, 0.15807288885116577, -0.23483750224113464, 0.06271094083786011, -0.1558990776538849, -0.03916722163558006, -0.22043712437152863, -0.16450530290603638, -0.21744714677333832, -0.14414159953594208, -0.019337087869644165, 0.03348436951637268, -0.16742193698883057, -0.04441732168197632, -0.03909560665488243, 0.27958619594573975, 0.13924363255500793, -0.24369026720523834, -0.28236210346221924, 0.060738030821084976, -0.3482094705104828, 0.06746664643287659, 0.4192628264427185, -0.0003481428138911724, 0.06949147582054138, -0.07118441164493561, -0.0388314463198185, -0.18162576854228973, -0.19929945468902588, 0.09691514819860458, -0.09673112630844116, 0.4307473599910736, 0.2579064667224884, 0.28203344345092773, -0.11040707677602768, -0.15975363552570343, 0.21592868864536285, 0.0003318861126899719, -0.47798994183540344, 0.07169375568628311, 0.05926838144659996, 0.1459031105041504, -0.04274175316095352, -0.18658897280693054, 0.09895975887775421, -0.5119396448135376, 0.6149400472640991, 0.2794419825077057, 0.08523698896169662, 0.1733129322528839, 0.18010763823986053, 0.37407973408699036, 0.062370121479034424, 0.2490323781967163, -0.07623183727264404, -0.3669801354408264, 0.23879265785217285, -0.2684374153614044, -0.22403480112552643, 0.06224634125828743, 0.048993177711963654, 0.32588720321655273, -0.2646791934967041, -0.6064220070838928, 0.22544516623020172, -0.21192121505737305, 0.177179753780365, -0.28651589155197144, -0.005646241828799248, 0.057944223284721375, 0.040015507489442825, -0.08088842034339905, -0.1169591099023819, -0.2159639447927475, -0.032197557389736176, -0.02891658991575241, 0.2511916160583496, -0.09608294814825058, 0.5281838774681091, -0.14735442399978638, 0.42710214853286743, 0.39511680603027344, -0.057306576520204544, 0.25525176525115967, -0.03466981649398804, 0.1327648162841797, -0.44225379824638367, -0.13224685192108154, -0.049886610358953476, 0.005479499697685242, -0.15439662337303162, 0.025274574756622314, 0.04557520151138306, 0.22975793480873108, 0.09394475817680359, -0.13966239988803864, -0.21961718797683716, -0.16167351603507996, 0.16842252016067505, -0.24537286162376404, -0.11970888823270798, -0.1609194129705429, -0.0893908441066742, -0.06035548076033592, 0.08350180089473724, -0.07065252959728241, 0.03671867772936821, -0.06365392357110977, 0.06727440655231476, -0.2444150745868683, -0.16433870792388916, -0.28057408332824707, 0.34869879484176636, -0.009531736373901367, 0.1679990142583847, 0.04360419884324074, 0.1896980106830597, 0.017768584191799164, -0.183613583445549, 0.47285139560699463, -0.09165927767753601, 0.06381344795227051, 0.10687373578548431, 0.1219167709350586, -0.4793364703655243, 0.02556246891617775, -0.04503834992647171, 0.41919663548469543, 0.2557521462440491, 0.4631061255931854, -0.3397456407546997, -0.07280506193637848, 0.1691516637802124, 0.187713161110878, 0.09430064260959625, -0.2506452798843384, -0.1335563063621521, -0.2604061961174011, -0.43976137042045593, 0.021196700632572174, 0.3730715215206146, 0.40048784017562866, 0.2366953343153, -0.19072626531124115, -0.01136264018714428, -0.10530425608158112, -0.1902850717306137, 0.13612166047096252, 0.24083346128463745, -0.16689246892929077, 0.17772804200649261, -0.11519128084182739, 0.07949314266443253, 0.4494354724884033, 0.832930326461792, 0.4346234202384949, -0.23976457118988037, 0.02070908062160015, 0.0217549130320549, 0.13429993391036987, 0.22701631486415863, -0.034630756825208664, 0.06320726871490479, 0.07358642667531967, 0.17668098211288452, 0.032579995691776276, -0.23459656536579132, 0.3547554910182953, -0.07412254065275192, -0.1323772519826889, -0.18743053078651428, 0.6975248456001282, -0.05368053540587425, 0.3071478605270386, 0.41826608777046204, 0.4633302092552185, -0.2641758620738983, 0.4075036644935608, 0.0009866803884506226, 0.7449684739112854, 0.1586240828037262, -0.053088728338479996, 0.19942617416381836, -0.4170677661895752, 0.40905168652534485, -0.379746675491333, -0.04116927087306976, -0.3387753665447235, 0.17077860236167908, 0.10750071704387665, -0.2361162006855011, 0.3297266364097595, 0.27360859513282776, -0.10181743651628494, -0.034638114273548126, -0.16072674095630646, 0.04229753836989403, -0.14413805305957794, 0.3305632770061493, -0.5538545846939087, -0.1765962839126587, -0.5864976048469543, 0.188703253865242, -0.1233237236738205, -0.10371683537960052, -0.036997102200984955, -0.13859893381595612, -0.22901973128318787, -0.3214173913002014, -0.6038650870323181, 0.12558627128601074, -0.12497550249099731, 0.011168082244694233, 0.4965744912624359, -0.0978550836443901, 0.46344268321990967, -0.07452042400836945, 0.16441753506660461, 0.15126056969165802, -0.2165832370519638, 0.15769653022289276, -0.2625900208950043, 0.009706160053610802, 0.11081119626760483, 0.09981118142604828, 0.38346222043037415, -0.1327393800020218, -0.08721047639846802, 0.011358704417943954, -0.2562512755393982, -0.25425398349761963, 0.30137085914611816, -0.028546661138534546, -0.3071892261505127, -0.5664199590682983, -0.4167686998844147, -0.25500911474227905, -0.04598106071352959, -0.3050530254840851, 0.17241956293582916, 0.035810574889183044, -0.14211341738700867, -0.06677436083555222, 0.2506850063800812, -0.272849977016449, -0.08613298833370209, 0.15439185500144958, -0.050691597163677216, 0.11332559585571289, 0.6504628658294678, 0.21107931435108185, -0.009836234152317047, -0.2115166187286377, 0.24977093935012817, 0.6434354186058044, -0.4741377532482147, 0.31917858123779297, -0.17196843028068542, -0.0721544399857521, 0.04165024682879448, 0.31407833099365234, 0.3150460124015808, 0.15217821300029755, 0.04700397327542305, -0.4215180575847626, -0.3167913854122162, 0.35618990659713745, -0.0315125398337841, 0.12572531402111053, -0.033231377601623535, 0.09254251420497894, -0.1206742376089096, 0.0893872007727623, -0.3080744743347168, 0.1434115767478943, -0.2932378351688385, -0.04011610895395279, -0.08937907218933105, 0.10831630229949951, 0.2066635936498642, 0.0730912983417511, 0.11798857152462006, 0.310022234916687, -0.20842422544956207, -0.2655383348464966, -0.10147646069526672, 0.08501208573579788, 0.2604758143424988, -0.05446482449769974, -0.08819746226072311, -0.22357992827892303, -0.21333181858062744, -0.07463590055704117, 0.05177628621459007, -0.23398169875144958, 0.0710364580154419, 0.03500593081116676, 0.05994759500026703, -0.004832766950130463, -0.16801778972148895, -0.04479663819074631, -0.010308422148227692, 0.37145864963531494, 0.03528238460421562, 0.19586333632469177, 0.00037054286804050207, 0.09577590227127075, -0.30278536677360535, 0.19541433453559875, -0.09949836134910583, 0.19422107934951782, 0.36407455801963806, -0.5464217066764832, -0.021324703469872475, 0.08585431426763535, 0.34619519114494324, 0.4805017113685608, -0.29680711030960083, 0.03868580609560013, -0.0536298006772995, 0.2073533684015274, -0.22646696865558624, -0.194320410490036, 0.24065732955932617, -0.19246119260787964, -0.0894591361284256, 0.08328628540039062, 0.07564853131771088, -0.053303077816963196, -0.2036394327878952, 0.16550356149673462, 0.24880185723304749, -0.08032577484846115, 0.039804644882678986, 0.48748502135276794, -0.15183329582214355, -0.07171699404716492, 0.47739213705062866, 0.28788962960243225, 0.5036130547523499, 0.5236490964889526, -0.1052018329501152, 0.03550165891647339, 0.08590337634086609, 0.07041552662849426, 0.013954587280750275, -0.27977848052978516, 0.25865209102630615, 0.271207332611084, 0.05237961187958717, -0.07964401692152023, 0.16101185977458954, 0.2441636025905609, -0.08611518889665604, 0.03427494689822197, -0.1549244523048401, -0.09697259962558746, -0.20475584268569946, 0.047950923442840576, -0.1920507848262787, -0.24449381232261658, -0.16154861450195312, -0.01925339177250862, -0.29878735542297363, -0.07809767127037048, -0.04081380367279053, -0.07759155333042145, -0.1409359872341156, -0.4831467270851135, 0.20653918385505676, 0.006195172667503357, 0.06755325198173523, -0.35286056995391846, 0.36932045221328735, 0.19059400260448456, -0.1580050140619278, 0.007868345826864243, 0.4461718201637268, 0.5568509101867676, 0.21947456896305084, -0.044000450521707535, 0.002976218704134226, -0.18311971426010132, -0.23554755747318268, -0.0977475717663765, 0.25838690996170044, 0.2915651798248291, -0.17110779881477356, 0.23503609001636505, 0.22756272554397583, -0.1818312406539917, -0.04026606306433678, 0.1774912029504776, 0.07661126554012299, -0.22396446764469147, 0.18182119727134705, -0.2643308639526367, -0.16370078921318054, -0.10227996110916138, -0.06233041733503342, -0.306783527135849, -0.31097739934921265, 0.28679147362709045, -0.05043264478445053, 0.06604748964309692, -0.16729316115379333, 0.12843583524227142, -0.10609246790409088, 0.5356914401054382, 0.494814395904541, 0.004409324377775192, 0.018198229372501373, -0.1390881985425949, -0.2834146022796631, 0.12496205419301987, -0.14581753313541412, 0.019470741972327232, 0.3128263056278229, 0.2943846881389618, 0.009950041770935059, 0.034559428691864014, 0.29988235235214233, 0.14406614005565643, -0.220464825630188, 0.09091217815876007, -0.17772367596626282, -0.3251909613609314, 0.24602508544921875, 0.0679401159286499, -0.012939861044287682, -0.15530629456043243, 0.21917958557605743, -0.00870669074356556, 0.06717852503061295, -0.03539907932281494, 0.02025081217288971, 0.15502884984016418, -0.3802585005760193, 0.4906144440174103, 0.006938680075109005, 0.04973500967025757, -0.11186622083187103, -0.28970029950141907, -0.15098711848258972, -0.28472834825515747, -0.26966598629951477, 0.4918876886367798, 0.0018115639686584473, 0.6861052513122559, -0.0862945169210434, -0.0013214312493801117, -0.2265896201133728, -0.10063496977090836, -0.24709391593933105, -0.04722749441862106, -0.27291008830070496, 0.11523308604955673, -0.22745853662490845, 0.17460767924785614, 0.06021808460354805, 0.12611791491508484, -0.059638865292072296, 0.1846531331539154, -0.31844571232795715, -0.32551512122154236, 0.37977564334869385, -0.16823114454746246, -0.3426622152328491, 0.4232117533683777, 0.13897602260112762, 0.21474510431289673, -0.3961002826690674, -0.5195673704147339, 0.16585135459899902, 0.341997891664505, -0.024547431617975235, -0.18355609476566315, 0.08797834813594818, -0.08383211493492126, 0.12455300986766815, -0.08060409128665924, 0.3642965257167816, -0.04083584249019623, -0.040042683482170105, -0.02218322642147541, -0.21188241243362427 ]
https://github.com/huggingface/datasets/issues/3210
ConnectionError: Couldn't reach https://raw.githubusercontent.com/huggingface/datasets/1.15.1/datasets/wmt16/wmt16.py
Hi ! Do you have some kind of proxy in your browser that gives you access to internet ? Maybe you're having this error because you don't have access to this URL from python ?
when I use python examples/pytorch/translation/run_translation.py --model_name_or_path examples/pytorch/translation/opus-mt-en-ro --do_train --do_eval --source_lang en --target_lang ro --dataset_name wmt16 --dataset_config_name ro-en --output_dir /tmp/tst-translation --per_device_train_batch_size=4 --per_device_eval_batch_size=4 --overwrite_output_dir --predict_with_generate to finetune translation model on huggingface, I get the issue"ConnectionError: Couldn't reach https://raw.githubusercontent.com/huggingface/datasets/1.15.1/datasets/wmt16/wmt16.py".But I can open the https://raw.githubusercontent.com/huggingface/datasets/1.15.1/datasets/wmt16/wmt16.py by using website. What should I do to solve the issue?
35
ConnectionError: Couldn't reach https://raw.githubusercontent.com/huggingface/datasets/1.15.1/datasets/wmt16/wmt16.py when I use python examples/pytorch/translation/run_translation.py --model_name_or_path examples/pytorch/translation/opus-mt-en-ro --do_train --do_eval --source_lang en --target_lang ro --dataset_name wmt16 --dataset_config_name ro-en --output_dir /tmp/tst-translation --per_device_train_batch_size=4 --per_device_eval_batch_size=4 --overwrite_output_dir --predict_with_generate to finetune translation model on huggingface, I get the issue"ConnectionError: Couldn't reach https://raw.githubusercontent.com/huggingface/datasets/1.15.1/datasets/wmt16/wmt16.py".But I can open the https://raw.githubusercontent.com/huggingface/datasets/1.15.1/datasets/wmt16/wmt16.py by using website. What should I do to solve the issue? Hi ! Do you have some kind of proxy in your browser that gives you access to internet ? Maybe you're having this error because you don't have access to this URL from python ?
[ -0.09308180212974548, -0.38823431730270386, -0.009121136739850044, 0.15295898914337158, 0.3836991786956787, -0.06506255269050598, -0.00147947296500206, 0.027189010754227638, -0.11742080748081207, 0.43337422609329224, -0.10921894013881683, -0.15955285727977753, 0.34266799688339233, 0.13497474789619446, 0.3313349187374115, -0.41412079334259033, -0.03761426359415054, -0.25213393568992615, -0.30913975834846497, 0.11637479066848755, -0.19043684005737305, 0.006159162148833275, -0.15531529486179352, 0.4519801139831543, -0.12279988080263138, 0.023016754537820816, -0.11619913578033447, 0.18124887347221375, -0.16161710023880005, -0.09003975242376328, 0.23397020995616913, -0.1223878413438797, 0.08601602166891098, 0.6331049203872681, -0.00011528746108524501, 0.2912827730178833, 0.3169277310371399, 0.010802188888192177, -0.2478017508983612, -0.7171231508255005, 0.179884135723114, -0.0893038958311081, 0.03029792197048664, -0.0283101424574852, -0.11105406284332275, 0.09804676473140717, 0.2487853765487671, -0.018156658858060837, 0.3253210186958313, 0.41418009996414185, 0.19694803655147552, 0.5055868625640869, 0.4007531702518463, -0.135055810213089, -0.02725314348936081, -0.4293344020843506, -0.046491920948028564, 0.559736430644989, 0.09055206924676895, 0.03896529972553253, 0.203252375125885, 0.14626342058181763, 0.03675948083400726, -0.02220761403441429, 0.09197738766670227, 0.04398281127214432, 0.043174225836992264, -0.5436476469039917, 0.204819917678833, 0.19974759221076965, 0.019708886742591858, -0.025972992181777954, -0.3254322111606598, 0.16362980008125305, -0.15992258489131927, -0.240971177816391, 0.33131277561187744, 0.24712663888931274, -0.26488345861434937, 0.2114829123020172, -0.24471452832221985, -0.2864345610141754, -0.41513141989707947, 0.4957440495491028, -0.1166132241487503, 0.28306835889816284, -0.13306403160095215, 0.2165968418121338, 0.19483312964439392, -0.028410598635673523, -0.2247246950864792, 0.11186583340167999, 0.30318039655685425, 0.1750669628381729, 0.045766718685626984, 0.2069665491580963, -0.0033286139369010925, 0.04724441468715668, 0.13031676411628723, -0.0556800439953804, -0.07406242191791534, 0.11284318566322327, 0.12664516270160675, 0.1408410370349884, -0.03928117826581001, 0.16148188710212708, -0.2678852081298828, 0.07554001361131668, 0.4573187828063965, 0.48980581760406494, -0.047989584505558014, -0.044721558690071106, -0.2004099041223526, -0.45342758297920227, -0.3639000356197357, -0.0522327795624733, 0.3964824080467224, 0.11505195498466492, -0.10000965744256973, 0.16697123646736145, -0.17835772037506104, -0.056265030056238174, 0.0275583416223526, 0.5089328289031982, -0.37855619192123413, -0.1174980029463768, 0.2066659927368164, 0.2035694569349289, -0.1725941151380539, -0.047136928886175156, -0.15652412176132202, 0.0717654600739479, -0.1782703548669815, 0.18237926065921783, -0.0010482780635356903, -0.04366340860724449, 0.32345062494277954, -0.29066115617752075, 0.34377527236938477, -0.4356217682361603, -0.025491131469607353, -0.08718451857566833, 0.029529832303524017, 0.16969530284404755, 0.26886606216430664, 0.026232203468680382, 0.25486987829208374, -0.03937096893787384, -0.06771335005760193, -0.017322108149528503, -0.31189581751823425, -0.404356986284256, 0.18770161271095276, 0.15537090599536896, -0.01767931878566742, 0.03940289095044136, -0.0016799196600914001, -0.12490096688270569, -0.21627044677734375, 0.16090616583824158, -0.18561002612113953, 0.02564373053610325, -0.17946667969226837, -0.1012505516409874, 0.4366520047187805, 0.32487642765045166, 0.3367980122566223, -0.16672873497009277, 0.28364190459251404, 0.09607395529747009, 0.21906666457653046, 0.33714810013771057, -0.1930498480796814, 0.23715877532958984, -0.17813463509082794, -0.011384375393390656, 0.36695995926856995, -0.26496201753616333, -0.42482131719589233, 0.32827410101890564, -0.4896480441093445, -0.02469586953520775, -0.10938694328069687, -0.10622112452983856, 0.005613894201815128, 0.14193855226039886, 0.2943851351737976, 0.17079879343509674, -0.023715468123555183, -0.06476869434118271, -0.03316367045044899, -0.3323539197444916, 0.297077476978302, -0.11077752709388733, 0.2159585803747177, 0.11534354835748672, 0.14347870647907257, -0.15258418023586273, 0.2073066532611847, 0.032276395708322525, 0.032701000571250916, 0.32157838344573975, 0.08066713064908981, 0.19663624465465546, -0.10868441313505173, -0.08953307569026947, 0.07683078199625015, 0.04892755299806595, -0.12485285103321075, 0.3590244948863983, -0.29576796293258667, 0.07955656200647354, -0.2639232277870178, 0.14966155588626862, -0.2140205353498459, -0.10089340806007385, 0.06971314549446106, 0.006123170256614685, 0.3395231366157532, 0.2656373679637909, 0.06084669008851051, -0.17706844210624695, -0.2813941240310669, 0.20788350701332092, -0.25460487604141235, 0.2838097810745239, -0.41394925117492676, 0.13678275048732758, -0.054994236677885056, 0.15228545665740967, 0.2467973530292511, -0.2308075726032257, -0.08731517195701599, 0.27082279324531555, -0.37801888585090637, 0.25070422887802124, 0.24344488978385925, 0.34024539589881897, 0.21364758908748627, -0.6654504537582397, -0.05606585741043091, 0.19640885293483734, 0.040531035512685776, 0.2639279067516327, 0.461698442697525, 0.2858484983444214, 0.041715625673532486, 0.49536067247390747, 0.49744176864624023, 0.19477073848247528, 0.3821517527103424, 0.1174808144569397, -0.3545907735824585, 0.05101033300161362, 0.3267092704772949, -0.03204535320401192, -0.02157716453075409, -0.26068684458732605, -0.11118055880069733, -0.1915273666381836, 0.24156822264194489, -0.07521402835845947, 0.24667292833328247, 0.28222474455833435, -0.06401293724775314, -0.05623352527618408, -0.34785783290863037, 0.024686578661203384, 0.07531721144914627, 0.11115192621946335, 0.20154297351837158, 0.39787691831588745, -0.10610231012105942, -0.13854193687438965, 0.3545991778373718, 0.2399473786354065, 0.05344495177268982, 0.03874813765287399, -0.16072772443294525, -0.003766014240682125, -0.03315294161438942, -0.055858366191387177, -0.22897185385227203, 0.04831109941005707, -0.20539624989032745, 0.20387974381446838, -0.26273271441459656, -0.3990849256515503, -0.3664078712463379, -0.46662816405296326, -0.5187001824378967, -0.2288585752248764, -0.22775162756443024, -0.024977650493383408, -0.1403738409280777, 0.21791955828666687, -0.09525670111179352, 0.02452138066291809, -0.07091106474399567, -0.014374727383255959, 0.09626579284667969, -0.20777598023414612, -0.2750038504600525, 0.004785936325788498, 0.03313147649168968, -0.415254682302475, 0.21007058024406433, -0.35723137855529785, -0.21262623369693756, -0.2742786407470703, -0.29285410046577454, 0.12962102890014648, 0.10376986861228943, 0.3902912139892578, 0.25351911783218384, 0.5234677195549011, 0.15809805691242218, -0.07776328921318054, 0.6147897243499756, -0.05513410270214081, -0.0011081378906965256, -0.058524712920188904, -0.060842473059892654, -0.06763457506895065, 0.13681365549564362, -0.3228600025177002, -0.3177286982536316, -0.28454354405403137, 0.19701790809631348, -0.22298584878444672, 0.31508415937423706, 0.2369021475315094, 0.11699675023555756, 0.241258904337883, -0.09245409071445465, 0.39721742272377014, -0.11851076036691666, -0.3637586832046509, 0.21811819076538086, -0.22196295857429504, -0.5753454566001892, 0.19656559824943542, 0.17429406940937042, 0.25364047288894653, 0.019658422097563744, -0.37245047092437744, -0.139095276594162, -0.1651720404624939, 0.15733873844146729, 0.22560328245162964, 0.20188748836517334, 0.1807178556919098, -0.23214171826839447, -0.10402658581733704, -0.0118514783680439, -0.2092621922492981, 0.01378515362739563, -0.1657150685787201, 0.3661254048347473, 0.2193436622619629, 0.6551260352134705, -0.012598542496562004, 0.44792652130126953, 0.11871069669723511, 0.1391972154378891, 0.23678356409072876, -0.256656676530838, 0.1440768986940384, -0.14532172679901123, -0.3303590714931488, -0.03604438528418541, -0.2917895019054413, -0.03443317115306854, 0.21631978452205658, 0.11469661444425583, 0.30949151515960693, -0.644878625869751, -0.4344627559185028, -0.2944609820842743, -0.2665644884109497, -0.061387576162815094, 0.03544037416577339, 0.35761478543281555, 0.12609294056892395, -0.10767992585897446, -0.12240271270275116, 0.04867924749851227, 0.055839162319898605, 0.6811603903770447, -0.00009904801845550537, 0.27968093752861023, -0.015430409461259842, -0.4556894600391388, -0.3785041272640228, 0.2995544373989105, 0.13498550653457642, 0.44663098454475403, -0.19197094440460205, -0.09690676629543304, 0.052109476178884506, -0.11946180462837219, 0.485775887966156, 0.12886956334114075, 0.17867261171340942, -0.16102159023284912, -0.34384745359420776, -0.25963807106018066, 0.08242130279541016, -0.010425519198179245, 0.2410936951637268, 0.37003985047340393, 0.18583236634731293, -0.343414843082428, 0.009172216057777405, 0.38074207305908203, 0.09823327511548996, -0.2612835168838501, 0.1412665843963623, -0.397940069437027, -0.5475954413414001, -0.16639763116836548, -0.07508369535207748, 0.2317696064710617, 0.2714938521385193, 0.14357265830039978, -0.004963446408510208, 0.23128141462802887, -0.13146734237670898, -0.105608269572258, 0.03011758252978325, -0.09653699398040771, -0.09854713082313538, -0.1369020789861679, 0.2550187110900879, 0.7210813760757446, 0.11412595212459564, 0.4526037871837616, -0.0785844624042511, -0.44097042083740234, 0.025129884481430054, 0.2876989543437958, 0.22083428502082825, 0.3907644748687744, 0.010720953345298767, 0.3823073208332062, 0.614564061164856, 0.2896057963371277, -0.23577047884464264, 0.07083043456077576, 0.3327178657054901, 0.3136428892612457, -0.09611393511295319, -0.17376041412353516, 0.08243496716022491, -0.2778613567352295, -0.03029507026076317, 0.3283344507217407, 0.16183486580848694, -0.21562908589839935, -0.21901878714561462, -0.14397549629211426, 1.246402621269226, 0.11604771763086319, 0.1292584240436554, 0.23028811812400818, -0.36996257305145264, 0.16120387613773346, 0.16072583198547363, 0.2598157823085785, 0.016349542886018753, -0.025828372687101364, -0.0321752168238163, -0.1902187019586563, 0.14945727586746216, -0.37922292947769165, -0.07515328377485275, 0.192604199051857, 0.09374187886714935, -0.10395209491252899, 0.29875448346138, 0.05343906581401825, -0.09461360424757004, 0.06575502455234528, -0.40171876549720764, 0.05564993619918823, -0.12232090532779694, 0.6152133941650391, -0.19721242785453796, -0.14053194224834442, -0.15974345803260803, -0.4412943720817566, -0.05397212877869606, 0.2142120897769928, -0.6437281966209412, 0.1067335307598114, -0.04979180172085762, 0.038865357637405396, -0.09689351916313171, 0.0809483677148819, 0.04786025732755661, 0.06351444125175476, -0.25315961241722107, 0.06825515627861023, -0.2845925986766815, -0.2945760190486908, 0.10503453016281128, 0.010745733045041561, 0.08283660560846329, -0.3401281237602234, -0.3582896888256073, 0.1969185173511505, 0.02589733898639679, -0.08588199317455292, -0.11803752928972244, -0.12920700013637543, 0.09307914227247238, 0.23671112954616547, -0.03937362879514694, -0.2223089635372162, -0.17795023322105408, -0.3172846734523773, 0.07417532801628113, -0.16161315143108368, -0.27454257011413574, -0.21921297907829285, 0.21369077265262604, -0.3140419125556946, 0.01949644833803177, 0.42047396302223206, -0.124069444835186, 0.012413684278726578, 0.4668136239051819, 0.24890242516994476, -0.21090900897979736, -0.10285070538520813, 0.15902221202850342, -0.044787876307964325, -0.3809194564819336, 0.079127736389637, -0.006848855875432491, 0.23325364291667938, -0.4331885278224945, 0.240692600607872, 0.24299779534339905, 0.014644265174865723, -0.14071743190288544, -0.5294296741485596, -0.17006143927574158, 0.17934206128120422, 0.26334095001220703, -0.10066594183444977, -0.08212976157665253, 0.46367788314819336, 0.22677506506443024, -0.13317057490348816, -0.24663232266902924, -0.0021875672973692417, -0.20971481502056122, -0.06057582050561905, 0.24921280145645142, -0.2519166171550751, 0.30462634563446045, 0.23131941258907318, 0.021922988817095757, -0.1754486858844757, -0.19648554921150208, -0.1034536063671112, -0.17969365417957306, 0.12262256443500519, -0.020780637860298157, -0.44097715616226196, 0.0471436083316803, -0.11247075349092484, 0.18418633937835693, 0.07771343737840652, -0.00211455300450325, 0.11939377337694168, -0.023575201630592346, -0.17274123430252075, -0.046654555946588516, 0.10783630609512329, -0.2336437702178955, 0.012612828984856606, -0.11169405281543732, 0.5489305853843689, 0.07006021589040756, -0.12266309559345245, 0.08332914859056473, -0.16744934022426605, -0.3059040606021881, -0.19785648584365845, 0.08775141835212708, -0.06761284917593002, 0.3740313947200775, -0.08429904282093048, -0.00004395097494125366, 0.05210471898317337, 0.2794497013092041, 0.09199821949005127, -0.25747838616371155, 0.123166024684906, 0.3014466464519501, 0.09004683792591095, -0.19418726861476898, 0.061249665915966034, 0.03342185914516449, -0.46581822633743286, 0.01229623332619667, -0.004031755030155182, -0.1652030646800995, 0.29714515805244446, -0.12569688260555267, -0.049833185970783234, 0.23799756169319153, 0.023018818348646164, 0.10874567925930023, 0.0863666832447052, 0.1005701869726181, 0.30661287903785706, -0.052020393311977386, 0.01874510757625103, 0.14761456847190857, -0.04342247545719147, -0.304855078458786, 0.2642843425273895, -0.22686928510665894, 0.2546721398830414, 0.06393897533416748, -0.08748389035463333, -0.10593459010124207, -0.27085527777671814, -0.1908985674381256, -0.04718656837940216, -0.44057607650756836, 0.13023243844509125, -0.2508954107761383, 0.15763363242149353, -0.25155502557754517, 0.31942179799079895, 0.06324449926614761, -0.47314560413360596, -0.3515935242176056, -0.30888745188713074, -0.14021751284599304, -0.1646268218755722, 0.2591007351875305, -0.14589717984199524, -0.05484414100646973, 0.11388102173805237, -0.06101319193840027, -0.2442435771226883, -0.25453588366508484, 0.02444358542561531, 0.12870261073112488, -0.1472395658493042, 0.3649049997329712, 0.30465808510780334, -0.042663998901844025, -0.033060263842344284, 0.2746037542819977, 0.4882742464542389, 0.1808522790670395, -0.06777326762676239, 0.20668305456638336, -0.005811089649796486, -0.10814086347818375, -0.12838435173034668, 0.1322128027677536, 0.3104678988456726, 0.02084938809275627, 0.291586697101593, 0.09954740107059479, -0.16950257122516632, 0.32129034399986267, -0.01953478530049324, 0.26705408096313477, -0.091450035572052, 0.417822927236557, -0.37346142530441284, 0.006406016647815704, -0.435758113861084, 0.141154944896698, -0.6245630979537964, 0.39436477422714233, 0.2920106053352356, -0.3064233362674713, 0.09809763729572296, -0.22706858813762665, 0.06546439230442047, 0.00808190181851387, 0.8275685906410217, 0.385852575302124, 0.4154247045516968, -0.24362587928771973, -0.1254248321056366, -0.30742186307907104, 0.22632989287376404, -0.09642180800437927, -0.09389396756887436, -0.05416250228881836, -0.06276202946901321, -0.2619590163230896, 0.16831713914871216, 0.17942212522029877, -0.0987338274717331, -0.15303009748458862, 0.14714115858078003, 0.04521417245268822, -0.17982791364192963, -0.018654100596904755, 0.44543346762657166, 0.09348117560148239, -0.14753088355064392, 0.11709816753864288, -0.16361217200756073, -0.03712984174489975, 0.10722891986370087, 0.31236037611961365, -0.18964527547359467, -0.27280184626579285, 0.20370236039161682, 0.3042409420013428, 0.4121541380882263, -0.07728614658117294, -0.09193126857280731, -0.16315609216690063, -0.224060520529747, -0.07445798814296722, 0.3020274043083191, 0.10275991261005402, -0.026727914810180664, 0.08763370662927628, -0.6521430611610413, -0.45624101161956787, -0.0016588475555181503, 0.028390079736709595, -0.18954376876354218, 0.17675796151161194, -0.10180924087762833, 0.13175198435783386, -0.10878206044435501, 0.211121067404747, 0.23830744624137878, -0.02569729834794998, 0.013068875297904015, -0.18339994549751282, -0.2883712947368622, 0.5281042456626892, -0.22526437044143677, -0.18078656494617462, -0.27503207325935364, 0.2814258337020874, -0.11329691857099533, 0.13853399455547333, -0.3915938138961792, 0.15353474020957947, 0.29327115416526794, 0.3144240379333496, -0.309984415769577, 0.2681756317615509, -0.2976757884025574, 0.02993110939860344, 0.09455330669879913, 0.2430008351802826, -0.1285996437072754, -0.3379633128643036, 0.016127850860357285, -0.09859096258878708 ]
https://github.com/huggingface/datasets/issues/3210
ConnectionError: Couldn't reach https://raw.githubusercontent.com/huggingface/datasets/1.15.1/datasets/wmt16/wmt16.py
You don't need authentication to access those github hosted files Please check that you can access this URL from your browser and also from your terminal
when I use python examples/pytorch/translation/run_translation.py --model_name_or_path examples/pytorch/translation/opus-mt-en-ro --do_train --do_eval --source_lang en --target_lang ro --dataset_name wmt16 --dataset_config_name ro-en --output_dir /tmp/tst-translation --per_device_train_batch_size=4 --per_device_eval_batch_size=4 --overwrite_output_dir --predict_with_generate to finetune translation model on huggingface, I get the issue"ConnectionError: Couldn't reach https://raw.githubusercontent.com/huggingface/datasets/1.15.1/datasets/wmt16/wmt16.py".But I can open the https://raw.githubusercontent.com/huggingface/datasets/1.15.1/datasets/wmt16/wmt16.py by using website. What should I do to solve the issue?
26
ConnectionError: Couldn't reach https://raw.githubusercontent.com/huggingface/datasets/1.15.1/datasets/wmt16/wmt16.py when I use python examples/pytorch/translation/run_translation.py --model_name_or_path examples/pytorch/translation/opus-mt-en-ro --do_train --do_eval --source_lang en --target_lang ro --dataset_name wmt16 --dataset_config_name ro-en --output_dir /tmp/tst-translation --per_device_train_batch_size=4 --per_device_eval_batch_size=4 --overwrite_output_dir --predict_with_generate to finetune translation model on huggingface, I get the issue"ConnectionError: Couldn't reach https://raw.githubusercontent.com/huggingface/datasets/1.15.1/datasets/wmt16/wmt16.py".But I can open the https://raw.githubusercontent.com/huggingface/datasets/1.15.1/datasets/wmt16/wmt16.py by using website. What should I do to solve the issue? You don't need authentication to access those github hosted files Please check that you can access this URL from your browser and also from your terminal
[ -0.15095360577106476, -0.2567591667175293, -0.015501937828958035, 0.24493098258972168, 0.2433854192495346, -0.007856622338294983, 0.09315813332796097, 0.09660317003726959, -0.07950952649116516, 0.4065464735031128, -0.22413009405136108, -0.23484420776367188, 0.296499639749527, 0.07993477582931519, 0.1829090714454651, -0.1545807421207428, -0.06579416245222092, -0.2579962909221649, -0.1552276611328125, 0.04135030508041382, -0.10733701288700104, 0.07811044901609421, -0.1754530966281891, 0.4801568388938904, -0.10207309573888779, -0.03867892920970917, 0.07578056305646896, 0.22120580077171326, -0.08049407601356506, -0.15031751990318298, 0.22743834555149078, -0.040436793118715286, 0.05382108688354492, 0.6712309718132019, -0.00011678828741423786, 0.3110308051109314, 0.2887933850288391, -0.004087906330823898, -0.25008949637413025, -0.7219982147216797, 0.20488786697387695, -0.1496477723121643, -0.06555937230587006, -0.0031142383813858032, -0.25264492630958557, 0.008717642165720463, 0.27204272150993347, 0.03258904069662094, 0.4103088974952698, 0.3810679316520691, 0.15322214365005493, 0.4907592833042145, 0.4328309893608093, -0.15384960174560547, 0.04312542453408241, -0.2989081144332886, 0.04498525708913803, 0.6197916865348816, 0.2168724238872528, 0.039865367114543915, 0.0870141088962555, 0.09378637373447418, 0.07586915791034698, -0.015161342918872833, 0.10101477801799774, -0.03927069529891014, -0.05060860514640808, -0.5751079320907593, 0.13436287641525269, 0.08813223987817764, -0.13228648900985718, 0.043022267520427704, -0.282438725233078, 0.025217220187187195, -0.1981961727142334, -0.1705620437860489, 0.39046722650527954, 0.4674406349658966, -0.3060927987098694, 0.20908528566360474, -0.4006352424621582, -0.2584940791130066, -0.44340670108795166, 0.4437509775161743, 0.07246360182762146, 0.22543096542358398, -0.15808452665805817, 0.23603194952011108, 0.05698830261826515, -0.1667415201663971, -0.37359803915023804, 0.0291127972304821, 0.18403185904026031, 0.19953152537345886, 0.15059024095535278, 0.18325471878051758, -0.07697326689958572, -0.07511892169713974, 0.15936926007270813, 0.0938965380191803, -0.23751230537891388, 0.05627105012536049, -0.05073212832212448, 0.10135973989963531, -0.06830674409866333, 0.1583532691001892, -0.12538498640060425, 0.17406371235847473, 0.5152616500854492, 0.5846591591835022, -0.1252695918083191, 0.12062285840511322, -0.3041921555995941, -0.4383406937122345, -0.42561256885528564, -0.106776662170887, 0.3761436939239502, 0.05721377953886986, 0.013288063928484917, 0.20258593559265137, -0.16541767120361328, -0.10403266549110413, -0.043250132352113724, 0.43470704555511475, -0.284894734621048, -0.3164159655570984, 0.19278289377689362, 0.28567183017730713, -0.10282432287931442, -0.18098019063472748, -0.0980985090136528, -0.004251785576343536, -0.002117317169904709, 0.14451785385608673, 0.02635222300887108, -0.2774706184864044, 0.4154531955718994, -0.12927724421024323, 0.38020557165145874, -0.47371289134025574, -0.011863715946674347, -0.026953116059303284, 0.05896346643567085, 0.1652248650789261, 0.34686562418937683, 0.041101641952991486, 0.15862059593200684, -0.2671114206314087, -0.029040101915597916, -0.05364299565553665, -0.3161175847053528, -0.42347434163093567, 0.0831751599907875, 0.1121801808476448, -0.019844964146614075, 0.14213262498378754, -0.10616890341043472, -0.1659049242734909, -0.18995225429534912, 0.15981565415859222, -0.22266826033592224, -0.04989287257194519, 0.09665168821811676, -0.07874315977096558, 0.42169123888015747, 0.19955134391784668, 0.5896772146224976, -0.09936653077602386, 0.43395331501960754, 0.1549154669046402, 0.22544565796852112, 0.3589087426662445, -0.29346373677253723, 0.1978481560945511, -0.25541743636131287, 0.0747850090265274, 0.22702528536319733, -0.490119993686676, -0.4238407611846924, 0.2611238658428192, -0.31906038522720337, -0.004873950034379959, -0.04755783826112747, -0.2100149244070053, 0.09691771119832993, -0.016167761757969856, 0.28462186455726624, 0.15885941684246063, 0.14478527009487152, -0.08419700711965561, -0.0883200466632843, -0.35994189977645874, 0.1821305900812149, -0.09042321145534515, 0.14677594602108002, 0.051039453595876694, 0.2549141049385071, -0.18280360102653503, 0.2434675395488739, -0.03538861498236656, 0.0385042205452919, 0.24453043937683105, -0.04573814198374748, 0.046751461923122406, -0.15500260889530182, 0.11568399518728256, 0.17145372927188873, 0.043939054012298584, -0.0122488122433424, 0.3452627658843994, -0.3026331067085266, 0.06103399395942688, -0.16000992059707642, 0.12151379138231277, -0.2935653030872345, -0.18459950387477875, 0.0711800754070282, 0.03826185315847397, 0.2955884337425232, 0.2374923676252365, 0.16268044710159302, -0.19683879613876343, -0.3393871486186981, 0.19019506871700287, -0.14692193269729614, 0.2603963315486908, -0.3194337487220764, 0.13024631142616272, 0.09008964896202087, 0.13592800498008728, 0.28191736340522766, -0.2827288806438446, -0.07083402574062347, 0.19685226678848267, -0.3384465277194977, 0.26233893632888794, 0.3759230971336365, 0.3197783827781677, 0.16480998694896698, -0.5091864466667175, -0.10294710844755173, 0.1433856338262558, -0.0348111130297184, 0.3124520182609558, 0.43396952748298645, 0.3601878583431244, 0.10138481855392456, 0.40835365653038025, 0.4650035500526428, 0.19888630509376526, 0.4267328679561615, 0.19581536948680878, -0.40732792019844055, 0.05214749276638031, 0.279914915561676, 0.04844583570957184, -0.007325345650315285, -0.3184625804424286, -0.19233456254005432, -0.11352833360433578, 0.2975914180278778, -0.1172291487455368, 0.13338503241539001, 0.2292707860469818, -0.06202127784490585, -0.017247777432203293, -0.23731794953346252, 0.14155110716819763, 0.022191710770130157, 0.048658113926649094, 0.17893537878990173, 0.3313022553920746, -0.11908598989248276, -0.19419491291046143, 0.38292554020881653, 0.187477707862854, -0.04063413664698601, -0.005999937653541565, -0.07380953431129456, -0.010323763824999332, 0.011136271059513092, -0.06023886799812317, -0.23213987052440643, 0.03277100995182991, -0.2287324070930481, 0.07439306378364563, -0.19014808535575867, -0.27419930696487427, -0.32499778270721436, -0.4724557399749756, -0.5843860507011414, -0.0630088746547699, -0.15776823461055756, 0.008021559566259384, -0.08889132738113403, 0.164274200797081, 0.2872464656829834, 0.06849780678749084, -0.13149330019950867, 0.012818614952266216, 0.1722908318042755, -0.17716605961322784, -0.25941699743270874, -0.048539429903030396, 0.251671701669693, -0.5049002766609192, 0.23568768799304962, -0.41380444169044495, -0.18260283768177032, -0.3557456433773041, -0.1781102567911148, 0.06357633322477341, -0.028713040053844452, 0.45133692026138306, 0.0762985572218895, 0.45993202924728394, 0.2691439986228943, -0.011051245033740997, 0.534302830696106, 0.08677805960178375, -0.010897167958319187, -0.1471392959356308, -0.02568889781832695, -0.19159018993377686, 0.08357957005500793, -0.16467434167861938, -0.24843241274356842, -0.30052217841148376, 0.24324733018875122, 0.008947983384132385, 0.37993955612182617, 0.2487594336271286, 0.07681887596845627, 0.3025743365287781, -0.026497764512896538, 0.3924579620361328, -0.09809423238039017, -0.5529928803443909, 0.28896957635879517, -0.3141342103481293, -0.5499427318572998, 0.27812737226486206, 0.3552091717720032, 0.38857272267341614, -0.042526908218860626, -0.4367414116859436, -0.09942929446697235, -0.11667758226394653, 0.28138989210128784, 0.186679407954216, 0.17548559606075287, 0.07692676037549973, -0.17072263360023499, -0.017565228044986725, 0.052633658051490784, -0.2943708300590515, 0.1367955207824707, -0.08698532730340958, 0.15076789259910583, 0.2118656039237976, 0.44365939497947693, -0.03733880817890167, 0.6914637684822083, 0.28787410259246826, 0.1941109597682953, 0.0688825473189354, -0.19066515564918518, 0.1609857976436615, -0.06920162588357925, -0.22830723226070404, -0.02312949113547802, -0.13669344782829285, -0.0045295096933841705, 0.3303226828575134, 0.15276333689689636, 0.375276654958725, -0.5364719033241272, -0.5973563194274902, -0.3402135968208313, -0.2647997736930847, -0.22725865244865417, -0.05912153422832489, 0.31511667370796204, 0.13326053321361542, -0.032134607434272766, -0.15480774641036987, 0.02588445320725441, 0.0010601691901683807, 0.7050624489784241, 0.10118851810693741, 0.3243122696876526, 0.01097022369503975, -0.47735658288002014, -0.2862815856933594, 0.33327716588974, 0.040147654712200165, 0.3414643406867981, -0.17230115830898285, -0.08182240277528763, 0.03800833225250244, -0.15653039515018463, 0.19101136922836304, 0.1399230659008026, 0.368282675743103, -0.2106558233499527, -0.36988598108291626, -0.1796257495880127, -0.07308675348758698, 0.03239264711737633, 0.16092991828918457, 0.33426305651664734, 0.460216760635376, -0.384618878364563, -0.11981417238712311, 0.2431766241788864, 0.010307715274393559, -0.1379789263010025, 0.32944807410240173, -0.24020537734031677, -0.5448012351989746, -0.3322792947292328, -0.12169273942708969, 0.2834298312664032, 0.22323578596115112, 0.0484139546751976, 0.030492659658193588, 0.2388424277305603, -0.0017050858587026596, -0.018853716552257538, 0.08100764453411102, -0.04828764870762825, -0.021984437480568886, -0.05187784135341644, 0.2622707188129425, 0.6340042352676392, 0.16221563518047333, 0.5519956350326538, 0.14308644831180573, -0.40775740146636963, -0.014827698469161987, 0.12646475434303284, 0.20107990503311157, 0.450674831867218, 0.005857521668076515, 0.33546343445777893, 0.46577417850494385, 0.29902100563049316, -0.24492147564888, 0.0842195600271225, 0.27403542399406433, 0.34104737639427185, -0.2562117278575897, -0.16334034502506256, -0.09944365173578262, -0.4222574532032013, -0.07819543778896332, 0.34776729345321655, 0.13931789994239807, -0.2674614489078522, -0.09761384129524231, -0.14051786065101624, 1.1805435419082642, 0.16278858482837677, 0.2277141958475113, 0.17529043555259705, -0.5570904612541199, 0.05140991881489754, -0.015888309106230736, 0.17613300681114197, 0.0006241835653781891, 0.029551517218351364, -0.02425708808004856, -0.26286616921424866, 0.18646827340126038, -0.36504441499710083, -0.03607681393623352, 0.057571835815906525, 0.14805227518081665, -0.029290352016687393, 0.19209074974060059, 0.14448700845241547, 0.008511239662766457, 0.14784206449985504, -0.3957350254058838, 0.018229883164167404, -0.09704111516475677, 0.5611687898635864, -0.1387965977191925, -0.29670053720474243, -0.2908691167831421, -0.37408989667892456, -0.14350174367427826, 0.17931249737739563, -0.5309707522392273, 0.13312123715877533, 0.04786309972405434, 0.022719942033290863, 0.01062072440981865, 0.1590079367160797, 0.1779979169368744, 0.14084574580192566, -0.31405195593833923, 0.03539654240012169, -0.25581932067871094, -0.2966897487640381, 0.13241063058376312, 0.10951687395572662, 0.055006243288517, -0.42800986766815186, -0.1959550827741623, 0.20026275515556335, -0.02988303452730179, -0.14751021564006805, -0.16617903113365173, -0.0810164213180542, -0.019577033817768097, 0.272879421710968, 0.023644225671887398, -0.1619851291179657, -0.2222372442483902, -0.30018350481987, 0.03865756466984749, -0.18922288715839386, -0.2053755670785904, -0.3916243612766266, 0.2103344351053238, -0.3619328439235687, 0.03111276403069496, 0.2218291163444519, -0.0627865269780159, 0.17506544291973114, 0.5008760690689087, 0.162649467587471, -0.15292418003082275, -0.11205269396305084, 0.14625796675682068, -0.05266163498163223, -0.502236008644104, 0.08050880581140518, -0.051160093396902084, 0.19329698383808136, -0.46466052532196045, 0.32397156953811646, 0.3025028109550476, -0.0977577194571495, 0.0005176588892936707, -0.4952734708786011, -0.17047061026096344, 0.0500003956258297, 0.07820416986942291, -0.1592881828546524, 0.004868201911449432, 0.46205759048461914, 0.12586051225662231, -0.15379498898983002, -0.20709753036499023, 0.104651540517807, -0.28619176149368286, -0.07990267127752304, 0.21099667251110077, -0.18200784921646118, 0.3642680048942566, 0.20969146490097046, -0.04436895251274109, -0.32438308000564575, -0.26060688495635986, -0.07342635095119476, -0.1479145884513855, 0.1221868246793747, 0.013600734993815422, -0.4653044044971466, 0.10360752046108246, -0.10963309556245804, 0.14403145015239716, 0.10775015503168106, 0.015861615538597107, 0.05541238933801651, 0.00856960192322731, -0.07721136510372162, -0.05956769362092018, 0.11577871441841125, -0.22793935239315033, -0.002586275339126587, -0.0945342481136322, 0.6049598455429077, 0.0017081391997635365, -0.19582517445087433, 0.0000741367693990469, -0.22175750136375427, -0.37515342235565186, -0.10218983143568039, 0.014466963708400726, 0.1211918368935585, 0.48970139026641846, -0.06268399953842163, 0.07918767631053925, 0.11056698113679886, 0.1365843415260315, -0.044635310769081116, -0.373248815536499, 0.15703532099723816, 0.25979068875312805, 0.049275822937488556, -0.16887377202510834, 0.055077631026506424, 0.009922798722982407, -0.4383813738822937, 0.015334796160459518, 0.04677024483680725, -0.003385532647371292, 0.21629229187965393, -0.21803192794322968, -0.04534535855054855, 0.2731744647026062, 0.0735810250043869, 0.11306928098201752, 0.11095385253429413, 0.1313883662223816, 0.24729681015014648, -0.13151238858699799, 0.020743662491440773, 0.07535400241613388, -0.16600313782691956, -0.3680172860622406, 0.2226707935333252, 0.06638189405202866, 0.16364508867263794, 0.1836598813533783, -0.1272658258676529, -0.03547567501664162, -0.2720172107219696, -0.06236746907234192, -0.14405789971351624, -0.36560535430908203, 0.18335801362991333, -0.22185282409191132, 0.02887948788702488, -0.16981297731399536, 0.28202304244041443, 0.1166340708732605, -0.31498971581459045, -0.2579048275947571, -0.30668988823890686, -0.14671477675437927, -0.13535936176776886, 0.14925192296504974, -0.1630362868309021, -0.14723694324493408, 0.09858724474906921, -0.047150567173957825, -0.16398479044437408, -0.1635664403438568, 0.041538581252098083, 0.12830562889575958, -0.14825238287448883, 0.41817453503608704, 0.23852966725826263, -0.12475244700908661, 0.10174362361431122, 0.3313308656215668, 0.6862640976905823, 0.11263619363307953, 0.005759354680776596, 0.22738219797611237, -0.0017091203480958939, -0.0491551011800766, -0.12115652859210968, 0.2075951248407364, 0.30601125955581665, 0.10993058979511261, 0.3574773073196411, 0.07282473891973495, -0.1236596405506134, 0.20461994409561157, -0.034981619566679, -0.02495119348168373, -0.07772162556648254, 0.441641628742218, -0.4838671386241913, -0.1892164647579193, -0.3396386206150055, 0.005277477204799652, -0.4486307203769684, 0.25343379378318787, 0.2820641100406647, -0.11800332367420197, 0.20349061489105225, -0.2810214161872864, 0.052319660782814026, 0.014046773314476013, 0.8000411987304688, 0.34972167015075684, 0.27558162808418274, -0.19952408969402313, -0.2701629400253296, -0.2628515362739563, 0.31169477105140686, -0.045750316232442856, -0.11378414183855057, -0.08159894496202469, -0.10997740179300308, -0.10179529339075089, 0.03890012949705124, 0.2649940252304077, -0.2532476782798767, -0.18532612919807434, 0.07662012428045273, 0.04490328207612038, -0.074620321393013, 0.0339122898876667, 0.3860996663570404, 0.051702141761779785, -0.10292147099971771, 0.24300061166286469, -0.1553107351064682, -0.03777875751256943, 0.2792060375213623, 0.4611690044403076, -0.03396480903029442, -0.42719924449920654, 0.21831803023815155, 0.21897420287132263, 0.23744924366474152, -0.06026509404182434, -0.1395445019006729, -0.14850373566150665, -0.10026920586824417, -0.05824378505349159, 0.36157119274139404, 0.0036137811839580536, 0.10951904952526093, 0.040372394025325775, -0.5267289876937866, -0.43423300981521606, -0.1925956904888153, -0.03590773046016693, -0.08685380220413208, 0.2082066833972931, -0.08497928082942963, 0.05907859653234482, -0.10625163465738297, 0.23880170285701752, 0.19074061512947083, -0.03322222828865051, -0.08159428089857101, -0.3264250159263611, -0.16927018761634827, 0.48530343174934387, -0.35992786288261414, -0.21404115855693817, -0.12803442776203156, 0.318417489528656, -0.018218114972114563, 0.06826721131801605, -0.41897642612457275, 0.12504896521568298, 0.32228413224220276, 0.27037736773490906, -0.3872394859790802, 0.21150963008403778, -0.3404010534286499, 0.07527075707912445, 0.1649160236120224, 0.1860320270061493, -0.10688985139131546, -0.4850721061229706, 0.037638869136571884, -0.05185960233211517 ]
https://github.com/huggingface/datasets/issues/3204
FileNotFoundError for TupleIE dataste
@mariosasko @lhoestq Could you give me an update on how to load the dataset after the fix? Thanks.
Hi, `dataset = datasets.load_dataset('tuple_ie', 'all')` returns a FileNotFound error. Is the data not available? Many thanks.
18
FileNotFoundError for TupleIE dataste Hi, `dataset = datasets.load_dataset('tuple_ie', 'all')` returns a FileNotFound error. Is the data not available? Many thanks. @mariosasko @lhoestq Could you give me an update on how to load the dataset after the fix? Thanks.
[ -0.11963696777820587, 0.04515990614891052, -0.0531531497836113, 0.4988977313041687, 0.20582225918769836, 0.15606757998466492, 0.28790998458862305, 0.26254093647003174, 0.2662697732448578, 0.006305284798145294, 0.05609333515167236, -0.013880874961614609, -0.1284628063440323, 0.260233610868454, -0.06558320671319962, -0.1212606132030487, -0.16518265008926392, 0.22497326135635376, 0.04277811944484711, -0.018183551728725433, -0.24781909584999084, 0.1665061116218567, -0.4162748456001282, 0.013876862823963165, -0.2687969207763672, 0.16306740045547485, -0.13311579823493958, 0.4549993574619293, -0.16062581539154053, -0.13819420337677002, 0.43593260645866394, -0.0432400144636631, 0.12135961651802063, 0.159835547208786, -0.00010553888569120318, 0.04293510317802429, 0.2902177572250366, -0.2782856225967407, -0.2363063544034958, -0.3211076855659485, -0.4993301331996918, -0.0028145089745521545, -0.03349095582962036, -0.32175907492637634, -0.21596142649650574, 0.1052289605140686, -0.0783582329750061, -0.21421071887016296, 0.47452008724212646, 0.3432847261428833, 0.227439746260643, 0.06816938519477844, 0.22387714684009552, -0.14019598066806793, 0.325395405292511, 0.26321321725845337, -0.04269259423017502, -0.06868235766887665, 0.2652721405029297, -0.31490907073020935, 0.23609593510627747, 0.18967074155807495, -0.0427052266895771, -0.051356103271245956, -0.28098639845848083, -0.018531668931245804, 0.058549173176288605, -0.25009071826934814, 0.016601964831352234, 0.22420823574066162, 0.7670738697052002, 0.10497400164604187, -0.41006603837013245, 0.19570401310920715, 0.027835968881845474, -0.24117013812065125, 0.1856890469789505, -0.011740216985344887, 0.03680247813463211, 0.1393929123878479, 0.2362639456987381, -0.24935998022556305, -0.3036240041255951, 0.3177768886089325, -0.27817922830581665, 0.06079249456524849, -0.1479186862707138, -0.03778801113367081, 0.0007714070379734039, -0.2322719842195511, -0.28514495491981506, 0.23757579922676086, -0.09837381541728973, 0.14641746878623962, -0.1673811674118042, -0.2420622557401657, -0.021659985184669495, 0.005833052098751068, 0.15286889672279358, 0.10669833421707153, 0.0557863786816597, 0.08709710836410522, -0.27160704135894775, 0.05421759933233261, 0.3948204517364502, 0.04792643338441849, 0.04155658185482025, 0.05641382932662964, 0.3108265995979309, 0.14174875617027283, -0.2081705629825592, -0.05634957551956177, -0.034201595932245255, -0.19041700661182404, -0.13058669865131378, 0.15425679087638855, 0.7042603492736816, -0.4075494408607483, -0.46452680230140686, -0.05429507791996002, 0.02255512773990631, -0.2060074508190155, 0.13836166262626648, 0.34624946117401123, -0.21720020473003387, 0.16636106371879578, 0.12629398703575134, 0.17656998336315155, -0.19189845025539398, -0.4662944972515106, -0.22459065914154053, 0.05293767899274826, -0.17362113296985626, 0.008034098893404007, 0.2651277184486389, -0.06209515407681465, 0.2930436134338379, -0.07593171298503876, 0.04833836853504181, -0.05548377335071564, 0.14420470595359802, -0.21440574526786804, 0.0028125420212745667, 0.22803011536598206, 0.014387983828783035, -0.01780673675239086, 0.25823718309402466, -0.426612913608551, 0.1093885526061058, 0.2520405650138855, -0.7108906507492065, -0.3892115354537964, -0.3980081379413605, 0.22203679382801056, -0.26701390743255615, -0.08599443733692169, -0.1949271857738495, -0.025868985801935196, -0.06980768591165543, -0.380962997674942, -0.2154075801372528, -0.14658260345458984, 0.13125479221343994, -0.39057254791259766, 0.23495256900787354, 0.7793864607810974, -0.6047230362892151, 0.06305347383022308, -0.17078165709972382, -0.32911571860313416, 0.298071026802063, 0.2991489768028259, -0.08347957581281662, 0.11667628586292267, -0.37017685174942017, 0.02615361660718918, 0.5290740728378296, -0.05479022487998009, -0.42058953642845154, 0.017224861308932304, 0.10355332493782043, 0.1493460237979889, -0.022777467966079712, -0.000983698759227991, -0.02312484011054039, -0.12451465427875519, 0.31761282682418823, -0.06844636797904968, -0.1200856864452362, -0.04038877785205841, -0.27505016326904297, 0.18243755400180817, 0.16933396458625793, 0.4288364052772522, 0.14720949530601501, 0.14630413055419922, 0.08732243627309799, -0.003717196173965931, 0.31483396887779236, -0.09744499623775482, -0.0003575209993869066, 0.2578187584877014, 0.39972877502441406, 0.3802444338798523, 0.058782197535037994, 0.1154489740729332, -0.40680035948753357, 0.128743976354599, 0.04394712299108505, -0.1356126219034195, -0.2752279043197632, -0.09167984127998352, -0.10090890526771545, -0.1266298145055771, -0.3329415023326874, -0.25220346450805664, 0.1475643813610077, 0.07588271796703339, 0.022428948432207108, 0.014635737985372543, -0.35610127449035645, 0.03255002945661545, -0.07907892018556595, -0.02928452007472515, -0.23116423189640045, 0.47236064076423645, 0.03162397816777229, -0.21246393024921417, -0.013916531577706337, 0.11600585281848907, -0.07463280111551285, -0.3244270980358124, -0.19598829746246338, 0.2334078848361969, 0.39442721009254456, -0.2003939002752304, 0.22821521759033203, -0.1495191603899002, 0.28541672229766846, -0.21919552981853485, 0.14787109196186066, 0.14089307188987732, 0.08247330039739609, -0.03998143970966339, -0.1374145746231079, 0.46976035833358765, -0.21726079285144806, -0.19425687193870544, 0.13526301085948944, 0.044293805956840515, 0.2962688207626343, -0.10991121083498001, -0.15111097693443298, -0.15237629413604736, 0.2788490653038025, 0.1356872320175171, 0.06078508123755455, -0.123883917927742, -0.4841678738594055, -0.04473526030778885, 0.38594502210617065, 0.16316461563110352, 0.07162978500127792, 0.03632707521319389, -0.18876349925994873, 0.1289861500263214, -0.1986594796180725, 0.06252750754356384, 0.6189298629760742, 0.16927246749401093, -0.1732686460018158, -0.11337598413228989, 0.28792592883110046, -0.09834584593772888, 0.01623932272195816, -0.09764030575752258, 0.21708141267299652, 0.2551523447036743, -0.07227939367294312, -0.011909390799701214, -0.3030000627040863, 0.022739969193935394, -0.1139478012919426, 0.3090088367462158, -0.298260897397995, -0.10294202715158463, -0.2547319233417511, -0.46126577258110046, 0.2989514470100403, -0.1692090630531311, -0.08042135834693909, -0.10600422322750092, 0.1452733427286148, 0.06245795264840126, -0.11091159284114838, -0.02184702269732952, -0.11679750680923462, 0.12714925408363342, 0.10754631459712982, -0.202376589179039, -0.21824130415916443, -0.27212539315223694, -0.09502851217985153, 0.21902890503406525, 0.3342820107936859, -0.40880513191223145, 0.22765712440013885, -0.1557149738073349, -0.004111204296350479, -0.1746978908777237, -0.3698336184024811, -0.10493117570877075, -0.018702372908592224, 0.3566996455192566, 0.019447192549705505, 0.394550085067749, -0.14355778694152832, 0.11822086572647095, 0.3385028839111328, -0.06181550770998001, -0.1711033135652542, 0.22978034615516663, 0.13945116102695465, 0.04518268629908562, -0.01369016245007515, -0.6663832068443298, -0.4856438636779785, -0.21012111008167267, 0.18151280283927917, 0.286695271730423, 0.014897260814905167, -0.04109620675444603, 0.023271724581718445, -0.13455934822559357, 0.12664443254470825, -0.08517083525657654, -0.30776435136795044, -0.3702036440372467, 0.33443453907966614, -0.3319248557090759, -0.4869292080402374, 0.30072224140167236, 0.01407882571220398, 0.17286337912082672, 0.1197769045829773, -0.41434168815612793, -0.12738671898841858, 0.2798112630844116, 0.11250869929790497, -0.19557209312915802, -0.28706926107406616, 0.39703845977783203, -0.03457794338464737, -0.09068631380796432, -0.11339004337787628, 0.06331796944141388, 0.019344106316566467, 0.25342801213264465, 0.38323917984962463, -0.19794875383377075, 0.24046432971954346, -0.11176159977912903, 0.3203628361225128, 0.16169480979442596, 0.14153772592544556, 0.5082681179046631, -0.14825236797332764, 0.14208626747131348, -0.10626087337732315, -0.24173004925251007, -0.19659003615379333, 0.05922175943851471, -0.12253662198781967, 0.13077272474765778, 0.04898202046751976, -0.038564734160900116, -0.48688584566116333, 0.22374942898750305, -0.5666689276695251, -0.1844189614057541, 0.037067510187625885, 0.10288122296333313, 0.14087840914726257, 0.14038829505443573, -0.12555405497550964, 0.011602843180298805, -0.1370612382888794, -0.0026513561606407166, 0.502946138381958, 0.49315619468688965, -0.14857888221740723, 0.010238587856292725, 0.061171311885118484, -0.09726706892251968, 0.3448507785797119, -0.20159508287906647, 0.05093209445476532, -0.17075374722480774, -0.22285646200180054, -0.04491989314556122, -0.05116145312786102, 0.5238876938819885, -0.15426696836948395, -0.20300845801830292, 0.15325447916984558, -0.10653583705425262, 0.05409378558397293, -0.10366122424602509, -0.26851686835289, 0.4698164165019989, 0.01062469556927681, 0.6693376302719116, -0.1256621927022934, -0.16210994124412537, 0.3284802734851837, 0.17145363986492157, -0.42904430627822876, -0.031169462949037552, -0.14532729983329773, -0.240375816822052, -0.0820574015378952, -0.028662413358688354, -0.31390780210494995, 0.07474695146083832, 0.0311379823833704, -0.012698745355010033, -0.16439831256866455, -0.09399998933076859, -0.05426952242851257, 0.09472522139549255, 0.49757084250450134, -0.050822190940380096, 0.16711489856243134, -0.09662139415740967, 0.17598113417625427, 0.4920893609523773, 0.6198368072509766, 0.13043834269046783, -0.17867594957351685, -0.0755046084523201, -0.1977023035287857, 0.21500714123249054, 0.03956650197505951, -0.1979956328868866, -0.011716239154338837, -0.2893722355365753, -0.006174199283123016, -0.3237001597881317, -0.10792822390794754, 0.44093990325927734, -0.0647212564945221, -0.39971306920051575, -0.3716854453086853, 0.17254644632339478, 0.06247159466147423, 0.13408376276493073, 0.2391405552625656, 0.1551440954208374, -0.06225019693374634, 0.20914214849472046, -0.04375559836626053, 0.7408248782157898, -0.14780564606189728, 0.029924500733613968, 0.14797434210777283, 0.525408923625946, 0.44837096333503723, -0.0751890242099762, 0.10788756608963013, -0.3677244186401367, -0.4741966128349304, -0.009441196918487549, -0.10075537860393524, 0.16117852926254272, 0.11133024096488953, -0.2039480358362198, 0.35901302099227905, 0.1689239889383316, -0.15545712411403656, -0.0064427778124809265, -0.07359082251787186, 0.24468994140625, 0.23368661105632782, -0.18100662529468536, 0.12673088908195496, -0.10272422432899475, 0.43814754486083984, -0.2772616744041443, -0.21978318691253662, 0.005959074944257736, -0.20424190163612366, -0.16793832182884216, 0.16315478086471558, -0.42418110370635986, 0.23995620012283325, -0.21087905764579773, -0.24138975143432617, -0.09448856115341187, 0.2686500549316406, -0.01716645061969757, 0.06637690961360931, -0.16066662967205048, 0.05762096866965294, -0.15772977471351624, -0.22663456201553345, -0.24100230634212494, 0.3456355929374695, 0.40307360887527466, -0.06790769100189209, -0.28934919834136963, 0.17863255739212036, -0.08754682540893555, -0.22114752233028412, -0.13857510685920715, -0.17011800408363342, -0.050100140273571014, -0.2257344126701355, -0.35348132252693176, 0.04164467751979828, -0.13540983200073242, -0.14980027079582214, 0.17967067658901215, 0.38969284296035767, -0.06907851248979568, 0.2572875916957855, 0.08393675088882446, -0.22383920848369598, 0.03964202105998993, 0.3588840961456299, 0.06765872985124588, -0.009937413036823273, 0.5152598023414612, 0.17824862897396088, 0.1317920684814453, -0.36837419867515564, 0.007002770900726318, -0.17820052802562714, -0.25712186098098755, 0.12885615229606628, 0.13463790714740753, 0.6376752853393555, 0.1687568724155426, -0.0013417862355709076, 0.21678422391414642, -0.03796891123056412, 0.12595050036907196, -0.5754671692848206, -0.34661439061164856, 0.31957852840423584, 0.17617689073085785, 0.19248054921627045, 0.041118308901786804, -0.2477542906999588, 0.18875131011009216, -0.03189731389284134, -0.3654000163078308, 0.1915324330329895, -0.18203218281269073, 0.012776859104633331, 0.39226579666137695, 0.1608406901359558, 0.4039362072944641, 0.008106159046292305, 0.2745078504085541, -0.11231890320777893, 0.0506293959915638, -0.2964814007282257, 0.2332369089126587, 0.1554519236087799, 0.056543342769145966, -0.05246511101722717, -0.12970831990242004, -0.40301942825317383, 0.00567118264734745, 0.11682728677988052, -0.013704592362046242, -0.04917830601334572, -0.01939772069454193, 0.27727946639060974, 0.013479620218276978, 0.013177212327718735, -0.0689820945262909, 0.3920852541923523, 0.14404204487800598, 0.34445396065711975, -0.15223166346549988, 0.17549356818199158, 0.14591862261295319, -0.13070780038833618, -0.23350611329078674, -0.03559371083974838, -0.2186139076948166, 0.14709267020225525, 0.24356403946876526, -0.3750373125076294, 0.05058540776371956, -0.1510995626449585, 0.1496032029390335, 0.5153204202651978, -0.1027677059173584, 0.4922031760215759, 0.12281177192926407, 0.2653183341026306, -0.42834794521331787, 0.19682998955249786, 0.14111210405826569, 0.08554109930992126, 0.004832562059164047, 0.0008741021156311035, -0.10867805033922195, 0.16564102470874786, 0.21014457941055298, 0.15424451231956482, 0.0638713464140892, -0.2576257586479187, 0.2542876601219177, 0.4018040895462036, -0.16856615245342255, -0.010574426501989365, -0.1820441484451294, 0.1662243753671646, 0.008239127695560455, 0.306610107421875, -0.07512170821428299, 0.2631947696208954, -0.19147989153862, 0.013985872268676758, -0.21661165356636047, -0.448307603597641, -0.012155544012784958, 0.25323745608329773, -0.09540560841560364, 0.13532912731170654, 0.054553814232349396, 0.20471937954425812, -0.1490396410226822, -0.07462269067764282, -0.36242276430130005, -0.041215334087610245, -0.14440101385116577, 0.03754206374287605, 0.014149926602840424, -0.4947952628135681, -0.21703042089939117, 0.03958342596888542, -0.05037970468401909, 0.20239245891571045, -0.029146380722522736, 0.1624273657798767, 0.0006262138485908508, -0.16836905479431152, 0.09420072287321091, 0.20767313241958618, -0.01885393261909485, -0.13601098954677582, 0.1580881029367447, 0.2246817946434021, 0.11925315856933594, 0.12269911170005798, 0.5510715842247009, 0.248973086476326, 0.3050892949104309, -0.0672837495803833, 0.07119418680667877, -0.09374544024467468, -0.27319690585136414, 0.021983422338962555, 0.25666362047195435, 0.15403324365615845, -0.2748708724975586, 0.29861846566200256, 0.2674953043460846, -0.11677119135856628, 0.5091395378112793, 0.05754808336496353, 0.010510504245758057, -0.20602503418922424, -0.022762633860111237, 0.005085904151201248, -0.15684039890766144, -0.16894325613975525, -0.2900932729244232, -0.35563430190086365, -0.23484621942043304, 0.19730760157108307, 0.18492577970027924, 0.04699520021677017, 0.18509675562381744, 0.127361461520195, -0.043795909732580185, 0.1974170207977295, 0.42759543657302856, 0.21440193057060242, -0.27694544196128845, -0.26717349886894226, -0.5712505578994751, 0.1799612045288086, -0.0008451193571090698, 0.12564587593078613, -0.13755635917186737, 0.1916966587305069, 0.1666381061077118, 0.08308012783527374, 0.1430940330028534, -0.11801149696111679, 0.3236379623413086, 0.20552393794059753, -0.4791348874568939, -0.16674049198627472, 0.4209691882133484, 0.10057158023118973, -0.04895797371864319, -0.21626150608062744, 0.001097310334444046, -0.0680505633354187, 0.08974932879209518, -0.3142630457878113, 0.04956471174955368, -0.07789771258831024, 0.2999340295791626, 0.4334111213684082, 0.12690135836601257, 0.3611062169075012, -0.16128289699554443, -0.03545604646205902, -0.08096884191036224, -0.5110647678375244, 0.10991248488426208, 0.36105868220329285, 0.3569546639919281, 0.16616149246692657, 0.00956948846578598, -0.1989292949438095, -0.26435965299606323, -0.1321447640657425, -0.2981785535812378, 0.1142619177699089, -0.18332834541797638, -0.02027098275721073, 0.1532290279865265, -0.16699407994747162, 0.0736212208867073, 0.1590200960636139, -0.17035670578479767, -0.09543900191783905, -0.1573302447795868, 0.09013421088457108, 0.40590357780456543, -0.11158056557178497, 0.10766389966011047, -0.14021973311901093, 0.2377358376979828, -0.1695300042629242, 0.02122461050748825, -0.22302106022834778, 0.2777038812637329, 0.4860672056674957, -0.01255558431148529, -0.1711120307445526, 0.3256203830242157, 0.0772305428981781, 0.024801064282655716, -0.044601183384656906, 0.5059499740600586, 0.06147245317697525, -0.13919812440872192, 0.16987712681293488, -0.11685286462306976 ]
https://github.com/huggingface/datasets/issues/3204
FileNotFoundError for TupleIE dataste
Hi @arda-vianai, first, you can try: ```python import datasets dataset = datasets.load_dataset('tuple_ie', 'all', revision="master") ``` If this doesn't work, your version of `datasets` is missing some features that are required to run the dataset script, so install the master version with the following command: ``` pip install git+https://github.com/huggingface/datasets.git ``` and then: ```python import datasets dataset = datasets.load_dataset('tuple_ie', 'all') ``` should work (even without `revision`).
Hi, `dataset = datasets.load_dataset('tuple_ie', 'all')` returns a FileNotFound error. Is the data not available? Many thanks.
64
FileNotFoundError for TupleIE dataste Hi, `dataset = datasets.load_dataset('tuple_ie', 'all')` returns a FileNotFound error. Is the data not available? Many thanks. Hi @arda-vianai, first, you can try: ```python import datasets dataset = datasets.load_dataset('tuple_ie', 'all', revision="master") ``` If this doesn't work, your version of `datasets` is missing some features that are required to run the dataset script, so install the master version with the following command: ``` pip install git+https://github.com/huggingface/datasets.git ``` and then: ```python import datasets dataset = datasets.load_dataset('tuple_ie', 'all') ``` should work (even without `revision`).
[ -0.18840251863002777, 0.06002594530582428, -0.10393248498439789, 0.2780109941959381, 0.21679900586605072, 0.222335547208786, 0.29284587502479553, 0.4254567325115204, 0.33241188526153564, 0.12656305730342865, 0.0710727721452713, 0.07704975455999374, -0.0805492103099823, 0.21995456516742706, -0.17394651472568512, 0.005948618054389954, -0.0722435936331749, 0.34420764446258545, -0.02045293152332306, -0.01281696930527687, -0.2555244565010071, 0.14228764176368713, -0.3287063241004944, -0.016163423657417297, -0.22253954410552979, 0.19031992554664612, -0.1256609857082367, 0.24493223428726196, -0.20997276902198792, -0.22941437363624573, 0.32977360486984253, 0.029052527621388435, 0.17803677916526794, 0.49616044759750366, -0.00010172261681873351, 0.06590321660041809, 0.2072928547859192, -0.23276911675930023, -0.26262030005455017, -0.3174368143081665, -0.32455945014953613, -0.06293359398841858, 0.0987476110458374, -0.43372729420661926, -0.3259532153606415, -0.07276007533073425, -0.10350975394248962, -0.19928604364395142, 0.4231494069099426, 0.3074934780597687, 0.3073567748069763, 0.1573152095079422, 0.2867787182331085, -0.1966300755739212, 0.3415282368659973, 0.17470471560955048, -0.06860489398241043, -0.13399919867515564, 0.09649745374917984, -0.18062372505664825, 0.2836655080318451, 0.2474168986082077, -0.10107407718896866, 0.07166503369808197, -0.10665196925401688, 0.05135141313076019, 0.19181489944458008, -0.2570738196372986, 0.07016382366418839, 0.09854006767272949, 0.6515603065490723, -0.2882900834083557, -0.5048101544380188, 0.2837332785129547, -0.06518449634313583, -0.31086307764053345, 0.07933557033538818, 0.09097618609666824, 0.07321435213088989, 0.05814265459775925, 0.17513535916805267, -0.08261609822511673, -0.2140294313430786, 0.3825113773345947, -0.21521447598934174, 0.05492809787392616, -0.11534358561038971, -0.1092783734202385, 0.07519163191318512, -0.25418412685394287, -0.17104288935661316, 0.14197051525115967, -0.04230232909321785, 0.14265026152133942, -0.018255893141031265, -0.2105204164981842, 0.12334897369146347, -0.07552947849035263, 0.1597558557987213, 0.18769200146198273, 0.0576036162674427, 0.04396228492259979, -0.17298215627670288, 0.246454656124115, 0.32190030813217163, 0.0942501425743103, 0.06322523206472397, 0.09794579446315765, 0.3280448317527771, 0.12511669099330902, -0.0001566857099533081, -0.06935665756464005, 0.016550753265619278, -0.21033819019794464, 0.042551103979349136, 0.19384515285491943, 0.6039741039276123, -0.2909433841705322, -0.3416379392147064, -0.00908933486789465, -0.032449766993522644, -0.13437753915786743, -0.07057414948940277, 0.2835501432418823, -0.23644079267978668, 0.12057783454656601, 0.15100298821926117, 0.20348110795021057, -0.2899574041366577, -0.21500445902347565, -0.2702138423919678, 0.10677506029605865, -0.06460729986429214, -0.0987372100353241, 0.2457270473241806, -0.1502387523651123, 0.30380892753601074, -0.09099302440881729, 0.03718947619199753, 0.03208860754966736, 0.158652201294899, -0.1779492199420929, -0.02749621868133545, 0.24390356242656708, 0.2635676860809326, -0.08330684900283813, 0.34188365936279297, -0.5316175222396851, -0.05668863281607628, 0.1274125874042511, -0.45088624954223633, -0.3061482310295105, -0.29119372367858887, 0.3058851659297943, -0.20227715373039246, -0.06075470894575119, -0.17496752738952637, -0.15019869804382324, 0.12368962913751602, -0.24208593368530273, -0.22900402545928955, -0.1792708784341812, 0.07227553427219391, -0.3932964503765106, 0.2523382008075714, 0.7262338995933533, -0.436409592628479, 0.09982344508171082, -0.09900372475385666, -0.24192488193511963, 0.04500656574964523, 0.23231884837150574, 0.034832779318094254, 0.03872785344719887, -0.19487610459327698, -0.06058458983898163, 0.42060425877571106, -0.19489139318466187, -0.3661433160305023, -0.011204198934137821, 0.12800292670726776, 0.007573364302515984, -0.03026389330625534, 0.01917845569550991, -0.013540761545300484, -0.11910251528024673, 0.2618730962276459, 0.019388452172279358, -0.042674921452999115, 0.08656464517116547, -0.05573813244700432, -0.11836045235395432, 0.05670925974845886, 0.24576981365680695, 0.05251992121338844, 0.13813923299312592, 0.10510951280593872, -0.12054646015167236, 0.29742783308029175, -0.13511207699775696, 0.1010172888636589, 0.2827281653881073, 0.41951102018356323, 0.3884798288345337, 0.032554563134908676, -0.09362331032752991, -0.2778608798980713, 0.15461814403533936, 0.1414121687412262, 0.034597136080265045, -0.43031299114227295, -0.21236728131771088, -0.12824153900146484, -0.03790539503097534, -0.3256772458553314, -0.1976945400238037, 0.2589091360569, 0.14005842804908752, 0.17512089014053345, 0.03529850021004677, -0.2834666073322296, -0.09144476801156998, 0.09812137484550476, 0.0547524020075798, -0.2285393327474594, 0.39206528663635254, -0.15002666413784027, -0.21665556728839874, 0.1667315512895584, 0.1542200893163681, -0.027091868221759796, -0.258993536233902, -0.10818526893854141, 0.19035714864730835, 0.3302902579307556, -0.163355752825737, 0.1002366840839386, -0.06449134647846222, 0.10756033658981323, -0.2725980579853058, 0.21728427708148956, 0.28849396109580994, 0.07948227226734161, 0.011104106903076172, -0.1340310275554657, 0.3363798260688782, -0.10528340935707092, -0.07141111046075821, 0.08704020082950592, 0.1211894080042839, 0.23191997408866882, -0.10719233006238937, -0.1344265192747116, -0.4241931140422821, 0.09023584425449371, 0.16079793870449066, 0.03687598183751106, -0.1865575760602951, -0.214329332113266, -0.09937108308076859, 0.4551887810230255, 0.20907306671142578, 0.11863452196121216, 0.04400450363755226, -0.20596477389335632, 0.21685227751731873, -0.18607114255428314, -0.0005351193249225616, 0.43782466650009155, 0.2825300991535187, -0.051690053194761276, -0.030090993270277977, 0.14395630359649658, -0.03150177001953125, 0.005486898124217987, -0.007951810956001282, 0.05724673345685005, 0.07543974369764328, -0.014170793816447258, 0.019032036885619164, -0.2870549261569977, -0.06072999909520149, -0.21250008046627045, 0.3524794578552246, -0.1315889060497284, -0.01230451837182045, -0.2842728793621063, -0.29268768429756165, 0.2449629157781601, -0.3191082179546356, -0.058248791843652725, -0.09152263402938843, 0.09179706871509552, 0.13093093037605286, -0.05665818229317665, 0.04963450878858566, -0.006983460858464241, 0.013134762644767761, 0.22738806903362274, -0.2872686982154846, -0.0278028417378664, -0.38095995783805847, -0.1570046842098236, 0.24630868434906006, 0.24016530811786652, -0.27518945932388306, 0.423797070980072, -0.23611368238925934, -0.021963108330965042, -0.2930741012096405, -0.357707142829895, -0.10218025743961334, -0.1963367611169815, 0.26876866817474365, 0.06010250747203827, 0.3273434638977051, 0.08035801351070404, 0.13678565621376038, 0.4028468132019043, -0.048180319368839264, -0.1761002242565155, 0.17594461143016815, 0.10165028274059296, -0.14159397780895233, -0.11036479473114014, -0.5738961100578308, -0.4431556463241577, -0.3519483804702759, 0.16562800109386444, 0.43960118293762207, 0.16740795969963074, -0.008738559670746326, 0.2039482593536377, -0.10302175581455231, 0.26688307523727417, 0.07961571216583252, -0.21819980442523956, -0.21217608451843262, 0.3554138243198395, -0.4575639069080353, -0.5526002049446106, 0.36491405963897705, -0.03172079473733902, 0.18265658617019653, 0.20078928768634796, -0.388691782951355, -0.2947538495063782, 0.04524136334657669, 0.11406588554382324, -0.027180977165699005, 0.09500940144062042, 0.3707849979400635, 0.1734093576669693, -0.10578778386116028, -0.08735315501689911, -0.04001259058713913, 0.003100670874118805, 0.05627967417240143, 0.13496281206607819, -0.0735427513718605, 0.38134947419166565, -0.05671228468418121, 0.26705098152160645, 0.34041300415992737, 0.03683551400899887, 0.42560386657714844, -0.3057478964328766, 0.21072250604629517, -0.19699546694755554, -0.2787998616695404, -0.21658185124397278, -0.11298257112503052, -0.0013858787715435028, 0.17539995908737183, 0.03608028218150139, -0.02130945213139057, -0.5113017559051514, 0.37246936559677124, -0.455810546875, -0.2587592303752899, -0.11233080923557281, 0.1568795144557953, 0.2574589252471924, -0.012105903588235378, -0.023286763578653336, -0.19883282482624054, -0.12758556008338928, -0.023383378982543945, 0.41077154874801636, 0.18328985571861267, -0.004498494789004326, -0.019681468605995178, 0.12249818444252014, -0.18265056610107422, 0.43630075454711914, -0.0947815328836441, -0.07983775436878204, -0.0671834647655487, -0.2150372564792633, -0.04723930358886719, -0.07871931791305542, 0.31151697039604187, -0.24270404875278473, -0.05580197274684906, 0.1337970346212387, -0.22860513627529144, -0.23512224853038788, -0.08640135824680328, -0.3197958469390869, 0.3749313950538635, 0.01027611456811428, 0.4163191616535187, -0.30772021412849426, -0.1087518259882927, 0.3453257977962494, 0.24232247471809387, -0.27782997488975525, -0.016796596348285675, -0.2817106544971466, -0.23494476079940796, -0.3236148953437805, -0.07238196581602097, -0.21789351105690002, 0.0543367825448513, 0.0967915877699852, 0.08512140810489655, -0.24299733340740204, -0.12648244202136993, 0.08540771156549454, 0.14878815412521362, 0.4226871132850647, -0.04668666422367096, 0.1289314329624176, -0.11538070440292358, -0.01539507508277893, 0.4706534445285797, 0.699347972869873, -0.03452710434794426, -0.2483418583869934, -0.1695277988910675, -0.20408599078655243, 0.14893373847007751, -0.030995681881904602, -0.05274391919374466, -0.032791897654533386, -0.2421409785747528, 0.045675214380025864, -0.35974639654159546, -0.03222430497407913, 0.39913374185562134, -0.021430466324090958, -0.371944785118103, -0.5469323992729187, 0.17179009318351746, 0.2305573970079422, 0.2078254371881485, 0.15226462483406067, 0.10796421766281128, -0.074736088514328, 0.3310607075691223, -0.06224808841943741, 0.6147708296775818, -0.011091247200965881, 0.11949755251407623, 0.16819992661476135, 0.35226935148239136, 0.3667651414871216, 0.032686181366443634, 0.05110163241624832, -0.3404092490673065, -0.36680126190185547, -0.07320113480091095, -0.02827567793428898, 0.035387471318244934, 0.0508275143802166, -0.3241017162799835, 0.41726452112197876, 0.02732822299003601, -0.15630385279655457, 0.03211142495274544, 0.011785753071308136, 0.04854077473282814, 0.07134899497032166, -0.12106570601463318, 0.28484997153282166, -0.05230169743299484, 0.4155673682689667, -0.18539869785308838, -0.1976703703403473, -0.13253960013389587, -0.22821876406669617, -0.15043655037879944, 0.09955673664808273, -0.2929387092590332, 0.4002477526664734, -0.25289011001586914, -0.2795873284339905, -0.1545817255973816, 0.14523720741271973, 0.19077685475349426, 0.22670072317123413, -0.12921053171157837, -0.1500580906867981, -0.06290506571531296, -0.23592737317085266, -0.21961751580238342, 0.32990509271621704, 0.4231732487678528, -0.06366812437772751, -0.2405281960964203, 0.20722746849060059, 0.05405527353286743, -0.18517419695854187, -0.098709836602211, -0.05637769401073456, -0.10609312355518341, -0.16807757318019867, -0.32047945261001587, -0.009596668183803558, -0.19772851467132568, -0.1518372893333435, 0.23072820901870728, 0.28333625197410583, -0.08229105174541473, 0.29151198267936707, 0.006048232316970825, -0.1923029124736786, -0.02207299694418907, 0.3729434609413147, 0.11252615600824356, -0.06833174079656601, 0.45498451590538025, 0.2349831908941269, 0.058483853936195374, -0.35584738850593567, -0.1306033730506897, -0.18456105887889862, -0.16474100947380066, 0.10414332151412964, 0.055302321910858154, 0.41212260723114014, 0.1949131190776825, 0.09170607477426529, 0.163863867521286, 0.03752526640892029, 0.1321132481098175, -0.45338624715805054, -0.36183980107307434, 0.22464600205421448, 0.21209345757961273, 0.19838643074035645, 0.04785865545272827, -0.02441045641899109, 0.11842647194862366, -0.08145251870155334, -0.4494682550430298, 0.1356804370880127, -0.07800950109958649, 0.07980778813362122, 0.3516397476196289, -0.011170510202646255, 0.2721952795982361, 0.03376764804124832, 0.3103686273097992, -0.12102784216403961, -0.14883852005004883, -0.37271398305892944, -0.007963831536471844, 0.07754737883806229, -0.05192926526069641, -0.04148714244365692, 0.008113591931760311, -0.2391946166753769, -0.17514806985855103, -0.09916689246892929, 0.11978229880332947, 0.0447310209274292, -0.16653978824615479, 0.3018162250518799, 0.018383454531431198, -0.057505764067173004, -0.004396270960569382, 0.18545834720134735, 0.03348216786980629, 0.2001955509185791, -0.07486647367477417, 0.17137451469898224, -0.024475472047924995, -0.12186776101589203, -0.2296929657459259, 0.007123030722141266, -0.15185794234275818, 0.10677696764469147, 0.26667702198028564, -0.3618053197860718, 0.11524832248687744, 0.021060246974229813, 0.3587907552719116, 0.32507073879241943, -0.0828615128993988, 0.3929644823074341, 0.13707667589187622, 0.34088537096977234, -0.472220778465271, 0.1223575696349144, 0.14817872643470764, 0.05589960142970085, 0.18218882381916046, 0.1468411237001419, -0.18308025598526, 0.09978663921356201, 0.04508371651172638, 0.21573856472969055, 0.17153312265872955, -0.3371424078941345, 0.25579917430877686, 0.33804380893707275, -0.07679963111877441, 0.007849961519241333, -0.17534653842449188, 0.21588268876075745, 0.08743489533662796, 0.37911272048950195, -0.08247774094343185, 0.2972773313522339, -0.15741199254989624, -0.11486417055130005, -0.17497023940086365, -0.31144946813583374, 0.10567857325077057, 0.10413061082363129, 0.1461537480354309, 0.15404877066612244, 0.1284848153591156, 0.2258310616016388, -0.18390929698944092, 0.06441155821084976, -0.41794195771217346, 0.03404156118631363, -0.04445010423660278, 0.02198166772723198, 0.10579001903533936, -0.26721638441085815, -0.21076546609401703, -0.02937138080596924, 0.051506202667951584, 0.07325128465890884, -0.08974406123161316, 0.19807268679141998, -0.048459023237228394, -0.24434398114681244, -0.011558473110198975, 0.11478006839752197, 0.07027638703584671, -0.14619103074073792, 0.030742892995476723, 0.26297491788864136, 0.08336509019136429, -0.026270341128110886, 0.4459387958049774, 0.4051814079284668, 0.33643093705177307, -0.057926420122385025, 0.1097148060798645, -0.24752245843410492, -0.3018554747104645, -0.048513397574424744, 0.04381812363862991, 0.020154424011707306, -0.09291724860668182, 0.263516366481781, 0.333575040102005, -0.2071423977613449, 0.1843634396791458, 0.03872834891080856, 0.010533295571804047, -0.27741768956184387, 0.201549232006073, 0.08400161564350128, -0.2026444673538208, -0.13995468616485596, -0.23108884692192078, -0.5278924107551575, -0.15916550159454346, 0.20290051400661469, 0.21153493225574493, 0.06430647522211075, -0.008563932962715626, 0.15649716556072235, -0.0073411110788583755, 0.2578364312648773, 0.4038029909133911, 0.20964720845222473, -0.1941145956516266, -0.19615605473518372, -0.6830441951751709, 0.10035219043493271, -0.12937721610069275, 0.08198489248752594, -0.07856617122888565, 0.12243051826953888, 0.05417380481958389, 0.19789013266563416, 0.012757539749145508, -0.05231260880827904, 0.1321852058172226, 0.12237648665904999, -0.46923068165779114, -0.19712956249713898, 0.2638004720211029, 0.01863923855125904, 0.10334113240242004, -0.2843216359615326, -0.2115211933851242, -0.2326805293560028, 0.21630936861038208, -0.3273427486419678, 0.034081242978572845, -0.043120935559272766, 0.19624868035316467, 0.4937272369861603, 0.09365805983543396, 0.4029163420200348, -0.1387631893157959, -0.1222594603896141, -0.13971886038780212, -0.31513717770576477, -0.0657232329249382, 0.3774031102657318, 0.26020416617393494, 0.30932164192199707, -0.13845038414001465, -0.3826032876968384, -0.24618209898471832, 0.15964630246162415, -0.06287441402673721, -0.01705615408718586, -0.07162345200777054, 0.09523189067840576, 0.17528226971626282, -0.1156826987862587, 0.040471844375133514, 0.17489925026893616, -0.2070295810699463, 0.15737853944301605, -0.15889832377433777, -0.14615187048912048, 0.41677412390708923, -0.1722647249698639, 0.004766058176755905, -0.17634588479995728, 0.23731060326099396, -0.2233642041683197, -0.10412076115608215, -0.15400150418281555, 0.4162984788417816, 0.3698207437992096, -0.0008731372654438019, -0.3649377226829529, 0.37040308117866516, -0.08405077457427979, 0.02887823060154915, -0.056304994970560074, 0.5584820508956909, -0.008650720119476318, -0.20408062636852264, 0.1248462051153183, -0.17613661289215088 ]
https://github.com/huggingface/datasets/issues/3204
FileNotFoundError for TupleIE dataste
@mariosasko Thanks, it is working now. I actually did that before but I didn't restart the kernel. I restarted it and it works now. My bad!!! Many thanks and great job! -arda
Hi, `dataset = datasets.load_dataset('tuple_ie', 'all')` returns a FileNotFound error. Is the data not available? Many thanks.
32
FileNotFoundError for TupleIE dataste Hi, `dataset = datasets.load_dataset('tuple_ie', 'all')` returns a FileNotFound error. Is the data not available? Many thanks. @mariosasko Thanks, it is working now. I actually did that before but I didn't restart the kernel. I restarted it and it works now. My bad!!! Many thanks and great job! -arda
[ -0.1555854082107544, -0.1022433191537857, -0.0895032212138176, 0.44407063722610474, 0.34257155656814575, 0.0214989110827446, 0.3312878906726837, 0.26181933283805847, 0.35057997703552246, 0.19808000326156616, 0.023938696831464767, 0.13158026337623596, -0.11349617689847946, 0.2030680924654007, -0.11343429982662201, -0.036821767687797546, -0.11410673707723618, 0.2126442790031433, -0.0038392841815948486, -0.04125145077705383, -0.18228404223918915, 0.20106875896453857, -0.40842241048812866, -0.032640524208545685, -0.314230740070343, 0.30562546849250793, -0.1567401885986328, 0.32290464639663696, -0.23030006885528564, -0.05654187500476837, 0.40238678455352783, -0.03851330652832985, 0.05751369148492813, 0.19129972159862518, -0.00010107822890859097, 0.18508245050907135, 0.35134357213974, -0.2275901883840561, -0.18763069808483124, -0.2483353465795517, -0.523364782333374, -0.016612961888313293, -0.04008658230304718, -0.3495929539203644, -0.384251207113266, 0.1457785665988922, 0.027949124574661255, -0.19656026363372803, 0.33577316999435425, 0.21595527231693268, 0.2711254060268402, 0.08486950397491455, 0.2601052522659302, -0.20197057723999023, 0.39698565006256104, 0.2788957357406616, -0.07669465988874435, -0.14692458510398865, 0.2820499837398529, -0.2643633782863617, 0.2917732000350952, 0.23382118344306946, 0.000015573576092720032, 0.015915699303150177, -0.29466214776039124, 0.11349145323038101, -0.011630736291408539, -0.20599333941936493, 0.10833130776882172, 0.2397347390651703, 0.6398409605026245, -0.0075677260756492615, -0.21692851185798645, 0.25115451216697693, -0.11268492043018341, -0.3362557888031006, 0.18795651197433472, -0.036600030958652496, -0.04840218275785446, 0.18387718498706818, 0.2606603801250458, -0.06767229735851288, -0.2701372504234314, 0.4147526025772095, -0.1908261626958847, 0.24087364971637726, -0.13318218290805817, -0.04982384294271469, 0.027893442660570145, -0.21685342490673065, -0.27866795659065247, 0.2261049449443817, -0.12122303247451782, 0.0806938037276268, -0.11222106218338013, -0.21038274466991425, 0.0043349117040634155, -0.016877397894859314, 0.12814724445343018, 0.10918596386909485, 0.09013490378856659, 0.20759624242782593, -0.1647050529718399, 0.1776721477508545, 0.24343641102313995, -0.054606594145298004, 0.04172666370868683, 0.07749747484922409, 0.3534742593765259, 0.07789664715528488, -0.13720311224460602, -0.10358116775751114, -0.020160630345344543, -0.19747106730937958, -0.14503897726535797, 0.14831572771072388, 0.646214485168457, -0.34728938341140747, -0.3221116065979004, -0.20971141755580902, 0.021515078842639923, -0.08763232827186584, 0.11847863346338272, 0.38527458906173706, -0.126434788107872, 0.008097747340798378, 0.07844799011945724, 0.22222669422626495, -0.1940237581729889, -0.35434606671333313, -0.2578374147415161, 0.11299183964729309, -0.19178830087184906, -0.047362394630908966, 0.35137882828712463, 0.07282145321369171, 0.3801015019416809, -0.15513384342193604, 0.13373598456382751, 0.05850818753242493, 0.23093831539154053, -0.20751149952411652, 0.14055047929286957, 0.25487014651298523, 0.04039234295487404, -0.09821326285600662, 0.2761995494365692, -0.41811132431030273, 0.1165139302611351, 0.27051201462745667, -0.48417234420776367, -0.30896973609924316, -0.19030459225177765, 0.2740745544433594, -0.08197712153196335, -0.08559046685695648, -0.06693027168512344, -0.006287369877099991, 0.06107577309012413, -0.3648465871810913, -0.1633920967578888, -0.036112427711486816, 0.17632441222667694, -0.3314667344093323, 0.23686286807060242, 0.5967102646827698, -0.5580585598945618, 0.10876448452472687, -0.10548289865255356, -0.3206526041030884, 0.3020130395889282, 0.2507619261741638, -0.10433603823184967, -0.005473911762237549, -0.3114131689071655, 0.19319702684879303, 0.48613598942756653, -0.10850395262241364, -0.3766992688179016, 0.11164142191410065, 0.12557046115398407, -0.041659627109766006, 0.03462065011262894, 0.0643022358417511, -0.02749786525964737, 0.04579005390405655, 0.3140433430671692, -0.0655307024717331, -0.03526487946510315, 0.032744310796260834, -0.2794337570667267, 0.10565899312496185, 0.09281501173973083, 0.3560788631439209, 0.17626431584358215, 0.11627043783664703, 0.15229687094688416, 0.017824791371822357, 0.37990444898605347, -0.17508327960968018, 0.16708709299564362, 0.20921248197555542, 0.46450725197792053, 0.3158394396305084, -0.022713053971529007, 0.15620693564414978, -0.23411017656326294, 0.14028745889663696, 0.0016281269490718842, -0.0016815215349197388, -0.23141498863697052, -0.1004711240530014, -0.010592860169708729, -0.13225576281547546, -0.2940575182437897, -0.3018001317977905, 0.23394840955734253, 0.12585589289665222, 0.03143112361431122, -0.05278079956769943, -0.3654085397720337, -0.0665464773774147, 0.027632208541035652, -0.0249007660895586, -0.2347267121076584, 0.41966694593429565, 0.004398617893457413, -0.30003106594085693, -0.10518579185009003, -0.012037292122840881, -0.0035745054483413696, -0.260904997587204, -0.06966610252857208, 0.21253043413162231, 0.4497959613800049, -0.2679314613342285, 0.11718978732824326, -0.15972156822681427, 0.24991482496261597, -0.22281070053577423, 0.11699292808771133, 0.2342105507850647, 0.10239709168672562, -0.10346965491771698, -0.16475653648376465, 0.45445358753204346, -0.16163039207458496, -0.17404431104660034, 0.14111609756946564, 0.0026814453303813934, 0.2857819199562073, -0.14185357093811035, -0.22544369101524353, -0.18792816996574402, 0.2402956187725067, 0.031581468880176544, -0.02282845228910446, -0.16823682188987732, -0.47140541672706604, -0.06360184401273727, 0.3899436295032501, 0.24628013372421265, 0.12246956676244736, -0.07763011008501053, -0.15706279873847961, 0.14038261771202087, -0.043385520577430725, -0.02771414816379547, 0.6090922355651855, 0.1932736337184906, -0.06927208602428436, -0.07701259851455688, 0.22956429421901703, -0.11379048973321915, 0.0005055740475654602, -0.18974392116069794, 0.15891407430171967, 0.19198077917099, -0.144662007689476, -0.13082313537597656, -0.36678433418273926, 0.003894869238138199, -0.09589780122041702, 0.1913161426782608, -0.23291181027889252, -0.1253339648246765, -0.24979914724826813, -0.39422380924224854, 0.41815972328186035, -0.27692294120788574, -0.021418072283267975, -0.14057303965091705, 0.13982975482940674, 0.0931812971830368, -0.11330856382846832, 0.05498600751161575, 0.00898628681898117, 0.08135959506034851, 0.18265078961849213, -0.2563972473144531, -0.20277702808380127, -0.27404919266700745, -0.07547923177480698, 0.22644886374473572, 0.22985701262950897, -0.23179294168949127, 0.20908787846565247, -0.10078589618206024, -0.05612794682383537, -0.14952656626701355, -0.3461075723171234, -0.03749670833349228, -0.08166613429784775, 0.180369570851326, -0.04102605581283569, 0.3408694267272949, -0.17054958641529083, 0.11421819031238556, 0.3435972034931183, -0.07321783155202866, -0.242121621966362, 0.2988080680370331, 0.14123839139938354, -0.08589968085289001, -0.22271840274333954, -0.5324504375457764, -0.4597739577293396, -0.2680586576461792, 0.23893891274929047, 0.3374071717262268, 0.02738899365067482, 0.09515780210494995, 0.17587363719940186, -0.06532079726457596, 0.20389623939990997, -0.10532937198877335, -0.3393779695034027, -0.31791016459465027, 0.350909948348999, -0.47498419880867004, -0.5626802444458008, 0.3396557867527008, 0.04907643049955368, 0.2503974735736847, 0.125339537858963, -0.383084237575531, -0.2107987105846405, 0.17799285054206848, 0.06914864480495453, -0.0760221853852272, -0.15788878500461578, 0.4259514808654785, -0.07424819469451904, -0.17147932946681976, -0.10157661139965057, 0.058419909328222275, 0.10133002698421478, 0.0961950495839119, 0.2866736948490143, -0.21056628227233887, 0.2831871211528778, -0.01205177791416645, 0.21132975816726685, 0.050946082919836044, 0.23431894183158875, 0.5367357730865479, -0.2305353283882141, 0.2599926292896271, -0.12514597177505493, -0.14996834099292755, -0.09538331627845764, 0.009608924388885498, -0.15261328220367432, 0.13754457235336304, -0.057021670043468475, -0.15778431296348572, -0.5140987634658813, 0.41810140013694763, -0.4104312062263489, -0.19121018052101135, 0.08612126111984253, 0.14903494715690613, 0.024087611585855484, 0.1301489919424057, 0.010339237749576569, -0.03129012882709503, -0.17443755269050598, -0.01817459613084793, 0.4581894278526306, 0.22908657789230347, -0.1303618848323822, -0.021914511919021606, 0.06980273872613907, -0.11179270595312119, 0.3450157940387726, -0.22635863721370697, 0.0035919640213251114, -0.2594991624355316, -0.32298144698143005, -0.02886679768562317, -0.08776349574327469, 0.4768615961074829, -0.09842123091220856, -0.1359250694513321, 0.18732036650180817, -0.1643674373626709, 0.006878374144434929, -0.08257371187210083, -0.37935593724250793, 0.31749415397644043, -0.028542887419462204, 0.5785766243934631, -0.2560253143310547, -0.02477591298520565, 0.22026412189006805, -0.004533297382295132, -0.3128539025783539, -0.0009282249957323074, -0.29213371872901917, -0.2628813683986664, -0.15296661853790283, -0.11204778403043747, -0.2186579555273056, 0.0860460102558136, -0.0016986667178571224, -0.058819688856601715, -0.2549828290939331, -0.186631977558136, 0.011793665587902069, 0.1871470957994461, 0.452505886554718, -0.061398446559906006, 0.06777478754520416, -0.21145546436309814, 0.13922089338302612, 0.31705397367477417, 0.5345526933670044, 0.10964283347129822, -0.0505557507276535, 0.017883729189634323, -0.38115954399108887, 0.1879015564918518, 0.08638896048069, -0.1617003083229065, 0.018946602940559387, -0.3027685880661011, 0.022453200072050095, -0.27681371569633484, 0.02329152449965477, 0.44561058282852173, -0.07076630741357803, -0.336651474237442, -0.31946060061454773, 0.1110309436917305, -0.018535306677222252, 0.16423802077770233, 0.2872065007686615, 0.09559811651706696, -0.13975687325000763, 0.22678804397583008, -0.042795099318027496, 0.707127571105957, -0.03387289494276047, 0.10284216701984406, 0.13548651337623596, 0.5144050121307373, 0.3976195156574249, -0.036235593259334564, 0.2672457695007324, -0.35940292477607727, -0.5540912747383118, -0.019121849909424782, -0.04809997230768204, 0.14434251189231873, 0.22266875207424164, -0.32571256160736084, 0.2211305946111679, 0.16209609806537628, -0.1360054463148117, -0.12469448149204254, -0.20313747227191925, 0.18180711567401886, 0.16988615691661835, -0.1828574240207672, 0.22021682560443878, -0.042501941323280334, 0.3960754871368408, -0.2840644121170044, -0.28506457805633545, -0.1349540650844574, -0.1950082778930664, -0.015223428606987, 0.1759292483329773, -0.35473743081092834, 0.34865933656692505, -0.18902499973773956, -0.15347886085510254, -0.33922043442726135, 0.18126460909843445, 0.11390930414199829, 0.15883441269397736, -0.16099901497364044, 0.008764935657382011, -0.04679502546787262, -0.2649482190608978, -0.36624234914779663, 0.2557013928890228, 0.2921628952026367, -0.1487400382757187, -0.2811928391456604, 0.25049111247062683, -0.035922251641750336, -0.3750104308128357, -0.04415538161993027, -0.09426236152648926, -0.12371008098125458, -0.1573209911584854, -0.33518046140670776, 0.15222644805908203, -0.23596571385860443, -0.1252879649400711, 0.22515738010406494, 0.38171297311782837, -0.19795162975788116, 0.3086020350456238, 0.16844528913497925, -0.2595309317111969, -0.01757396012544632, 0.32198458909988403, -0.043604180216789246, 0.005041029304265976, 0.4118271768093109, 0.17914320528507233, 0.06729863584041595, -0.3833726942539215, 0.018698610365390778, -0.13446973264217377, -0.16846579313278198, 0.0449325330555439, 0.14481894671916962, 0.4758720397949219, 0.21650464832782745, 0.060441188514232635, 0.20252646505832672, 0.043273698538541794, 0.08961805701255798, -0.4689866900444031, -0.3874792754650116, 0.2788316011428833, 0.15302257239818573, 0.2989538013935089, -0.12069045007228851, -0.1672009974718094, 0.26603835821151733, -0.09086643159389496, -0.4309503138065338, 0.16918523609638214, -0.22125676274299622, 0.0699404776096344, 0.35287588834762573, 0.015468887984752655, 0.46998122334480286, 0.06500108540058136, 0.2946549355983734, -0.039549656212329865, -0.03627774864435196, -0.3362160325050354, 0.22689925134181976, 0.10016898065805435, 0.12299232184886932, 0.005356684327125549, -0.12457181513309479, -0.3442416787147522, -0.11364386975765228, 0.07348405569791794, 0.07049980759620667, 0.01000513881444931, -0.11018106341362, 0.2272070199251175, 0.10618402063846588, 0.1437734067440033, 0.005345392972230911, 0.24888549745082855, 0.1708093136548996, 0.36561334133148193, -0.11854148656129837, 0.03520748391747475, 0.13276678323745728, -0.10783986747264862, -0.09840609133243561, 0.012091480195522308, -0.1388883888721466, 0.0844675824046135, 0.2503581643104553, -0.46399223804473877, 0.03380688652396202, -0.20327870547771454, 0.22554750740528107, 0.44837257266044617, -0.09209852665662766, 0.43071579933166504, 0.15520164370536804, 0.34450563788414, -0.34178176522254944, 0.21622423827648163, 0.11484137177467346, 0.09429199993610382, 0.11891195178031921, 0.07074225693941116, -0.13971933722496033, 0.17744776606559753, 0.18958452343940735, 0.2683235704898834, 0.032458167523145676, -0.318567156791687, 0.051170993596315384, 0.2414037138223648, -0.24207442998886108, 0.07192309945821762, -0.16266362369060516, 0.26878228783607483, 0.06179201975464821, 0.32643842697143555, -0.14331847429275513, 0.33645251393318176, -0.25038942694664, -0.030552584677934647, -0.21647033095359802, -0.4367508292198181, -0.00525280088186264, 0.186608225107193, -0.12457865476608276, 0.1140863448381424, 0.04002688080072403, 0.05816706269979477, -0.26786771416664124, 0.012104138731956482, -0.36170199513435364, -0.07520774006843567, -0.2261911928653717, 0.020737923681735992, 0.09936198592185974, -0.41112762689590454, -0.22871679067611694, -0.0061704739928245544, 0.053195662796497345, 0.20354023575782776, 0.015003383159637451, 0.13079476356506348, 0.016021065413951874, -0.11946547031402588, 0.10326514393091202, 0.177648663520813, -0.029919035732746124, -0.20735396444797516, 0.0831795483827591, 0.09363105893135071, 0.1093667522072792, 0.06682099401950836, 0.47369202971458435, 0.24574583768844604, 0.4286845326423645, -0.14768625795841217, 0.062368813902139664, -0.11971968412399292, -0.28609880805015564, -0.18229685723781586, 0.24515379965305328, 0.27187180519104004, -0.19695982336997986, 0.26810434460639954, 0.2982272207736969, -0.20124226808547974, 0.4564194083213806, 0.1412995457649231, 0.03715985268354416, -0.1598147600889206, -0.017988741397857666, 0.07849666476249695, -0.16093753278255463, -0.12555740773677826, -0.3518003523349762, -0.5513365864753723, -0.2304583489894867, 0.16070131957530975, 0.033795274794101715, 0.1380695104598999, 0.09052999317646027, 0.1455887109041214, -0.016705166548490524, 0.23183169960975647, 0.2456962764263153, 0.1587267965078354, -0.2957936227321625, -0.2209111750125885, -0.5937348008155823, 0.2108592987060547, -0.035415198653936386, 0.12995685636997223, -0.29621246457099915, 0.31816366314888, 0.22148868441581726, 0.09442952275276184, 0.02079854905605316, -0.2002682238817215, 0.27137067914009094, 0.1394827663898468, -0.467319130897522, -0.11623409390449524, 0.42452651262283325, 0.085756316781044, 0.021855931729078293, -0.26615652441978455, -0.004999328404664993, -0.22962532937526703, 0.20730510354042053, -0.28991180658340454, 0.032586537301540375, -0.07319337129592896, 0.40245795249938965, 0.39752885699272156, 0.05770818889141083, 0.35499730706214905, -0.10049087554216385, -0.02054845169186592, -0.05943679437041283, -0.4358557164669037, 0.05832374468445778, 0.23510828614234924, 0.4124738574028015, 0.18004785478115082, 0.060007788240909576, -0.2587558925151825, -0.2307470589876175, 0.08932992815971375, -0.17844489216804504, 0.020095260813832283, 0.034469835460186005, 0.08252407610416412, 0.1479310393333435, -0.1629205197095871, 0.05962086841464043, 0.10986161231994629, -0.1739906668663025, -0.14587236940860748, -0.1663210690021515, -0.09960892796516418, 0.3017328977584839, -0.19556763768196106, 0.01219947636127472, -0.23314529657363892, 0.15440993010997772, -0.17613700032234192, 0.014134960249066353, -0.15150617063045502, 0.33335578441619873, 0.34381163120269775, -0.09615109860897064, -0.21676243841648102, 0.2900078296661377, 0.04718579724431038, 0.01684141531586647, -0.1397261768579483, 0.5024126768112183, 0.15055078268051147, -0.13715708255767822, 0.03676601126790047, -0.1456848382949829 ]
https://github.com/huggingface/datasets/issues/3191
Dataset viewer issue for '*compguesswhat*'
```python >>> import datasets >>> dataset = datasets.load_dataset('compguesswhat', name='compguesswhat-original',split='train', streaming=True) >>> next(iter(dataset)) Traceback (most recent call last): File "<stdin>", line 1, in <module> File "/home/slesage/hf/datasets-preview-backend/.venv/lib/python3.9/site-packages/datasets/iterable_dataset.py", line 497, in __iter__ for key, example in self._iter(): File "/home/slesage/hf/datasets-preview-backend/.venv/lib/python3.9/site-packages/datasets/iterable_dataset.py", line 494, in _iter yield from ex_iterable File "/home/slesage/hf/datasets-preview-backend/.venv/lib/python3.9/site-packages/datasets/iterable_dataset.py", line 87, in __iter__ yield from self.generate_examples_fn(**self.kwargs) File "/home/slesage/.cache/huggingface/modules/datasets_modules/datasets/compguesswhat/4d08b9e0a8d1cf036c9626c93be4a759fdd9fcce050ea503ea14b075e830c799/compguesswhat.py", line 251, in _generate_examples with gzip.open(filepath) as in_file: File "/home/slesage/.pyenv/versions/3.9.6/lib/python3.9/gzip.py", line 58, in open binary_file = GzipFile(filename, gz_mode, compresslevel) File "/home/slesage/.pyenv/versions/3.9.6/lib/python3.9/gzip.py", line 173, in __init__ fileobj = self.myfileobj = builtins.open(filename, mode or 'rb') FileNotFoundError: [Errno 2] No such file or directory: 'zip://compguesswhat-original/0.2.0/compguesswhat.train.jsonl.gz::https://www.dropbox.com/s/l0nc13udml6vs0w/compguesswhat-original.zip?dl=1' ``` It's an issue with the streaming mode. Note that normal mode is used by the dataset viewer when streaming is failing, but only for the smallest datasets. This dataset is above the limit, hence the error. Same case as https://github.com/huggingface/datasets/issues/3186#issuecomment-1096549774.
## Dataset viewer issue for '*compguesswhat*' **Link:** https://huggingface.co/datasets/compguesswhat File not found Am I the one who added this dataset ? No
137
Dataset viewer issue for '*compguesswhat*' ## Dataset viewer issue for '*compguesswhat*' **Link:** https://huggingface.co/datasets/compguesswhat File not found Am I the one who added this dataset ? No ```python >>> import datasets >>> dataset = datasets.load_dataset('compguesswhat', name='compguesswhat-original',split='train', streaming=True) >>> next(iter(dataset)) Traceback (most recent call last): File "<stdin>", line 1, in <module> File "/home/slesage/hf/datasets-preview-backend/.venv/lib/python3.9/site-packages/datasets/iterable_dataset.py", line 497, in __iter__ for key, example in self._iter(): File "/home/slesage/hf/datasets-preview-backend/.venv/lib/python3.9/site-packages/datasets/iterable_dataset.py", line 494, in _iter yield from ex_iterable File "/home/slesage/hf/datasets-preview-backend/.venv/lib/python3.9/site-packages/datasets/iterable_dataset.py", line 87, in __iter__ yield from self.generate_examples_fn(**self.kwargs) File "/home/slesage/.cache/huggingface/modules/datasets_modules/datasets/compguesswhat/4d08b9e0a8d1cf036c9626c93be4a759fdd9fcce050ea503ea14b075e830c799/compguesswhat.py", line 251, in _generate_examples with gzip.open(filepath) as in_file: File "/home/slesage/.pyenv/versions/3.9.6/lib/python3.9/gzip.py", line 58, in open binary_file = GzipFile(filename, gz_mode, compresslevel) File "/home/slesage/.pyenv/versions/3.9.6/lib/python3.9/gzip.py", line 173, in __init__ fileobj = self.myfileobj = builtins.open(filename, mode or 'rb') FileNotFoundError: [Errno 2] No such file or directory: 'zip://compguesswhat-original/0.2.0/compguesswhat.train.jsonl.gz::https://www.dropbox.com/s/l0nc13udml6vs0w/compguesswhat-original.zip?dl=1' ``` It's an issue with the streaming mode. Note that normal mode is used by the dataset viewer when streaming is failing, but only for the smallest datasets. This dataset is above the limit, hence the error. Same case as https://github.com/huggingface/datasets/issues/3186#issuecomment-1096549774.
[ -0.193760484457016, -0.10409176349639893, -0.07675780355930328, 0.3095781207084656, 0.13209637999534607, 0.2199116349220276, 0.2739969789981842, 0.2762228846549988, 0.024860572069883347, 0.03973893076181412, -0.07574605941772461, 0.21873000264167786, -0.2102138251066208, -0.11090939491987228, 0.43418267369270325, 0.13080662488937378, -0.015565119683742523, 0.3229694366455078, -0.25978884100914, 0.013750120997428894, -0.21264533698558807, 0.22670207917690277, -0.04351209104061127, 0.12071733176708221, -0.1061365082859993, -0.0522477850317955, -0.05953611433506012, 0.16986088454723358, -0.12519557774066925, -0.5590723752975464, 0.369812548160553, 0.12707793712615967, 0.057719141244888306, 0.6429823637008667, -0.00011021647515008226, 0.2682631015777588, 0.28583505749702454, -0.014236504212021828, -0.49144265055656433, -0.34310317039489746, -0.2766234576702118, -0.0937964916229248, 0.11414648592472076, -0.2209627330303192, -0.11149172484874725, -0.23323501646518707, 0.16538117825984955, -0.312797486782074, 0.11186794936656952, 0.24183297157287598, 0.28085362911224365, 0.35039830207824707, 0.09119847416877747, -0.08726157993078232, 0.09911347180604935, 0.12415151298046112, -0.2120940238237381, 0.32041841745376587, -0.03141472488641739, 0.2100880891084671, 0.10377487540245056, 0.4592787027359009, 0.08789592981338501, -0.13968370854854584, 0.3811453580856323, -0.02135687693953514, 0.0398060642182827, -0.3225097954273224, 0.00621442124247551, 0.15820109844207764, 0.41371989250183105, -0.3502933084964752, -0.3390454053878784, -0.2633243501186371, 0.034017205238342285, -0.23116493225097656, 0.217457115650177, 0.2003343105316162, -0.13744086027145386, 0.19502592086791992, -0.05825856328010559, -0.09369037300348282, -0.12157686054706573, 0.11108340322971344, -0.00501042976975441, 0.19534026086330414, -0.28164565563201904, 0.07241493463516235, 0.17759422957897186, 0.07718096673488617, 0.05381191149353981, -0.041977182030677795, -0.11847348511219025, 0.16204187273979187, -0.17967645823955536, -0.015373103320598602, 0.15689584612846375, -0.03615193068981171, 0.013181496411561966, -0.001843765377998352, 0.22469790279865265, -0.0006321482360363007, 0.06285659968852997, 0.06679046154022217, 0.13063810765743256, 0.09746062755584717, -0.015517354011535645, 0.07883889973163605, 0.32150858640670776, 0.47292500734329224, 0.1511530876159668, -0.04497049003839493, -0.19329480826854706, -0.32345083355903625, -0.12244805693626404, -0.1955910623073578, 0.37804824113845825, 0.043398138135671616, -0.4252054691314697, 0.04103153944015503, -0.05449973791837692, -0.07665572315454483, 0.28015097975730896, 0.3417891561985016, 0.03052327036857605, -0.03170464187860489, -0.10944004356861115, 0.08696956932544708, -0.20194585621356964, -0.11833729594945908, -0.25291427969932556, 0.15709739923477173, -0.04031930863857269, -0.019642358645796776, 0.1617257446050644, -0.36015385389328003, 0.18841098248958588, -0.13622264564037323, -0.13551229238510132, -0.10995779931545258, -0.08708904683589935, -0.02663762867450714, -0.09135881811380386, 0.24897590279579163, -0.06262491643428802, 0.25869840383529663, 0.047424010932445526, -0.25185155868530273, -0.11998023092746735, 0.1237814873456955, -0.19983986020088196, -0.2998076379299164, -0.15558218955993652, 0.2883940041065216, -0.3234264850616455, 0.007836077362298965, -0.07777387648820877, 0.001990538090467453, -0.08860289305448532, -0.21905790269374847, 0.024847455322742462, -0.03492174297571182, -0.050054483115673065, -0.23244431614875793, 0.3426054120063782, 0.6747615337371826, -0.5611035823822021, -0.20996102690696716, -0.16158433258533478, -0.25032395124435425, -0.044899098575115204, 0.18767836689949036, -0.23821617662906647, 0.2756494879722595, -0.5549890995025635, -0.16572511196136475, 0.7169923186302185, -0.1649722158908844, -0.46080970764160156, 0.25556570291519165, -0.2459586262702942, 0.39198312163352966, 0.2884088456630707, 0.13051852583885193, -0.22855670750141144, -0.17814338207244873, -0.14482134580612183, -0.22316041588783264, 0.2169448733329773, -0.22731073200702667, -0.15726368129253387, -0.16617712378501892, 0.15912140905857086, 0.017441321164369583, 0.11308513581752777, 0.02609410136938095, 0.14298909902572632, -0.21899770200252533, 0.4341377019882202, -0.12940247356891632, -0.003663660492748022, 0.23574376106262207, 0.3466285169124603, 0.2011493742465973, 0.03947306051850319, -0.19086682796478271, -0.197270005941391, 0.21928489208221436, -0.10351048409938812, -0.037930361926555634, -0.35990917682647705, -0.05575577914714813, -0.4004499316215515, 0.10422321408987045, -0.5202272534370422, -0.34863215684890747, 0.18864405155181885, 0.3854333162307739, 0.03955056890845299, 0.21765147149562836, -0.15618368983268738, 0.3141289949417114, 0.07413578778505325, 0.1084529310464859, -0.3582707941532135, 0.22306138277053833, -0.11512971669435501, 0.07098748534917831, -0.037914250046014786, 0.286952406167984, 0.2087695300579071, -0.37286609411239624, -0.010614873841404915, 0.4204740524291992, -0.03986016660928726, 0.2837877869606018, 0.17740580439567566, -0.07679463922977448, 0.298628568649292, -0.4184737205505371, 0.0340404137969017, 0.010086179710924625, 0.2124745398759842, -0.02732378989458084, -0.03124847263097763, 0.1396767944097519, -0.0339958481490612, 0.037630654871463776, 0.1875053495168686, 0.026415402069687843, 0.18275828659534454, 0.12579859793186188, 0.005261056125164032, -0.060048386454582214, 0.18018509447574615, 0.0374850258231163, 0.32731372117996216, 0.08919286727905273, -0.3153209984302521, 0.0962819829583168, 0.31012940406799316, -0.1137736439704895, -0.08901243656873703, 0.1824171245098114, -0.3638107180595398, -0.009557591751217842, -0.05701679736375809, 0.24867881834506989, 0.39594972133636475, 0.17569907009601593, 0.16270732879638672, 0.07084060460329056, 0.005877145566046238, -0.22388677299022675, 0.28147777915000916, 0.23579640686511993, 0.07470696419477463, 0.13770723342895508, -0.09424609690904617, 0.01957448571920395, -0.35151293873786926, -0.050589121878147125, -0.07254484295845032, 0.17043477296829224, -0.3615553379058838, 0.10286108404397964, -0.25978147983551025, -0.47859087586402893, -0.26947522163391113, -0.14927451312541962, -0.13021089136600494, -0.39307546615600586, -0.025099977850914, 0.10366423428058624, 0.08513845503330231, 0.17162388563156128, -0.413011372089386, 0.06631004810333252, 0.07033034414052963, -0.06733419001102448, -0.2325470745563507, 0.02438080869615078, -0.2179121971130371, 0.07431583106517792, 0.2761666178703308, -0.1215442419052124, 0.3873198926448822, -0.22976325452327728, 0.05772878974676132, -0.4755009710788727, -0.40107062458992004, 0.09887600690126419, -0.09760336577892303, 0.3421963155269623, 0.2905362844467163, 0.04808399826288223, 0.04343174397945404, -0.27069735527038574, 0.2804008722305298, -0.1474798321723938, -0.046358417719602585, 0.019763357937335968, -0.053099747747182846, -0.0922887921333313, 0.0291118286550045, -0.28295445442199707, -0.44926711916923523, -0.37832584977149963, 0.23413866758346558, 0.17908737063407898, 0.17171770334243774, 0.41443654894828796, -0.08230336755514145, 0.18352088332176208, 0.1349901556968689, 0.06021504104137421, -0.2649371325969696, -0.40386348962783813, 0.5226957201957703, -0.41907984018325806, -0.40693387389183044, 0.17570042610168457, -0.08320340514183044, 0.29589399695396423, -0.10065128654241562, -0.6484919786453247, -0.11092657595872879, -0.014207953587174416, 0.1245395690202713, 0.1696871519088745, -0.037802428007125854, 0.1736171692609787, 0.06384839117527008, -0.060934826731681824, -0.1655503809452057, -0.26553112268447876, 0.10149220377206802, -0.19884231686592102, 0.2603458762168884, 0.02598990686237812, 0.34791889786720276, 0.03768329694867134, 0.74382483959198, 0.35711047053337097, 0.034361112862825394, 0.3559175133705139, -0.30511674284935, 0.5660557746887207, -0.05571841448545456, -0.5069393515586853, 0.07022154331207275, -0.04328739643096924, 0.1368885338306427, 0.16732192039489746, 0.00524640828371048, 0.001188758760690689, -0.24365244805812836, -0.0038499850779771805, -0.4026922285556793, -0.25088635087013245, -0.10326932370662689, -0.13434436917304993, 0.09506669640541077, 0.03318602591753006, 0.012968309223651886, -0.3099305033683777, -0.19289618730545044, 0.09266246855258942, 0.5390396118164062, 0.18658173084259033, 0.1703382283449173, -0.22579556703567505, 0.04818333685398102, -0.2953951954841614, 0.20083820819854736, -0.07982133328914642, 0.24908821284770966, -0.04910844936966896, -0.2011958360671997, 0.1155228540301323, -0.017112640663981438, 0.6999446749687195, 0.005837786942720413, -0.03626877814531326, 0.023777950555086136, 0.005752697587013245, -0.2709566354751587, -0.13661304116249084, 0.023118678480386734, 0.2394089251756668, 0.21665091812610626, 0.23409771919250488, -0.08853363990783691, -0.10564212501049042, 0.5898474454879761, -0.007893550209701061, -0.22175702452659607, -0.22782941162586212, -0.2536863386631012, -0.35288336873054504, 0.025115912780165672, -0.345209538936615, -0.1394483745098114, 0.1437884420156479, 0.050823114812374115, -0.13349393010139465, -0.05201033502817154, -0.16645443439483643, 0.24833786487579346, 0.12015460431575775, 0.2412026822566986, 0.17607201635837555, 0.251084566116333, 0.5565972328186035, 0.5501717925071716, 0.17550009489059448, 0.6822934150695801, 0.0777059942483902, -0.410602867603302, 0.10715663433074951, -0.008334332145750523, 0.21893635392189026, 0.30099350214004517, -0.24691392481327057, -0.10766474157571793, 0.19338290393352509, 0.23442798852920532, -0.31937578320503235, 0.10005442798137665, 0.5598336458206177, -0.03361407294869423, -0.6603574752807617, -0.5273033380508423, 0.30351001024246216, -0.04109003767371178, -0.04614759609103203, 0.29998183250427246, 0.2299194633960724, -0.2348639965057373, -0.1701979786157608, -0.3043800890445709, 0.8732740879058838, 0.10155165195465088, 0.02543124556541443, 0.45243969559669495, -0.06100601702928543, 0.5562375783920288, -0.2566668391227722, 0.23116621375083923, -0.2116345316171646, -0.3983314037322998, -0.18316105008125305, -0.24488678574562073, 0.2536203861236572, -0.07138355076313019, -0.13712112605571747, 0.2579716145992279, 0.17461593449115753, 0.08195798099040985, 0.023298515006899834, 0.31612628698349, -0.10830267518758774, 0.05381938815116882, 0.026848381385207176, 0.18896815180778503, 0.002472665160894394, 0.400605708360672, -0.05903547257184982, -0.3070911765098572, -0.14429837465286255, -0.2514113783836365, -0.178066223859787, 0.10704251378774643, -0.5256943106651306, 0.22421953082084656, -0.012635141611099243, -0.5764954090118408, 0.19675956666469574, 0.20176270604133606, 0.0030748769640922546, -0.06483598053455353, -0.06202714145183563, 0.3662312924861908, -0.10810380429029465, 0.009077762253582478, -0.03215588629245758, 0.14623546600341797, 0.22583667933940887, -0.03613791987299919, -0.1588122695684433, 0.20652952790260315, -0.027790796011686325, -0.21554522216320038, -0.05903519690036774, -0.12491059303283691, 0.031756691634655, -0.14737200736999512, -0.19918504357337952, -0.12772996723651886, -0.005523864179849625, -0.25464606285095215, 0.1179720014333725, 0.05375829339027405, -0.168052539229393, -0.15944385528564453, -0.20094995200634003, -0.2721095383167267, -0.24682776629924774, 0.3474501967430115, -0.1259017288684845, -0.03832103684544563, 0.5984408855438232, -0.04657958820462227, -0.3772175908088684, -0.1828504502773285, -0.08663496375083923, -0.02372313290834427, -0.5005761384963989, -0.12713029980659485, 0.05143614113330841, 0.2980586290359497, -0.02758176438510418, 0.02713818848133087, 0.29489076137542725, -0.06366633623838425, -0.13795599341392517, -0.3929699957370758, -0.14831599593162537, -0.011601179838180542, -0.036573756486177444, 0.38323265314102173, 0.008416417986154556, 0.027002481743693352, 0.2465350329875946, 0.04999767988920212, -0.3431246876716614, -0.08269438147544861, 0.008996674790978432, -0.19577860832214355, 0.2922362685203552, 0.09501253068447113, 0.2658882141113281, -0.028959879651665688, 0.28424978256225586, -0.06648267060518265, -0.20473086833953857, -0.20125752687454224, -0.07115145027637482, 0.12645426392555237, -0.1420305073261261, -0.3581234812736511, -0.05461404100060463, 0.08024333417415619, 0.01751074381172657, 0.028118910267949104, 0.12392854690551758, -0.04810917377471924, 0.06485229730606079, 0.0862283781170845, -0.10510857403278351, -0.22988837957382202, 0.04636499285697937, 0.1606089174747467, 0.04217515513300896, 0.4356071949005127, 0.1839047074317932, 0.1505156308412552, -0.12128622829914093, -0.05891038477420807, -0.1323457658290863, 0.15675343573093414, 0.02840520441532135, -0.02157863974571228, 0.36306998133659363, -0.5359850525856018, 0.07281836867332458, 0.17498214542865753, 0.3355230689048767, 0.4238293766975403, -0.3092810809612274, 0.06631793826818466, 0.2689969539642334, 0.17054621875286102, -0.41390737891197205, 0.034931909292936325, 0.2855167090892792, 0.09957557916641235, 0.15128907561302185, 0.24131211638450623, 0.14896593987941742, 0.13797646760940552, 0.1836128681898117, 0.043606169521808624, 0.5151612758636475, -0.03981772065162659, 0.4796536862850189, 0.38165274262428284, -0.06714874505996704, 0.12011883407831192, 0.15168817341327667, 0.31576237082481384, 0.03971503674983978, 0.36556267738342285, -0.44526833295822144, -0.03200239688158035, -0.08166082948446274, 0.045667268335819244, 0.1232893168926239, -0.40503543615341187, -0.04816141352057457, 0.06990988552570343, -0.3359014093875885, 0.039384834468364716, 0.032509125769138336, 0.5006005167961121, -0.2347581684589386, 0.14140580594539642, -0.2521772086620331, 0.2500772178173065, -0.12767523527145386, 0.015763338655233383, 0.03503881394863129, -0.35847464203834534, -0.18466240167617798, -0.12154316902160645, 0.13732381165027618, -0.34791451692581177, -0.13685950636863708, 0.09271296113729477, -0.26925522089004517, -0.22141103446483612, 0.0434977263212204, -0.02517504245042801, 0.20701920986175537, -0.20232093334197998, 0.24354471266269684, 0.2533644437789917, 0.12353590875864029, 0.045527853071689606, 0.35256433486938477, 0.4319118559360504, 0.27799487113952637, 0.15017957985401154, 0.057415444403886795, 0.04151012748479843, -0.17482246458530426, -0.08284103870391846, 0.09111806750297546, -0.053528085350990295, -0.046683941036462784, 0.2958522140979767, 0.22328008711338043, -0.16890358924865723, 0.1544051468372345, 0.12555724382400513, 0.3417232930660248, -0.4547678232192993, 0.2820918560028076, -0.630867600440979, -0.06948737055063248, -0.21157215535640717, -0.13798004388809204, -0.4139387905597687, 0.17528371512889862, 0.43453317880630493, -0.060492683202028275, 0.2071780264377594, -0.20562861859798431, 0.0917954370379448, 0.12013833224773407, 0.35958725214004517, 0.2865067422389984, 0.10323040187358856, -0.17038723826408386, -0.23344829678535461, -0.7816022634506226, 0.11828510463237762, 0.09972448647022247, -0.22271426022052765, -0.0012505194172263145, 0.1050679087638855, -0.07010608166456223, -0.11046180129051208, 0.4217793941497803, -0.00955166295170784, 0.023414891213178635, 0.23145462572574615, -0.007977180182933807, -0.12899383902549744, -0.06464147567749023, 0.1415679007768631, -0.014758055098354816, -0.21089479327201843, 0.1524243950843811, -0.14530229568481445, 0.07115983963012695, -0.03107592463493347, 0.22789284586906433, -0.14858222007751465, -0.218166321516037, 0.45692476630210876, -0.02433418296277523, 0.43693220615386963, -0.060270294547080994, -0.08216147869825363, -0.27674657106399536, -0.3207727074623108, -0.13241970539093018, 0.4343593716621399, 0.12422226369380951, 0.32064759731292725, -0.054228655993938446, -0.38765230774879456, -0.31655001640319824, 0.14210344851016998, 0.16037219762802124, -0.046687401831150055, -0.2427293062210083, 0.12233605235815048, -0.28457385301589966, 0.15635456144809723, 0.510823130607605, 0.13321086764335632, -0.08470891416072845, 0.10374978929758072, -0.1587538719177246, -0.39126530289649963, 0.4206015467643738, -0.4449044167995453, -0.052770256996154785, 0.04302675649523735, 0.22725126147270203, 0.055028192698955536, -0.05446798354387283, -0.4106195569038391, 0.12213040143251419, 0.6290261745452881, -0.07612587511539459, 0.1402582973241806, 0.29151085019111633, -0.2876821756362915, 0.0267905555665493, 0.06271970272064209, 0.25776374340057373, 0.13676345348358154, -0.20882540941238403, 0.1725696623325348, -0.17146402597427368 ]
https://github.com/huggingface/datasets/issues/3191
Dataset viewer issue for '*compguesswhat*'
There is an issue with the URLs of their data files: https://www.dropbox.com/s/l0nc13udml6vs0w/compguesswhat-original.zip?dl=1 > Dropbox Error: That didn't work for some reason Error reported to their repo: - https://github.com/CompGuessWhat/compguesswhat.github.io/issues/1
## Dataset viewer issue for '*compguesswhat*' **Link:** https://huggingface.co/datasets/compguesswhat File not found Am I the one who added this dataset ? No
28
Dataset viewer issue for '*compguesswhat*' ## Dataset viewer issue for '*compguesswhat*' **Link:** https://huggingface.co/datasets/compguesswhat File not found Am I the one who added this dataset ? No There is an issue with the URLs of their data files: https://www.dropbox.com/s/l0nc13udml6vs0w/compguesswhat-original.zip?dl=1 > Dropbox Error: That didn't work for some reason Error reported to their repo: - https://github.com/CompGuessWhat/compguesswhat.github.io/issues/1
[ -0.17199306190013885, -0.030392363667488098, -0.04243173450231552, 0.23945069313049316, 0.011768938973546028, 0.2051205039024353, 0.10340353101491928, 0.1494634747505188, -0.04931268095970154, -0.023695170879364014, 0.04798977077007294, 0.034223515540361404, -0.07393673062324524, 0.058750852942466736, 0.3575899302959442, 0.2224554866552353, 0.03638898581266403, 0.2551993429660797, -0.2445964217185974, 0.058396294713020325, -0.24825255572795868, 0.26036661863327026, -0.05933520197868347, 0.12499438226222992, -0.09266805648803711, -0.09636851400136948, -0.04336659237742424, 0.2949677109718323, -0.2585816979408264, -0.39662909507751465, 0.49900662899017334, 0.15977734327316284, -0.09071127325296402, 0.5648917555809021, -0.00010534708417253569, 0.09688134491443634, 0.30094531178474426, 0.04452713578939438, -0.450570672750473, -0.2069990485906601, -0.38851988315582275, -0.14514951407909393, 0.04632815718650818, 0.015829995274543762, -0.015366444364190102, -0.13998541235923767, 0.18916234374046326, -0.0516815222799778, 0.1958572119474411, 0.1489602029323578, 0.3059249818325043, 0.31804198026657104, 0.10615882277488708, -0.2289678454399109, 0.15547926723957062, 0.22678734362125397, -0.251046359539032, 0.44146186113357544, 0.19692644476890564, 0.21412770450115204, 0.3289774954319, 0.4613278806209564, 0.1069338470697403, 0.02318294160068035, 0.2546444833278656, -0.08976013958454132, 0.07218200713396072, -0.37161922454833984, 0.21675443649291992, 0.1281324326992035, 0.48123863339424133, -0.13239911198616028, -0.2043042629957199, -0.1393870711326599, 0.026526298373937607, -0.15346798300743103, 0.3370916545391083, 0.13154666125774384, 0.019891683012247086, 0.2654181122779846, -0.1338120996952057, -0.1334548443555832, 0.013813965022563934, 0.05633145943284035, 0.012156613171100616, 0.026851117610931396, -0.2845427989959717, 0.010673392564058304, 0.07114953547716141, -0.028754405677318573, 0.06184936314821243, -0.06885558366775513, -0.295488178730011, 0.14232079684734344, -0.04937996342778206, -0.13078953325748444, 0.009423278272151947, 0.11921608448028564, 0.1393793523311615, -0.018055297434329987, 0.18539419770240784, 0.04911355674266815, -0.0099404938519001, 0.12198825925588608, 0.32705387473106384, 0.125130757689476, 0.025948476046323776, -0.08920548856258392, 0.4261881709098816, 0.29320743680000305, 0.2623729705810547, 0.04348515346646309, -0.028102725744247437, -0.10118690133094788, -0.3976759910583496, -0.4417017996311188, 0.31603771448135376, -0.1347707062959671, -0.4619225859642029, 0.08493342995643616, 0.14800864458084106, 0.04085671901702881, 0.2013380527496338, 0.2372308075428009, 0.055095307528972626, -0.03984713554382324, 0.017649229615926743, -0.03017663210630417, -0.14502745866775513, -0.17968857288360596, -0.2757122218608856, 0.014748673886060715, 0.024057548493146896, 0.07458404451608658, 0.12613987922668457, -0.34516727924346924, 0.1241774931550026, -0.09821706265211105, -0.05913186073303223, -0.054652322083711624, -0.014622736722230911, 0.11484700441360474, -0.24869820475578308, 0.2879873514175415, -0.11186434328556061, 0.2123570591211319, -0.07070055603981018, -0.34809744358062744, 0.04955200105905533, 0.1898663341999054, -0.4463568925857544, -0.22496777772903442, -0.2677355706691742, 0.2802611291408539, -0.2575373947620392, -0.035958968102931976, -0.08552650362253189, 0.1999000906944275, -0.21614253520965576, -0.3539629280567169, -0.15650668740272522, 0.11270809918642044, 0.08711369335651398, -0.12243886291980743, 0.10919491201639175, 0.5985175371170044, -0.5656090378761292, -0.07388920336961746, -0.14813895523548126, -0.20707783102989197, -0.09465990215539932, 0.20154310762882233, -0.21632163226604462, -0.0701611265540123, -0.4796258807182312, -0.061529722064733505, 0.5506260395050049, -0.051243897527456284, -0.3511558473110199, 0.2158832997083664, -0.21475473046302795, 0.11377625912427902, 0.016725189983844757, 0.005675698630511761, -0.27041980624198914, -0.22491905093193054, -0.267413467168808, -0.28826814889907837, 0.1910874843597412, -0.13592609763145447, -0.18955376744270325, -0.32431671023368835, 0.06985197216272354, -0.01888432539999485, -0.007525179535150528, -0.000033445656299591064, 0.25774848461151123, -0.23498526215553284, 0.10605249553918839, -0.0913560688495636, -0.10332419723272324, 0.24833418428897858, 0.30509206652641296, 0.12475224584341049, 0.01823909766972065, -0.0204868633300066, -0.35072261095046997, 0.06831057369709015, -0.12915584444999695, -0.04790131747722626, -0.07417260110378265, -0.13800126314163208, -0.27001357078552246, 0.005965197458863258, -0.3054184019565582, -0.18523763120174408, 0.13124379515647888, 0.16912177205085754, -0.011050194501876831, 0.26238158345222473, -0.08247456699609756, 0.23268936574459076, 0.14606942236423492, 0.1802455186843872, -0.17548683285713196, 0.3730665147304535, -0.12973655760288239, 0.06318624317646027, 0.016687210649251938, 0.1547558456659317, 0.17330268025398254, -0.34733888506889343, -0.07170649617910385, 0.34139129519462585, -0.18091963231563568, 0.13174861669540405, 0.40581008791923523, -0.014171093702316284, 0.39247265458106995, -0.3702146112918854, 0.1519000232219696, 0.03979688510298729, 0.24795949459075928, -0.038133684545755386, -0.15627127885818481, 0.025133490562438965, -0.08048979938030243, -0.19467559456825256, 0.14579084515571594, 0.16053733229637146, 0.35437142848968506, 0.05274786427617073, 0.10652561485767365, -0.04064226895570755, 0.1060357540845871, 0.11391681432723999, 0.330406129360199, 0.07716735452413559, -0.5010452270507812, 0.17441919445991516, 0.22532561421394348, -0.05322419852018356, -0.08746632188558578, 0.16803479194641113, -0.2969051003456116, -0.09551463276147842, -0.038547977805137634, 0.32525408267974854, 0.38268452882766724, 0.2416963428258896, 0.02105257660150528, 0.027455998584628105, 0.005056861322373152, -0.27760186791419983, 0.2820654809474945, 0.10944163799285889, -0.18141818046569824, -0.021498553454875946, -0.00088143115863204, -0.0038934843614697456, -0.4743763208389282, 0.07179920375347137, 0.09749893099069595, 0.028142960742115974, -0.2842327356338501, -0.07404390722513199, -0.23407848179340363, -0.5830598473548889, -0.2713336646556854, -0.1074862852692604, -0.31605252623558044, -0.3359345495700836, 0.15391677618026733, 0.1624431312084198, -0.05979336053133011, 0.08744368702173233, -0.2433314025402069, 0.4234102666378021, -0.17365191876888275, 0.32841935753822327, -0.25636717677116394, 0.0720258355140686, -0.20417073369026184, 0.0917632132768631, 0.36082693934440613, 0.016126934438943863, 0.2610001564025879, -0.3705618977546692, 0.2246592938899994, -0.49080556631088257, -0.4571203887462616, 0.1720188856124878, -0.10273316502571106, 0.30546054244041443, 0.08400217443704605, 0.06594324111938477, -0.06396828591823578, -0.22908538579940796, 0.17850442230701447, -0.009365295059978962, -0.03515557572245598, -0.05485622212290764, -0.006156803108751774, -0.2940405011177063, -0.07917141914367676, -0.2579503357410431, -0.32789814472198486, -0.17099863290786743, 0.13573160767555237, 0.06624305248260498, -0.009755358099937439, 0.37927284836769104, -0.017482813447713852, 0.1650812029838562, 0.09011087566614151, -0.17604438960552216, -0.4194691479206085, -0.5318800806999207, 0.4676801860332489, -0.42055171728134155, -0.5511009097099304, 0.305547297000885, 0.17396646738052368, 0.15415334701538086, -0.32248157262802124, -0.5492175817489624, -0.12609854340553284, -0.08432899415493011, 0.1125897467136383, 0.2060304433107376, -0.14307351410388947, 0.3220975697040558, -0.048270851373672485, -0.13544893264770508, -0.14885467290878296, -0.5091809034347534, 0.12372298538684845, 0.014820430427789688, 0.4398689270019531, -0.06675364077091217, 0.07565385848283768, -0.08859065175056458, 0.7422906756401062, 0.11622528731822968, -0.0732174813747406, 0.39868396520614624, -0.22302913665771484, 0.7018806338310242, -0.041046492755413055, -0.28904420137405396, 0.1517716497182846, -0.11460793018341064, 0.21271225810050964, 0.24268950521945953, 0.20100030303001404, -0.09876792132854462, -0.23154239356517792, 0.038811665028333664, -0.34944823384284973, -0.03306405991315842, -0.2877368927001953, 0.04271400347352028, -0.07752048224210739, 0.2918074131011963, -0.01972012221813202, -0.22137105464935303, -0.3098486363887787, -0.03296591341495514, 0.5427409410476685, 0.09413904696702957, 0.10790866613388062, -0.1800575852394104, 0.07334033399820328, -0.14623451232910156, 0.37874168157577515, -0.10977523028850555, 0.008520207367837429, -0.24057099223136902, -0.009737098589539528, 0.15894284844398499, -0.07267992943525314, 0.4792870879173279, -0.08845903724431992, -0.1310611367225647, -0.0636720061302185, 0.19368872046470642, -0.12993456423282623, -0.18355630338191986, 0.08320900797843933, 0.09765064716339111, 0.3616209030151367, 0.10862504690885544, -0.11731275916099548, -0.08152022957801819, 0.4424588680267334, -0.00030727864941582084, -0.21790528297424316, -0.04325844720005989, -0.18366746604442596, -0.33451059460639954, 0.09846695512533188, -0.2936076521873474, -0.1526055932044983, 0.0023521152324974537, 0.0022090142592787743, -0.2684662938117981, 0.15121841430664062, -0.10573486983776093, 0.09776279330253601, 0.1423095315694809, 0.3061296343803406, 0.16497349739074707, 0.2630627453327179, 0.4835399091243744, 0.7639777660369873, 0.29132524132728577, 0.6771788001060486, 0.1160988062620163, -0.2627640664577484, 0.16044649481773376, -0.19938935339450836, 0.19078272581100464, 0.41758739948272705, -0.17067348957061768, -0.14825725555419922, 0.25651678442955017, 0.21918629109859467, -0.2770906388759613, -0.048160288482904434, 0.5723032355308533, 0.05125033110380173, -0.5136231780052185, -0.2372218668460846, 0.19037431478500366, -0.05436597764492035, -0.08777671307325363, 0.3221084177494049, 0.2673041820526123, -0.12112301588058472, -0.2407325655221939, -0.32585975527763367, 0.9483555555343628, 0.08212362974882126, -0.01322215422987938, 0.22540223598480225, -0.2096114158630371, 0.5300158262252808, -0.10917221009731293, 0.1732485294342041, -0.13002213835716248, -0.27290329337120056, -0.20244725048542023, -0.1928253471851349, 0.38007330894470215, -0.15337519347667694, -0.13589052855968475, 0.15094666182994843, 0.1706782430410385, 0.15476039052009583, -0.09718672186136246, 0.2615527808666229, 0.007652238942682743, 0.1254250407218933, 0.223735049366951, 0.24268460273742676, 0.005817975848913193, 0.2597123384475708, -0.11619219183921814, -0.28948551416397095, -0.22308781743049622, -0.388422429561615, -0.31781959533691406, 0.07901846617460251, -0.3527427017688751, 0.10608258098363876, 0.1654209941625595, -0.48155152797698975, 0.22985044121742249, 0.021580729633569717, 0.07018601894378662, -0.0667727142572403, -0.37088093161582947, 0.37535008788108826, -0.20761188864707947, 0.015654917806386948, -0.12268810719251633, 0.12263917922973633, 0.04238225147128105, -0.1214069202542305, -0.04500206559896469, 0.009615737944841385, -0.048594873398542404, -0.07817060500383377, -0.24236100912094116, -0.10682116448879242, -0.24544866383075714, -0.13827598094940186, -0.06718944013118744, -0.033507950603961945, 0.11128050088882446, -0.3564298450946808, 0.16904351115226746, 0.07925491034984589, -0.040840230882167816, -0.1474389135837555, 0.06054215133190155, -0.1396733969449997, -0.2899485230445862, 0.2984773814678192, -0.17741912603378296, -0.004467908293008804, 0.4333431124687195, -0.1583174765110016, -0.3569421172142029, -0.239241361618042, 0.12196221202611923, -0.0376494824886322, -0.46913325786590576, -0.13040931522846222, -0.0820515900850296, 0.08294641971588135, -0.07202446460723877, 0.291314959526062, 0.25399965047836304, 0.03752078860998154, -0.10055620968341827, -0.32284557819366455, -0.006187271326780319, 0.0022862330079078674, -0.07288074493408203, 0.3318514823913574, -0.1492716670036316, 0.08296290040016174, 0.45035356283187866, 0.07292794436216354, -0.36655357480049133, 0.06631338596343994, 0.029387978836894035, -0.29154273867607117, 0.2545930743217468, 0.20162424445152283, 0.21898876130580902, -0.18700739741325378, 0.1864389330148697, -0.06436651945114136, -0.25945577025413513, -0.16496986150741577, 0.026029888540506363, 0.11705528944730759, -0.11328352242708206, -0.40290945768356323, -0.08257560431957245, 0.11964169144630432, -0.049447592347860336, 0.24870911240577698, -0.01180706825107336, -0.2522718906402588, 0.0328475758433342, -0.14848817884922028, -0.13372297585010529, -0.24012303352355957, 0.114490807056427, 0.20782162249088287, 0.2184959203004837, 0.5122314095497131, 0.08476731926202774, 0.056530654430389404, -0.08094685524702072, -0.13021981716156006, 0.03285869583487511, 0.06745259463787079, -0.17956991493701935, 0.108658067882061, 0.30313944816589355, -0.5052475929260254, 0.1399122029542923, 0.26525503396987915, 0.3060190677642822, 0.37015748023986816, -0.2544853985309601, 0.10661546885967255, 0.3768722712993622, 0.1672637164592743, -0.46205708384513855, -0.09078840166330338, 0.3609987497329712, 0.1564563512802124, -0.14163701236248016, -0.021274514496326447, 0.3800283372402191, 0.17764857411384583, 0.04716293886303902, -0.006557724438607693, 0.7194367051124573, 0.08793585002422333, 0.3767169415950775, 0.20777180790901184, -0.14212706685066223, 0.17365361750125885, 0.1655280441045761, 0.22144240140914917, -0.09327057749032974, 0.26113420724868774, -0.4599319100379944, -0.19847114384174347, 0.11856591701507568, 0.26391157507896423, 0.08792176842689514, -0.36541035771369934, 0.08894234895706177, -0.029308557510375977, -0.1827835738658905, -0.042585574090480804, 0.06354609876871109, 0.46917206048965454, -0.35383883118629456, 0.015203481540083885, -0.41797077655792236, 0.2206544429063797, -0.10696084052324295, 0.13575543463230133, 0.007754333317279816, -0.39583906531333923, -0.0286540687084198, -0.09456697106361389, 0.08719056099653244, -0.25380146503448486, 0.16818439960479736, -0.05937594175338745, -0.2055232971906662, -0.24498926103115082, 0.10936466604471207, -0.06229078024625778, 0.06945137679576874, -0.06536874920129776, 0.3662249445915222, 0.12949272990226746, 0.08873830735683441, 0.24968193471431732, 0.5539851784706116, 0.4728899896144867, 0.17929385602474213, 0.2231142371892929, -0.05886681005358696, -0.08962026238441467, -0.21133184432983398, -0.1222183108329773, 0.3505086302757263, 0.009182952344417572, -0.15354706346988678, 0.26193851232528687, 0.21611666679382324, -0.14029906690120697, 0.28689464926719666, 0.045571219176054, 0.3136795461177826, -0.2809500992298126, 0.2205185443162918, -0.5910066366195679, -0.06331232190132141, -0.31387031078338623, -0.2588970959186554, -0.20707783102989197, 0.37594807147979736, 0.35606974363327026, -0.1515444964170456, 0.11593391746282578, -0.1870100200176239, 0.10957637429237366, 0.2028767317533493, 0.5473328828811646, 0.25402289628982544, 0.11112350970506668, 0.010200796648859978, -0.33912238478660583, -0.7307994365692139, 0.1144663617014885, 0.042497970163822174, -0.0304713174700737, -0.05505011975765228, -0.000746479257941246, -0.0055631548166275024, -0.09923888742923737, 0.4833970069885254, 0.21044610440731049, 0.09348370134830475, -0.06749747693538666, -0.16045737266540527, 0.09792323410511017, 0.05589858815073967, 0.16258631646633148, -0.05135827139019966, 0.002539250999689102, 0.340478777885437, 0.13916628062725067, -0.026852604001760483, 0.09506093710660934, 0.33999472856521606, -0.5552453994750977, -0.3372427225112915, 0.3536086678504944, 0.12649092078208923, 0.45006221532821655, 0.0056673698127269745, 0.061956025660037994, -0.19275709986686707, -0.4718073308467865, -0.1261211782693863, 0.363615483045578, 0.16776515543460846, 0.25493094325065613, -0.06263305246829987, -0.3964172303676605, -0.1708935648202896, 0.015969598665833473, 0.023106135427951813, 0.22187140583992004, -0.28196829557418823, 0.039128564298152924, -0.20895615220069885, -0.006311329547315836, 0.466937392950058, -0.033251628279685974, -0.12406952679157257, -0.05258317291736603, -0.014475919306278229, -0.13056913018226624, 0.4349680542945862, -0.3518322706222534, 0.00041784532368183136, 0.05066181719303131, 0.24272148311138153, 0.15232183039188385, -0.2177736908197403, -0.15703155100345612, 0.0023928210139274597, 0.4547446668148041, -0.006174128502607346, 0.06682470440864563, 0.18160481750965118, -0.32039740681648254, -0.08618208020925522, 0.09422531723976135, 0.33058246970176697, 0.23098862171173096, -0.28481608629226685, 0.24358880519866943, -0.08317437767982483 ]
https://github.com/huggingface/datasets/issues/3190
combination of shuffle and filter results in a bug
Hi ! There was a regression in `datasets` 1.12 that introduced this bug. It has been fixed in #3019 in 1.13 Can you try to update `datasets` and try again ?
## Describe the bug Hi, I would like to shuffle a dataset, then filter it based on each existing label. however, the combination of `filter`, `shuffle` seems to results in a bug. In the minimal example below, as you see in the filtered results, the filtered labels are not unique, meaning filter has not worked. Any suggestions as a temporary fix is appreciated @lhoestq. Thanks. Best regards Rabeeh ## Steps to reproduce the bug ```python import numpy as np import datasets datasets = datasets.load_dataset('super_glue', 'rte', script_version="master") shuffled_data = datasets["train"].shuffle(seed=42) for label in range(2): print("label ", label) data = shuffled_data.filter(lambda example: int(example['label']) == label) print("length ", len(data), np.unique(data['label'])) ``` ## Expected results Filtering per label, should only return the data with that specific label. ## Actual results As you can see, filtered data per label, has still two labels of [0, 1] ``` label 0 length 1249 [0 1] label 1 length 1241 [0 1] ``` ## Environment info <!-- You can run the command `datasets-cli env` and copy-and-paste its output below. --> - `datasets` version: 1.12.1 - Platform: linux - Python version: 3.7.11 - PyArrow version: 5.0.0
31
combination of shuffle and filter results in a bug ## Describe the bug Hi, I would like to shuffle a dataset, then filter it based on each existing label. however, the combination of `filter`, `shuffle` seems to results in a bug. In the minimal example below, as you see in the filtered results, the filtered labels are not unique, meaning filter has not worked. Any suggestions as a temporary fix is appreciated @lhoestq. Thanks. Best regards Rabeeh ## Steps to reproduce the bug ```python import numpy as np import datasets datasets = datasets.load_dataset('super_glue', 'rte', script_version="master") shuffled_data = datasets["train"].shuffle(seed=42) for label in range(2): print("label ", label) data = shuffled_data.filter(lambda example: int(example['label']) == label) print("length ", len(data), np.unique(data['label'])) ``` ## Expected results Filtering per label, should only return the data with that specific label. ## Actual results As you can see, filtered data per label, has still two labels of [0, 1] ``` label 0 length 1249 [0 1] label 1 length 1241 [0 1] ``` ## Environment info <!-- You can run the command `datasets-cli env` and copy-and-paste its output below. --> - `datasets` version: 1.12.1 - Platform: linux - Python version: 3.7.11 - PyArrow version: 5.0.0 Hi ! There was a regression in `datasets` 1.12 that introduced this bug. It has been fixed in #3019 in 1.13 Can you try to update `datasets` and try again ?
[ 0.23274286091327667, -0.15312457084655762, 0.033300090581178665, 0.1521296203136444, 0.14327295124530792, -0.11169606447219849, 0.2651188373565674, 0.04274857044219971, 0.09698288142681122, 0.19148129224777222, -0.3320682644844055, 0.5272728204727173, -0.2565171718597412, 0.019674966111779213, -0.08463002741336823, 0.11352252960205078, 0.22001078724861145, -0.08017748594284058, 0.240188330411911, -0.1659160554409027, -0.2192484736442566, -0.11417025327682495, -0.4065214991569519, -0.09247787296772003, -0.21467839181423187, 0.02917078696191311, 0.06319133937358856, -0.05249730497598648, -0.08672446012496948, 0.12177813798189163, 0.1559276431798935, 0.460810124874115, -0.2759886682033539, 0.5565038919448853, -0.00011831465235445648, 0.03829125314950943, 0.19967199862003326, -0.01838483102619648, -0.13243962824344635, -0.392278254032135, 0.06014831364154816, 0.47417619824409485, -0.25359904766082764, 0.1168474331498146, -0.07245206832885742, -0.14363481104373932, -0.19663652777671814, -0.11892130970954895, 0.23828022181987762, -0.15781357884407043, 0.13230521976947784, -0.28107431530952454, -0.07611967623233795, 0.1742737591266632, 0.5770319104194641, 0.20811374485492706, 0.09540259093046188, 0.2048233598470688, 0.5185902714729309, -0.10176355391740799, 0.31136125326156616, 0.3658149838447571, -0.13086773455142975, 0.02245882898569107, 0.09014569222927094, -0.0682508572936058, 0.10002118349075317, -0.32516247034072876, 0.07387597858905792, 0.25817474722862244, 0.10280384123325348, -0.20375752449035645, -0.5805409550666809, -0.3493559658527374, 0.0759446993470192, -0.12694022059440613, 0.006165355443954468, -0.0816938504576683, -0.23657327890396118, -0.22661253809928894, -0.2365189790725708, 0.20607689023017883, 0.35909613966941833, 0.09771252423524857, 0.12487411499023438, 0.7664953470230103, 0.037104640156030655, 0.21908950805664062, 0.1671867072582245, -0.19209662079811096, 0.47894465923309326, -0.1907527595758438, 0.109551340341568, 0.27786099910736084, -0.23465244472026825, -0.05408607795834541, 0.0993441492319107, 0.16102619469165802, 0.15975189208984375, -0.07787300646305084, 0.08772344142198563, 0.07698342949151993, 0.07015258073806763, 0.14505654573440552, 0.33760935068130493, 0.06499414145946503, 0.19956094026565552, 0.4244193136692047, 0.050300728529691696, 0.10272906720638275, -0.2460009604692459, 0.016964511945843697, 0.17556482553482056, 0.1925916224718094, 0.069048210978508, -0.13034087419509888, 0.05143792927265167, -0.06824710220098495, -0.21932466328144073, -0.22369375824928284, -0.49367669224739075, -0.19107191264629364, 0.33373481035232544, 0.12239052355289459, 0.012393093667924404, 0.057687483727931976, 0.03363216668367386, 0.03181049972772598, -0.06808097660541534, 0.06537968665361404, -0.06520526111125946, -0.07279908657073975, -0.1691484898328781, -0.15681976079940796, 0.1608433574438095, -0.27375292778015137, 0.1697302758693695, 0.3562219440937042, -0.033612653613090515, -0.1412302851676941, -0.05353663116693497, -0.012967233546078205, 0.06941131502389908, 0.17820189893245697, 0.1553824245929718, 0.019102515652775764, -0.01748940721154213, -0.41093283891677856, -0.04977865144610405, 0.15629063546657562, -0.39287513494491577, 0.09852291643619537, 0.2194407731294632, 0.1351189762353897, -0.01722550205886364, 0.14229828119277954, -0.19575875997543335, 0.3078101873397827, 0.16633743047714233, -0.22952385246753693, -0.04914586991071701, -0.2953113913536072, -0.31901708245277405, -0.14308112859725952, 0.054460763931274414, -0.0017264634370803833, -0.11885891854763031, -0.21880590915679932, -0.2674616277217865, -0.019408609718084335, 0.2560305595397949, 0.398298978805542, -0.04598439857363701, -0.09352248162031174, -0.01773909106850624, -0.25589457154273987, 0.30431416630744934, 0.019091282039880753, -0.3315223157405853, -0.3089677393436432, -0.013187721371650696, 0.5003301501274109, -0.14094257354736328, 0.1233195960521698, 0.21473801136016846, -0.14439712464809418, 0.512435793876648, 0.1342265009880066, -0.27720746397972107, -0.09024178981781006, -0.2718447148799896, 0.1479547619819641, 0.1295044720172882, 0.27477630972862244, -0.1212165504693985, 0.071562260389328, 0.2366965413093567, -0.14914976060390472, 0.26766398549079895, 0.10792914032936096, 0.0886426717042923, -0.10582214593887329, 0.20132751762866974, 0.37089550495147705, 0.24903175234794617, -0.255893737077713, -0.008598484098911285, -0.028708290308713913, 0.009777899831533432, -0.19378630816936493, 0.2227865755558014, -0.2622683644294739, -0.047670092433691025, -0.16724225878715515, -0.20055259764194489, -0.27935001254081726, 0.05163097381591797, 0.04911167919635773, 0.04532423987984657, -0.19530296325683594, -0.022063087671995163, 0.20341254770755768, -0.25242969393730164, -0.02393563836812973, -0.22005614638328552, 0.4185439944267273, 0.16296572983264923, -0.08479002118110657, -0.24349908530712128, 0.17094340920448303, 0.31139639019966125, 0.20973284542560577, 0.0617981031537056, 0.3443061113357544, 0.23312608897686005, -0.48741990327835083, -0.32770034670829773, -0.1153787225484848, 0.15439295768737793, 0.08291766047477722, -0.15142850577831268, -0.037180401384830475, 0.4300498962402344, -0.09387336671352386, -0.2666357159614563, 0.4246528744697571, -0.4405522346496582, 0.2116708755493164, 0.09777228534221649, -0.03428245335817337, 0.2694040834903717, -0.016490526497364044, -0.07053105533123016, -0.010055538266897202, 0.3263963758945465, -0.2569962739944458, -0.16792792081832886, 0.09142402559518814, -0.3633231818675995, 0.10609069466590881, 0.062354784458875656, 0.023657873272895813, -0.1364927887916565, -0.04014367610216141, 0.15457943081855774, 0.1019931361079216, -0.19948410987854004, 0.4961659014225006, 0.39467304944992065, 0.26882708072662354, -0.09306029975414276, 0.17759251594543457, 0.024713072925806046, -0.16308923065662384, -0.012551747262477875, 0.1275857836008072, -0.15455764532089233, 0.0877259224653244, 0.37128710746765137, 0.10284668207168579, -0.09238764643669128, -0.15134376287460327, 0.1118585392832756, 0.007901486940681934, -0.2249830663204193, -0.11020568013191223, -0.2821179926395416, -0.4204501211643219, -0.1595216989517212, -0.11965113133192062, -0.11676892638206482, -0.050183944404125214, 0.2796972095966339, 0.6182776689529419, -0.12929986417293549, 0.24041339755058289, 0.41603541374206543, 0.19107013940811157, -0.20060719549655914, 0.019587049260735512, 0.06349042803049088, -0.1221383810043335, -0.26501941680908203, 0.028265539556741714, -0.020904529839754105, 0.16147218644618988, 0.25806355476379395, 0.12572531402111053, -0.30556631088256836, -0.14467018842697144, -0.500929594039917, -0.046741366386413574, 0.056929461658000946, 0.33736762404441833, -0.2218540608882904, -0.355881929397583, -0.2647212743759155, -0.278148889541626, 0.26417237520217896, -0.1862187385559082, -0.05231877416372299, 0.2131299078464508, 0.06885010004043579, -0.012750891037285328, -0.3923534154891968, -0.1300049126148224, -0.4266849756240845, 0.009792216122150421, -0.1690359264612198, -0.20227570831775665, 0.07698499411344528, 0.13303446769714355, -0.15418510138988495, -0.5149539709091187, -0.46212485432624817, -0.18766742944717407, -0.3447588384151459, -0.3383408784866333, 0.06949995458126068, 0.022599564865231514, -0.14247196912765503, -0.23777395486831665, -0.24049164354801178, -0.3220581114292145, 0.6282309889793396, 0.11583897471427917, -0.028455263003706932, 0.014954940415918827, -0.2569149136543274, 0.20979321002960205, 0.2310781031847, 0.2792002558708191, -0.07802774757146835, 0.14420080184936523, -0.2609614431858063, -0.43989765644073486, 0.011210225522518158, 0.016053391620516777, 0.4219783842563629, 0.09656623005867004, 0.3915693759918213, 0.06243656203150749, 0.42029285430908203, 0.05836379900574684, 0.2165849804878235, 0.139389306306839, 0.004464209079742432, 0.26807549595832825, -0.0476091131567955, -0.40914463996887207, 0.08171265572309494, 0.24306677281856537, -0.15321533381938934, 0.04444655403494835, 0.22384610772132874, -0.12509135901927948, -0.19100119173526764, 0.356992244720459, -0.2510530948638916, -0.11883209645748138, -0.2179674208164215, 0.3533463478088379, -0.06326543539762497, 0.2789377272129059, -0.04040039703249931, 0.10318085551261902, -0.22654959559440613, -0.43511319160461426, 0.1865643560886383, 0.03158638998866081, 0.15442486107349396, -0.42878416180610657, -0.2893347442150116, 0.24647676944732666, 0.012304551899433136, 0.31671541929244995, 0.39216578006744385, -0.10776834189891815, 0.15762129426002502, 0.18004679679870605, 0.3196091055870056, 0.8624773025512695, -0.2958640158176422, 0.14192326366901398, 0.28560954332351685, 0.041496641933918, -0.27147331833839417, -0.19856896996498108, -0.12034378945827484, -0.21201495826244354, 0.2906912863254547, 0.3287014663219452, -0.01933327317237854, 0.27657461166381836, -0.2040686458349228, 0.10905826836824417, -0.037279777228832245, -0.21502625942230225, -0.2645849287509918, -0.3368474245071411, -0.1330711841583252, 0.23237890005111694, -0.039453279227018356, 0.014587797224521637, -0.09882277250289917, 0.03338977321982384, 0.27243417501449585, -0.0075947605073452, 0.06082535535097122, 0.11521315574645996, 0.15772071480751038, 0.1812349110841751, 0.37827280163764954, 0.13201911747455597, -0.16750730574131012, 0.14162613451480865, 0.16647616028785706, -0.06784142553806305, -0.018392063677310944, -0.14938896894454956, -0.3704858124256134, -0.11679036170244217, 0.21227353811264038, -0.04632030054926872, 0.1131148412823677, -0.21868562698364258, 0.03972918912768364, 0.1723450869321823, -0.26936084032058716, -0.10520359873771667, -0.03732657432556152, -0.5568655729293823, -0.5905951261520386, 0.26160958409309387, 0.19136928021907806, -0.1834040880203247, 0.7552167177200317, -0.06410220265388489, -0.3031952381134033, 0.3054705262184143, -0.40236079692840576, 0.6513969302177429, 0.11626722663640976, -0.21696603298187256, 0.04153929650783539, -0.3338693380355835, 0.39232081174850464, 0.09807978570461273, 0.2985038757324219, -0.06958146393299103, -0.4879589378833771, 0.09453829377889633, -0.08603842556476593, -0.09462874382734299, 0.10514649003744125, -0.058914441615343094, 0.35829734802246094, -0.12145313620567322, -0.08373755216598511, 0.09557921439409256, -0.215079665184021, -0.045252516865730286, 0.03868792951107025, -0.01773424819111824, 0.032673127949237823, -0.07928654551506042, 0.2704477608203888, 0.0008016042411327362, 0.07544934004545212, -0.10957693308591843, -0.18566320836544037, -0.17206084728240967, 0.1009422168135643, -0.03101462684571743, -0.09677228331565857, 0.0645294338464737, 0.11185568571090698, 0.01631743088364601, -0.43748006224632263, 0.055601246654987335, 0.16526208817958832, 0.017189212143421173, 0.31265294551849365, 0.5342881083488464, 0.6526532173156738, 0.008685710839927197, -0.03112379088997841, 0.1773262619972229, 0.1834670901298523, -0.08882807195186615, -0.20603644847869873, 0.18200524151325226, -0.40677833557128906, -0.669788658618927, -0.026461996138095856, 0.3282333016395569, 0.14175771176815033, 0.26398614048957825, 0.11389722675085068, 0.21974235773086548, -0.348178893327713, 0.07755762338638306, -0.0802619457244873, 0.0627986267209053, 0.3217858672142029, -0.2774524986743927, 0.08253638446331024, -0.10618476569652557, 0.3543317914009094, 0.3140910863876343, 0.13640303909778595, -0.1278446614742279, -0.04009773209691048, -0.2018207311630249, 0.036805085837841034, -0.039792682975530624, -0.15556441247463226, -0.13667500019073486, 0.3219180405139923, -0.2545866072177887, 0.08857512474060059, 0.15030540525913239, 0.04531177878379822, -0.09175954759120941, 0.30542227625846863, 0.3602948784828186, -0.597159206867218, -0.028554610908031464, 0.22026701271533966, 0.2723068594932556, -0.040003206580877304, 0.011420249938964844, 0.4344840943813324, 0.0024988800287246704, 0.015648070722818375, -0.21610473096370697, 0.04514426738023758, 0.2970431447029114, 0.2778511345386505, -0.21568502485752106, 0.30480721592903137, -0.3196556866168976, -0.12616969645023346, 0.01850106753408909, 0.13757601380348206, -0.14741487801074982, -0.1283855140209198, -0.11372095346450806, 0.14052799344062805, 0.2492275834083557, -0.11208073049783707, 0.03802790865302086, -0.2015434354543686, 0.09803900122642517, -0.11878111958503723, 0.13270820677280426, 0.3740893006324768, -0.012947916984558105, -0.12051612883806229, 0.21970109641551971, 0.008778456598520279, 0.18914109468460083, 0.2894866466522217, -0.366149365901947, -0.502050518989563, 0.17838211357593536, 0.05939806252717972, 0.07798229157924652, 0.05711613595485687, -0.4276385009288788, -0.40362170338630676, -0.39458537101745605, -0.06341934949159622, 0.14385724067687988, -0.32072991132736206, 0.28931888937950134, 0.4866834282875061, 0.24791604280471802, 0.35773804783821106, -0.1968006044626236, -0.19439701735973358, 0.28362637758255005, 0.14286839962005615, -0.2598189115524292, -0.07774088531732559, 0.20679830014705658, 0.7292207479476929, -0.05167834088206291, 0.05290999263525009, -0.23313704133033752, -0.37058737874031067, -0.19694839417934418, 0.1143326684832573, 0.4099167585372925, -0.4776855707168579, 0.41784295439720154, 0.43813472986221313, 0.3417288362979889, 0.05014921724796295, 0.009080780670046806, -0.06776854395866394, -0.45775362849235535, 0.5366789698600769, 0.09641053527593613, 0.26624172925949097, 0.11908428370952606, -0.0759967714548111, -0.039999738335609436, -0.19506844878196716, 0.037150874733924866, 0.7225058674812317, -0.4886610507965088, 0.21662575006484985, 0.11918122321367264, -0.2329016625881195, -0.028554674237966537, -0.028874319046735764, 0.23805353045463562, 0.1003936231136322, 0.0021981969475746155, -0.004049878567457199, -0.05193188041448593, -0.4478919506072998, -0.15982085466384888, 0.07198761403560638, 0.030958013609051704, 0.013462591916322708, 0.2751268744468689, -0.18613360822200775, -0.44217658042907715, -0.7752507925033569, -0.5559277534484863, 0.23464709520339966, 0.23213782906532288, -0.23692364990711212, -0.10171955078840256, 0.1789085865020752, -0.12551511824131012, 0.6517860293388367, -0.0075622666627168655, 0.1611497402191162, 0.33706188201904297, 0.2229137420654297, -0.002906208857893944, -0.17535658180713654, -0.08028735220432281, 0.13981525599956512, 0.363174706697464, 0.5575748682022095, -0.1898384541273117, -0.10028266906738281, 0.04599399119615555, -0.13362815976142883, 0.18479467928409576, 0.35834866762161255, 0.3194712698459625, -0.4444974362850189, 0.2851865887641907, -0.07393082231283188, 0.235683411359787, 0.10258007049560547, -0.06035763770341873, -0.18952763080596924, 0.03374810516834259, -0.0831814557313919, 0.320289671421051, 0.1357247531414032, 0.016509350389242172, 0.03678647801280022, 0.08564430475234985, -0.15406058728694916, -0.035915520042181015, -0.4419088661670685, 0.05589645355939865, -0.11571474373340607, -0.5012245178222656, -0.11579430848360062, -0.1235300749540329, 0.06504414975643158, 0.11571294069290161, 0.08665000647306442, -0.06086929887533188, 0.07656707614660263, -0.1074102520942688, 0.044643860310316086, 0.02996768429875374, 0.16476839780807495, -0.2833728492259979, -0.21200381219387054, -0.17795826494693756, -0.021525243297219276, 0.17172428965568542, -0.28450486063957214, 0.08576246351003647, -0.3885672092437744, -0.01340007409453392, 0.061896976083517075, 0.04108940064907074, 0.18312934041023254, 0.11662256717681885, -0.19259876012802124, 0.2179545760154724, 0.46492433547973633, 0.10890550166368484, 0.3146395683288574, -0.255277544260025, -0.18647180497646332, -0.39542073011398315, 0.016971703618764877, 0.14039845764636993, 0.40406090021133423, -0.0982564389705658, -0.2630445659160614, -0.08528564125299454, 0.29532161355018616, -0.30063557624816895, 0.13542960584163666, -0.21691595017910004, 0.1430627405643463, 0.23234760761260986, 0.30622926354408264, -0.2809908986091614, 0.007168617099523544, -0.02527587115764618, 0.2514469623565674, -0.20623470842838287, -0.3246552050113678, 0.6598994731903076, -0.5506137609481812, -0.30238354206085205, -0.42527198791503906, 0.2889218330383301, 0.04748513922095299, -0.17419332265853882, 0.10125964134931564, -0.08545900881290436, 0.3534843325614929, -0.0651911050081253, 0.17455901205539703, 0.08938983082771301, -0.12477213144302368, 0.024576503783464432, -0.04005485028028488, -0.4138372540473938, 0.256695419549942, -0.37950724363327026, 0.6123273372650146, -0.1575334072113037 ]
https://github.com/huggingface/datasets/issues/3189
conll2003 incorrect label explanation
Hi @BramVanroy, since these fields are of type `ClassLabel` (you can check this with `dset.features`), you can inspect the possible values with: ```python dset.features[field_name].feature.names # .feature because it's a sequence of labels ``` and to find the mapping between names and integers, use: ```python dset.features[field_name].feature.int2str(value_or_values_list) # map integer value to string value # or dset.features[field_name].feature.str2int(value_or_values_list) # map string value to integer value ```
In the [conll2003](https://huggingface.co/datasets/conll2003#data-fields) README, the labels are described as follows > - `id`: a `string` feature. > - `tokens`: a `list` of `string` features. > - `pos_tags`: a `list` of classification labels, with possible values including `"` (0), `''` (1), `#` (2), `$` (3), `(` (4). > - `chunk_tags`: a `list` of classification labels, with possible values including `O` (0), `B-ADJP` (1), `I-ADJP` (2), `B-ADVP` (3), `I-ADVP` (4). > - `ner_tags`: a `list` of classification labels, with possible values including `O` (0), `B-PER` (1), `I-PER` (2), `B-ORG` (3), `I-ORG` (4) `B-LOC` (5), `I-LOC` (6) `B-MISC` (7), `I-MISC` (8). First of all, it would be great if we can get a list of ALL possible pos_tags. Second, the chunk tags labels cannot be correct. The description says the values go from 0 to 4 whereas the data shows values from at least 11 to 21 and 0. EDIT: not really a bug, sorry for mistagging.
63
conll2003 incorrect label explanation In the [conll2003](https://huggingface.co/datasets/conll2003#data-fields) README, the labels are described as follows > - `id`: a `string` feature. > - `tokens`: a `list` of `string` features. > - `pos_tags`: a `list` of classification labels, with possible values including `"` (0), `''` (1), `#` (2), `$` (3), `(` (4). > - `chunk_tags`: a `list` of classification labels, with possible values including `O` (0), `B-ADJP` (1), `I-ADJP` (2), `B-ADVP` (3), `I-ADVP` (4). > - `ner_tags`: a `list` of classification labels, with possible values including `O` (0), `B-PER` (1), `I-PER` (2), `B-ORG` (3), `I-ORG` (4) `B-LOC` (5), `I-LOC` (6) `B-MISC` (7), `I-MISC` (8). First of all, it would be great if we can get a list of ALL possible pos_tags. Second, the chunk tags labels cannot be correct. The description says the values go from 0 to 4 whereas the data shows values from at least 11 to 21 and 0. EDIT: not really a bug, sorry for mistagging. Hi @BramVanroy, since these fields are of type `ClassLabel` (you can check this with `dset.features`), you can inspect the possible values with: ```python dset.features[field_name].feature.names # .feature because it's a sequence of labels ``` and to find the mapping between names and integers, use: ```python dset.features[field_name].feature.int2str(value_or_values_list) # map integer value to string value # or dset.features[field_name].feature.str2int(value_or_values_list) # map string value to integer value ```
[ 0.2851006090641022, -0.3064152002334595, 0.0021602902561426163, 0.6274861693382263, 0.13880765438079834, -0.054036304354667664, 0.33897900581359863, -0.006268545985221863, -0.3376254141330719, 0.056462813168764114, -0.24397249519824982, 0.16369543969631195, 0.14646977186203003, 0.5847406387329102, -0.11806564033031464, -0.028484508395195007, 0.10546716302633286, -0.13234609365463257, 0.08855612576007843, -0.26585203409194946, -0.3584335148334503, 0.31851187348365784, -0.31782597303390503, 0.3235013484954834, -0.34025052189826965, 0.11491096019744873, 0.08943907171487808, -0.12224005907773972, -0.23635821044445038, -0.4159289300441742, 0.21587084233760834, -0.04548318311572075, 0.030640792101621628, 0.04670766741037369, -0.00010929005657089874, -0.20894896984100342, 0.2177191823720932, -0.16341209411621094, -0.16437631845474243, 0.07028308510780334, 0.0744195207953453, -0.01848699152469635, -0.01084658782929182, -0.2458380162715912, -0.13000282645225525, 0.2500395178794861, -0.3090221583843231, 0.21447300910949707, -0.12966549396514893, 0.12680144608020782, 0.19818709790706635, -0.12708373367786407, 0.29462993144989014, 0.16729581356048584, 0.7190057039260864, 0.19510507583618164, -0.24823562800884247, 0.26343169808387756, 0.13328953087329865, 0.06318730115890503, 0.10298805683851242, 0.4718455970287323, 0.14796902239322662, -0.14074550569057465, 0.34154778718948364, 0.26487064361572266, -0.08659335225820541, -0.4870588481426239, 0.11381395906209946, 0.2865568697452545, 0.3525373339653015, -0.11945179849863052, -0.5183683037757874, -0.3287564516067505, -0.3517346680164337, -0.8694475293159485, 0.030075348913669586, 0.01880441978573799, 0.07916107773780823, -0.05636494979262352, -0.11320115625858307, 0.19726485013961792, -0.04022001475095749, 0.008607324212789536, -0.4291679561138153, 0.7640646696090698, -0.28554800152778625, 0.09756071865558624, 0.013123728334903717, -0.28348833322525024, -0.015740830451250076, 0.233555868268013, 0.19028188288211823, 0.27654728293418884, -0.1552698314189911, -0.16701479256153107, -0.16735726594924927, -0.09390034526586533, 0.03631684184074402, 0.036217398941516876, -0.24815113842487335, -0.13416486978530884, -0.23369286954402924, -0.015978433191776276, -0.03589224815368652, 0.12557926774024963, 0.5320594310760498, 0.21388787031173706, 0.08051067590713501, 0.1901341676712036, 0.15881837904453278, -0.06902489066123962, -0.00934878271073103, 0.03600785881280899, -0.132430300116539, -0.10779707878828049, -0.021665962412953377, -0.18412749469280243, -0.5320376753807068, 0.2540159225463867, -0.1025380790233612, 0.022481607273221016, 0.33921197056770325, 0.20500415563583374, -0.10035248845815659, 0.08224806189537048, 0.06521077454090118, -0.02930571138858795, 0.12738488614559174, -0.3924907445907593, -0.10504169017076492, -0.15900647640228271, -0.1474584937095642, -0.1017763614654541, 0.126222163438797, -0.036496639251708984, 0.2315729856491089, 0.22651681303977966, -0.018022708594799042, -0.03995206952095032, -0.297141432762146, -0.07661634683609009, 0.28117647767066956, 0.2230488359928131, -0.5597731471061707, 0.16697749495506287, 0.32629162073135376, -0.2869807779788971, -0.2807252109050751, -0.08370315283536911, -0.3925253450870514, 0.09277528524398804, -0.3060404062271118, 0.17148275673389435, 0.1339772343635559, -0.1493108868598938, 0.13990244269371033, 0.03982069715857506, 0.1074562817811966, 0.14452533423900604, 0.25877681374549866, -0.2148469239473343, -0.35487210750579834, -0.1722031682729721, 0.24260234832763672, 0.16510337591171265, -0.38328826427459717, -0.2260063737630844, 0.3460961580276489, 0.09083127975463867, 0.2119123339653015, 0.06240248680114746, 0.07835359126329422, -0.21978619694709778, -0.07536377012729645, 0.07828153669834137, 0.07604756951332092, -0.5613452792167664, 0.024521127343177795, 0.07864160090684891, 0.3894345164299011, -0.24365460872650146, -0.020211942493915558, -0.03610736504197121, 0.27439606189727783, -0.04232088476419449, 0.2826613485813141, -0.2810055613517761, 0.1414438933134079, -0.10157308727502823, -0.0868442952632904, -0.0023458171635866165, 0.13032853603363037, -0.024906303733587265, -0.1470538228750229, -0.19189399480819702, -0.1206640973687172, -0.1859132945537567, 0.03635987639427185, 0.05115202069282532, 0.15706466138362885, 0.21414615213871002, 0.20245952904224396, 0.193065345287323, 0.04468672722578049, 0.028656575828790665, -0.6858327984809875, 0.18845582008361816, -0.017590142786502838, 0.250789999961853, 0.2137129157781601, -0.09987136721611023, -0.32156455516815186, 0.023415865376591682, 0.06305520236492157, -0.22124680876731873, 0.17671765387058258, 0.012001067399978638, 0.027914654463529587, -0.13004671037197113, -0.3887976109981537, 0.31549081206321716, -0.04470410943031311, 0.31782832741737366, -0.003679877147078514, -0.23909050226211548, -0.07285846024751663, 0.02699696645140648, -0.30171671509742737, 0.22387564182281494, 0.5495327115058899, 0.09222026914358139, 0.01586456224322319, 0.1871223747730255, 0.4664861857891083, -0.47342801094055176, -0.09900913387537003, 0.23276284337043762, 0.3855876326560974, 0.06425125896930695, 0.02965298481285572, -0.21886605024337769, 0.03287433832883835, 0.06631501764059067, 0.06702180206775665, 0.35100996494293213, 0.18017147481441498, 0.27831795811653137, 0.0480625256896019, 0.06545596569776535, 0.24513497948646545, -0.1561865359544754, -0.20885716378688812, -0.2553439736366272, -0.08491194248199463, -0.021703913807868958, 0.3265170753002167, 0.38284584879875183, -0.549224853515625, 0.38369831442832947, 0.3301253616809845, -0.20690813660621643, -0.18733835220336914, 0.1563940942287445, -0.23815003037452698, 0.13755637407302856, -0.06086818128824234, 0.27481693029403687, -0.059009090065956116, 0.08504641801118851, 0.16933400928974152, 0.03884245455265045, -0.31132879853248596, -0.009003998711705208, 0.19554993510246277, 0.0693356841802597, 0.022006457671523094, -0.09176544100046158, -0.00939098373055458, 0.06292454898357391, 0.05926377326250076, -0.2352231740951538, 0.04221855849027634, -0.02523166500031948, -0.5072000026702881, 0.16852229833602905, -0.035146262496709824, -0.18183207511901855, -0.14534364640712738, -0.8314298987388611, -0.6038697361946106, -0.3849695026874542, 0.10115063190460205, -0.13236966729164124, -0.07161541283130646, 0.04721382260322571, -0.1634570211172104, 0.1540653109550476, -0.041174598038196564, 0.18798215687274933, -0.18871331214904785, -0.14161908626556396, -0.5278458595275879, -0.0016033221036195755, -0.1938645988702774, -0.08004290610551834, 0.04317403957247734, -0.5166993141174316, -0.010814521461725235, 0.11993782222270966, -0.6379427313804626, 0.41309988498687744, -0.38723742961883545, 0.07507354021072388, 0.21272461116313934, -0.14470995962619781, -0.22242499887943268, -0.06323754042387009, 0.18402759730815887, 0.09228474646806717, -0.3630594313144684, 0.014124523848295212, 0.02800656110048294, -0.034787390381097794, -0.30637943744659424, -0.23331907391548157, -0.22609616816043854, -0.07959839701652527, 0.23348046839237213, 0.21103937923908234, 0.31601446866989136, 0.5354114770889282, -0.3125356137752533, 0.1899467259645462, 0.04804621636867523, 0.5105807781219482, -0.45634031295776367, -0.3199639618396759, 0.19995558261871338, -0.11485505104064941, -0.2553814649581909, 0.1449965536594391, 0.016407858580350876, 0.11609654128551483, -0.28533512353897095, -0.08525996655225754, -0.09175219386816025, -0.24691160023212433, 0.07888844609260559, 0.03766970336437225, 0.1497698426246643, -0.024653084576129913, 0.11927560716867447, -0.012150321155786514, -0.17608627676963806, -0.4674035906791687, 0.26741132140159607, -0.03217601031064987, 0.3326594829559326, -0.07358910143375397, 0.028029030188918114, -0.026869118213653564, 0.44075047969818115, 0.18340438604354858, -0.18936091661453247, 0.1565893441438675, -0.08647250384092331, 0.27516108751296997, 0.07728863507509232, -0.001306513324379921, 0.14450086653232574, -0.049860045313835144, 0.03561437502503395, 0.12004442512989044, -0.02854754775762558, 0.06666833907365799, -0.1281120628118515, 0.502947211265564, -0.22276878356933594, -0.18876445293426514, -0.06181009113788605, 0.11724862456321716, -0.08773892372846603, -0.22504237294197083, 0.08661235123872757, -0.16609038412570953, -0.08894715458154678, 0.01610087789595127, -0.10362736880779266, -0.03350227326154709, -0.05862967669963837, -0.023691479116678238, 0.013581901788711548, -0.3107747733592987, 0.03654169291257858, 0.11463893204927444, 0.0232407134026289, -0.020965609699487686, -0.1372341364622116, 0.0726916640996933, 0.2709689736366272, 0.5791651606559753, -0.08519557863473892, 0.0491277314722538, 0.37201130390167236, 0.09961298108100891, -0.15220874547958374, -0.23065832257270813, -0.247208833694458, -0.6364165544509888, 0.7858012914657593, 0.5107423067092896, -0.3497732877731323, -0.2555147707462311, 0.24673321843147278, -0.21386541426181793, -0.16965752840042114, 0.1203051283955574, -0.17935648560523987, -0.12680816650390625, -0.05069104582071304, -0.1407276690006256, 0.37431600689888, 0.10241766273975372, -0.0628378614783287, 0.07093556225299835, 0.15513943135738373, 0.11509896069765091, 0.1620388776063919, 0.291106641292572, 0.1667860746383667, 0.1262812316417694, -0.04855936020612717, 0.018226144835352898, 0.48322731256484985, 0.1319873183965683, 0.47066646814346313, -0.0491018109023571, -0.41202592849731445, 0.20573487877845764, -0.029135923832654953, 0.3680645525455475, 0.09277929365634918, 0.1636800467967987, 0.06683178246021271, -0.39632201194763184, 0.1560923457145691, -0.2940022051334381, 0.10982323437929153, 0.32279765605926514, 0.15306499600410461, -0.2513105571269989, -0.17610587179660797, 0.6547062397003174, 0.0036458782851696014, -0.19556093215942383, -0.18448419868946075, 0.3472113609313965, -0.2722565531730652, 0.10773668438196182, 0.34492287039756775, 0.8217014670372009, -0.02728699892759323, -0.060913797467947006, 0.06468234956264496, -0.5261244177818298, 0.6328580379486084, 0.1530730128288269, -0.13230060040950775, -0.33886635303497314, -0.2712991535663605, -0.04456428438425064, 0.011741038411855698, -0.3522050082683563, 0.08225733786821365, -0.21197612583637238, 0.3074745833873749, -0.32074183225631714, 0.04097394645214081, 0.004604910034686327, -0.27205193042755127, 0.24541716277599335, -0.16525107622146606, 0.11516634374856949, 0.12570956349372864, 0.05597548186779022, 0.33422496914863586, 0.10222726315259933, -0.03684166818857193, -0.424043208360672, -0.016918163746595383, -0.23897942900657654, 0.01563463732600212, 0.037980977445840836, -0.2615959644317627, 0.5239242911338806, 0.043093934655189514, -0.1476953625679016, 0.20695191621780396, 0.5399485230445862, -0.1988821178674698, -0.16370658576488495, -0.15269902348518372, 0.27806898951530457, 0.16002106666564941, 0.14588382840156555, 0.09073685109615326, 0.4053198993206024, 0.10165000706911087, -0.026991210877895355, 0.049215905368328094, 0.07012316584587097, 0.005575548857450485, 0.22994190454483032, 0.014434199780225754, -0.1287994384765625, -0.365156888961792, 0.21923615038394928, -0.1754358410835266, 0.15907345712184906, -0.14674311876296997, 0.12387020885944366, -0.045074962079524994, -0.1720299869775772, -0.2021292746067047, 0.03409864753484726, -0.33664554357528687, -0.13367202877998352, -0.0874265804886818, -0.10914290696382523, 0.2827160954475403, 0.012614930048584938, 0.04878656193614006, -0.3271229863166809, 0.04542721062898636, 0.05516601353883743, -0.0562160350382328, -0.27280494570732117, 0.12190166115760803, 0.18295279145240784, -0.2891746759414673, -0.036162734031677246, 0.32711562514305115, 0.42601388692855835, 0.23412594199180603, -0.17541083693504333, -0.2142830491065979, -0.37922370433807373, 0.1951676309108734, -0.15022185444831848, 0.20596438646316528, -0.1781681478023529, 0.15016643702983856, 0.21667848527431488, -0.1986914724111557, -0.33292707800865173, -0.041102901101112366, -0.4022621810436249, 0.0496603325009346, 0.07214520871639252, -0.1832386553287506, -0.1646139770746231, 0.1037062257528305, 0.023013485595583916, -0.06319930404424667, 0.07137434184551239, -0.1139281690120697, -0.3856000304222107, 0.10566745698451996, 0.13973841071128845, -0.1880159229040146, -0.27109551429748535, 0.13735128939151764, -0.12245851755142212, -0.1988150179386139, 0.0005361158400774002, 0.21200674772262573, 0.2401772290468216, 0.5754395127296448, -0.3118572533130646, 0.2930540442466736, 0.2114299088716507, 0.10665486007928848, 0.33064180612564087, 0.31543534994125366, 0.22995850443840027, 0.14387169480323792, -0.4222383201122284, 0.10164801776409149, 0.015988849103450775, 0.40844112634658813, -0.4320054054260254, -0.4850598871707916, 0.32100117206573486, -0.2215307503938675, 0.2077365517616272, 0.3140158951282501, 0.3203175365924835, 0.035425037145614624, -0.020581498742103577, -0.0994870737195015, 0.1497085988521576, 0.2154882550239563, -0.23182518780231476, -0.06683120131492615, -0.2758244276046753, 0.1616172045469284, 0.20528990030288696, 0.36416640877723694, 0.17057859897613525, -0.018543429672718048, -0.011093467473983765, -0.16098961234092712, 0.24635198712348938, 0.21634452044963837, 0.08230222761631012, 0.2713421881198883, -0.004120480269193649, 0.2762216627597809, 0.8261821866035461, 0.07095091044902802, 0.20569491386413574, 0.05368311330676079, 0.4040434956550598, -0.15466740727424622, -0.10447672754526138, 0.33322346210479736, 0.1655370593070984, -0.010412650182843208, 0.21304307878017426, 0.59658282995224, -0.0412258505821228, 0.03966414928436279, -0.2043808102607727, -0.03524709492921829, -0.17468048632144928, -0.3545321226119995, -0.3576379716396332, 0.37645193934440613, -0.08864109963178635, -0.2987309396266937, -0.0030952468514442444, -0.16136005520820618, -0.12252019345760345, -0.0020888634026050568, -0.2116202712059021, -0.4254456162452698, 0.4145951271057129, -0.22467182576656342, -0.14676590263843536, -0.29065030813217163, -0.3871645927429199, 0.08305250853300095, 0.340254008769989, -0.1173936128616333, 0.3878639340400696, -0.01664751023054123, -0.08399060368537903, 0.14156746864318848, 0.2695072889328003, 0.3690234124660492, 0.4159089922904968, 0.2203470766544342, -0.11712885648012161, 0.18464690446853638, -0.1434754729270935, -0.09803643077611923, 0.13111114501953125, 0.06027420982718468, 0.010126104578375816, 0.38381195068359375, 0.11003372073173523, -0.11811451613903046, -0.22488121688365936, -0.13715581595897675, 0.4409233331680298, 0.13300032913684845, 0.2810707688331604, -0.2069275975227356, -0.04624307528138161, 0.027349228039383888, 0.010535337030887604, -0.25075563788414, 0.0783189907670021, 0.1926490068435669, 0.09899599105119705, 0.3982923924922943, 0.15858590602874756, 0.11296820640563965, 0.007298767566680908, 0.07495398819446564, 0.31676825881004333, 0.04047185927629471, -0.038623303174972534, 0.02828340232372284, -0.24699652194976807, -0.020122401416301727, 0.07457462698221207, -0.2563200891017914, 0.3596980571746826, 0.1382177174091339, 0.16437755525112152, -0.1703290343284607, 0.09300407767295837, -0.03653474152088165, 0.11515409499406815, -0.018583811819553375, -0.14939525723457336, 0.034302692860364914, 0.016033835709095, 0.08623439818620682, -0.027288949117064476, -0.018748309463262558, 0.21708358824253082, 0.045022327452898026, -0.014101393520832062, -0.08200833946466446, 0.2868225872516632, 0.25400403141975403, 0.2440744787454605, -0.05997033417224884, 0.026555556803941727, 0.5460352897644043, -0.02130049094557762, -0.05650043487548828, -0.027366768568754196, -0.13609011471271515, -0.2161351591348648, -0.0004663318395614624, -0.3777039051055908, -0.147414892911911, 0.13950972259044647, -0.023264337331056595, -0.09336058050394058, 0.30274027585983276, 0.358700156211853, -0.19118520617485046, -0.2984669506549835, 0.11477299779653549, 0.004993833601474762, -0.42479196190834045, 0.35206371545791626, 0.06857997924089432, 0.0771200880408287, -0.014475264586508274, 0.09921279549598694, -0.5650386810302734, 0.42165496945381165, -0.15961241722106934, -0.030663881450891495, 0.013997943140566349, -0.032303571701049805, 0.49857407808303833, 0.13695849478244781, -0.5388256907463074, 0.010204680263996124, 0.4041936695575714, -0.13284748792648315, -0.40991678833961487, 0.09558241069316864, -0.1487390398979187, -0.24054256081581116, -0.15083511173725128, 0.544206976890564, 0.19203391671180725, -0.03579983487725258, 0.035695794969797134, -0.09491991996765137 ]
https://github.com/huggingface/datasets/issues/3188
conll2002 issues
Hi ! Thanks for reporting :) This is related to https://github.com/huggingface/datasets/issues/2742, I'm working on it. It should fix the viewer for around 80 datasets.
**Link:** https://huggingface.co/datasets/conll2002 The dataset viewer throws a server error when trying to preview the dataset. ``` Message: Extraction protocol 'train' for file at 'https://raw.githubusercontent.com/teropa/nlp/master/resources/corpora/conll2002/esp.train' is not implemented yet ``` In addition, the "point of contact" has encoding issues and does not work when clicked. Am I the one who added this dataset ? No, @lhoestq did
24
conll2002 issues **Link:** https://huggingface.co/datasets/conll2002 The dataset viewer throws a server error when trying to preview the dataset. ``` Message: Extraction protocol 'train' for file at 'https://raw.githubusercontent.com/teropa/nlp/master/resources/corpora/conll2002/esp.train' is not implemented yet ``` In addition, the "point of contact" has encoding issues and does not work when clicked. Am I the one who added this dataset ? No, @lhoestq did Hi ! Thanks for reporting :) This is related to https://github.com/huggingface/datasets/issues/2742, I'm working on it. It should fix the viewer for around 80 datasets.
[ -0.06047665327787399, 0.21162238717079163, 0.06382709741592407, 0.327320396900177, 0.028714602813124657, 0.0626273825764656, 0.16426727175712585, 0.2000194936990738, -0.40972834825515747, 0.062184110283851624, -0.1819021999835968, 0.17413835227489471, -0.1920643001794815, 0.32758209109306335, 0.1100299060344696, -0.1469973921775818, 0.023131079971790314, 0.26602864265441895, -0.2740892171859741, -0.13403910398483276, -0.33909401297569275, 0.20050355792045593, -0.2740522623062134, -0.048231154680252075, -0.7270234823226929, 0.19285717606544495, -0.04667927697300911, -0.030875831842422485, -0.2678302526473999, -0.5034127235412598, 0.4060792624950409, 0.07448144257068634, 0.2015143632888794, 0.12358018755912781, -0.00010976929479511455, 0.10828474164009094, 0.2916756570339203, 0.011517303064465523, -0.2740282416343689, 0.09597893804311752, 0.19643625617027283, -0.06627226620912552, 0.1915777325630188, -0.15602530539035797, -0.08339372277259827, -0.23329991102218628, 0.119483083486557, -0.0019254647195339203, 0.41590988636016846, 0.11508867889642715, 0.1832318902015686, 0.22055768966674805, 0.38625940680503845, -0.09543327242136002, 0.10233460366725922, 0.013929586857557297, -0.3255588412284851, 0.04138462245464325, 0.004877835512161255, 0.023542018607258797, 0.04709669202566147, 0.13934531807899475, 0.07960458844900131, -0.32409268617630005, 0.1127600446343422, 0.08389677107334137, -0.3835461437702179, -0.4807265102863312, -0.005125522613525391, 0.27308449149131775, 0.5093567371368408, 0.012503251433372498, -0.24516110122203827, -0.11632484942674637, 0.11887770891189575, -0.31018462777137756, 0.4459340572357178, -0.1029438003897667, -0.003787924535572529, 0.3573116958141327, -0.3634052574634552, -0.37217122316360474, -0.29503634572029114, 0.24217134714126587, -0.2546900510787964, 0.40090668201446533, -0.24616217613220215, 0.1009301245212555, 0.07989000529050827, 0.04826255142688751, 0.22464439272880554, 0.07455714046955109, 0.0007243789732456207, 0.0788971558213234, -0.20455263555049896, -0.04318409413099289, 0.2018825113773346, 0.007532797753810883, -0.04271402209997177, 0.2589987516403198, -0.25696223974227905, 0.025572003796696663, -0.28044793009757996, -0.011694319546222687, 0.1149015873670578, 0.003345634788274765, 0.00034115463495254517, 0.2692275047302246, 0.4567248821258545, -0.08799035847187042, 0.26681092381477356, 0.03497636690735817, -0.3861989378929138, -0.027903322130441666, -0.47361642122268677, -0.24521690607070923, 0.35445767641067505, -0.31872066855430603, -0.23712994158267975, 0.15542709827423096, -0.49542176723480225, -0.17238342761993408, 0.25577306747436523, 0.31645467877388, -0.16282930970191956, 0.3507400155067444, 0.06514108180999756, 0.11007652431726456, -0.011343393474817276, -0.5758866667747498, -0.0718555599451065, -0.18582357466220856, -0.20051969587802887, 0.0780184268951416, 0.40620389580726624, -0.190326988697052, 0.10077860206365585, 0.04407791793346405, 0.11864618957042694, 0.1786973774433136, -0.010175095871090889, 0.013518979772925377, -0.0318976566195488, -0.09168995916843414, -0.09016677737236023, 0.025544507429003716, -0.0025171637535095215, -0.09919300675392151, -0.021750323474407196, -0.20588839054107666, -0.27222657203674316, -0.15237173438072205, -0.504715085029602, 0.11136849969625473, -0.14243942499160767, -0.21908721327781677, 0.3044295310974121, 0.17944073677062988, 0.042067889124155045, -0.21356067061424255, -0.05037591606378555, 0.17212337255477905, -0.3735015392303467, 0.034377433359622955, 0.47328808903694153, 0.4559051990509033, -0.5309057235717773, -0.08374489098787308, 0.08876309543848038, -0.39232438802719116, 0.29937228560447693, 0.10868595540523529, -0.2758280336856842, -0.01128726452589035, -0.20423312485218048, 0.07606865465641022, 0.25141435861587524, -0.19045457243919373, -0.44599542021751404, 0.2302025854587555, -0.10874912887811661, 0.14849573373794556, -0.004155255854129791, -0.08599662035703659, 0.2952946126461029, -0.16985423862934113, 0.006926417350769043, 0.011276759207248688, 0.20185783505439758, -0.31453055143356323, -0.23082394897937775, -0.10410753637552261, 0.18202850222587585, 0.24985764920711517, -0.13229690492153168, 0.045730262994766235, -0.03173384070396423, 0.005744355730712414, 0.25501498579978943, -0.037004124373197556, 0.2567821741104126, 0.12981411814689636, 0.30407217144966125, 0.10081122070550919, 0.009263549000024796, 0.036773502826690674, -0.28468939661979675, -0.01961280219256878, 0.07533911615610123, 0.2944582998752594, 0.14208237826824188, -0.09924202412366867, -0.10527382045984268, -0.02147066406905651, -0.3832298815250397, -0.18591085076332092, 0.07815627753734589, -0.018155962228775024, -0.022792113944888115, 0.24379079043865204, -0.21732161939144135, 0.45624732971191406, 0.03906591981649399, 0.011005640961229801, -0.05204864218831062, 0.2618999183177948, -0.08128978312015533, -0.10603129863739014, 0.010105118155479431, 0.26956823468208313, 0.07952587306499481, -0.32828640937805176, -0.013362288475036621, 0.33195212483406067, 0.009035138413310051, 0.08140400797128677, 0.2177329659461975, -0.07114727795124054, 0.23474067449569702, -0.35186272859573364, -0.003935931250452995, 0.006635557860136032, -0.11966845393180847, 0.10012959688901901, -0.09269136935472488, 0.21091899275779724, 0.45282354950904846, -0.17582190036773682, -0.03971615806221962, 0.30953583121299744, 0.24233239889144897, -0.13709379732608795, -0.020464710891246796, -0.3469686210155487, 0.2896919250488281, -0.10880166292190552, 0.3238946795463562, -0.018619077280163765, -0.5903198719024658, 0.02474379539489746, 0.17216652631759644, 0.03691905364394188, -0.14715054631233215, 0.3328797221183777, -0.0862087681889534, -0.0055507272481918335, 0.029532670974731445, 0.29868194460868835, 0.19248583912849426, 0.18937265872955322, -0.025439780205488205, 0.3722366392612457, -0.11515676230192184, -0.1280696988105774, 0.207927867770195, -0.037204593420028687, 0.04616186395287514, 0.08344866335391998, -0.059433311223983765, 0.29529377818107605, -0.25622111558914185, -0.1725572794675827, -0.06719724088907242, 0.19012008607387543, -0.21939536929130554, -0.11500803381204605, -0.5052608251571655, -0.5219961404800415, -0.06669188290834427, 0.22105669975280762, -0.20680725574493408, -0.26927119493484497, 0.11402373015880585, -0.04188764467835426, -0.007372286170721054, 0.1941463202238083, -0.6668405532836914, 0.36184048652648926, -0.15732291340827942, 0.16891895234584808, -0.0536920465528965, -0.10556376725435257, -0.3456699550151825, 0.11366307735443115, 0.3822421729564667, -0.14442697167396545, 0.3707617223262787, -0.21005932986736298, 0.20907340943813324, -0.0062076617032289505, -0.38469430804252625, 0.4352641701698303, -0.02744527906179428, -0.07370279729366302, 0.10238153487443924, -0.11673542857170105, -0.13964858651161194, -0.3272041380405426, 0.14696413278579712, 0.09120220690965652, -0.28694668412208557, 0.09240056574344635, -0.0974898412823677, -0.3539521396160126, -0.2254631370306015, -0.49659493565559387, -0.11707843095064163, -0.33161091804504395, 0.2307766228914261, -0.041274964809417725, 0.0750739723443985, 0.23986046016216278, -0.17782150208950043, 0.20267674326896667, -0.14151866734027863, -0.058014221489429474, -0.28042811155319214, -0.4968510568141937, 0.4743339717388153, -0.4380083978176117, -0.38628125190734863, 0.09582093358039856, 0.06474775820970535, 0.09883107990026474, -0.000925120897591114, -0.5417266488075256, 0.009042429737746716, -0.15160492062568665, -0.061796315014362335, 0.0016594380140304565, -0.1957082599401474, 0.2064771205186844, 0.1753278523683548, -0.05094705894589424, -0.07330348342657089, -0.12699571251869202, 0.3448423445224762, -0.06118268519639969, 0.4398796856403351, -0.1726256012916565, 0.2040957510471344, 0.11120262742042542, 0.2575529217720032, 0.35219576954841614, -0.012859869748353958, 0.6458722352981567, -0.027344608679413795, 0.4406490623950958, -0.04513291269540787, -0.3324153423309326, 0.4859943687915802, -0.13358938694000244, 0.12015357613563538, 0.20675623416900635, 0.004682985134422779, -0.28442949056625366, -0.4344494342803955, 0.05013537034392357, -0.1305413544178009, -0.31716328859329224, -0.23578335344791412, 0.04526670277118683, 0.30171093344688416, -0.07702144980430603, 0.091130830347538, 0.1472453773021698, -0.23512664437294006, 0.04818379878997803, -0.09596943855285645, 0.22138819098472595, -0.14756371080875397, -0.5568922758102417, 0.1952783614397049, -0.5028943419456482, 0.4527454972267151, -0.06551645696163177, 0.28193843364715576, -0.1809852421283722, -0.10904663056135178, 0.15982414782047272, 0.03276481106877327, 0.7803255915641785, -0.08544795960187912, -0.29094719886779785, 0.03666209429502487, 0.28499743342399597, -0.2002004086971283, 0.03665908798575401, -0.0362771637737751, 0.08784585446119308, 0.47312474250793457, 0.41259878873825073, -0.03621413931250572, -0.4224810302257538, 0.5703386068344116, 0.05175119638442993, -0.18979378044605255, -0.1529284566640854, -0.060492269694805145, -0.03187660872936249, 0.03762148320674896, -0.2044021487236023, -0.28710973262786865, 0.22190997004508972, 0.11714942008256912, -0.15545743703842163, 0.1180155798792839, -0.0367506705224514, 0.22243362665176392, 0.2753358781337738, 0.20028811693191528, 0.0791267529129982, 0.3495368957519531, 0.4203190505504608, 0.5816973447799683, 0.41488879919052124, 0.39306655526161194, -0.053558189421892166, -0.4802016019821167, 0.28218159079551697, -0.14258918166160583, 0.4681684672832489, 0.3742574453353882, 0.05212460830807686, -0.1826041042804718, -0.037847068160772324, 0.22056515514850616, -0.23762772977352142, 0.20743843913078308, 0.6185703277587891, -0.1541014313697815, -0.7398309707641602, -0.2695807218551636, 0.21907255053520203, 0.07441835105419159, 0.02738666534423828, 0.06784018874168396, 0.19843611121177673, -0.09572217613458633, -0.058992650359869, 0.05439804494380951, 1.0331449508666992, 0.17486895620822906, 0.038484979420900345, 0.2977848947048187, -0.28203529119491577, 0.48407843708992004, -0.5105209350585938, -0.004037236794829369, -0.025151032954454422, -0.1630769819021225, -0.21428565680980682, 0.07736240327358246, 0.2118690013885498, -0.02013542503118515, -0.19315706193447113, 0.0696907788515091, -0.15358397364616394, -0.3329962491989136, -0.011918699368834496, 0.26052093505859375, 0.1370709240436554, -0.22720247507095337, 0.027466818690299988, 0.17024120688438416, 0.16206833720207214, 0.19232244789600372, 0.04411311820149422, -0.34709107875823975, -0.15758278965950012, -0.1704895943403244, -0.1801176518201828, 0.3797283470630646, -0.0954972580075264, 0.06304214894771576, 0.2926624119281769, -0.1985010951757431, 0.30507874488830566, 0.25905150175094604, 0.21244768798351288, -0.007432296872138977, -0.3604561984539032, 0.129579097032547, -0.17348071932792664, -0.06987223029136658, 0.13394667208194733, 0.10557674616575241, 0.14941152930259705, -0.17750021815299988, -0.23619019985198975, 0.17045101523399353, -0.019748913124203682, 0.00458676740527153, 0.0634622573852539, -0.044246092438697815, -0.04879346489906311, -0.22637636959552765, -0.029114337638020515, 0.03338661789894104, 0.19633591175079346, -0.27727210521698, 0.14193880558013916, -0.03754928708076477, -0.17972564697265625, 0.04026096686720848, 0.03764122352004051, -0.07148508727550507, -0.12183411419391632, 0.2604619860649109, -0.25810113549232483, -0.1009819433093071, 0.6219513416290283, 0.07110580801963806, -0.22151394188404083, -0.09915158152580261, 0.2550264000892639, -0.08614848554134369, -0.5125101208686829, -0.1851092129945755, 0.1481412798166275, 0.1791665405035019, -0.03443804010748863, 0.23628200590610504, 0.0818796157836914, -0.18390288949012756, -0.07842510938644409, -0.16771100461483002, -0.21257443726062775, 0.14184628427028656, -0.06386932730674744, 0.2930587828159332, -0.14221319556236267, 0.7749155163764954, 0.1327112913131714, -0.12374696135520935, -0.3286650776863098, -0.1366836577653885, -0.18559256196022034, -0.05768422782421112, 0.28103703260421753, -0.012309867888689041, 0.11007589846849442, -0.18058903515338898, 0.07309931516647339, 0.07230965048074722, -0.19604891538619995, -0.10950717329978943, -0.26186004281044006, 0.09245768934488297, 0.014023354277014732, -0.469285249710083, -0.007304619066417217, 0.0510665699839592, -0.24172422289848328, 0.11992762237787247, -0.16940118372440338, 0.06635607779026031, 0.11689320206642151, 0.14371787011623383, -0.2544010579586029, -0.1691443920135498, -0.04305019974708557, 0.07208786904811859, 0.1846606731414795, 0.43665385246276855, 0.19086986780166626, 0.189045712351799, -0.13965924084186554, -0.10819137096405029, -0.002055208897218108, 0.15858083963394165, -0.181781604886055, -0.3167199492454529, 0.21327051520347595, -0.3523712158203125, 0.09801983833312988, 0.4710581600666046, 0.2670900523662567, 0.47146689891815186, -0.14841526746749878, -0.047035351395606995, 0.6518627405166626, 0.1417364776134491, -0.30436310172080994, -0.06017955392599106, 0.483809232711792, 0.32113146781921387, -0.23737110197544098, -0.06611490994691849, 0.03998662903904915, 0.050231680274009705, 0.07364523410797119, 0.027015265077352524, -0.0006500957533717155, 0.10136443376541138, 0.5024924278259277, 0.22485338151454926, -0.08335418254137039, 0.23147307336330414, 0.0460730716586113, 0.13994084298610687, 0.19799868762493134, 0.3693694472312927, -0.11823951452970505, -0.19610773026943207, -0.12777632474899292, 0.4784439206123352, 0.2558363080024719, -0.3946848511695862, 0.07257998734712601, 0.027554623782634735, -0.32018956542015076, -0.018571391701698303, -0.13002684712409973, 0.748600959777832, -0.04436604306101799, -0.28569892048835754, -0.5867043733596802, 0.6190711855888367, -0.006715964525938034, 0.05159284919500351, -0.028614573180675507, -0.14233899116516113, -0.12918822467327118, 0.14628687500953674, 0.0033187270164489746, -0.02749960869550705, -0.09786531329154968, 0.25503358244895935, -0.23562012612819672, -0.47214484214782715, -0.015979543328285217, -0.1357870101928711, 0.2952950894832611, -0.04670315235853195, 0.2573138177394867, 0.12386450171470642, -0.05799752473831177, -0.0680161714553833, 0.3941401243209839, 0.28142476081848145, 0.3711922764778137, 0.2255023717880249, -0.01935729756951332, -0.05261567607522011, 0.07304858416318893, 0.013014152646064758, 0.2340143471956253, 0.4924982190132141, -0.1341240257024765, 0.3544125556945801, 0.008455200120806694, -0.07464634627103806, 0.037293847650289536, -0.05565846338868141, 0.4852619469165802, -0.34782013297080994, 0.17913071811199188, -0.26487764716148376, -0.011163648217916489, -0.19615107774734497, -0.2202441394329071, -0.293783962726593, 0.46421560645103455, 0.40947863459587097, 0.019592128694057465, -0.04243677854537964, -0.2057691514492035, 0.07287732511758804, -0.053139578551054, 0.268810898065567, 0.33346420526504517, 0.23318073153495789, 0.009006647393107414, -0.501268744468689, -0.5117120146751404, 0.22930112481117249, 0.08562788367271423, 0.0202402975410223, -0.0809297040104866, 0.05629517883062363, 0.09779880195856094, 0.23666270077228546, -0.067137211561203, -0.20777660608291626, 0.1384223997592926, 0.08690397441387177, -0.19162005186080933, 0.3399319350719452, -0.0014367476105690002, 0.21110543608665466, -0.08603289723396301, -0.12647730112075806, 0.1824721246957779, 0.03446027263998985, -0.06489547342061996, -0.1465679258108139, 0.1886572241783142, -0.4081973433494568, -0.14732621610164642, 0.4076855778694153, 0.2234344184398651, 0.6200402975082397, -0.01868119090795517, -0.02649269811809063, -0.3497529923915863, -0.4056363105773926, -0.06142239272594452, 0.03251601383090019, 0.19901658594608307, -0.03404093161225319, -0.30718308687210083, -0.12804819643497467, -0.12285363674163818, 0.4605536460876465, 0.06956441700458527, 0.17444920539855957, -0.3400668203830719, -0.15354321897029877, -0.172178715467453, -0.19895224273204803, 0.33304286003112793, 0.17883679270744324, -0.08700449764728546, -0.13049010932445526, -0.0979909896850586, -0.15414336323738098, 0.3462439179420471, -0.2742801010608673, 0.1106388121843338, 0.05630817264318466, 0.04921372979879379, 0.0812004879117012, -0.22395512461662292, -0.4429251551628113, -0.12270718812942505, 0.3263191878795624, -0.07358221709728241, -0.04779660701751709, 0.41745463013648987, 0.13859298825263977, -0.24763938784599304, -0.007684189826250076, 0.5825227499008179, 0.2116217017173767, -0.27342528104782104, 0.35214701294898987, 0.04555876553058624 ]
https://github.com/huggingface/datasets/issues/3188
conll2002 issues
Ah, hadn't seen that sorry. The scrambled "point of contact" is a separate issue though, I think.
**Link:** https://huggingface.co/datasets/conll2002 The dataset viewer throws a server error when trying to preview the dataset. ``` Message: Extraction protocol 'train' for file at 'https://raw.githubusercontent.com/teropa/nlp/master/resources/corpora/conll2002/esp.train' is not implemented yet ``` In addition, the "point of contact" has encoding issues and does not work when clicked. Am I the one who added this dataset ? No, @lhoestq did
17
conll2002 issues **Link:** https://huggingface.co/datasets/conll2002 The dataset viewer throws a server error when trying to preview the dataset. ``` Message: Extraction protocol 'train' for file at 'https://raw.githubusercontent.com/teropa/nlp/master/resources/corpora/conll2002/esp.train' is not implemented yet ``` In addition, the "point of contact" has encoding issues and does not work when clicked. Am I the one who added this dataset ? No, @lhoestq did Ah, hadn't seen that sorry. The scrambled "point of contact" is a separate issue though, I think.
[ -0.025583399459719658, 0.22230130434036255, 0.03602536395192146, 0.3023373782634735, -0.053018003702163696, 0.07049339264631271, 0.17771032452583313, 0.2525487542152405, -0.47305071353912354, 0.055640652775764465, -0.08886595070362091, 0.18524424731731415, -0.12386580556631088, 0.28472959995269775, 0.08314294368028641, -0.1410977840423584, 0.06793452054262161, 0.27657634019851685, -0.19424015283584595, -0.17550823092460632, -0.31901487708091736, 0.10723961889743805, -0.33076393604278564, 0.03239493444561958, -0.7453705072402954, 0.1410531848669052, -0.07566844671964645, 0.029831785708665848, -0.29236188530921936, -0.45726606249809265, 0.3295481204986572, 0.08300668746232986, 0.2388346791267395, 0.11453939974308014, -0.00010481815843377262, 0.031784944236278534, 0.2909706234931946, -0.0187260452657938, -0.3222735524177551, 0.1124042198061943, 0.1623230278491974, -0.021201230585575104, 0.053819574415683746, -0.21098271012306213, -0.1008596196770668, -0.19702838361263275, 0.11744602769613266, -0.010038074105978012, 0.4015817642211914, 0.1562742441892624, 0.18985146284103394, 0.1661808341741562, 0.31505751609802246, -0.15316621959209442, 0.12517085671424866, -0.04398135095834732, -0.35125240683555603, 0.015158572234213352, 0.07176582515239716, -0.010251889936625957, 0.15287604928016663, 0.08635078370571136, 0.08619051426649094, -0.2942906618118286, 0.013661954551935196, 0.11898794770240784, -0.3139159381389618, -0.4552229344844818, 0.008882641792297363, 0.3313468396663666, 0.4684496819972992, 0.030209088698029518, -0.2183307260274887, 0.0011291205883026123, 0.0839306190609932, -0.32002362608909607, 0.4287407398223877, -0.11314421147108078, -0.048473719507455826, 0.3734035789966583, -0.2825213074684143, -0.37529006600379944, -0.3205244541168213, 0.2398645281791687, -0.22845204174518585, 0.4634184241294861, -0.19564209878444672, 0.062173739075660706, 0.02131672576069832, 0.025806060060858727, 0.25775036215782166, 0.11560500413179398, 0.011331748217344284, 0.14250509440898895, -0.1581907570362091, -0.009064294397830963, 0.12661221623420715, -0.022966034710407257, -0.017969327047467232, 0.22478613257408142, -0.23420989513397217, 0.023898432031273842, -0.24475212395191193, 0.03320235013961792, 0.09321185946464539, 0.01975950226187706, -0.006449155509471893, 0.27141231298446655, 0.4648370146751404, -0.08478959649801254, 0.258549302816391, 0.06376634538173676, -0.5472633838653564, 0.02839519828557968, -0.46742987632751465, -0.18402883410453796, 0.31951916217803955, -0.36065873503685, -0.27728894352912903, 0.14469505846500397, -0.5227141380310059, -0.19438086450099945, 0.24269020557403564, 0.30518779158592224, -0.20260125398635864, 0.29939764738082886, 0.11382666230201721, 0.13317659497261047, -0.003976610489189625, -0.6496365070343018, -0.058691754937171936, -0.22214633226394653, -0.2510864734649658, 0.07229829579591751, 0.37171638011932373, -0.01179962232708931, 0.12210611253976822, 0.032274987548589706, 0.06819857656955719, 0.22604191303253174, -0.002102309837937355, 0.009438812732696533, 0.04751846566796303, -0.17313449084758759, -0.09880290925502777, -0.011909750290215015, -0.07071705162525177, -0.11263307183980942, -0.02028249204158783, -0.10838203877210617, -0.31706076860427856, -0.06941530108451843, -0.5307824611663818, 0.1484408676624298, -0.1638914942741394, -0.27866774797439575, 0.4323652386665344, 0.18974989652633667, 0.12496538460254669, -0.20968933403491974, -0.11406750231981277, 0.17441591620445251, -0.37669605016708374, 0.0049880193546414375, 0.4477429986000061, 0.2891182601451874, -0.5736314058303833, -0.01656537503004074, 0.14940443634986877, -0.28333353996276855, 0.3776986002922058, 0.1524638533592224, -0.2772665023803711, 0.03699176013469696, -0.1723199039697647, 0.19026963412761688, 0.30143770575523376, -0.17957037687301636, -0.3490685522556305, 0.16292732954025269, -0.10848237574100494, 0.048765264451503754, -0.0671880766749382, -0.11567823588848114, 0.35099852085113525, -0.2021624743938446, 0.06938020884990692, 0.22985295951366425, 0.21383900940418243, -0.27383407950401306, -0.2585282027721405, -0.11193037033081055, 0.27530890703201294, 0.12774954736232758, -0.24494047462940216, 0.03725351765751839, -0.09851131588220596, 0.05246446281671524, 0.229853093624115, -0.012377951294183731, 0.299077570438385, 0.07970008254051208, 0.29641783237457275, 0.016084246337413788, 0.02134714089334011, 0.08685556054115295, -0.2351921796798706, -0.06735977530479431, 0.05638599395751953, 0.33588001132011414, 0.14768558740615845, -0.0753248929977417, -0.14964327216148376, -0.03506102040410042, -0.34683758020401, -0.1237717866897583, 0.11350604891777039, 0.0048074424266815186, 0.03286502882838249, 0.2038203924894333, -0.201199010014534, 0.38537490367889404, 0.015756329521536827, -0.08402018249034882, 0.08108082413673401, 0.26730918884277344, -0.1406971961259842, -0.17275077104568481, 0.008451070636510849, 0.2942277491092682, 0.07698793709278107, -0.2891765534877777, 0.011499376967549324, 0.3392845690250397, -0.007438021246343851, 0.022180065512657166, 0.1904233694076538, -0.042717382311820984, 0.21252916753292084, -0.3000950813293457, 0.0035158488899469376, 0.007605726830661297, -0.0990462452173233, 0.09533422440290451, -0.1440853476524353, 0.20484481751918793, 0.504703164100647, -0.13739639520645142, 0.04739288240671158, 0.26367291808128357, 0.2573358714580536, -0.21081438660621643, 0.025450272485613823, -0.2913089692592621, 0.23913998901844025, -0.10310105979442596, 0.277425080537796, -0.03316459059715271, -0.5680328607559204, 0.13253286480903625, 0.2854781746864319, 0.025794103741645813, -0.0779455378651619, 0.2098444402217865, -0.07464051991701126, -0.10576685518026352, -0.003639131784439087, 0.3433363139629364, 0.12285837531089783, 0.20002515614032745, 0.02380623295903206, 0.33866769075393677, -0.24649536609649658, -0.08105985075235367, 0.17115674912929535, -0.11915028095245361, 0.11489363759756088, 0.06324729323387146, -0.029521236196160316, 0.275674045085907, -0.14265330135822296, -0.15704892575740814, 0.002248113974928856, 0.18813437223434448, -0.17999841272830963, -0.07660207152366638, -0.519965410232544, -0.43997570872306824, -0.05645211786031723, 0.21410344541072845, -0.21828922629356384, -0.2891893982887268, 0.13721540570259094, -0.09766170382499695, 0.004518110305070877, 0.19727538526058197, -0.5980061292648315, 0.3731265068054199, -0.1431255042552948, 0.15684112906455994, 0.002319633960723877, -0.14498287439346313, -0.3898051083087921, 0.1318850964307785, 0.343099981546402, -0.07224556058645248, 0.3741561770439148, -0.2818680703639984, 0.19060111045837402, 0.06500564515590668, -0.3531951606273651, 0.4935387372970581, -0.07052749395370483, -0.049978211522102356, -0.021849125623703003, -0.054234132170677185, -0.11339147388935089, -0.32372841238975525, 0.15826557576656342, 0.04643000662326813, -0.32495707273483276, 0.05380392074584961, -0.06108682602643967, -0.44856202602386475, -0.2724865674972534, -0.5893461108207703, -0.13388806581497192, -0.3022080659866333, 0.14097291231155396, 0.0015224479138851166, 0.06572084128856659, 0.2974035441875458, -0.14120744168758392, 0.18298648297786713, -0.04409745708107948, -0.01038798876106739, -0.40295684337615967, -0.500015377998352, 0.5217851400375366, -0.44382163882255554, -0.4245094954967499, 0.056251924484968185, 0.05892592668533325, 0.04315245896577835, 0.03958609700202942, -0.3899903893470764, 0.08209028840065002, -0.1570214331150055, -0.040894925594329834, -0.01691286265850067, -0.17088036239147186, 0.18320101499557495, 0.16317304968833923, -0.08161129802465439, -0.14514751732349396, -0.14906816184520721, 0.41004085540771484, 0.07694439589977264, 0.5598501563072205, -0.1415385901927948, 0.07213278114795685, 0.13801676034927368, 0.2555452585220337, 0.2663232088088989, -0.11603304743766785, 0.5567476749420166, -0.0765695720911026, 0.407733678817749, -0.030890606343746185, -0.20969967544078827, 0.4806020259857178, -0.08849908411502838, 0.04818171262741089, 0.18902520835399628, 0.011499393731355667, -0.349598228931427, -0.44329360127449036, 0.16160422563552856, -0.15100842714309692, -0.2748951017856598, -0.24933598935604095, 0.13073952496051788, 0.3339241147041321, -0.02165491133928299, 0.09751898795366287, 0.1893390268087387, -0.21397143602371216, 0.06920957565307617, -0.1178654134273529, 0.22037801146507263, -0.159513920545578, -0.6136195063591003, 0.13975973427295685, -0.4494810700416565, 0.3568291962146759, -0.0034940578043460846, 0.3156668543815613, -0.2277188003063202, -0.17592766880989075, 0.16967327892780304, -0.008023116737604141, 0.6590624451637268, -0.14462020993232727, -0.2322493940591812, 0.10939320921897888, 0.47048699855804443, -0.07944096624851227, 0.02485194429755211, -0.09231506288051605, 0.1330665946006775, 0.5488303303718567, 0.30614256858825684, -0.010494008660316467, -0.39508599042892456, 0.5348936319351196, 0.13193783164024353, -0.19235464930534363, -0.0729622170329094, -0.07239272445440292, 0.016204625368118286, -0.009935477748513222, -0.28111737966537476, -0.2720402479171753, 0.20720171928405762, 0.1462954431772232, -0.12466025352478027, 0.19712913036346436, 0.011554311960935593, 0.19351723790168762, 0.3819778859615326, 0.21505507826805115, 0.07142278552055359, 0.29229438304901123, 0.3720114231109619, 0.5545649528503418, 0.41913095116615295, 0.3561228811740875, -0.021843142807483673, -0.33935409784317017, 0.2756040692329407, -0.2649419605731964, 0.5112445950508118, 0.3729502558708191, 0.05530592426657677, -0.23533368110656738, -0.05530388653278351, 0.1498456597328186, -0.249601811170578, 0.1927241086959839, 0.6694075465202332, -0.14509756863117218, -0.7471543550491333, -0.2442716807126999, 0.1678440272808075, 0.08033283054828644, 0.012398704886436462, -0.01156608760356903, 0.09273327887058258, -0.08770588040351868, 0.011120669543743134, 0.03574320301413536, 1.0636221170425415, 0.12373607605695724, 0.025878481566905975, 0.28784942626953125, -0.22080449759960175, 0.43668192625045776, -0.5095019936561584, -0.015768297016620636, -0.019960910081863403, -0.05936986207962036, -0.18018288910388947, 0.09228219091892242, 0.12013940513134003, 0.006132546812295914, -0.29253101348876953, 0.05243390426039696, -0.2443198561668396, -0.31987759470939636, 0.0026565343141555786, 0.2275901734828949, 0.2983990013599396, -0.19638867676258087, 0.03899431601166725, 0.19770197570323944, 0.15482565760612488, 0.17048850655555725, 0.06672247499227524, -0.3731136918067932, -0.29097381234169006, -0.10536930710077286, -0.18457567691802979, 0.46911749243736267, -0.02874835766851902, 0.014116236940026283, 0.2518828213214874, -0.2088085114955902, 0.19788219034671783, 0.19828763604164124, 0.2212861031293869, 0.022914022207260132, -0.35954228043556213, 0.10081259906291962, -0.15245887637138367, -0.1583707183599472, 0.14026732742786407, 0.10370791703462601, 0.22331365942955017, -0.21656236052513123, -0.2439996898174286, 0.18741846084594727, 0.017763551324605942, 0.00386606901884079, 0.09429702162742615, -0.07782845199108124, -0.04719226062297821, -0.19443979859352112, -0.02871044911444187, 0.14202895760536194, 0.17015956342220306, -0.28103458881378174, 0.1761663407087326, -0.01307319849729538, -0.19643911719322205, 0.019958559423685074, 0.20148056745529175, -0.04387751594185829, -0.10492895543575287, 0.20405465364456177, -0.21540501713752747, -0.10898420214653015, 0.5608774423599243, 0.08984668552875519, -0.20397686958312988, -0.15857382118701935, 0.2390352487564087, -0.17628949880599976, -0.42599037289619446, -0.22438105940818787, 0.12345781922340393, 0.11911411583423615, -0.1436629295349121, 0.31230178475379944, 0.08809297531843185, -0.190951406955719, -0.15574467182159424, -0.19366583228111267, -0.20329461991786957, 0.15328337252140045, -0.06419967114925385, 0.22560441493988037, -0.2710403800010681, 0.7792590260505676, 0.16103918850421906, -0.16870002448558807, -0.3787139356136322, -0.1352016031742096, -0.2092203050851822, 0.02122393809258938, 0.2153087705373764, -0.03330014646053314, 0.12309655547142029, -0.20866526663303375, 0.11818735301494598, -0.02407284453511238, -0.17455537617206573, -0.1431216597557068, -0.2595842182636261, 0.07698646932840347, 0.0238657109439373, -0.48532530665397644, -0.032816410064697266, -0.015046976506710052, -0.23814129829406738, 0.11808525025844574, -0.273036926984787, 0.022030994296073914, 0.09864601492881775, 0.16142632067203522, -0.26843857765197754, -0.08206158131361008, 0.015010155737400055, 0.020072802901268005, 0.16407355666160583, 0.4737517833709717, 0.151792511343956, 0.1798955798149109, -0.13782256841659546, -0.12560079991817474, 0.016432512551546097, 0.10408465564250946, -0.17211483418941498, -0.29775527119636536, 0.263507604598999, -0.35135239362716675, 0.11633166670799255, 0.4316464960575104, 0.2241937220096588, 0.49473562836647034, -0.1759980171918869, -0.02048608288168907, 0.628926157951355, 0.18117214739322662, -0.2933369278907776, -0.02253071591258049, 0.45010221004486084, 0.22780995070934296, -0.24353227019309998, -0.03953980654478073, 0.057324010878801346, 0.026936866343021393, 0.09626957774162292, -0.057283665984869, -0.034562963992357254, 0.06893900781869888, 0.39348292350769043, 0.1921563446521759, -0.1224842220544815, 0.2707534730434418, 0.04505060613155365, 0.0897202342748642, 0.1773839294910431, 0.2746618986129761, -0.020282968878746033, -0.29902544617652893, 0.074256032705307, 0.5818367600440979, 0.20196016132831573, -0.29419270157814026, 0.07129891961812973, 0.03418167680501938, -0.23399099707603455, -0.04533036798238754, -0.060576483607292175, 0.7006007432937622, -0.013891882263123989, -0.30367887020111084, -0.5805131196975708, 0.5673010945320129, 0.025807928293943405, 0.05762409791350365, -0.04708937555551529, -0.1789863407611847, -0.15530768036842346, 0.054310914129018784, 0.006453648209571838, 0.021742437034845352, -0.1244288980960846, 0.20977582037448883, -0.1534704715013504, -0.44563227891921997, 0.01565513014793396, -0.15063858032226562, 0.26223087310791016, -0.05676549673080444, 0.29784002900123596, 0.007584854960441589, -0.03408072888851166, -0.02522866055369377, 0.39108869433403015, 0.30402669310569763, 0.44613468647003174, 0.08267447352409363, -0.015359864570200443, -0.13445669412612915, 0.008354222401976585, 0.027861006557941437, 0.28519973158836365, 0.49533748626708984, -0.25824812054634094, 0.33724910020828247, 0.03060833550989628, -0.07680165767669678, 0.025445833802223206, -0.0023436248302459717, 0.4015079438686371, -0.13278210163116455, 0.16377517580986023, -0.2193571925163269, -0.037596866488456726, -0.18679791688919067, -0.31346380710601807, -0.2697053849697113, 0.4464239180088043, 0.3631446361541748, -0.04143379628658295, 0.013808129355311394, -0.15420161187648773, 0.10725869238376617, -0.10109938681125641, 0.2872973680496216, 0.3787405788898468, 0.3064177930355072, 0.06624361127614975, -0.4968597888946533, -0.42379844188690186, 0.1931290626525879, 0.015520976856350899, -0.01540913712233305, -0.10676398873329163, 0.14686234295368195, 0.11760400235652924, 0.31899189949035645, -0.040050774812698364, -0.1817641705274582, 0.11638226360082626, 0.08359207957983017, -0.29907768964767456, 0.298450231552124, 0.05905676633119583, 0.22803594172000885, -0.10747609287500381, -0.1501540243625641, 0.1125018298625946, 0.021982859820127487, -0.034087732434272766, -0.14131996035575867, 0.12166710197925568, -0.41567233204841614, -0.08121335506439209, 0.47565537691116333, 0.20044462382793427, 0.6370012760162354, -0.02860943041741848, -0.04827986657619476, -0.3431544005870819, -0.35879912972450256, -0.03576143458485603, 0.048521120101213455, 0.187209352850914, -0.1659265160560608, -0.2603757381439209, -0.05879773572087288, -0.1272551566362381, 0.3912343382835388, 0.0519271194934845, 0.22705690562725067, -0.34542116522789, -0.17846310138702393, -0.16267970204353333, -0.18193481862545013, 0.23469704389572144, 0.11795812845230103, -0.14532406628131866, -0.1515733003616333, -0.10360997915267944, -0.09255401045084, 0.33432474732398987, -0.17226172983646393, 0.07612279057502747, 0.08289985358715057, 0.058427486568689346, 0.024430595338344574, -0.11589565128087997, -0.4378304183483124, -0.09037598222494125, 0.3228238821029663, -0.0762941911816597, -0.12142804265022278, 0.38626381754875183, 0.10265998542308807, -0.17830607295036316, 0.05184588208794594, 0.6361411809921265, 0.17065665125846863, -0.31375303864479065, 0.23471906781196594, 0.05115612596273422 ]
https://github.com/huggingface/datasets/issues/3186
Dataset viewer for nli_tr
It's an issue with the streaming mode: ```python >>> import datasets >>> dataset = datasets.load_dataset('nli_tr', name='snli_tr',split='test', streaming=True) >>> next(iter(dataset)) Traceback (most recent call last): File "<stdin>", line 1, in <module> File "/home/slesage/hf/datasets-preview-backend/.venv/lib/python3.9/site-packages/datasets/iterable_dataset.py", line 497, in __iter__ for key, example in self._iter(): File "/home/slesage/hf/datasets-preview-backend/.venv/lib/python3.9/site-packages/datasets/iterable_dataset.py", line 494, in _iter yield from ex_iterable File "/home/slesage/hf/datasets-preview-backend/.venv/lib/python3.9/site-packages/datasets/iterable_dataset.py", line 87, in __iter__ yield from self.generate_examples_fn(**self.kwargs) File "/home/slesage/.cache/huggingface/modules/datasets_modules/datasets/nli_tr/c2ddd0c0a70caddac6a81c2dae5ca7939f00060d517d08f1983927818dba6521/nli_tr.py", line 155, in _generate_examples with codecs.open(filepath, encoding="utf-8") as f: File "/home/slesage/.pyenv/versions/3.9.6/lib/python3.9/codecs.py", line 905, in open file = builtins.open(filename, mode, buffering) FileNotFoundError: [Errno 2] No such file or directory: 'zip://snli_tr_1.0_test.jsonl::https://tabilab.cmpe.boun.edu.tr/datasets/nli_datasets/snli_tr_1.0.zip' ``` Note that normal mode is used by the dataset viewer when streaming is failing, but only for the smallest datasets. `nli_tr` is above the limit, hence the error.
## Dataset viewer issue for '*nli_tr*' **Link:** https://huggingface.co/datasets/nli_tr Hello, Thank you for the new dataset preview feature that will help the users to view the datasets online. We just noticed that the dataset viewer widget in the `nli_tr` dataset shows the error below. The error must be due to a temporary problem that may have blocked access to the dataset through the dataset viewer. But the dataset is currently accessible through the link in the error message. May we kindly ask if it would be possible to rerun the job so that it can access the dataset for the dataset viewer function? Thank you. Emrah ------------------------------------------ Server Error Status code: 404 Exception: FileNotFoundError Message: [Errno 2] No such file or directory: 'zip://snli_tr_1.0_train.jsonl::https://tabilab.cmpe.boun.edu.tr/datasets/nli_datasets/snli_tr_1.0.zip ------------------------------------------ Am I the one who added this dataset ? Yes
119
Dataset viewer for nli_tr ## Dataset viewer issue for '*nli_tr*' **Link:** https://huggingface.co/datasets/nli_tr Hello, Thank you for the new dataset preview feature that will help the users to view the datasets online. We just noticed that the dataset viewer widget in the `nli_tr` dataset shows the error below. The error must be due to a temporary problem that may have blocked access to the dataset through the dataset viewer. But the dataset is currently accessible through the link in the error message. May we kindly ask if it would be possible to rerun the job so that it can access the dataset for the dataset viewer function? Thank you. Emrah ------------------------------------------ Server Error Status code: 404 Exception: FileNotFoundError Message: [Errno 2] No such file or directory: 'zip://snli_tr_1.0_train.jsonl::https://tabilab.cmpe.boun.edu.tr/datasets/nli_datasets/snli_tr_1.0.zip ------------------------------------------ Am I the one who added this dataset ? Yes It's an issue with the streaming mode: ```python >>> import datasets >>> dataset = datasets.load_dataset('nli_tr', name='snli_tr',split='test', streaming=True) >>> next(iter(dataset)) Traceback (most recent call last): File "<stdin>", line 1, in <module> File "/home/slesage/hf/datasets-preview-backend/.venv/lib/python3.9/site-packages/datasets/iterable_dataset.py", line 497, in __iter__ for key, example in self._iter(): File "/home/slesage/hf/datasets-preview-backend/.venv/lib/python3.9/site-packages/datasets/iterable_dataset.py", line 494, in _iter yield from ex_iterable File "/home/slesage/hf/datasets-preview-backend/.venv/lib/python3.9/site-packages/datasets/iterable_dataset.py", line 87, in __iter__ yield from self.generate_examples_fn(**self.kwargs) File "/home/slesage/.cache/huggingface/modules/datasets_modules/datasets/nli_tr/c2ddd0c0a70caddac6a81c2dae5ca7939f00060d517d08f1983927818dba6521/nli_tr.py", line 155, in _generate_examples with codecs.open(filepath, encoding="utf-8") as f: File "/home/slesage/.pyenv/versions/3.9.6/lib/python3.9/codecs.py", line 905, in open file = builtins.open(filename, mode, buffering) FileNotFoundError: [Errno 2] No such file or directory: 'zip://snli_tr_1.0_test.jsonl::https://tabilab.cmpe.boun.edu.tr/datasets/nli_datasets/snli_tr_1.0.zip' ``` Note that normal mode is used by the dataset viewer when streaming is failing, but only for the smallest datasets. `nli_tr` is above the limit, hence the error.
[ -0.3372095823287964, 0.14441311359405518, -0.015028486959636211, 0.17375099658966064, -0.05881151556968689, 0.11149845272302628, 0.1539347916841507, 0.16200998425483704, -0.17150695621967316, 0.09348749369382858, -0.02976430393755436, 0.23944590985774994, -0.1792829930782318, 0.11003807932138443, 0.016051046550273895, -0.149910569190979, -0.22122186422348022, 0.2402869611978531, -0.24837207794189453, 0.2656795382499695, -0.22816210985183716, 0.029801351949572563, -0.325207382440567, 0.22082200646400452, -0.03484301641583443, -0.035847410559654236, 0.042379915714263916, 0.07314204424619675, -0.2586041986942291, -0.4625035524368286, 0.15799348056316376, 0.060433804988861084, 0.508955717086792, 0.43016517162323, -0.00012130609684390947, 0.0834653228521347, 0.4450502395629883, -0.03988706320524216, -0.659965991973877, -0.3550029397010803, -0.47807565331459045, -0.17348244786262512, 0.04896487295627594, -0.228002667427063, 0.07112785428762436, -0.10955290496349335, 0.41002485156059265, -0.34247514605522156, 0.4021579623222351, 0.269359827041626, 0.11265344172716141, 0.35623759031295776, -0.1783737987279892, 0.020434318110346794, -0.09683196991682053, 0.3553301692008972, -0.2840254008769989, 0.06681209057569504, -0.047227129340171814, 0.01402285136282444, 0.18790030479431152, 0.5336987972259521, -0.07079657912254333, -0.006749428808689117, 0.26280391216278076, -0.10037712007761002, -0.02015414834022522, -0.26460009813308716, 0.17102393507957458, 0.197424978017807, 0.7978183031082153, -0.2218109667301178, -0.4105187654495239, 0.044710710644721985, 0.12038916349411011, -0.010668890550732613, 0.05768212303519249, 0.09250196069478989, -0.24418820440769196, 0.05676940083503723, -0.23022951185703278, -0.38633278012275696, -0.2831419110298157, 0.18236452341079712, 0.010525710880756378, 0.37841472029685974, -0.07026972621679306, 0.15590593218803406, 0.010517772287130356, -0.018734686076641083, 0.6062119007110596, 0.05374392867088318, -0.0783267468214035, 0.29402801394462585, -0.08454452455043793, 0.06372905522584915, 0.33666563034057617, -0.031704142689704895, -0.08472633361816406, 0.11871442198753357, 0.17758838832378387, 0.03940942883491516, -0.24737218022346497, 0.15016812086105347, 0.2943826913833618, -0.008461376652121544, 0.2627243399620056, 0.3094159662723541, 0.493841290473938, 0.36285242438316345, 0.02829756960272789, -0.3120982050895691, -0.17254163324832916, -0.31366392970085144, -0.008933847770094872, -0.056502729654312134, 0.5308765769004822, -0.0390419065952301, -0.2252415418624878, 0.04843250662088394, -0.2940448820590973, -0.159698024392128, 0.14644703269004822, 0.31918060779571533, 0.014957659877836704, 0.0029164422303438187, 0.22158674895763397, 0.25711870193481445, -0.03644992783665657, -0.16077303886413574, -0.05119386315345764, -0.127072274684906, -0.1551033854484558, 0.13603755831718445, 0.1706996113061905, -0.23436862230300903, 0.14626950025558472, -0.15862295031547546, 0.042623452842235565, -0.15624865889549255, 0.18219780921936035, 0.0694134533405304, -0.10906816273927689, 0.1928023397922516, 0.2735237777233124, 0.14034107327461243, 0.08788342773914337, -0.12785081565380096, 0.04570310562849045, 0.3265196979045868, -0.1506679654121399, -0.6015418767929077, -0.0767233669757843, 0.023388123139739037, -0.2025863528251648, 0.09648142755031586, -0.17784196138381958, -0.11680598556995392, -0.2891521751880646, -0.4666897654533386, -0.1363503634929657, -0.08121339976787567, -0.19407489895820618, -0.08665762841701508, 0.1942857801914215, 0.5135379433631897, -0.4349256753921509, 0.02993328869342804, -0.5612022876739502, -0.17036812007427216, 0.0977102741599083, 0.14627742767333984, -0.39741000533103943, 0.1812284290790558, -0.4598767161369324, 0.03226663917303085, 0.8594748377799988, -0.2428325116634369, -0.43298718333244324, 0.22792091965675354, -0.1872897744178772, 0.13573625683784485, 0.14840295910835266, 0.13150227069854736, 0.00013087131083011627, -0.30606141686439514, -0.2865801453590393, -0.0037246327847242355, -0.009975513443350792, -0.12203390896320343, -0.13316850364208221, -0.12357114255428314, 0.4969021677970886, 0.13439518213272095, 0.33127444982528687, 0.18312674760818481, -0.016387581825256348, 0.09472038596868515, 0.540447473526001, -0.05983365699648857, 0.12429340183734894, 0.023378679528832436, 0.18752774596214294, 0.16113212704658508, 0.0609903559088707, -0.17137914896011353, -0.18226265907287598, 0.05159448832273483, 0.03566136956214905, -0.059161365032196045, -0.2303832322359085, -0.11853832006454468, -0.30454474687576294, 0.08105900138616562, -0.4299584627151489, -0.18525521457195282, 0.10036176443099976, 0.42054781317710876, 0.1194579005241394, -0.0019001103937625885, -0.11017939448356628, 0.009406926110386848, -0.3659283518791199, -0.17990581691265106, -0.21628263592720032, 0.4552302956581116, 0.03643014654517174, 0.09890735149383545, -0.15747614204883575, 0.15135285258293152, 0.26765120029449463, -0.013400018215179443, -0.15405669808387756, 0.2575662434101105, -0.14657244086265564, 0.29691609740257263, 0.2338627576828003, -0.008660227060317993, -0.0627184733748436, -0.2582271695137024, 0.4367700517177582, 0.21921810507774353, 0.0934901013970375, 0.03657647967338562, -0.1292923092842102, 0.19585517048835754, -0.28559231758117676, 0.30518320202827454, 0.1484849900007248, 0.052231565117836, 0.17835168540477753, -0.003053233027458191, -0.3003111481666565, -0.021917544305324554, 0.3135582506656647, 0.015301876701414585, -0.15865319967269897, -0.3258562684059143, -0.5164523124694824, -0.04546401649713516, 0.15764816105365753, -0.04056299850344658, -0.018648460507392883, 0.09539122879505157, -0.16078642010688782, 0.0778631642460823, -0.1472283899784088, 0.46737393736839294, 0.36266767978668213, 0.018888015300035477, 0.18126961588859558, 0.059042856097221375, 0.03949590399861336, -0.1364491581916809, 0.25484105944633484, 0.07695004343986511, 0.26701444387435913, 0.37831321358680725, 0.17617323994636536, -0.2792099714279175, -0.12441498041152954, -0.3329343795776367, 0.19763164222240448, 0.41749829053878784, -0.17528241872787476, 0.04056433588266373, -0.15728384256362915, -0.6706997156143188, -0.2099861353635788, -0.029863983392715454, 0.09681038558483124, -0.5333713293075562, -0.12765662372112274, 0.34458065032958984, 0.016908913850784302, 0.10086668282747269, -0.14886823296546936, 0.07788844406604767, -0.12327977269887924, 0.22986768186092377, -0.3139469027519226, -0.21944957971572876, -0.21494358777999878, 0.006965011358261108, 0.44153687357902527, 0.03866824135184288, 0.288350373506546, -0.16467078030109406, 0.04762507230043411, -0.6766167879104614, -0.059307411313056946, 0.019230149686336517, 0.31151366233825684, 0.41760802268981934, 0.03636164963245392, 0.5749691128730774, 0.07690669596195221, -0.16200552880764008, 0.2257206290960312, 0.014503469690680504, 0.14659762382507324, 0.11320482194423676, -0.10236018151044846, 0.17762106657028198, 0.07045502960681915, -0.24635538458824158, -0.4138721823692322, -0.4222526252269745, 0.16683301329612732, -0.1883196234703064, 0.2142515331506729, 0.10710074007511139, -0.06333918869495392, 0.06409531831741333, 0.20933791995048523, -0.02750478871166706, -0.29616162180900574, -0.37845340371131897, 0.3679851293563843, -0.39637675881385803, -0.24231310188770294, 0.04435421898961067, 0.0591837614774704, 0.3092905580997467, 0.14726415276527405, -0.7456313967704773, -0.20430050790309906, 0.12558850646018982, 0.0510418526828289, -0.19499869644641876, -0.18993231654167175, 0.11790823936462402, 0.10273654758930206, 0.10208636522293091, 0.007453080266714096, -0.06945805251598358, -0.37820717692375183, 0.09211301803588867, 0.36263516545295715, 0.21203741431236267, 0.7120792865753174, 0.08690592646598816, 0.657726526260376, 0.42098402976989746, 0.2398274540901184, 0.2728108763694763, -0.25336599349975586, 0.33615151047706604, 0.02115592360496521, -0.33564460277557373, -0.030919764190912247, -0.0862213522195816, -0.3102681636810303, -0.17689912021160126, -0.03729771450161934, -0.22838252782821655, -0.23478084802627563, 0.028275035321712494, -0.37986597418785095, -0.36621326208114624, 0.03155747428536415, -0.0073440223932266235, 0.3642157018184662, 0.24632415175437927, 0.21928128600120544, -0.35515132546424866, -0.2114359736442566, 0.021534282714128494, 0.5342150926589966, 0.4189474582672119, -0.0556570440530777, -0.14244501292705536, -0.357342004776001, -0.442666232585907, 0.1154860109090805, 0.06534726172685623, 0.585612952709198, -0.10075163841247559, 0.051597870886325836, 0.15359178185462952, 0.0002328353002667427, 0.7306020259857178, -0.6304173469543457, 0.2075631320476532, 0.21435534954071045, 0.10389527678489685, -0.0926935002207756, -0.040616266429424286, 0.04138602688908577, 0.39683687686920166, 0.33557507395744324, 0.2607985734939575, 0.13244694471359253, -0.008134981617331505, 0.4058307707309723, 0.1269119828939438, -0.2640138864517212, -0.26166778802871704, -0.09106232970952988, -0.20223242044448853, -0.2383131980895996, -0.27682748436927795, -0.33498576283454895, 0.06648093461990356, 0.031826697289943695, 0.10091249644756317, -0.1712760627269745, 0.10056113451719284, -0.004488110542297363, 0.24927712976932526, 0.10429733246564865, 0.29737335443496704, 0.15116570889949799, 0.36849549412727356, -0.0353054404258728, 0.24429573118686676, 0.4715355336666107, 0.27087339758872986, -0.19536808133125305, 0.17816701531410217, 0.03574974089860916, 0.1736307442188263, 0.4374058246612549, -0.1430080533027649, -0.010811351239681244, 0.11157573759555817, 0.15675756335258484, -0.3167542815208435, -0.06445197016000748, 0.4809035062789917, -0.03208601102232933, -0.3074762225151062, -0.6781445145606995, 0.35875487327575684, 0.11006298661231995, 0.05933254957199097, 0.35549038648605347, -0.23352958261966705, -0.022089002653956413, -0.15662935376167297, -0.07041079550981522, 0.9971469640731812, 0.0798618271946907, -0.09728695452213287, 0.4287009835243225, -0.10273177921772003, 0.4938816428184509, -0.46769994497299194, 0.19193726778030396, -0.18738043308258057, -0.19158148765563965, -0.0925125777721405, -0.1798461675643921, 0.11261171102523804, -0.25466638803482056, -0.030052771791815758, 0.27576950192451477, 0.024851135909557343, 0.18480797111988068, -0.06276173144578934, 0.2499854862689972, -0.3648163378238678, 0.18919095396995544, -0.16924811899662018, 0.02421768754720688, 0.020256023854017258, 0.20696710050106049, -0.29189610481262207, -0.12949830293655396, 0.06725388765335083, 0.0006002895534038544, -0.5399090051651001, 0.06093844771385193, -0.12275438755750656, 0.12286152690649033, -0.2690408229827881, -0.44065195322036743, 0.30404016375541687, 0.4389529526233673, -0.19436655938625336, 0.013843530789017677, -0.20928016304969788, 0.1895749717950821, -0.1921587884426117, -0.12106966227293015, -0.13133350014686584, 0.2118603140115738, 0.12995658814907074, -0.04112658277153969, -0.25405722856521606, 0.31336691975593567, -0.05343407019972801, -0.06823423504829407, -0.17700019478797913, -0.07281477749347687, 0.3483823537826538, -0.23884357511997223, -0.04688222333788872, 0.09855994582176208, -0.1710239052772522, -0.17745257914066315, 0.03611642122268677, -0.07306572794914246, -0.11032082885503769, 0.02340877056121826, -0.06345896422863007, -0.06246281415224075, 0.22534582018852234, 0.39651307463645935, 0.1523628532886505, 0.08486781269311905, 0.69996178150177, 0.3131726086139679, -0.10464584827423096, -0.18631118535995483, 0.104843370616436, -0.10417494177818298, -0.3082068860530853, 0.07734012603759766, 0.011054541915655136, 0.38331788778305054, 0.07833687216043472, 0.008951619267463684, -0.023778364062309265, 0.05188966169953346, -0.39033493399620056, -0.5781461596488953, -0.07683336734771729, 0.13702520728111267, 0.12609335780143738, 0.3145500421524048, -0.24744951725006104, 0.17483343183994293, -0.01880943402647972, -0.2135126143693924, -0.202561616897583, 0.03882208466529846, -0.11104218661785126, 0.13198040425777435, 0.17121848464012146, 0.305551141500473, 0.21760910749435425, 0.06992101669311523, 0.00040804967284202576, 0.21525447070598602, -0.2705121636390686, -0.049360863864421844, -0.06073752045631409, 0.20546405017375946, 0.19185400009155273, -0.39330142736434937, 0.0028161555528640747, -0.38639265298843384, -0.06626799702644348, 0.027455724775791168, -0.2295471727848053, -0.05826935917139053, -0.005505427718162537, 0.08908049762248993, 0.031990278512239456, -0.15311375260353088, 0.006652694195508957, 0.22609642148017883, 0.059704869985580444, 0.47965508699417114, -0.016420681029558182, 0.4109730124473572, 0.15584547817707062, 0.07975350320339203, -0.5483464598655701, -0.06679674237966537, 0.06987957656383514, 0.1304464191198349, 0.23581254482269287, -0.2737380862236023, 0.20511285960674286, -0.16463421285152435, 0.4119912087917328, 0.5968230962753296, -0.0339588038623333, 0.020801378414034843, 0.2865157425403595, 0.05778443068265915, -0.26722514629364014, 0.03562008962035179, 0.07214799523353577, 0.1473107635974884, -0.08821944892406464, 0.017716631293296814, -0.3527549207210541, 0.027391493320465088, 0.17779257893562317, -0.011592783965170383, 0.08566577732563019, -0.5194355845451355, 0.3995676338672638, 0.46767351031303406, -0.16641664505004883, -0.10600022971630096, -0.012436585500836372, 0.2363644391298294, 0.09162776917219162, 0.4538291096687317, -0.18127435445785522, -0.01766308583319187, 0.04560340940952301, 0.29953619837760925, -0.12716442346572876, -0.3672351837158203, -0.22937090694904327, 0.3160712420940399, -0.1305200159549713, 0.19418379664421082, 0.05419422313570976, 0.13105034828186035, 0.0061430917121469975, 0.3917982280254364, -0.3039238452911377, 0.38180091977119446, 0.013109669089317322, -0.07957752048969269, -0.38498544692993164, -0.47722604870796204, -0.14328701794147491, 0.1757250726222992, 0.020971111953258514, 0.03141245245933533, -0.2170182466506958, 0.1273355782032013, -0.04360617697238922, -0.40087956190109253, 0.18382245302200317, 0.20253127813339233, 0.055761609226465225, -0.5210202932357788, 0.015345700085163116, 0.31620001792907715, 0.14702282845973969, 0.10256902873516083, 0.3900318443775177, 0.4523615837097168, 0.2898964285850525, 0.05943236127495766, 0.22495436668395996, -0.02668020874261856, -0.12292879074811935, 0.044653795659542084, 0.08187931776046753, 0.41141143441200256, -0.090635746717453, 0.3471243381500244, 0.07607332617044449, -0.016663286834955215, 0.2998954653739929, 0.08789761364459991, 0.19031301140785217, -0.278997004032135, 0.183083638548851, -0.1888846457004547, 0.01049698144197464, -0.16967326402664185, -0.26931071281433105, -0.3164008557796478, 0.03648744523525238, 0.25566884875297546, 0.08024468272924423, 0.18066024780273438, -0.1258062869310379, 0.008428338915109634, -0.12289418280124664, 0.24567118287086487, 0.4544088840484619, 0.14271101355552673, -0.27088555693626404, -0.471449613571167, -0.660426914691925, -0.025508008897304535, -0.0727785974740982, -0.1287160962820053, 0.1072733998298645, 0.1513688564300537, -0.23022767901420593, -0.0730133131146431, 0.2415355145931244, 0.0282748993486166, 0.016016192734241486, 0.5099464654922485, -0.13878847658634186, -0.4524724781513214, 0.19337265193462372, 0.23086696863174438, -0.14996621012687683, -0.28729572892189026, -0.05159531906247139, -0.32818323373794556, -0.0693012923002243, -0.07002115994691849, -0.01606759801506996, -0.06456275284290314, 0.17274963855743408, 0.4851419925689697, 0.04234834760427475, 0.3402658700942993, 0.011410020291805267, -0.19065958261489868, -0.47988903522491455, -0.28470578789711, -0.10176088660955429, 0.03715425357222557, 0.21989256143569946, 0.3861190676689148, -0.3134729266166687, 0.08619101345539093, -0.5019990801811218, -0.19257912039756775, -0.35142844915390015, 0.3185383677482605, -0.1453154981136322, 0.018449028953909874, -0.18182633817195892, 0.258877158164978, 0.08744969218969345, 0.06105994060635567, 0.02628299407660961, 0.09691274166107178, -0.33288416266441345, -0.06154646724462509, 0.5880434513092041, -0.36930209398269653, -0.19443713128566742, 0.11065614223480225, 0.18552416563034058, -0.14145880937576294, -0.15165908634662628, -0.5030097365379333, 0.08320765942335129, 0.3588312566280365, 0.08367572724819183, 0.23681658506393433, 0.0670412927865982, 0.19302992522716522, 0.06736405193805695, -0.08842743933200836, 0.17040452361106873, 0.05767976492643356, -0.2595669627189636, 0.13940109312534332, -0.11390432715415955 ]
https://github.com/huggingface/datasets/issues/3186
Dataset viewer for nli_tr
Apparently there is an issue with the data source URLs: Server Not Found - https://tabilab.cmpe.boun.edu.tr/datasets/nli_datasets/snli_tr_1.0.zip We are contacting the authors to ask them: @e-budur you are one of the authors: are you aware of the issue with the URLs of your data ?
## Dataset viewer issue for '*nli_tr*' **Link:** https://huggingface.co/datasets/nli_tr Hello, Thank you for the new dataset preview feature that will help the users to view the datasets online. We just noticed that the dataset viewer widget in the `nli_tr` dataset shows the error below. The error must be due to a temporary problem that may have blocked access to the dataset through the dataset viewer. But the dataset is currently accessible through the link in the error message. May we kindly ask if it would be possible to rerun the job so that it can access the dataset for the dataset viewer function? Thank you. Emrah ------------------------------------------ Server Error Status code: 404 Exception: FileNotFoundError Message: [Errno 2] No such file or directory: 'zip://snli_tr_1.0_train.jsonl::https://tabilab.cmpe.boun.edu.tr/datasets/nli_datasets/snli_tr_1.0.zip ------------------------------------------ Am I the one who added this dataset ? Yes
43
Dataset viewer for nli_tr ## Dataset viewer issue for '*nli_tr*' **Link:** https://huggingface.co/datasets/nli_tr Hello, Thank you for the new dataset preview feature that will help the users to view the datasets online. We just noticed that the dataset viewer widget in the `nli_tr` dataset shows the error below. The error must be due to a temporary problem that may have blocked access to the dataset through the dataset viewer. But the dataset is currently accessible through the link in the error message. May we kindly ask if it would be possible to rerun the job so that it can access the dataset for the dataset viewer function? Thank you. Emrah ------------------------------------------ Server Error Status code: 404 Exception: FileNotFoundError Message: [Errno 2] No such file or directory: 'zip://snli_tr_1.0_train.jsonl::https://tabilab.cmpe.boun.edu.tr/datasets/nli_datasets/snli_tr_1.0.zip ------------------------------------------ Am I the one who added this dataset ? Yes Apparently there is an issue with the data source URLs: Server Not Found - https://tabilab.cmpe.boun.edu.tr/datasets/nli_datasets/snli_tr_1.0.zip We are contacting the authors to ask them: @e-budur you are one of the authors: are you aware of the issue with the URLs of your data ?
[ -0.16071103513240814, 0.31615105271339417, -0.018804356455802917, 0.2623423933982849, -0.21799282729625702, -0.017252642661333084, 0.15006893873214722, 0.03530788794159889, -0.2890988886356354, 0.0636708214879036, 0.03272813558578491, 0.19762398302555084, -0.14826948940753937, 0.05646298825740814, -0.013840162195265293, -0.07160653173923492, -0.27651068568229675, 0.23286008834838867, -0.3315742611885071, 0.19922108948230743, -0.3540031611919403, 0.17770475149154663, -0.24349015951156616, 0.244888037443161, -0.1757737547159195, -0.07926388829946518, -0.10400610417127609, 0.15028928220272064, -0.2553936839103699, -0.3983810842037201, 0.11828847229480743, 0.07856392860412598, 0.4469764232635498, 0.3944225311279297, -0.00011743024515453726, 0.06272591650485992, 0.37940025329589844, -0.003629947081208229, -0.6492398381233215, -0.3663604259490967, -0.5189666152000427, -0.1966070681810379, -0.025249585509300232, -0.26029056310653687, 0.15019270777702332, 0.009648667648434639, 0.40747591853141785, -0.1589103788137436, 0.35316339135169983, 0.30644387006759644, 0.14047026634216309, 0.19398771226406097, -0.09180611371994019, 0.02623973786830902, 0.040762759745121, 0.34034067392349243, -0.17963112890720367, 0.024547994136810303, -0.06585840880870819, 0.012036357074975967, 0.15071316063404083, 0.4674212634563446, 0.05246049165725708, -0.09611834585666656, 0.16594915091991425, -0.09755384922027588, -0.17801395058631897, -0.23726972937583923, 0.22319450974464417, 0.21133685111999512, 0.835003674030304, -0.12840697169303894, -0.4244789779186249, 0.18452805280685425, 0.10328119993209839, 0.1837206929922104, 0.1641167849302292, 0.11453364044427872, -0.12599846720695496, 0.16868220269680023, -0.23911762237548828, -0.47333741188049316, -0.33543258905410767, 0.23753541707992554, 0.12854115664958954, 0.40047329664230347, -0.07101531326770782, 0.14164185523986816, 0.01250891387462616, -0.03200696408748627, 0.6269383430480957, 0.03721029311418533, -0.027302268892526627, 0.25815099477767944, -0.012055907398462296, -0.019524842500686646, 0.2955661118030548, 0.037518978118896484, -0.06126943975687027, 0.18232613801956177, 0.13994444906711578, -0.012407954782247543, -0.3803473711013794, 0.13765808939933777, 0.27713316679000854, -0.04322841018438339, 0.21024039387702942, 0.3824944496154785, 0.5793761610984802, 0.35064733028411865, 0.04742604121565819, -0.19233590364456177, -0.17233160138130188, -0.36269551515579224, -0.2036142349243164, -0.034040793776512146, 0.41939032077789307, -0.05589905008673668, -0.23496106266975403, 0.03494471684098244, -0.24867022037506104, -0.18551896512508392, 0.14234694838523865, 0.274332195520401, -0.025399215519428253, 0.058124519884586334, 0.2864087224006653, 0.1165132224559784, 0.024494657292962074, -0.21376609802246094, -0.07502097636461258, 0.002508796751499176, -0.16746731102466583, 0.194168820977211, 0.16676154732704163, -0.10240203142166138, 0.23572131991386414, -0.11569439619779587, -0.08533257246017456, -0.1267828345298767, 0.13837480545043945, 0.04014125093817711, -0.13103652000427246, 0.14973969757556915, 0.21184556186199188, 0.12399006634950638, -0.05458683893084526, -0.13966599106788635, 0.12812256813049316, 0.34988507628440857, -0.377738893032074, -0.5171838402748108, -0.18209253251552582, 0.05372822284698486, -0.2618480920791626, 0.0950557142496109, -0.16708001494407654, -0.150191992521286, -0.3121712803840637, -0.31583547592163086, -0.15808188915252686, 0.018441174179315567, -0.1924065798521042, -0.10816455632448196, 0.19924330711364746, 0.5683000087738037, -0.33522894978523254, 0.10220716893672943, -0.5056489109992981, -0.12894703447818756, -0.02928438037633896, 0.19988037645816803, -0.42957958579063416, 0.27579566836357117, -0.5093458890914917, 0.015427015721797943, 0.7165735363960266, -0.20731012523174286, -0.4186080992221832, 0.14842836558818817, -0.23585470020771027, -0.02250497043132782, 0.11872364580631256, 0.0625273808836937, -0.010394865646958351, -0.26368340849876404, -0.17395421862602234, -0.02726064994931221, 0.13373678922653198, -0.14928054809570312, -0.21807369589805603, -0.1950976401567459, 0.3154064416885376, 0.1567889004945755, 0.29679378867149353, 0.2032959759235382, 0.0280548557639122, -0.0008822428062558174, 0.4721088409423828, -0.06221826747059822, 0.1488901972770691, 0.18060216307640076, 0.14081259071826935, 0.10974027961492538, 0.07085918635129929, -0.05198485031723976, -0.23814725875854492, 0.04005686193704605, -0.08348982036113739, 0.0671294704079628, -0.2397138923406601, -0.11112411320209503, -0.3352568745613098, 0.1066742017865181, -0.3112480342388153, -0.14200028777122498, 0.12734076380729675, 0.3788129389286041, 0.07168792188167572, 0.11215744912624359, -0.0725497305393219, -0.043270133435726166, -0.354897141456604, -0.14575518667697906, -0.19937294721603394, 0.5794385671615601, -0.010091742500662804, 0.23009993135929108, -0.1022205799818039, 0.23978778719902039, 0.2815825641155243, -0.05989982932806015, -0.04731077700853348, 0.2434273660182953, -0.08558955043554306, 0.25974661111831665, 0.5063217878341675, 0.0048164427280426025, -0.041734881699085236, -0.32548031210899353, 0.3984730541706085, 0.20471663773059845, 0.09544321894645691, 0.09002629667520523, -0.08179629594087601, 0.1732991635799408, -0.3442242741584778, 0.2107364535331726, 0.19000466167926788, 0.12729182839393616, 0.1947088986635208, -0.19713866710662842, -0.21964332461357117, -0.03372711315751076, 0.2569294571876526, 0.17008185386657715, -0.13689006865024567, -0.19564460217952728, -0.4437205493450165, -0.007901877164840698, 0.14199578762054443, -0.09245114028453827, -0.01907932013273239, 0.1699371188879013, -0.06892261654138565, 0.05269085615873337, -0.18455950915813446, 0.6337059140205383, 0.27075251936912537, 0.029211822897195816, 0.059874214231967926, 0.022487180307507515, 0.04355437308549881, -0.20001216232776642, 0.16627925634384155, 0.07712792605161667, 0.20619866251945496, 0.3555653691291809, 0.18540355563163757, -0.1833193153142929, -0.24150899052619934, -0.416293203830719, 0.2229716181755066, 0.4232955276966095, -0.22398754954338074, -0.08110707253217697, -0.19611316919326782, -0.5683671236038208, -0.3266375958919525, 0.034797824919223785, -0.08514885604381561, -0.5376586318016052, -0.0037610791623592377, 0.1997990757226944, -0.08451420813798904, 0.029463419690728188, -0.15697328746318817, 0.2806318402290344, -0.3000044524669647, 0.3265744149684906, -0.28029656410217285, -0.2400485873222351, -0.16940319538116455, 0.05047420784831047, 0.46195295453071594, 0.12484078109264374, 0.1804799884557724, -0.3207160532474518, 0.1662357598543167, -0.6942237615585327, -0.10716541111469269, -0.01912090927362442, 0.4177442789077759, 0.3770351707935333, 0.06534110009670258, 0.5465889573097229, -0.023581450805068016, -0.19679094851016998, 0.19449006021022797, 0.11781689524650574, 0.14004860818386078, 0.006322681903839111, -0.08484524488449097, 0.11531073600053787, 0.08675484359264374, -0.31863731145858765, -0.3641405999660492, -0.3001260459423065, 0.0798010304570198, -0.25853389501571655, 0.23093979060649872, 0.031903304159641266, -0.04005342349410057, 0.09954235702753067, 0.2570798397064209, -0.07195304334163666, -0.2391519695520401, -0.5009573698043823, 0.43028178811073303, -0.44364288449287415, -0.29261642694473267, 0.04041934385895729, -0.06307394802570343, 0.3070583641529083, 0.05465379357337952, -0.866399884223938, -0.14274176955223083, 0.09109532088041306, -0.037840742617845535, -0.14727549254894257, -0.0929233580827713, 0.09087572991847992, 0.14630044996738434, 0.036299630999565125, -0.022825045511126518, -0.16729509830474854, -0.18139943480491638, 0.06718389689922333, 0.48478007316589355, 0.2923838198184967, 0.5690203309059143, 0.06965115666389465, 0.7528232336044312, 0.25664249062538147, 0.19632920622825623, 0.30979347229003906, -0.20833228528499603, 0.3661758005619049, 0.21152758598327637, -0.2763921618461609, -0.05474354326725006, -0.009429022669792175, -0.2624596953392029, -0.17156611382961273, 0.10129322111606598, -0.06308304518461227, -0.25014379620552063, -0.011398769915103912, -0.4961642622947693, -0.3527580797672272, 0.00925912894308567, 0.037948042154312134, 0.35619789361953735, 0.30547356605529785, 0.10402057319879532, -0.3152064085006714, -0.1795785129070282, -0.01997489482164383, 0.4114854335784912, 0.46068131923675537, -0.1532716602087021, -0.2637549042701721, -0.3348710834980011, -0.46565210819244385, 0.1662992686033249, 0.06670710444450378, 0.5565788149833679, -0.09066365659236908, 0.17004749178886414, 0.17052879929542542, 0.002896588295698166, 0.7034198045730591, -0.6754003167152405, 0.19516952335834503, 0.09118632972240448, 0.09801243245601654, -0.026527242735028267, 0.03765347972512245, 0.17765289545059204, 0.2861606776714325, 0.3423601984977722, 0.41796889901161194, 0.06507150083780289, -0.015135304071009159, 0.4271433353424072, 0.015961719676852226, -0.34045031666755676, -0.27965763211250305, 0.004714027047157288, -0.3355351686477661, -0.11620965600013733, -0.3424893617630005, -0.29557865858078003, 0.08858350664377213, 0.12977108359336853, 0.039436232298612595, -0.07472258806228638, 0.05895029008388519, -0.04069790244102478, 0.21548335254192352, 0.1009543389081955, 0.3229449987411499, 0.09512872993946075, 0.40230002999305725, 0.09691457450389862, 0.36446982622146606, 0.5420066714286804, 0.0004747137427330017, -0.19858428835868835, 0.16443181037902832, -0.03462446108460426, 0.17588841915130615, 0.46203938126564026, -0.048108652234077454, -0.12349409610033035, 0.17618654668331146, 0.13503535091876984, -0.23427081108093262, -0.14293032884597778, 0.44049912691116333, -0.08203206956386566, -0.33437249064445496, -0.5470283031463623, 0.3727502226829529, 0.13329730927944183, 0.04767780005931854, 0.3023923933506012, -0.13566331565380096, -0.05229467898607254, -0.18288925290107727, -0.018553346395492554, 1.0894266366958618, 0.061443641781806946, -0.11165851354598999, 0.3401440680027008, -0.2458464652299881, 0.49262312054634094, -0.45483988523483276, 0.13158640265464783, -0.268316388130188, -0.11989136040210724, -0.08872532099485397, -0.1819387525320053, 0.06470797210931778, -0.0031107142567634583, 0.07038186490535736, 0.22701452672481537, 0.02613431215286255, 0.14291860163211823, -0.006702179089188576, 0.40048667788505554, -0.1558934450149536, 0.2366461306810379, -0.12937581539154053, 0.045760929584503174, 0.047278910875320435, 0.18535536527633667, -0.3365587890148163, -0.2048860788345337, -0.060015492141246796, -0.086549773812294, -0.5080175399780273, 0.07780296355485916, -0.24559229612350464, 0.19213810563087463, -0.0708605945110321, -0.35842031240463257, 0.25789397954940796, 0.41955825686454773, -0.05408376455307007, -0.024492856115102768, -0.20939229428768158, 0.27572765946388245, -0.2865545153617859, -0.17655450105667114, -0.0796188935637474, 0.23648686707019806, 0.021870901808142662, -0.0673733800649643, -0.2733612656593323, 0.24953842163085938, -0.08949588239192963, -0.19233721494674683, -0.2152029275894165, -0.1141061931848526, 0.0865403413772583, -0.19861778616905212, 0.08236922323703766, 0.14349180459976196, -0.15604542195796967, -0.2511219382286072, 0.062422655522823334, 0.0006560161709785461, -0.028880350291728973, -0.026668302714824677, 0.026153093203902245, -0.04685032740235329, 0.21965329349040985, 0.395079642534256, 0.13222414255142212, 0.05520647019147873, 0.6037600040435791, 0.23773060739040375, -0.05978209525346756, -0.20724144577980042, 0.2753232717514038, -0.12834522128105164, -0.42823660373687744, 0.12206227332353592, -0.009477461688220501, 0.3583334684371948, 0.08332263678312302, 0.09017208963632584, 0.0022397004067897797, 0.22501987218856812, -0.3135118782520294, -0.6303313374519348, 0.002326585352420807, 0.2650645971298218, 0.07050911337137222, 0.29281967878341675, -0.19218352437019348, 0.07586780190467834, 0.009950077161192894, -0.18477366864681244, -0.2427608221769333, 0.1451237052679062, -0.22702276706695557, 0.077668696641922, 0.1247909814119339, 0.253357470035553, 0.21831060945987701, 0.10657493770122528, 0.002832964062690735, 0.08675414323806763, -0.17973987758159637, -0.04741964116692543, -0.07922640442848206, 0.2009204775094986, 0.15908634662628174, -0.3391475975513458, -0.13359616696834564, -0.4040830135345459, -0.03720679506659508, 0.14303593337535858, -0.34245383739471436, -0.059589989483356476, -0.012850560247898102, 0.09086897224187851, -0.16404765844345093, -0.16833823919296265, -0.06263481080532074, 0.2670291066169739, 0.11232692748308182, 0.5703387260437012, 0.06641071289777756, 0.42700302600860596, 0.1555977761745453, 0.03156452625989914, -0.5456816554069519, -0.06520379334688187, -0.09000371396541595, 0.13212314248085022, 0.17482060194015503, -0.2577105164527893, 0.2110312581062317, -0.020309453830122948, 0.31414392590522766, 0.5068176984786987, -0.11704031378030777, 0.010211775079369545, 0.3920274078845978, 0.08801799267530441, -0.3081873655319214, 0.02585172839462757, 0.14429154992103577, 0.137784942984581, -0.1892334520816803, 0.005619265139102936, -0.3173307478427887, -0.06587842106819153, 0.23487810790538788, -0.0678144246339798, 0.11392461508512497, -0.4878184199333191, 0.4354393780231476, 0.4494546949863434, -0.32193422317504883, -0.0514678992331028, 0.03306391462683678, 0.20265550911426544, 0.12120204418897629, 0.38638126850128174, -0.14137732982635498, -0.02557816542685032, -0.005247574299573898, 0.33550360798835754, -0.06637737900018692, -0.32370850443840027, -0.16886939108371735, 0.29705244302749634, -0.04352276027202606, 0.028748326003551483, -0.06376856565475464, 0.1984875202178955, 0.05744920298457146, 0.41222286224365234, -0.34388574957847595, 0.47559162974357605, -0.020742125809192657, -0.047357041388750076, -0.4583554267883301, -0.5120276808738708, -0.16047179698944092, 0.20014972984790802, -0.02007145807147026, -0.034657903015613556, -0.1254570633172989, 0.05711515247821808, -0.12649154663085938, -0.38305607438087463, 0.19254747033119202, 0.21957606077194214, 0.02058645337820053, -0.49709010124206543, 0.01612718403339386, 0.2757077217102051, 0.09464830160140991, 0.1132260113954544, 0.4429756700992584, 0.37800440192222595, 0.25728344917297363, 0.15191303193569183, 0.12272143363952637, -0.12393169105052948, -0.03801584988832474, 0.05364404618740082, 0.16726021468639374, 0.4171243906021118, -0.2469627410173416, 0.45216092467308044, 0.08147761225700378, -0.044863782823085785, 0.28074926137924194, 0.13451442122459412, 0.3145264685153961, -0.18179476261138916, 0.15374749898910522, -0.22643691301345825, 0.04277735948562622, -0.1663483828306198, -0.2534022927284241, -0.22674551606178284, -0.05141559988260269, 0.18063847720623016, -0.03920755907893181, 0.1661520004272461, -0.21109285950660706, 0.025621872395277023, -0.10201828181743622, 0.27386221289634705, 0.539874255657196, 0.1572302132844925, -0.2646913230419159, -0.6150693297386169, -0.6281587481498718, 0.0070889294147491455, -0.1377890557050705, -0.09431708604097366, 0.02863939106464386, 0.04039546102285385, -0.25504550337791443, -0.14217285811901093, 0.23063534498214722, 0.1753210425376892, -0.08711856603622437, 0.46355554461479187, -0.1943257451057434, -0.24266724288463593, 0.13727152347564697, 0.288679838180542, -0.14983490109443665, -0.2159627377986908, -0.04568643495440483, -0.15379588305950165, -0.09099547564983368, -0.0973198339343071, 0.07549956440925598, -0.2045450359582901, 0.18261335790157318, 0.4397200345993042, 0.12436297535896301, 0.3011542856693268, 0.00917845219373703, -0.1304396688938141, -0.4564173221588135, -0.4489457905292511, -0.037693146616220474, 0.07540149241685867, 0.36970680952072144, 0.25248533487319946, -0.27637147903442383, 0.11154966056346893, -0.46624770760536194, -0.27590829133987427, -0.42883867025375366, 0.5582961440086365, -0.043607983738183975, -0.010994819924235344, -0.07777035981416702, 0.11442147195339203, 0.1648714542388916, 0.022943969815969467, -0.006082184612751007, -0.04526359587907791, -0.22354890406131744, 0.013301735743880272, 0.4881928861141205, -0.3136345148086548, -0.12338371574878693, 0.11223982274532318, 0.2674962878227234, -0.2966824471950531, -0.13520117104053497, -0.36735379695892334, 0.007024221122264862, 0.3988311290740967, 0.20474731922149658, 0.143080934882164, 0.02501310408115387, 0.22250348329544067, 0.0420612134039402, -0.037307318300008774, 0.1147754043340683, 0.0671800971031189, -0.3394054174423218, 0.14499489963054657, -0.08130496740341187 ]
https://github.com/huggingface/datasets/issues/3185
7z dataset preview not implemented?
It's a bug in the dataset viewer: the dataset cannot be downloaded in streaming mode, but since the dataset is relatively small, the dataset viewer should have fallback to normal mode. Working on a fix.
## Dataset viewer issue for dataset 'samsum' **Link:** https://huggingface.co/datasets/samsum Server Error Status code: 400 Exception: NotImplementedError Message: Extraction protocol '7z' for file at 'https://arxiv.org/src/1911.12237v2/anc/corpus.7z' is not implemented yet
35
7z dataset preview not implemented? ## Dataset viewer issue for dataset 'samsum' **Link:** https://huggingface.co/datasets/samsum Server Error Status code: 400 Exception: NotImplementedError Message: Extraction protocol '7z' for file at 'https://arxiv.org/src/1911.12237v2/anc/corpus.7z' is not implemented yet It's a bug in the dataset viewer: the dataset cannot be downloaded in streaming mode, but since the dataset is relatively small, the dataset viewer should have fallback to normal mode. Working on a fix.
[ -0.48396068811416626, -0.5628321766853333, -0.006739649921655655, 0.0909741222858429, 0.06157799810171127, -0.03139853850007057, 0.005800772458314896, 0.5215320587158203, 0.1930069923400879, 0.3059779405593872, -0.10363037884235382, 0.4704761505126953, 0.07375698536634445, 0.016508204862475395, -0.25015610456466675, -0.17244894802570343, 0.0452871210873127, 0.2829017639160156, -0.0775601863861084, -0.004338148981332779, -0.1569986641407013, 0.14009882509708405, -0.3624873757362366, -0.1898084133863449, 0.40745747089385986, -0.04822812229394913, -0.001849273219704628, -0.09500373154878616, -0.38087356090545654, -0.11859466880559921, 0.14733193814754486, 0.14364221692085266, 0.44291162490844727, 0.35854053497314453, -0.00011161744623677805, 0.03173918277025223, 0.48417818546295166, -0.03720312565565109, -0.04133504629135132, -0.05490516126155853, -0.28651148080825806, -0.20730851590633392, 0.03132150322198868, -0.21715322136878967, -0.12915374338626862, -0.27872195839881897, 0.1212334856390953, -0.1701754331588745, 0.49539899826049805, 0.0873909667134285, 0.20058125257492065, 0.13300172984600067, -0.17952559888362885, -0.2982805073261261, -0.0907210037112236, -0.06140139698982239, -0.3701271116733551, -0.01634575054049492, 0.4039302468299866, 0.44845640659332275, -0.05994459241628647, 0.29507485032081604, 0.016005372628569603, 0.05256424471735954, -0.14948832988739014, -0.02164963260293007, 0.1831606924533844, -0.44771283864974976, 0.018048321828246117, 0.3036218285560608, 0.8176954984664917, 0.08612331002950668, -0.3233795464038849, 0.1493951380252838, -0.033561401069164276, -0.05870780348777771, -0.03610258549451828, 0.1986704170703888, -0.22596153616905212, 0.18276573717594147, -0.264588862657547, 0.010393175296485424, -0.21805168688297272, 0.08531474322080612, 0.0010160692036151886, 0.1904427409172058, -0.2955218553543091, -0.06718195229768753, 0.024568788707256317, 0.04696069657802582, 0.19302897155284882, -0.12332011759281158, -0.1381411850452423, -0.02069820463657379, -0.07047119736671448, -0.021724369376897812, -0.019935712218284607, -0.09374090284109116, 0.23284831643104553, 0.20788203179836273, 0.25021111965179443, 0.5154325366020203, -0.012836725451052189, 0.07122166454792023, 0.09611055254936218, 0.07133331894874573, 0.2772095203399658, -0.25935637950897217, 0.3985706567764282, 0.5647320747375488, 0.4272533059120178, -0.006759807467460632, -0.27517175674438477, 0.1337738335132599, -0.018135061487555504, -0.20406082272529602, 0.10158468782901764, -0.24752351641654968, -0.01261773332953453, -0.09898538142442703, 0.17158785462379456, 0.25211188197135925, -0.1718658208847046, 0.24745559692382812, -0.12962035834789276, -0.10611680895090103, -0.19798721373081207, 0.3049406409263611, -0.13704173266887665, -0.2937650680541992, -0.18275785446166992, -0.12395843863487244, -0.03992559760808945, 0.024101849645376205, 0.16157789528369904, -0.23063960671424866, 0.17377325892448425, -0.09232193976640701, -0.06317129731178284, 0.14281561970710754, 0.038333334028720856, -0.03281428664922714, 0.10050497204065323, 0.45724451541900635, 0.34785178303718567, 0.16761012375354767, 0.2057429701089859, 0.19674627482891083, -0.12065568566322327, 0.20362743735313416, -0.04636228829622269, -0.21094995737075806, -0.27171629667282104, 0.16169781982898712, -0.4416710138320923, -0.04259538650512695, -0.3865174949169159, 0.1509881168603897, -0.027635209262371063, -0.047309935092926025, -0.23551958799362183, -0.028255265206098557, -0.4325049817562103, 0.01964196376502514, 0.3999099135398865, 0.11836269497871399, -0.21086527407169342, 0.05144595354795456, -0.4111193120479584, -0.24527215957641602, 0.6090430021286011, -0.014569859951734543, -0.08191119134426117, -0.055609337985515594, -0.22325649857521057, 0.43160736560821533, 0.4117473363876343, -0.18886907398700714, -0.5363106727600098, 0.08759842813014984, 0.043844304978847504, 0.1635085940361023, 0.07974589616060257, 0.028808241710066795, 0.21175606548786163, 0.0018349054735153913, -0.13431383669376373, 0.0037349797785282135, 0.05484478548169136, 0.05751984566450119, -0.20880992710590363, -0.41633340716362, 0.08240243792533875, 0.24518726766109467, 0.2756761610507965, 0.15713727474212646, 0.2077476680278778, -0.06783392280340195, 0.3364158570766449, 0.1595572829246521, 0.22510208189487457, 0.003637058660387993, 0.3694368600845337, -0.0336121991276741, 0.10290808230638504, -0.2639258801937103, 0.2875327169895172, 0.2715085446834564, 0.21217048168182373, 0.13433220982551575, -0.11069098114967346, -0.16768744587898254, -0.13945087790489197, -0.15779031813144684, -0.23488269746303558, -0.017251722514629364, 0.17700061202049255, -0.058999329805374146, 0.0715155303478241, -0.10139194130897522, -0.10978633165359497, 0.4214688539505005, -0.18427924811840057, -0.03940676525235176, -0.43758267164230347, 0.3026096820831299, -0.16526873409748077, -0.20144343376159668, 0.1467357873916626, -0.338977575302124, -0.006002366542816162, -0.26203227043151855, 0.005140260793268681, 0.06554156541824341, -0.06549633294343948, -0.01795314997434616, 0.16872259974479675, -0.1457897573709488, -0.05655486881732941, -0.3856087923049927, 0.4684930741786957, -0.0073198359459638596, 0.011481725610792637, 0.19668099284172058, -0.2538405954837799, 0.09732523560523987, 0.14506635069847107, -0.12983503937721252, 0.033225446939468384, 0.17882037162780762, 0.5056262016296387, 0.01881028339266777, -0.20297256112098694, -0.18785439431667328, 0.030287815257906914, -0.3145388066768646, -0.8782999515533447, -0.3837752938270569, -0.15533588826656342, 0.17875206470489502, 0.34573304653167725, 0.1417030245065689, 0.10970291495323181, 0.1917661428451538, -0.20470747351646423, -0.0914149209856987, 0.17319859564304352, 0.059299301356077194, 0.3716675937175751, 0.24139980971813202, 0.13135619461536407, -0.008740650489926338, 0.1029614731669426, -0.08276348561048508, 0.0006571114063262939, 0.35195261240005493, 0.30412158370018005, 0.1721450239419937, -0.07928010821342468, 0.030848506838083267, -0.2384966015815735, -0.028662078082561493, 0.13004054129123688, 0.03941189870238304, -0.026248903945088387, -0.17151378095149994, -0.43573275208473206, -0.36004647612571716, 0.015990981832146645, -0.06551085412502289, 0.07188341021537781, -0.37175261974334717, 0.02874317206442356, 0.3729940950870514, 0.0010418891906738281, 0.2503756582736969, -0.6670634746551514, 0.21903692185878754, 0.0006921533495187759, 0.10948791354894638, -0.15393739938735962, 0.1093987226486206, 0.06262750178575516, 0.1533137410879135, -0.1009114608168602, 0.26730355620384216, 0.3327881097793579, -0.3592056334018707, 0.04056354984641075, -0.4711132347583771, -0.2131364643573761, 0.3816511034965515, -0.0667567327618599, 0.3505968749523163, -0.0037569478154182434, 0.19205135107040405, 0.20335988700389862, 0.015683863312005997, 0.09965787827968597, -0.20471002161502838, -0.23649859428405762, 0.23669421672821045, -0.16487179696559906, -0.2628377676010132, -0.1923886239528656, -0.3160993456840515, -0.24414320290088654, -0.5387569665908813, -0.13671450316905975, 0.05642377957701683, 0.09306132793426514, 0.2002333700656891, -0.016902631148695946, -0.001196358585730195, -0.047267474234104156, 0.16216762363910675, -0.1252838522195816, -0.30890148878097534, 0.41442474722862244, -0.2430088222026825, -0.6127558350563049, 0.3216831684112549, -0.04038439318537712, 0.27587348222732544, 0.09277208149433136, -0.3097912669181824, -0.1292380392551422, -0.1673499345779419, 0.34052741527557373, 0.18609018623828888, -0.23628924787044525, 0.4606412947177887, -0.2481783926486969, -0.18670646846294403, -0.13133105635643005, 0.08316726982593536, -0.0918932631611824, -0.08183378726243973, 0.2839740216732025, -0.0020092278718948364, 0.21579670906066895, 0.11320875585079193, 0.4368075728416443, 0.4532919228076935, 0.04014891758561134, 0.29613548517227173, 0.07943739742040634, 0.03999810665845871, -0.06401223689317703, -0.12359729409217834, -0.016691789031028748, -0.23676961660385132, 0.26295965909957886, 0.3913955092430115, 0.12981057167053223, -0.2164636105298996, -0.1430559903383255, -0.24471402168273926, -0.43238091468811035, -0.2003301978111267, -0.17651082575321198, 0.11337830871343613, -0.026526570320129395, 0.09775950014591217, 0.17080911993980408, -0.15325210988521576, -0.22842255234718323, -0.025948118418455124, 0.637870192527771, 0.06375496089458466, 0.0972883552312851, -0.05514133721590042, 0.09668707847595215, -0.3674929141998291, 0.3099448084831238, 0.06602925807237625, 0.3378685414791107, -0.12315557897090912, -0.12797456979751587, 0.09344898164272308, -0.13857433199882507, 0.489654004573822, -0.4162348806858063, 0.1051928699016571, 0.15028195083141327, -0.08827202022075653, -0.19817574322223663, -0.15647387504577637, -0.25508156418800354, 0.3022801876068115, 0.14043594896793365, 0.5872182250022888, 0.17336830496788025, -0.13965138792991638, 0.18228498101234436, 0.07911255955696106, -0.1565936654806137, -0.23605544865131378, -0.21390263736248016, -0.3685302436351776, -0.18936128914356232, -0.20959439873695374, 0.03125067800283432, 0.014849534258246422, -0.3528364896774292, -0.37975892424583435, -0.01125088520348072, -0.1602822244167328, 0.015952743589878082, 0.2861621379852295, 0.108063243329525, 0.0743548572063446, 0.5661281943321228, 0.16361451148986816, 0.05796385556459427, 0.27074459195137024, 0.4802527129650116, 0.26854342222213745, -0.3794764280319214, 0.29380878806114197, -0.32844504714012146, -0.08449717611074448, 0.08129103481769562, -0.03873775526881218, -0.06596434861421585, 0.3078490197658539, 0.2262335866689682, -0.32047778367996216, -0.13486045598983765, 0.36900708079338074, -0.11486825346946716, -0.3147367238998413, -0.09534338116645813, 0.27074792981147766, 0.10505704581737518, -0.07459531724452972, 0.31355512142181396, 0.2246869057416916, 0.030369050800800323, -0.0319582037627697, 0.01800842583179474, 0.7225290536880493, 0.08211885392665863, -0.2916077971458435, -0.04334217309951782, 0.23013891279697418, 0.29895588755607605, -0.22977113723754883, 0.25355064868927, -0.13993942737579346, -0.8939226269721985, -0.15354429185390472, -0.051730554550886154, 0.39598536491394043, -0.21453918516635895, -0.3525356352329254, 0.04560799524188042, 0.09517014026641846, 0.07554370909929276, -0.04591054469347, -0.12777602672576904, -0.309347927570343, -0.1422102302312851, -0.03577842190861702, 0.21432386338710785, -0.0718865841627121, 0.2727920711040497, 0.13263899087905884, -0.1331988126039505, -0.24619823694229126, 0.05429309606552124, -0.23179982602596283, 0.433403879404068, 0.6366909146308899, -0.014883749186992645, 0.05255035310983658, 0.1236858069896698, 0.38185423612594604, -0.01770927384495735, 0.21418723464012146, -0.04414466395974159, -0.3571649491786957, 0.04560447111725807, -0.06459758430719376, -0.30759644508361816, -0.04136954993009567, 0.13202185928821564, 0.3598659336566925, -0.3604137599468231, -0.2502972483634949, 0.04277423769235611, 0.05927841365337372, -0.01354827731847763, 0.1452741026878357, -0.3632369637489319, 0.2516341507434845, -0.1412610411643982, 0.05689307674765587, -0.06394089758396149, 0.1477368026971817, -0.2665882110595703, 0.12252660095691681, 0.1375909447669983, -0.2977882921695709, 0.42044973373413086, 0.1445300281047821, -0.02111363410949707, -0.015089195221662521, 0.39553824067115784, 0.158689945936203, -0.09399770200252533, 0.14616277813911438, 0.27616241574287415, -0.3084469437599182, -0.23739907145500183, -0.1885334849357605, -0.03592505306005478, -0.17408497631549835, -0.12025090306997299, -0.29598599672317505, 0.09279924631118774, 0.028686320409178734, 0.4186215400695801, -0.04933846741914749, -0.7162566184997559, -0.3539104461669922, -0.41652393341064453, -0.07347279042005539, 0.09655196964740753, -0.32125064730644226, 0.2928396761417389, -0.0319160595536232, -0.387676864862442, 0.06554201990365982, -0.10726724565029144, -0.3076191544532776, -0.09665711969137192, -0.028626177459955215, 0.06766859441995621, -0.04961922764778137, 0.14069190621376038, 0.21518199145793915, -0.056110892444849014, 0.07524371892213821, 0.28771549463272095, -0.2508215606212616, -0.18818071484565735, -0.11311648786067963, 0.14798587560653687, -0.016714878380298615, -0.13563446700572968, 0.22567495703697205, -0.04480178654193878, -0.48023363947868347, 0.030437303707003593, 0.10502584278583527, -0.01837068237364292, 0.07932201027870178, 0.11819674074649811, 0.44957008957862854, -0.04281788319349289, -0.016277078539133072, 0.1521756798028946, 0.16393998265266418, 0.6422513723373413, -0.37154465913772583, 0.12378209829330444, -0.010847831144928932, -0.1403806358575821, -0.22239765524864197, 0.008220508694648743, 0.055968739092350006, -0.09839754551649094, 0.5042402148246765, -0.15944330394268036, 0.5469307899475098, -0.041519466787576675, 0.5383192300796509, 0.14595064520835876, -0.0542173907160759, -0.0011117812246084213, 0.17152971029281616, 0.1860467493534088, -0.36655738949775696, -0.2392326444387436, 0.04549919441342354, 0.11990174651145935, -0.05607852339744568, 0.21248330175876617, -0.10223526507616043, 0.30613186955451965, 0.238582044839859, 0.008029041811823845, 0.7190952897071838, 0.002362443134188652, 0.16674862802028656, 0.3020486831665039, 0.007014621049165726, 0.2010900378227234, 0.011902039870619774, 0.10073670744895935, 0.09394732117652893, 0.5550335049629211, -0.10076188296079636, 0.3215494453907013, -0.001127481460571289, 0.29034170508384705, -0.10832879692316055, -0.4291042983531952, 0.21696659922599792, 0.015352189540863037, 0.021502837538719177, 0.20712867379188538, 0.10349038243293762, 0.4104979336261749, -0.12068373709917068, 0.06974934786558151, -0.571719765663147, 0.030843617394566536, 0.12197500467300415, 0.11733086407184601, -0.38965314626693726, -0.13201269507408142, -0.14053291082382202, -0.06449523568153381, 0.14577138423919678, 0.1444145143032074, -0.13556857407093048, 0.0868951752781868, -0.20851187407970428, -0.2474711388349533, -0.036655671894550323, -0.1358388364315033, 0.15586023032665253, -0.174665629863739, 0.10050342977046967, 0.14989085495471954, 0.06461762636899948, 0.13604702055454254, 0.2602290213108063, 0.3294282555580139, 0.010167306289076805, 0.11435668170452118, 0.08005698770284653, 0.12905451655387878, -0.26758038997650146, -0.10825274139642715, 0.20731444656848907, 0.4254722595214844, 0.24147725105285645, 0.21180982887744904, 0.1852378398180008, -0.1604444682598114, 0.24352523684501648, 0.08154724538326263, 0.31048595905303955, 0.12987098097801208, 0.4348260164260864, -0.15306295454502106, -0.009461693465709686, 0.05977229028940201, -0.23615533113479614, -0.18369688093662262, 0.3452475965023041, 0.04400365799665451, -0.18890686333179474, -0.002640027552843094, -0.16841182112693787, 0.07800908386707306, -0.1317235827445984, 0.3109852373600006, 0.0003799907863140106, 0.11301694810390472, 0.24205470085144043, -0.07308124750852585, -0.3127557039260864, 0.18156550824642181, 0.029782084748148918, -0.15040913224220276, 0.08650010824203491, 0.09641758352518082, 0.1498066484928131, 0.4099143147468567, 0.021418191492557526, -0.13434916734695435, 0.11827612668275833, 0.40476754307746887, -0.24676258862018585, -0.2702144384384155, 0.2301369160413742, 0.11329836398363113, -0.02836296334862709, -0.4038640856742859, 0.1979685127735138, -0.3429179787635803, 0.06671105325222015, -0.006134431809186935, -0.18185856938362122, 0.035384174436330795, -0.4790586531162262, 0.3901408016681671, 0.056382425129413605, 0.4353194534778595, -0.20114123821258545, -0.09573324769735336, -0.2907484769821167, -0.09102827310562134, -0.22923685610294342, -0.1068749949336052, 0.22479316592216492, 0.44103795289993286, -0.0334150493144989, 0.13254231214523315, -0.1738765984773636, -0.20399653911590576, 0.008955568075180054, 0.07011563330888748, -0.4543839693069458, 0.12552227079868317, -0.1753562092781067, -0.0953829362988472, 0.3957518935203552, -0.10915083438158035, -0.06274960935115814, -0.0742369219660759, -0.3598180413246155, -0.3099564015865326, 0.3573330044746399, -0.4345685541629791, -0.11756932735443115, -0.16388940811157227, -0.06096431612968445, -0.2776518166065216, -0.2708716094493866, -0.4071492850780487, 0.15594351291656494, 0.262520968914032, -0.09928790479898453, 0.20766712725162506, 0.23803699016571045, 0.1655704379081726, -0.3705279231071472, -0.10435047745704651, 0.180459663271904, -0.08157945424318314, -0.12185896188020706, 0.021571557968854904, 0.004347514361143112 ]
https://github.com/huggingface/datasets/issues/3181
`None` converted to `"None"` when loading a dataset
Hi @eladsegal, thanks for reporting. @mariosasko I saw you are already working on this, but maybe my comment will be useful to you. All values are casted to their corresponding feature type (including `None` values). For example if the feature type is `Value("bool")`, `None` is casted to `False`. It is true that strings were an exception, but this was recently fixed by @lhoestq (see #3158).
## Describe the bug When loading a dataset `None` values of the type `NoneType` are converted to `'None'` of the type `str`. ## Steps to reproduce the bug ```python from datasets import load_dataset qasper = load_dataset("qasper", split="train", download_mode="reuse_cache_if_exists") print(qasper[60]["full_text"]["section_name"]) ``` When installing version 1.1.40, the output is `[None, 'Introduction', 'Benchmark Datasets', ...]` When installing from the master branch, the output is `['None', 'Introduction', 'Benchmark Datasets', ...]` Notice how the first element was changed from `NoneType` to `str`. ## Expected results `None` should stay as is. ## Actual results `None` is converted to a string. ## Environment info <!-- You can run the command `datasets-cli env` and copy-and-paste its output below. --> - `datasets` version: master - Platform: Linux-4.4.0-19041-Microsoft-x86_64-with-glibc2.17 - Python version: 3.8.10 - PyArrow version: 4.0.1
65
`None` converted to `"None"` when loading a dataset ## Describe the bug When loading a dataset `None` values of the type `NoneType` are converted to `'None'` of the type `str`. ## Steps to reproduce the bug ```python from datasets import load_dataset qasper = load_dataset("qasper", split="train", download_mode="reuse_cache_if_exists") print(qasper[60]["full_text"]["section_name"]) ``` When installing version 1.1.40, the output is `[None, 'Introduction', 'Benchmark Datasets', ...]` When installing from the master branch, the output is `['None', 'Introduction', 'Benchmark Datasets', ...]` Notice how the first element was changed from `NoneType` to `str`. ## Expected results `None` should stay as is. ## Actual results `None` is converted to a string. ## Environment info <!-- You can run the command `datasets-cli env` and copy-and-paste its output below. --> - `datasets` version: master - Platform: Linux-4.4.0-19041-Microsoft-x86_64-with-glibc2.17 - Python version: 3.8.10 - PyArrow version: 4.0.1 Hi @eladsegal, thanks for reporting. @mariosasko I saw you are already working on this, but maybe my comment will be useful to you. All values are casted to their corresponding feature type (including `None` values). For example if the feature type is `Value("bool")`, `None` is casted to `False`. It is true that strings were an exception, but this was recently fixed by @lhoestq (see #3158).
[ -0.07436461746692657, -0.028928838670253754, 0.020289015024900436, 0.2942243814468384, 0.46713483333587646, -0.040425874292850494, 0.34945642948150635, 0.2275470644235611, 0.02460145577788353, 0.5165577530860901, -0.08832641690969467, 0.632294237613678, -0.08932195603847504, 0.08853394538164139, 0.044315602630376816, -0.031129710376262665, 0.1287149339914322, 0.35458168387413025, -0.15348908305168152, 0.035855598747730255, -0.05593855679035187, 0.15677623450756073, -0.20159004628658295, 0.055470116436481476, -0.20425595343112946, 0.00019523687660694122, -0.015309864655137062, 0.006500128656625748, 0.0632324293255806, -0.5500475764274597, -0.028555627912282944, -0.2574138343334198, -0.156840518116951, 0.535215437412262, -0.00011530827032402158, 0.01180759072303772, 0.38763755559921265, 0.23432135581970215, -0.40455833077430725, -0.5279957056045532, -0.20062047243118286, -0.22279150784015656, 0.2552914321422577, -0.04410598427057266, -0.1661449670791626, -0.20246964693069458, -0.10532107949256897, -0.3687559962272644, -0.16319860517978668, 0.28669241070747375, 0.22134724259376526, 0.4613036513328552, -0.42118823528289795, 0.04561639204621315, 0.3438509404659271, 0.037286508828401566, -0.011557145044207573, -0.0727398693561554, 0.03200722485780716, 0.4089704155921936, -0.07378645986318588, 0.2828013300895691, -0.2029774934053421, -0.22427651286125183, 0.21523746848106384, 0.2015526443719864, 0.05800751596689224, -0.28783556818962097, 0.2259051501750946, 0.38127559423446655, 0.3539007008075714, -0.395964652299881, -0.30459877848625183, -0.13882270455360413, 0.23303672671318054, -0.2949928045272827, 0.139413982629776, 0.23894771933555603, -0.13581041991710663, 0.10900445282459259, 0.027878141030669212, -0.03748390078544617, -0.0284821018576622, -0.059659719467163086, -0.5930222272872925, 0.2717576026916504, -0.15512342751026154, -0.033096008002758026, 0.05187952145934105, -0.1880701333284378, -0.09524042159318924, -0.2759626507759094, -0.21604040265083313, 0.1376175880432129, -0.13958299160003662, 0.05808503180742264, 0.004937797784805298, 0.09387435019016266, -0.09238630533218384, -0.14516444504261017, 0.19636701047420502, 0.08577357977628708, 0.021053463220596313, 0.24558937549591064, 0.1635625809431076, 0.3191978931427002, 0.20246180891990662, 0.009212027303874493, 0.3557835817337036, -0.05279611051082611, 0.08815275132656097, 0.14515866339206696, 0.10169920325279236, 0.028961971402168274, 0.2892719805240631, 0.026531493291258812, 0.5120084881782532, -0.29981866478919983, -0.4277203679084778, 0.1300506442785263, -0.3588068187236786, 0.18938809633255005, -0.023391928523778915, 0.18806512653827667, -0.1585967093706131, 0.4057362377643585, 0.10633620619773865, 0.13068048655986786, -0.192353755235672, -0.27758726477622986, -0.33210456371307373, -0.026164013892412186, -0.052913129329681396, -0.20815786719322205, 0.08624672889709473, -0.3544611930847168, 0.03903002291917801, 0.34067195653915405, 0.0756368637084961, -0.06336171925067902, -0.23094095289707184, -0.12893348932266235, -0.01757507026195526, 0.49822428822517395, -0.0806756466627121, 0.1513722836971283, 0.23410610854625702, -0.40567970275878906, -0.060712866485118866, 0.8011902570724487, -0.19933339953422546, -0.039522863924503326, -0.17345266044139862, 0.19518885016441345, -0.39369863271713257, -0.03691897541284561, -0.1676318645477295, 0.2819216549396515, 0.01693309098482132, 0.13033455610275269, 0.0649850144982338, -0.34980612993240356, 0.003709603101015091, -0.22591844201087952, 0.06731540709733963, 0.30761468410491943, -0.6774598360061646, -0.27170002460479736, -0.03623969107866287, -0.46673014760017395, 0.1612829864025116, -0.07749147713184357, 0.10692118853330612, 0.026648040860891342, -0.17037439346313477, 0.15384085476398468, 0.3121858239173889, -0.09213109314441681, -0.2813611924648285, 0.3656151592731476, -0.2867625951766968, 0.13503144681453705, -0.027569390833377838, -0.07485795766115189, 0.07076334953308105, 0.09346533566713333, 0.08950450271368027, 0.018179327249526978, 0.08674423396587372, 0.15912967920303345, -0.4913860857486725, -0.12915971875190735, 0.46239638328552246, -0.03741852939128876, 0.08411730825901031, 0.19505442678928375, 0.0064074695110321045, -0.35118070244789124, 0.22852542996406555, -0.1292201280593872, 0.14935295283794403, 0.07457388937473297, 0.3956732749938965, 0.0381348542869091, 0.04523095116019249, -0.3023313879966736, -0.4701994061470032, 0.1431845724582672, -0.17870914936065674, 0.19324591755867004, -0.22894872725009918, -0.2901899814605713, -0.005444098263978958, 0.023154446855187416, 0.014697480946779251, 0.10653515160083771, 0.1563829481601715, 0.22389452159404755, -0.3153887093067169, 0.03815830871462822, -0.09462974965572357, 0.08922738581895828, -0.03696706146001816, 0.191085547208786, -0.1285596638917923, 0.04027431458234787, 0.12800127267837524, -0.2025582194328308, -0.2348783165216446, 0.35166773200035095, 0.21349677443504333, 0.1185353621840477, -0.22562813758850098, 0.46635785698890686, -0.1201644092798233, 0.027262777090072632, -0.4631197154521942, -0.13298936188220978, 0.16945844888687134, -0.17761415243148804, 0.14921855926513672, 0.4430873692035675, 0.22428415715694427, 0.10361247509717941, -0.2592025399208069, 0.43456727266311646, 0.038308050483465195, 0.3234425485134125, -0.009056009352207184, 0.11128885298967361, 0.020952800288796425, -0.006303314119577408, -0.2586577832698822, -0.35724958777427673, -0.09380638599395752, 0.14143246412277222, 0.15035970509052277, 0.3741164207458496, -0.4108513295650482, 0.23929715156555176, 0.13646653294563293, -0.4166630208492279, 0.10863706469535828, 0.1810416281223297, -0.39853328466415405, -0.03740709275007248, 0.10688826441764832, 0.20958106219768524, 0.3684910535812378, 0.2685146927833557, 0.07694651186466217, 0.08184938877820969, -0.15790610015392303, -0.044923000037670135, 0.3587140142917633, -0.02232954651117325, -0.020438900217413902, 0.2448805272579193, 0.2682703137397766, -0.06690973788499832, -0.20687025785446167, 0.08180584013462067, 0.028901195153594017, 0.22730888426303864, -0.7267827987670898, 0.030257711187005043, -0.5401933789253235, 0.1630091667175293, -0.08315614610910416, -0.16322246193885803, -0.13440415263175964, -0.3770509958267212, -0.06089705973863602, -0.10728654265403748, -0.18849077820777893, 0.11507774889469147, -0.28491687774658203, 0.059212684631347656, -0.2410745769739151, -0.09344737976789474, -0.10328826308250427, 0.12922222912311554, -0.455177903175354, 0.04571207985281944, 0.043694254010915756, 0.14461329579353333, 0.11954052001237869, 0.06315309554338455, -0.0977507010102272, -0.17287683486938477, -0.31686076521873474, -0.030894994735717773, -0.2922934889793396, 0.5581780076026917, 0.14330720901489258, 0.1097538098692894, -0.07860308140516281, 0.026005975902080536, 0.21220341324806213, -0.10621698200702667, -0.2325672060251236, 0.25923728942871094, -0.12107263505458832, 0.1418578326702118, -0.4369954764842987, -0.43099597096443176, -0.22948810458183289, -0.16118565201759338, -0.11503477394580841, -0.01927449367940426, 0.2807174324989319, 0.22547990083694458, 0.1342695653438568, 0.25844332575798035, 0.0241436418145895, -0.02088882215321064, -0.13696454465389252, -0.1831410825252533, 0.4126768410205841, -0.1314132809638977, -0.178913414478302, 0.23810219764709473, -0.0034109707921743393, 0.017154576256871223, 0.09467466175556183, -0.3835982084274292, 0.26590871810913086, -0.10733526945114136, 0.3501319885253906, 0.07009395956993103, -0.006208563223481178, 0.19700396060943604, 0.3374518156051636, -0.1416848599910736, -0.044392913579940796, -0.14268532395362854, 0.023402489721775055, -0.11733744293451309, 0.06830473244190216, 0.06341464817523956, 0.10287588834762573, 0.013035662472248077, 0.3595696687698364, -0.03174547478556633, -0.025305282324552536, 0.09546514600515366, -0.21886450052261353, 0.42896080017089844, -0.18351146578788757, -0.04054631292819977, -0.18125012516975403, 0.09536075592041016, -0.007140146568417549, 0.28413236141204834, 0.009790073148906231, -0.24630261957645416, 0.09369231760501862, 0.029601499438285828, -0.3498402237892151, -0.09625542163848877, 0.23717807233333588, -0.39841708540916443, 0.03883073478937149, -0.03976466879248619, 0.16274771094322205, -0.06429123133420944, -0.18951398134231567, -0.0840899646282196, 0.22837254405021667, 0.05296317860484123, -0.1700969785451889, -0.4728876054286957, -0.12026893347501755, -0.187351256608963, 0.26540279388427734, -0.01044878177344799, 0.10250403732061386, -0.0036577507853507996, -0.4343695342540741, 0.24889422953128815, 0.03596856817603111, 0.4924200773239136, 0.13642995059490204, 0.07189781963825226, 0.45243600010871887, 0.05380099266767502, -0.3369542956352234, -0.21542423963546753, -0.46346309781074524, -0.059789229184389114, -0.08840003609657288, 0.20253872871398926, -0.31980741024017334, -0.37991926074028015, 0.22524996101856232, 0.07941555976867676, -0.06925127655267715, -0.040458496659994125, -0.41077619791030884, -0.03679267317056656, 0.11425971984863281, -0.06544458121061325, -0.2774423062801361, 0.4453875422477722, -0.6582232117652893, -0.11408096551895142, -0.20660139620304108, 0.12460681051015854, 0.3094581067562103, -0.0601859912276268, 0.6898239850997925, -0.1071886196732521, -0.10432256758213043, -0.023704402148723602, 0.16149331629276276, 0.10591734945774078, 0.2521357238292694, -0.06191686913371086, -0.021806664764881134, 0.1325559914112091, -0.09706521034240723, 0.3906136453151703, 0.26925837993621826, -0.24555525183677673, 0.12295589596033096, 0.04841545596718788, 0.220038503408432, -0.1421556919813156, -0.1716046780347824, 0.24652628600597382, -0.04805384576320648, -0.24381224811077118, -0.38929545879364014, 0.4191540777683258, 0.12369890511035919, -0.16458800435066223, -0.023875325918197632, 0.41523033380508423, -0.31104791164398193, 0.46467286348342896, 0.15616101026535034, 0.9113128185272217, -0.007860928773880005, 0.23450987040996552, 0.518692135810852, -0.06175273656845093, 0.4894731342792511, -0.009581349790096283, 0.1731456071138382, -0.528343915939331, -0.16829130053520203, -0.03310111537575722, 0.08818475902080536, 0.46278703212738037, 0.05802254378795624, -0.5364348292350769, 0.23996958136558533, -0.3912215828895569, 0.21141690015792847, 0.23068684339523315, -0.31361785531044006, -0.20598357915878296, -0.08302024006843567, -0.17800022661685944, 0.127735435962677, -0.137171670794487, -0.04403529688715935, 0.1424729824066162, 0.0030098482966423035, -0.288505494594574, -0.0678684189915657, -0.07694748044013977, 0.08340559899806976, -0.06281401216983795, -0.1911211758852005, 0.25258857011795044, -0.3675816059112549, -0.13142502307891846, 0.4008278548717499, -0.050995439291000366, 0.3365616798400879, -0.055737122893333435, 0.01463044062256813, 0.012447059154510498, 0.5768906474113464, 0.42206600308418274, 0.025487758219242096, 0.2890852093696594, 0.22259491682052612, -0.43685874342918396, 0.19744673371315002, -0.17326302826404572, 0.13281625509262085, 0.16941383481025696, -0.12812471389770508, -0.30456387996673584, -0.32169273495674133, -0.18873219192028046, -0.023197494447231293, 0.5512240529060364, -0.2436753809452057, 0.16361595690250397, 0.01777704805135727, -0.3337283730506897, 0.12899409234523773, 0.05012967437505722, -0.43442097306251526, -0.03726992383599281, 0.32642149925231934, 0.38384079933166504, 0.24111691117286682, 0.5017526745796204, 0.002780493348836899, -0.2591368854045868, -0.21080398559570312, 0.2560580372810364, 0.17661353945732117, -0.19420361518859863, 0.22985582053661346, 0.030806586146354675, -0.12404760718345642, -0.027375351637601852, 0.30505865812301636, -0.2627626657485962, 0.24730685353279114, -0.39042285084724426, -0.18862256407737732, -0.3216285705566406, -0.02908007800579071, 0.06882864236831665, 0.23278218507766724, -0.009381178766489029, 0.0016342317685484886, 0.10106655955314636, -0.06810677796602249, -0.3382883071899414, 0.1175851821899414, -0.12971961498260498, 0.20205582678318024, -0.07157158106565475, 0.17729169130325317, 0.2113337218761444, 0.02905382588505745, 0.2553544342517853, -0.0975378155708313, 0.05315630882978439, -0.22378665208816528, -0.2728268504142761, 0.1388854682445526, -0.05232105404138565, 0.08750782907009125, 0.09281618893146515, 0.05716762691736221, 0.031438618898391724, -0.05499103665351868, 0.5803854465484619, 0.23262882232666016, -0.0635455846786499, 0.39078018069267273, 0.2354951947927475, 0.29669538140296936, 0.020915422588586807, 0.0687982514500618, -0.1683444380760193, -0.1664222627878189, 0.1027081161737442, 0.16128334403038025, -0.16160883009433746, -0.0974748432636261, -0.14730951189994812, 0.13275814056396484, -0.05919468402862549, 0.32676926255226135, 0.26090365648269653, -0.3824688196182251, 0.06948529183864594, 0.02295035868883133, 0.12816640734672546, 0.012792006134986877, -0.22339458763599396, -0.03022223338484764, -0.006917646154761314, 0.22406166791915894, -0.16834840178489685, -0.07073060423135757, -0.08966189622879028, -0.07367165386676788, 0.10018500685691833, 0.23776847124099731, 0.03372029587626457, -0.01986849308013916, 0.06971396505832672, -0.00853652972728014, 0.2273103892803192, -0.2411220818758011, 0.19837221503257751, 0.7881483435630798, 0.010853234678506851, 0.10496433824300766, 0.31182006001472473, -0.12367095053195953, -0.25665587186813354, 0.4205217957496643, 0.055154189467430115, 0.32240423560142517, 0.14282289147377014, 0.0481613352894783, -0.18987995386123657, -0.5594492554664612, 0.1734788864850998, 0.4421020448207855, -0.23865380883216858, -0.021011359989643097, 0.2638193368911743, 0.1678933948278427, -0.2194875180721283, -0.3020137846469879, -0.0745326578617096, 0.12140028178691864, -0.4283001124858856, -0.3740175664424896, -0.14376570284366608, -0.17752991616725922, -0.22691626846790314, 0.03411285951733589, -0.11014331877231598, -0.14998167753219604, 0.2586461007595062, 0.2017671912908554, -0.13004890084266663, -0.30701538920402527, -0.05269329249858856, 0.1530316174030304, 0.1076277643442154, -0.008838355541229248, 0.2302134782075882, -0.029908686876296997, 0.18636812269687653, 0.3295796513557434, 0.34276488423347473, 0.47949841618537903, 0.3407055139541626, -0.024004843086004257, 0.009822995401918888, -0.08013182878494263, -0.19941356778144836, 0.19338028132915497, 0.10469384491443634, 0.022126182913780212, 0.35975325107574463, 0.101630300283432, 0.15296785533428192, -0.1677389144897461, 0.19098785519599915, 0.1368470937013626, 0.22257795929908752, -0.39643949270248413, 0.6129395961761475, 0.09381864964962006, -0.13722264766693115, -0.12722547352313995, -0.28901419043540955, -0.5428565144538879, -0.0877765417098999, 0.3522526025772095, 0.17332786321640015, 0.08778952807188034, -0.20411303639411926, 0.11512120068073273, 0.262958288192749, 0.2344808131456375, 0.002138592302799225, 0.013582240790128708, -0.3263845443725586, 0.19233931601047516, -0.6304770708084106, 0.20869919657707214, 0.2041909098625183, 0.30361270904541016, 0.0564202256500721, 0.11422459781169891, -0.1869625747203827, -0.15004229545593262, 0.04425138980150223, 0.09460647404193878, 0.2260415256023407, 0.02223162353038788, -0.2734154164791107, -0.07834689319133759, 0.008682642132043839, -0.027247151359915733, -0.17666058242321014, -0.2924250066280365, 0.13091902434825897, 0.0034774309024214745, 0.05212715268135071, 0.1462663859128952, -0.04207794740796089, 0.20747777819633484, -0.0813666433095932, 0.47900280356407166, 0.04950191080570221, 0.1960097849369049, 0.07519746571779251, -0.19145750999450684, -0.25302854180336, 0.03538092225790024, -0.4711628258228302, 0.15178224444389343, 0.016784653067588806, 0.38041889667510986, 0.1531812697649002, 0.05992382764816284, -0.02420646697282791, 0.1300337016582489, 0.18744780123233795, 0.09666282683610916, -0.5188977122306824, 0.3065490424633026, -0.2061154544353485, 0.052673306316137314, 0.06397952139377594, 0.009905923157930374, 0.2042468637228012, 0.23911602795124054, -0.27497100830078125, -0.2630854845046997, 0.4718886613845825, -0.15947102010250092, -0.1427522748708725, -0.22266334295272827, 0.22859016060829163, 0.0669616088271141, -0.31944137811660767, -0.620352566242218, -0.12432796508073807, 0.3890032470226288, -0.33293211460113525, -0.20401327311992645, 0.10224227607250214, -0.16345709562301636, 0.19658489525318146, -0.39013227820396423, 0.20516209304332733, -0.022359009832143784, 0.09162082523107529, 0.012664180248975754, -0.4424331784248352 ]
https://github.com/huggingface/datasets/issues/3181
`None` converted to `"None"` when loading a dataset
Thanks for reporting. This is actually a breaking change that I think can cause issues when users preprocess their data. String columns used to be nullable. Maybe we can correct https://github.com/huggingface/datasets/pull/3158 to keep the None values and avoid this breaking change ? EDIT: the other types (bool, int, etc) can also become nullable IMO
## Describe the bug When loading a dataset `None` values of the type `NoneType` are converted to `'None'` of the type `str`. ## Steps to reproduce the bug ```python from datasets import load_dataset qasper = load_dataset("qasper", split="train", download_mode="reuse_cache_if_exists") print(qasper[60]["full_text"]["section_name"]) ``` When installing version 1.1.40, the output is `[None, 'Introduction', 'Benchmark Datasets', ...]` When installing from the master branch, the output is `['None', 'Introduction', 'Benchmark Datasets', ...]` Notice how the first element was changed from `NoneType` to `str`. ## Expected results `None` should stay as is. ## Actual results `None` is converted to a string. ## Environment info <!-- You can run the command `datasets-cli env` and copy-and-paste its output below. --> - `datasets` version: master - Platform: Linux-4.4.0-19041-Microsoft-x86_64-with-glibc2.17 - Python version: 3.8.10 - PyArrow version: 4.0.1
54
`None` converted to `"None"` when loading a dataset ## Describe the bug When loading a dataset `None` values of the type `NoneType` are converted to `'None'` of the type `str`. ## Steps to reproduce the bug ```python from datasets import load_dataset qasper = load_dataset("qasper", split="train", download_mode="reuse_cache_if_exists") print(qasper[60]["full_text"]["section_name"]) ``` When installing version 1.1.40, the output is `[None, 'Introduction', 'Benchmark Datasets', ...]` When installing from the master branch, the output is `['None', 'Introduction', 'Benchmark Datasets', ...]` Notice how the first element was changed from `NoneType` to `str`. ## Expected results `None` should stay as is. ## Actual results `None` is converted to a string. ## Environment info <!-- You can run the command `datasets-cli env` and copy-and-paste its output below. --> - `datasets` version: master - Platform: Linux-4.4.0-19041-Microsoft-x86_64-with-glibc2.17 - Python version: 3.8.10 - PyArrow version: 4.0.1 Thanks for reporting. This is actually a breaking change that I think can cause issues when users preprocess their data. String columns used to be nullable. Maybe we can correct https://github.com/huggingface/datasets/pull/3158 to keep the None values and avoid this breaking change ? EDIT: the other types (bool, int, etc) can also become nullable IMO
[ -0.09256959706544876, 0.014106258749961853, 0.031800877302885056, 0.3350732922554016, 0.5061749219894409, 0.0844627097249031, 0.40423575043678284, 0.14687322080135345, 0.026410792022943497, 0.4644889235496521, -0.06903670728206635, 0.4651448130607605, -0.02356383204460144, 0.05803447216749191, 0.014155076816678047, -0.10786020755767822, 0.13892702758312225, 0.3460164964199066, -0.245071142911911, 0.1766272932291031, -0.11670323461294174, 0.26295551657676697, -0.22671934962272644, 0.06571599096059799, -0.2064882218837738, 0.006207775324583054, -0.07464415580034256, 0.05963291600346565, -0.02428794838488102, -0.5001730918884277, 0.05176714062690735, -0.2451472282409668, -0.12691769003868103, 0.5791054964065552, -0.0001208361063618213, -0.041296571493148804, 0.4041321873664856, 0.2556312680244446, -0.4339714050292969, -0.44092750549316406, -0.16903828084468842, -0.24313198029994965, 0.25957897305488586, -0.05361194536089897, -0.05503015220165253, -0.2037643939256668, -0.16391974687576294, -0.4882364273071289, -0.19234918057918549, 0.3460761606693268, 0.18859292566776276, 0.4674663245677948, -0.31770259141921997, 0.08049482852220535, 0.2992607057094574, 0.08631407469511032, -0.03056543692946434, -0.10449586808681488, 0.056473083794116974, 0.281167209148407, 0.1069607138633728, 0.17379313707351685, -0.28375694155693054, -0.26027077436447144, 0.20388475060462952, 0.28770679235458374, 0.029129978269338608, -0.2398700714111328, 0.29648876190185547, 0.3595559000968933, 0.29780787229537964, -0.3920550048351288, -0.2797031104564667, -0.20913168787956238, 0.3052700161933899, -0.36150062084198, 0.18307718634605408, 0.2338898777961731, -0.03266410529613495, 0.15239648520946503, -0.020206844434142113, -0.11314298212528229, -0.07676495611667633, -0.057892948389053345, -0.5974444150924683, 0.11441268026828766, -0.23113270103931427, -0.039577871561050415, 0.002566404640674591, -0.164536714553833, -0.1706904172897339, -0.3382857143878937, -0.22242891788482666, 0.16992810368537903, -0.17793533205986023, 0.04868122190237045, -0.1312074065208435, 0.14592763781547546, 0.03901024907827377, -0.19707831740379333, 0.11118773370981216, -0.012837778776884079, 0.0027538063004612923, 0.15954893827438354, 0.20653089880943298, 0.2574147880077362, 0.247393399477005, 0.003114921972155571, 0.34436488151550293, -0.05489661172032356, 0.23801958560943604, 0.11031819134950638, 0.16128742694854736, 0.11153743416070938, 0.2388520985841751, 0.0010502059012651443, 0.5135539174079895, -0.297303169965744, -0.3329550623893738, 0.20257027447223663, -0.3289473354816437, 0.18421754240989685, -0.07951142638921738, 0.039071910083293915, -0.11849334090948105, 0.5362003445625305, 0.14467991888523102, 0.20985795557498932, -0.13427935540676117, -0.27862781286239624, -0.26725369691848755, -0.15599390864372253, 0.017857972532510757, -0.1179833635687828, 0.007417496293783188, -0.47307875752449036, -0.01755669340491295, 0.37263333797454834, -0.014355778694152832, -0.04840628057718277, -0.22076824307441711, -0.1837182343006134, -0.14719286561012268, 0.47304457426071167, -0.10160872340202332, 0.19967372715473175, 0.21244893968105316, -0.3510926365852356, -0.04860375076532364, 0.7331662178039551, -0.24162203073501587, -0.004501696676015854, -0.277967244386673, 0.12539897859096527, -0.32536566257476807, 0.05744330585002899, -0.2498328685760498, 0.2698928713798523, 0.07619521021842957, 0.11431416869163513, 0.06964732706546783, -0.39283519983291626, -0.0912574827671051, -0.20125740766525269, -0.04789075255393982, 0.4467957615852356, -0.6931034922599792, -0.17807355523109436, -0.002208015648648143, -0.41301700472831726, 0.12151869386434555, -0.08784344792366028, 0.13934169709682465, 0.02586798369884491, -0.16435515880584717, 0.10671618580818176, 0.18452906608581543, 0.020362798124551773, -0.22494129836559296, 0.3387205898761749, -0.27232345938682556, 0.14684225618839264, -0.03648095577955246, -0.1123027428984642, 0.015687085688114166, 0.022815776988863945, 0.06112353503704071, -0.038012512028217316, 0.005685800686478615, 0.14189371466636658, -0.42948728799819946, -0.1946583092212677, 0.4210461378097534, -0.0933135449886322, 0.05755855515599251, 0.3305714726448059, -0.0739547535777092, -0.29816845059394836, 0.15214090049266815, -0.17434409260749817, 0.2368212640285492, 0.15982337296009064, 0.29889699816703796, 0.11153092980384827, 0.004171995911747217, -0.3726210594177246, -0.6002709865570068, 0.0219649076461792, -0.09396433085203171, 0.1801319420337677, -0.22494541108608246, -0.2469424456357956, -0.024435359984636307, 0.02615341730415821, 0.099870964884758, 0.2598113417625427, 0.06325695663690567, 0.1639026254415512, -0.283377468585968, 0.1378244012594223, -0.18880964815616608, 0.1674940288066864, -0.1904391497373581, 0.25539058446884155, -0.2758713364601135, 0.04198884218931198, 0.20118829607963562, -0.09578809142112732, -0.2440817803144455, 0.32468581199645996, 0.1857874095439911, 0.01888696290552616, -0.17407330870628357, 0.4714582860469818, -0.050610415637493134, 0.06283821910619736, -0.40597647428512573, -0.0364157110452652, 0.20644833147525787, -0.10517053306102753, 0.13139407336711884, 0.3298895061016083, 0.21870121359825134, 0.060004331171512604, -0.2549964189529419, 0.4667554497718811, -0.12597545981407166, 0.31672176718711853, -0.09752075374126434, 0.1255904734134674, -0.027346018701791763, 0.045577894896268845, -0.2536076307296753, -0.3578537702560425, -0.04473394528031349, 0.1275702267885208, 0.15472745895385742, 0.37530556321144104, -0.4400847554206848, 0.1694965809583664, 0.07022968679666519, -0.4307416081428528, 0.07881421595811844, 0.2739161252975464, -0.37127676606178284, -0.042008720338344574, 0.07944244146347046, 0.2453393191099167, 0.42877405881881714, 0.17031915485858917, 0.07901094108819962, 0.10737213492393494, -0.16417542099952698, -0.08488932996988297, 0.37516412138938904, 0.0416986346244812, 0.024336017668247223, 0.25930851697921753, 0.2786157429218292, 0.00037883222103118896, -0.15939731895923615, 0.19227738678455353, 0.001584317535161972, 0.2867147624492645, -0.747694730758667, 0.06600218266248703, -0.49458548426628113, 0.1803053915500641, -0.11130622029304504, -0.12935870885849, -0.09358271956443787, -0.4681960940361023, -0.2054174393415451, -0.07002463936805725, -0.09724874794483185, -0.03777141124010086, -0.3114908039569855, 0.14494697749614716, -0.19717937707901, -0.034992605447769165, -0.22968122363090515, 0.10376830399036407, -0.4430878460407257, 0.009342309087514877, 0.1142372190952301, 0.021242795512080193, -0.011016694828867912, -0.10047141462564468, -0.16588757932186127, -0.24102196097373962, -0.29053404927253723, -0.022450841963291168, -0.3732774257659912, 0.4957590103149414, 0.2103520929813385, 0.21591545641422272, -0.04853297770023346, 0.15484321117401123, 0.209796741604805, -0.03042505495250225, -0.22366061806678772, 0.27845290303230286, -0.15088988840579987, 0.15396498143672943, -0.35822364687919617, -0.37711048126220703, -0.1389291137456894, -0.048551589250564575, 0.0010645687580108643, -0.11142104864120483, 0.21991796791553497, 0.2147962898015976, 0.11458288133144379, 0.24230381846427917, -0.026304492726922035, -0.021471688523888588, -0.13790060579776764, -0.2705385684967041, 0.4563383162021637, -0.08272823691368103, -0.24395091831684113, 0.24227994680404663, 0.09578648209571838, 0.022646136581897736, 0.07078392803668976, -0.38807201385498047, 0.16682074964046478, -0.050601355731487274, 0.2875538468360901, -0.028195589780807495, -0.03258947283029556, 0.08606725186109543, 0.3021438717842102, -0.028182756155729294, 0.0014259889721870422, -0.18872731924057007, -0.17051628232002258, -0.18703541159629822, 0.056809935718774796, 0.14168530702590942, 0.19315528869628906, -0.10572314262390137, 0.3625069260597229, 0.06799048185348511, 0.027585305273532867, 0.09444363415241241, -0.24363574385643005, 0.4361569583415985, -0.22676032781600952, -0.10622972995042801, -0.2557298541069031, 0.047561079263687134, 0.08111735433340073, 0.18726181983947754, 0.05487406626343727, -0.07191784679889679, 0.09667856991291046, 0.1540578156709671, -0.3095156252384186, -0.050043441355228424, 0.18364152312278748, -0.35239866375923157, 0.15629635751247406, -0.03856993466615677, 0.16411900520324707, -0.036356598138809204, -0.2617682218551636, -0.03193861246109009, 0.2857230305671692, -0.0008786916732788086, -0.15594609081745148, -0.5081921219825745, -0.011751827783882618, -0.23165029287338257, 0.3063241243362427, -0.002904321067035198, 0.20447370409965515, -0.025649063289165497, -0.3003772795200348, 0.21360556781291962, 0.09927253425121307, 0.5846647620201111, 0.07848431169986725, -0.1320878118276596, 0.4684828817844391, -0.0028919801115989685, -0.42287594079971313, -0.12081894278526306, -0.4213094413280487, -0.10996980220079422, -0.07838103175163269, 0.23185056447982788, -0.3401202857494354, -0.3785936236381531, 0.31768152117729187, 0.1008417084813118, -0.028579112142324448, -0.01830386370420456, -0.4210177958011627, -0.06073684245347977, 0.2063547521829605, -0.1306118667125702, -0.31235936284065247, 0.4693640470504761, -0.6368059515953064, -0.009299535304307938, -0.2770092487335205, 0.11260411888360977, 0.3140418529510498, -0.13381098210811615, 0.6413249969482422, -0.1294858604669571, -0.09608455002307892, 0.07344193756580353, 0.09116557985544205, 0.1243881955742836, 0.3048108220100403, -0.15085455775260925, -0.08069400489330292, 0.18159225583076477, -0.1051589846611023, 0.43606552481651306, 0.31894612312316895, -0.24897432327270508, 0.19377171993255615, 0.03859996050596237, 0.20643512904644012, -0.24573540687561035, -0.2322506308555603, 0.42999717593193054, 0.016567077487707138, -0.21372057497501373, -0.35899704694747925, 0.42368224263191223, 0.2013372778892517, -0.062069714069366455, 0.058090340346097946, 0.5248278379440308, -0.29071733355522156, 0.33140188455581665, 0.23191922903060913, 0.9528852701187134, -0.1588718593120575, 0.25524964928627014, 0.43548384308815, -0.19483590126037598, 0.5626415014266968, 0.07622790336608887, 0.04054845869541168, -0.5319223999977112, 0.04024817422032356, -0.11437670886516571, 0.10094305872917175, 0.5428648591041565, -0.041457824409008026, -0.4288749396800995, 0.2922000288963318, -0.3906731605529785, 0.23511937260627747, 0.1724357306957245, -0.2547168433666229, -0.31884491443634033, -0.1319422572851181, -0.2051849663257599, 0.08651809394359589, -0.15828795731067657, -0.05004631355404854, 0.1312185525894165, 0.10438020527362823, -0.23146097362041473, 0.007525276392698288, -0.13810239732265472, -0.04271803796291351, 0.06477347761392593, -0.284044086933136, 0.3377285897731781, -0.45600903034210205, 0.022494390606880188, 0.5505771040916443, 0.13925659656524658, 0.29945021867752075, -0.11468611657619476, -0.14446699619293213, -0.23447144031524658, 0.47314953804016113, 0.3767610490322113, -0.012783684767782688, 0.18325479328632355, 0.2620530426502228, -0.3318091928958893, 0.12573572993278503, -0.19780389964580536, 0.19719724357128143, 0.04004193842411041, -0.126851886510849, -0.1164909154176712, -0.390433669090271, -0.14991125464439392, -0.11203591525554657, 0.6328278183937073, -0.25874242186546326, 0.10541622340679169, 0.0522448793053627, -0.17904935777187347, 0.07996028661727905, 0.017767300829291344, -0.4310019612312317, -0.03830697759985924, 0.40512412786483765, 0.29329270124435425, 0.15727479755878448, 0.5372493267059326, 0.10825954377651215, -0.24518005549907684, -0.16998326778411865, 0.37708964943885803, 0.13945372402668, -0.17094124853610992, 0.16037678718566895, 0.02337716333568096, -0.029931724071502686, -0.07606355100870132, 0.34784287214279175, -0.20518909394741058, 0.17199450731277466, -0.3381633758544922, -0.20634271204471588, -0.3026553988456726, -0.05085466802120209, 0.20249268412590027, 0.21703675389289856, 0.1139521524310112, -0.1666572391986847, 0.011864738538861275, -0.08177617192268372, -0.2523368000984192, 0.2334710955619812, -0.06995158642530441, 0.09531612694263458, 0.009846789762377739, 0.19143110513687134, 0.1991230696439743, -0.1338483840227127, 0.21004235744476318, -0.02897055074572563, 0.05354698747396469, -0.13658660650253296, -0.3429211974143982, 0.14952711760997772, -0.015163928270339966, 0.03976912051439285, 0.12303441017866135, 0.021828602999448776, 0.012394079007208347, -0.09361211210489273, 0.5141457319259644, 0.27428141236305237, -0.02583117038011551, 0.31998172402381897, 0.24344131350517273, 0.2515566945075989, -0.06874079257249832, 0.089206263422966, -0.11659274995326996, -0.2133941501379013, 0.052191656082868576, 0.21124909818172455, -0.0682385265827179, -0.12010299414396286, -0.11431685090065002, 0.1920756697654724, 0.05359620600938797, 0.17091086506843567, 0.3326611816883087, -0.4873950481414795, 0.10115529596805573, 0.03290515020489693, 0.060867540538311005, 0.085421122610569, -0.2761225998401642, 0.001417744904756546, 0.027925990521907806, 0.14516013860702515, -0.04740963876247406, -0.08522798120975494, -0.06921333074569702, 0.06567278504371643, -0.005764912813901901, 0.2250237613916397, 0.0845794677734375, 0.051867201924324036, -0.03750942647457123, -0.06959014385938644, 0.23052334785461426, -0.150204598903656, 0.1909664273262024, 0.7501991391181946, 0.03930005058646202, 0.12013611197471619, 0.3558124005794525, -0.024074561893939972, -0.35014277696609497, 0.3911512494087219, 0.17934179306030273, 0.3495146632194519, -0.01694246381521225, 0.1550508439540863, -0.25919628143310547, -0.565134584903717, 0.32088717818260193, 0.4666946232318878, -0.2295352816581726, -0.0171775221824646, 0.2275172472000122, 0.35975390672683716, -0.2909446954727173, -0.3118322491645813, -0.0805286094546318, 0.06678211688995361, -0.43921589851379395, -0.40479493141174316, -0.28110015392303467, -0.1536906212568283, 0.001904413104057312, 0.015178065747022629, -0.13042239844799042, -0.20336396992206573, 0.3682232201099396, 0.1653851568698883, -0.11948232352733612, -0.4513090252876282, -0.10989772528409958, 0.22304445505142212, 0.167892724275589, 0.04936232790350914, 0.24337796866893768, -0.08816032111644745, 0.23423589766025543, 0.34731438755989075, 0.4235014319419861, 0.4523075222969055, 0.31856587529182434, 0.05286671593785286, -0.024997331202030182, -0.029561437666416168, -0.19943803548812866, 0.31912705302238464, 0.22342036664485931, -0.019115418195724487, 0.3850719630718231, 0.12200568616390228, 0.11453056335449219, -0.09715308994054794, 0.09395158290863037, 0.09823295474052429, 0.295676589012146, -0.44085946679115295, 0.6095944046974182, -0.05818448215723038, -0.12756013870239258, -0.11016897857189178, -0.19078725576400757, -0.43687283992767334, 0.03736787661910057, 0.41470539569854736, 0.13698787987232208, 0.09068068116903305, -0.08920817822217941, 0.08015602082014084, 0.42658141255378723, 0.23083822429180145, 0.14671486616134644, -0.1475188434123993, -0.34314703941345215, 0.05789628624916077, -0.627655565738678, 0.1852758675813675, 0.12441544234752655, 0.3200245797634125, 0.09424369037151337, 0.0584854930639267, -0.1334974765777588, -0.045739464461803436, -0.008415430784225464, 0.03229736164212227, 0.1787131428718567, 0.022825762629508972, -0.26573771238327026, -0.11162333190441132, 0.15996813774108887, -0.0693868100643158, -0.25347062945365906, -0.24772727489471436, 0.2489582896232605, 0.13966092467308044, -0.0757378339767456, 0.07219773530960083, 0.26832500100135803, 0.017642583698034286, -0.12382778525352478, 0.28498128056526184, 0.10781267285346985, 0.12186098843812943, 0.18116998672485352, -0.18926596641540527, -0.2728760838508606, -0.0216816496104002, -0.37706509232521057, 0.2330053746700287, -0.12118987739086151, 0.321479856967926, 0.09588929265737534, -0.1015918105840683, -0.04768499359488487, 0.10313990712165833, 0.1886315494775772, 0.22711004316806793, -0.662365734577179, 0.32955750823020935, -0.22428110241889954, 0.021720152348279953, 0.13505129516124725, -0.010876365005970001, 0.28273144364356995, 0.3049893379211426, -0.26422742009162903, -0.17657391726970673, 0.4575035572052002, -0.1586325466632843, -0.18065743148326874, -0.10613153874874115, 0.11726368218660355, 0.10610847175121307, -0.39279523491859436, -0.6978124380111694, -0.08678337186574936, 0.39528796076774597, -0.4080301821231842, -0.1954433172941208, 0.13577322661876678, -0.1795555204153061, 0.2085706740617752, -0.42662984132766724, 0.18517754971981049, -0.005090091377496719, 0.12249797582626343, 0.11920617520809174, -0.3642129898071289 ]
https://github.com/huggingface/datasets/issues/3181
`None` converted to `"None"` when loading a dataset
So what would be the best way to handle a feature that can have a null value in some of the instances? So far I used `None`. Using the empty string won't be a good option, as it can be an actual value in the data and is not the same as not having a value at all.
## Describe the bug When loading a dataset `None` values of the type `NoneType` are converted to `'None'` of the type `str`. ## Steps to reproduce the bug ```python from datasets import load_dataset qasper = load_dataset("qasper", split="train", download_mode="reuse_cache_if_exists") print(qasper[60]["full_text"]["section_name"]) ``` When installing version 1.1.40, the output is `[None, 'Introduction', 'Benchmark Datasets', ...]` When installing from the master branch, the output is `['None', 'Introduction', 'Benchmark Datasets', ...]` Notice how the first element was changed from `NoneType` to `str`. ## Expected results `None` should stay as is. ## Actual results `None` is converted to a string. ## Environment info <!-- You can run the command `datasets-cli env` and copy-and-paste its output below. --> - `datasets` version: master - Platform: Linux-4.4.0-19041-Microsoft-x86_64-with-glibc2.17 - Python version: 3.8.10 - PyArrow version: 4.0.1
58
`None` converted to `"None"` when loading a dataset ## Describe the bug When loading a dataset `None` values of the type `NoneType` are converted to `'None'` of the type `str`. ## Steps to reproduce the bug ```python from datasets import load_dataset qasper = load_dataset("qasper", split="train", download_mode="reuse_cache_if_exists") print(qasper[60]["full_text"]["section_name"]) ``` When installing version 1.1.40, the output is `[None, 'Introduction', 'Benchmark Datasets', ...]` When installing from the master branch, the output is `['None', 'Introduction', 'Benchmark Datasets', ...]` Notice how the first element was changed from `NoneType` to `str`. ## Expected results `None` should stay as is. ## Actual results `None` is converted to a string. ## Environment info <!-- You can run the command `datasets-cli env` and copy-and-paste its output below. --> - `datasets` version: master - Platform: Linux-4.4.0-19041-Microsoft-x86_64-with-glibc2.17 - Python version: 3.8.10 - PyArrow version: 4.0.1 So what would be the best way to handle a feature that can have a null value in some of the instances? So far I used `None`. Using the empty string won't be a good option, as it can be an actual value in the data and is not the same as not having a value at all.
[ 0.005276624113321304, -0.07476460188627243, 0.05706076696515083, 0.30984997749328613, 0.17982925474643707, 0.0002792775630950928, 0.40448078513145447, 0.12224365770816803, -0.08893819153308868, 0.44868332147598267, 0.29507991671562195, 0.38630151748657227, -0.19256684184074402, 0.11900217086076736, -0.09075158834457397, 0.09096531569957733, 0.17643281817436218, 0.44776004552841187, 0.07824482768774033, 0.041038140654563904, -0.13606581091880798, 0.07601505517959595, -0.1882273256778717, 0.09115486592054367, -0.3578634560108185, -0.11688493937253952, 0.09772774577140808, -0.08008050173521042, 0.2879970371723175, -0.46920478343963623, -0.059401385486125946, -0.10330747067928314, -0.25466713309288025, 0.46872612833976746, -0.00012661900836974382, 0.04449952393770218, 0.5570529103279114, 0.14301957190036774, -0.42693892121315, -0.3813510537147522, -0.23148351907730103, -0.3043972849845886, 0.18653900921344757, -0.12714317440986633, -0.1492885947227478, -0.024563170969486237, -0.08080057054758072, -0.41463345289230347, -0.41432374715805054, 0.15332141518592834, 0.09852014482021332, 0.47201022505760193, -0.5315294861793518, 0.17513394355773926, 0.3666880130767822, 0.08090637624263763, 0.03562431037425995, -0.17524681985378265, 0.07857802510261536, 0.3048980236053467, 0.03102332353591919, 0.3250701427459717, -0.19502636790275574, -0.25135180354118347, 0.42268797755241394, 0.2374102920293808, 0.16177523136138916, -0.11955031752586365, 0.09622296690940857, 0.2393035590648651, 0.3973621726036072, -0.14526399970054626, -0.358475923538208, -0.23586490750312805, 0.12549546360969543, -0.43282872438430786, 0.16084043681621552, 0.13402606546878815, -0.06347585469484329, 0.1368526667356491, 0.029890915378928185, -0.10225476324558258, -0.07944818586111069, 0.05940283462405205, -0.8688830137252808, 0.19344595074653625, 0.015555138699710369, 0.04154328256845474, -0.1896170675754547, -0.3825518488883972, -0.20906561613082886, -0.3143939673900604, -0.009422067552804947, 0.15997634828090668, 0.06712325662374496, 0.04125957190990448, 0.1621507853269577, 0.06315891444683075, 0.01582574099302292, -0.21797142922878265, 0.07616229355335236, 0.06229885295033455, -0.0429132878780365, 0.37316712737083435, 0.19225198030471802, 0.23370468616485596, 0.4216105341911316, -0.1353505700826645, 0.6016115546226501, 0.028308067470788956, 0.14315906167030334, 0.20197346806526184, 0.058304231613874435, 0.12717397511005402, 0.2717842757701874, 0.048382312059402466, 0.7048228979110718, -0.33173221349716187, -0.38354024291038513, 0.3324642777442932, -0.37048327922821045, 0.22232316434383392, -0.04613643139600754, 0.08610452711582184, -0.11157388985157013, 0.5990830063819885, 0.25423407554626465, 0.09860032051801682, -0.16605517268180847, -0.3170439600944519, -0.258253812789917, -0.3268260657787323, 0.11827780306339264, -0.15684008598327637, 0.02477889135479927, -0.2988593578338623, 0.17494869232177734, 0.11537275463342667, 0.0383167639374733, -0.03242230415344238, -0.12298520654439926, -0.20148707926273346, -0.2004283368587494, 0.41036027669906616, -0.11649592220783234, 0.13378223776817322, 0.0880197286605835, -0.3038029670715332, -0.06008785963058472, 0.7759241461753845, 0.007577218115329742, -0.2280050814151764, -0.14604395627975464, 0.06435313820838928, -0.5251388549804688, 0.05845452845096588, -0.04322033375501633, 0.47000083327293396, -0.009670913219451904, -0.0638749822974205, -0.04633118957281113, -0.13697360455989838, -0.09054146707057953, -0.2392624318599701, -0.001613827422261238, 0.5341788530349731, -0.7298118472099304, -0.1395881474018097, -0.17974519729614258, -0.32805898785591125, 0.045199573040008545, -0.18486148118972778, 0.06979867070913315, 0.0019274502992630005, -0.031976595520973206, 0.17667533457279205, 0.22463873028755188, -0.06963153183460236, -0.2860862612724304, 0.20710772275924683, -0.3047315180301666, 0.11041172593832016, -0.021109476685523987, 0.19666673243045807, 0.043054502457380295, -0.06911087781190872, 0.04917337745428085, 0.029084086418151855, 0.03089192882180214, 0.14560367166996002, -0.4907612204551697, -0.11039383709430695, 0.521698534488678, -0.04653128236532211, 0.109351746737957, 0.08064515143632889, -0.06808605045080185, -0.16219773888587952, 0.02189793810248375, -0.008430194109678268, 0.24049733579158783, 0.060977302491664886, 0.4414902329444885, 0.24347086250782013, -0.15401361882686615, -0.14053849875926971, -0.6653048992156982, 0.2005895972251892, -0.1546667218208313, 0.03947150707244873, -0.18352241814136505, -0.4091540575027466, 0.0370095819234848, 0.08249574899673462, 0.1448739916086197, 0.15951916575431824, -0.006275467574596405, 0.24517923593521118, -0.30780887603759766, 0.1278141438961029, -0.22102360427379608, -0.032734163105487823, -0.025001196190714836, 0.21860960125923157, -0.21162104606628418, 0.11186017096042633, 0.25458794832229614, -0.1314554363489151, -0.3022216260433197, 0.18933549523353577, 0.2839812934398651, 0.13016073405742645, -0.0762682557106018, 0.39871662855148315, -0.09224607795476913, 0.13419044017791748, -0.44830000400543213, -0.05763624608516693, 0.37966081500053406, 0.0031059496104717255, 0.1720392405986786, 0.4482934772968292, 0.2809913754463196, 0.10923679918050766, -0.5051981806755066, 0.5239849090576172, 0.19821524620056152, 0.24063262343406677, -0.06123288348317146, 0.01889420486986637, -0.0197967067360878, 0.06702873110771179, -0.2754276990890503, -0.3605765104293823, -0.12001082301139832, 0.11252783238887787, 0.18671055138111115, 0.4695433974266052, -0.5353842377662659, 0.16746103763580322, -0.02356204017996788, -0.4500311017036438, 0.2033383548259735, 0.10993438959121704, -0.3153219521045685, 0.06479540467262268, 0.3532351851463318, -0.07198471575975418, 0.3230208158493042, 0.23830927908420563, -0.0007327832281589508, 0.02833334170281887, -0.03635609894990921, 0.10178094357252121, 0.34865111112594604, 0.12132184207439423, -0.0373963862657547, 0.2905022203922272, 0.2714097797870636, -0.1900579035282135, 0.07315389066934586, 0.07527582347393036, 0.23681098222732544, 0.32640570402145386, -0.6416158080101013, -0.14150847494602203, -0.4613528847694397, 0.16952788829803467, -0.10445225238800049, -0.06697122007608414, -0.2251281440258026, -0.33966195583343506, -0.0734311118721962, 0.030461033806204796, -0.36584654450416565, 0.07523804157972336, -0.37957650423049927, 0.06813289225101471, -0.22853434085845947, -0.22639404237270355, -0.005264908075332642, 0.06036556884646416, -0.43047258257865906, -0.0966656357049942, 0.07058410346508026, 0.22585062682628632, 0.046860501170158386, 0.06739257276058197, -0.2984253168106079, -0.1514245569705963, -0.2645201086997986, -0.03477560728788376, -0.15529455244541168, 0.46673575043678284, 0.08277520537376404, 0.2185356616973877, -0.04830387979745865, 0.10042478144168854, 0.21490302681922913, 0.09206205606460571, -0.2238398939371109, 0.24182578921318054, -0.01575547829270363, 0.3053973317146301, -0.27460458874702454, -0.2883378863334656, -0.13419845700263977, -0.2280348539352417, -0.08410966396331787, -0.14447812736034393, 0.4153589606285095, 0.02095213159918785, -0.0075351884588599205, 0.20798179507255554, 0.296235591173172, -0.2801600396633148, 0.053167570382356644, -0.15605339407920837, 0.42231085896492004, 0.002575238700956106, -0.09903217852115631, 0.24335023760795593, -0.05966360494494438, -0.18000100553035736, 0.24249447882175446, -0.40499669313430786, 0.035222169011831284, 0.1385171115398407, 0.48442769050598145, 0.1061696782708168, -0.21498148143291473, 0.25195857882499695, 0.36480963230133057, 0.0010496880859136581, -0.029312968254089355, -0.24323000013828278, 0.155997633934021, -0.10297196358442307, 0.03549923747777939, 0.3438742160797119, 0.10211609303951263, 0.06485956907272339, 0.38891470432281494, 0.13957960903644562, 0.01925026625394821, 0.07920067012310028, -0.10460496693849564, 0.09836992621421814, 0.09856490790843964, 0.057949312031269073, -0.3433534801006317, 0.25164127349853516, -0.16284526884555817, 0.3270737826824188, 0.0466327965259552, -0.08928186446428299, -0.033379919826984406, -0.15594501793384552, -0.35997411608695984, -0.11471223831176758, 0.31683579087257385, -0.45988601446151733, 0.33078789710998535, -0.2101023644208908, -0.05638189986348152, -0.06946946680545807, -0.07947274297475815, -0.03757522255182266, 0.3001837134361267, 0.05941465124487877, -0.030884375795722008, -0.41054391860961914, 0.014454001560807228, -0.11040972918272018, 0.405595064163208, -0.04681875556707382, 0.18842563033103943, 0.11144968867301941, -0.44153380393981934, 0.10769036412239075, 0.04813550040125847, 0.5417962670326233, 0.11839047074317932, 0.21075306832790375, 0.45609062910079956, 0.007834803313016891, -0.2400379776954651, -0.17886394262313843, -0.34066829085350037, -0.06384299695491791, -0.2246968001127243, 0.25844013690948486, -0.3517666757106781, -0.3261958360671997, 0.18030959367752075, 0.06989093124866486, -0.22645127773284912, 0.06340038776397705, -0.4491857588291168, -0.05598239228129387, 0.08243871480226517, -0.03461430221796036, -0.25205540657043457, 0.35108399391174316, -0.2673203945159912, -0.16193750500679016, -0.4236398935317993, 0.11469652503728867, 0.41062861680984497, 0.01605767011642456, 0.6857098937034607, -0.17880971729755402, 0.10664218664169312, 0.11357081681489944, 0.0463455393910408, 0.277023047208786, 0.35543012619018555, 0.13118448853492737, -0.13144361972808838, 0.09280429780483246, -0.04173094034194946, 0.5633953809738159, 0.3986978232860565, -0.18044635653495789, 0.17219652235507965, -0.11815910041332245, 0.17764432728290558, -0.1672336310148239, -0.15891072154045105, 0.11121676117181778, 0.006454764865338802, -0.20014357566833496, -0.23031191527843475, 0.493419885635376, 0.17425215244293213, -0.16463831067085266, -0.09842009842395782, 0.3978409171104431, -0.3813033998012543, 0.36902183294296265, 0.19770315289497375, 1.0144431591033936, 0.052397221326828, 0.20682887732982635, 0.4344336688518524, 0.08502160012722015, 0.5083342790603638, -0.09196494519710541, 0.05254071205854416, -0.41236767172813416, 0.03840238228440285, -0.035064831376075745, 0.20411109924316406, 0.6257302165031433, 0.17191827297210693, -0.5202735066413879, 0.4367232322692871, -0.48472195863723755, 0.18523338437080383, 0.19349871575832367, -0.3581543266773224, -0.16274799406528473, -0.10091713070869446, -0.23191723227500916, -0.030237095430493355, -0.2557505965232849, 0.03130526468157768, -0.0038703130558133125, 0.02051498368382454, -0.3222240209579468, -0.033747799694538116, 0.040059894323349, -0.21062594652175903, -0.18710626661777496, -0.12525628507137299, 0.1165248453617096, -0.4627636671066284, -0.3014967143535614, 0.35950857400894165, -0.1932476907968521, 0.3782922327518463, 0.10437828302383423, -0.07244938611984253, -0.04626794904470444, 0.4817304015159607, 0.2615620493888855, -0.0688360333442688, 0.41982632875442505, 0.1127948984503746, -0.4972490966320038, 0.11750100553035736, -0.3186085522174835, 0.2683359980583191, 0.2489854395389557, -0.23607806861400604, -0.1126236617565155, -0.2109333574771881, -0.30027419328689575, 0.03478367626667023, 0.4922630190849304, -0.1724567860364914, 0.05210523307323456, 0.06365470588207245, -0.35869863629341125, -0.006374172866344452, -0.19114495813846588, -0.3070552349090576, 0.10410311818122864, 0.15225636959075928, 0.23938390612602234, 0.1591658592224121, 0.458213210105896, -0.08864209800958633, -0.1058809757232666, -0.07004157453775406, 0.49094390869140625, 0.19067268073558807, -0.24437183141708374, 0.3192388415336609, -0.059458501636981964, -0.25420358777046204, -0.2683808505535126, 0.38022473454475403, -0.10958805680274963, 0.27682724595069885, -0.31114500761032104, -0.14768452942371368, -0.380820095539093, 0.07464473694562912, 0.4283550977706909, 0.14985796809196472, -0.13962601125240326, -0.014772733673453331, 0.03911802917718887, -0.17286646366119385, -0.199281245470047, 0.06276049464941025, -0.3321261405944824, 0.38489753007888794, 0.014226287603378296, 0.22487354278564453, 0.06796165555715561, -0.2296532392501831, 0.12142044305801392, -0.18480083346366882, 0.07982508838176727, -0.0756586492061615, -0.2716995179653168, 0.2369350641965866, 0.03431037813425064, 0.01846335455775261, 0.2808496057987213, -0.08533114194869995, 0.12234190106391907, 0.09690052270889282, 0.4586498737335205, 0.31461799144744873, -0.055441439151763916, 0.4785767197608948, 0.28012508153915405, 0.36176323890686035, -0.3139575719833374, 0.15012671053409576, 0.054241590201854706, -0.08468616008758545, -0.03152160346508026, 0.19625815749168396, 0.004231185186654329, -0.07445825636386871, -0.020665975287556648, 0.12277480959892273, -0.2850184440612793, 0.23241212964057922, 0.18442144989967346, -0.27820777893066406, 0.05299730971455574, 0.164880633354187, -0.09640427678823471, 0.11052002012729645, -0.2691309452056885, 0.08199459314346313, 0.1630113422870636, 0.1313849687576294, -0.23396708071231842, -0.15134190022945404, -0.11239540576934814, -0.15030591189861298, 0.03480431064963341, 0.2824157774448395, 0.04105119779706001, 0.06767027080059052, -0.23665611445903778, 0.013803981244564056, 0.10910888016223907, -0.13211317360401154, 0.21928243339061737, 0.7502903342247009, 0.0029245950281620026, 0.12260496616363525, 0.10661918669939041, 0.12198087573051453, -0.15049076080322266, 0.3046955466270447, 0.15218257904052734, 0.3409825265407562, 0.18452531099319458, 0.03863553702831268, -0.1742292046546936, -0.5333315134048462, 0.2555379867553711, 0.5312305688858032, -0.23743590712547302, 0.01483088731765747, 0.2544935643672943, 0.06375830620527267, -0.2495945543050766, -0.3730395436286926, 0.1884823739528656, 0.008604884147644043, -0.4194161593914032, -0.3194286525249481, -0.17304593324661255, -0.18849721550941467, -0.3404439687728882, 0.0904545783996582, -0.08036647737026215, -0.19957102835178375, 0.2552835941314697, 0.30854538083076477, -0.030118443071842194, -0.32971665263175964, 0.04740629345178604, 0.2813747227191925, 0.32489582896232605, -0.08171864598989487, 0.3105703592300415, 0.2438005656003952, -0.008017212152481079, 0.4408814609050751, 0.3323018252849579, 0.30713576078414917, 0.17296619713306427, -0.037983279675245285, 0.23565787076950073, -0.17099912464618683, -0.11371278762817383, 0.029442522674798965, -0.07316592335700989, -0.13369587063789368, 0.45017141103744507, 0.0008777249604463577, -0.03740186616778374, -0.057058848440647125, 0.2142857313156128, -0.003918778151273727, -0.038478702306747437, -0.5821754932403564, 0.6755995154380798, 0.0479067862033844, -0.2861652076244354, -0.12374846637248993, -0.16098752617835999, -0.3841570019721985, -0.17053095996379852, 0.34134504199028015, 0.2896795868873596, 0.13952597975730896, 0.09140820801258087, 0.03247592970728874, 0.14182332158088684, 0.08399645984172821, 0.022225722670555115, -0.131387859582901, -0.30258047580718994, 0.12401808798313141, -0.8422650098800659, 0.1847805231809616, 0.15513569116592407, 0.09360583871603012, 0.30525580048561096, 0.05027998983860016, -0.19513285160064697, -0.08806081116199493, -0.07900246977806091, 0.05109715089201927, 0.10717575997114182, 0.010319851338863373, -0.2289353311061859, -0.1731353998184204, -0.031813181936740875, -0.1329997479915619, -0.126694455742836, -0.2744402289390564, 0.06039523705840111, 0.0763804242014885, -0.10851853340864182, 0.1260158121585846, -0.03875911235809326, 0.2614097595214844, -0.049587905406951904, 0.4094206988811493, 0.0789467990398407, 0.1097978949546814, 0.2823977470397949, -0.07483118772506714, -0.09257462620735168, 0.18226389586925507, -0.5996143221855164, 0.10402543842792511, -0.06793312728404999, 0.31757187843322754, 0.060314200818538666, 0.005779266357421875, -0.04866841807961464, 0.03881194442510605, 0.14419841766357422, -0.09622060507535934, -0.5131343007087708, 0.316711962223053, -0.35541975498199463, 0.1094934344291687, 0.12392999231815338, 0.08735471963882446, 0.10443507879972458, -0.02903333306312561, -0.4856889247894287, -0.21998977661132812, 0.28723272681236267, -0.15596389770507812, -0.09588922560214996, -0.22952675819396973, 0.29443538188934326, 0.1883867383003235, -0.1715407818555832, -0.6140263676643372, -0.2873893976211548, 0.4484287202358246, -0.36733442544937134, -0.23715846240520477, -0.07681342959403992, -0.04624743387103081, -0.0335199199616909, -0.34880590438842773, 0.1706569492816925, -0.13303449749946594, 0.13947352766990662, 0.11903233826160431, -0.3995998501777649 ]
https://github.com/huggingface/datasets/issues/3181
`None` converted to `"None"` when loading a dataset
Hi @eladsegal, Use `None`. As @albertvillanova correctly pointed out, this change in conversion was introduced (by mistake) in #3158. To avoid it, install the earlier revision with: ``` pip install git+https://github.com/huggingface/datasets.git@8107844ec0e7add005db0585c772ee20adc01a5e ``` I'm making all the feature types nullable as we speak, and the fix will be merged probably early next week.
## Describe the bug When loading a dataset `None` values of the type `NoneType` are converted to `'None'` of the type `str`. ## Steps to reproduce the bug ```python from datasets import load_dataset qasper = load_dataset("qasper", split="train", download_mode="reuse_cache_if_exists") print(qasper[60]["full_text"]["section_name"]) ``` When installing version 1.1.40, the output is `[None, 'Introduction', 'Benchmark Datasets', ...]` When installing from the master branch, the output is `['None', 'Introduction', 'Benchmark Datasets', ...]` Notice how the first element was changed from `NoneType` to `str`. ## Expected results `None` should stay as is. ## Actual results `None` is converted to a string. ## Environment info <!-- You can run the command `datasets-cli env` and copy-and-paste its output below. --> - `datasets` version: master - Platform: Linux-4.4.0-19041-Microsoft-x86_64-with-glibc2.17 - Python version: 3.8.10 - PyArrow version: 4.0.1
52
`None` converted to `"None"` when loading a dataset ## Describe the bug When loading a dataset `None` values of the type `NoneType` are converted to `'None'` of the type `str`. ## Steps to reproduce the bug ```python from datasets import load_dataset qasper = load_dataset("qasper", split="train", download_mode="reuse_cache_if_exists") print(qasper[60]["full_text"]["section_name"]) ``` When installing version 1.1.40, the output is `[None, 'Introduction', 'Benchmark Datasets', ...]` When installing from the master branch, the output is `['None', 'Introduction', 'Benchmark Datasets', ...]` Notice how the first element was changed from `NoneType` to `str`. ## Expected results `None` should stay as is. ## Actual results `None` is converted to a string. ## Environment info <!-- You can run the command `datasets-cli env` and copy-and-paste its output below. --> - `datasets` version: master - Platform: Linux-4.4.0-19041-Microsoft-x86_64-with-glibc2.17 - Python version: 3.8.10 - PyArrow version: 4.0.1 Hi @eladsegal, Use `None`. As @albertvillanova correctly pointed out, this change in conversion was introduced (by mistake) in #3158. To avoid it, install the earlier revision with: ``` pip install git+https://github.com/huggingface/datasets.git@8107844ec0e7add005db0585c772ee20adc01a5e ``` I'm making all the feature types nullable as we speak, and the fix will be merged probably early next week.
[ -0.1710927039384842, -0.011953063309192657, 0.014399394392967224, 0.2961723804473877, 0.43068116903305054, 0.025163322687149048, 0.3792951703071594, 0.2542131245136261, -0.014008274301886559, 0.4866131544113159, -0.07836884260177612, 0.5426304340362549, -0.05095703899860382, 0.1476789116859436, 0.013216541148722172, -0.08219505846500397, 0.12267684936523438, 0.37039294838905334, -0.21464020013809204, 0.06179113686084747, -0.09639804065227509, 0.22551487386226654, -0.14020203053951263, 0.06746677309274673, -0.2287074625492096, 0.08660923689603806, 0.03235059976577759, -0.0400422140955925, -0.04470503330230713, -0.5660225749015808, 0.02359676919877529, -0.2083914428949356, -0.1109045073390007, 0.5356740355491638, -0.00011161474685650319, 0.05290836840867996, 0.43221455812454224, 0.232306569814682, -0.3327467143535614, -0.4761784076690674, -0.1666373908519745, -0.2859128415584564, 0.26856526732444763, -0.04587714374065399, -0.1062009260058403, -0.21900002658367157, -0.08319958299398422, -0.4019647240638733, -0.2507115602493286, 0.3426711857318878, 0.25786885619163513, 0.49554911255836487, -0.3780507445335388, -0.032908760011196136, 0.3404311239719391, 0.06595350801944733, -0.0897972583770752, -0.12179063260555267, 0.03229931741952896, 0.3072839379310608, -0.04739878326654434, 0.2761010229587555, -0.22944656014442444, -0.20251567661762238, 0.25801998376846313, 0.20065133273601532, 0.1071208044886589, -0.26856669783592224, 0.25979864597320557, 0.3976726233959198, 0.36705881357192993, -0.3031963109970093, -0.2636416256427765, -0.14675703644752502, 0.14529258012771606, -0.3436306416988373, 0.13248208165168762, 0.19102446734905243, -0.09411747753620148, 0.06853362172842026, 0.035755302757024765, -0.0011444000992923975, -0.023959703743457794, -0.09029370546340942, -0.6481682062149048, 0.17196866869926453, -0.19956332445144653, -0.04219137877225876, 0.10780996084213257, -0.22027812898159027, -0.19499722123146057, -0.25223615765571594, -0.22340545058250427, 0.08015716075897217, -0.10657939314842224, 0.10036836564540863, 0.08450035005807877, 0.004697643220424652, 0.011576563119888306, -0.0951293557882309, 0.10153363645076752, 0.04240962862968445, -0.08226769417524338, 0.16875770688056946, 0.17092536389827728, 0.3348125219345093, 0.23285526037216187, -0.07285689562559128, 0.37995445728302, 0.019339803606271744, 0.17698584496974945, 0.10701941698789597, 0.21276982128620148, 0.03433546423912048, 0.17550495266914368, -0.00004511885344982147, 0.543786883354187, -0.31018882989883423, -0.38966524600982666, 0.11632587760686874, -0.2785488963127136, 0.23169627785682678, -0.028423123061656952, 0.13272187113761902, -0.04413340613245964, 0.5136789679527283, 0.10598884522914886, 0.14239375293254852, -0.25129440426826477, -0.23132900893688202, -0.3500554859638214, -0.09277479350566864, -0.06832124292850494, -0.22665032744407654, 0.06569086015224457, -0.3247499167919159, 0.050801753997802734, 0.2728201746940613, 0.07164321839809418, 0.0055446140468120575, -0.24758858978748322, -0.13821496069431305, -0.05854273587465286, 0.43369704484939575, -0.11613932251930237, 0.15968872606754303, 0.24030768871307373, -0.3428744673728943, -0.10223659127950668, 0.6999925971031189, -0.22166547179222107, -0.05327547341585159, -0.24508215487003326, 0.22230224311351776, -0.2760623097419739, -0.02012404054403305, -0.24841463565826416, 0.3693505823612213, -0.027935050427913666, 0.07732148468494415, 0.08741229772567749, -0.36357319355010986, -0.014784712344408035, -0.18393836915493011, 0.020949894562363625, 0.3797963857650757, -0.6199556589126587, -0.2599906325340271, -0.07036864012479782, -0.5042169094085693, 0.1629292219877243, -0.0413956381380558, 0.05303404852747917, -0.06730715185403824, -0.19981418550014496, 0.1769285947084427, 0.25839313864707947, -0.0766337439417839, -0.2854507863521576, 0.2802453637123108, -0.2618692219257355, 0.1013084426522255, -0.02137944847345352, -0.08981559425592422, 0.060262419283390045, 0.03444691374897957, 0.08026976138353348, -0.06965566426515579, 0.033055324107408524, 0.16845838725566864, -0.4463491439819336, -0.17428837716579437, 0.4488961100578308, -0.053270526230335236, 0.11891432106494904, 0.1514577567577362, -0.01313135027885437, -0.3364872634410858, 0.15667352080345154, -0.0996241569519043, 0.11359433829784393, 0.12142372131347656, 0.3474072515964508, 0.04778377711772919, 0.04469066113233566, -0.28411975502967834, -0.528883159160614, 0.1509968340396881, -0.18910647928714752, 0.24014876782894135, -0.15803934633731842, -0.2939601540565491, -0.030646245926618576, -0.004734732210636139, 0.015626121312379837, 0.06199067831039429, 0.19472503662109375, 0.17386707663536072, -0.32273510098457336, 0.10735224187374115, -0.1037437915802002, 0.08539533615112305, -0.029498275369405746, 0.13884811103343964, -0.20942020416259766, 0.04882631450891495, 0.1489575356245041, -0.11945351958274841, -0.24310146272182465, 0.3520188629627228, 0.22714149951934814, 0.12429485470056534, -0.24481403827667236, 0.41557174921035767, -0.06311769038438797, 0.08459704369306564, -0.31087401509284973, -0.003337383270263672, 0.20123709738254547, -0.20090371370315552, 0.1446828991174698, 0.43371254205703735, 0.20670822262763977, 0.1068296805024147, -0.27255600690841675, 0.41563016176223755, 0.062011826783418655, 0.3115216791629791, -0.03631303086876869, 0.1447063535451889, 0.09240784496068954, -0.009340334683656693, -0.23388569056987762, -0.34834790229797363, -0.06230152025818825, 0.2405412495136261, 0.0831785649061203, 0.355511873960495, -0.4104102551937103, 0.24819746613502502, 0.21908672153949738, -0.3608701527118683, 0.09190847724676132, 0.17715755105018616, -0.44126760959625244, -0.06922443211078644, 0.14513733983039856, 0.13488468527793884, 0.34392985701560974, 0.24939964711666107, 0.15405473113059998, 0.07270827889442444, -0.13037744164466858, -0.05644248053431511, 0.350800484418869, 0.021691929548978806, -0.05424795672297478, 0.18966218829154968, 0.274588942527771, -0.10132388025522232, -0.2222864329814911, 0.10330343246459961, -0.02222910337150097, 0.24756291508674622, -0.6477208137512207, 0.021411819383502007, -0.5448580980300903, 0.15775352716445923, -0.051301196217536926, -0.10119982063770294, -0.17355291545391083, -0.4598991870880127, -0.05963117629289627, -0.06372754275798798, -0.16885294020175934, 0.060641899704933167, -0.29469242691993713, 0.07903243601322174, -0.1894402951002121, -0.04481884092092514, -0.09218382835388184, 0.1211065873503685, -0.46022674441337585, 0.07212769985198975, 0.0793972834944725, 0.11200311034917831, 0.09424309432506561, -0.021144621074199677, -0.14001381397247314, -0.2468903362751007, -0.3335295021533966, -0.040777042508125305, -0.2937828302383423, 0.4520367980003357, 0.1857919842004776, 0.13598689436912537, -0.08529136329889297, 0.1245293915271759, 0.20486506819725037, -0.12008219957351685, -0.2296515256166458, 0.23703333735466003, -0.23263981938362122, 0.17982794344425201, -0.4357798993587494, -0.4690157473087311, -0.19080248475074768, -0.19228966534137726, -0.023806393146514893, -0.03690465912222862, 0.24247513711452484, 0.21441440284252167, 0.13687218725681305, 0.28606826066970825, 0.03420228511095047, -0.06779182702302933, -0.18417726457118988, -0.14196209609508514, 0.41672956943511963, -0.13530896604061127, -0.21244372427463531, 0.2918640971183777, 0.0325959175825119, 0.022109581157565117, 0.03161373734474182, -0.3978860378265381, 0.15956173837184906, -0.13176490366458893, 0.45515698194503784, 0.0719640851020813, -0.004756035283207893, 0.1841752827167511, 0.3115222454071045, -0.16104285418987274, -0.03254377096891403, -0.11167773604393005, -0.003123864531517029, -0.158992201089859, 0.06808002293109894, 0.054591789841651917, 0.14555945992469788, -0.02757011353969574, 0.42932552099227905, 0.05618337169289589, 0.013820309191942215, 0.09438260644674301, -0.1955546736717224, 0.4180707037448883, -0.27367842197418213, -0.0683419480919838, -0.1494676172733307, 0.07352451980113983, 0.023774415254592896, 0.22833888232707977, -0.02967057004570961, -0.26542794704437256, 0.07797107845544815, 0.10427406430244446, -0.26809823513031006, -0.11563444137573242, 0.22692948579788208, -0.33005377650260925, 0.11009126901626587, -0.07854808866977692, 0.15373632311820984, -0.1056862473487854, -0.21074074506759644, -0.04875641316175461, 0.309195339679718, -0.005380131304264069, -0.14276255667209625, -0.5449383854866028, -0.011578306555747986, -0.25750747323036194, 0.3132614493370056, -0.019540876150131226, 0.12539464235305786, -0.03478778526186943, -0.3828626573085785, 0.185441255569458, 0.05339284986257553, 0.4744294285774231, 0.15399636328220367, -0.02795235812664032, 0.5140472650527954, 0.041103772819042206, -0.32361939549446106, -0.25953084230422974, -0.4259677529335022, 0.003523531835526228, -0.07067370414733887, 0.18039193749427795, -0.361844539642334, -0.4228643774986267, 0.2619481086730957, 0.068302221596241, -0.021093957126140594, 0.06880061328411102, -0.4098900854587555, -0.07259118556976318, 0.1709902584552765, -0.11115241795778275, -0.20142945647239685, 0.4334864616394043, -0.6914266347885132, -0.12903453409671783, -0.21854646503925323, 0.11924505978822708, 0.30925291776657104, -0.04504548758268356, 0.7161477208137512, -0.11613402515649796, -0.14719685912132263, -0.021140005439519882, 0.13489359617233276, 0.15029989182949066, 0.30682989954948425, -0.06521239876747131, -0.13569258153438568, 0.21984431147575378, -0.057618241757154465, 0.3230608105659485, 0.2842840254306793, -0.26157426834106445, 0.14710953831672668, 0.016524329781532288, 0.2268727570772171, -0.20051950216293335, -0.12124274671077728, 0.34725794196128845, -0.006392780225723982, -0.2086677998304367, -0.39228519797325134, 0.4503925144672394, 0.14326748251914978, -0.059716805815696716, -0.007222265005111694, 0.4215245842933655, -0.26773568987846375, 0.31418299674987793, 0.07531564682722092, 0.8567590117454529, 0.03663147985935211, 0.21629823744297028, 0.5240120887756348, -0.026556063443422318, 0.5018619298934937, -0.0023943521082401276, 0.1933329701423645, -0.5107723474502563, -0.08649135380983353, -0.06682678312063217, 0.09717093408107758, 0.4400980472564697, -0.036103516817092896, -0.45072224736213684, 0.2521161437034607, -0.3405071496963501, 0.24711835384368896, 0.18807783722877502, -0.2986426055431366, -0.2543695271015167, -0.08669570088386536, -0.15401574969291687, 0.15624293684959412, -0.18095508217811584, -0.029316667467355728, 0.16013526916503906, -0.006272222846746445, -0.2679014503955841, -0.02527681365609169, -0.08564458042383194, 0.019109409302473068, -0.06799519062042236, -0.11935052275657654, 0.2534288465976715, -0.36041831970214844, -0.12951000034809113, 0.33220961689949036, -0.022201374173164368, 0.2863384485244751, -0.11521299183368683, -0.01912137120962143, -0.04017855226993561, 0.503274142742157, 0.4000251889228821, 0.011648082174360752, 0.2652091979980469, 0.1821955442428589, -0.35939884185791016, 0.16889584064483643, -0.18271870911121368, 0.09535415470600128, 0.1322646141052246, -0.1204223483800888, -0.22988463938236237, -0.2968718111515045, -0.19136473536491394, 0.024217024445533752, 0.5306469798088074, -0.22068777680397034, 0.1835244596004486, 0.07193658500909805, -0.30265504121780396, 0.12095456570386887, 0.004417158663272858, -0.4209454357624054, -0.009225327521562576, 0.2857540547847748, 0.39110857248306274, 0.19350670278072357, 0.5224117040634155, 0.018934767693281174, -0.2755585312843323, -0.1944189965724945, 0.31609413027763367, 0.21771521866321564, -0.2086811065673828, 0.2493678480386734, 0.0016350354999303818, -0.1201048195362091, -0.003175638150423765, 0.3726240396499634, -0.25518983602523804, 0.23709583282470703, -0.36522507667541504, -0.15000030398368835, -0.33410853147506714, -0.008676953613758087, 0.009352095425128937, 0.23719443380832672, 0.07341834902763367, -0.049205485731363297, 0.056451596319675446, -0.14742204546928406, -0.35854199528694153, 0.2067418098449707, -0.1489066183567047, 0.1263040006160736, -0.04717370122671127, 0.12496324628591537, 0.21800902485847473, 0.03503245860338211, 0.2518460154533386, -0.0637964978814125, -0.07436715811491013, -0.2375769019126892, -0.27316951751708984, 0.13000386953353882, -0.06253355741500854, 0.04697857052087784, 0.13707545399665833, 0.06261561065912247, -0.013572357594966888, -0.054561797529459, 0.5886861085891724, 0.23361116647720337, -0.06960907578468323, 0.3833621144294739, 0.18308909237384796, 0.280631959438324, 0.017754018306732178, 0.10886737704277039, -0.08530247211456299, -0.16956765949726105, 0.09761273115873337, 0.18579384684562683, -0.16777093708515167, -0.0901024341583252, -0.12331250309944153, 0.18452104926109314, -0.0824655294418335, 0.32223033905029297, 0.26425397396087646, -0.36158764362335205, 0.06121824309229851, 0.07922126352787018, 0.02729000151157379, 0.05977574735879898, -0.2378760278224945, -0.029556425288319588, -0.04206165298819542, 0.2452256977558136, -0.1563730686903, -0.11073148250579834, -0.0890052318572998, -0.0036030327901244164, 0.1428617537021637, 0.194288432598114, 0.13848164677619934, 0.05473434925079346, 0.07967069000005722, 0.011743038892745972, 0.12890765070915222, -0.15491163730621338, 0.3005964756011963, 0.7420116066932678, -0.0054151564836502075, 0.1049370989203453, 0.30457088351249695, -0.17249564826488495, -0.2635180950164795, 0.4124809503555298, 0.09470352530479431, 0.3636590540409088, 0.10077602416276932, 0.07087308913469315, -0.16508015990257263, -0.5342609286308289, 0.15529488027095795, 0.3907392621040344, -0.24543234705924988, 0.03974016010761261, 0.254734069108963, 0.20996111631393433, -0.36252787709236145, -0.29728707671165466, -0.12345325201749802, 0.054803214967250824, -0.4501233994960785, -0.34827396273612976, -0.12549009919166565, -0.21962633728981018, -0.1853533685207367, 0.05735654756426811, -0.08575697243213654, -0.10840775072574615, 0.2555646002292633, 0.14960844814777374, -0.19052965939044952, -0.25945407152175903, -0.053035952150821686, 0.14068222045898438, 0.1565273404121399, 0.06337933242321014, 0.1732414960861206, -0.03664052486419678, 0.175271674990654, 0.25160619616508484, 0.4538683295249939, 0.41740408539772034, 0.3131193518638611, 0.01700928434729576, -0.07973136752843857, -0.003305761143565178, -0.2091664969921112, 0.2060350924730301, 0.05546339601278305, 0.017037473618984222, 0.3320849537849426, 0.0662323534488678, 0.1720420867204666, -0.1590149998664856, 0.1703711599111557, 0.04342324286699295, 0.21022099256515503, -0.4629378318786621, 0.5681636929512024, 0.0037249568849802017, -0.06902382522821426, -0.16660292446613312, -0.24228134751319885, -0.4855618476867676, -0.16235195100307465, 0.4131341576576233, 0.1882997751235962, 0.1108919158577919, -0.22433888912200928, 0.12721075117588043, 0.2986774742603302, 0.19728659093379974, 0.0006463378667831421, -0.08666212111711502, -0.2866358757019043, 0.12303933501243591, -0.662032425403595, 0.2458910048007965, 0.20607106387615204, 0.32067161798477173, 0.08840367197990417, 0.11610013246536255, -0.1842532753944397, -0.0898904800415039, 0.0857328400015831, 0.0024980194866657257, 0.329223096370697, -0.0012812688946723938, -0.31365877389907837, -0.08688728511333466, 0.055722061544656754, -0.09063604474067688, -0.15942354500293732, -0.28920847177505493, 0.1411682665348053, 0.06711429357528687, 0.06031384319067001, 0.13162311911582947, 0.03181464970111847, 0.1516241878271103, -0.0023699142038822174, 0.43326637148857117, 0.1130579262971878, 0.10727107524871826, 0.11668256670236588, -0.23860864341259003, -0.2770060896873474, 0.005804818123579025, -0.4233892560005188, 0.13121797144412994, -0.08104504644870758, 0.42069071531295776, 0.09419446438550949, 0.04912716522812843, -0.05407785251736641, 0.14891652762889862, 0.22704307734966278, 0.05419947952032089, -0.5982415676116943, 0.3195268511772156, -0.19304266571998596, -0.025370750576257706, 0.10056783258914948, 0.051787592470645905, 0.2519221305847168, 0.2044447958469391, -0.28914541006088257, -0.2519410252571106, 0.4435174763202667, -0.1265496462583542, -0.16483768820762634, -0.21420003473758698, 0.12288397550582886, 0.1497815102338791, -0.2820914685726166, -0.6443953514099121, -0.14083229005336761, 0.36390256881713867, -0.3171519339084625, -0.1712900698184967, 0.09838452935218811, -0.2110006958246231, 0.16964119672775269, -0.420099675655365, 0.23828355967998505, 0.037980545312166214, 0.06332046538591385, 0.08423556387424469, -0.388052761554718 ]